diff --git a/.coveragerc b/.coveragerc deleted file mode 100644 index e570d9403b..0000000000 --- a/.coveragerc +++ /dev/null @@ -1,23 +0,0 @@ -[run] -omit = - tests/* - .github/* - commands/* - **/test_*.py - -[report] -exclude_lines = - pragma: no cover - if TYPE_CHECKING: - -exclude_also = - def __repr__ - if self.debug: - if settings.DEBUG - raise AssertionError - raise NotImplementedError - if 0: - if __name__ == .__main__.: - if TYPE_CHECKING: - class .*\bProtocol\): - @(abc\.)?abstractmethod diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs index 8b4535ba69..391bf41308 100644 --- a/.git-blame-ignore-revs +++ b/.git-blame-ignore-revs @@ -61,3 +61,6 @@ e9bbe03354079cfcef65a77b0c33f57b047a7c93 # replace `frappe.flags.in_test` with `frappe.in_test` 653c80b8483cc41aef25cd7d66b9b6bb188bf5f8 + +# another ruff update +6ca4d4d167a1a009d99062747711de7a994aa633 diff --git a/.github/workflows/_base-migration.yml b/.github/workflows/_base-migration.yml index cf1d3b6f64..bbb19d9635 100644 --- a/.github/workflows/_base-migration.yml +++ b/.github/workflows/_base-migration.yml @@ -40,7 +40,7 @@ jobs: env: MARIADB_ROOT_PASSWORD: ${{ env.DB_ROOT_PASSWORD }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./.github/actions/setup name: Environment Setup with: diff --git a/.github/workflows/_base-server-tests.yml b/.github/workflows/_base-server-tests.yml index 3fa29709ce..0a3f2ef0a4 100644 --- a/.github/workflows/_base-server-tests.yml +++ b/.github/workflows/_base-server-tests.yml @@ -78,7 +78,7 @@ jobs: - 2525:25 - 3000:80 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./.github/actions/setup name: Environment Setup with: diff --git a/.github/workflows/_base-type-check.yml b/.github/workflows/_base-type-check.yml index a67abf839d..ed9caea616 100644 --- a/.github/workflows/_base-type-check.yml +++ b/.github/workflows/_base-type-check.yml @@ -14,7 +14,7 @@ jobs: steps: - run: npm install toml - name: Get pyproject.toml - uses: actions/github-script@v7 + uses: actions/github-script@v8 id: get-pyproject with: github-token: ${{secrets.GITHUB_TOKEN}} @@ -33,7 +33,7 @@ jobs: return { mypyFiles, content }; - name: Check for changes in mypy files - uses: actions/github-script@v7 + uses: actions/github-script@v8 id: check-changes with: github-token: ${{secrets.GITHUB_TOKEN}} @@ -59,11 +59,11 @@ jobs: - name: Set up Python if: steps.check-changes.outputs.result == 'true' - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ inputs.python-version }} - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 if: steps.check-changes.outputs.result == 'true' - name: Cache pip diff --git a/.github/workflows/_base-ui-tests.yml b/.github/workflows/_base-ui-tests.yml index b4f072a56a..7b8e100d8a 100644 --- a/.github/workflows/_base-ui-tests.yml +++ b/.github/workflows/_base-ui-tests.yml @@ -62,7 +62,7 @@ jobs: env: MARIADB_ROOT_PASSWORD: ${{ env.DB_ROOT_PASSWORD }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: ./.github/actions/setup name: Environment Setup with: diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml index 311a14f4b3..3bebf6e859 100644 --- a/.github/workflows/backport.yml +++ b/.github/workflows/backport.yml @@ -11,7 +11,7 @@ jobs: timeout-minutes: 10 steps: - name: Checkout Actions - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: repository: "frappe/backport" path: ./actions diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 14976f273f..938ca81251 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -12,12 +12,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Entire Repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 persist-credentials: false - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: 22 - name: Setup dependencies diff --git a/.github/workflows/generate-pot-file.yml b/.github/workflows/generate-pot-file.yml index b02e521d61..b598c5941c 100644 --- a/.github/workflows/generate-pot-file.yml +++ b/.github/workflows/generate-pot-file.yml @@ -18,12 +18,12 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: ${{ matrix.branch }} - name: Setup Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: "3.13" diff --git a/.github/workflows/label-base-on-title.yml b/.github/workflows/label-base-on-title.yml index 4e811edf99..3ce6d100d8 100644 --- a/.github/workflows/label-base-on-title.yml +++ b/.github/workflows/label-base-on-title.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check PR title and add label if it matches prefixes - uses: actions/github-script@v7 + uses: actions/github-script@v8 continue-on-error: true with: script: | diff --git a/.github/workflows/labeller.yml b/.github/workflows/labeller.yml index 39672c31fe..ff41b23732 100644 --- a/.github/workflows/labeller.yml +++ b/.github/workflows/labeller.yml @@ -11,8 +11,8 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone - uses: actions/checkout@v4 + uses: actions/checkout@v5 - - uses: actions/labeler@v5 + - uses: actions/labeler@v6 with: repo-token: "${{ secrets.GITHUB_TOKEN }}" diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 1d3a9076e2..f8ceae4ef9 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -19,10 +19,10 @@ jobs: if: github.event_name == 'pull_request' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 200 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v5 with: node-version: 22 check-latest: true @@ -39,10 +39,10 @@ jobs: steps: - name: 'Setup Environment' - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.13' - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Validate Docs env: @@ -57,8 +57,8 @@ jobs: if: github.event_name == 'pull_request' steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 + - uses: actions/checkout@v5 + - uses: actions/setup-python@v6 with: python-version: '3.13' cache: pip @@ -76,11 +76,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: '3.13' - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Cache pip uses: actions/cache@v4 @@ -103,8 +103,8 @@ jobs: if: github.event_name == 'pull_request' steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 + - uses: actions/checkout@v5 + - uses: actions/setup-python@v6 with: python-version: '3.13' cache: pip diff --git a/.github/workflows/on_release.yml b/.github/workflows/on_release.yml index 7db86da245..90338ba730 100644 --- a/.github/workflows/on_release.yml +++ b/.github/workflows/on_release.yml @@ -16,15 +16,15 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: path: 'frappe' - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v5 with: node-version: 22 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: '3.13' - name: Set up bench and build assets diff --git a/.github/workflows/publish-assets-develop.yml b/.github/workflows/publish-assets-develop.yml index fb0aaec60a..7a5fc7599f 100644 --- a/.github/workflows/publish-assets-develop.yml +++ b/.github/workflows/publish-assets-develop.yml @@ -11,13 +11,13 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: path: 'frappe' - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v5 with: node-version: 22 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: '3.13' - name: Set up bench and build assets diff --git a/.github/workflows/run-indinvidual-tests.yml b/.github/workflows/run-indinvidual-tests.yml index 906810a8c2..429064c32b 100644 --- a/.github/workflows/run-indinvidual-tests.yml +++ b/.github/workflows/run-indinvidual-tests.yml @@ -14,7 +14,7 @@ jobs: matrix: ${{ steps.set-matrix.outputs.matrix }} steps: - name: Clone - uses: actions/checkout@v4 + uses: actions/checkout@v5 - id: set-matrix run: | # Use grep and find to get the list of test files @@ -69,15 +69,15 @@ jobs: steps: - name: Clone - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.13' - name: Setup Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: 22 check-latest: true @@ -108,7 +108,7 @@ jobs: - name: Get yarn cache directory path id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn cache dir)" + run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - uses: actions/cache@v4 id: yarn-cache diff --git a/.github/workflows/server-tests.yml b/.github/workflows/server-tests.yml index 959675a952..efaedcb6d3 100644 --- a/.github/workflows/server-tests.yml +++ b/.github/workflows/server-tests.yml @@ -30,7 +30,7 @@ jobs: build: ${{ steps.check-build.outputs.build }} steps: - name: Clone - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Check if unit tests should be run id: check-build run: | @@ -68,9 +68,9 @@ jobs: if: ${{ github.event_name != 'pull_request' }} steps: - name: Clone - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Download artifacts - uses: actions/download-artifact@v4.3.0 + uses: actions/download-artifact@v5.0.0 - name: Upload coverage data uses: codecov/codecov-action@v5 with: @@ -93,7 +93,7 @@ jobs: - frappe/hrms steps: - name: Dispatch Downstream CI (if supported) - uses: peter-evans/repository-dispatch@v3 + uses: peter-evans/repository-dispatch@v4 with: token: ${{ secrets.CI_PAT }} repository: ${{ matrix.repo }} diff --git a/.github/workflows/ui-tests.yml b/.github/workflows/ui-tests.yml index 1dd9424975..93fa61c9e6 100644 --- a/.github/workflows/ui-tests.yml +++ b/.github/workflows/ui-tests.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Clone - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Check if build should be run id: check-build @@ -55,9 +55,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Download artifacts - uses: actions/download-artifact@v4.3.0 + uses: actions/download-artifact@v5.0.0 - name: Upload python coverage data uses: codecov/codecov-action@v5 with: diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ef3d02e220..3606b63941 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,5 +1,6 @@ exclude: 'node_modules|.git' default_stages: [pre-commit] +default_install_hook_types: [pre-commit, commit-msg] fail_fast: false @@ -21,7 +22,7 @@ repos: exclude: ^frappe/tests/classes/context_managers\.py$ - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.8.1 + rev: v0.13.2 hooks: - id: ruff name: "Run ruff import sorter" @@ -69,6 +70,13 @@ repos: frappe/public/js/lib/.* )$ + - repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook + rev: v9.22.0 + hooks: + - id: commitlint + stages: [commit-msg] + additional_dependencies: ['conventional-changelog-conventionalcommits'] + ci: autoupdate_schedule: weekly skip: [] diff --git a/README.md b/README.md index 39bf1fa222..e7e27a0da0 100644 --- a/README.md +++ b/README.md @@ -21,10 +21,15 @@ ## Frappe Framework Full-stack web application framework that uses Python and MariaDB on the server side and a tightly integrated client side library. Built for ERPNext. -### Motivation +## Philosophy + +> The best code is the one that is not written + 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. 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. +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. + +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. ### Key Features diff --git a/babel_extractors.csv b/babel_extractors.csv index f5f96c914b..b7bf582783 100644 --- a/babel_extractors.csv +++ b/babel_extractors.csv @@ -1,6 +1,7 @@ **/hooks.py,frappe.gettext.extractors.navbar.extract **/doctype/*/*.json,frappe.gettext.extractors.doctype.extract **/workspace/*/*.json,frappe.gettext.extractors.workspace.extract +**/web_form/*/*.json,frappe.gettext.extractors.web_form.extract **/onboarding_step/*/*.json,frappe.gettext.extractors.onboarding_step.extract **/module_onboarding/*/*.json,frappe.gettext.extractors.module_onboarding.extract **/report/*/*.json,frappe.gettext.extractors.report.extract diff --git a/cypress/integration/form.js b/cypress/integration/form.js index 1ddf365c71..d40b0d5c89 100644 --- a/cypress/integration/form.js +++ b/cypress/integration/form.js @@ -75,14 +75,15 @@ context("Form", () => { cy.get('.frappe-control[data-fieldname="email_ids"]').as("table"); cy.get("@table").find("button.grid-add-row").click(); - cy.get("@table").find("button.grid-add-row").click(); cy.get("@table").find('[data-idx="1"]').as("row1"); - cy.get("@table").find('[data-idx="2"]').as("row2"); + cy.get("@row1").click(); cy.get("@row1").find("input.input-with-feedback.form-control").as("email_input1"); cy.get("@email_input1").type(website_input, { waitForAnimations: false }); + cy.get("@table").find("button.grid-add-row").click(); + cy.get("@table").find('[data-idx="2"]').as("row2"); cy.get("@row2").click(); cy.get("@row2").find("input.input-with-feedback.form-control").as("email_input2"); cy.get("@email_input2").type(valid_email, { waitForAnimations: false }); diff --git a/cypress/integration/list_view.js b/cypress/integration/list_view.js index 7117d8f98d..397c91215b 100644 --- a/cypress/integration/list_view.js +++ b/cypress/integration/list_view.js @@ -51,4 +51,32 @@ context("List View", () => { cy.get(".list-row-container:visible").should("contain", "Approved"); }); }); + + it("Adds a button to each list view row", () => { + // Get a ToDo with a reference name + cy.call("frappe.client.get_value", { + doctype: "ToDo", + filters: { + reference_name: ["is", "set"], + }, + fieldname: "name", + }).then((r) => { + const todo_name = r.message.name; + cy.go_to_list("ToDo"); + + // Check if the 'Open' button is present in the ToDo list view + cy.get(`.btn-default[data-name="${todo_name}"]`) + .scrollIntoView({ inline: "center", block: "nearest" }) + .should("be.visible") + .click(); + + cy.window() + .its("cur_frm") + .then((frm) => { + // Routes to the reference document + expect(frm.doc.doctype).to.equal("ToDo"); + expect(frm.doc.name).to.not.equal(todo_name); + }); + }); + }); }); diff --git a/cypress/integration/list_view_settings.js b/cypress/integration/list_view_settings.js index 9c66edb5d5..027dfaa768 100644 --- a/cypress/integration/list_view_settings.js +++ b/cypress/integration/list_view_settings.js @@ -15,10 +15,10 @@ context("List View Settings", () => { cy.clear_filters(); cy.wait(300); cy.get(".list-count").should("contain", "20 of"); - cy.get("[href='#es-line-chat-alt']").should("be.visible"); + cy.get(".frappe-list svg.es-icon.es-line").should("be.visible"); cy.get(".menu-btn-group button").click(); cy.get(".dropdown-menu li").filter(":visible").contains("List Settings").click(); - cy.get(".modal-dialog").should("contain", "DocType Settings"); + cy.get(".modal-dialog").should("contain", "DocType List View Settings"); cy.findByLabelText("Disable Count").check({ force: true }); cy.findByLabelText("Disable Comment Count").check({ force: true }); @@ -33,7 +33,7 @@ context("List View Settings", () => { cy.get(".menu-btn-group button").click({ force: true }); cy.get(".dropdown-menu li").filter(":visible").contains("List Settings").click(); - cy.get(".modal-dialog").should("contain", "DocType Settings"); + cy.get(".modal-dialog").should("contain", "DocType List View Settings"); cy.findByLabelText("Disable Count").uncheck({ force: true }); cy.findByLabelText("Disable Comment Count").uncheck({ force: true }); cy.findByLabelText("Disable Sidebar Stats").uncheck({ force: true }); diff --git a/cypress/integration/utils.js b/cypress/integration/utils.js new file mode 100644 index 0000000000..083a03294a --- /dev/null +++ b/cypress/integration/utils.js @@ -0,0 +1,117 @@ +context("Utils", () => { + before(() => { + cy.login(); + cy.visit("/app"); + }); + + function run_util(name, ...args) { + return cy + .window() + .its("frappe") + .then((frappe) => { + return frappe.utils[name](...args); + }); + } + + it("should round hidden seconds to minutes", () => { + run_util("seconds_to_duration", 89, { hide_seconds: 1 }).then((duration) => { + expect(duration).to.deep.equal({ + days: 0, + hours: 0, + minutes: 1, + seconds: 0, + }); + }); + + run_util("seconds_to_duration", -89, { hide_seconds: 1 }).then((duration) => { + expect(duration).to.deep.equal({ + days: -0, + hours: -0, + minutes: -1, + seconds: 0, + }); + }); + + run_util("seconds_to_duration", 91, { hide_seconds: 1 }).then((duration) => { + expect(duration).to.deep.equal({ + days: 0, + hours: 0, + minutes: 2, + seconds: 0, + }); + }); + + run_util("seconds_to_duration", -91, { hide_seconds: 1 }).then((duration) => { + expect(duration).to.deep.equal({ + days: -0, + hours: -0, + minutes: -2, + seconds: 0, + }); + }); + + run_util("seconds_to_duration", 60 * 60, { hide_seconds: 1 }).then((duration) => { + expect(duration).to.deep.equal({ + days: 0, + hours: 1, + minutes: 0, + seconds: 0, + }); + }); + + run_util("seconds_to_duration", 15 * 60, { hide_seconds: 1 }).then((duration) => { + expect(duration).to.deep.equal({ + days: 0, + hours: 0, + minutes: 15, + seconds: 0, + }); + }); + }); + + it("should parse days, hours, minutes and seconds", () => { + run_util("seconds_to_duration", 60 * 60 * 24 + 60 * 60 + 60 + 1).then((duration) => { + expect(duration).to.deep.equal({ + days: 1, + hours: 1, + minutes: 1, + seconds: 1, + }); + }); + + run_util("seconds_to_duration", (60 * 60 * 24 + 60 * 60 + 60 + 1) * -1).then( + (duration) => { + expect(duration).to.deep.equal({ + days: -1, + hours: -1, + minutes: -1, + seconds: -1, + }); + } + ); + + run_util("seconds_to_duration", 60 * 60 * 24 + 60 * 60 + 60 + 1, { + hide_days: 1, + hide_seconds: 1, + }).then((duration) => { + expect(duration).to.deep.equal({ + days: 0, + hours: 25, + minutes: 1, + seconds: 0, + }); + }); + + run_util("seconds_to_duration", (60 * 60 * 24 + 60 * 60 + 60 + 1) * -1, { + hide_days: 1, + hide_seconds: 1, + }).then((duration) => { + expect(duration).to.deep.equal({ + days: 0, + hours: -25, + minutes: -1, + seconds: 0, + }); + }); + }); +}); diff --git a/frappe/__init__.py b/frappe/__init__.py index aa733919c6..07a15d2ca3 100644 --- a/frappe/__init__.py +++ b/frappe/__init__.py @@ -1473,18 +1473,28 @@ def logger( def get_desk_link(doctype, name, show_title_with_name=False, open_in_new_tab=False): + from urllib.parse import quote + meta = get_meta(doctype) title = get_value(doctype, name, meta.get_title_field()) target_attr = ' target="_blank"' if open_in_new_tab else "" + # encode for href + encoded_name = quote(name) + if show_title_with_name and name != title: - html = '{doctype_local} {name}: {title_local}' + html = '{doctype_local} {name}: {title_local}' else: - html = '{doctype_local} {title_local}' + html = '{doctype_local} {title_local}' return html.format( - doctype=doctype, name=name, doctype_local=_(doctype), title_local=_(title), target=target_attr + doctype=doctype, + name=name, + encoded_name=encoded_name, + doctype_local=_(doctype), + title_local=_(title), + target=target_attr, ) @@ -1511,7 +1521,13 @@ def is_setup_complete(): if not frappe.db.table_exists("Installed Application"): return setup_complete - if all(frappe.get_all("Installed Application", {"has_setup_wizard": 1}, pluck="is_setup_complete")): + if all( + frappe.get_all( + "Installed Application", + {"app_name": ("in", ["frappe", "erpnext"])}, + pluck="is_setup_complete", + ) + ): setup_complete = True return setup_complete diff --git a/frappe/api/__init__.py b/frappe/api/__init__.py index a8736db67e..db7f96da50 100644 --- a/frappe/api/__init__.py +++ b/frappe/api/__init__.py @@ -1,5 +1,6 @@ # Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors # License: MIT. See LICENSE +from contextlib import suppress from enum import Enum from werkzeug.exceptions import NotFound @@ -7,8 +8,8 @@ from werkzeug.routing import Map, Submount from werkzeug.wrappers import Request, Response import frappe -import frappe.client from frappe import _ +from frappe.pulse.app_heartbeat_event import capture_app_heartbeat from frappe.utils.response import build_response @@ -63,7 +64,12 @@ def handle(request: Request): if data is not None: frappe.response["data"] = data - return build_response("json") + data = build_response("json") + + with suppress(Exception): + capture_app_heartbeat(arguments) + + return data # Merge all API version routing rules diff --git a/frappe/app.py b/frappe/app.py index e5a1fba4a7..49cacb9a46 100644 --- a/frappe/app.py +++ b/frappe/app.py @@ -321,7 +321,10 @@ def set_authenticate_headers(response: Response): def make_form_dict(request: Request): request_data = request.get_data(as_text=True) if request_data and request.is_json: - args = orjson.loads(request_data) + try: + args = orjson.loads(request_data) + except orjson.JSONDecodeError: + frappe.throw(_("Invalid request body"), frappe.DataError) else: args = {} args.update(request.args or {}) diff --git a/frappe/auth.py b/frappe/auth.py index f667138ea1..03b28f0dc5 100644 --- a/frappe/auth.py +++ b/frappe/auth.py @@ -66,6 +66,9 @@ class HTTPRequest: elif frappe.get_request_header("REMOTE_ADDR"): frappe.local.request_ip = frappe.get_request_header("REMOTE_ADDR") + elif frappe.request and getattr(frappe.request, "remote_addr", None): + frappe.local.request_ip = frappe.request.remote_addr + else: frappe.local.request_ip = "127.0.0.1" @@ -666,7 +669,7 @@ def validate_oauth(authorization_header): required_scopes = frappe.db.get_value("OAuth Bearer Token", token, "scopes").split( get_url_delimiter() ) - valid, oauthlib_request = get_oauth_server().verify_request( + valid, _oauthlib_request = get_oauth_server().verify_request( uri, http_method, body, headers, required_scopes ) if valid: diff --git a/frappe/automation/doctype/assignment_rule/assignment_rule.json b/frappe/automation/doctype/assignment_rule/assignment_rule.json index b370274cf6..66f8b8d291 100644 --- a/frappe/automation/doctype/assignment_rule/assignment_rule.json +++ b/frappe/automation/doctype/assignment_rule/assignment_rule.json @@ -67,7 +67,7 @@ "label": "Assignment Rules" }, { - "description": "Simple Python Expression, Example: status == 'Open' and type == 'Bug'", + "description": "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'", "fieldname": "assign_condition", "fieldtype": "Code", "in_list_view": 1, @@ -80,7 +80,7 @@ "fieldtype": "Column Break" }, { - "description": "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")", + "description": "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")", "fieldname": "unassign_condition", "fieldtype": "Code", "label": "Unassign Condition", @@ -119,7 +119,7 @@ "fieldtype": "Section Break" }, { - "description": "Simple Python Expression, Example: Status in (\"Invalid\")", + "description": "Simple Python Expression, Example: status == \"Invalid\"", "fieldname": "close_condition", "fieldtype": "Code", "label": "Close Condition", @@ -152,9 +152,10 @@ "mandatory_depends_on": "eval: doc.rule == 'Based on Field'" } ], + "grid_page_length": 50, "index_web_pages_for_search": 1, "links": [], - "modified": "2024-03-23 16:01:27.590910", + "modified": "2025-08-25 17:09:11.644603", "modified_by": "Administrator", "module": "Automation", "name": "Assignment Rule", @@ -174,8 +175,9 @@ "write": 1 } ], + "row_format": "Dynamic", "sort_field": "creation", "sort_order": "DESC", "states": [], "track_changes": 1 -} \ No newline at end of file +} diff --git a/frappe/automation/doctype/auto_repeat/auto_repeat.json b/frappe/automation/doctype/auto_repeat/auto_repeat.json index 183a26f707..2e40364a53 100644 --- a/frappe/automation/doctype/auto_repeat/auto_repeat.json +++ b/frappe/automation/doctype/auto_repeat/auto_repeat.json @@ -21,6 +21,9 @@ "repeat_on_last_day", "column_break_12", "next_schedule_date", + "section_break_looa", + "generate_separate_documents_for_each_assignee", + "assignee", "section_break_16", "repeat_on_days", "notification", @@ -86,7 +89,7 @@ "fieldtype": "Select", "in_list_view": 1, "label": "Frequency", - "options": "\nDaily\nWeekly\nMonthly\nQuarterly\nHalf-yearly\nYearly", + "options": "\nDaily\nWeekly\nFortnightly\nMonthly\nQuarterly\nHalf-yearly\nYearly", "reqd": 1 }, { @@ -198,10 +201,26 @@ "depends_on": "eval:doc.frequency==='Weekly';", "fieldname": "section_break_16", "fieldtype": "Section Break" + }, + { + "default": "0", + "fieldname": "generate_separate_documents_for_each_assignee", + "fieldtype": "Check", + "label": "Generate Separate Documents For Each Assignee" + }, + { + "fieldname": "section_break_looa", + "fieldtype": "Section Break" + }, + { + "fieldname": "assignee", + "fieldtype": "Table MultiSelect", + "label": "Assignee", + "options": "Auto Repeat User" } ], "links": [], - "modified": "2025-01-20 14:15:55.287788", + "modified": "2025-06-09 18:20:23.775881", "modified_by": "Administrator", "module": "Automation", "name": "Auto Repeat", @@ -245,10 +264,11 @@ "write": 1 } ], + "row_format": "Dynamic", "search_fields": "reference_document", "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "reference_document", "track_changes": 1 -} \ No newline at end of file +} diff --git a/frappe/automation/doctype/auto_repeat/auto_repeat.py b/frappe/automation/doctype/auto_repeat/auto_repeat.py index aba5ae7013..127eefc785 100644 --- a/frappe/automation/doctype/auto_repeat/auto_repeat.py +++ b/frappe/automation/doctype/auto_repeat/auto_repeat.py @@ -13,7 +13,7 @@ from frappe.contacts.doctype.contact.contact import ( get_contacts_linking_to, ) from frappe.core.doctype.communication.email import make -from frappe.desk.form import assign_to +from frappe.desk.form.assign_to import add as assign_to from frappe.model.document import Document from frappe.utils import ( add_days, @@ -49,11 +49,16 @@ class AutoRepeat(Document): if TYPE_CHECKING: from frappe.automation.doctype.auto_repeat_day.auto_repeat_day import AutoRepeatDay + from frappe.automation.doctype.auto_repeat_user.auto_repeat_user import AutoRepeatUser from frappe.types import DF + assignee: DF.TableMultiSelect[AutoRepeatUser] disabled: DF.Check end_date: DF.Date | None - frequency: DF.Literal["", "Daily", "Weekly", "Monthly", "Quarterly", "Half-yearly", "Yearly"] + frequency: DF.Literal[ + "", "Daily", "Weekly", "Fortnightly", "Monthly", "Quarterly", "Half-yearly", "Yearly" + ] + generate_separate_documents_for_each_assignee: DF.Check message: DF.Text | None next_schedule_date: DF.Date | None notify_by_email: DF.Check @@ -87,9 +92,8 @@ class AutoRepeat(Document): def before_insert(self): if not frappe.in_test: - start_date = getdate(self.start_date) - today_date = getdate(today()) - if start_date <= today_date: + today_date = getdate() + if getdate(self.start_date) < today_date: self.start_date = today_date def on_update(self): @@ -134,14 +138,18 @@ class AutoRepeat(Document): return if self.end_date: + end_date = getdate(self.end_date) + self.validate_from_to_dates("start_date", "end_date") - if self.end_date == self.start_date: - frappe.throw( - _("{0} should not be same as {1}").format( - frappe.bold(_("End Date")), frappe.bold(_("Start Date")) + if end_date == getdate(): + frappe.throw(_("End Date cannot be today.")) + if end_date == getdate(self.start_date): + frappe.throw( + _("{0} should not be same as {1}").format( + frappe.bold(_("End Date")), frappe.bold(_("Start Date")) + ) ) - ) def validate_email_id(self): if self.notify_by_email: @@ -219,9 +227,16 @@ class AutoRepeat(Document): def create_documents(self): try: - new_doc = self.make_new_document() + if self.generate_separate_documents_for_each_assignee and self.assignee: + new_docs = self.make_new_documents() + else: + new_docs = self.make_new_document([assignee.user for assignee in self.assignee]) if self.notify_by_email and self.recipients: - self.send_notification(new_doc) + if isinstance(new_docs, list): + for new_doc in new_docs: + self.send_notification(new_doc) + else: + self.send_notification(new_docs) except Exception: error_log = self.log_error( _("Auto repeat failed. Please enable auto repeat after fixing the issues.") @@ -232,7 +247,14 @@ class AutoRepeat(Document): if self.reference_document and not frappe.in_test: self.notify_error_to_user(error_log) - def make_new_document(self): + def make_new_documents(self): + docs = [] + for assignee in self.assignee: + new_doc = self.make_new_document(assignee=[assignee.user]) + docs.append(new_doc) + return docs + + def make_new_document(self, assignee=None): reference_doc = frappe.get_doc(self.reference_doctype, self.reference_document) new_doc = frappe.copy_doc(reference_doc, ignore_no_copy=False) self.update_doc(new_doc, reference_doc) @@ -242,7 +264,14 @@ class AutoRepeat(Document): "label": _("via Auto Repeat"), } new_doc.insert(ignore_permissions=True) - + if assignee: + args = { + "assign_to": assignee, + "doctype": self.reference_doctype, + "name": new_doc.name, + "description": new_doc.get_title(), + } + assign_to(args=args) if self.submit_on_creation: new_doc.submit() @@ -348,6 +377,8 @@ class AutoRepeat(Document): def get_days(self, schedule_date): if self.frequency == "Weekly": days = self.get_offset_for_weekly_frequency(schedule_date) + elif self.frequency == "Fortnightly": + days = 14 else: # daily frequency days = 1 diff --git a/frappe/automation/doctype/auto_repeat/test_auto_repeat.py b/frappe/automation/doctype/auto_repeat/test_auto_repeat.py index f110f6019f..ee8f5af1be 100644 --- a/frappe/automation/doctype/auto_repeat/test_auto_repeat.py +++ b/frappe/automation/doctype/auto_repeat/test_auto_repeat.py @@ -85,6 +85,32 @@ class TestAutoRepeat(IntegrationTestCase): self.assertEqual(todo.get("description"), new_todo.get("description")) + def test_fortnightly_auto_repeat(self): + todo = frappe.get_doc( + doctype="ToDo", description="test fortnightly todo", assigned_by="Administrator" + ).insert() + + doc = make_auto_repeat( + reference_doctype="ToDo", + frequency="Fortnightly", + reference_document=todo.name, + start_date=add_days(today(), -14), + ) + + self.assertEqual(doc.next_schedule_date, today()) + data = get_auto_repeat_entries(getdate(today())) + create_repeated_entries(data) + frappe.db.commit() + + todo = frappe.get_doc(doc.reference_doctype, doc.reference_document) + self.assertEqual(todo.auto_repeat, doc.name) + + new_todo = frappe.db.get_value("ToDo", {"auto_repeat": doc.name, "name": ("!=", todo.name)}, "name") + + new_todo = frappe.get_doc("ToDo", new_todo) + + self.assertEqual(todo.get("description"), new_todo.get("description")) + def test_weekly_auto_repeat_with_weekdays(self): todo = frappe.get_doc( doctype="ToDo", description="test auto repeat with weekdays", assigned_by="Administrator" @@ -221,6 +247,68 @@ class TestAutoRepeat(IntegrationTestCase): ) self.assertEqual(docnames[0].docstatus, 1) + def test_auto_repeat_assignee(self): + todo = frappe.get_doc( + doctype="ToDo", description="test assignee todo", assigned_by="Administrator" + ).insert() + + doc = make_auto_repeat(reference_document=todo.name) + doc.update( + { + "assignee": [ + {"user": "Administrator"}, + {"user": "Guest"}, + ] + } + ) + doc.save() + self.assertEqual(doc.next_schedule_date, today()) + data = get_auto_repeat_entries(getdate(today())) + create_repeated_entries(data) + frappe.db.commit() + + todo = frappe.get_doc(doc.reference_doctype, doc.reference_document) + self.assertEqual(todo.auto_repeat, doc.name) + + new_todo = frappe.db.get_value("ToDo", {"auto_repeat": doc.name, "name": ("!=", todo.name)}, "name") + + new_todo = frappe.get_doc("ToDo", new_todo) + self.assertEqual(todo.get("description"), new_todo.get("description")) + self.assertListEqual( + sorted(list(new_todo.get_assigned_users())), + sorted(["Administrator", "Guest"]), + ) + + def test_auto_repeat_assignee_with_separate_documents(self): + todo = frappe.get_doc( + doctype="ToDo", + description="test assignee todo with multiple doc", + assigned_by="Administrator", + ).insert() + + doc = make_auto_repeat(reference_document=todo.name) + doc.update( + { + "assignee": [ + {"user": "Administrator"}, + {"user": "Guest"}, + ], + "generate_separate_documents_for_each_assignee": 1, + } + ) + doc.save() + self.assertEqual(doc.next_schedule_date, today()) + data = get_auto_repeat_entries(getdate(today())) + create_repeated_entries(data) + frappe.db.commit() + + todo = frappe.get_doc(doc.reference_doctype, doc.reference_document) + self.assertEqual(todo.auto_repeat, doc.name) + + new_todo_count = frappe.db.count("ToDo", {"auto_repeat": doc.name, "name": ("!=", todo.name)}, "name") + + self.assertEqual(new_todo_count, 2) + def make_auto_repeat(**args): args = frappe._dict(args) diff --git a/frappe/core/doctype/transaction_log/__init__.py b/frappe/automation/doctype/auto_repeat_user/__init__.py similarity index 100% rename from frappe/core/doctype/transaction_log/__init__.py rename to frappe/automation/doctype/auto_repeat_user/__init__.py diff --git a/frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json b/frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json new file mode 100644 index 0000000000..7453fe6c30 --- /dev/null +++ b/frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json @@ -0,0 +1,35 @@ +{ + "actions": [], + "allow_rename": 1, + "creation": "2025-06-09 18:19:22.034128", + "doctype": "DocType", + "editable_grid": 1, + "engine": "InnoDB", + "field_order": [ + "user" + ], + "fields": [ + { + "fieldname": "user", + "fieldtype": "Link", + "in_list_view": 1, + "label": "User", + "options": "User", + "reqd": 1 + } + ], + "grid_page_length": 50, + "index_web_pages_for_search": 1, + "istable": 1, + "links": [], + "modified": "2025-06-09 18:19:41.543336", + "modified_by": "Administrator", + "module": "Automation", + "name": "Auto Repeat User", + "owner": "Administrator", + "permissions": [], + "row_format": "Dynamic", + "sort_field": "creation", + "sort_order": "DESC", + "states": [] +} diff --git a/frappe/automation/doctype/auto_repeat_user/auto_repeat_user.py b/frappe/automation/doctype/auto_repeat_user/auto_repeat_user.py new file mode 100644 index 0000000000..b0858d7c03 --- /dev/null +++ b/frappe/automation/doctype/auto_repeat_user/auto_repeat_user.py @@ -0,0 +1,23 @@ +# Copyright (c) 2025, Frappe Technologies and contributors +# For license information, please see license.txt + +# import frappe +from frappe.model.document import Document + + +class AutoRepeatUser(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 + + parent: DF.Data + parentfield: DF.Data + parenttype: DF.Data + user: DF.Link + # end: auto-generated types + + pass diff --git a/frappe/boot.py b/frappe/boot.py index 4d1d95a5a9..6d8781c550 100644 --- a/frappe/boot.py +++ b/frappe/boot.py @@ -11,7 +11,6 @@ import frappe.defaults import frappe.desk.desk_page from frappe.core.doctype.installed_applications.installed_applications import ( get_setup_wizard_completed_apps, - get_setup_wizard_not_required_apps, ) from frappe.core.doctype.navbar_settings.navbar_settings import get_app_logo, get_navbar_settings from frappe.desk.doctype.changelog_feed.changelog_feed import get_changelog_feed_items @@ -121,34 +120,9 @@ def get_bootinfo(): bootinfo.sentry_dsn = sentry_dsn bootinfo.setup_wizard_completed_apps = get_setup_wizard_completed_apps() or [] - bootinfo.setup_wizard_not_required_apps = get_setup_wizard_not_required_apps() or [] - remove_apps_with_incomplete_dependencies(bootinfo) - return bootinfo -def remove_apps_with_incomplete_dependencies(bootinfo): - remove_apps = set() - - for app in bootinfo.setup_wizard_not_required_apps: - if app in bootinfo.setup_wizard_completed_apps: - continue - - for required_apps in frappe.get_hooks("required_apps"): - required_apps = required_apps.split("/") - - for required_app in required_apps: - if app not in bootinfo.setup_wizard_not_required_apps: - continue - - if required_app not in bootinfo.setup_wizard_completed_apps: - remove_apps.add(app) - - for app in remove_apps: - if app in bootinfo.setup_wizard_not_required_apps: - bootinfo.setup_wizard_not_required_apps.remove(app) - - def get_letter_heads(): letter_heads = {} diff --git a/frappe/cache_manager.py b/frappe/cache_manager.py index ed68b2b518..fed740dae2 100644 --- a/frappe/cache_manager.py +++ b/frappe/cache_manager.py @@ -147,17 +147,26 @@ def _clear_doctype_cache_from_redis(doctype: str | None = None): clear_single(doctype) # clear all parent doctypes - for dt in frappe.get_all( - "DocField", "parent", dict(fieldtype=["in", frappe.model.table_fields], options=doctype) - ): - clear_single(dt.parent) - - # clear all parent doctypes - if not frappe.flags.in_install: + try: for dt in frappe.get_all( - "Custom Field", "dt", dict(fieldtype=["in", frappe.model.table_fields], options=doctype) + "DocField", + "parent", + dict(fieldtype=["in", frappe.model.table_fields], options=doctype), + ignore_ddl=True, ): - clear_single(dt.dt) + clear_single(dt.parent) + + # clear all parent doctypes + if not frappe.flags.in_install: + for dt in frappe.get_all( + "Custom Field", + "dt", + dict(fieldtype=["in", frappe.model.table_fields], options=doctype), + ignore_ddl=True, + ): + clear_single(dt.dt) + except frappe.DoesNotExistError: + pass # core doctypes getting migrated. # clear all notifications delete_notification_count_for(doctype) diff --git a/frappe/commands/redis_utils.py b/frappe/commands/redis_utils.py index 884c4400ff..e4e83a87d9 100644 --- a/frappe/commands/redis_utils.py +++ b/frappe/commands/redis_utils.py @@ -61,7 +61,7 @@ def create_rq_users(set_admin_password=False, use_rq_auth=False): ) click.secho(f"`export {env_key}={user_credentials['default'][1]}`") click.secho( - "NOTE: Please save the admin password as you " "can not access redis server without the password", + "NOTE: Please save the admin password as you can not access redis server without the password", fg="yellow", ) diff --git a/frappe/commands/site.py b/frappe/commands/site.py index 0ed16de97b..3e920cc0c2 100644 --- a/frappe/commands/site.py +++ b/frappe/commands/site.py @@ -225,7 +225,7 @@ def _restore( click.secho("Failed to detect type of backup file", fg="red") sys.exit(1) - if "cipher" in out.decode().split(":")[-1].strip(): + if "AES" in out.decode().split(":")[-1].strip(): if encryption_key: click.secho("Encrypted backup file detected. Decrypting using provided key.", fg="yellow") @@ -336,7 +336,7 @@ def restore_backup( # Check if the backup is of an older version of frappe and the user hasn't specified force if is_downgrade(sql_file_path, verbose=True) and not force: warn_message = ( - "This is not recommended and may lead to unexpected behaviour. " "Do you want to continue anyway?" + "This is not recommended and may lead to unexpected behaviour. Do you want to continue anyway?" ) click.confirm(warn_message, abort=True) @@ -691,8 +691,9 @@ def disable_user(context: CliCtxObj, email): @click.command("migrate") @click.option("--skip-failing", is_flag=True, help="Skip patches that fail to run") @click.option("--skip-search-index", is_flag=True, help="Skip search indexing for web documents") +@click.option("--skip-fixtures", is_flag=True, help="Skip loading fixtures") @pass_context -def migrate(context: CliCtxObj, skip_failing=False, skip_search_index=False): +def migrate(context: CliCtxObj, skip_failing=False, skip_search_index=False, skip_fixtures=False): "Run patches, sync schema and rebuild files/translations" from frappe.migrate import SiteMigration @@ -701,8 +702,7 @@ def migrate(context: CliCtxObj, skip_failing=False, skip_search_index=False): click.secho(f"Migrating {site}", fg="green") try: SiteMigration( - skip_failing=skip_failing, - skip_search_index=skip_search_index, + skip_failing=skip_failing, skip_search_index=skip_search_index, skip_fixtures=skip_fixtures ).run(site=site) finally: print() diff --git a/frappe/commands/test_commands.py b/frappe/commands/test_commands.py index de9f154cd4..cde28456ca 100644 --- a/frappe/commands/test_commands.py +++ b/frappe/commands/test_commands.py @@ -297,7 +297,7 @@ class TestCommands(BaseTestCommands): self.execute("bench --site {test_site} backup --exclude 'ToDo'", site_data) site_data.update({"kw": "\"{'partial':True}\""}) self.execute( - "bench --site {test_site} execute" " frappe.utils.backups.fetch_latest_backups --kwargs {kw}", + "bench --site {test_site} execute frappe.utils.backups.fetch_latest_backups --kwargs {kw}", site_data, ) site_data.update({"database": json.loads(self.stdout)["database"]}) diff --git a/frappe/commands/utils.py b/frappe/commands/utils.py index 1446fb7d2c..bfbd1b1052 100644 --- a/frappe/commands/utils.py +++ b/frappe/commands/utils.py @@ -435,8 +435,7 @@ def import_doc(context: CliCtxObj, path, force=False): type=click.Path(exists=True, dir_okay=False, resolve_path=True), required=True, help=( - "Path to import file (.csv, .xlsx)." - "Consider that relative paths will resolve from 'sites' directory" + "Path to import file (.csv, .xlsx). Consider that relative paths will resolve from 'sites' directory" ), ) @click.option("--doctype", type=str, required=True) @@ -914,7 +913,7 @@ def set_config(context: CliCtxObj, key, value, global_=False, parse=False): "output", type=click.Choice(["plain", "table", "json", "legacy"]), help="Output format", - default="legacy", + default="plain", ) def get_version(output): """Show the versions of all the installed apps.""" diff --git a/frappe/contacts/doctype/address/address.json b/frappe/contacts/doctype/address/address.json index 842acb2c89..3e147cc205 100644 --- a/frappe/contacts/doctype/address/address.json +++ b/frappe/contacts/doctype/address/address.json @@ -109,7 +109,8 @@ { "fieldname": "phone", "fieldtype": "Data", - "label": "Phone" + "label": "Phone", + "options": "Phone" }, { "fieldname": "fax", diff --git a/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py b/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py index b1b76a1c12..4963ab4826 100644 --- a/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py +++ b/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py @@ -31,23 +31,22 @@ def execute(filters=None): def get_columns(filters): + reference_doctype = filters.get("reference_doctype") return [ - "{reference_doctype}:Link/{reference_doctype}".format( - reference_doctype=filters.get("reference_doctype") - ), - "Address Line 1", - "Address Line 2", - "City", - "State", - "Postal Code", - "Country", - "Is Primary Address:Check", - "First Name", - "Last Name", - "Address", - "Phone", - "Email Id", - "Is Primary Contact:Check", + f"{_(reference_doctype)}:Link/{reference_doctype}", + _("Address Line 1"), + _("Address Line 2"), + _("City"), + _("State"), + _("Postal Code"), + _("Country"), + f"{_('Is Primary Address')}:Check", + _("First Name"), + _("Last Name"), + _("Address"), + _("Phone"), + _("Email Id"), + f"{_('Is Primary Contact')}:Check", ] diff --git a/frappe/core/api/user_invitation.py b/frappe/core/api/user_invitation.py index 09811a9ace..7ca304b046 100644 --- a/frappe/core/api/user_invitation.py +++ b/frappe/core/api/user_invitation.py @@ -17,9 +17,19 @@ def invite_by_email( frappe.throw(title=_("Invalid input"), msg=_("No email addresses to invite")) # get relevant data from the database + disabled_user_emails = frappe.db.get_all( + "User", + filters={"email": ["in", email_list], "enabled": 0}, + pluck="email", + ) accepted_invite_emails = frappe.db.get_all( "User Invitation", - filters={"email": ["in", email_list], "status": "Accepted", "app_name": app_name}, + filters={ + "email": ["in", email_list], + "status": "Accepted", + "app_name": app_name, + "user": ["is", "set"], + }, pluck="email", ) pending_invite_emails = frappe.db.get_all( @@ -29,7 +39,9 @@ def invite_by_email( ) # create invitation documents - to_invite = list(set(email_list) - set(accepted_invite_emails) - set(pending_invite_emails)) + to_invite = list( + set(email_list) - set(disabled_user_emails) - set(accepted_invite_emails) - set(pending_invite_emails) + ) for email in to_invite: frappe.get_doc( doctype="User Invitation", @@ -40,6 +52,7 @@ def invite_by_email( ).insert(ignore_permissions=True) return { + "disabled_user_emails": disabled_user_emails, "accepted_invite_emails": accepted_invite_emails, "pending_invite_emails": pending_invite_emails, "invited_emails": to_invite, diff --git a/frappe/core/doctype/access_log/access_log.json b/frappe/core/doctype/access_log/access_log.json index 044ba9c90a..bee48969b3 100644 --- a/frappe/core/doctype/access_log/access_log.json +++ b/frappe/core/doctype/access_log/access_log.json @@ -37,7 +37,7 @@ "fieldtype": "Link", "in_list_view": 1, "in_standard_filter": 1, - "label": "User ", + "label": "User", "options": "User", "read_only": 1 }, diff --git a/frappe/core/doctype/audit_trail/test_audit_trail.py b/frappe/core/doctype/audit_trail/test_audit_trail.py index 41dadc92b5..820651e751 100644 --- a/frappe/core/doctype/audit_trail/test_audit_trail.py +++ b/frappe/core/doctype/audit_trail/test_audit_trail.py @@ -25,7 +25,7 @@ class TestAuditTrail(IntegrationTestCase): re_amended_doc = amend_document(amended_doc, changed_fields, {}, 1) comparator = create_comparator_doc("Test Custom Doctype for Doc Comparator", re_amended_doc.name) - documents, results = comparator.compare_document() + _documents, results = comparator.compare_document() test_field_values = results["changed"]["Field"] self.check_expected_values(test_field_values, ["first value", "second value", "third value"]) @@ -41,7 +41,7 @@ class TestAuditTrail(IntegrationTestCase): amended_doc = amend_document(doc, {}, rows_updated, 1) comparator = create_comparator_doc("Test Custom Doctype for Doc Comparator", amended_doc.name) - documents, results = comparator.compare_document() + _documents, results = comparator.compare_document() results = frappe._dict(results) self.check_rows_updated(results.row_changed) diff --git a/frappe/core/doctype/communication/communication.py b/frappe/core/doctype/communication/communication.py index 9e6907edd6..2c5cf4889a 100644 --- a/frappe/core/doctype/communication/communication.py +++ b/frappe/core/doctype/communication/communication.py @@ -565,11 +565,11 @@ def parse_email(email_strings): for email in email_string.split(","): local_part = email.split("@", 1)[0].strip('"') - user, detail = None, None + _user, detail = None, None if "+" in local_part: - user, detail = local_part.split("+", 1) + _user, detail = local_part.split("+", 1) elif "--" in local_part: - detail, user = local_part.rsplit("--", 1) + detail, _user = local_part.rsplit("--", 1) if not detail: continue diff --git a/frappe/core/doctype/custom_docperm/custom_docperm.json b/frappe/core/doctype/custom_docperm/custom_docperm.json index eb9dcdfe0a..00a47a0113 100644 --- a/frappe/core/doctype/custom_docperm/custom_docperm.json +++ b/frappe/core/doctype/custom_docperm/custom_docperm.json @@ -23,6 +23,7 @@ "submit", "cancel", "amend", + "mask", "additional_permissions", "report", "export", @@ -153,6 +154,16 @@ "print_width": "32px", "width": "32px" }, + { + "default": "0", + "fieldname": "mask", + "fieldtype": "Check", + "label": "Mask", + "oldfieldname": "mask", + "oldfieldtype": "Check", + "print_width": "32px", + "width": "32px" + }, { "fieldname": "additional_permissions", "fieldtype": "Section Break", @@ -214,11 +225,13 @@ "label": "Select" } ], + "grid_page_length": 50, "links": [], - "modified": "2024-03-23 16:02:14.726078", + "modified": "2025-05-22 16:59:35.484376", "modified_by": "Administrator", "module": "Core", "name": "Custom DocPerm", + "naming_rule": "Random", "owner": "Administrator", "permissions": [ { @@ -235,8 +248,9 @@ } ], "read_only": 1, + "row_format": "Dynamic", "sort_field": "creation", "sort_order": "ASC", "states": [], "title_field": "parent" -} \ No newline at end of file +} diff --git a/frappe/core/doctype/custom_docperm/custom_docperm.py b/frappe/core/doctype/custom_docperm/custom_docperm.py index 77f2524159..485e187c5e 100644 --- a/frappe/core/doctype/custom_docperm/custom_docperm.py +++ b/frappe/core/doctype/custom_docperm/custom_docperm.py @@ -21,6 +21,7 @@ class CustomDocPerm(Document): email: DF.Check export: DF.Check if_owner: DF.Check + mask: DF.Check parent: DF.Data | None permlevel: DF.Int print: DF.Check diff --git a/frappe/core/doctype/data_import/data_import.py b/frappe/core/doctype/data_import/data_import.py index b0ee905689..e49d1b93db 100644 --- a/frappe/core/doctype/data_import/data_import.py +++ b/frappe/core/doctype/data_import/data_import.py @@ -77,10 +77,11 @@ class DataImport(Document): return validate_google_sheets_url(self.google_sheets_url) - def set_payload_count(self): + def set_payload_count(self, importer: Importer | None = None): if self.import_file: - i = self.get_importer() - payloads = i.import_file.get_payloads_for_import() + if importer is None: + importer = self.get_importer() + payloads = importer.import_file.get_payloads_for_import() self.payload_count = len(payloads) @frappe.whitelist() @@ -262,12 +263,15 @@ def import_file(doctype, file_path, import_type, submit_after_import=False, cons """ data_import = frappe.new_doc("Data Import") + data_import.reference_doctype = doctype + data_import.import_file = file_path data_import.submit_after_import = submit_after_import data_import.import_type = ( "Insert New Records" if import_type.lower() == "insert" else "Update Existing Records" ) i = Importer(doctype=doctype, file_path=file_path, data_import=data_import, console=console) + data_import.set_payload_count(i) i.import_data() diff --git a/frappe/core/doctype/docfield/docfield.json b/frappe/core/doctype/docfield/docfield.json index e04006f472..3b68df8485 100644 --- a/frappe/core/doctype/docfield/docfield.json +++ b/frappe/core/doctype/docfield/docfield.json @@ -11,8 +11,8 @@ "label", "fieldtype", "fieldname", - "precision", "length", + "precision", "non_negative", "hide_days", "hide_seconds", @@ -20,6 +20,7 @@ "is_virtual", "search_index", "not_nullable", + "mask", "column_break_18", "options", "sort_options", @@ -135,7 +136,7 @@ }, { "depends_on": "eval:in_list([\"Float\", \"Currency\", \"Percent\"], doc.fieldtype)", - "description": "Set non-standard precision for a Float or Currency field", + "description": "Set non-standard precision for a Float, Currency or Percent field", "fieldname": "precision", "fieldtype": "Select", "label": "Precision", @@ -143,7 +144,7 @@ "print_hide": 1 }, { - "depends_on": "eval:in_list(['Data', 'Link', 'Dynamic Link', 'Password', 'Select', 'Read Only', 'Attach', 'Attach Image', 'Int'], doc.fieldtype)", + "depends_on": "eval:in_list(['Data', 'Link', 'Dynamic Link', 'Password', 'Select', 'Read Only', 'Attach', 'Attach Image', 'Int', 'Float', 'Currency', 'Percent'], doc.fieldtype)", "fieldname": "length", "fieldtype": "Int", "label": "Length" @@ -499,7 +500,7 @@ }, { "default": "0", - "depends_on": "eval:in_list([\"Int\", \"Float\", \"Currency\"], doc.fieldtype)", + "depends_on": "eval:in_list([\"Int\", \"Float\", \"Currency\", \"Percent\"], doc.fieldtype)", "fieldname": "non_negative", "fieldtype": "Check", "label": "Non Negative" @@ -607,20 +608,29 @@ "fieldname": "sticky", "fieldtype": "Check", "label": "Sticky" + }, + { + "default": "0", + "depends_on": "eval:[\"Select\", \"Read Only\", \"Phone\", \"Percent\", \"Password\", \"Link\", \"Int\", \"Float\", \"Dynamic Link\", \"Duration\", \"Datetime\", \"Currency\", \"Data\", \"Date\"].includes(doc.fieldtype)", + "fieldname": "mask", + "fieldtype": "Check", + "label": "Mask" } ], + "grid_page_length": 50, "idx": 1, "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2025-01-30 14:58:19.746600", + "modified": "2025-09-17 13:20:57.852396", "modified_by": "Administrator", "module": "Core", "name": "DocField", "naming_rule": "Random", "owner": "Administrator", "permissions": [], + "row_format": "Dynamic", "sort_field": "creation", "sort_order": "ASC", "states": [] -} \ No newline at end of file +} diff --git a/frappe/core/doctype/docfield/docfield.py b/frappe/core/doctype/docfield/docfield.py index 43542427f6..3f6d642e55 100644 --- a/frappe/core/doctype/docfield/docfield.py +++ b/frappe/core/doctype/docfield/docfield.py @@ -90,6 +90,7 @@ class DocField(Document): link_filters: DF.JSON | None make_attachment_public: DF.Check mandatory_depends_on: DF.Code | None + mask: DF.Check max_height: DF.Data | None no_copy: DF.Check non_negative: DF.Check diff --git a/frappe/core/doctype/docperm/docperm.json b/frappe/core/doctype/docperm/docperm.json index 1b6e7fffc7..3c6591f3d4 100644 --- a/frappe/core/doctype/docperm/docperm.json +++ b/frappe/core/doctype/docperm/docperm.json @@ -22,6 +22,7 @@ "submit", "cancel", "amend", + "mask", "additional_permissions", "report", "export", @@ -205,18 +206,27 @@ "fieldtype": "Check", "in_list_view": 1, "label": "Select" + }, + { + "default": "0", + "fieldname": "mask", + "fieldtype": "Check", + "label": "Mask" } ], + "grid_page_length": 50, "idx": 1, + "index_web_pages_for_search": 1, "istable": 1, "links": [], - "modified": "2024-03-23 16:02:18.443496", + "modified": "2025-05-20 16:50:32.679113", "modified_by": "Administrator", "module": "Core", "name": "DocPerm", "owner": "Administrator", "permissions": [], + "row_format": "Dynamic", "sort_field": "creation", "sort_order": "ASC", "states": [] -} \ No newline at end of file +} diff --git a/frappe/core/doctype/docperm/docperm.py b/frappe/core/doctype/docperm/docperm.py index d014d7dae1..8aa54845c2 100644 --- a/frappe/core/doctype/docperm/docperm.py +++ b/frappe/core/doctype/docperm/docperm.py @@ -20,6 +20,7 @@ class DocPerm(Document): email: DF.Check export: DF.Check if_owner: DF.Check + mask: DF.Check parent: DF.Data parentfield: DF.Data parenttype: DF.Data diff --git a/frappe/core/doctype/doctype/doctype.json b/frappe/core/doctype/doctype/doctype.json index 6a035986b3..95f85fd9e8 100644 --- a/frappe/core/doctype/doctype/doctype.json +++ b/frappe/core/doctype/doctype/doctype.json @@ -702,7 +702,7 @@ "label": "Protect Attached Files" }, { - "default": "0", + "default": "20", "depends_on": "istable", "fieldname": "rows_threshold_for_grid_search", "fieldtype": "Int", @@ -792,7 +792,7 @@ "link_fieldname": "document_type" } ], - "modified": "2025-07-19 12:23:16.296416", + "modified": "2025-09-23 06:48:13.555017", "modified_by": "Administrator", "module": "Core", "name": "DocType", diff --git a/frappe/core/doctype/doctype/doctype.py b/frappe/core/doctype/doctype/doctype.py index 845dbf5219..1f79083004 100644 --- a/frappe/core/doctype/doctype/doctype.py +++ b/frappe/core/doctype/doctype/doctype.py @@ -1660,6 +1660,18 @@ def validate_fields(meta: Meta): if docfield.options and (int(docfield.options) > 10 or int(docfield.options) < 3): frappe.throw(_("Options for Rating field can range from 3 to 10")) + def check_decimal_config(docfield): + if docfield.fieldtype not in ("Currency", "Float", "Percent"): + return + + if docfield.length and docfield.precision: + if cint(docfield.precision) > cint(docfield.length): + frappe.throw( + _("Precision ({0}) for {1} cannot be greater than its length ({2}).").format( + docfield.precision, frappe.bold(docfield.label), docfield.length + ) + ) + fields = meta.get("fields") fieldname_list = [d.fieldname for d in fields] @@ -1682,6 +1694,7 @@ def validate_fields(meta: Meta): scrub_options_in_select(d) validate_fetch_from(d) validate_data_field_type(d) + check_decimal_config(d) if not frappe.flags.in_migrate or in_ci: check_unique_fieldname(meta.get("name"), d.fieldname) diff --git a/frappe/core/doctype/doctype/doctype_list.js b/frappe/core/doctype/doctype/doctype_list.js index 81ca7b1ea3..46b5e5b99d 100644 --- a/frappe/core/doctype/doctype/doctype_list.js +++ b/frappe/core/doctype/doctype/doctype_list.js @@ -24,6 +24,7 @@ frappe.listview_settings["DocType"] = { fieldtype: "Data", reqd: 1, default: doctype_name, + length: 61, }, { fieldtype: "Column Break" }, { diff --git a/frappe/core/doctype/doctype/test_doctype.py b/frappe/core/doctype/doctype/test_doctype.py index ce2aeb65e8..20820fbaa6 100644 --- a/frappe/core/doctype/doctype/test_doctype.py +++ b/frappe/core/doctype/doctype/test_doctype.py @@ -827,6 +827,45 @@ class TestDocType(IntegrationTestCase): self.assertEqual(get_format(compressed_dt), "COMPRESSED") self.assertEqual(get_format(dynamic_dt), "DYNAMIC") + def test_decimal_field_configuration(self): + doctype = new_doctype( + "Test Decimal Config", + fields=[ + { + "fieldname": "decimal_field", + "fieldtype": "Currency", + "length": 30, + "precision": 3, + } + ], + ).insert(ignore_if_duplicate=True) + decimal_field_type = frappe.db.get_column_type(doctype.name, "decimal_field") + self.assertIn("(30,3)", decimal_field_type.lower()) + + def test_decimal_field_precision_exceeds_length(self): + doctype = new_doctype( + "Test Decimal Config 2", + fields=[ + { + "fieldname": "decimal_field", + "fieldtype": "Currency", + "length": 10, + "precision": 11, + } + ], + ) + self.assertRaises(frappe.ValidationError, doctype.insert) + + def test_delete_doc_clears_cache(self): + dt = new_doctype( + fields=[{"fieldname": "test_fdname", "fieldtype": "Data", "label": "Test Field"}], + ).insert() + frappe.get_meta(dt.name) + frappe.delete_doc("DocType", dt.name, force=1, delete_permanently=False) + frappe.db.commit() + with self.assertRaises(frappe.DoesNotExistError): + frappe.get_meta(dt.name) + def new_doctype( name: str | None = None, diff --git a/frappe/core/doctype/document_naming_settings/document_naming_settings.json b/frappe/core/doctype/document_naming_settings/document_naming_settings.json index c7f913aca5..5319bb9816 100644 --- a/frappe/core/doctype/document_naming_settings/document_naming_settings.json +++ b/frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -55,7 +55,7 @@ }, { "collapsible": 1, - "description": "Change the starting / current sequence number of an existing series.
\n\nWarning: Incorrectly updating counters can prevent documents from getting created. ", + "description": "Change the starting / current sequence number of an existing series.
\n\nWarning: Incorrectly updating counters can prevent documents from getting created.", "fieldname": "update_series", "fieldtype": "Section Break", "label": "Update Series Counter" diff --git a/frappe/core/doctype/file/file.py b/frappe/core/doctype/file/file.py index 5cbef2db16..ebf884daa1 100755 --- a/frappe/core/doctype/file/file.py +++ b/frappe/core/doctype/file/file.py @@ -17,9 +17,17 @@ from frappe.database.schema import SPECIAL_CHAR_PATTERN from frappe.exceptions import DoesNotExistError from frappe.model.document import Document from frappe.permissions import SYSTEM_USER_ROLE, get_doctypes_with_read -from frappe.utils import call_hook_method, cint, get_files_path, get_hook_method, get_url +from frappe.utils import ( + call_hook_method, + cint, + get_files_path, + get_hook_method, + get_url, +) from frappe.utils.file_manager import is_safe_path +from frappe.utils.html_utils import escape_html from frappe.utils.image import optimize_image, strip_exif_data +from frappe.utils.pdf import pdf_contains_js from .exceptions import ( AttachmentLimitReached, @@ -30,8 +38,10 @@ from .exceptions import ( from .utils import * exclude_from_linked_with = True -ImageFile.LOAD_TRUNCATED_IMAGES = True -URL_PREFIXES = ("http://", "https://") + +ImageFile.LOAD_TRUNCATED_IMAGES = True # nosemgrep + +URL_PREFIXES = ("http://", "https://", "/api/method/") FILE_ENCODING_OPTIONS = ("utf-8-sig", "utf-8", "windows-1250", "windows-1252") @@ -131,7 +141,6 @@ class File(Document): self.validate_file_path() self.validate_file_url() self.validate_file_on_disk() - self.file_size = frappe.form_dict.file_size or self.file_size def validate_attachment_references(self): @@ -139,7 +148,10 @@ class File(Document): return if not self.attached_to_name or not isinstance(self.attached_to_name, str | int): - frappe.throw(_("Attached To Name must be a string or an integer"), frappe.ValidationError) + frappe.throw( + _("Attached To Name must be a string or an integer"), + frappe.ValidationError, + ) if self.attached_to_field and SPECIAL_CHAR_PATTERN.search(self.attached_to_field): frappe.throw(_("The fieldname you've specified in Attached To Field is invalid")) @@ -213,8 +225,8 @@ class File(Document): if self.is_remote_file or not self.file_url: return - if not self.file_url.startswith(("/files/", "/private/files/")): - # Probably an invalid URL since it doesn't start with http either + if not self.file_url.startswith(("/files/", "/private/files/", "/api/method/")): + # Probably an invalid URL since it doesn't start with http and isn't an internal URL either frappe.throw( _("URL must start with http:// or https://"), title=_("Invalid URL"), @@ -318,7 +330,9 @@ class File(Document): if current_attachment_count >= attachment_limit: frappe.throw( _("Maximum Attachment Limit of {0} has been reached for {1} {2}.").format( - frappe.bold(attachment_limit), self.attached_to_doctype, self.attached_to_name + frappe.bold(attachment_limit), + self.attached_to_doctype, + self.attached_to_name, ), exc=AttachmentLimitReached, title=_("Attachment Limit Reached"), @@ -372,7 +386,14 @@ class File(Document): return if self.file_type not in allowed_extensions.splitlines(): - frappe.throw(_("File type of {0} is not allowed").format(self.file_type), exc=FileTypeNotAllowed) + frappe.throw( + _("File type of {0} is not allowed").format(self.file_type), + exc=FileTypeNotAllowed, + ) + + def check_content(self): + if self.file_type == "PDF" and self._content and pdf_contains_js(self._content): + frappe.throw(_("This PDF cannot be uploaded as it contains unsafe content.")) def validate_duplicate_entry(self): if not self.flags.ignore_duplicate_entry_error and not self.is_folder: @@ -407,7 +428,8 @@ class File(Document): def set_file_name(self): if not self.file_name and not self.file_url: frappe.throw( - _("Fields `file_name` or `file_url` must be set for File"), exc=frappe.MandatoryError + _("Fields `file_name` or `file_url` must be set for File"), + exc=frappe.MandatoryError, ) elif not self.file_name and self.file_url: self.file_name = self.file_url.split("/")[-1] @@ -634,7 +656,7 @@ class File(Document): if isinstance(self._content, str): self._content = self._content.encode() - + self.check_content() with open(file_path, "wb+") as f: f.write(self._content) os.fsync(f.fileno()) @@ -763,7 +785,7 @@ class File(Document): def create_attachment_record(self): icon = ' ' if self.is_private else "" file_url = quote(frappe.safe_encode(self.file_url), safe="/:") if self.file_url else self.file_name - file_name = self.file_name or self.file_url + file_name = escape_html(self.file_name or self.file_url) self.add_comment_in_reference_doc( "Attachment", @@ -779,6 +801,9 @@ class File(Document): frappe.clear_messages() def set_is_private(self): + if self.is_private: + return + if self.file_url: self.is_private = cint(self.file_url.startswith("/private")) diff --git a/frappe/core/doctype/file/file_list.js b/frappe/core/doctype/file/file_list.js new file mode 100644 index 0000000000..94ec9760cf --- /dev/null +++ b/frappe/core/doctype/file/file_list.js @@ -0,0 +1,7 @@ +frappe.listview_settings["File"] = { + formatters: { + file_name: function (value) { + return frappe.utils.escape_html(value || ""); + }, + }, +}; diff --git a/frappe/core/doctype/installed_applications/installed_applications.py b/frappe/core/doctype/installed_applications/installed_applications.py index b589a009ed..ae0ec50e38 100644 --- a/frappe/core/doctype/installed_applications/installed_applications.py +++ b/frappe/core/doctype/installed_applications/installed_applications.py @@ -32,15 +32,18 @@ class InstalledApplications(Document): self.delete_key("installed_applications") for app in frappe.utils.get_installed_apps_info(): - has_setup_wizard = 0 - if app.get("app_name") == "frappe" or frappe.get_hooks(app_name=app.get("app_name")).get( - "setup_wizard_stages" - ): - has_setup_wizard = 1 - + has_setup_wizard = 1 setup_complete = app_wise_setup_details.get(app.get("app_name")) or 0 - if app.get("app_name") == "india_compliance": - setup_complete = app_wise_setup_details.get("erpnext") or 0 + if app.get("app_name") in ["frappe", "erpnext"] and not setup_complete: + if app.get("app_name") == "frappe" and has_non_admin_user(): + setup_complete = 1 + + if app.get("app_name") == "erpnext" and has_company(): + setup_complete = 1 + + if app.get("app_name") not in ["frappe", "erpnext"]: + setup_complete = 0 + has_setup_wizard = 0 self.append( "installed_applications", @@ -77,6 +80,22 @@ class InstalledApplications(Document): frappe.reload_doc("integrations", "doctype", "webhook") +def has_non_admin_user(): + if frappe.db.has_table("User") and frappe.db.get_value( + "User", {"user_type": "System User", "name": ["not in", ["Administrator", "Guest"]]} + ): + return True + + return False + + +def has_company(): + if frappe.db.has_table("Company") and frappe.get_all("Company", limit=1): + return True + + return False + + @frappe.whitelist() def update_installed_apps_order(new_order: list[str] | str): """Change the ordering of `installed_apps` global diff --git a/frappe/core/doctype/module_profile/module_profile.py b/frappe/core/doctype/module_profile/module_profile.py index 04b245e33f..7a3f4dcdef 100644 --- a/frappe/core/doctype/module_profile/module_profile.py +++ b/frappe/core/doctype/module_profile/module_profile.py @@ -1,6 +1,9 @@ # Copyright (c) 2020, Frappe Technologies and contributors # License: MIT. See LICENSE +from collections import defaultdict + +import frappe from frappe.model.document import Document @@ -25,3 +28,37 @@ class ModuleProfile(Document): def get_permission_log_options(self, event=None): return {"fields": ["block_modules"]} + + def on_update(self): + self.clear_cache() + self.queue_action( + "update_all_users", + now=frappe.flags.in_test or frappe.flags.in_install, + enqueue_after_commit=True, + ) + + def update_all_users(self): + """Changes in module_profile reflected across all its user""" + block_module = frappe.qb.DocType("Block Module") + user = frappe.qb.DocType("User") + + all_current_modules = ( + frappe.qb.from_(user) + .join(block_module) + .on(user.name == block_module.parent) + .where(user.module_profile == self.name) + .select(user.name, block_module.module) + ).run() + user_modules = defaultdict(set) + for user, module in all_current_modules: + user_modules[user].add(module) + + module_profile_modules = {module.module for module in self.block_modules} + + for user_name, modules in user_modules.items(): + if modules != module_profile_modules: + user = frappe.get_doc("User", user_name) + user.block_modules = [] + for module in module_profile_modules: + user.append("block_modules", {"module": module}) + user.save() diff --git a/frappe/core/doctype/module_profile/test_module_profile.py b/frappe/core/doctype/module_profile/test_module_profile.py index abfea4af0b..b55a06851e 100644 --- a/frappe/core/doctype/module_profile/test_module_profile.py +++ b/frappe/core/doctype/module_profile/test_module_profile.py @@ -5,25 +5,152 @@ from frappe.tests import IntegrationTestCase class TestModuleProfile(IntegrationTestCase): - def test_make_new_module_profile(self): - if not frappe.db.get_value("Module Profile", "_Test Module Profile"): - frappe.get_doc( - { - "doctype": "Module Profile", - "module_profile_name": "_Test Module Profile", - "block_modules": [{"module": "Accounts"}], - } - ).insert() + def setUp(self): + frappe.delete_doc_if_exists("Module Profile", "_Test Module Profile", force=1) + frappe.delete_doc_if_exists("Module Profile", "_Test Module Profile 2", force=1) + frappe.delete_doc_if_exists("User", "test-module-user1@example.com", force=1) + frappe.delete_doc_if_exists("User", "test-module-user2@example.com", force=1) - # add to user and check - if not frappe.db.get_value("User", "test-for-module_profile@example.com"): - new_user = frappe.get_doc( - {"doctype": "User", "email": "test-for-module_profile@example.com", "first_name": "Test User"} - ).insert() - else: - new_user = frappe.get_doc("User", "test-for-module_profile@example.com") + def test_make_new_module_profile(self): + frappe.get_doc( + { + "doctype": "Module Profile", + "module_profile_name": "_Test Module Profile", + "block_modules": [{"module": "Accounts"}], + } + ).insert() + + new_user = frappe.get_doc( + {"doctype": "User", "email": "test-module-user1@example.com", "first_name": "Test User"} + ).insert() new_user.module_profile = "_Test Module Profile" new_user.save() self.assertEqual(new_user.block_modules[0].module, "Accounts") + + def test_multiple_block_modules(self): + """Assign multiple blocked modules from profile to user""" + module_profile = frappe.get_doc( + { + "doctype": "Module Profile", + "module_profile_name": "_Test Module Profile", + "block_modules": [{"module": "Accounts"}, {"module": "CRM"}, {"module": "HR"}], + } + ).insert() + + user = frappe.get_doc( + {"doctype": "User", "email": "test-module-user1@example.com", "first_name": "Test User"} + ).insert() + + user.module_profile = module_profile.name + user.save() + + self.assertSetEqual({bm.module for bm in user.block_modules}, {"Accounts", "CRM", "HR"}) + + def test_update_module_profile_propagates_to_users(self): + """Updating block_modules in profile should update linked users""" + module_profile = frappe.get_doc( + { + "doctype": "Module Profile", + "module_profile_name": "_Test Module Profile", + "block_modules": [{"module": "Accounts"}], + } + ).insert() + + user = frappe.get_doc( + {"doctype": "User", "email": "test-module-user1@example.com", "first_name": "Test User"} + ).insert() + + user.module_profile = module_profile.name + user.save() + + self.assertEqual({bm.module for bm in user.block_modules}, {"Accounts"}) + + module_profile.append("block_modules", {"module": "Projects"}) + module_profile.save() + + user.reload() + self.assertSetEqual({bm.module for bm in user.block_modules}, {"Accounts", "Projects"}) + + def test_clear_block_modules(self): + """Clearing block_modules in profile should also clear them for users""" + module_profile = frappe.get_doc( + { + "doctype": "Module Profile", + "module_profile_name": "_Test Module Profile", + "block_modules": [{"module": "Accounts"}], + } + ).insert() + + user = frappe.get_doc( + {"doctype": "User", "email": "test-module-user1@example.com", "first_name": "Test User"} + ).insert() + + user.module_profile = module_profile.name + user.save() + self.assertTrue(user.block_modules) + + module_profile.block_modules = [] + module_profile.save() + + user.reload() + self.assertEqual(user.block_modules, []) + + def test_multiple_users_same_profile(self): + """Updates should propagate to all users linked to the same profile""" + module_profile = frappe.get_doc( + { + "doctype": "Module Profile", + "module_profile_name": "_Test Module Profile", + "block_modules": [{"module": "Accounts"}], + } + ).insert() + + user1 = frappe.get_doc( + {"doctype": "User", "email": "test-module-user1@example.com", "first_name": "User One"} + ).insert() + user2 = frappe.get_doc( + {"doctype": "User", "email": "test-module-user2@example.com", "first_name": "User Two"} + ).insert() + + for u in (user1, user2): + u.module_profile = module_profile.name + u.save() + + module_profile.append("block_modules", {"module": "Projects"}) + module_profile.save() + + user1.reload() + user2.reload() + self.assertEqual([bm.module for bm in user1.block_modules], ["Accounts", "Projects"]) + self.assertEqual([bm.module for bm in user2.block_modules], ["Accounts", "Projects"]) + + def test_switch_user_module_profile(self): + """Switching user to a different profile updates their block_modules""" + profile1 = frappe.get_doc( + { + "doctype": "Module Profile", + "module_profile_name": "_Test Module Profile", + "block_modules": [{"module": "Accounts"}], + } + ).insert() + profile2 = frappe.get_doc( + { + "doctype": "Module Profile", + "module_profile_name": "_Test Module Profile 2", + "block_modules": [{"module": "HR"}], + } + ).insert() + + user = frappe.get_doc( + {"doctype": "User", "email": "test-module-user1@example.com", "first_name": "Test User"} + ).insert() + + user.module_profile = profile1.name + user.save() + self.assertEqual([bm.module for bm in user.block_modules], ["Accounts"]) + + user.module_profile = profile2.name + user.save() + self.assertEqual([bm.module for bm in user.block_modules], ["HR"]) diff --git a/frappe/core/doctype/report/report.json b/frappe/core/doctype/report/report.json index 1830ba8533..519184d57b 100644 --- a/frappe/core/doctype/report/report.json +++ b/frappe/core/doctype/report/report.json @@ -162,7 +162,7 @@ "label": "Filters" }, { - "depends_on": "eval:doc.report_type != \"Custom Report\"", + "depends_on": "eval:![\"Custom Report\", \"Report Builder\"].includes(doc.report_type)", "fieldname": "filters", "fieldtype": "Table", "label": "Filters", @@ -177,7 +177,7 @@ "label": "Columns" }, { - "depends_on": "eval:doc.report_type != \"Custom Report\"", + "depends_on": "eval:![\"Custom Report\", \"Report Builder\"].includes(doc.report_type)", "fieldname": "columns", "fieldtype": "Table", "label": "Columns", @@ -207,7 +207,7 @@ "idx": 1, "index_web_pages_for_search": 1, "links": [], - "modified": "2025-03-12 17:08:09.629411", + "modified": "2025-08-28 18:28:32.510719", "modified_by": "Administrator", "module": "Core", "name": "Report", diff --git a/frappe/core/doctype/rq_job/rq_job.js b/frappe/core/doctype/rq_job/rq_job.js index 0f1f88af9d..75834a961a 100644 --- a/frappe/core/doctype/rq_job/rq_job.js +++ b/frappe/core/doctype/rq_job/rq_job.js @@ -13,7 +13,7 @@ frappe.ui.form.on("RQ Job", { frm.add_custom_button(__("Force Stop job"), () => { frappe.confirm( __( - "This will terminate the job immediately and might be dangerous, are you sure? " + "This will terminate the job immediately and might be dangerous, are you sure?" ), () => { frappe diff --git a/frappe/core/doctype/server_script/server_script.js b/frappe/core/doctype/server_script/server_script.js index 86b99c1c12..736e9b5346 100644 --- a/frappe/core/doctype/server_script/server_script.js +++ b/frappe/core/doctype/server_script/server_script.js @@ -44,16 +44,15 @@ frappe.ui.form.on("Server Script", { }, setup_help(frm) { - frm.get_field("help_html").html(` + const help_field = frm.get_field("help_html"); + help_field.html(`

DocType Event

Add logic for standard doctype events like Before Insert, After Submit, etc.

-
-	
+

 # set property
 if "test" in doc.description:
 	doc.status = 'Closed'
 
-
 # validate
 if "validate" in doc.description:
 	raise frappe.ValidationError
@@ -65,13 +64,11 @@ if doc.allocated_to:
 		owner = doc.allocated_to,
 		description = doc.subject
 	)).insert()
-
-
+
Payment processing

Payment processing events have a special state. See the PaymentController in Frappe Payments for details.

-
-	
+

 # retreive payment session state
 ps = doc.flags.payment_session
 
@@ -81,7 +78,10 @@ if ps.is_success:
 	# custom process return values
 	doc.flags.payment_session.result = {
 		"message": "Thank you for your payment",
-		"action": {"href": "https://shop.example.com", "label": "Return to shop"},
+		"action": {
+			"href": "https://shop.example.com",
+			"label": "Return to shop"
+		}
 	}
 if ps.is_pre_authorized:
 	if ps.changed: # could be an idempotent run
@@ -92,21 +92,20 @@ if ps.is_processing:
 if ps.is_declined:
 	if ps.changed: # could be an idempotent run
 		...
-
-
+
+

The On Payment Failed (on_payment_failed) event only transports the error message which the controller implementation had extracted from the transaction.

-
-	
+
+

 msg = doc.flags.payment_failure_message
 doc.my_failure_message_field = msg
-
-
+

API Call

Respond to /api/method/<method-name> calls, just like whitelisted methods

-

+

 # respond to API
 
 if frappe.form_dict.message == "ping":
@@ -119,12 +118,16 @@ else:
 
 

Permission Query

Add conditions to the where clause of list queries.

-

-# generate dynamic conditions and set it in the conditions variable
-tenant_id = frappe.db.get_value(...)
-conditions = f'tenant_id = {tenant_id}'
+

Generate dynamic conditions and set it in the conditions variable:

-# resulting select query +

+tenant_id = frappe.db.get_value(...) # -> 2
+conditions = f'tenant_id = {tenant_id}'
+
+ +

The resulting select query is:

+ +

 select name from \`tabPerson\`
 where tenant_id = 2
 order by creation desc
@@ -135,15 +138,13 @@ order by creation desc
 

Workflow Task

Execute when a particular Workflow Action Master is executed.

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

-
+

 # create a customer with the same name as the given document
-
 customer = frappe.new_doc("Customer")
-customer.customer_name = doc.first_name + " " + doc.last_name # we get this from the workflow action
+customer.customer_name = doc.first_name + " " + doc.last_name # we get this doc from the workflow action
 customer.customer_type = "Company"
-
-c.save()
-
-`); +customer.save() +
`); + frappe.utils.highlight_pre(help_field.$wrapper); }, }); diff --git a/frappe/core/doctype/server_script/server_script.json b/frappe/core/doctype/server_script/server_script.json index c8a78063d2..b1a968c6a9 100644 --- a/frappe/core/doctype/server_script/server_script.json +++ b/frappe/core/doctype/server_script/server_script.json @@ -137,7 +137,7 @@ "label": "Time Window (Seconds)" }, { - "depends_on": "eval:doc.event_frequency==='Cron'", + "depends_on": "eval:doc.script_type === \"Scheduler Event\" && doc.event_frequency === 'Cron'", "description": "
*  *  *  *  *\n\u252c  \u252c  \u252c  \u252c  \u252c\n\u2502  \u2502  \u2502  \u2502  \u2502\n\u2502  \u2502  \u2502  \u2502  \u2514 day of week (0 - 6) (0 is Sunday)\n\u2502  \u2502  \u2502  \u2514\u2500\u2500\u2500\u2500\u2500 month (1 - 12)\n\u2502  \u2502  \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 day of month (1 - 31)\n\u2502  \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 hour (0 - 23)\n\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 minute (0 - 59)\n\n---\n\n* - Any value\n/ - Step values\n
\n", "fieldname": "cron_format", "fieldtype": "Data", @@ -151,7 +151,7 @@ "link_fieldname": "server_script" } ], - "modified": "2025-07-03 16:12:29.676150", + "modified": "2025-09-02 11:11:07.528661", "modified_by": "Administrator", "module": "Core", "name": "Server Script", diff --git a/frappe/core/doctype/sms_settings/sms_settings.py b/frappe/core/doctype/sms_settings/sms_settings.py index f48ddcfa0f..6d9207db88 100644 --- a/frappe/core/doctype/sms_settings/sms_settings.py +++ b/frappe/core/doctype/sms_settings/sms_settings.py @@ -63,6 +63,10 @@ def get_contact_number(contact_name, ref_doctype, ref_name): @frappe.whitelist() def send_sms(receiver_list, msg, sender_name="", success_msg=True): + send_sms_hook_methods = frappe.get_hooks("send_sms") + if send_sms_hook_methods: + return frappe.get_attr(send_sms_hook_methods[-1])(receiver_list, msg, sender_name, success_msg) + import json if isinstance(receiver_list, str): diff --git a/frappe/core/doctype/submission_queue/submission_queue.py b/frappe/core/doctype/submission_queue/submission_queue.py index d76ff80e52..29d1afec57 100644 --- a/frappe/core/doctype/submission_queue/submission_queue.py +++ b/frappe/core/doctype/submission_queue/submission_queue.py @@ -164,6 +164,18 @@ class SubmissionQueue(Document): def queue_submission(doc: Document, action: str, alert: bool = True): + if existing_queue := frappe.db.get_value( + "Submission Queue", {"ref_doctype": doc.doctype, "ref_docname": doc.name, "status": "Queued"} + ): + frappe.msgprint( + _( + "This document has already been queued for submission. You can track the progress over {0}." + ).format(f"here"), + indicator="orange", + alert=True, + ) + return + queue = frappe.new_doc("Submission Queue") queue.ref_doctype = doc.doctype queue.ref_docname = doc.name diff --git a/frappe/core/doctype/system_settings/system_settings.json b/frappe/core/doctype/system_settings/system_settings.json index 992564b43e..13f4ee83f5 100644 --- a/frappe/core/doctype/system_settings/system_settings.json +++ b/frappe/core/doctype/system_settings/system_settings.json @@ -30,6 +30,7 @@ "apply_strict_user_permissions", "column_break_21", "allow_older_web_view_links", + "show_external_link_warning", "security_tab", "security", "session_expiry", @@ -37,6 +38,7 @@ "column_break_txqh", "deny_multiple_sessions", "disable_user_pass_login", + "max_signups_allowed_per_hour", "login_methods_section", "allow_login_using_mobile_number", "allow_login_using_user_name", @@ -81,6 +83,7 @@ "allow_guests_to_upload_files", "force_web_capture_mode_for_uploads", "strip_exif_metadata_from_uploaded_images", + "delete_background_exported_reports_after", "column_break_uqma", "allowed_file_extensions", "app_tab", @@ -304,7 +307,7 @@ "default": "10", "fieldname": "allow_consecutive_login_attempts", "fieldtype": "Int", - "label": "Allow Consecutive Login Attempts " + "label": "Allow Consecutive Login Attempts" }, { "fieldname": "column_break_34", @@ -706,7 +709,7 @@ }, { "default": "100000", - "description": "This value specifies the max number of rows that can be rendered in report view. ", + "description": "This value specifies the max number of rows that can be rendered in report view.", "fieldname": "max_report_rows", "fieldtype": "Int", "label": "Max Report Rows" @@ -727,12 +730,34 @@ "fieldname": "log_api_requests", "fieldtype": "Check", "label": "Log API Requests" + }, + { + "default": "48", + "description": "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted.", + "fieldname": "delete_background_exported_reports_after", + "fieldtype": "Int", + "label": "Delete Background Exported Reports After (Hours)", + "non_negative": 1 + }, + { + "default": "300", + "fieldname": "max_signups_allowed_per_hour", + "fieldtype": "Int", + "label": "Max signups allowed per hour", + "non_negative": 1 + }, + { + "default": "Never", + "fieldname": "show_external_link_warning", + "fieldtype": "Select", + "label": "Show External Link Warning", + "options": "Never\nAsk\nAlways" } ], "icon": "fa fa-cog", "issingle": 1, "links": [], - "modified": "2025-06-05 20:54:53.538436", + "modified": "2025-09-24 16:04:02.016562", "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 62a13fc5cc..b78395ce5e 100644 --- a/frappe/core/doctype/system_settings/system_settings.py +++ b/frappe/core/doctype/system_settings/system_settings.py @@ -39,6 +39,7 @@ class SystemSettings(Document): "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 disable_change_log_notification: DF.Check disable_document_sharing: DF.Check @@ -73,6 +74,7 @@ class SystemSettings(Document): max_auto_email_report_per_user: DF.Int max_file_size: DF.Int 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[ "#,###.##", @@ -95,6 +97,7 @@ class SystemSettings(Document): session_expiry: DF.Data | None setup_complete: DF.Check show_absolute_datetime_in_timeline: DF.Check + show_external_link_warning: DF.Literal["Never", "Ask", "Always"] store_attached_pdf_document: DF.Check strip_exif_metadata_from_uploaded_images: DF.Check time_format: DF.Literal["HH:mm:ss", "HH:mm"] @@ -156,9 +159,8 @@ class SystemSettings(Document): social_login_enabled = frappe.db.exists("Social Login Key", {"enable_social_login": 1}) ldap_enabled = frappe.db.get_single_value("LDAP Settings", "enabled") - login_with_email_link_enabled = frappe.db.get_single_value("System Settings", "login_with_email_link") - if not (social_login_enabled or ldap_enabled or login_with_email_link_enabled): + if not (social_login_enabled or ldap_enabled or self.login_with_email_link): frappe.throw( _( "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." diff --git a/frappe/core/doctype/transaction_log/readme.md b/frappe/core/doctype/transaction_log/readme.md deleted file mode 100644 index 09162ef4f0..0000000000 --- a/frappe/core/doctype/transaction_log/readme.md +++ /dev/null @@ -1,16 +0,0 @@ -# Transaction Log Changelog - -## v1.0.0 -Initial version - -The line hash summarizes: -- The index of the row -- The timestamp -- The document raw data - -The chain hash summarizes: -- The previous line hash -- The current line hash - -## v1.0.1 -Modification of the timestamp fieldtype from "Time" to "Datetime" \ No newline at end of file diff --git a/frappe/core/doctype/transaction_log/test_transaction_log.py b/frappe/core/doctype/transaction_log/test_transaction_log.py deleted file mode 100644 index 0b2ffdd508..0000000000 --- a/frappe/core/doctype/transaction_log/test_transaction_log.py +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright (c) 2018, Frappe Technologies and Contributors -# License: MIT. See LICENSE -import hashlib - -import frappe -from frappe.tests import IntegrationTestCase - - -class TestTransactionLog(IntegrationTestCase): - def test_validate_chaining(self): - frappe.get_doc( - { - "doctype": "Transaction Log", - "reference_doctype": "Test Doctype", - "document_name": "Test Document 1", - "data": "first_data", - } - ).insert(ignore_permissions=True) - - second_log = frappe.get_doc( - { - "doctype": "Transaction Log", - "reference_doctype": "Test Doctype", - "document_name": "Test Document 2", - "data": "second_data", - } - ).insert(ignore_permissions=True) - - third_log = frappe.get_doc( - { - "doctype": "Transaction Log", - "reference_doctype": "Test Doctype", - "document_name": "Test Document 3", - "data": "third_data", - } - ).insert(ignore_permissions=True) - - sha = hashlib.sha256() - sha.update( - frappe.safe_encode(str(third_log.transaction_hash)) - + frappe.safe_encode(str(second_log.chaining_hash)) - ) - - self.assertEqual(sha.hexdigest(), third_log.chaining_hash) diff --git a/frappe/core/doctype/transaction_log/transaction_log.js b/frappe/core/doctype/transaction_log/transaction_log.js deleted file mode 100644 index 8f22b859f7..0000000000 --- a/frappe/core/doctype/transaction_log/transaction_log.js +++ /dev/null @@ -1,4 +0,0 @@ -// Copyright (c) 2018, Frappe Technologies and contributors -// For license information, please see license.txt - -frappe.ui.form.on("Transaction Log", {}); diff --git a/frappe/core/doctype/transaction_log/transaction_log.json b/frappe/core/doctype/transaction_log/transaction_log.json deleted file mode 100644 index ffe5b13eb4..0000000000 --- a/frappe/core/doctype/transaction_log/transaction_log.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "actions": [], - "creation": "2018-02-06 11:48:51.270524", - "doctype": "DocType", - "editable_grid": 1, - "engine": "InnoDB", - "field_order": [ - "row_index", - "section_break_2", - "reference_doctype", - "document_name", - "column_break_5", - "timestamp", - "checksum_version", - "section_break_8", - "previous_hash", - "transaction_hash", - "chaining_hash", - "data", - "amended_from" - ], - "fields": [ - { - "fieldname": "row_index", - "fieldtype": "Data", - "label": "Row Index", - "read_only": 1 - }, - { - "fieldname": "section_break_2", - "fieldtype": "Section Break" - }, - { - "fieldname": "reference_doctype", - "fieldtype": "Data", - "label": "Reference Document Type", - "read_only": 1 - }, - { - "fieldname": "document_name", - "fieldtype": "Data", - "label": "Document Name", - "read_only": 1 - }, - { - "fieldname": "column_break_5", - "fieldtype": "Column Break" - }, - { - "fieldname": "timestamp", - "fieldtype": "Datetime", - "label": "Timestamp", - "read_only": 1 - }, - { - "fieldname": "checksum_version", - "fieldtype": "Data", - "label": "Checksum Version", - "read_only": 1 - }, - { - "fieldname": "section_break_8", - "fieldtype": "Section Break" - }, - { - "fieldname": "previous_hash", - "fieldtype": "Small Text", - "hidden": 1, - "label": "Previous Hash", - "read_only": 1 - }, - { - "fieldname": "transaction_hash", - "fieldtype": "Small Text", - "label": "Transaction Hash", - "read_only": 1 - }, - { - "fieldname": "chaining_hash", - "fieldtype": "Small Text", - "hidden": 1, - "label": "Chaining Hash", - "read_only": 1 - }, - { - "fieldname": "data", - "fieldtype": "Long Text", - "hidden": 1, - "label": "Data", - "read_only": 1 - }, - { - "fieldname": "amended_from", - "fieldtype": "Link", - "label": "Amended From", - "no_copy": 1, - "options": "Transaction Log", - "print_hide": 1, - "read_only": 1 - } - ], - "in_create": 1, - "links": [], - "modified": "2024-03-23 16:03:59.373102", - "modified_by": "Administrator", - "module": "Core", - "name": "Transaction Log", - "owner": "Administrator", - "permissions": [ - { - "email": 1, - "export": 1, - "print": 1, - "read": 1, - "report": 1, - "role": "Administrator", - "share": 1 - } - ], - "sort_field": "creation", - "sort_order": "DESC", - "states": [], - "track_changes": 1 -} \ No newline at end of file diff --git a/frappe/core/doctype/transaction_log/transaction_log.py b/frappe/core/doctype/transaction_log/transaction_log.py deleted file mode 100644 index ab1ef6e5ca..0000000000 --- a/frappe/core/doctype/transaction_log/transaction_log.py +++ /dev/null @@ -1,86 +0,0 @@ -# Copyright (c) 2021, Frappe Technologies and contributors -# License: MIT. See LICENSE - -import hashlib - -import frappe -from frappe.model.document import Document -from frappe.query_builder import DocType -from frappe.utils import cint, now_datetime - - -class TransactionLog(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 - - amended_from: DF.Link | None - chaining_hash: DF.SmallText | None - checksum_version: DF.Data | None - data: DF.LongText | None - document_name: DF.Data | None - previous_hash: DF.SmallText | None - reference_doctype: DF.Data | None - row_index: DF.Data | None - timestamp: DF.Datetime | None - transaction_hash: DF.SmallText | None - # end: auto-generated types - - def before_insert(self): - index = get_current_index() - self.row_index = index - self.timestamp = now_datetime() - if index != 1: - prev_hash = frappe.get_all( - "Transaction Log", filters={"row_index": str(index - 1)}, pluck="chaining_hash", limit=1 - ) - if prev_hash: - self.previous_hash = prev_hash[0] - else: - self.previous_hash = "Indexing broken" - else: - self.previous_hash = self.hash_line() - self.transaction_hash = self.hash_line() - self.chaining_hash = self.hash_chain() - self.checksum_version = "v1.0.1" - - def hash_line(self): - sha = hashlib.sha256() - sha.update( - frappe.safe_encode(str(self.row_index)) - + frappe.safe_encode(str(self.timestamp)) - + frappe.safe_encode(str(self.data)) - ) - return sha.hexdigest() - - def hash_chain(self): - sha = hashlib.sha256() - sha.update( - frappe.safe_encode(str(self.transaction_hash)) + frappe.safe_encode(str(self.previous_hash)) - ) - return sha.hexdigest() - - -def get_current_index(): - series = DocType("Series") - current = ( - frappe.qb.from_(series).where(series.name == "TRANSACTLOG").for_update().select("current") - ).run() - - if current and current[0][0] is not None: - current = current[0][0] - - frappe.db.sql( - """UPDATE `tabSeries` - SET `current` = `current` + 1 - where `name` = 'TRANSACTLOG'""" - ) - current = cint(current) + 1 - else: - frappe.db.sql("INSERT INTO `tabSeries` (name, current) VALUES ('TRANSACTLOG', 1)") - current = 1 - return current diff --git a/frappe/core/doctype/user/user.js b/frappe/core/doctype/user/user.js index dc84f5f638..16086968f4 100644 --- a/frappe/core/doctype/user/user.js +++ b/frappe/core/doctype/user/user.js @@ -37,18 +37,6 @@ frappe.ui.form.on("User", { } }, - role_profiles: function (frm) { - if (frm.doc.role_profiles && frm.doc.role_profiles.length) { - frm.roles_editor.disable = 1; - frm.call("populate_role_profile_roles").then(() => { - frm.roles_editor.show(); - }); - } else { - frm.roles_editor.disable = 0; - frm.roles_editor.show(); - } - }, - module_profile: function (frm) { if (frm.doc.module_profile) { frappe.call({ @@ -62,6 +50,7 @@ frappe.ui.form.on("User", { let d = frm.add_child("block_modules"); d.module = v.module; }); + frm.module_editor.disable = 1; frm.module_editor && frm.module_editor.show(); }, }); @@ -93,7 +82,11 @@ frappe.ui.form.on("User", { if (frm.doc.user_type == "System User") { var module_area = $("
").appendTo(frm.fields_dict.modules_html.wrapper); - frm.module_editor = new frappe.ModuleEditor(frm, module_area); + frm.module_editor = new frappe.ModuleEditor( + frm, + module_area, + frm.doc.module_profile ? 1 : 0 + ); } } else { frm.roles_editor.show(); @@ -248,6 +241,7 @@ frappe.ui.form.on("User", { frm.roles_editor.show(); } + frm.module_editor.disable = frm.doc.module_profile ? 1 : 0; frm.module_editor && frm.module_editor.show(); if (frappe.session.user == doc.name) { @@ -336,7 +330,7 @@ frappe.ui.form.on("User", { }, callback: function (r) { if (r.message) { - frappe.msgprint(__("Save API Secret: {0}", [r.message.api_secret])); + show_api_key_dialog(r.message.api_key, r.message.api_secret); frm.reload_doc(); } }, @@ -425,6 +419,25 @@ frappe.ui.form.on("User Email", { }, }); +frappe.ui.form.on("User Role Profile", { + role_profiles_add: function (frm) { + if (frm.doc.role_profiles.length > 0) { + frm.roles_editor.disable = 1; + frm.call("populate_role_profile_roles").then(() => { + frm.roles_editor.show(); + }); + $(".deselect-all, .select-all").prop("disabled", true); + } + }, + role_profiles_remove: function (frm) { + if (frm.doc.role_profiles.length == 0) { + frm.roles_editor.disable = 0; + frm.roles_editor.show(); + $(".deselect-all, .select-all").prop("disabled", false); + } + }, +}); + function has_access_to_edit_user() { return has_common(frappe.user_roles, get_roles_for_editing_user()); } @@ -437,3 +450,52 @@ function get_roles_for_editing_user() { .map((perm) => perm.role) || ["System Manager"] ); } + +function show_api_key_dialog(api_key, api_secret) { + const dialog = new frappe.ui.Dialog({ + title: __("API Keys"), + fields: [ + { + label: __("API Key"), + fieldname: "api_key", + fieldtype: "Code", + read_only: 1, + default: api_key, + }, + { + label: __("API Secret"), + fieldname: "api_secret", + fieldtype: "Code", + read_only: 1, + default: api_secret, + }, + ], + size: "small", + primary_action_label: __("Download"), + primary_action: () => { + frappe.tools.downloadify( + [ + ["api_key", "api_secret"], + [api_key, api_secret], + ], + "System Manager", + "frappe_api_keys" + ); + + dialog.hide(); + }, + secondary_action_label: __("Copy token to clipboard"), + secondary_action: () => { + const token = `${api_key}:${api_secret}`; + frappe.utils.copy_to_clipboard(token); + dialog.hide(); + }, + }); + + dialog.show(); + dialog.show_message( + __("Store the API secret securely. It won't be displayed again."), + "yellow", + 1 + ); +} diff --git a/frappe/core/doctype/user/user.json b/frappe/core/doctype/user/user.json index c4a90e266f..37c2e84b67 100644 --- a/frappe/core/doctype/user/user.json +++ b/frappe/core/doctype/user/user.json @@ -601,6 +601,7 @@ "unique": 1 }, { + "description": "\n Click here to learn about token-based authentication\n", "fieldname": "generate_keys", "fieldtype": "Button", "label": "Generate Keys", diff --git a/frappe/core/doctype/user/user.py b/frappe/core/doctype/user/user.py index c3feed78f3..e782cbdbce 100644 --- a/frappe/core/doctype/user/user.py +++ b/frappe/core/doctype/user/user.py @@ -590,6 +590,13 @@ class User(Document): note.remove(row) note.save(ignore_permissions=True) + # Unlink user from all of its invitation docs + invites = frappe.db.get_all("User Invitation", filters={"email": self.name}, pluck="name") + for invite in invites: + invite_doc = frappe.get_doc("User Invitation", invite) + invite_doc.user = None + invite_doc.save(ignore_permissions=True) + def before_rename(self, old_name, new_name, merge=False): # if merging, delete the old user notification settings if merge: @@ -1028,7 +1035,9 @@ def sign_up(email: str, full_name: str, redirect_to: str) -> tuple[int, str]: else: return 0, _("Registered but disabled") else: - if frappe.db.get_creation_count("User", 60) > 300: + max_signups_allowed_per_hour = cint(frappe.get_system_settings("max_signups_allowed_per_hour") or 300) + users_created_past_hour = frappe.db.get_creation_count("User", 60) + if users_created_past_hour >= max_signups_allowed_per_hour: frappe.respond_as_web_page( _("Temporarily Disabled"), _( @@ -1343,7 +1352,7 @@ def generate_keys(user: str): user_details.api_secret = api_secret user_details.save() - return {"api_secret": api_secret} + return {"api_key": user_details.api_key, "api_secret": api_secret} @frappe.whitelist() diff --git a/frappe/core/doctype/user_invitation/internal_doc/index.md b/frappe/core/doctype/user_invitation/internal_doc/index.md index 2e3fa127bf..49f3241eeb 100644 --- a/frappe/core/doctype/user_invitation/internal_doc/index.md +++ b/frappe/core/doctype/user_invitation/internal_doc/index.md @@ -24,13 +24,9 @@ Define user invitation hooks in your app's `hooks.py` file. An example is shown ![user invitation hooks example](./user_invitation_hooks_example.png) -- `only_for` - - Roles that are allowed to invite users to your app. - - `allowed_roles` - Roles that are allowed to be invited to your app. + A map of `only_for` roles to a list of roles that are allowed to be invited to your app. - `after_accept` @@ -104,3 +100,4 @@ Cancels a specific pending invitation associated with an installed Framework app - Once an invitation document is created from Desk, all of the fields are immutable except the `Redirect To Path` field which is mutable only when the invitation status is `Pending`. - To manually mark an invitation as expired, you can use the `expire` method on the invitation document. - To manually cancel an invitation, you can use the `cancel_invite` method on the invitation document. +- Disabled users cannot be invited. Trying to invite a disabled user from the Desk will generate an error and the whitelisted functions will ignore emails associated with disabled users. diff --git a/frappe/core/doctype/user_invitation/internal_doc/user_invitation_hooks_example.png b/frappe/core/doctype/user_invitation/internal_doc/user_invitation_hooks_example.png index 8bc0fcd839..6f18b6cab6 100644 Binary files a/frappe/core/doctype/user_invitation/internal_doc/user_invitation_hooks_example.png and b/frappe/core/doctype/user_invitation/internal_doc/user_invitation_hooks_example.png differ diff --git a/frappe/core/doctype/user_invitation/test_user_invitation.py b/frappe/core/doctype/user_invitation/test_user_invitation.py index a8342c87c4..e3cab914c0 100644 --- a/frappe/core/doctype/user_invitation/test_user_invitation.py +++ b/frappe/core/doctype/user_invitation/test_user_invitation.py @@ -20,6 +20,7 @@ emails = [ "test_user_invite3@example.com", "test_user_invite4@example.com", "test_user_invite5@example.com", + "test_user_invite6@example.com", ] @@ -138,8 +139,7 @@ class IntegrationTestUserInvitation(IntegrationTestCase): redirect_to_path="/abc", app_name="frappe", ).insert() - invitation.status = "Accepted" - invitation.save() + invitation.accept() self.assertEqual(len(self.get_email_names(False)), 1) pending_invite_email = emails[2] frappe.get_doc( @@ -156,10 +156,35 @@ class IntegrationTestUserInvitation(IntegrationTestCase): roles=["System Manager"], redirect_to_path="/xyz", ) + self.assertSequenceEqual(res["disabled_user_emails"], []) self.assertSequenceEqual(res["accepted_invite_emails"], [accepted_invite_email]) self.assertSequenceEqual(res["pending_invite_emails"], [pending_invite_email]) self.assertSequenceEqual(res["invited_emails"], [email_to_invite]) self.assertEqual(len(self.get_email_names(False)), 3) + user = frappe.get_doc("User", invitation.email) + IntegrationTestUserInvitation.delete_invitation(invitation.name) + frappe.delete_doc("User", user.name) + + def test_invite_by_email_api_disabled_user(self): + user = frappe.new_doc("User") + user.first_name = "Random" + user.last_name = "User" + user.email = emails[5] + user.append_roles("System Manager") + user.insert() + user.reload() + user.enabled = 0 + user.save() + res = invite_by_email( + emails=user.email, + roles=["System Manager"], + redirect_to_path="/xyz", + ) + self.assertSequenceEqual(res["disabled_user_emails"], [user.email]) + self.assertSequenceEqual(res["accepted_invite_emails"], []) + self.assertSequenceEqual(res["pending_invite_emails"], []) + self.assertSequenceEqual(res["invited_emails"], []) + frappe.delete_doc("User", user.email) def test_accept_invitation_api_pass_redirect(self): invitation = frappe.get_doc( diff --git a/frappe/core/doctype/user_invitation/user_invitation.py b/frappe/core/doctype/user_invitation/user_invitation.py index cccb8749a3..4d098d5af7 100644 --- a/frappe/core/doctype/user_invitation/user_invitation.py +++ b/frappe/core/doctype/user_invitation/user_invitation.py @@ -84,13 +84,22 @@ class UserInvitation(Document): self._validate_roles() self._validate_email() if frappe.db.get_value( - "User Invitation", filters={"email": self.email, "status": "Accepted", "app_name": self.app_name} + "User Invitation", + filters={ + "email": self.email, + "status": "Accepted", + "app_name": self.app_name, + "user": ["is", "set"], + }, ): - frappe.throw(title=_("Error"), msg=_("invitation already accepted")) + frappe.throw(title=_("Error"), msg=_("Invitation already accepted")) if frappe.db.get_value( "User Invitation", filters={"email": self.email, "status": "Pending", "app_name": self.app_name} ): - frappe.throw(title=_("Error"), msg=_("invitation already exists")) + frappe.throw(title=_("Error"), msg=_("Invitation already exists")) + user_enabled = frappe.db.get_value("User", self.email, "enabled") + if user_enabled is not None and user_enabled == 0: + frappe.throw(title=_("Error"), msg=_("User is disabled")) def _after_insert(self): key = frappe.generate_hash() @@ -150,13 +159,21 @@ class UserInvitation(Document): def _validate_app_name(self): UserInvitation.validate_app_name(self.app_name) + def _get_allowed_roles(self): + user_invitation_hook = frappe.get_hooks("user_invitation", app_name=self.app_name) + if not isinstance(user_invitation_hook, dict): + return [] + res = set[str]() + allowed_roles_mp = user_invitation_hook.get("allowed_roles") or dict() + only_for = set(allowed_roles_mp.keys()) + for role in only_for & set(frappe.get_roles()): + res.update(allowed_roles_mp[role]) + return list(res) + def _validate_roles(self): if self.app_name == "frappe": return - user_invitation_hook = frappe.get_hooks("user_invitation", app_name=self.app_name) - allowed_roles: list[str] = [] - if isinstance(user_invitation_hook, dict): - allowed_roles = user_invitation_hook.get("allowed_roles") or [] + allowed_roles = self._get_allowed_roles() for r in self.roles: if r.role in allowed_roles: continue @@ -175,7 +192,7 @@ class UserInvitation(Document): @staticmethod def validate_app_name(app_name: str): if app_name not in frappe.get_installed_apps(): - frappe.throw(title=_("Invalid app"), msg=_("application is not installed")) + frappe.throw(title=_("Invalid app"), msg=_("Application is not installed")) @staticmethod def validate_role(app_name: str) -> None: @@ -183,9 +200,7 @@ class UserInvitation(Document): user_invitation_hook = frappe.get_hooks("user_invitation", app_name=app_name) only_for: list[str] = [] if isinstance(user_invitation_hook, dict): - only_for = user_invitation_hook.get("only_for") or [] - if "System Manager" not in only_for: - only_for.append("System Manager") + only_for = list((user_invitation_hook.get("allowed_roles") or dict()).keys()) frappe.only_for(only_for) @@ -209,7 +224,7 @@ def get_allowed_apps(user: Document | None) -> list[str]: user_invitation_hooks = frappe.get_hooks("user_invitation", app_name=app) if not isinstance(user_invitation_hooks, dict): continue - only_for = user_invitation_hooks.get("only_for") or [] + only_for = list((user_invitation_hooks.get("allowed_roles") or dict()).keys()) if set(only_for) & user_roles: allowed_apps.append(app) return allowed_apps diff --git a/frappe/core/doctype/version/version.py b/frappe/core/doctype/version/version.py index 25c3c096b6..d3ee8ca22d 100644 --- a/frappe/core/doctype/version/version.py +++ b/frappe/core/doctype/version/version.py @@ -4,7 +4,7 @@ import json import frappe -from frappe.model import no_value_fields, table_fields +from frappe.model import datetime_fields, no_value_fields, table_fields from frappe.model.document import Document from frappe.utils import cstr @@ -120,6 +120,10 @@ def get_diff(old, new, for_child=False, compare_cancelled=False): if df.fieldtype in ("Link", "Dynamic Link"): old_value, new_value = cstr(old_value), cstr(new_value) + if df.fieldtype in datetime_fields: + if old_value is None and new_value == "": + new_value = None + if not for_child and df.fieldtype in table_fields: old_rows_by_name = {} for d in old_value: diff --git a/frappe/core/doctype/version/version_view.html b/frappe/core/doctype/version/version_view.html index c6473b6a42..7560118174 100644 --- a/frappe/core/doctype/version/version_view.html +++ b/frappe/core/doctype/version/version_view.html @@ -4,6 +4,7 @@

{{ data.comment }}

{% endif %} +{% const getEscapedValue = (v) => v === null ? "null" : frappe.utils.escape_html(v) %} {% if data.changed && data.changed.length %}

{{ __("Values Changed") }}

@@ -18,8 +19,8 @@ {% for item in data.changed %} - - + + {% endfor %} @@ -50,7 +51,7 @@ {% for row_key in item_keys %} - + {% endfor %} @@ -85,8 +86,8 @@ - - + + {% endfor %} {% endfor %} diff --git a/frappe/core/page/permission_manager/permission_manager.js b/frappe/core/page/permission_manager/permission_manager.js index 47e0fcc865..b216bcfd3a 100644 --- a/frappe/core/page/permission_manager/permission_manager.js +++ b/frappe/core/page/permission_manager/permission_manager.js @@ -280,7 +280,7 @@ frappe.PermissionEngine = class PermissionEngine { add_check(cell, d, fieldname, label, description = "") { if (!label) label = toTitle(fieldname.replace(/_/g, " ")); - if (d.permlevel > 0 && ["read", "write"].indexOf(fieldname) == -1) { + if (d.permlevel > 0 && ["read", "write", "mask"].indexOf(fieldname) == -1) { return; } @@ -331,6 +331,7 @@ frappe.PermissionEngine = class PermissionEngine { "import", "export", "share", + "mask", ]; } diff --git a/frappe/core/page/permission_manager/permission_manager.py b/frappe/core/page/permission_manager/permission_manager.py index 08bc2f3dab..bf4f150c59 100644 --- a/frappe/core/page/permission_manager/permission_manager.py +++ b/frappe/core/page/permission_manager/permission_manager.py @@ -22,7 +22,7 @@ from frappe.permissions import ( ) from frappe.utils.user import get_users_with_role as _get_user_with_role -not_allowed_in_permission_manager = ["DocType", "Patch Log", "Module Def", "Transaction Log"] +not_allowed_in_permission_manager = ["DocType", "Patch Log", "Module Def"] @frappe.whitelist() diff --git a/frappe/core/report/transaction_log_report/transaction_log_report.js b/frappe/core/report/transaction_log_report/transaction_log_report.js deleted file mode 100644 index f8f132a6d1..0000000000 --- a/frappe/core/report/transaction_log_report/transaction_log_report.js +++ /dev/null @@ -1,10 +0,0 @@ -// Copyright (c) 2019, Frappe Technologies and contributors -// For license information, please see license.txt - -frappe.query_reports["Transaction Log Report"] = { - onload: function (query_report) { - query_report.add_make_chart_button = function () { - // - }; - }, -}; diff --git a/frappe/core/report/transaction_log_report/transaction_log_report.json b/frappe/core/report/transaction_log_report/transaction_log_report.json deleted file mode 100644 index 6d6fb78360..0000000000 --- a/frappe/core/report/transaction_log_report/transaction_log_report.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "add_total_row": 0, - "creation": "2018-03-15 18:37:48.783779", - "disabled": 0, - "docstatus": 0, - "doctype": "Report", - "idx": 0, - "is_standard": "Yes", - "modified": "2018-12-27 18:10:29.785415", - "modified_by": "Administrator", - "module": "Core", - "name": "Transaction Log Report", - "owner": "Administrator", - "prepared_report": 0, - "ref_doctype": "Transaction Log", - "report_name": "Transaction Log Report", - "report_type": "Script Report", - "roles": [ - { - "role": "Administrator" - }, - { - "role": "System Manager" - } - ] -} \ No newline at end of file diff --git a/frappe/core/report/transaction_log_report/transaction_log_report.py b/frappe/core/report/transaction_log_report/transaction_log_report.py deleted file mode 100644 index ef017f73b4..0000000000 --- a/frappe/core/report/transaction_log_report/transaction_log_report.py +++ /dev/null @@ -1,117 +0,0 @@ -# Copyright (c) 2021, Frappe Technologies and contributors -# License: MIT. See LICENSE - -import hashlib - -import frappe -from frappe import _ -from frappe.utils import format_datetime - - -def execute(filters=None): - columns, data = get_columns(filters), get_data(filters) - - return columns, data - - -def get_data(filters=None): - result = [] - logs = frappe.get_all("Transaction Log", fields=["*"], order_by="creation desc") - - for l in logs: - row_index = int(l.row_index) - if row_index > 1: - previous_hash = frappe.get_all( - "Transaction Log", - fields=["chaining_hash"], - filters={"row_index": row_index - 1}, - ) - if not previous_hash: - integrity = False - else: - integrity = check_data_integrity( - l.chaining_hash, l.transaction_hash, l.previous_hash, previous_hash[0]["chaining_hash"] - ) - - result.append( - [ - _(str(integrity)), - _(l.reference_doctype), - l.document_name, - l.owner, - l.modified_by, - format_datetime(l.timestamp, "YYYYMMDDHHmmss"), - ] - ) - else: - result.append( - [ - _("First Transaction"), - _(l.reference_doctype), - l.document_name, - l.owner, - l.modified_by, - format_datetime(l.timestamp, "YYYYMMDDHHmmss"), - ] - ) - - return result - - -def check_data_integrity(chaining_hash, transaction_hash, registered_previous_hash, previous_hash): - if registered_previous_hash != previous_hash: - return False - - calculated_chaining_hash = calculate_chain(transaction_hash, previous_hash) - - if calculated_chaining_hash != chaining_hash: - return False - else: - return True - - -def calculate_chain(transaction_hash, previous_hash): - sha = hashlib.sha256() - sha.update(transaction_hash.encode("utf-8") + previous_hash.encode("utf-8")) - return sha.hexdigest() - - -def get_columns(filters=None): - return [ - { - "label": _("Chain Integrity"), - "fieldname": "chain_integrity", - "fieldtype": "Data", - "width": 150, - }, - { - "label": _("Reference Doctype"), - "fieldname": "reference_doctype", - "fieldtype": "Data", - "width": 150, - }, - { - "label": _("Reference Name"), - "fieldname": "reference_name", - "fieldtype": "Data", - "width": 150, - }, - { - "label": _("Owner"), - "fieldname": "owner", - "fieldtype": "Data", - "width": 100, - }, - { - "label": _("Modified By"), - "fieldname": "modified_by", - "fieldtype": "Data", - "width": 100, - }, - { - "label": _("Timestamp"), - "fieldname": "timestamp", - "fieldtype": "Data", - "width": 100, - }, - ] diff --git a/frappe/coverage.py b/frappe/coverage.py index 41253eed18..8b6fa7007d 100644 --- a/frappe/coverage.py +++ b/frappe/coverage.py @@ -18,7 +18,7 @@ STANDARD_EXCLUSIONS = [ "*.scss", "*.vue", "*.html", - "*/test_*", + "*/test_*/*", "*/node_modules/*", "*/doctype/*/*_dashboard.py", "*/patches/*", diff --git a/frappe/custom/doctype/client_script/client_script.js b/frappe/custom/doctype/client_script/client_script.js index 481aa3ffd7..a09e1e72b2 100644 --- a/frappe/custom/doctype/client_script/client_script.js +++ b/frappe/custom/doctype/client_script/client_script.js @@ -3,7 +3,9 @@ frappe.ui.form.on("Client Script", { setup(frm) { - frm.get_field("sample").html(SAMPLE_HTML); + const sample_field = frm.get_field("sample"); + sample_field.html(SAMPLE_HTML); + frappe.utils.highlight_pre(sample_field.$wrapper); }, refresh(frm) { if (frm.doc.dt && frm.doc.script) { @@ -106,53 +108,50 @@ frappe.ui.form.on('${doctype}', { const SAMPLE_HTML = `

Client Script Help

Client Scripts are executed only on the client-side (i.e. in Forms). Here are some examples to get you started

-

-
+

 // fetch local_tax_no on selection of customer
-// cur_frm.add_fetch(link_field,  source_fieldname,  target_fieldname);
-cur_frm.add_fetch("customer",  "local_tax_no',  'local_tax_no');
+// cur_frm.add_fetch(link_field, source_fieldname, target_fieldname);
+cur_frm.add_fetch("customer", "local_tax_no", "local_tax_no");
 
 // additional validation on dates
-frappe.ui.form.on('Task',  'validate',  function(frm) {
+frappe.ui.form.on("Task", "validate", function(frm) {
     if (frm.doc.from_date < get_today()) {
-        msgprint('You can not select past date in From Date');
+        msgprint("You can not select past date in From Date");
         validated = false;
     }
 });
 
 // make a field read-only after saving
-frappe.ui.form.on('Task',  {
+frappe.ui.form.on("Task",  {
     refresh: function(frm) {
-        // use the __islocal value of doc,  to check if the doc is saved or not
-        frm.set_df_property('myfield',  'read_only',  frm.doc.__islocal ? 0 : 1);
+        frm.set_df_property("myfield",  "read_only",  frm.is_new() ? 0 : 1);
     }
 });
 
 // additional permission check
-frappe.ui.form.on('Task',  {
+frappe.ui.form.on("Task",  {
     validate: function(frm) {
-        if(user=='user1@example.com' && frm.doc.purpose!='Material Receipt') {
-            msgprint('You are only allowed Material Receipt');
+        if(user === "user1@example.com" && frm.doc.purpose !== "Material Receipt") {
+            msgprint("You are only allowed Material Receipt");
             validated = false;
         }
     }
 });
 
 // calculate sales incentive
-frappe.ui.form.on('Sales Invoice',  {
+frappe.ui.form.on("Sales Invoice",  {
     validate: function(frm) {
         // calculate incentives for each person on the deal
         total_incentive = 0
-        $.each(frm.doc.sales_team,  function(i,  d) {
+        for (const row of frm.doc.sales_team) {
             // calculate incentive
             var incentive_percent = 2;
             if(frm.doc.base_grand_total > 400) incentive_percent = 4;
             // actual incentive
-            d.incentives = flt(frm.doc.base_grand_total) * incentive_percent / 100;
-            total_incentive += flt(d.incentives)
+            row.incentives = flt(frm.doc.base_grand_total) * incentive_percent / 100;
+            total_incentive += flt(row.incentives)
         });
         frm.doc.total_incentive = total_incentive;
     }
 })
-
 
`; diff --git a/frappe/custom/doctype/customize_form/customize_form.json b/frappe/custom/doctype/customize_form/customize_form.json index 03ac4d1761..c41de205a5 100644 --- a/frappe/custom/doctype/customize_form/customize_form.json +++ b/frappe/custom/doctype/customize_form/customize_form.json @@ -13,6 +13,7 @@ "label", "search_fields", "grid_page_length", + "rows_threshold_for_grid_search", "link_filters", "column_break_5", "istable", @@ -43,6 +44,7 @@ "force_re_route_to_default_view", "column_break_29", "show_preview_popup", + "show_name_in_global_search", "email_settings_section", "default_email_template", "column_break_26", @@ -422,6 +424,19 @@ "fieldname": "recipient_account_field", "fieldtype": "Data", "label": "Recipient Account Field" + }, + { + "depends_on": "istable", + "fieldname": "rows_threshold_for_grid_search", + "fieldtype": "Int", + "label": "Rows Threshold for Grid Search", + "non_negative": 1 + }, + { + "default": "0", + "fieldname": "show_name_in_global_search", + "fieldtype": "Check", + "label": "Make \"name\" searchable in Global Search" } ], "hide_toolbar": 1, @@ -430,7 +445,7 @@ "index_web_pages_for_search": 1, "issingle": 1, "links": [], - "modified": "2025-07-19 12:23:41.564203", + "modified": "2025-09-23 07:13:52.631903", "modified_by": "Administrator", "module": "Custom", "name": "Customize Form", diff --git a/frappe/custom/doctype/customize_form/customize_form.py b/frappe/custom/doctype/customize_form/customize_form.py index 584882a754..1fa7a1c4aa 100644 --- a/frappe/custom/doctype/customize_form/customize_form.py +++ b/frappe/custom/doctype/customize_form/customize_form.py @@ -75,9 +75,11 @@ class CustomizeForm(Document): queue_in_background: DF.Check quick_entry: DF.Check recipient_account_field: DF.Data | None + rows_threshold_for_grid_search: DF.Int search_fields: DF.Data | None sender_field: DF.Data | None sender_name_field: DF.Data | None + show_name_in_global_search: DF.Check show_preview_popup: DF.Check show_title_field_in_link: DF.Check sort_field: DF.Literal[None] @@ -306,6 +308,8 @@ class CustomizeForm(Document): ) def set_property_setters_for_doctype(self, meta): + if self.get("show_name_in_global_search") != meta.get("show_name_in_global_search"): + self.flags.rebuild_doctype_for_global_search = True for prop, prop_type in doctype_properties.items(): if self.get(prop) != meta.get(prop): self.make_property_setter(prop, self.get(prop), prop_type) @@ -735,6 +739,7 @@ doctype_properties = { "track_views": "Check", "allow_auto_repeat": "Check", "allow_import": "Check", + "show_name_in_global_search": "Check", "show_preview_popup": "Check", "default_email_template": "Data", "email_append_to": "Check", @@ -748,6 +753,7 @@ doctype_properties = { "force_re_route_to_default_view": "Check", "translated_doctype": "Check", "grid_page_length": "Int", + "rows_threshold_for_grid_search": "Int", } docfield_properties = { diff --git a/frappe/custom/doctype/customize_form/test_customize_form.py b/frappe/custom/doctype/customize_form/test_customize_form.py index d4fa734d91..0051bb31fb 100644 --- a/frappe/custom/doctype/customize_form/test_customize_form.py +++ b/frappe/custom/doctype/customize_form/test_customize_form.py @@ -55,7 +55,7 @@ class TestCustomizeForm(IntegrationTestCase): d = self.get_customize_form("Event") self.assertEqual(d.doc_type, "Event") - self.assertEqual(len(d.get("fields")), 38) + self.assertEqual(len(d.get("fields")), 44) d = self.get_customize_form("Event") self.assertEqual(d.doc_type, "Event") diff --git a/frappe/database/database.py b/frappe/database/database.py index c3c6d90265..f0049152e6 100644 --- a/frappe/database/database.py +++ b/frappe/database/database.py @@ -1192,6 +1192,7 @@ class Database: self.sql("commit") self.begin() + self.value_cache.clear() self.after_commit.run() def rollback(self, *, save_point=None, chain=False): @@ -1206,10 +1207,12 @@ class Database: if chain: self.sql("rollback and chain") + self.value_cache.clear() else: self.sql("rollback") self.begin() + self.value_cache.clear() self.after_rollback.run() else: warnings.warn(message=TRANSACTION_DISABLED_MSG, stacklevel=2) diff --git a/frappe/database/postgres/schema.py b/frappe/database/postgres/schema.py index 926f9e0edd..75b944f74a 100644 --- a/frappe/database/postgres/schema.py +++ b/frappe/database/postgres/schema.py @@ -147,7 +147,7 @@ class PostgresTable(DBTable): if isinstance(default, str): default = frappe.db.escape(default) change_nullability.append( - f"ALTER COLUMN \"{col.fieldname}\" {'SET' if col.not_nullable else 'DROP'} NOT NULL" + f'ALTER COLUMN "{col.fieldname}" {"SET" if col.not_nullable else "DROP"} NOT NULL' ) change_nullability.append(f'ALTER COLUMN "{col.fieldname}" SET DEFAULT {default}') diff --git a/frappe/database/query.py b/frappe/database/query.py index 809b884182..41e3e9cd05 100644 --- a/frappe/database/query.py +++ b/frappe/database/query.py @@ -288,6 +288,8 @@ class Engine: doctype: str | None = None, ) -> "Criterion | None": """Builds a pypika Criterion object for a simple filter condition.""" + import operator as builtin_operator + _field = self._validate_and_prepare_filter_field(field, doctype) _value = convert_to_value(value) _operator = operator @@ -323,7 +325,7 @@ class Engine: operator_fn = OPERATOR_MAP[_operator.casefold()] if _value is None and isinstance(_field, Field): - return _field.isnull() + return _field.isnotnull() if operator_fn == builtin_operator.ne else _field.isnull() else: return operator_fn(_field, _value) diff --git a/frappe/database/schema.py b/frappe/database/schema.py index cb0afb4281..9bd0a1e45b 100644 --- a/frappe/database/schema.py +++ b/frappe/database/schema.py @@ -10,6 +10,10 @@ SPECIAL_CHAR_PATTERN = re.compile(r"[\W]", flags=re.UNICODE) VARCHAR_CAST_PATTERN = re.compile(r"varchar\(([\d]+)\)") +CONFIGURABLE_DECIMAL_TYPES = ("Currency", "Float", "Percent") +DEFAULT_DECIMAL_LENGTH = 21 +DEFAULT_DECIMAL_PRECISION = 9 + class InvalidColumnName(frappe.ValidationError): pass @@ -429,13 +433,19 @@ def get_definition(fieldtype, precision=None, length=None, *, options=None): size = d[1] if d[1] else None if size: - # This check needs to exist for backward compatibility. - # Till V13, default size used for float, currency and percent are (18, 6). - if fieldtype in ["Float", "Currency", "Percent"] and cint(precision) > 6: - size = "21,9" + if fieldtype in CONFIGURABLE_DECIMAL_TYPES: + width = length if length else DEFAULT_DECIMAL_LENGTH + precision_is_set = precision not in (None, "") + precision = precision if precision_is_set else DEFAULT_DECIMAL_PRECISION + if cint(precision) > cint(width): + precision = width + size = f"{cint(width)},{cint(precision)}" if length: if coltype == "varchar": + # Reference: https://mariadb.com/docs/server/server-usage/storage-engines/innodb/innodb-row-formats/troubleshooting-row-size-too-large-errors-with-innodb + if cint(length) < 64: + length = 64 size = length elif coltype == "int" and length < 11: # allow setting custom length for int if length provided is less than 11 diff --git a/frappe/database/sqlite/database.py b/frappe/database/sqlite/database.py index 94124171a8..2bb21c9a76 100644 --- a/frappe/database/sqlite/database.py +++ b/frappe/database/sqlite/database.py @@ -107,6 +107,7 @@ class SQLiteDatabase(SQLiteExceptionUtil, Database): conn = self.create_connection(read_only) conn.isolation_level = None conn.create_function("regexp", 2, regexp) + conn.create_function("regexp_replace", 3, regexp_replace) pragmas = { "journal_mode": "WAL", "synchronous": "NORMAL", @@ -583,3 +584,10 @@ def regexp(expr: str, item: str) -> bool: Although it works in the CLI - doesn't work through python """ return re.search(expr, item) is not None + + +def regexp_replace(item: str, pattern: str, repl: str) -> str: + """ + Define regexp_replace implementation for SQLite + """ + return re.sub(pattern, repl, item) diff --git a/frappe/database/sqlite/schema.py b/frappe/database/sqlite/schema.py index 94a7417bda..cc7d389489 100644 --- a/frappe/database/sqlite/schema.py +++ b/frappe/database/sqlite/schema.py @@ -125,7 +125,7 @@ class SQLiteTable(DBTable): if self.meta.sort_field == "modified" and not frappe.db.get_column_index( self.table_name, "modified", unique=False ): - index_queries.append(f"CREATE INDEX `modified` ON `{self.table_name}` (`modified`)") + index_queries.append(f"CREATE INDEX IF NOT EXISTS `modified` ON `{self.table_name}` (`modified`)") for query in index_queries: frappe.db.sql_ddl(query) diff --git a/frappe/deprecation_dumpster.py b/frappe/deprecation_dumpster.py index 6f6e743620..bdf91e9a38 100644 --- a/frappe/deprecation_dumpster.py +++ b/frappe/deprecation_dumpster.py @@ -899,7 +899,7 @@ def tests_utils_get_dependencies(doctype): import frappe from frappe.tests.utils.generators import get_modules - module, test_module = get_modules(doctype) + _module, test_module = get_modules(doctype) meta = frappe.get_meta(doctype) link_fields = meta.get_link_fields() diff --git a/frappe/desk/doctype/bulk_update/bulk_update.js b/frappe/desk/doctype/bulk_update/bulk_update.js index d8a2b89cf3..df08a2756e 100644 --- a/frappe/desk/doctype/bulk_update/bulk_update.js +++ b/frappe/desk/doctype/bulk_update/bulk_update.js @@ -11,7 +11,7 @@ frappe.ui.form.on("Bulk Update", { ], }; }); - + frm.trigger("set_field_options"); frm.page.set_primary_action(__("Update"), function () { if (!frm.doc.update_value) { frappe.throw(__('Field "value" is mandatory. Please specify value to be updated')); @@ -42,6 +42,9 @@ frappe.ui.form.on("Bulk Update", { }, document_type: function (frm) { + frm.trigger("set_field_options"); + }, + set_field_options(frm) { // set field options if (!frm.doc.document_type) return; diff --git a/frappe/desk/doctype/event/event.json b/frappe/desk/doctype/event/event.json index 26321f4889..0d6a349180 100644 --- a/frappe/desk/doctype/event/event.json +++ b/frappe/desk/doctype/event/event.json @@ -44,7 +44,13 @@ "section_break_8", "description", "participants", - "event_participants" + "event_participants", + "section_break_jlqd", + "reference_doctype", + "column_break_pjkw", + "reference_docname", + "section_break_qemp", + "links" ], "fields": [ { @@ -291,13 +297,43 @@ "label": "Google Meet Link", "no_copy": 1, "read_only": 1 + }, + { + "fieldname": "section_break_jlqd", + "fieldtype": "Section Break" + }, + { + "fieldname": "links", + "fieldtype": "Table", + "label": "Links", + "options": "Dynamic Link" + }, + { + "fieldname": "reference_doctype", + "fieldtype": "Link", + "label": "Reference Document Type", + "options": "DocType" + }, + { + "fieldname": "column_break_pjkw", + "fieldtype": "Column Break" + }, + { + "fieldname": "reference_docname", + "fieldtype": "Dynamic Link", + "label": "Reference Doc", + "options": "reference_doctype" + }, + { + "fieldname": "section_break_qemp", + "fieldtype": "Section Break" } ], "grid_page_length": 50, "icon": "fa fa-calendar", "idx": 1, "links": [], - "modified": "2025-06-17 15:31:01.945146", + "modified": "2025-08-12 13:37:36.319985", "modified_by": "Administrator", "module": "Desk", "name": "Event", @@ -348,4 +384,4 @@ "track_changes": 1, "track_seen": 1, "track_views": 1 -} \ No newline at end of file +} diff --git a/frappe/desk/doctype/event/event.py b/frappe/desk/doctype/event/event.py index 1e235261c1..3b999a3aa8 100644 --- a/frappe/desk/doctype/event/event.py +++ b/frappe/desk/doctype/event/event.py @@ -52,6 +52,7 @@ class Event(Document): from typing import TYPE_CHECKING if TYPE_CHECKING: + from frappe.core.doctype.dynamic_link.dynamic_link import DynamicLink from frappe.desk.doctype.event_participants.event_participants import EventParticipants from frappe.types import DF @@ -68,8 +69,11 @@ class Event(Document): google_calendar_event_id: DF.Data | None google_calendar_id: DF.Data | None google_meet_link: DF.Data | None + links: DF.Table[DynamicLink] monday: DF.Check pulled_from_google_calendar: DF.Check + reference_docname: DF.DynamicLink | None + reference_doctype: DF.Link | None repeat_on: DF.Literal["", "Daily", "Weekly", "Monthly", "Quarterly", "Half Yearly", "Yearly"] repeat_this_event: DF.Check repeat_till: DF.Date | None diff --git a/frappe/desk/doctype/list_view_settings/list_view_settings.json b/frappe/desk/doctype/list_view_settings/list_view_settings.json index ddadffb2f7..46b3e12645 100644 --- a/frappe/desk/doctype/list_view_settings/list_view_settings.json +++ b/frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7,12 +7,14 @@ "engine": "InnoDB", "field_order": [ "disable_count", - "disable_comment_count", - "disable_sidebar_stats", "disable_auto_refresh", - "allow_edit", + "disable_sidebar_stats", "disable_automatic_recency_filters", - "total_fields", + "column_break_oany", + "disable_comment_count", + "disable_scrolling", + "allow_edit", + "section_break_evqq", "fields_html", "fields" ], @@ -35,12 +37,6 @@ "fieldtype": "Check", "label": "Disable Auto Refresh" }, - { - "fieldname": "total_fields", - "fieldtype": "Select", - "label": "Maximum Number of Fields", - "options": "\n4\n5\n6\n7\n8\n9\n10" - }, { "fieldname": "fields_html", "fieldtype": "HTML", @@ -71,11 +67,25 @@ "fieldname": "disable_automatic_recency_filters", "fieldtype": "Check", "label": "Disable Automatic Recency Filters" + }, + { + "default": "0", + "fieldname": "disable_scrolling", + "fieldtype": "Check", + "label": "Disable Scrolling" + }, + { + "fieldname": "column_break_oany", + "fieldtype": "Column Break" + }, + { + "fieldname": "section_break_evqq", + "fieldtype": "Section Break" } ], "grid_page_length": 50, "links": [], - "modified": "2025-03-12 16:28:46.073808", + "modified": "2025-08-25 15:54:18.886680", "modified_by": "Administrator", "module": "Desk", "name": "List View Settings", diff --git a/frappe/desk/doctype/list_view_settings/list_view_settings.py b/frappe/desk/doctype/list_view_settings/list_view_settings.py index 5d1d4e153d..4e7a2199d2 100644 --- a/frappe/desk/doctype/list_view_settings/list_view_settings.py +++ b/frappe/desk/doctype/list_view_settings/list_view_settings.py @@ -19,9 +19,9 @@ class ListViewSettings(Document): disable_automatic_recency_filters: DF.Check disable_comment_count: DF.Check disable_count: DF.Check + disable_scrolling: DF.Check disable_sidebar_stats: DF.Check fields: DF.Code | None - total_fields: DF.Literal["", "4", "5", "6", "7", "8", "9", "10"] # end: auto-generated types pass diff --git a/frappe/desk/doctype/number_card/number_card.js b/frappe/desk/doctype/number_card/number_card.js index 274ca76848..c5621fe6a4 100644 --- a/frappe/desk/doctype/number_card/number_card.js +++ b/frappe/desk/doctype/number_card/number_card.js @@ -26,6 +26,7 @@ frappe.ui.form.on("Number Card", { frm.trigger("render_filters_table"); } frm.trigger("set_parent_document_type"); + frm.trigger("set_document_type_description"); if (!frm.is_new()) { frm.trigger("create_add_to_dashboard_button"); @@ -67,6 +68,8 @@ frappe.ui.form.on("Number Card", { }, type: function (frm) { + frm.trigger("set_document_type_description"); + if (frm.doc.type == "Report") { frm.set_query("report_name", () => { return { @@ -202,7 +205,9 @@ frappe.ui.form.on("Number Card", { let is_dynamic_filter = (f) => ["Date", "DateRange"].includes(f.fieldtype) && f.default; let wrapper = $(frm.get_field("filters_json").wrapper).empty(); - let table = $(`
{{ frappe.meta.get_label(doc.ref_doctype, item[0]) }}{{ frappe.utils.escape_html(item[1]) }}{{ frappe.utils.escape_html(item[2]) }}{{ getEscapedValue(item[1]) }}{{ getEscapedValue(item[2]) }}
{{ row_key }}{{ frappe.utils.escape_html(item[1][row_key]) }}{{ getEscapedValue(item[1][row_key]) }}
{{ frappe.meta.get_label(doc.ref_doctype, table_info[0]) }} {{ table_info[1] }} {{ item[0] }}{{ frappe.utils.escape_html(item[1]) }}{{ frappe.utils.escape_html(item[2]) }}{{ getEscapedValue(item[1]) }}{{ getEscapedValue(item[2]) }}
+ let table = $(`
@@ -212,7 +217,10 @@ frappe.ui.form.on("Number Card", {
${__("Filter")}
`).appendTo(wrapper); - $(`

${__("Click table to edit")}

`).appendTo(wrapper); + + if (frm.has_perm("write")) { + $(`

${__("Click table to edit")}

`).appendTo(wrapper); + } let filters = JSON.parse(frm.doc.filters_json || "[]"); let filters_set = false; @@ -273,6 +281,10 @@ frappe.ui.form.on("Number Card", { } table.on("click", () => { + if (!frm.has_perm("write")) { + return; + } + if (!frappe.boot.developer_mode && frm.doc.is_standard) { frappe.throw(__("Cannot edit filters for standard number cards")); } @@ -332,8 +344,9 @@ frappe.ui.form.on("Number Card", { let wrapper = $(frm.get_field("dynamic_filters_json").wrapper).empty(); - frm.dynamic_filter_table = - $(` + frm.dynamic_filter_table = $(`
@@ -360,6 +373,10 @@ frappe.ui.form.on("Number Card", { ); frm.dynamic_filter_table.on("click", () => { + if (!frm.has_perm("write")) { + return; + } + if (!frappe.boot.developer_mode && frm.doc.is_standard) { frappe.throw(__("Cannot edit filters for standard number cards")); } @@ -431,7 +448,11 @@ frappe.ui.form.on("Number Card", { let document_type = frm.doc.document_type; let doc_is_table = document_type && - (await frappe.db.get_value("DocType", document_type, "istable")).message.istable; + (await new Promise((resolve) => { + frappe.model.with_doctype(document_type, () => { + resolve(frappe.get_meta(document_type).istable); + }); + })); frm.set_df_property("parent_document_type", "hidden", !doc_is_table); @@ -454,4 +475,20 @@ frappe.ui.form.on("Number Card", { } } }, + + set_document_type_description: function (frm) { + if (frm.doc.type == "Custom") { + frm.set_df_property( + "document_type", + "description", + __( + "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access.", + null, + "Number Card" + ) + ); + } else { + frm.set_df_property("document_type", "description", ""); + } + }, }); diff --git a/frappe/desk/doctype/number_card/number_card.json b/frappe/desk/doctype/number_card/number_card.json index 39a6f99092..089786fbdc 100644 --- a/frappe/desk/doctype/number_card/number_card.json +++ b/frappe/desk/doctype/number_card/number_card.json @@ -38,7 +38,7 @@ ], "fields": [ { - "depends_on": "eval: doc.type == 'Document Type'", + "depends_on": "eval: ['Document Type', 'Custom'].includes(doc.type)", "fieldname": "document_type", "fieldtype": "Link", "in_list_view": 1, @@ -229,7 +229,7 @@ } ], "links": [], - "modified": "2025-05-21 17:33:04.908518", + "modified": "2025-09-17 21:00:11.351605", "modified_by": "Administrator", "module": "Desk", "name": "Number Card", diff --git a/frappe/desk/doctype/number_card/number_card.py b/frappe/desk/doctype/number_card/number_card.py index 2fb76958dc..29a3e144bf 100644 --- a/frappe/desk/doctype/number_card/number_card.py +++ b/frappe/desk/doctype/number_card/number_card.py @@ -7,9 +7,10 @@ from frappe.boot import get_allowed_report_names from frappe.model.document import Document from frappe.model.naming import append_number_if_name_exists from frappe.modules.export_file import export_to_files +from frappe.permissions import get_doctypes_with_read from frappe.query_builder import Criterion from frappe.query_builder.utils import DocType -from frappe.utils import cint, flt +from frappe.utils import flt from frappe.utils.modules import get_modules_from_all_apps_for_user @@ -78,51 +79,43 @@ class NumberCard(Document): def get_permission_query_conditions(user=None): - if not user: - user = frappe.session.user - - if user == "Administrator": + # The user param is ignored because `get_allowed_report_names` and `get_doctypes_with_read` don't support it. + if frappe.session.user == "Administrator": return - roles = frappe.get_roles(user) - if "System Manager" in roles: - return None + if "System Manager" in frappe.get_roles(): + return - doctype_condition = False - module_condition = False + allowed_reports = get_allowed_report_names() + allowed_doctypes = get_doctypes_with_read() + allowed_modules = [module.get("module_name") for module in get_modules_from_all_apps_for_user()] - allowed_doctypes = [frappe.db.escape(doctype) for doctype in frappe.permissions.get_doctypes_with_read()] - allowed_modules = [ - frappe.db.escape(module.get("module_name")) for module in get_modules_from_all_apps_for_user() - ] + nc = frappe.qb.DocType("Number Card") + conditions = ( + ((nc.type == "Report") & nc.report_name.isin(allowed_reports)) + | ((nc.type == "Custom") & nc.document_type.isin(allowed_doctypes)) + | ((nc.type == "Document Type") & nc.document_type.isin(allowed_doctypes)) + ) & (nc.module.isin(allowed_modules) | nc.module.isnull() | nc.module == "") - if allowed_doctypes: - doctype_condition = "`tabNumber Card`.`document_type` in ({allowed_doctypes})".format( - allowed_doctypes=",".join(allowed_doctypes) - ) - if allowed_modules: - module_condition = """`tabNumber Card`.`module` in ({allowed_modules}) - or `tabNumber Card`.`module` is NULL""".format(allowed_modules=",".join(allowed_modules)) - - return f""" - {doctype_condition} - and - {module_condition} - """ + return conditions.get_sql(quote_char="`") def has_permission(doc, ptype, user): - roles = frappe.get_roles(user) - if "System Manager" in roles: + # The user param is ignored because `get_allowed_report_names` and `get_doctypes_with_read` don't support it. + if frappe.session.user == "Administrator": return True - if doc.type == "Report": - if doc.report_name in get_allowed_report_names(): - return True - else: - allowed_doctypes = tuple(frappe.permissions.get_doctypes_with_read()) - if doc.document_type in allowed_doctypes: - return True + if "System Manager" in frappe.get_roles(): + return True + + if doc.type == "Report" and doc.report_name in get_allowed_report_names(): + return True + + if doc.type == "Custom" and doc.document_type in get_doctypes_with_read(): + return True + + if doc.type == "Document Type" and doc.document_type in get_doctypes_with_read(): + return True return False diff --git a/frappe/desk/doctype/workspace/workspace.py b/frappe/desk/doctype/workspace/workspace.py index 07f4c21d26..0a11f1ac84 100644 --- a/frappe/desk/doctype/workspace/workspace.py +++ b/frappe/desk/doctype/workspace/workspace.py @@ -302,6 +302,9 @@ def save_page(name, public, new_widgets, blocks): public = frappe.parse_json(public) doc = frappe.get_doc("Workspace", name) + if not doc.type: + doc.type = "Workspace" + doc.content = blocks save_new_widget(doc, name, blocks, new_widgets) diff --git a/frappe/desk/form/assign_to.py b/frappe/desk/form/assign_to.py index 3c9e4f6768..655d81a7ab 100644 --- a/frappe/desk/form/assign_to.py +++ b/frappe/desk/form/assign_to.py @@ -72,7 +72,7 @@ def add(args=None, *, ignore_permissions=False): else: from frappe.utils import nowdate - description = str(args.get("description", "")) + description = args.get("description") or "" has_content = strip_html(description) or " list[d break if owner_idx: - data = [data.pop(owner_idx)] + data[0:49] + data = [data.pop(owner_idx), *data[0:49]] else: data = data[0:50] else: diff --git a/frappe/desk/page/backups/backups.html b/frappe/desk/page/backups/backups.html index ff10f1bd06..b18552197b 100644 --- a/frappe/desk/page/backups/backups.html +++ b/frappe/desk/page/backups/backups.html @@ -1,7 +1,7 @@ -
+
{% for f in files %} -
+
{{ f[1] }} diff --git a/frappe/desk/page/backups/backups.py b/frappe/desk/page/backups/backups.py index 3e1c1fb20f..c6cf366f07 100644 --- a/frappe/desk/page/backups/backups.py +++ b/frappe/desk/page/backups/backups.py @@ -10,7 +10,7 @@ from frappe.utils.data import convert_utc_to_system_timezone def get_time(path: Path): return convert_utc_to_system_timezone( - datetime.datetime.fromtimestamp(path.stat().st_mtime, tz=datetime.UTC) + datetime.datetime.fromtimestamp(path.stat().st_mtime, tz=datetime.timezone.utc) ).strftime("%a %b %d %H:%M %Y") diff --git a/frappe/desk/page/setup_wizard/setup_wizard.js b/frappe/desk/page/setup_wizard/setup_wizard.js index 676b8da9dd..5f9a6a5283 100644 --- a/frappe/desk/page/setup_wizard/setup_wizard.js +++ b/frappe/desk/page/setup_wizard/setup_wizard.js @@ -231,7 +231,7 @@ frappe.setup.SetupWizard = class SetupWizard extends frappe.ui.Slides { ? frappe.last_response.setup_wizard_failure_message : __("Failed to complete setup"); - this.update_setup_message(__("Could not start up: ") + fail_msg); + this.update_setup_message(__("Could not start up:") + " " + fail_msg); this.$working_state.find(".title").html(__("Setup failed")); diff --git a/frappe/desk/query_report.py b/frappe/desk/query_report.py index 2e17eccea5..e403f9db86 100644 --- a/frappe/desk/query_report.py +++ b/frappe/desk/query_report.py @@ -199,10 +199,11 @@ def run( is_tree=False, parent_field=None, are_default_filters=True, + js_filters=None, ): if not user: user = frappe.session.user - validate_filters_permissions(report_name, filters, user) + validate_filters_permissions(report_name, filters, user, js_filters) report = get_report_doc(report_name) if not frappe.has_permission(report.ref_doctype, "report"): frappe.msgprint( @@ -313,7 +314,7 @@ def get_prepared_report_result(report, filters, dn="", user=None): @frappe.whitelist() def export_query(): """export from query reports""" - from frappe.desk.utils import get_csv_bytes, pop_csv_params, provide_binary_file + from frappe.desk.utils import pop_csv_params form_params = frappe._dict(frappe.local.form_dict) csv_params = pop_csv_params(form_params) @@ -325,6 +326,42 @@ def export_query(): raise_exception=True, ) + export_in_background = int(form_params.export_in_background or 0) + if export_in_background: + user = frappe.session.user + user_email = frappe.get_cached_value("User", user, "email") + frappe.enqueue( + "frappe.desk.query_report.run_export_query_job", + user_email=user_email, + form_params=form_params, + csv_params=csv_params, + queue="long", + now=frappe.flags.in_test, + ) + frappe.msgprint( + _( + "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." + ).format(user_email) + ) + return + + return _export_query(form_params, csv_params) + + +def run_export_query_job(user_email: str, form_params, csv_params): + from frappe.desk.utils import send_report_email + + report_name, file_extension, content = _export_query(form_params, csv_params, populate_response=False) + send_report_email( + user_email, report_name, file_extension, content, attached_to_name=form_params.report_name + ) + + +def _export_query(form_params, csv_params, populate_response=True): + from frappe.desk.utils import get_csv_bytes, provide_binary_file + from frappe.utils.xlsxutils import handle_html, make_xlsx + + report_name = form_params.report_name file_format_type = form_params.file_format_type custom_columns = frappe.parse_json(form_params.custom_columns or "[]") include_indentation = form_params.include_indentation @@ -356,16 +393,12 @@ def export_query(): ) if file_format_type == "CSV": - from frappe.utils.xlsxutils import handle_html - content = get_csv_bytes( [[handle_html(frappe.as_unicode(v)) if isinstance(v, str) else v for v in r] for r in xlsx_data], csv_params, ) file_extension = "csv" elif file_format_type == "Excel": - from frappe.utils.xlsxutils import make_xlsx - file_extension = "xlsx" content = make_xlsx(xlsx_data, "Query Report", column_widths=column_widths).getvalue() @@ -380,7 +413,10 @@ def export_query(): if valid_report_name(report_name, suffix): report_name += suffix - provide_binary_file(report_name, file_extension, content) + if not populate_response: + return report_name, file_extension, content + + provide_binary_file(_(report_name), file_extension, content) def valid_report_name(report_name, suffix): @@ -638,9 +674,20 @@ def get_filtered_data(ref_doctype, columns, data, user): shared = frappe.share.get_shared(ref_doctype, user) columns_dict = get_columns_dict(columns) - role_permissions = get_role_permissions(frappe.get_meta(ref_doctype), user) + ref_doctype_meta = frappe.get_meta(ref_doctype) + + role_permissions = get_role_permissions(ref_doctype_meta, user) if_owner = role_permissions.get("if_owner", {}).get("report") + if ref_doctype_meta.get_masked_fields(): + from frappe.model.db_query import mask_field_value + + # Apply masking to the fields + for field in ref_doctype_meta.get_masked_fields(): + for row in data: + val = row.get(field.fieldname) + row[field.fieldname] = mask_field_value(field, val) + if match_filters_per_doctype: for row in data: # Why linked_doctypes.get(ref_doctype)? because if column is empty, linked_doctypes[ref_doctype] is removed @@ -858,25 +905,34 @@ def get_user_match_filters(doctypes, user): return match_filters -def validate_filters_permissions(report_name, filters=None, user=None): +def validate_filters_permissions(report_name, filters=None, user=None, js_filters=None): if not filters: return + if js_filters is None: + js_filters = [] + + if isinstance(js_filters, str): + js_filters = json.loads(js_filters) + if isinstance(filters, str): filters = json.loads(filters) report = frappe.get_doc("Report", report_name) - for field in report.filters: - if field.fieldname in filters and field.fieldtype == "Link": - linked_doctype = field.options + + for field in report.filters + js_filters: + if hasattr(field, "as_dict"): + field = field.as_dict() + if field.get("fieldname") in filters and field.get("fieldtype") == "Link": + linked_doctype = field.get("options") if not has_permission( - doctype=linked_doctype, ptype="read", doc=filters[field.fieldname], user=user + doctype=linked_doctype, ptype="read", doc=filters[field.get("fieldname")], user=user ) and not has_permission( - doctype=linked_doctype, ptype="select", doc=filters[field.fieldname], user=user + doctype=linked_doctype, ptype="select", doc=filters[field.get("fieldname")], user=user ): frappe.throw( _("You do not have permission to access {0}: {1}.").format( - linked_doctype, filters[field.fieldname] + linked_doctype, filters[field.get("fieldname")] ) ) diff --git a/frappe/desk/reportview.py b/frappe/desk/reportview.py index be504bb166..c56bcdadb1 100644 --- a/frappe/desk/reportview.py +++ b/frappe/desk/reportview.py @@ -67,8 +67,9 @@ def get_count() -> int | None: # args.limit is specified to avoid getting accurate count. if not args.limit: - args.fields = [f"count({fieldname}) as total_count"] - return execute(**args)[0].get("total_count") + args.fields = [fieldname] + partial_query = execute(**args, run=0) + return frappe.db.sql(f"select count(*) from ( {partial_query} ) p")[0][0] args.fields = [fieldname] partial_query = execute(**args, run=0) @@ -371,11 +372,48 @@ def delete_report(name): @frappe.read_only() def export_query(): """export from report builder""" - from frappe.desk.utils import get_csv_bytes, pop_csv_params, provide_binary_file + from frappe.desk.utils import pop_csv_params form_params = get_form_params() form_params["limit_page_length"] = None + form_params["as_list"] = True + csv_params = pop_csv_params(form_params) + export_in_background = int(form_params.pop("export_in_background", 0)) + + if export_in_background: + user = frappe.session.user + user_email = frappe.get_cached_value("User", user, "email") + frappe.enqueue( + "frappe.desk.reportview.run_report_view_export_job", + user_email=user_email, + form_params=form_params, + csv_params=csv_params, + queue="long", + now=frappe.flags.in_test, + ) + + frappe.msgprint( + _( + "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." + ).format(user_email) + ) + return + + return _export_query(form_params, csv_params) + + +def run_report_view_export_job(user_email, form_params, csv_params): + from frappe.desk.utils import send_report_email + + report_name, file_extension, content = _export_query(form_params, csv_params, populate_response=False) + send_report_email(user_email, report_name, file_extension, content, attached_to_name=report_name) + + +def _export_query(form_params, csv_params, populate_response=True): + from frappe.desk.utils import get_csv_bytes, provide_binary_file + from frappe.utils.xlsxutils import handle_html, make_xlsx + doctype = form_params.pop("doctype") if isinstance(form_params["fields"], list): form_params["fields"].append("owner") @@ -383,7 +421,6 @@ def export_query(): form_params["fields"] = form_params["fields"] + ("owner",) file_format_type = form_params.pop("file_format_type") title = form_params.pop("title", doctype) - csv_params = pop_csv_params(form_params) add_totals_row = 1 if form_params.pop("add_totals_row", None) == "1" else None translate_values = 1 if form_params.pop("translate_values", None) == "1" else None @@ -434,20 +471,19 @@ def export_query(): data = handle_duration_fieldtype_values(doctype, data, db_query.fields) if file_format_type == "CSV": - from frappe.utils.xlsxutils import handle_html - file_extension = "csv" content = get_csv_bytes( [[handle_html(frappe.as_unicode(v)) if isinstance(v, str) else v for v in r] for r in data], csv_params, ) elif file_format_type == "Excel": - from frappe.utils.xlsxutils import make_xlsx - file_extension = "xlsx" content = make_xlsx(data, doctype).getvalue() - provide_binary_file(title, file_extension, content) + if not populate_response: + return title, file_extension, content + + provide_binary_file(_(title), file_extension, content) def append_totals_row(data): @@ -512,7 +548,7 @@ def get_field_info(fields, doctype): if parenttype != doctype: # If the column is from a child table, append the child doctype. # For example, "Item Code (Sales Invoice Item)". - label += f" ({ _(parenttype) })" + label += f" ({_(parenttype)})" field_info.append( {"name": name, "label": label, "fieldtype": fieldtype, "translatable": translatable} diff --git a/frappe/desk/search.py b/frappe/desk/search.py index 5879cb0bd3..3bafdcb2bd 100644 --- a/frappe/desk/search.py +++ b/frappe/desk/search.py @@ -117,6 +117,12 @@ def search_widget( meta = frappe.get_meta(doctype) + include_disabled = False + if filters and "include_disabled" in filters: + if filters["include_disabled"] == 1: + include_disabled = True + filters.pop("include_disabled") + if isinstance(filters, dict): filters = [make_filter_tuple(doctype, key, value) for key, value in filters.items()] elif filters is None: @@ -147,10 +153,11 @@ def search_widget( if not meta.translated_doctype and (f == "name" or (fmeta and fmeta.fieldtype in field_types)): or_filters.append([doctype, f.strip(), "like", f"%{txt}%"]) - if meta.get("fields", {"fieldname": "enabled", "fieldtype": "Check"}): - filters.append([doctype, "enabled", "=", 1]) - if meta.get("fields", {"fieldname": "disabled", "fieldtype": "Check"}): - filters.append([doctype, "disabled", "!=", 1]) + if not include_disabled: + if meta.get("fields", {"fieldname": "enabled", "fieldtype": "Check"}): + filters.append([doctype, "enabled", "=", 1]) + if meta.get("fields", {"fieldname": "disabled", "fieldtype": "Check"}): + filters.append([doctype, "disabled", "!=", 1]) # format a list of fields combining search fields and filter fields fields = get_std_fields_list(meta, searchfield or "name") diff --git a/frappe/desk/treeview.py b/frappe/desk/treeview.py index 2f315924b5..3e73db2806 100644 --- a/frappe/desk/treeview.py +++ b/frappe/desk/treeview.py @@ -9,8 +9,7 @@ from frappe import _ def get_all_nodes(doctype, label, parent, tree_method, **filters): """Recursively gets all data from tree nodes""" - if "cmd" in filters: - del filters["cmd"] + filters.pop("cmd", None) filters.pop("data", None) tree_method = frappe.get_attr(tree_method) @@ -20,8 +19,7 @@ def get_all_nodes(doctype, label, parent, tree_method, **filters): data = tree_method(doctype, parent, **filters) out = [dict(parent=label, data=data)] - if "is_root" in filters: - del filters["is_root"] + filters.pop("is_root", None) to_check = [d.get("value") for d in data if d.get("expandable")] while to_check: diff --git a/frappe/desk/utils.py b/frappe/desk/utils.py index 590f279caf..47aace7b4b 100644 --- a/frappe/desk/utils.py +++ b/frappe/desk/utils.py @@ -3,6 +3,8 @@ import frappe +EXPORTED_REPORT_FOLDER_PATH = "Home/Exported Reports" + def validate_route_conflict(doctype, name): """ @@ -76,3 +78,71 @@ def provide_binary_file(filename: str, extension: str, content: bytes) -> None: frappe.response["type"] = "binary" frappe.response["filecontent"] = content frappe.response["filename"] = f"{_(filename)}.{extension}" + + +def send_report_email( + user_email: str, report_name: str, file_extension: str, content: bytes, attached_to_name: str +): + create_exported_report_folder_if_not_exists() + _file = frappe.get_doc( + { + "doctype": "File", + "file_name": f"{report_name}.{file_extension}", + "attached_to_doctype": "Report", + "attached_to_name": attached_to_name, + "content": content, + "is_private": 1, + "folder": EXPORTED_REPORT_FOLDER_PATH, + } + ) + _file.save(ignore_permissions=True) + + file_url = frappe.utils.get_url(_file.get_url()) + file_retention_hours = frappe.get_system_settings("delete_background_exported_reports_after") or 48 + + frappe.sendmail( + recipients=[user_email], + subject=frappe._("Your exported report: {0}").format(report_name), + message=frappe._( + "The report you requested has been generated.

" + "Click here to download:
" + "
{0}

" + "This link will expire in {1} hours." + ).format(file_url, file_retention_hours), + now=True, + ) + + +def delete_old_exported_report_files(): + file_retention_hours = frappe.get_system_settings("delete_background_exported_reports_after") or 48 + + cutoff = frappe.utils.add_to_date(frappe.utils.now_datetime(), hours=-file_retention_hours) + old_files = frappe.get_all( + "File", + filters={ + "attached_to_doctype": "Report", + "creation": ("<", cutoff), + "folder": EXPORTED_REPORT_FOLDER_PATH, + }, + pluck="name", + ) + + for file_name in old_files: + try: + frappe.delete_doc("File", file_name) + except Exception: + frappe.log_error(f"Failed to delete old report file {file_name}") + + +def create_exported_report_folder_if_not_exists(): + parent_folder, folder_name = EXPORTED_REPORT_FOLDER_PATH.split("/") + folder = frappe.get_doc( + { + "doctype": "File", + "file_name": folder_name, + "is_folder": 1, + "folder": parent_folder, + "is_private": 1, + } + ) + folder.insert(ignore_permissions=True, ignore_if_duplicate=True) diff --git a/frappe/email/__init__.py b/frappe/email/__init__.py index cabd91ccff..0f8b879c09 100644 --- a/frappe/email/__init__.py +++ b/frappe/email/__init__.py @@ -79,6 +79,7 @@ def get_communication_doctype(doctype, txt, searchfield, start, page_len, filter user_perms = frappe.utils.user.UserPermissions(frappe.session.user) user_perms.build_permissions() can_read = user_perms.can_read + from frappe import _ from frappe.modules import load_doctype_module com_doctypes = [] @@ -96,7 +97,15 @@ def get_communication_doctype(doctype, txt, searchfield, start, page_len, filter d[0] for d in frappe.db.get_values("DocType", {"issingle": 0, "istable": 0, "hide_toolbar": 0}) ] - return [[dt] for dt in com_doctypes if txt.lower().replace("%", "") in dt.lower() and dt in can_read] + results = [] + txt_lower = txt.lower().replace("%", "") + + for dt in com_doctypes: + if dt in can_read: + if txt_lower in dt.lower() or txt_lower in _(dt).lower(): + results.append([dt]) + + return results def sendmail( diff --git a/frappe/email/doctype/email_account/email_account.json b/frappe/email/doctype/email_account/email_account.json index beb43599d1..a48e6d9a05 100644 --- a/frappe/email/doctype/email_account/email_account.json +++ b/frappe/email/doctype/email_account/email_account.json @@ -36,7 +36,7 @@ "default_incoming", "column_break_uynb", "attachment_limit", - "last_synced_at", + "last_received_at", "mailbox_settings", "use_imap", "use_ssl", @@ -257,7 +257,7 @@ { "default": "250", "depends_on": "use_imap", - "description": "Total number of emails to sync in initial sync process ", + "description": "Total number of emails to sync in initial sync process", "fieldname": "initial_sync_count", "fieldtype": "Select", "hide_days": 1, @@ -497,7 +497,7 @@ }, { "default": "0", - "description": "For more information, click here.", + "documentation_url": "https://docs.frappe.io/erpnext/user/manual/en/linking-emails-to-document", "fieldname": "enable_automatic_linking", "fieldtype": "Check", "hide_days": 1, @@ -661,12 +661,6 @@ "fieldname": "column_break_uynb", "fieldtype": "Column Break" }, - { - "depends_on": "eval: doc.service == \"Frappe Mail\"", - "fieldname": "last_synced_at", - "fieldtype": "Datetime", - "label": "Last Synced At" - }, { "depends_on": "eval: (doc.service == \"Frappe Mail\" && doc.auth_method != \"Basic\" && !doc.__islocal && !doc.__unsaved)", "fieldname": "validate_frappe_mail_settings", @@ -707,13 +701,19 @@ "fieldtype": "Data", "label": "Always BCC Address", "options": "Email" + }, + { + "depends_on": "eval: doc.service == \"Frappe Mail\"", + "fieldname": "last_received_at", + "fieldtype": "Datetime", + "label": "Last Received At" } ], "icon": "fa fa-inbox", "index_web_pages_for_search": 1, "links": [], "make_attachments_public": 1, - "modified": "2025-03-10 14:22:11.021118", + "modified": "2025-08-20 11:35:14.540578", "modified_by": "Administrator", "module": "Email", "name": "Email Account", diff --git a/frappe/email/doctype/email_account/email_account.py b/frappe/email/doctype/email_account/email_account.py index 28100bbb9f..c41f1b8454 100755 --- a/frappe/email/doctype/email_account/email_account.py +++ b/frappe/email/doctype/email_account/email_account.py @@ -94,7 +94,7 @@ class EmailAccount(Document): imap_folder: DF.Table[IMAPFolder] incoming_port: DF.Data | None initial_sync_count: DF.Literal["100", "250", "500"] - last_synced_at: DF.Datetime | None + last_received_at: DF.Datetime | None login_id: DF.Data | None login_id_is_different: DF.Check no_failed: DF.Int @@ -646,9 +646,9 @@ class EmailAccount(Document): try: if self.service == "Frappe Mail": frappe_mail_client = self.get_frappe_mail_client() - messages = frappe_mail_client.pull_raw(last_synced_at=self.last_synced_at) + messages = frappe_mail_client.pull_raw(last_received_at=self.last_received_at) process_mail(messages) - self.db_set("last_synced_at", messages["last_synced_at"], update_modified=False) + self.db_set("last_received_at", messages["last_received_at"], update_modified=False) else: email_sync_rule = self.build_email_sync_rule() email_server = self.get_incoming_server(in_receive=True, email_sync_rule=email_sync_rule) diff --git a/frappe/email/doctype/email_group/email_group.py b/frappe/email/doctype/email_group/email_group.py index d51cf6b585..0985cba6e1 100755 --- a/frappe/email/doctype/email_group/email_group.py +++ b/frappe/email/doctype/email_group/email_group.py @@ -38,10 +38,19 @@ class EmailGroup(Document): """Extract Email Addresses from given doctype and add them to the current list""" meta = frappe.get_meta(doctype) email_field = next( - d.fieldname - for d in meta.fields - if d.fieldtype in ("Data", "Small Text", "Text", "Code") and d.options == "Email" + ( + d.fieldname + for d in meta.fields + if d.fieldtype in ("Data", "Small Text", "Text", "Code") and d.options == "Email" + ), + None, ) + if not email_field: + frappe.throw( + _("No Email field found in {0}").format(doctype), + title=_("Invalid Doctype"), + ) + unsubscribed_field = "unsubscribed" if meta.get_field("unsubscribed") else None added = 0 diff --git a/frappe/email/doctype/email_queue/test_email_queue.py b/frappe/email/doctype/email_queue/test_email_queue.py index 5dc76096f4..bcbf91d249 100644 --- a/frappe/email/doctype/email_queue/test_email_queue.py +++ b/frappe/email/doctype/email_queue/test_email_queue.py @@ -54,7 +54,7 @@ class TestEmailQueue(IntegrationTestCase): Subject: {subject} From: Test To: - Date: {frappe.utils.now_datetime().strftime('%a, %d %b %Y %H:%M:%S %z')} + Date: {frappe.utils.now_datetime().strftime("%a, %d %b %Y %H:%M:%S %z")} Reply-To: test@example.com X-Frappe-Site: {frappe.local.site} """ diff --git a/frappe/email/doctype/email_template/email_template.json b/frappe/email/doctype/email_template/email_template.json index ccce3961cf..e92f677f02 100644 --- a/frappe/email/doctype/email_template/email_template.json +++ b/frappe/email/doctype/email_template/email_template.json @@ -51,7 +51,7 @@ "depends_on": "eval:doc.use_html", "fieldname": "response_html", "fieldtype": "Code", - "label": "Response ", + "label": "Response", "options": "Jinja" } ], diff --git a/frappe/email/doctype/notification/notification.js b/frappe/email/doctype/notification/notification.js index c2277644bd..518b06daaa 100644 --- a/frappe/email/doctype/notification/notification.js +++ b/frappe/email/doctype/notification/notification.js @@ -112,7 +112,7 @@ frappe.notification = { if (frm.doc.channel === "Email") { template = `
Message Example
-
<h3>Order Overdue</h3>
+
<h3>Order Overdue</h3>
 
 <p>Transaction {{ doc.name }} has exceeded Due Date. Please take necessary action.</p>
 
@@ -127,7 +127,7 @@ Last comment: {{ comments[-1].comment }} by {{ comments[-1].by }}
 <li>Customer: {{ doc.customer }}</li>
 <li>Amount: {{ doc.grand_total }}</li>
 </ul>
-
+
`; } else if (["Slack", "System Notification", "SMS"].includes(frm.doc.channel)) { template = `
Message Example
@@ -148,7 +148,11 @@ Last comment: {{ comments[-1].comment }} by {{ comments[-1].by }} `; } if (template) { - frm.set_df_property("message_examples", "options", template); + const message_examples_field = frm.get_field("message_examples"); + message_examples_field.html(template); + if (frm.doc.channel === "Email") { + frappe.utils.highlight_pre(message_examples_field.$wrapper); + } } }, }; @@ -205,9 +209,12 @@ frappe.ui.form.on("Notification", { return dialog; }); } + + frm.trigger("set_up_filters_editor"); }, document_type: function (frm) { frappe.notification.setup_fieldname_select(frm); + frm.trigger("set_up_filters_editor"); }, view_properties: function (frm) { frappe.route_options = { doc_type: frm.doc.document_type }; @@ -246,4 +253,41 @@ frappe.ui.form.on("Notification", { frm.set_df_property("channel", "description", ` `); } }, + condition_type: function (frm) { + if (frm.doc.condition_type === "Filters") { + frm.set_value("condition", ""); + } else { + frm.set_value("filters", ""); + } + + frm.trigger("set_up_filters_editor"); + }, + set_up_filters_editor(frm) { + const parent = frm.get_field("filters_editor").$wrapper; + parent.empty(); + + if (!frm.doc.document_type || frm.doc.condition_type !== "Filters") { + return; + } + + const filters = + frm.doc.filters && frm.doc.filters !== "[]" ? JSON.parse(frm.doc.filters) : []; + + frappe.model.with_doctype(frm.doc.document_type, () => { + const filter_group = new frappe.ui.FilterGroup({ + parent: parent, + doctype: frm.doc.document_type, + on_change: () => { + frappe.model.set_value( + frm.doc.doctype, + frm.doc.name, + "filters", + JSON.stringify(filter_group.get_filters()) + ); + }, + }); + + filter_group.add_filters_to_filter_group(filters); + }); + }, }); diff --git a/frappe/email/doctype/notification/notification.json b/frappe/email/doctype/notification/notification.json index 8128c64720..384729764e 100644 --- a/frappe/email/doctype/notification/notification.json +++ b/frappe/email/doctype/notification/notification.json @@ -13,7 +13,7 @@ "column_break_2", "channel", "slack_webhook_url", - "filters", + "filters_section", "subject", "event", "document_type", @@ -29,7 +29,10 @@ "send_system_notification", "sender_email", "section_break_9", + "condition_type", + "filters_editor", "condition", + "filters", "column_break_6", "html_7", "property_section", @@ -79,8 +82,11 @@ }, { "fieldname": "filters", - "fieldtype": "Section Break", - "label": "Filters" + "fieldtype": "Code", + "hidden": 1, + "label": "Filters", + "options": "JSON", + "read_only": 1 }, { "depends_on": "eval: in_list(['Email', 'Slack', 'System Notification'], doc.channel)", @@ -178,6 +184,7 @@ "fieldtype": "Section Break" }, { + "depends_on": "eval:doc.condition_type===\"Python\"", "description": "Optional: The alert will be sent if this expression is true", "fieldname": "condition", "fieldtype": "Code", @@ -190,6 +197,7 @@ "fieldtype": "Column Break" }, { + "depends_on": "eval:doc.condition_type===\"Python\"", "fieldname": "html_7", "fieldtype": "HTML", "options": "

Condition Examples:

\n
doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n
\n" @@ -311,12 +319,31 @@ "fieldtype": "Datetime", "label": "Last Run", "read_only": 1 + }, + { + "default": "Python", + "fieldname": "condition_type", + "fieldtype": "Select", + "label": "Condition Type", + "options": "Python\nFilters" + }, + { + "depends_on": "eval:doc.condition_type===\"Filters\"", + "fieldname": "filters_editor", + "fieldtype": "HTML", + "label": "Filters Editor" + }, + { + "fieldname": "filters_section", + "fieldtype": "Section Break", + "label": "Filters" } ], + "grid_page_length": 50, "icon": "fa fa-envelope", "index_web_pages_for_search": 1, "links": [], - "modified": "2024-09-12 10:28:35.077180", + "modified": "2025-05-10 21:03:15.561558", "modified_by": "Administrator", "module": "Email", "name": "Notification", @@ -334,9 +361,10 @@ "write": 1 } ], + "row_format": "Dynamic", "sort_field": "creation", "sort_order": "DESC", "states": [], "title_field": "subject", "track_changes": 1 -} \ No newline at end of file +} diff --git a/frappe/email/doctype/notification/notification.py b/frappe/email/doctype/notification/notification.py index 00fe5f25ec..a094c3f1b5 100644 --- a/frappe/email/doctype/notification/notification.py +++ b/frappe/email/doctype/notification/notification.py @@ -15,6 +15,7 @@ from frappe.integrations.doctype.slack_webhook_url.slack_webhook_url import send from frappe.model.document import Document from frappe.modules.utils import export_module_json, get_doc_module from frappe.utils import add_to_date, cast, now_datetime, nowdate, validate_email_address +from frappe.utils.data import evaluate_filters from frappe.utils.jinja import validate_template from frappe.utils.safe_exec import get_safe_globals @@ -36,6 +37,7 @@ class Notification(Document): attach_print: DF.Check channel: DF.Literal["Email", "Slack", "System Notification", "SMS"] condition: DF.Code | None + condition_type: DF.Literal["Python", "Filters"] date_changed: DF.Literal[None] datetime_changed: DF.Literal[None] datetime_last_run: DF.Datetime | None @@ -56,6 +58,7 @@ class Notification(Document): "Method", "Custom", ] + filters: DF.Code | None is_standard: DF.Check message: DF.Code | None message_type: DF.Literal["Markdown", "HTML", "Plain Text"] @@ -88,12 +91,15 @@ class Notification(Document): @frappe.whitelist() def preview_meets_condition(self, preview_document): - if not self.condition: + if not self.condition and not self.filters: return _("Yes") try: doc = frappe.get_cached_doc(self.document_type, preview_document) - context = get_context(doc) - return _("Yes") if frappe.safe_eval(self.condition, eval_locals=context) else _("No") + if self.condition_type == "Python": + context = get_context(doc) + return _("Yes") if frappe.safe_eval(self.condition, eval_locals=context) else _("No") + elif self.condition_type == "Filters": + return _("Yes") if evaluate_filters(doc, json.loads(self.filters)) else _("No") except Exception as e: frappe.local.message_log = [] return _("Failed to evaluate conditions: {}").format(e) @@ -135,6 +141,9 @@ class Notification(Document): # END: PreviewRenderer API + def before_save(self): + self.remove_invalid_condition() + def validate(self): if self.channel in ("Email", "Slack", "System Notification"): validate_template(self.subject) @@ -159,6 +168,7 @@ class Notification(Document): self.validate_forbidden_document_types() self.validate_condition() + self.validate_filters() self.validate_standard() clear_notification_cache() @@ -192,13 +202,29 @@ def get_context(context): _("Cannot edit Standard Notification. To edit, please disable this and duplicate it") ) + def remove_invalid_condition(self): + if self.condition_type == "Filters": + self.condition = None + elif self.condition_type == "Python": + self.filters = None + def validate_condition(self): + if not self.condition: + return + temp_doc = frappe.new_doc(self.document_type) - if self.condition: - try: - frappe.safe_eval(self.condition, None, get_context(temp_doc.as_dict())) - except Exception: - frappe.throw(_("The Condition '{0}' is invalid").format(self.condition)) + try: + frappe.safe_eval(self.condition, None, get_context(temp_doc.as_dict())) + except Exception: + frappe.throw(_("The Condition '{0}' is invalid").format(self.condition)) + + def validate_filters(self): + if not self.filters: + return + + filters = json.loads(self.filters) + dummy_doc = frappe.new_doc(self.document_type) + evaluate_filters(dummy_doc, filters) def validate_forbidden_document_types(self): if self.document_type in FORBIDDEN_DOCUMENT_TYPES or ( @@ -232,10 +258,18 @@ def get_context(context): ], ) + filters = json.loads(self.filters) if self.condition_type == "Filters" and self.filters else None + for d in doc_list: doc = frappe.get_lazy_doc(self.document_type, d.name) - if self.condition and not frappe.safe_eval(self.condition, None, get_context(doc)): + if ( + self.condition_type == "Python" + and self.condition + and not frappe.safe_eval(self.condition, None, get_context(doc)) + ): + continue + elif filters and not evaluate_filters(doc, filters): continue docs.append(doc) @@ -281,10 +315,18 @@ def get_context(context): self.db_set("datetime_last_run", now) # set reference now for next run + filters = json.loads(self.filters) if self.condition_type == "Filters" and self.filters else None + for d in doc_list: doc = frappe.get_lazy_doc(self.document_type, d.name) - if self.condition and not frappe.safe_eval(self.condition, None, get_context(doc)): + if ( + self.condition_type == "Python" + and self.condition + and not frappe.safe_eval(self.condition, None, get_context(doc)) + ): + continue + elif filters and not evaluate_filters(doc, filters): continue docs.append(doc) @@ -310,7 +352,9 @@ def get_context(context): To queue a notification from a server script: ```python - notification = frappe.get_doc("Notification", "My Notification", ignore_permissions=True) + notification = frappe.get_doc( + "Notification", "My Notification", ignore_permissions=True + ) notification.queue_send(customer) ``` @@ -705,9 +749,12 @@ def evaluate_alert(doc: Document, alert, event=None): context = get_context(doc) - if alert.condition: + if alert.condition_type == "Python" and alert.condition: if not frappe.safe_eval(alert.condition, None, context): return + elif alert.condition_type == "Filters" and alert.filters: + if not evaluate_filters(doc, json.loads(alert.filters)): + return if event == "Value Change" and not doc.is_new(): if not frappe.db.has_column(doc.doctype, alert.value_changed): diff --git a/frappe/email/doctype/notification/test_notification.py b/frappe/email/doctype/notification/test_notification.py index 6ec5926261..63f3a630df 100644 --- a/frappe/email/doctype/notification/test_notification.py +++ b/frappe/email/doctype/notification/test_notification.py @@ -1,8 +1,8 @@ # Copyright (c) 2018, Frappe Technologies and Contributors # License: MIT. See LICENSE +import json from contextlib import contextmanager -from datetime import timedelta import frappe import frappe.utils @@ -500,6 +500,36 @@ class TestNotification(IntegrationTestCase): self.assertTrue("test1@example.com" in recipients) self.assertEqual(notification.enabled, 1) + def test_filters_condition(self): + """Test Notification with Condition Type 'Filters'.""" + frappe.delete_doc_if_exists("Notification", "Test Filters Condition") + + notification = frappe.new_doc("Notification") + notification.name = "Test Filters Condition" + notification.subject = "Test Filters Condition" + notification.document_type = "ToDo" + notification.event = "Save" + notification.condition_type = "Filters" + notification.filters = json.dumps([["status", "=", "Open"]]) + notification.message = "Test message" + notification.channel = "Email" + notification.append("recipients", {"receiver_by_document_field": "allocated_to"}) + notification.save() + + todo = frappe.new_doc("ToDo") + todo.description = "Checking email notification with filters condition" + todo.allocated_to = "test1@example.com" + todo.save() + + email_queue = frappe.get_doc( + "Email Queue", {"reference_doctype": "ToDo", "reference_name": todo.name} + ) + self.assertTrue(email_queue) + + recipients = [d.recipient for d in email_queue.recipients] + self.assertTrue("test1@example.com" in recipients) + self.assertEqual(notification.enabled, 1) + # ruff: noqa: RUF001 """ @@ -520,7 +550,7 @@ Ran 3 tests in 2.677s OK """ - +# from datetime import timedelta # from frappe.utils import add_to_date, now_datetime # class TestNotificationOffsetRange(IntegrationTestCase): # def setUp(self): diff --git a/frappe/email/email_body.py b/frappe/email/email_body.py index 7a2256fdda..e02ae105b0 100755 --- a/frappe/email/email_body.py +++ b/frappe/email/email_body.py @@ -237,7 +237,7 @@ class EMail: """Append the message with MIME content to the root node (as attachment)""" from email.mime.text import MIMEText - maintype, subtype = mime_type.split("/") + _maintype, subtype = mime_type.split("/") part = MIMEText(message, _subtype=subtype, policy=policy.SMTP) if as_attachment: @@ -445,7 +445,7 @@ def add_attachment(fname, fcontent, content_type=None, parent=None, content_id=N from email.mime.text import MIMEText if not content_type: - content_type, encoding = mimetypes.guess_type(fname) + content_type, _encoding = mimetypes.guess_type(fname) if not parent: return @@ -597,7 +597,7 @@ def get_header(header=None): if not title: title = frappe.get_hooks("app_title")[-1] - email_header, text = get_email_from_template( + email_header, _text = get_email_from_template( "email_header", {"header_title": title, "indicator": indicator} ) diff --git a/frappe/email/frappemail.py b/frappe/email/frappemail.py index adef2d7624..c8350da270 100644 --- a/frappe/email/frappemail.py +++ b/frappe/email/frappemail.py @@ -1,3 +1,5 @@ +import math +import uuid from datetime import datetime from typing import Any from urllib.parse import urljoin @@ -8,6 +10,8 @@ from frappe import _ from frappe.frappeclient import FrappeClient, FrappeOAuth2Client from frappe.utils import convert_utc_to_system_timezone, get_datetime, get_system_timezone +CHUNK_SIZE = 5 * 1024 * 1024 # 5MB + class FrappeMail: """Class to interact with the Frappe Mail API.""" @@ -83,6 +87,7 @@ class FrappeMail: headers=headers, timeout=timeout, ) + response.raise_for_status() return self.client.post_process(response) @@ -98,23 +103,47 @@ class FrappeMail: ) -> None: """Sends an email using the Frappe Mail API.""" + session_id = str(uuid.uuid4()) endpoint = "/api/method/mail.api.outbound.send_raw" - data = {"from_": sender, "to": recipients, "is_newsletter": is_newsletter} - self.request("POST", endpoint=endpoint, data=data, files={"raw_message": message}) - def pull_raw(self, limit: int = 50, last_synced_at: str | None = None) -> dict[str, str | list[str]]: - """Pulls emails for the email using the Frappe Mail API.""" + if isinstance(message, str): + message = message.encode("utf-8") + + total_size = len(message) + total_chunks = math.ceil(total_size / CHUNK_SIZE) + + for i in range(total_chunks): + start = i * CHUNK_SIZE + end = start + CHUNK_SIZE + chunk = message[start:end] + + files = {"raw_message": ("raw_message.eml", chunk)} + data = { + "from_": sender, + "to": recipients, + "is_newsletter": is_newsletter, + "uuid": session_id, + "chunk_index": i, + "total_chunk_count": total_chunks, + "chunk_byte_offset": start, + } + self.request("POST", endpoint=endpoint, data=data, files=files) + + def pull_raw( + self, mailbox: str = "inbox", limit: int = 50, last_received_at: str | None = None + ) -> dict[str, str | list[str]]: + """Pull emails for the account using the Frappe Mail API.""" endpoint = "/api/method/mail.api.inbound.pull_raw" - if last_synced_at: - last_synced_at = add_or_update_tzinfo(last_synced_at) + if last_received_at: + last_received_at = add_or_update_tzinfo(last_received_at) - data = {"email": self.email, "limit": limit, "last_synced_at": last_synced_at} + data = {"mailbox": mailbox, "limit": limit, "last_received_at": last_received_at} headers = {"X-Site": frappe.utils.get_url()} response = self.request("GET", endpoint=endpoint, data=data, headers=headers) - last_synced_at = convert_utc_to_system_timezone(get_datetime(response["last_synced_at"])) + last_received_at = convert_utc_to_system_timezone(get_datetime(response["last_received_at"])) - return {"latest_messages": response["mails"], "last_synced_at": last_synced_at} + return {"latest_messages": response["mails"], "last_received_at": last_received_at} def add_or_update_tzinfo(date_time: datetime | str, timezone: str | None = None) -> str: diff --git a/frappe/email/receive.py b/frappe/email/receive.py index a0409c7909..6733c2d246 100644 --- a/frappe/email/receive.py +++ b/frappe/email/receive.py @@ -205,7 +205,7 @@ class EmailServer: readonly = self.settings.email_sync_rule != "UNSEEN" self.imap.select(folder, readonly=readonly) - response, message = self.imap.uid("search", None, self.settings.email_sync_rule) + _response, message = self.imap.uid("search", None, self.settings.email_sync_rule) if message[0]: email_list = message[0].split() else: @@ -217,7 +217,7 @@ class EmailServer: # compare the UIDVALIDITY of email account and imap server uid_validity = self.settings.uid_validity - response, message = self.imap.status(folder, "(UIDVALIDITY UIDNEXT)") + _response, message = self.imap.status(folder, "(UIDVALIDITY UIDNEXT)") current_uid_validity = self.parse_imap_response("UIDVALIDITY", message[0]) or 0 uidnext = int(self.parse_imap_response("UIDNEXT", message[0]) or "1") @@ -270,7 +270,7 @@ class EmailServer: def retrieve_message(self, uid, msg_num, folder): try: if cint(self.settings.use_imap): - status, message = self.imap.uid("fetch", uid, "(BODY.PEEK[] BODY.PEEK[HEADER] FLAGS)") + _status, message = self.imap.uid("fetch", uid, "(BODY.PEEK[] BODY.PEEK[HEADER] FLAGS)") raw = message[0] self.get_email_seen_status(uid, raw[0]) @@ -446,6 +446,15 @@ class Email: _from_email = self.decode_email(self.mail.get("X-Original-From") or self.mail["From"]) _reply_to = self.decode_email(self.mail.get("Reply-To")) + if not _from_email: + # happens in some cases when email server is misconfigured + # should not fail the entire syncing process + frappe.log_error( + f"Email missing `From` header. UID: {getattr(self, 'uid', 'unknown')}", str(self.mail) + ) + self.from_email = None + return + if _reply_to and not frappe.db.get_value( "Email Account", {"email_id": _reply_to, "enable_incoming": 1}, "email_id" ): @@ -453,9 +462,7 @@ class Email: else: self.from_email = extract_email_id(_from_email) - if self.from_email: - self.from_email = self.from_email.lower() - + self.from_email = self.from_email.lower() self.from_real_name = parse_addr(_from_email)[0] if "@" in _from_email else _from_email @staticmethod diff --git a/frappe/geo/languages.csv b/frappe/geo/languages.csv index 0a1a3d9dae..be0fdf2be4 100644 --- a/frappe/geo/languages.csv +++ b/frappe/geo/languages.csv @@ -52,7 +52,8 @@ ml,മലയാളം,0 mn,Монгол,0 mr,मराठी,0 ms,Melayu,0 -my,မြန်မာ,0 +my,မြန်မာ1 +nb,Norsk Bokmål,1 nl,Nederlands,0 no,Norsk,0 pl,Polski,0 diff --git a/frappe/gettext/extractors/web_form.py b/frappe/gettext/extractors/web_form.py new file mode 100644 index 0000000000..6fae006d25 --- /dev/null +++ b/frappe/gettext/extractors/web_form.py @@ -0,0 +1,73 @@ +import json + + +def extract(fileobj, *args, **kwargs): + """ + Extract messages from Web Form JSON files. To be used to babel extractor + :param fileobj: the file-like object the messages should be extracted from + :rtype: `iterator` + """ + data = json.load(fileobj) + + if isinstance(data, list): + return + + if data.get("doctype") != "Web Form": + return + + web_form_name = data.get("name") + + # Extract main web form fields + if title := data.get("title"): + yield None, "_", title, [f"Title of the {web_form_name} Web Form"] + + if introduction_text := data.get("introduction_text"): + yield None, "_", introduction_text, [f"Introduction text of the {web_form_name} Web Form"] + + if success_message := data.get("success_message"): + yield None, "_", success_message, [f"Success message of the {web_form_name} Web Form"] + + if success_title := data.get("success_title"): + yield None, "_", success_title, [f"Success title of the {web_form_name} Web Form"] + + if list_title := data.get("list_title"): + yield None, "_", list_title, [f"List title of the {web_form_name} Web Form"] + + if button_label := data.get("button_label"): + yield None, "_", button_label, [f"Button label of the {web_form_name} Web Form"] + + if meta_title := data.get("meta_title"): + yield None, "_", meta_title, [f"Meta title of the {web_form_name} Web Form"] + + if meta_description := data.get("meta_description"): + yield None, "_", meta_description, [f"Meta description of the {web_form_name} Web Form"] + + # Extract web form fields + for field in data.get("web_form_fields", []): + if label := field.get("label"): + yield None, "_", label, [f"Label of a field in the {web_form_name} Web Form"] + + if description := field.get("description"): + yield None, "_", description, [f"Description of a field in the {web_form_name} Web Form"] + + # Extract options for Select fields + if field.get("fieldtype") == "Select" and (options := field.get("options")): + skip_options = ( + web_form_name == "edit-profile" and field.get("fieldname") == "time_zone" + ) # Dumb workaround for avoiding a flood of strings from this field + if isinstance(options, str) and not skip_options: + # Handle both single values and newline-separated values + option_list = options.split("\n") if "\n" in options else [options] + for option in option_list: + if option.strip(): + yield ( + None, + "_", + option.strip(), + [f"Option in a Select field in the {web_form_name} Web Form"], + ) + + # Extract list columns + for column in data.get("list_columns", []): + if isinstance(column, dict) and (label := column.get("label")): + yield None, "_", label, [f"Label of a list column in the {web_form_name} Web Form"] diff --git a/frappe/handler.py b/frappe/handler.py index 4b35660e37..3892aedaa2 100644 --- a/frappe/handler.py +++ b/frappe/handler.py @@ -11,6 +11,7 @@ import frappe import frappe.sessions import frappe.utils from frappe import _, is_whitelisted, ping +from frappe.core.doctype.file.utils import find_file_by_url from frappe.core.doctype.server_script.server_script_utils import get_server_script_map from frappe.monitor import add_data_to_monitor from frappe.permissions import check_doctype_permission @@ -230,8 +231,8 @@ def download_file(file_url: str): Endpoints : download_file, frappe.core.doctype.file.file.download_file URL Params : file_name = /path/to/file relative to site path """ - file: File = frappe.get_doc("File", {"file_url": file_url}) - if not file.is_downloadable(): + file = find_file_by_url(file_url) + if not file: raise frappe.PermissionError frappe.local.response.filename = os.path.basename(file_url) diff --git a/frappe/hooks.py b/frappe/hooks.py index 8d16696f41..d4de0d0047 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -209,6 +209,7 @@ scheduler_events = { "frappe.automation.doctype.reminder.reminder.send_reminders", "frappe.model.utils.link_count.update_link_count", "frappe.search.sqlite_search.build_index_if_not_exists", + "frappe.pulse.client.send_queued_events", ], # 10 minutes "0/10 * * * *": [ @@ -238,6 +239,7 @@ scheduler_events = { "frappe.twofactor.delete_all_barcodes_for_users", "frappe.oauth.delete_oauth2_data", "frappe.website.doctype.web_page.web_page.check_publish_status", + "frappe.desk.utils.delete_old_exported_report_files", ], "daily": [ "frappe.desk.doctype.event.event.send_event_digest", @@ -575,5 +577,7 @@ persistent_cache_keys = [ ] user_invitation = { - "only_for": ["System Manager"], + "allowed_roles": { + "System Manager": [], + }, } diff --git a/frappe/installer.py b/frappe/installer.py index c752a97d47..8c3934bd2c 100644 --- a/frappe/installer.py +++ b/frappe/installer.py @@ -333,6 +333,7 @@ def install_app(name, verbose=False, set_as_patched=True, force=False): for after_sync in app_hooks.after_sync or []: frappe.get_attr(after_sync)() # + frappe.clear_cache() frappe.client_cache.erase_persistent_caches() frappe.flags.in_install = False @@ -347,6 +348,7 @@ def add_to_installed_apps(app_name, rebuild_website=True): post_install(rebuild_website) frappe.get_single("Installed Applications").update_versions() + frappe.db.commit() def remove_from_installed_apps(app_name): @@ -416,6 +418,7 @@ def remove_app(app_name, dry_run=False, yes=False, no_backup=False, force=False) remove_from_installed_apps(app_name) frappe.get_single("Installed Applications").update_versions() frappe.db.commit() + frappe.clear_cache() for after_uninstall in app_hooks.after_uninstall or []: frappe.get_attr(after_uninstall)() @@ -428,6 +431,9 @@ def remove_app(app_name, dry_run=False, yes=False, no_backup=False, force=False) click.secho(f"Uninstalled App {app_name} from Site {site}", fg="green") frappe.flags.in_uninstall = False + if not dry_run: + frappe.clear_cache() + def _delete_modules(modules: list[str], dry_run: bool) -> list[str]: """Delete modules belonging to the app and all related doctypes. diff --git a/frappe/integrations/doctype/connected_app/connected_app.js b/frappe/integrations/doctype/connected_app/connected_app.js index 11dcda235e..566483b137 100644 --- a/frappe/integrations/doctype/connected_app/connected_app.js +++ b/frappe/integrations/doctype/connected_app/connected_app.js @@ -4,21 +4,16 @@ frappe.ui.form.on("Connected App", { refresh: (frm) => { frm.add_custom_button(__("Get OpenID Configuration"), async () => { - if (!frm.doc.openid_configuration) { - frappe.msgprint(__("Please enter OpenID Configuration URL")); - } else { - try { - const response = await fetch(frm.doc.openid_configuration); - const oidc = await response.json(); - frm.set_value("authorization_uri", oidc.authorization_endpoint); - frm.set_value("token_uri", oidc.token_endpoint); - frm.set_value("userinfo_uri", oidc.userinfo_endpoint); - frm.set_value("introspection_uri", oidc.introspection_endpoint); - frm.set_value("revocation_uri", oidc.revocation_endpoint); - } catch (error) { - frappe.msgprint(__("Please check OpenID Configuration URL")); - } - } + frm.call("get_openid_configuration").then(({ message: oidc }) => { + frm.set_value("authorization_uri", oidc.authorization_endpoint); + frm.set_value("token_uri", oidc.token_endpoint); + frm.set_value("userinfo_uri", oidc.userinfo_endpoint); + frm.set_value("introspection_uri", oidc.introspection_endpoint); + frm.set_value("revocation_uri", oidc.revocation_endpoint); + + frm.fields_dict.authorization_uri.section.collapse(false); // Un-collapse + frappe.show_alert(__("OpenID Configuration fetched successfully!")); + }); }); if (!frm.is_new()) { @@ -26,7 +21,7 @@ frappe.ui.form.on("Connected App", { frappe.call({ method: "initiate_web_application_flow", doc: frm.doc, - callback: function (r) { + callback: (r) => { window.open(r.message, "_blank"); }, }); diff --git a/frappe/integrations/doctype/connected_app/connected_app.py b/frappe/integrations/doctype/connected_app/connected_app.py index 15b1efd0fa..bcbae34ecb 100644 --- a/frappe/integrations/doctype/connected_app/connected_app.py +++ b/frappe/integrations/doctype/connected_app/connected_app.py @@ -9,6 +9,7 @@ from requests_oauthlib import OAuth2Session import frappe from frappe import _ +from frappe.integrations.utils import make_get_request from frappe.model.document import Document if any((os.getenv("CI"), frappe.conf.developer_mode, frappe.conf.allow_tests)): @@ -47,6 +48,12 @@ class ConnectedApp(Document): in a Token Cache. """ + @frappe.whitelist() + def get_openid_configuration(self): + if not self.openid_configuration: + frappe.throw(_("Please enter OpenID Configuration URL")) + return make_get_request(self.openid_configuration) + def validate(self): base_url = frappe.utils.get_url() callback_path = ( diff --git a/frappe/integrations/doctype/geolocation_settings/providers/here.py b/frappe/integrations/doctype/geolocation_settings/providers/here.py index 0ecac02d9c..9234d528d7 100644 --- a/frappe/integrations/doctype/geolocation_settings/providers/here.py +++ b/frappe/integrations/doctype/geolocation_settings/providers/here.py @@ -34,7 +34,7 @@ class Here: "label": address["label"], "value": json.dumps( { - "address_line1": f'{address.get("street", "")} {address.get("houseNumber", "")}'.strip(), + "address_line1": f"{address.get('street', '')} {address.get('houseNumber', '')}".strip(), "city": address.get("city", ""), "state": address.get("state", ""), "pincode": address.get("postalCode", ""), diff --git a/frappe/integrations/doctype/geolocation_settings/providers/nomatim.py b/frappe/integrations/doctype/geolocation_settings/providers/nomatim.py index c02e14ad68..c7d74b9510 100644 --- a/frappe/integrations/doctype/geolocation_settings/providers/nomatim.py +++ b/frappe/integrations/doctype/geolocation_settings/providers/nomatim.py @@ -37,7 +37,7 @@ class Nomatim: "label": result["display_name"], "value": json.dumps( { - "address_line1": f'{address.get("road")} {address.get("house_number", "")}'.strip(), + "address_line1": f"{address.get('road')} {address.get('house_number', '')}".strip(), "city": address.get("city") or address.get("town") or address.get("village"), "state": address.get("state"), "pincode": address.get("postcode"), diff --git a/frappe/integrations/doctype/google_calendar/google_calendar.py b/frappe/integrations/doctype/google_calendar/google_calendar.py index 3089de3917..6c0b309d60 100644 --- a/frappe/integrations/doctype/google_calendar/google_calendar.py +++ b/frappe/integrations/doctype/google_calendar/google_calendar.py @@ -798,16 +798,18 @@ def get_conference_data(doc): def get_attendees(doc): """Return a list of dicts with attendee emails, if available in event_participants table.""" attendees, email_not_found = [], [] + owner = frappe.db.get_value("Google Calendar", doc.google_calendar, "user") for participant in doc.event_participants: - if participant.get("email"): - attendees.append({"email": participant.email}) + p_email = participant.get("email") + if p_email and p_email != owner: + attendees.append({"email": p_email}) else: email_not_found.append({"dt": participant.reference_doctype, "dn": participant.reference_docname}) if email_not_found: frappe.msgprint( - _("Google Calendar - Contact / email not found. Did not add attendee for -
{0}").format( + _("Contact / email not found. Did not add attendee for -
{0}").format( "
".join(f"{d.get('dt')} {d.get('dn')}" for d in email_not_found) ), alert=True, diff --git a/frappe/integrations/doctype/google_settings/google_settings.js b/frappe/integrations/doctype/google_settings/google_settings.js index 58093034b5..1c2b407f0d 100644 --- a/frappe/integrations/doctype/google_settings/google_settings.js +++ b/frappe/integrations/doctype/google_settings/google_settings.js @@ -5,7 +5,7 @@ frappe.ui.form.on("Google Settings", { refresh: function (frm) { frm.dashboard.set_headline( __("For more information, {0}.", [ - `${__( + `${__( "Click here" )}`, ]) diff --git a/frappe/integrations/doctype/ldap_settings/ldap_settings.json b/frappe/integrations/doctype/ldap_settings/ldap_settings.json index 3c5d65a1fe..1777cedd2b 100644 --- a/frappe/integrations/doctype/ldap_settings/ldap_settings.json +++ b/frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -295,7 +295,7 @@ "description": "Do not create new user if user with email does not exist in the system", "fieldname": "do_not_create_new_user", "fieldtype": "Check", - "label": "Do Not Create New User " + "label": "Do Not Create New User" } ], "in_create": 1, diff --git a/frappe/integrations/doctype/ldap_settings/ldap_settings.py b/frappe/integrations/doctype/ldap_settings/ldap_settings.py index fafd155bb8..bb84b7241f 100644 --- a/frappe/integrations/doctype/ldap_settings/ldap_settings.py +++ b/frappe/integrations/doctype/ldap_settings/ldap_settings.py @@ -278,13 +278,14 @@ class LDAPSettings(Document): elif self.ldap_directory_server.lower() == "openldap": ldap_object_class = "posixgroup" ldap_group_members_attribute = "memberuid" - user_search_str = getattr(user, self.ldap_username_field).value + user_search_str = escape_filter_chars(getattr(user, self.ldap_username_field).value) elif self.ldap_directory_server.lower() == "custom": ldap_object_class = self.ldap_group_objectclass ldap_group_members_attribute = self.ldap_group_member_attribute ldap_custom_group_search = self.ldap_custom_group_search or "{0}" - user_search_str = ldap_custom_group_search.format(getattr(user, self.ldap_username_field).value) + user_value = escape_filter_chars(getattr(user, self.ldap_username_field).value) + user_search_str = ldap_custom_group_search.format(user_value) else: # NOTE: depreciate this else path @@ -308,6 +309,7 @@ class LDAPSettings(Document): if not self.enabled: frappe.throw(_("LDAP is not enabled.")) + username = escape_filter_chars(username) user_filter = self.ldap_search_string.format(username) ldap_attributes = self.get_ldap_attributes() conn = self.connect_to_ldap(self.base_dn, self.get_password(raise_exception=False)) @@ -335,7 +337,8 @@ class LDAPSettings(Document): except LDAPInvalidCredentialsResult: frappe.throw(_("Invalid username or password")) - def reset_password(self, user, password, logout_sessions=False): + def reset_password(self, user: str, password: str, logout_sessions: int = 0): + user = escape_filter_chars(user) search_filter = f"({self.ldap_email_field}={user})" conn = self.connect_to_ldap(self.base_dn, self.get_password(raise_exception=False), read_only=False) @@ -420,7 +423,7 @@ def login(): @frappe.whitelist() -def reset_password(user, password, logout): +def reset_password(user: str, password: str, logout: int): ldap: LDAPSettings = frappe.get_doc("LDAP Settings") if not ldap.enabled: frappe.throw(_("LDAP is not enabled.")) diff --git a/frappe/integrations/doctype/ldap_settings/test_ldap_settings.py b/frappe/integrations/doctype/ldap_settings/test_ldap_settings.py index 85bf3b4af9..ef22e1ff6f 100644 --- a/frappe/integrations/doctype/ldap_settings/test_ldap_settings.py +++ b/frappe/integrations/doctype/ldap_settings/test_ldap_settings.py @@ -240,7 +240,7 @@ class LDAP_TestCase: function_return = self.test_class.connect_to_ldap( base_dn=self.base_dn, password=self.base_password ) - args, kwargs = ldap3_connection_method.call_args + _args, kwargs = ldap3_connection_method.call_args for connection_arg in kwargs: if ( @@ -305,7 +305,7 @@ class LDAP_TestCase: base_dn=self.base_dn, password=self.base_password, read_only=False ) - args, kwargs = ldap3_connection_method.call_args + _args, kwargs = ldap3_connection_method.call_args self.assertFalse( kwargs["read_only"], diff --git a/frappe/integrations/doctype/push_notification_settings/push_notification_settings.json b/frappe/integrations/doctype/push_notification_settings/push_notification_settings.json index 2d045070ec..075726236c 100644 --- a/frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +++ b/frappe/integrations/doctype/push_notification_settings/push_notification_settings.json @@ -37,7 +37,7 @@ "label": "API Secret" }, { - "description": "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. ", + "description": "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved.", "fieldname": "section_break_qgjr", "fieldtype": "Section Break", "label": "Relay Settings" diff --git a/frappe/integrations/doctype/social_login_key/social_login_key.py b/frappe/integrations/doctype/social_login_key/social_login_key.py index 0e1567a995..6a3b84fa8a 100644 --- a/frappe/integrations/doctype/social_login_key/social_login_key.py +++ b/frappe/integrations/doctype/social_login_key/social_login_key.py @@ -89,6 +89,17 @@ class SocialLoginKey(Document): frappe.throw( _("Please enter Client Secret before social login is enabled"), exc=ClientSecretNotSetError ) + if self.auth_url_data: + try: + json.loads(self.auth_url_data) + except json.JSONDecodeError: + frappe.throw(_("Auth URL data should be valid JSON")) + + if self.api_endpoint_args: + try: + json.loads(self.api_endpoint_args) + except json.JSONDecodeError: + frappe.throw(_("API Endpoint Args should be valid JSON")) def set_icon(self): icon_map = { diff --git a/frappe/integrations/oauth2.py b/frappe/integrations/oauth2.py index 96224f4c5a..063bd2a3bc 100644 --- a/frappe/integrations/oauth2.py +++ b/frappe/integrations/oauth2.py @@ -72,7 +72,7 @@ def approve(*args, **kwargs): frappe.flags.oauth_credentials, ) = get_oauth_server().validate_authorization_request(r.url, r.method, r.get_data(), r.headers) - headers, body, status = get_oauth_server().create_authorization_response( + headers, _body, _status = get_oauth_server().create_authorization_response( uri=frappe.flags.oauth_credentials["redirect_uri"], body=r.get_data(), headers=r.headers, @@ -144,7 +144,7 @@ def authorize(**kwargs): def get_token(*args, **kwargs): try: r = frappe.request - headers, body, status = get_oauth_server().create_token_response( + _headers, body, _status = get_oauth_server().create_token_response( r.url, r.method, r.form, r.headers, frappe.flags.oauth_credentials ) body = frappe._dict(json.loads(body)) @@ -165,7 +165,7 @@ def get_token(*args, **kwargs): def revoke_token(*args, **kwargs): try: r = frappe.request - headers, body, status = get_oauth_server().create_revocation_response( + _headers, _body, status = get_oauth_server().create_revocation_response( r.url, headers=r.headers, body=r.form, @@ -184,7 +184,7 @@ def revoke_token(*args, **kwargs): def openid_profile(*args, **kwargs): try: r = frappe.request - headers, body, status = get_oauth_server().create_userinfo_response( + _headers, body, _status = get_oauth_server().create_userinfo_response( r.url, headers=r.headers, body=r.form, diff --git a/frappe/locale/ar.po b/frappe/locale/ar.po index 1a666723e9..bf59a3e7ce 100644 --- a/frappe/locale/ar.po +++ b/frappe/locale/ar.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-21 21:49\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Arabic\n" "MIME-Version: 1.0\n" @@ -18,10 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: ar_SA\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr "لمتصفحك" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json @@ -61,7 +57,7 @@ msgstr "" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" msgstr "" @@ -74,7 +70,7 @@ msgstr "HTML" msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "\"في البحث العام\" غير مسموح للنوع {0} في الصف {1}" @@ -82,19 +78,23 @@ msgstr "\"في البحث العام\" غير مسموح للنوع {0} في ا msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "'في عرض القائمة' غير مسموح للنوع {0} في الصف {1}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" msgstr "لم يتم تحديد "المستلمين"" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" msgstr ""{0}" غير مسموح به للنوع {1} في الصف {2}" @@ -102,11 +102,11 @@ msgstr ""{0}" غير مسموح به للنوع {1} في الصف {2}" msgid "(Mandatory)" msgstr "" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "** فشل: {0} إلى {1}: {2}" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" msgstr "" @@ -122,7 +122,7 @@ msgstr "0 - مسودّة؛ 1 - تأكيد؛ 2 - إلغاء" msgid "0 is highest" msgstr "0 أعلى قيمة" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "" @@ -140,15 +140,11 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "تمت مزامنة حدث تقويم Google واحد." -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "تعليق واحد" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "" @@ -157,17 +153,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "منذ 1 ساعة" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "منذ 1 دقيقة" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "قبل شهر" @@ -179,37 +175,47 @@ msgstr "" msgid "1 record will be exported" msgstr "سيتم تصدير سجل واحد" -#: frappe/tests/test_utils.py:711 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "" + +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "1 قبل أسبوع" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "منذ سنة" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "" @@ -225,7 +231,7 @@ msgstr "" msgid "5 Records" msgstr "5 السجلات" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "" @@ -245,6 +251,13 @@ msgstr "" msgid "<=" msgstr "" +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "" @@ -254,6 +267,16 @@ msgstr "" msgid "
Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
" msgstr "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -489,7 +512,7 @@ msgid "

To interact with above HTML you will have to use `root_element` as a p "" msgstr "" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

" msgstr "" @@ -556,7 +579,7 @@ msgstr "" msgid ">=" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" @@ -565,15 +588,16 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" -msgstr "يجب أن تحتوي الوظيفة المميزة على صورة غلاف" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "" @@ -586,7 +610,7 @@ msgstr "قائمة الموارد التي سيكون لها التطبيق ال msgid "A new account has been created for you at {0}" msgstr "تم إنشاء حساب جديد لك في {0}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "تم إنشاء {0} {1} متكرر لك من خلال التكرار التلقائي {2}." @@ -685,13 +709,17 @@ msgstr "نقطة وصولAPI" msgid "API Endpoint Args" msgstr "نقطة وصول API Args" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -710,6 +738,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -730,7 +762,7 @@ msgstr "" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -777,6 +809,20 @@ msgstr "حوالي {0} دقائق متبقية" msgid "About {0} seconds remaining" msgstr "حوالي {0} ثانية متبقية" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "مقبول" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -802,7 +848,7 @@ msgstr "رمز وصول" msgid "Access Token URL" msgstr "رابط رمز الدخول" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "الوصول غير مسموح به من عنوان IP هذا" @@ -866,7 +912,7 @@ msgstr "العمل / الطريق" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "فشل العمل" @@ -918,7 +964,7 @@ msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "الإجراءات" @@ -975,7 +1021,7 @@ msgstr "سجل النشاط" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -986,7 +1032,7 @@ msgstr "سجل النشاط" msgid "Add" msgstr "إضافة" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -998,7 +1044,7 @@ msgstr "إضافة / تحديث" msgid "Add A New Rule" msgstr "إضافة قاعدة جديدة" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "إضافة مرفق" @@ -1018,7 +1064,7 @@ msgstr "" msgid "Add Border at Top" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "" @@ -1031,10 +1077,10 @@ msgid "Add Child" msgstr "إضافة الطفل" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "إضافة عمود" @@ -1093,7 +1139,7 @@ msgstr "أضف مشاركين" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "" @@ -1126,12 +1172,12 @@ msgstr "إضافة المشتركين" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "" @@ -1220,7 +1266,7 @@ msgstr "" msgid "Add page break" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "إضافة البرنامج النصي لجدول الطفل" @@ -1258,7 +1304,7 @@ msgstr "" msgid "Add {0}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" msgstr "" @@ -1301,6 +1347,7 @@ msgstr "ضوابط إضافية" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1309,6 +1356,7 @@ msgstr "عنوان" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "العنوان سطر 1" @@ -1316,6 +1364,7 @@ msgstr "العنوان سطر 1" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "العنوان سطر 2" @@ -1366,7 +1415,7 @@ msgstr "" msgid "Adds a custom field to a DocType" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "الادارة" @@ -1380,7 +1429,6 @@ msgstr "الادارة" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1393,11 +1441,11 @@ msgstr "الادارة" msgid "Administrator" msgstr "مدير" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "تسجيل دخول مسؤول النظام" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr ".{2} المسؤول ولج {0} بتاريخ {1} عبر العنوان" @@ -1418,8 +1466,8 @@ msgstr "متقدم" msgid "Advanced Control" msgstr "تحكم متقدم" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" msgstr "البحث المتقدم" @@ -1478,7 +1526,7 @@ msgstr "" msgid "After Submit" msgstr "بعد تقديم" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "" @@ -1505,11 +1553,11 @@ msgstr "إنذار" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1574,7 +1622,7 @@ msgstr "يجب أن تكون جميع الصور الملحقة لموقع مع msgid "All Records" msgstr "جميع السجلات" -#: frappe/public/js/frappe/form/form.js:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "" @@ -1634,8 +1682,8 @@ msgstr "" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " -msgstr "السماح لمحاولات تسجيل الدخول المتتالية" +msgid "Allow Consecutive Login Attempts" +msgstr "" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 msgid "Allow Google Calendar Access" @@ -1655,11 +1703,6 @@ msgstr "اسمح للضيف" msgid "Allow Guest to View" msgstr "السماح للزائر بالعرض" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1708,7 +1751,7 @@ msgid "Allow Print for Cancelled" msgstr "السماح بالطباعة للإلغاء" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "السماح بالطباعة للمسودة" @@ -1940,7 +1983,7 @@ msgstr "" msgid "Allows skipping authorization if a user has active tokens." msgstr "" -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "مسجل بالفعل" @@ -1948,11 +1991,11 @@ msgstr "مسجل بالفعل" msgid "Already in the following Users ToDo list:{0}" msgstr "بالفعل في قائمة "المهام للمستخدمين" التالية: {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "إضافة حقل العملة التابعة {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "إضافة حقل تبعية الحالة أيضًا {0}" @@ -1961,6 +2004,12 @@ msgstr "إضافة حقل تبعية الحالة أيضًا {0}" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2012,10 +2061,8 @@ msgstr "" msgid "Amended Documents" msgstr "" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "معدل من" @@ -2039,6 +2086,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 msgid "An error occurred while setting Session Defaults" msgstr "حدث خطأ أثناء إعداد الإعدادات الافتراضية للجلسة" @@ -2132,10 +2184,12 @@ msgid "App Logo" msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2206,6 +2260,10 @@ msgstr "اسم التطبيق" msgid "Application Version" msgstr "إصدار التطبيق" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2215,7 +2273,7 @@ msgstr "تم التطبيق" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "تطبيق قاعدة الواجب" @@ -2263,7 +2321,7 @@ msgstr "تطبيق هذا الحكم إذا كان المستخدم هو مال msgid "Apply to all Documents Types" msgstr "تنطبق على جميع أنواع الوثائق" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "التطبيق: {0}" @@ -2296,7 +2354,11 @@ msgstr "أرشفة" msgid "Archived Columns" msgstr "أعمدة من الأرشيف" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2324,11 +2386,15 @@ msgctxt "Confirmation dialog message" msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:191 msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2336,7 +2402,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "هل أنت متأكد من رغبتك في دمج {0} مع {1}؟" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2391,6 +2457,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2400,7 +2472,7 @@ msgstr "تعيين الشرط" msgid "Assign To" msgstr "تكليف إلى" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "تكليف إلى" @@ -2463,6 +2535,11 @@ msgstr "كلف إلى" msgid "Assigned To/Owner" msgstr "تعيين ل / المالك" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "" @@ -2532,7 +2609,13 @@ msgstr "" msgid "Assignments" msgstr "تعيينات" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -2612,7 +2695,7 @@ msgstr "مرفق إلى الحقل" msgid "Attached To Name" msgstr "أرفقت للأسم" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "" @@ -2628,7 +2711,7 @@ msgstr "مرفق" msgid "Attachment Limit (MB)" msgstr "الحد مرفق (MB)" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "" @@ -2646,15 +2729,15 @@ 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:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "المرفقات" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "محاولة الاتصال بـ QZ Tray ..." -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "محاولة إطلاق QZ Tray ..." @@ -2677,6 +2760,10 @@ msgstr "" msgid "Auth URL Data" msgstr "بيانات عنوان المصادقة" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "" + #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authenticate as Service Principal" @@ -2694,8 +2781,8 @@ msgid "Authentication" msgstr "المصادقة" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " -msgstr "تطبيقات المصادقة التي يمكنك استخدامها هي:" +msgid "Authentication Apps you can use are:" +msgstr "" #: frappe/email/doctype/email_account/email_account.py:339 msgid "Authentication failed while receiving emails from Email Account: {0}." @@ -2808,11 +2895,11 @@ msgstr "تكرار تلقائي" msgid "Auto Repeat Day" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "فشل إنشاء مستند تكرار تلقائي" @@ -2820,11 +2907,16 @@ msgstr "فشل إنشاء مستند تكرار تلقائي" msgid "Auto Repeat Schedule" msgstr "" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "تكرار تلقائي تم إنشاؤه لهذا المستند" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "فشل التكرار التلقائي لـ {0}" @@ -2868,7 +2960,7 @@ msgstr "" msgid "Auto follow documents that you create" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "" @@ -2916,7 +3008,7 @@ msgstr "لا يمكن تنشيط الربط التلقائي إلا إذا تم msgid "Automatically Assign Documents to Users" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "" @@ -2930,11 +3022,6 @@ msgstr "" msgid "Automation" msgstr "التشغيل الآلي" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "الصورة الرمزية" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3206,8 +3293,8 @@ msgstr "الرابط الأساسي" #. Label of the based_on (Link) field in DocType 'Language' #: frappe/core/doctype/language/language.json -#: frappe/printing/page/print/print.js:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "وبناء على" @@ -3324,10 +3411,8 @@ msgstr "" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "نبذة" @@ -3357,64 +3442,6 @@ msgstr "كتلة وحدات" msgid "Blocked" msgstr "محجوب" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "مدونة" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "تصنيف المدونة" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "بدايه المدونه" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "مقدمة المدونه" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "منشور المدونه" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "إعدادات المدونه" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "عنوان المدونه" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "مدون" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3511,13 +3538,6 @@ msgstr "" msgid "Breadcrumbs" msgstr "مسار التصفح" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3575,15 +3595,15 @@ msgstr "حذف بالجملة" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "تعديل بالجمله {0}" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" msgstr "" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "" @@ -3598,7 +3618,7 @@ msgstr "" msgid "Bulk Update" msgstr "تحديث بالجمله" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "" @@ -3610,7 +3630,7 @@ msgstr "" msgid "Bulk operations only support up to 500 documents." msgstr "" -#: frappe/model/workflow.py:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "" @@ -3740,16 +3760,6 @@ msgstr "" msgid "CSV" msgstr "" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "تسمية CTA" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3800,11 +3810,6 @@ msgstr "دعوة للعمل" msgid "Call To Action URL" msgstr "عنوان URL للدعوة إلى العمل" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -3822,7 +3827,7 @@ msgid "Camera" msgstr "الة تصوير" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3858,7 +3863,7 @@ msgstr "" msgid "Can not rename as column {0} is already present on DocType." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "" @@ -3882,14 +3887,15 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "إلغاء" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "إلغاء" @@ -3907,16 +3913,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "الغاء جميع الوثائق" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "إلغاء {0} وثائق؟" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -3954,11 +3962,11 @@ msgstr "" msgid "Cannot Remove" msgstr "لا يمكن إزالة" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3966,7 +3974,7 @@ msgstr "" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "لا يمكن الإلغاء قبل الإرسال. انظر الانتقال {0}" @@ -3974,11 +3982,11 @@ msgstr "لا يمكن الإلغاء قبل الإرسال. انظر الانت msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1013 +#: frappe/model/document.py:1017 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -3986,11 +3994,11 @@ msgstr "" msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "لا يمكن تغيير حالة الوثيقة ملغاة ." -#: frappe/core/doctype/doctype/doctype.py:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "" @@ -4002,11 +4010,11 @@ msgstr "لا يمكن إنشاء {0} ضد مستند طفل: {1}" msgid "Cannot create private workspace of other users" msgstr "" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "لا يمكن حذف المجلدات الرئيسية والمرفقات" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "لا يمكن حذف أو إلغاء لأن {0} {1} مرتبط مع {2} {3} {4}" @@ -4041,7 +4049,7 @@ msgstr "" msgid "Cannot delete {0}" msgstr "لا يمكن حذف {0}" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" msgstr "لا يمكن حذف {0} لأن لديها عُقد تابعة" @@ -4049,7 +4057,7 @@ msgstr "لا يمكن حذف {0} لأن لديها عُقد تابعة" msgid "Cannot edit Standard Dashboards" msgstr "" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "لا يمكن تحرير الإشعار القياسي. للتعديل ، يرجى تعطيله وتكراره" @@ -4061,7 +4069,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "لا يمكنك التعديل على التقارير القياسية. يرجى نسخ التقريرالقياسي و التعديل على النسخة الجديدة" -#: frappe/model/document.py:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "لا يمكنك التعديل على وثيقة ملغية" @@ -4069,8 +4077,8 @@ msgstr "لا يمكنك التعديل على وثيقة ملغية" msgid "Cannot edit filters for standard charts" msgstr "لا يمكن تحرير عوامل التصفية للمخططات القياسية" -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "" @@ -4078,27 +4086,27 @@ msgstr "" msgid "Cannot edit standard fields" msgstr "لا تستطيع تعديل الحقول القياسية" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:884 msgid "Cannot have multiple printers mapped to a single print format." msgstr "لا يمكن تعيين طابعات متعددة على تنسيق طباعة واحد." -#: frappe/public/js/frappe/form/grid.js:1132 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "لا يمكن ربط وثيقة إلغاء: {0}" @@ -4110,11 +4118,11 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "لا يمكن مطابقة العمود {0} بأي حقل" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "لا يمكن نقل الصف" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "لا يمكن إزالة معرف الحقل" @@ -4122,7 +4130,7 @@ msgstr "لا يمكن إزالة معرف الحقل" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "" @@ -4139,11 +4147,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "لا يمكن تحديث {0}" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" -msgstr "لا يمكن استخدام طلب البحث الفرعي بالترتيب" +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." +msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4211,15 +4219,6 @@ msgstr "مركز" msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "سلامة السلسلة" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "تسلسل هاش" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4257,7 +4256,7 @@ msgstr "" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
\n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " +"Warning: Incorrectly updating counters can prevent documents from getting created." msgstr "" #. Label of the changed_at (Datetime) field in DocType 'Permission Log' @@ -4327,7 +4326,7 @@ msgstr "مصدر الرسم البياني" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "نوع الرسم البياني" @@ -4360,7 +4359,7 @@ msgstr "الدردشة" msgid "Check" msgstr "التحقق من" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "تحقق من عنوان الرابط المطلوب" @@ -4368,7 +4367,7 @@ msgstr "تحقق من عنوان الرابط المطلوب" msgid "Check columns to select, drag to set order." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "تحقق من سجل الأخطاء لمزيد من المعلومات: {0}" @@ -4409,11 +4408,6 @@ msgstr "سيؤدي التحقق من ذلك إلى نشر الصفحة على م msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "سيؤدي التحقق من هذا إلى إظهار منطقة نصية حيث يمكنك كتابة جافا سكريبت مخصص سيتم تشغيله على هذه الصفحة." -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "إصدار المجموع الاختباري" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "" @@ -4423,17 +4417,17 @@ msgstr "" msgid "Child Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "يتم عرض الجداول الفرعية كشبكة في DocTypes الأخرى" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4462,6 +4456,7 @@ msgid "Choose authentication method to be used by all users" 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 msgid "City" msgstr "مدينة" @@ -4476,7 +4471,7 @@ msgstr "المدينة / البلدة" msgid "Clear" msgstr "واضح" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "" @@ -4488,7 +4483,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4514,7 +4509,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "مسح أذونات المستخدم" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "" @@ -4526,11 +4521,15 @@ msgstr "تاريخ انتهاء المقاصة ، لأنه لا يمكن أن ي msgid "Click On Customize to add your first widget" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "" @@ -4561,24 +4560,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "انقر فوق {0} لإنشاء تحديث الرمز المميز." #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "انقر الجدول لتعديل" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4756,7 +4755,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "انهيار" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "انهيار جميع" @@ -4811,7 +4810,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:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4867,11 +4866,11 @@ msgstr "اسم العمود" msgid "Column Name cannot be empty" msgstr "اسم العمود لا يمكن أن يكون فارغا\\n
\\nColumn Name cannot be empty" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4898,7 +4897,7 @@ msgstr "الأعمدة" msgid "Columns / Fields" msgstr "الأعمدة / الحقول" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "أعمدة بناء على" @@ -4940,16 +4939,6 @@ msgstr "تعليق نوع" msgid "Comment can only be edited by the owner" msgstr "لا يمكن تعديل التعليق إلا بواسطة المالك" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "" @@ -4957,7 +4946,7 @@ msgstr "" #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "تعليقات" @@ -4966,7 +4955,7 @@ msgstr "تعليقات" msgid "Comments and Communications will be associated with this linked document" msgstr "سيتم ربط التعليقات والاتصالات مع هذه الوثيقة مرتبطة" -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "لا يمكن أن تحتوي التعليقات على روابط أو عناوين بريد إلكتروني" @@ -5038,12 +5027,12 @@ msgid "Company Name" msgstr "اسم الشركة" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "" @@ -5123,8 +5112,8 @@ msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5138,6 +5127,11 @@ msgstr "الحالة" msgid "Condition JSON" msgstr "" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5163,11 +5157,11 @@ msgstr "" msgid "Configuration" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "تكوين المخطط" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5192,7 +5186,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "أكد" @@ -5211,7 +5205,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "تأكيد كلمة المرور الجديدة" @@ -5238,7 +5232,7 @@ msgstr "مؤكد" msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "" @@ -5256,8 +5250,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "متصلا علبة QZ!" @@ -5308,6 +5302,10 @@ msgstr "" msgid "Contact" msgstr "اتصال" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
{0}" +msgstr "" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5365,15 +5363,13 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5381,24 +5377,12 @@ msgstr "" msgid "Content" msgstr "محتوى" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "المحتوى (HTML)" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "المحتوى (تخفيض السعر)" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "تجزئة المحتوى" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "نوع المحتوى" @@ -5466,7 +5450,7 @@ msgstr "" msgid "Copy embed code" msgstr "" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "" @@ -5474,12 +5458,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "" + #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" msgstr "حق النشر" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "لا يمكن تخصيص DocTypes الأساسية." @@ -5487,7 +5475,7 @@ msgstr "لا يمكن تخصيص DocTypes الأساسية." msgid "Core Modules {0} cannot be searched in Global Search." msgstr "لا يمكن البحث عن الوحدات الأساسية {0} في البحث العالمي." -#: frappe/printing/page/print/print.js:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "" @@ -5495,7 +5483,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "لا يمكن الاتصال بخادم البريد الإلكتروني المنتهية ولايته" -#: frappe/model/document.py:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "لا يمكن أن تجد {0}" @@ -5503,15 +5491,15 @@ msgstr "لا يمكن أن تجد {0}" msgid "Could not map column {0} to field {1}" msgstr "تعذر تعيين العمود {0} للحقل {1}" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " +msgid "Could not start up:" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "تعذر الحفظ ، يرجى التحقق من البيانات التي أدخلتها" @@ -5556,13 +5544,14 @@ msgstr "عداد" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "الدولة" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "" @@ -5594,13 +5583,13 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "انشاء" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5614,7 +5603,7 @@ msgid "Create Card" msgstr "إنشاء بطاقة" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "إنشاء مخطط" @@ -5648,12 +5637,12 @@ msgstr "إنشاء سجل" msgid "Create New" msgstr "انشاء جديد" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "انشاء جديد" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5661,7 +5650,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "انشاء بريد إلكتروني" @@ -5673,7 +5662,7 @@ msgstr "" msgid "Create a Reminder" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "" @@ -5681,11 +5670,11 @@ msgstr "" msgid "Create a new record" msgstr "إنشاء سجل جديد" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "انشاء جديد {0}" @@ -5701,7 +5690,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "قم بإنشاء أول {0}" @@ -5711,7 +5700,7 @@ msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "أنشأ" @@ -5727,7 +5716,7 @@ msgstr "" msgid "Created By" msgstr "منشئه بواسطه" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "إنشاء الحقل المخصص {0} في {1}" @@ -5739,7 +5728,7 @@ msgstr "إنشاء الحقل المخصص {0} في {1}" msgid "Created On" msgstr "منشئه في" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "إنشاء {0}" @@ -6048,7 +6037,7 @@ msgstr "" #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "مخصص" @@ -6076,14 +6065,14 @@ msgstr "التخصيصات إعادة تعيين" msgid "Customizations for {0} exported to:
{1}" msgstr "تم تصدير التخصيصات ل {0} إلى:
{1}" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "تخصيص" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "تخصيص" @@ -6102,7 +6091,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "تخصيص نموذج" @@ -6180,7 +6169,7 @@ msgstr "يوميا" msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "يتم إرسال ملخص الأحداث اليومي لأحداث التقويم المطلوب لها تذكير" -#: frappe/desk/doctype/event/event.py:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "يجب أن تنتهي الأحداث اليومية في نفس اليوم." @@ -6227,7 +6216,7 @@ msgstr "" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "لوحة القيادة" @@ -6286,7 +6275,6 @@ msgstr "لوحات" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6299,7 +6287,6 @@ msgstr "لوحات" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6335,7 +6322,7 @@ msgstr "" msgid "Data Import Template" msgstr "قالب ادخال البيانات" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "البيانات طويلة جدًا" @@ -6366,7 +6353,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6504,11 +6491,11 @@ msgstr "عزيزي {0}" msgid "Debug Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "" @@ -6670,11 +6657,11 @@ msgstr "" msgid "Default display currency" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "يجب أن يكون الإعداد الافتراضي لنوع حقل "التحقق" {0} إما "0" أو "1"" -#: frappe/core/doctype/doctype/doctype.py:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 msgid "Default value for {0} must be in the list of options." msgstr "يجب أن تكون القيمة الافتراضية لـ {0} في قائمة الخيارات." @@ -6708,6 +6695,12 @@ msgstr "" msgid "Defines actions on states and the next step and allowed roles." msgstr "" +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6725,22 +6718,27 @@ 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/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "حذف" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "حذف" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "حذف" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "" @@ -6749,6 +6747,12 @@ msgstr "" 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 +msgid "Delete Background Exported Reports After (Hours)" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6758,7 +6762,7 @@ msgstr "" msgid "Delete Data" msgstr "حذف البيانات" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6772,7 +6776,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6781,7 +6785,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "حذف التعليق؟" @@ -6814,12 +6818,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "احذف هذا السجل للسماح بالإرسال إلى عنوان البريد الإلكتروني هذا" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "حذف {0} العناصر نهائيا؟" @@ -6855,11 +6859,15 @@ msgstr "المستندات المحذوفة" msgid "Deleted Name" msgstr "الاسم المحذوف" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "حذف!" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "حذف {0}" @@ -6874,7 +6882,7 @@ msgstr "" #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " +msgid "Deletion Steps" msgstr "" #: frappe/core/doctype/page/page.py:110 @@ -6891,7 +6899,7 @@ msgstr "" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "" @@ -6918,7 +6926,7 @@ msgstr "قسم" msgid "Dependencies" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "" @@ -6953,7 +6961,6 @@ msgstr "" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -6974,7 +6981,6 @@ msgstr "" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -6984,11 +6990,6 @@ msgstr "" msgid "Description" msgstr "وصف" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "وصف لصفحة القائمة ، بنص عادي ، سطرين فقط. (بحد أقصى 200 حرف)" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -7072,7 +7073,7 @@ msgstr "رمز سطح المكتب موجود بالفعل" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "تفاصيل" @@ -7133,11 +7134,6 @@ msgstr "" msgid "Disable Comment Count" msgstr "" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "تعطيل التعليقات" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7155,11 +7151,6 @@ msgstr "تعطيل العد" msgid "Disable Document Sharing" msgstr "" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "تعطيل تقرير" @@ -7169,6 +7160,11 @@ msgstr "تعطيل تقرير" msgid "Disable SMTP server authentication" msgstr "تعطيل مصادقة خادم SMTP" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7214,7 +7210,6 @@ msgstr "" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7229,7 +7224,6 @@ msgstr "" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "معطل" @@ -7240,7 +7234,7 @@ msgstr "الرد التلقائي معطل" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "تجاهل" @@ -7258,7 +7252,7 @@ msgstr "تجاهل" msgid "Discard {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "" @@ -7281,7 +7275,7 @@ msgstr "" msgid "Discussion Topic" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7317,19 +7311,23 @@ msgstr "" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " +msgid "Do Not Create New User" msgstr "" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "لا تقم بتحرير الرؤوس التي يتم ضبطها مسبقا في القالب" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7420,7 +7418,7 @@ msgstr "" msgid "DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1577 +#: frappe/core/doctype/doctype/doctype.py:1578 msgid "DocType {0} provided for the field {1} must have atleast one Link field" msgstr "يجب أن يحتوي DocType {0} المتوفر للحقل {1} على حقل ارتباط واحد على الأقل" @@ -7467,11 +7465,11 @@ msgstr "" msgid "DocType View" msgstr "طريقة عرض DocType" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "لا يمكن دمج DOCTYPE" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "DOCTYPE لا يمكن تسميتها من قبل المسؤول" @@ -7480,7 +7478,7 @@ msgstr "DOCTYPE لا يمكن تسميتها من قبل المسؤول" msgid "DocType is a Table / Form in the application." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "يجب تقديم دوكتيب للحدث دوك المحدد" @@ -7513,7 +7511,7 @@ msgstr "" msgid "DocType {} not found" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "يجب ألا يبدأ اسم DocType أو ينتهي بمسافة" @@ -7527,7 +7525,7 @@ msgstr "" msgid "Doctype" msgstr "DOCTYPE" -#: frappe/core/doctype/doctype/doctype.py:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "" @@ -7589,31 +7587,29 @@ msgstr "" msgid "Document Links" msgstr "روابط الوثيقة" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7755,13 +7751,13 @@ msgstr "عنوان المستند" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "نوع الوثيقة" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 msgid "Document Type and Function are required to create a number card" msgstr "" @@ -7798,7 +7794,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "" @@ -7806,15 +7802,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "" @@ -7956,13 +7952,13 @@ msgstr "الدونات" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "تحميل" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "تحميل" @@ -7989,7 +7985,7 @@ msgstr "رابط التحميل" msgid "Download PDF" msgstr "تحميل PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "تحميل التقرير" @@ -8052,7 +8048,7 @@ msgstr "" msgid "Drag to add state" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "" @@ -8085,7 +8081,7 @@ msgstr "" msgid "Duplicate Filter Name" msgstr "تكرار اسم الفلتر" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "اسم مكرر" @@ -8184,17 +8180,17 @@ msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8202,7 +8198,7 @@ msgstr "" msgid "Edit" msgstr "تصحيح" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "تصحيح" @@ -8212,7 +8208,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "تصحيح" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "تصحيح" @@ -8241,7 +8237,7 @@ msgstr "تحرير مخصص HTML" msgid "Edit DocType" msgstr "تعديل القائمة" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "تعديل القائمة" @@ -8259,7 +8255,7 @@ msgstr "" msgid "Edit Footer" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "تحرير تنسيق" @@ -8344,7 +8340,7 @@ msgstr "" msgid "Edit to add content" msgstr "تعديل لإضافة محتوى" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "" @@ -8353,7 +8349,7 @@ msgstr "" msgid "Edit your workflow visually using the Workflow Builder." msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "تحرير {0}" @@ -8361,7 +8357,7 @@ msgstr "تحرير {0}" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "قابلة للتعديل Grid" @@ -8400,11 +8396,14 @@ msgstr "" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8413,6 +8412,7 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8422,6 +8422,8 @@ msgstr "" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "البريد الإلكتروني" @@ -8453,7 +8455,7 @@ msgstr "" msgid "Email Account Name" msgstr "البريد الإلكتروني اسم الحساب" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "تمت إضافة حساب البريد الإلكتروني عدة مرات" @@ -8541,6 +8543,7 @@ msgid "Email IDs" msgstr "البريد الإلكتروني معرفات" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "البريد الإلكتروني" @@ -8584,10 +8587,10 @@ msgstr "" msgid "Email Rule" msgstr "البريد الإلكتروني القاعدة" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" -msgstr "إرسال البريد الإلكتروني" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" +msgstr "أرسل البريد الإلكتروني إلى" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType @@ -8652,11 +8655,11 @@ msgstr "تم وضع علامة على البريد الإلكتروني كغير msgid "Email has been moved to trash" msgstr "تم نقل البريد الإلكتروني إلى المهملات" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "البريد الإلكتروني لا يرسل إلى {0} (غير مشترك / غيرمفعل)" @@ -8695,7 +8698,7 @@ msgstr "سيتم إرسال رسائل البريد الإلكتروني مع إ msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8703,7 +8706,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -8722,7 +8725,7 @@ msgstr "تمكين" msgid "Enable Address Autocompletion" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "تمكين السماح للتكرار التلقائي للنمط {0} في تخصيص النموذج" @@ -8748,11 +8751,6 @@ msgstr "تمكين تعليقات" msgid "Enable Dynamic Client Registration" msgstr "" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -8846,11 +8844,6 @@ msgstr "تمكين الأمن" msgid "Enable Social Login" msgstr "تمكين تسجيل الدخول الاجتماعي" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "تمكين المشاركة الاجتماعية" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "تمكين تتبع مشاهدات الصفحة" @@ -8858,7 +8851,7 @@ msgstr "تمكين تتبع مشاهدات الصفحة" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "تمكين اثنين من عامل المصادقة" @@ -8870,12 +8863,6 @@ msgstr "" msgid "Enable developer mode to create a standard Web Template" msgstr "قم بتمكين وضع المطور لإنشاء قالب ويب قياسي" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "" - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -8898,6 +8885,7 @@ msgstr "" #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -8910,6 +8898,7 @@ msgstr "" #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "تمكين" @@ -8935,14 +8924,10 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "" - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." msgstr "" #. Description of the 'Queue in Background (BETA)' (Check) field in DocType @@ -8959,11 +8944,11 @@ msgstr "" msgid "Encrypt Backups" msgstr "" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "" @@ -8975,7 +8960,7 @@ msgstr "" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -8991,6 +8976,10 @@ msgstr "حقل تاريخ الانتهاء" msgid "End Date cannot be before Start Date!" msgstr "لا يمكن أن يكون تاريخ الانتهاء قبل تاريخ البدء!" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9035,7 +9024,7 @@ msgstr "أدخل معرف العميل وسر العميل في إعدادات G msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "أدخل البريد الإلكتروني المستلم" @@ -9105,10 +9094,17 @@ msgstr "تساوي" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9118,7 +9114,7 @@ msgstr "تساوي" msgid "Error" msgstr "خطأ" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "خطأ" @@ -9138,7 +9134,7 @@ msgstr "" msgid "Error Message" msgstr "رسالة خطأ" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 msgid "Error connecting to QZ Tray Application...

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

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

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

انقر هنا لتنزيل وتثبيت QZ Tray .
انقر هنا لمعرفة المزيد عن الطباعة الخام ." @@ -9166,9 +9162,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "خطأ في الإخطار" @@ -9188,19 +9184,19 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "حدث خطأ أثناء الاتصال بحساب البريد الإلكتروني {0}" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "خطأ أثناء تقييم الإشعار {0}. يرجى تصحيح القالب الخاص بك." -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "خطأ: قيمة مفقودة ل {0}: {1}" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "" @@ -9257,7 +9253,7 @@ msgstr "نوع الحدث" msgid "Events" msgstr "" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "الأحداث في التقويم اليوم" @@ -9341,7 +9337,7 @@ msgstr "نفذ - اعدم" msgid "Execute Console script" msgstr "تنفيذ البرنامج النصي لوحدة التحكم" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "" @@ -9349,7 +9345,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "وقت التنفيذ: {0} ثانية" @@ -9375,12 +9371,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "وسعت" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "توسيع الكل" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9408,7 +9404,9 @@ msgid "Expire Notification On" msgstr "تنتهي الإعلام على" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "انتهى" @@ -9436,13 +9434,13 @@ msgstr "وقت انتهاء صلاحية رمز الاستجابة السريع #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "تصدير" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "تصدير" @@ -9479,7 +9477,7 @@ msgstr "تصدير من" msgid "Export Import Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "تصدير التقرير: {0}" @@ -9488,11 +9486,11 @@ msgstr "تصدير التقرير: {0}" msgid "Export Type" msgstr "نوع التصدير" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "" @@ -9500,6 +9498,10 @@ msgstr "" msgid "Export as zip" msgstr "" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "الصادرات غير مسموح به. تحتاج {0} صلاحية التصدير." @@ -9605,7 +9607,7 @@ msgstr "" msgid "Failed Logins (Last 30 days)" msgstr "" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "المعاملات الفاشلة" @@ -9622,7 +9624,7 @@ msgstr "فشل تغيير كلمة المرور." msgid "Failed to complete setup" msgstr "فشل في إكمال الإعداد" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "" @@ -9631,15 +9633,15 @@ msgstr "" msgid "Failed to connect to server" msgstr "فشل الاتصال بالخادم" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "فشل فك الرمز المميز ، يرجى تقديم رمز مميز صالح بترميز base64." -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "" @@ -9647,8 +9649,8 @@ msgstr "" msgid "Failed to enable scheduler: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "" @@ -9664,7 +9666,7 @@ msgstr "" msgid "Failed to generate preview of series" msgstr "" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "" @@ -9684,11 +9686,11 @@ msgstr "" msgid "Failed to optimize image: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "" @@ -9738,12 +9740,6 @@ msgstr "أيقونة المفضلة" msgid "Fax" msgstr "فاكس" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "متميز" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "" @@ -9801,17 +9797,17 @@ msgstr "جلب مستندات البحث العالمي الافتراضية." #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "حقل" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" msgstr "حقل "الطريق" إلزامي للويب المشاهدات" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "" @@ -9824,7 +9820,7 @@ msgstr "حقل \"قيمة\" إلزامي. يرجى تحديد قيمة ليتم msgid "Field Description" msgstr "وصف الحقل" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9854,7 +9850,7 @@ msgstr "" msgid "Field Type" msgstr "نوع الحقل" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "" @@ -9880,11 +9876,11 @@ msgstr "" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "" -#: frappe/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "الحقل {0} غير موجود." -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9902,20 +9898,20 @@ 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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "اسم الحقل" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "اسم الحقل محدد ب 64 حرف
Fieldname is limited to 64 characters ({0})" @@ -9931,15 +9927,15 @@ msgstr "أسم الحقل الذي سيكون DOCTYPE لهذا الحقل الا msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "FIELDNAME {0} لا يمكن أن يكون أحرف خاصة مثل {1}" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "أسم الحقل {0} متعارض مع الكلمات الدلائلية" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "اسم الحقل {0} مقيد" @@ -9962,7 +9958,7 @@ msgstr "اسم الحقل {0} مقيد" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -9975,7 +9971,7 @@ msgstr "الحقول" msgid "Fields Multicheck" msgstr "الحقول متعددة" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "" @@ -9983,7 +9979,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10011,7 +10007,7 @@ msgstr "نوع الحقل" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "لا يمكن تغيير نوع الحقل من {0} إلى {1} في الصف {2}" @@ -10024,7 +10020,7 @@ msgstr "لا يمكن تغيير نوع الحقل من {0} إلى {1} في ال msgid "File" msgstr "ملف" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "" @@ -10077,7 +10073,7 @@ msgstr "ملف URL" msgid "File backup is ready" msgstr "ملف النسخ الاحتياطي جاهز" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "لا يمكن أن يحتوي اسم الملف على {0}" @@ -10085,7 +10081,7 @@ msgstr "لا يمكن أن يحتوي اسم الملف على {0}" msgid "File not attached" msgstr "الملف غير مرفق" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "تجاوز حجم الملف الحد الأقصى المسموح به لحجم {0} ميغابايت" @@ -10094,11 +10090,11 @@ msgstr "تجاوز حجم الملف الحد الأقصى المسموح به msgid "File too big" msgstr "الملف كبير جدا" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "الملف {0} غير موجود" @@ -10112,10 +10108,10 @@ msgstr "الملفات" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10152,11 +10148,11 @@ msgstr "اسم الفلتر" msgid "Filter Values" msgstr "قيم التصفية" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10174,7 +10170,6 @@ msgstr "" msgid "Filtered Records" msgstr "السجلات التي تمت تصفيتها" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "تمت تصفيتها من قبل "{0}"" @@ -10189,7 +10184,9 @@ msgstr "تمت تصفيتها من قبل "{0}"" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10211,6 +10208,11 @@ msgstr "تكوين المرشحات" msgid "Filters Display" msgstr "عرض المرشحات" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10223,11 +10225,11 @@ msgstr "مرشحات JSON" msgid "Filters Section" msgstr "قسم المرشحات" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "المرشحات المطبقة على {0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "مرشحات حفظ" @@ -10240,18 +10242,18 @@ msgstr "يمكن الوصول إلى filters عبر filters" msgstr "" @@ -10563,8 +10565,8 @@ msgstr "للمستخدم" msgid "For Value" msgstr "للقيمة" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 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)." @@ -10590,12 +10592,6 @@ msgstr "على سبيل المثال: {} فتح" msgid "For help see Client Script API and Examples" msgstr "للحصول على المساعدة ، راجع أمثلة و API Script" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "لمزيد من المعلومات ، انقر هنا ." - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "لمزيد من المعلومات ، {0}." @@ -10610,7 +10606,7 @@ msgstr "" msgid "For updating, you can update only selective columns." msgstr "لتحديث، يمكنك تحديث الأعمدة انتقائية فقط." -#: frappe/core/doctype/doctype/doctype.py:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "ل {0} في {1} مستوى في {2} في {3} الصف" @@ -10665,7 +10661,7 @@ 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:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "" @@ -10725,6 +10721,11 @@ msgstr "شكل" msgid "Format Data" msgstr "تنسيق البيانات" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "مرة كل اسبوعين" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "إلى الأمام" @@ -10752,7 +10753,15 @@ msgstr "جزء الوحدات" msgid "Frappe" msgstr "فرابي" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "الإطار فرابي" @@ -10841,7 +10850,7 @@ msgstr "من تاريخ" msgid "From Date Field" msgstr "من حقل التاريخ" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "من نوع المستند" @@ -10868,18 +10877,16 @@ msgstr "ممتلئ" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "الاسم الكامل" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "صفحة كاملة" @@ -10905,13 +10912,13 @@ msgstr "وظيفة على أساس" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" -msgstr "العقد الإضافية التي يمكن أن تنشأ إلا في ظل العقد نوع ' المجموعة '" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -10970,7 +10977,7 @@ msgstr "عام" msgid "Generate Keys" msgstr "توليد مفاتيح" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "توليد تقرير جديد" @@ -10978,8 +10985,14 @@ msgstr "توليد تقرير جديد" msgid "Generate Random Password" msgstr "" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "" @@ -11002,7 +11015,7 @@ msgstr "تحديد الموقع الجغرافي" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "الحصول على تنبيهات لهذا اليوم" @@ -11138,7 +11151,7 @@ msgid "Go to this URL after completing the form" msgstr "" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "اذهب إلى {0}" @@ -11186,10 +11199,6 @@ msgstr "" msgid "Google Calendar" msgstr "تقويم جوجل" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}" -msgstr "" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "تقويم Google - تعذر إنشاء تقويم لـ {0} ، رمز الخطأ {1}." @@ -11308,11 +11317,6 @@ msgstr "عنوان URL الخاص بجداول بيانات Google غير صال msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "يجب أن ينتهي عنوان URL الخاص بجداول بيانات Google بـ "gid = {number}". انسخ والصق عنوان URL من شريط عنوان المتصفح وحاول مرة أخرى." -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "معاينة Google Snippet" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11389,14 +11393,10 @@ msgstr "مجموعة حسب النوع" msgid "Group By field is required to create a dashboard chart" msgstr "حقل تجميع حسب مطلوب لإنشاء مخطط لوحة القيادة" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "عقدة المجموعة" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11446,7 +11446,6 @@ msgstr "HH: MM: SS" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11457,9 +11456,8 @@ msgstr "HH: MM: SS" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11563,7 +11561,7 @@ msgstr "العنوان الرأسي" msgid "Header HTML" msgstr "رأس HTML" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "تعيين HTML رأس من المرفق {0}" @@ -11621,6 +11619,12 @@ msgstr "خريطة الحرارة" msgid "Hello" msgstr "" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "مرحبًا," + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11686,7 +11690,7 @@ msgstr "هلفتيكا" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "" @@ -11722,7 +11726,7 @@ msgstr "مخفي" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11755,11 +11759,6 @@ msgstr "إخفاء الحدود" msgid "Hide Buttons" msgstr "" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "إخفاء CTA" - #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json @@ -11839,7 +11838,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "إخفاء القائمة الرئيسية" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -11853,7 +11852,7 @@ msgstr "إخفاء عطلة نهاية الأسبوع" msgid "Hide descendant records of For Value." msgstr "" -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "إخفاء التفاصيل" @@ -11902,11 +11901,8 @@ 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:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -11994,16 +11990,16 @@ msgstr "" #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "هوية شخصية" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "هوية شخصية" @@ -12099,9 +12095,9 @@ msgstr "إذا تم تحديد تطبيق تصريح المستخدم الصار msgid "If Checked workflow status will not override status in list view" msgstr "إذا ووضع العمل تم الفحص لا تجاوز الوضع في عرض القائمة" -#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "إذا المالك" @@ -12229,6 +12225,10 @@ msgstr "إذا كان المستخدم لديه أي دور تم اختياره msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12260,7 +12260,11 @@ msgstr "إذا كنت تحميل سجلات جديدة، \"تسمية السلس msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "إذا كنت تحميل سجلات جديدة، وترك \"اسم\" (ID) العمود فارغا." -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "" @@ -12317,12 +12321,12 @@ msgstr "تجاهل إرفاق ملفات أكثر من هذا الحجم" msgid "Ignored Apps" msgstr "التطبيقات التي تم تجاهلها" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "حالة المستند غير القانوني لـ {0}" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "استعلام SQL غير قانوني" @@ -12383,11 +12387,11 @@ msgstr "عرض الصورة" msgid "Image Width" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 msgid "Image field must be a valid fieldname" msgstr "يجب أن يكون حقل الصورة اسم حقل صالحا" -#: frappe/core/doctype/doctype/doctype.py:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "يجب أن يكون حقل الصورة من النوع إرفاق صورة" @@ -12409,15 +12413,15 @@ msgstr "صور" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "" @@ -12443,7 +12447,7 @@ msgstr "ضمني" msgid "Import" msgstr "استيراد" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "استيراد" @@ -12671,15 +12675,16 @@ msgstr "تضمين سمة من التطبيقات" msgid "Include Web View Link in Email" msgstr "إرسال ارتباط عرض الويب للمستند بالبريد الإلكتروني" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "تشمل المسافة البادئة" @@ -12726,7 +12731,7 @@ msgstr "حساب البريد الإلكتروني الوارد غير صحيح" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "تفاصيل تسجيل الدخول غير مكتملة" @@ -12738,7 +12743,7 @@ msgstr "التكوين غير الصحيح" msgid "Incorrect URL" msgstr "URL غير صحيح" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "مستخدم غير صحيح أو كلمة مرور" @@ -12746,11 +12751,11 @@ msgstr "مستخدم غير صحيح أو كلمة مرور" msgid "Incorrect Verification code" msgstr "رمز التحقق غير صحيح" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "" @@ -12762,7 +12767,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "مؤشر" @@ -12837,7 +12842,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "إدراج بعد" @@ -12853,7 +12858,7 @@ msgstr "إدراج بعد الحقل '{0}' المذكورة في الحقل ال msgid "Insert Below" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "إدراج عمود قبل {0}" @@ -12871,8 +12876,12 @@ msgstr "أدخل سجلات جديدة" msgid "Insert Style" msgstr "إدراج نمط" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "" @@ -12889,7 +12898,7 @@ msgid "Installed Applications" msgstr "التطبيقات المثبتة" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "" @@ -12906,19 +12915,19 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "عدم كفاية الإذن {0}" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" msgstr "" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "" @@ -13022,9 +13031,9 @@ msgid "Invalid" msgstr "غير صالحة" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "تعبير "under_on" غير صالح" @@ -13032,7 +13041,7 @@ msgstr "تعبير "under_on" غير صالح" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "تم تعيين تعبير "يعتمد على" غير صالح في عامل التصفية {0}" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "" @@ -13048,7 +13057,7 @@ msgstr "تنسيق CSV غير صالح" msgid "Invalid Code. Please try again." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "" @@ -13068,16 +13077,20 @@ msgstr "" msgid "Invalid DocType: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13109,7 +13122,7 @@ msgstr "" msgid "Invalid Mail Server. Please rectify and try again." msgstr "خادم البريد غير صالحة . يرجى تصحيح و حاول مرة أخرى." -#: frappe/model/naming.py:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "" @@ -13118,8 +13131,8 @@ msgstr "" msgid "Invalid Operation" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "خيار غير صالح" @@ -13131,25 +13144,25 @@ msgstr "" msgid "Invalid Output Format" msgstr "تنسيق الإخراج غير صالح" -#: frappe/model/base_document.py:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "رمز مرور خاطئ" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "طلب غير صالح" @@ -13158,7 +13171,7 @@ msgstr "طلب غير صالح" msgid "Invalid Search Field {0}" msgstr "حقل البحث غير صالح {0}" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "" @@ -13166,8 +13179,8 @@ msgstr "" msgid "Invalid Transition" msgstr "" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13181,47 +13194,51 @@ msgstr "اسم المستخدم غير صحيح أو كلمة المرور ال msgid "Invalid Values" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "عمود غير صالح" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "" @@ -13233,31 +13250,27 @@ msgstr "تم تعيين تعبير غير صالح في عامل التصفية msgid "Invalid expression set in filter {0} ({1})" msgstr "تم تعيين تعبير غير صالح في عامل التصفية {0} ({1})" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "اسم الحقل غير صالح {0}" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "اسم الحقل غير صالح '{0}' في الااسم تلقائي" @@ -13265,11 +13278,11 @@ msgstr "اسم الحقل غير صالح '{0}' في الااسم تلقائي" msgid "Invalid file path: {0}" msgstr "مسار الملف غير صالح: {0}" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13277,20 +13290,28 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "مرشح غير صالح: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "تمت إضافة json غير صالح في الخيارات المخصصة: {0}" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "" @@ -13298,6 +13319,10 @@ msgstr "" msgid "Invalid naming series {}: dot (.) missing" msgstr "" +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "محتوى غير صالح أو تالف للاستيراد" @@ -13306,19 +13331,27 @@ msgstr "محتوى غير صالح أو تالف للاستيراد" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13326,7 +13359,7 @@ msgstr "" msgid "Invalid template file for import" msgstr "ملف نموذج غير صالح للاستيراد" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "" @@ -13335,20 +13368,20 @@ msgstr "" msgid "Invalid username or password" msgstr "خطأ في اسم المستخدم أو كلمة مرور" -#: frappe/model/naming.py:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "حالة {0} غير صالحة" @@ -13357,10 +13390,47 @@ msgstr "حالة {0} غير صالحة" msgid "Inverse" msgstr "معكوس" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "دعوة كمستخدم" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "هل" @@ -13385,7 +13455,7 @@ msgstr "" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "هو الجدول التابع" @@ -13438,6 +13508,10 @@ msgstr "هو مجلد" msgid "Is Global" msgstr "هو عالمي" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "هل مجموعة" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13464,8 +13538,13 @@ msgstr "هو الدولة اختياري" msgid "Is Primary" msgstr "هو الابتدائية" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 msgid "Is Primary Contact" msgstr "هو جهة الاتصال الرئيسية" @@ -13496,7 +13575,7 @@ msgstr "عام" msgid "Is Published Field" msgstr "ونشرت الميدان" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "\"تم نشر\" الحقل يجب أن يكون اسم حقل صالح" @@ -13521,7 +13600,7 @@ msgstr "" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "مفردة" @@ -13557,7 +13636,7 @@ msgstr "هو معيار" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "يستطيع الاعتماد" @@ -13763,11 +13842,11 @@ msgstr "عمود لوح كانبان" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "اسم لوح كانبان" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13788,12 +13867,14 @@ msgstr "" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -14055,7 +14136,7 @@ msgstr "التسمية إلزامية" msgid "Landing Page" msgstr "الصفحة المقصودة" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "المناظر الطبيعيه" @@ -14063,10 +14144,13 @@ msgstr "المناظر الطبيعيه" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "اللغة" @@ -14154,8 +14238,12 @@ msgstr "الشهر الماضي" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "اسم العائلة" @@ -14170,6 +14258,11 @@ msgstr "تاريخ إعادة تعيين كلمة المرور الأخيرة" msgid "Last Quarter" msgstr "الربع الأخير" +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" + #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json @@ -14186,11 +14279,6 @@ msgstr "" msgid "Last Sync On" msgstr "آخر مزامنة تشغيل" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14301,7 +14389,7 @@ msgstr "طول" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "يجب أن يكون طول {0} بين 1 و 1000" @@ -14350,8 +14438,8 @@ 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:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14379,7 +14467,7 @@ msgstr "اسم ترئيس الرسالة" msgid "Letter Head Scripts" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "" @@ -14396,7 +14484,7 @@ msgstr "ترئيس الرسالة كصيغة HTML" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "المستوى" @@ -14446,20 +14534,6 @@ msgstr "" msgid "Like" msgstr "مثل" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "الحد الأقصى للإعجابات" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "أحب" @@ -14500,6 +14574,7 @@ msgstr "خط" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14513,6 +14588,7 @@ msgstr "خط" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "حلقة الوصل" @@ -14643,10 +14719,15 @@ msgstr "مرتبط" msgid "Linked With" msgstr "ترتبط" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +msgstr "" + #. Label of the links (Table) field in DocType 'Address' #. Label of the links (Table) field in DocType 'Contact' #. Label of the links_section (Tab Break) field in DocType 'DocType' #. Label of the links (Table) field in DocType 'Customize Form' +#. Label of the links (Table) field in DocType 'Event' #. Label of the links (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14654,6 +14735,7 @@ msgstr "ترتبط" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "الروابط" @@ -14695,7 +14777,7 @@ msgstr "تصفية القائمة" msgid "List Settings" msgstr "إعدادات القائمة" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "إعدادات القائمة" @@ -14736,7 +14818,7 @@ msgstr "" msgid "List setting message" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "" @@ -14745,9 +14827,8 @@ msgstr "" msgid "Load Balancing" msgstr "تحميل موازنة" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "تحميل المزيد" @@ -14764,10 +14845,10 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "تحميل" @@ -14779,7 +14860,7 @@ msgstr "" msgid "Loading import file..." msgstr "جارٍ تحميل ملف الاستيراد ..." -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "" @@ -14789,7 +14870,7 @@ msgstr "" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "تحميل ..." @@ -14850,7 +14931,7 @@ msgstr "تسجيل الدخول للوصول إلى هذه الصفحة." msgid "Log out" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "تسجيل الخروج" @@ -14910,7 +14991,7 @@ msgstr "تسجيل الدخول رمز التحقق من {}" msgid "Login and view in Browser" msgstr "تسجيل الدخول وعرض في المتصفح" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -14918,7 +14999,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "تسجيل الدخول غير مسموح في هذا الوقت" @@ -14971,7 +15052,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -14990,7 +15071,7 @@ msgstr "" msgid "Logout" msgstr "خروج" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "تسجيل الخروج من جميع الجلسات" @@ -15094,7 +15175,10 @@ msgid "Major" 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 +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "اجعل \"الاسم\" قابلا للبحث في البحث العالمي" @@ -15170,7 +15254,7 @@ msgstr "إلزامي يعتمد على" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "معلومات إلزامية مفقود:" @@ -15182,15 +15266,15 @@ msgstr "الحقل إلزامي :تعيين الدور ل\\n
\\nMandatory fie msgid "Mandatory field: {0}" msgstr "حقل إلزامي: {0}" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "الحقول الالزامية في جدول {0} صف رقم {1} مطلوبة" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "الحقول الإلزامية المطلوبة في {0}" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "" @@ -15271,10 +15355,8 @@ msgid "Mark as Unread" msgstr "حدده كغير مقروء" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15355,7 +15437,13 @@ msgstr "" msgid "Max auto email report per user" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "عرض ماكس لنوع العملة هو 100px في الصف {0}" @@ -15364,20 +15452,15 @@ msgstr "عرض ماكس لنوع العملة هو 100px في الصف {0}" msgid "Maximum" msgstr "أقصى" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "" -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "أقصى عدد من الحقول" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "" -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "الحد الأقصى {0} الصفوف المسموح" @@ -15393,7 +15476,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15406,7 +15489,7 @@ msgstr "متوسط" msgid "Meeting" msgstr "لقاء" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "" @@ -15447,7 +15530,7 @@ msgstr "الخيارات" msgid "Merge with existing" msgstr "دمج مع الحالي" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "الدمج مسموح فقط بين مجموعة ومجموعة أو فرع وفرع
Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" @@ -15473,7 +15556,7 @@ msgstr "الدمج مسموح فقط بين مجموعة ومجموعة أو ف #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15513,7 +15596,7 @@ msgstr "تم ارسال الرسالة" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "رسالة قص" @@ -15545,29 +15628,21 @@ msgstr "" msgid "Meta" msgstr "" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "ميتا الوصف" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "صورة ميتا" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "العلامات الفوقية" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "عنوان الفوقية" @@ -15620,7 +15695,7 @@ msgstr "طريقة" msgid "Method Not Allowed" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "" @@ -15636,6 +15711,11 @@ msgstr "" msgid "Middle Name" msgstr "الاسم الأوسط" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15702,11 +15782,11 @@ msgstr "" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "حقول مفقودة" @@ -15742,15 +15822,16 @@ msgstr "" msgid "Mobile No" msgstr "رقم الجوال" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "رقم الهاتف المحمول" + #. Label of the modal_trigger (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Modal Trigger" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "عدل من قبل" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15771,7 +15852,7 @@ msgstr "عدل من قبل" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -15947,10 +16028,12 @@ msgstr "المزيد من المعلومات" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "المزيد من المعلومات" @@ -15969,7 +16052,7 @@ msgstr "المزيد من المحتوى لأسفل الصفحة." msgid "Most Used" msgstr "الأكثر استخداما" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "" @@ -15980,7 +16063,7 @@ msgstr "" msgid "Move" msgstr "حرك" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "الانتقال إلى" @@ -16016,7 +16099,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "الانتقال إلى رقم الصف" @@ -16043,7 +16126,7 @@ msgstr "" msgid "Ms" msgstr "" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "العقد الجذرية متعددة غير مسموح به." @@ -16066,7 +16149,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "يجب أن يكون من نوع "إرفاق صورة"" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "يجب أن يكون لديك إذن تقارير للوصول إلى هذا التقرير." @@ -16084,7 +16167,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16122,9 +16205,9 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16134,11 +16217,11 @@ msgstr "اسم" msgid "Name (Doc Name)" msgstr "" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "الإسم لا يمكن أن يحتوي على أحرف خاصة مثل {0}" @@ -16150,7 +16233,7 @@ msgstr "اسم نوع الوثيقة (DOCTYPE) تريد هذا الحقل لتك msgid "Name of the new Print Format" msgstr "اسم الشكل الجديد طباعة" -#: frappe/model/naming.py:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "اسم {0} لا يمكن أن يكون {1}" @@ -16189,7 +16272,7 @@ msgstr "" msgid "Naming Series" msgstr "سلسلة التسمية" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "تسمية سلسلة إلزامية" @@ -16226,12 +16309,12 @@ msgstr "قالب نافبار" msgid "Navbar Template Values" msgstr "قيم قالب نافبار" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "انتقل القائمة لأسفل" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "انتقل القائمة لأعلى" @@ -16246,7 +16329,11 @@ msgstr "" msgid "Navigation Settings" msgstr "" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16254,7 +16341,7 @@ msgstr "" msgid "Negative Value" msgstr "قيمة سالبة" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16267,6 +16354,12 @@ msgstr "خطأ مجموعة متداخلة . يرجى الاتصال بمدير msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +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 @@ -16275,7 +16368,7 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16296,10 +16389,6 @@ msgstr "" msgid "New Chart" msgstr "" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "تعليق جديد على {0}: {1}" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "" @@ -16308,8 +16397,8 @@ msgstr "" msgid "New Custom Block" msgstr "" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" msgstr "تنسيق طباعة مخصص جديد" @@ -16340,7 +16429,7 @@ msgstr "حدث جديد" msgid "New Folder" msgstr "ملف جديد" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "مجلس كانبان جديدة" @@ -16375,12 +16464,12 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "كلمة مرور جديدة" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "اسم تنسيق طباعة جديد" @@ -16389,7 +16478,7 @@ msgstr "اسم تنسيق طباعة جديد" msgid "New Quick List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "اسم التقرير الجديد" @@ -16407,8 +16496,8 @@ msgstr "" msgid "New Users (Last 30 days)" msgstr "" -#: frappe/core/doctype/version/version_view.html:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "" @@ -16465,13 +16554,13 @@ msgstr "القيمة الجديدة التي سيتم تحديدها" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "{0} جديد" @@ -16487,7 +16576,7 @@ msgstr "تمت إضافة {0} {1} جديد إلى لوحة التحكم {2}" msgid "New {0} {1} created" msgstr "تم إنشاء {0} {1} جديد" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "جديد {0}: {1}" @@ -16495,7 +16584,7 @@ msgstr "جديد {0}: {1}" msgid "New {} releases for the following apps are available" msgstr "تتوفر {} إصدارات جديدة للتطبيقات التالية" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "" @@ -16508,7 +16597,7 @@ msgstr "مدير النشرة الإخبارية" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16615,14 +16704,15 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "لا" @@ -16672,6 +16762,10 @@ msgstr "ليس لديك حساب البريد الإلكتروني" msgid "No Email Accounts Assigned" msgstr "" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "لا رسائل البريد الإلكتروني" @@ -16707,15 +16801,15 @@ msgstr "لم يتم العثور على مستخدم LDAP للبريد الإل msgid "No Label" msgstr "" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: frappe/public/js/frappe/list/bulk_operations.js:98 #: frappe/public/js/frappe/list/bulk_operations.js:170 #: frappe/utils/weasyprint.py:52 msgid "No Letterhead" msgstr "" -#: frappe/model/naming.py:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "لا يوجد اسم محدد لـ {0}" @@ -16723,7 +16817,7 @@ msgstr "لا يوجد اسم محدد لـ {0}" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "لا الأذونات المحددة" @@ -16743,11 +16837,11 @@ msgstr "لا توجد مخططات مسموح بها في لوحة المعلو msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "لا يوجد طابعة متاحة." @@ -16763,11 +16857,11 @@ msgstr "لا يوجد نتائج" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16775,7 +16869,7 @@ msgstr "" msgid "No Suggestions" msgstr "" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "لا علامات" @@ -16787,7 +16881,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "لا تنبيهات لهذا اليوم" @@ -16815,23 +16909,19 @@ msgstr "" msgid "No changes to update" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "لا توجد تعليقات حتى الآن" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " -msgstr "" +msgid "No comments yet." +msgstr "لا تعليقات بعد." #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "لا جهات اتصال مرتبطة بالمستند" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "لا توجد بيانات للتصدير" @@ -16847,11 +16937,15 @@ msgstr "لم يتم العثور على مستندات ذات علامة {0}" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "لا يوجد حساب بريد إلكتروني مرتبط بالمستخدم. الرجاء إضافة حساب ضمن المستخدم> البريد الوارد للبريد الإلكتروني." +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16875,7 +16969,7 @@ msgstr "لا توجد سجلات أخرى" msgid "No matching records. Search something new" msgstr "أية سجلات مطابقة. بحث شيئا جديدا" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "لا مزيد من العناصر لعرضها" @@ -16919,7 +17013,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "لا توجد صلاحية ل '{0} ' {1}" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "ليس هناك إذن لقراءة {0}" @@ -16931,7 +17025,7 @@ msgstr "لا يوجد تصريح إلى {0} {1} {2}" msgid "No records deleted" msgstr "لا توجد سجلات محذوفة" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "لا توجد سجلات في {0}" @@ -16947,7 +17041,7 @@ msgstr "لن يتم تصدير سجلات" msgid "No rows" msgstr "" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -16967,11 +17061,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -16980,7 +17074,7 @@ msgid "No {0} mail" msgstr "لا {0} الإلكتروني" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -17023,7 +17117,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "غير مسموح" @@ -17044,7 +17138,7 @@ msgstr "ليس من أحفاد" msgid "Not Equals" msgstr "لا تساوي" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "لم يتم العثور على" @@ -17070,20 +17164,19 @@ msgstr "غير مرتبط بأي سجل" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "لا يسمح" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17092,10 +17185,10 @@ msgstr "لم تنشر" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "لم يتم الحفظ" @@ -17127,7 +17220,7 @@ msgstr "ليس صالحا القيمة المفصولة بفواصل ( CSV مل msgid "Not a valid User Image." msgstr "ليست صورة مستخدم صالحة." -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "ليس إجراء سير عمل صالح" @@ -17143,11 +17236,11 @@ msgstr "غير نشطة" msgid "Not allowed for {0}: {1}" msgstr "غير مسموح لـ {0}: {1}" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "غير مسموح بإرفاق مستند {0} ، يرجى تمكين السماح بالطباعة لـ {0} في إعدادات الطباعة" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "" @@ -17171,27 +17264,27 @@ msgstr "لم يتم العثور على" msgid "Not in Developer Mode" msgstr "ليس في وضع مطور البرامج" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "ليس في وضع المطور! يقع في site_config.json أو جعل DOCTYPE \"مخصص\"." -#: frappe/core/doctype/system_settings/system_settings.py:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "غير مسموح به" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "غير مسموح بمشاهدة {0}" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17226,7 +17319,7 @@ msgstr "ملاحظة: للحصول على أفضل النتائج ، يجب أن msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "ملاحظة: سيتم السماح جلسات متعددة في حالة جهاز الموبايل" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17250,10 +17343,9 @@ msgstr "" msgid "Nothing left to undo" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "لا شيء لإظهار" @@ -17299,15 +17391,15 @@ msgstr "وثيقة الاشتراك المكتوبة" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17358,7 +17450,7 @@ msgstr "يخطر إذا لا تحوي على ردود ل (في دقيقة)" msgid "Notify users with a popup when they log in" msgstr "إعلام المستخدمين مع منبثقة عندما يقومون بتسجيل الدخول" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "الآن" @@ -17416,12 +17508,12 @@ msgstr "عدد المجموعات" msgid "Number of Queries" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17530,11 +17622,11 @@ msgstr "تطبيق كلمة السر الفريدة" msgid "OTP Issuer Name" msgstr "اسم جهة مكتب المدعي العام" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "تمت إعادة تعيين سر مكتب المدعي العام. سوف تكون هناك حاجة لإعادة التسجيل على تسجيل الدخول المقبل." @@ -17653,7 +17745,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "" @@ -17693,7 +17785,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "بمجرد إرسالها ، لا يمكن تغيير المستندات المقدمة. يمكن إلغاؤها وتعديلها فقط." @@ -17738,7 +17830,7 @@ msgstr "يسمح فقط للمسؤول باستخدام Recorder" msgid "Only Allow Edit For" msgstr "السماح بالتحرير فقط لـ" -#: frappe/core/doctype/doctype/doctype.py:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "الخيارات المسموح بها لحقل البيانات فقط هي:" @@ -17755,7 +17847,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "" @@ -17774,19 +17866,19 @@ msgstr "ضرورية لسجلات جديدة الحقول الإلزامية ف msgid "Only one {0} can be set as primary." msgstr "يمكن تعيين {0} واحد فقط على أنه أساسي." -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "يُسمح بتخصيص أنواع DocTypes القياسية فقط من تخصيص النموذج." -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17856,7 +17948,7 @@ msgstr "افتح مستند مرجعي" msgid "Open Settings" msgstr "أفتح الإعدادات" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "" @@ -17874,7 +17966,7 @@ msgstr "" msgid "Open a module or tool" msgstr "فتح وحدة نمطية أو أداة" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "" @@ -17882,7 +17974,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "فتح عنصر القائمة" @@ -17897,13 +17989,13 @@ msgstr "افتح تطبيق المصادقة على هاتفك الجوال." #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "مفتوحة {0}" @@ -17912,6 +18004,10 @@ msgstr "مفتوحة {0}" msgid "OpenID Configuration" msgstr "" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" @@ -17927,7 +18023,7 @@ msgstr "افتتح" msgid "Operation" msgstr "عملية" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "يجب أن يكون المشغل واحدا من {0}" @@ -17953,7 +18049,7 @@ msgstr "الخيار 2" msgid "Option 3" msgstr "الخيار 3" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "الخيار {0} للحقل {1} ليس جدولًا فرعيًا" @@ -17973,6 +18069,7 @@ msgstr "اختياري: سيتم إرسال التنبية إذا كان هذا #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -17981,11 +18078,12 @@ msgstr "اختياري: سيتم إرسال التنبية إذا كان هذا #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "خيارات" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "'الارتباط الحيوي \"نوع من الخيارات الميدانية يجب أن يشير إلى رابط حقل آخر مع خيارات باسم' DOCTYPE '" @@ -17994,7 +18092,7 @@ msgstr "'الارتباط الحيوي \"نوع من الخيارات الميد msgid "Options Help" msgstr "خيارات مساعدة" -#: frappe/core/doctype/doctype/doctype.py:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "" @@ -18002,7 +18100,7 @@ msgstr "" msgid "Options for select. Each option on a new line." msgstr "خيارات للاختيار. كل خيار على سطر جديد." -#: frappe/core/doctype/doctype/doctype.py:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 msgid "Options for {0} must be set before setting the default value." msgstr "يجب تعيين خيارات {0} قبل تعيين القيمة الافتراضية." @@ -18010,7 +18108,7 @@ msgstr "يجب تعيين خيارات {0} قبل تعيين القيمة الا msgid "Options is required for field {0} of type {1}" msgstr "" -#: frappe/model/base_document.py:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "خيارات لم يتم تعيين لحقل الرابط {0}" @@ -18026,7 +18124,7 @@ msgstr "" msgid "Order" msgstr "طلب" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18042,12 +18140,12 @@ msgstr "تاريخ المنظمة" msgid "Org History Heading" msgstr "عنوان تاريخ المنظمة" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "توجيه" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "" @@ -18115,10 +18213,6 @@ msgstr "الناتج" msgid "Overview" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "مالك" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" @@ -18126,9 +18220,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:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18169,11 +18263,11 @@ msgstr "فشل توليد قوات الدفاع الشعبي" msgid "PDF generation failed because of broken image links" msgstr "فشل الجيل PDF بسبب الروابط صورة مكسورة" -#: frappe/printing/page/print/print.js:616 +#: frappe/printing/page/print/print.js:656 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:574 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18345,7 +18439,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:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "الصفحة {0} من {1}" @@ -18372,7 +18466,7 @@ msgstr "" msgid "Parent Document Type" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "" @@ -18389,11 +18483,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:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "حقل الأصل (شجرة)" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "يجب أن يكون حقل الأصل اسمًا صالحًا للحقل" @@ -18402,7 +18496,7 @@ msgstr "يجب أن يكون حقل الأصل اسمًا صالحًا للحق msgid "Parent Label" msgstr "الإسم الأصل" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 msgid "Parent Missing" msgstr "" @@ -18476,8 +18570,8 @@ msgstr "غير فعال" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18487,7 +18581,7 @@ msgstr "غير فعال" msgid "Password" msgstr "كلمة السر" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "" @@ -18500,7 +18594,7 @@ msgstr "إعادة تعيين كلمة المرور" msgid "Password Reset Link Generation Limit" msgstr "حد إنشاء ارتباط إعادة تعيين كلمة المرور" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18517,6 +18611,10 @@ msgstr "كلمة السر لقاعدة DN" msgid "Password is required or select Awaiting Password" msgstr "كلمة المرور مطلوبة أو اختر كلمة المرور" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "" @@ -18525,7 +18623,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18533,11 +18631,11 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." msgstr "" @@ -18545,7 +18643,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "كلمة المرور غير مطابقة!" @@ -18615,10 +18713,12 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "معلق" @@ -18694,7 +18794,7 @@ msgstr "إرسال دائم {0} ؟" msgid "Permanently delete {0}?" msgstr "حذف بشكل دائم {0} ؟" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "خطأ في الإذن" @@ -18754,16 +18854,16 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: frappe/core/page/permission_manager/permission_manager.js:221 #: frappe/core/workspace/users/users.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Permissions" msgstr "الصلاحيات" -#: frappe/core/doctype/doctype/doctype.py:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "" @@ -18825,15 +18925,18 @@ msgstr "طلب تنزيل البيانات الشخصية" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -18846,13 +18949,13 @@ msgstr "هاتف" msgid "Phone No." msgstr "رقم الهاتف" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "اختيار الأعمدة" @@ -18912,11 +19015,11 @@ msgstr "الرجاء تثبيت مكتبة ldap3 عبر النقطة لاستخ msgid "Please Set Chart" msgstr "يرجى وضع الرسم البياني" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "يرجى تحديث إعدادات الرسائل القصيرة" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "الرجاء إضافة موضوع إلى بريدك الإلكتروني" @@ -18924,7 +19027,7 @@ msgstr "الرجاء إضافة موضوع إلى بريدك الإلكترون msgid "Please add a valid comment." msgstr "الرجاء إضافة تعليق صالح." -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "الرجاء اطلب من المشرف التأكد من تسجيلك" @@ -18932,11 +19035,11 @@ msgstr "الرجاء اطلب من المشرف التأكد من تسجيلك" msgid "Please attach a file first." msgstr "يرجى إرفاق ملف الأول." -#: frappe/printing/doctype/letter_head/letter_head.py:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 msgid "Please attach an image file to set HTML for Footer." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "" @@ -18944,19 +19047,15 @@ msgstr "" msgid "Please attach the package" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "" - #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "يرجى التحقق من قيم المرشح المحددة لمخطط لوحة المعلومات: {}" -#: frappe/model/base_document.py:951 +#: frappe/model/base_document.py:1008 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "يرجى التحقق من قيمة مجموعة "الجلب من" للحقل {0}" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "يرجى التحقق من بريدك الالكتروني للتحقق" @@ -18988,11 +19087,11 @@ msgstr "الرجاء الضغط على الرابط التالي لتعيين ك msgid "Please confirm your action to {0} this document." msgstr "يرجى تأكيد الإجراء الخاص بك إلى {0} هذا المستند." -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "الرجاء إنشاء البطاقة أولاً" @@ -19008,20 +19107,20 @@ msgstr "" msgid "Please do not change the template headings." msgstr "من فضلك لا تغيير عناوين القالب." -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" msgstr "يرجى تكرار هذه إلى إجراء تغييرات" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "يرجى تمكين النوافذ المنبثقة" @@ -19058,7 +19157,7 @@ msgstr "الرجاء إدخال معرف العميل قبل تمكين تسجي msgid "Please enter Client Secret before social login is enabled" msgstr "الرجاء إدخال العميل السري قبل تمكين تسجيل الدخول الاجتماعي" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "" @@ -19095,11 +19194,12 @@ msgstr "" msgid "Please enter your old password." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "يرجى الاطلاع على المرفق {0}: {1}" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "" @@ -19107,11 +19207,11 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "يرجى التأكد من أن وثائق الاتصال المرجعية غير مرتبطة بشكل دائري." -#: frappe/model/document.py:988 +#: frappe/model/document.py:992 msgid "Please refresh to get the latest document." msgstr "يرجى تحديث للحصول على أحدث وثيقة." -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:575 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19127,7 +19227,7 @@ msgstr "الرجاء حفظ المستند قبل التعيين" msgid "Please save the document before removing assignment" msgstr "الرجاء حفظ المستند قبل إزالة المهمة" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "يرجى حفظ التقرير الأول" @@ -19135,7 +19235,7 @@ msgstr "يرجى حفظ التقرير الأول" msgid "Please save to edit the template." msgstr "يرجى الحفظ لتعديل القالب." -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "يرجى تحديد DOCTYPE أولا" @@ -19143,19 +19243,19 @@ msgstr "يرجى تحديد DOCTYPE أولا" msgid "Please select Entity Type first" msgstr "يرجى اختيار نوع الكيان أولا" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "يرجى تحديد الحد الأدنى لسجل كلمة المرور" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "" @@ -19163,7 +19263,7 @@ msgstr "" msgid "Please select a file or url" msgstr "يرجى تحديد ملف أو URL" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" msgstr "يرجى تحديد ملف CSV ساري المفعول مع البيانات" @@ -19175,7 +19275,7 @@ msgstr "الرجاء تحديد مرشح تاريخ صالح" msgid "Please select applicable Doctypes" msgstr "يرجى اختيار الأساليب المناسبة" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "يرجى تحديد عمود واحد على الأقل من {0} إلى التصنيف / المجموعة" @@ -19201,11 +19301,11 @@ msgstr "الرجاء اختيار {0}" msgid "Please set Email Address" msgstr "يرجى وضع عنوان البريد الإلكتروني" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:589 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "يرجى تعيين تعيين طابعة لتنسيق الطباعة هذا في "إعدادات الطابعة"" -#: frappe/public/js/frappe/views/reports/query_report.js:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "يرجى تعيين المرشحات" @@ -19213,7 +19313,7 @@ msgstr "يرجى تعيين المرشحات" msgid "Please set filters value in Report Filter table." msgstr "الرجاء تعيين قيمة عوامل التصفية في جدول تصفية التقرير." -#: frappe/model/naming.py:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "" @@ -19225,7 +19325,7 @@ msgstr "يرجى تعيين المستندات التالية في لوحة ال msgid "Please set the series to be used." msgstr "يرجى ضبط المسلسل ليتم استخدامه." -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "يرجى إعداد سمز قبل تعيينه كطريقة المصادقة، عبر إعدادات سمز" @@ -19249,23 +19349,23 @@ msgstr "رجاء حدد" msgid "Please specify a valid parent DocType for {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "يرجى تحديد حقل التاريخ الذي يجب التحقق منه" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "يرجى تحديد حقل القيمة الذي يجب التحقق منه" @@ -19286,7 +19386,7 @@ msgstr "" msgid "Please use following links to download file backup." msgstr "" -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" @@ -19340,7 +19440,7 @@ msgstr "بوابة عنصر القائمة" msgid "Portal Settings" msgstr "إعدادات البوابة" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "صورة" @@ -19368,6 +19468,7 @@ msgstr "بريدي" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "الرمز البريدي" @@ -19376,15 +19477,7 @@ msgstr "الرمز البريدي" msgid "Posting Timestamp" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "مشاركات {0}" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "الوظائف المقدمة في إطار {0}" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19399,7 +19492,11 @@ msgstr "" msgid "Precision" msgstr "دقة" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "وينبغي أن تكون الدقة بين 1 و 6" @@ -19447,7 +19544,7 @@ msgstr "" msgid "Prepared Report User" msgstr "إعداد تقرير المستخدم" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "" @@ -19455,7 +19552,7 @@ msgstr "" msgid "Preparing Report" msgstr "إعداد التقرير" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "" @@ -19476,7 +19573,7 @@ msgstr "اضغط على إنتر للحفظ" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19490,13 +19587,6 @@ msgstr "معاينة" msgid "Preview HTML" msgstr "معاينة HTML" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "معاينة الصورة" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19525,7 +19615,7 @@ msgid "Preview:" msgstr "" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19537,12 +19627,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "سابق" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "السابق هاش" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "" @@ -19588,19 +19673,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:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "طباعة" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "طباعة" @@ -19618,8 +19703,8 @@ 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:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19670,7 +19755,7 @@ msgstr "تنسيق الطباعة مساعدة" msgid "Print Format Type" msgstr "نوع تنسيق الطباعة" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19709,7 +19794,7 @@ msgstr "طباعة إخفاء إذا لا قيمة" msgid "Print Language" msgstr "لغة الطباعة" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "طباعة المرسلة إلى الطابعة!" @@ -19726,8 +19811,8 @@ msgstr "ملقم الطباعة" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "إعدادات الطباعة" @@ -19775,11 +19860,11 @@ msgstr "" msgid "Print with letterhead" msgstr "طباعة مع ترويسة" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "طابعة" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "تعيين الطابعة" @@ -19789,11 +19874,11 @@ msgstr "تعيين الطابعة" msgid "Printer Name" msgstr "اسم الطابعة" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "إعدادات الطابعة" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "" @@ -19851,7 +19936,7 @@ msgstr "ProTip: إضافة Reference: {{ reference_doctype }} {{ reference msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "المتابعة على أية حال" @@ -19872,18 +19957,28 @@ msgstr "" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "تم تحديث المَلف الشخصي بنجاح." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "تقدم" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: 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:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: 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/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "ممتلكات" @@ -19920,7 +20015,7 @@ msgstr "نوع الملكية" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -19969,24 +20064,18 @@ msgstr "" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "نشر" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -19996,15 +20085,6 @@ msgstr "نشر" msgid "Published" msgstr "نشرت" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "نشرت في" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "نشرت في" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json @@ -20094,7 +20174,9 @@ msgid "Put on Hold" msgstr "" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "" @@ -20106,9 +20188,9 @@ msgstr "رمز الاستجابة السريعة" msgid "QR Code for Login Verification" msgstr "رمز الاستجابة السريعة لتسجيل الدخول" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " -msgstr "فشل علبة QZ:" +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" +msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' @@ -20157,7 +20239,7 @@ msgstr "الاستعلام عن" msgid "Query analysis complete. Check suggested indexes." msgstr "" -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "" @@ -20257,7 +20339,7 @@ msgstr "" msgid "Quick Lists" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20294,12 +20376,6 @@ msgstr "نطاق" msgid "Rate Limiting" msgstr "" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20319,7 +20395,7 @@ msgstr "تقييم" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "أوامر الخام" @@ -20336,7 +20412,7 @@ msgstr "البريد الإلكتروني الخام" msgid "Raw Printing" msgstr "الطباعة الخام" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "" @@ -20353,8 +20429,8 @@ msgid "Re:" msgstr "" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "رد: {0}" @@ -20410,11 +20486,6 @@ msgstr "" msgid "Read Only Mode" msgstr "" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "وقت القراءة" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20430,7 +20501,7 @@ msgstr "قراءة من قبل المتلقي" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "" @@ -20450,11 +20521,11 @@ msgstr "" msgid "Reason" msgstr "سبب" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "إعادة بناء" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20492,7 +20563,7 @@ msgstr "معامل المستقبل" msgid "Recent years are easy to guess." msgstr "السنوات الأخيرة من السهل تخمين." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "" @@ -20503,6 +20574,14 @@ msgstr "" msgid "Recipient" msgstr "مستلم" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20535,7 +20614,7 @@ msgstr "" msgid "Records for following doctypes will be filtered" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "" @@ -20552,6 +20631,11 @@ msgstr "" msgid "Redirect HTTP Status" msgstr "" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20646,6 +20730,11 @@ msgstr "المرجع تاريخ" msgid "Reference Datetime" msgstr "" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20673,7 +20762,6 @@ msgstr "إشارة DocName" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20714,9 +20802,9 @@ msgstr "" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20734,9 +20822,9 @@ msgstr "" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20766,7 +20854,6 @@ msgstr "مرجع نوع الوثيقة" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -20814,15 +20901,15 @@ msgstr "إشارة: {0} {1}" msgid "Referrer" msgstr "المرجع" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "تحديث" @@ -20836,6 +20923,10 @@ msgstr "تحديث كافة" msgid "Refresh Google Sheet" msgstr "قم بتحديث ورقة Google" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -20847,18 +20938,18 @@ msgstr "قم بتحديث ورقة Google" msgid "Refresh Token" msgstr "تحديث رمز" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "يحديث ..." -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "سجل لكن المعوقين" @@ -21035,7 +21126,7 @@ msgstr "" msgid "Rename {0}" msgstr "إعادة تسمية {0}" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "إعادة تسمية الملفات ورمز استبدالها في وحدات التحكم ، يرجى مراجعة!" @@ -21166,9 +21257,9 @@ msgstr "الرد على الجميع" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "تقرير" @@ -21238,11 +21329,11 @@ 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:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "تقرير الاسم" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "" @@ -21276,21 +21367,21 @@ msgstr "" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 msgid "Report cannot be set for Single types" msgstr "لا يمكن تعيين التقرير لأنواع واحدة" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 -#: frappe/desk/doctype/number_card/number_card.js:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "لا يحتوي التقرير على بيانات ، يرجى تعديل الفلاتر أو تغيير اسم التقرير" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 msgid "Report has no numeric fields, please change the Report Name" msgstr "لا يحتوي التقرير على حقول رقمية ، يُرجى تغيير اسم التقرير" -#: frappe/public/js/frappe/views/reports/query_report.js:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21302,24 +21393,24 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "تم تحديث التقرير بنجاح" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 msgid "Report was not saved (there were errors)" msgstr "لم يتم حفظ التقرير (كانت هناك أخطاء)" -#: frappe/public/js/frappe/views/reports/query_report.js:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "التقرير مع أكثر من 10 أعمدة تبدو أفضل في وضع أفقي." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "تقرير {0}" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "" @@ -21327,7 +21418,7 @@ msgstr "" msgid "Report {0} is disabled" msgstr "تقرير غير مفعلة {0}" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "" @@ -21338,7 +21429,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:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "تقارير" @@ -21346,7 +21437,7 @@ msgstr "تقارير" msgid "Reports & Masters" msgstr "التقارير والماجستير" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "التقارير موجودة بالفعل في قائمة الانتظار" @@ -21365,7 +21456,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "طلب البيانات" @@ -21417,6 +21511,11 @@ msgstr "" msgid "Request URL" msgstr "طلب عنوان ورل" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21468,11 +21567,11 @@ msgstr "إعادة تعيين المخطط" msgid "Reset Dashboard Customizations" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "تصفير البيانات في الحقول" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "إعادة تعيين كلمة مرور LDAP" @@ -21480,11 +21579,11 @@ msgstr "إعادة تعيين كلمة مرور LDAP" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "إعادة تعيين مكتب المدعي العام سر" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21519,7 +21618,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21557,6 +21656,7 @@ msgid "Resource TOS URI" msgstr "" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21566,11 +21666,6 @@ msgstr "" msgid "Response" msgstr "الإستجابة" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "الإستجابة " - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21629,7 +21724,7 @@ msgstr "تقييد النطاق" 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)" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "قيود" @@ -21663,7 +21758,7 @@ msgstr "ارجع إلى شاشة التحقق وأدخل الرمز المعرو msgid "Reverse Icon Color" msgstr "عكس دلالات اللون" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "إعادة الطول إلى {0} لـ "{1}" في "{2}". تعيين الطول كـ {3} سيؤدي إلى اقتطاع البيانات." @@ -21681,9 +21776,7 @@ msgstr "سحب" msgid "Revoked" msgstr "إلغاء" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21724,6 +21817,7 @@ msgstr "ملف robots.txt" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21737,6 +21831,7 @@ msgstr "ملف robots.txt" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21775,7 +21870,7 @@ msgstr "إذن الدور للصفحة والتقرير" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "اذونات الصلاحيات" @@ -21785,7 +21880,7 @@ msgstr "اذونات الصلاحيات" msgid "Role Permissions Manager" msgstr "مدير ضوابط الصلاحيات" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "مدير ضوابط الصلاحيات" @@ -21828,6 +21923,7 @@ msgstr "" #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -21837,6 +21933,7 @@ msgstr "" #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -21873,7 +21970,7 @@ msgstr "أدوار Html" msgid "Roles can be set for users from their User page." msgstr "" -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "الجذر {0} لا يمكن حذف" @@ -21893,8 +21990,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -21906,8 +22001,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -21932,24 +22025,24 @@ msgstr "إعادة توجيه الطريق" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "صف" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "الصف # {0}:" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "" @@ -21958,11 +22051,6 @@ msgstr "" msgid "Row Format" msgstr "" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "مؤشر الصف" - #. Label of the row_indexes (Code) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Row Indexes" @@ -21977,7 +22065,7 @@ msgstr "اسم الصف" msgid "Row Number" msgstr "" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "" @@ -21985,30 +22073,33 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "الصف {0}: غير مسموح بتعطيل إلزامي للحقول القياسية" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "صف {0}: غير مسموح لتمكين السماح إرسال على لحقول القياسية" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Added" msgstr "واضاف الصفوف" #. Label of the rows_removed_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "الصفوف إزالتها" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22099,7 +22190,7 @@ msgstr "SMS متغيرات" msgid "SMS Settings" msgstr "SMS إعدادات" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "" @@ -22177,7 +22268,7 @@ msgstr "قوة المبيعات" msgid "Salutation" msgstr "اللقب" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "تم إدخال نفس الحقل أكثر من مرة" @@ -22205,20 +22296,20 @@ msgstr "السبت" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22227,16 +22318,12 @@ msgstr "السبت" msgid "Save" msgstr "حفظ" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "حفظ على أي حال" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "حفظ باسم" @@ -22244,11 +22331,11 @@ msgstr "حفظ باسم" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "احفظ التقرير" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "حفظ المرشحات" @@ -22273,7 +22360,7 @@ msgstr "حفظ" msgid "Saved Filters" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22352,7 +22439,7 @@ msgstr "نوع الوظيفة المجدولة" msgid "Scheduled Jobs Logs" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "تم تحديث التنفيذ المجدول للنص {0}" @@ -22375,7 +22462,7 @@ msgstr "" msgid "Scheduler Event" msgstr "حدث المجدول" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "المجدول غير نشط" @@ -22388,7 +22475,7 @@ msgstr "" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "المجدول غير نشط. لا يمكن استيراد البيانات." @@ -22520,7 +22607,7 @@ msgstr "" msgid "Search by filename or extension" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "حقل البحث {0} غير صالح" @@ -22620,7 +22707,7 @@ msgstr "إعدادات الأمان" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "عرض جميع التقارير السابقة" @@ -22629,7 +22716,7 @@ msgstr "عرض جميع التقارير السابقة" msgid "See on Website" msgstr "ترى على الموقع" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "" @@ -22676,7 +22763,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/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22684,28 +22771,28 @@ msgstr "حدد" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "حدد المرفقات" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "حدد جدول الطفل" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 msgid "Select Column" msgstr "حدد العمود" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "تحديد الأعمدة" @@ -22764,12 +22851,15 @@ msgstr "اختر المجال" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "حدد الحقول" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "حدد الحقول المطلوب إدراجها" @@ -22782,7 +22872,7 @@ msgstr "حدد الحقول المراد تحديثها" msgid "Select Filters" msgstr "اختر المرشحات" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "حدد تقويم Google للحدث الذي يجب مزامنته." @@ -22815,8 +22905,8 @@ msgstr "حدد إلزامية" msgid "Select Module" msgstr "اختر وحدة" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "" @@ -22881,14 +22971,14 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "حدد عقدة المجموعة أولا." +msgid "Select a group {0} first." +msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" msgstr "حدد حقل مرسل صالحًا لإنشاء المستندات من البريد الإلكتروني" -#: frappe/core/doctype/doctype/doctype.py:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 msgid "Select a valid Subject field for creating documents from Email" msgstr "حدد حقل موضوع صالحًا لإنشاء المستندات من البريد الإلكتروني" @@ -22918,13 +23008,13 @@ msgstr "اختر أتلست سجل 1 للطباعة" msgid "Select atleast 2 actions" msgstr "حدد على الأقل 2 الإجراءات" -#: frappe/public/js/frappe/list/list_view.js:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "حدد عنصر القائمة" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "حدد عناصر قائمة متعددة" @@ -22958,7 +23048,7 @@ msgstr "" msgid "Select {0}" msgstr "حدد {0}" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "الموافقة الذاتية غير مسموح بها" @@ -23142,7 +23232,7 @@ msgstr "البريد الإلكتروني المرسل" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "يجب أن يحتوي حقل المرسل على البريد الإلكتروني في الخيارات" @@ -23236,7 +23326,7 @@ msgstr "" msgid "Series counter for {} updated to {} successfully" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "الترقيم المتسلسل {0} مستخدم بالفعل في {1}" @@ -23246,7 +23336,7 @@ msgstr "الترقيم المتسلسل {0} مستخدم بالفعل في {1}" msgid "Server Action" msgstr "عمل الخادم" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "خطأ في الخادم" @@ -23265,7 +23355,7 @@ msgstr "خادم IP" msgid "Server Script" msgstr "خادم النصي" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23312,7 +23402,7 @@ msgstr "الجلسة الافتراضية" msgid "Session Defaults Saved" msgstr "تم حفظ الإعدادات الافتراضية للجلسة" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "انتهت الجلسة" @@ -23321,14 +23411,14 @@ msgstr "انتهت الجلسة" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "يجب أن يكون انتهاء الجلسة بالتنسيق {0}" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "مجموعة" @@ -23354,12 +23444,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\" msgstr "تعيين الخيارات الافتراضية لجميع الرسوم البيانية في لوحة المعلومات هذه (على سبيل المثال: "الألوان": ["# d1d8dd"، "# ff5858"])" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "تعيين عوامل التصفية الديناميكية" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23370,7 +23460,7 @@ msgstr "ضبط المرشحات" msgid "Set Filters for {0}" msgstr "تعيين عوامل التصفية لـ {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23424,7 +23514,7 @@ msgstr "ضبط الكمية" msgid "Set Role For" msgstr "تعيين صلاحية لل" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "تعيين صلاحيات المستخدم" @@ -23434,16 +23524,16 @@ msgstr "تعيين صلاحيات المستخدم" msgid "Set Value" msgstr "تعيين القيمة" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "تعيين كافتراضي" @@ -23462,18 +23552,21 @@ msgstr "" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "" -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "تعيين الدقة غير القياسية لحقل تعويم أو العملات" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23565,14 +23658,9 @@ msgstr "" msgid "Settings for the About Us Page" msgstr "" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "الإعدادات" @@ -23588,8 +23676,8 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "الإعداد التلقائي البريد الإلكتروني" @@ -23658,11 +23746,6 @@ msgstr "عنوان الشحن" msgid "Shop" msgstr "تسوق" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "الاسم المختصر" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "نماذج لوحة المفاتيح قصيرة من السهل تخمين" @@ -23682,11 +23765,6 @@ msgstr "اختصارات" msgid "Show" msgstr "تبين" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23739,7 +23817,13 @@ msgstr "عرض المستند" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23867,7 +23951,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "أضهر العلامات" @@ -23884,7 +23968,7 @@ msgstr "اظهار العنوان" msgid "Show Title in Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "مشاهدة المجاميع" @@ -23924,10 +24008,6 @@ msgstr "عرض كل الإصدارات" msgid "Show all activity" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "" - #. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" @@ -23976,8 +24056,8 @@ msgstr "" msgid "Show list" msgstr "" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "إظهار مزيد من التفاصيل" @@ -24006,7 +24086,7 @@ msgstr "اظهار العنوان في نافذة المتصفح كما \"باد msgid "Show {0} List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "عرض حقول رقمية فقط من التقرير" @@ -24041,7 +24121,7 @@ msgstr "الشريط الجانبي وتعليقات" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "تم تعطيل الاشتراك" @@ -24078,36 +24158,36 @@ msgstr "تم تعطيل التسجيل" msgid "Signups have been disabled for this website." msgstr "تم تعطيل الاشتراكات لهذا الموقع." -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "تعبير Python البسيط ، مثال: الحالة في ("مغلق" ، "تم الإلغاء")" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" -msgstr "تعبير Python البسيط ، مثال: الحالة في ("غير صالح")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" -msgstr "تعبير Python البسيط ، مثال: status == 'Open' واكتب == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" +msgstr "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "جلسات متزامنة" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "لا يمكن تخصيص DocTypes مفردة." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "أنواع واحد يكون سجل واحد فقط لا الجداول المرتبطة . يتم تخزين القيم في tabSingles" @@ -24115,7 +24195,7 @@ msgstr "أنواع واحد يكون سجل واحد فقط لا الجداول msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "" -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "حجم" @@ -24334,11 +24414,11 @@ msgstr "حدث خطأ ما أثناء الجيل المميز. انقر على { msgid "Something went wrong." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 msgid "Sorry! I could not find what you were looking for." msgstr "عذراَ ! , لا يمكن العثورعلى ما تبحث عنه." -#: frappe/public/js/frappe/views/pageview.js:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "عذراَ !, غير مسموح لك مشاهدة هذه الصفحة." @@ -24369,20 +24449,23 @@ msgstr "" msgid "Sort Order" msgstr "ترتيب" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 msgid "Sort field {0} must be a valid fieldname" msgstr "يجب أن يكون حقل نوع {0} لFIELDNAME صحيح" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' -#: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "المصدر" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24409,6 +24492,12 @@ msgstr "بريد مؤذي" msgid "SparkPost" msgstr "" +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "لا يسمح أحرف خاصة" @@ -24433,8 +24522,8 @@ msgstr "" msgid "Splash Image" msgstr "" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "ر.ت" @@ -24466,11 +24555,11 @@ msgstr "" msgid "Standard" msgstr "اساسي" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "لا يمكن أن يكون تنسيق دوكتيب القياسي تنسيق طباعة افتراضي، استخدام نموذج مخصص" @@ -24482,7 +24571,7 @@ msgstr "المعيار غير محدد" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "لا يمكن تحديث تنسيق الطباعة القياسية" @@ -24490,11 +24579,11 @@ msgstr "لا يمكن تحديث تنسيق الطباعة القياسية" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "لا يمكن تغيير نمط الطباعة القياسي. الرجاء تكرار التعديل." -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "" @@ -24526,8 +24615,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:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "بداية" @@ -24535,7 +24624,7 @@ msgstr "بداية" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24600,6 +24689,7 @@ msgstr "يبدأ يوم" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24608,7 +24698,7 @@ msgstr "يبدأ يوم" msgid "State" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "" @@ -24664,6 +24754,7 @@ msgstr "الفاصل الزمني للإحصائيات" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24688,6 +24779,7 @@ msgstr "الفاصل الزمني للإحصائيات" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24695,8 +24787,8 @@ msgstr "الفاصل الزمني للإحصائيات" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24733,7 +24825,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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24763,6 +24855,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +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." @@ -24841,7 +24937,7 @@ msgstr "مجال فرعي" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -24857,7 +24953,7 @@ msgstr "موضوع" msgid "Subject Field" msgstr "حقل الموضوع" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "يجب أن يكون نوع حقل الموضوع بيانات ، نص ، نص طويل ، نص صغير ، محرر نص" @@ -24871,6 +24967,7 @@ msgstr "" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24879,10 +24976,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "تسجيل" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "تسجيل" @@ -24892,7 +24990,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "تسجيل" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "تسجيل" @@ -24916,7 +25014,7 @@ msgstr "إرسال بعد الاستيراد" msgid "Submit an Issue" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "" @@ -24928,7 +25026,7 @@ msgstr "" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "" @@ -24940,7 +25038,7 @@ msgstr "أرسل هذا المستند لإكمال هذه الخطوة." msgid "Submit this document to confirm" msgstr "إرسال هذه الوثيقة إلى تأكيد" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "إرسال {0} وثائق؟" @@ -24949,11 +25047,11 @@ msgstr "إرسال {0} وثائق؟" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "مسجلة" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "الوثيقة المسجلة لا يمكن تحويلها إلى مسودة row {0}" @@ -24976,9 +25074,7 @@ msgid "Subsidiary" msgstr "شركة فرعية" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "عنوان فرعي" @@ -24992,7 +25088,7 @@ msgstr "عنوان فرعي" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25034,20 +25130,16 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "نجاح! أنت جيد للذهاب 👍" - #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" msgstr "" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "المعاملات الناجحة" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "ناجح: {0} إلى {1}" @@ -25089,7 +25181,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "اسم المستخدم اقترح: {0}" @@ -25211,7 +25303,7 @@ msgstr "المزامنة" msgid "Syncing {0} of {1}" msgstr "مزامنة {0} من {1}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25334,6 +25426,7 @@ msgstr "" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25416,6 +25509,7 @@ msgstr "" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" msgstr "مدير النظام" @@ -25489,7 +25583,7 @@ msgstr "جدول" msgid "Table Break" msgstr "فاصل الجدول" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "" @@ -25498,7 +25592,7 @@ msgstr "" msgid "Table Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "" @@ -25520,11 +25614,11 @@ msgstr "الجدول MultiSelect" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "الجدول محدث" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 msgid "Table {0} cannot be empty" msgstr "جدول {0} لا يمكن أن يكون فارغا" @@ -25566,11 +25660,18 @@ msgstr "تصوير" msgid "Target" msgstr "الهدف" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "مهمة" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "المهام" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25632,7 +25733,7 @@ msgstr "تحذيرات القالب" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "موقوف مؤقتا" @@ -25704,7 +25805,7 @@ msgid "Thank you for reaching out to us. We will get back to you at the earliest "{0}" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "" @@ -25728,7 +25829,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "تم تعطيل التكرار التلقائي لهذا المستند." -#: frappe/public/js/frappe/form/grid.js:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "تنسيق كسف حساس لحالة الأحرف" @@ -25739,15 +25840,15 @@ msgid "The Client ID obtained from the Google Cloud Console under " msgstr "" -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "الشرط '{0}' غير صالح" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." msgstr "" @@ -25788,7 +25889,7 @@ msgstr "" msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "العمود {0} له {1} تنسيقات تاريخ مختلفة. تعيين {2} تلقائيًا كتنسيق افتراضي لأنه الأكثر شيوعًا. يرجى تغيير القيم الأخرى في هذا العمود إلى هذا التنسيق." -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "لا يمكن أن يكون التعليق فارغًا" @@ -25796,7 +25897,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:658 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25826,7 +25927,7 @@ msgstr "" msgid "The field {0} is mandatory" msgstr "" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "" @@ -25896,15 +25997,19 @@ msgid "The project number obtained from Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

Click here to download:
{0}

This link will expire in {1} hours." +msgstr "" + +#: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:995 +#: frappe/core/doctype/user/user.py:1002 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "المصدر الذي تبحث عنه غير متاح\\n
\\nThe resource you are looking for is not available" @@ -25916,7 +26021,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:338 +#: frappe/utils/response.py:336 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25937,7 +26042,7 @@ msgstr "" msgid "The webhook will be triggered if this expression is true" msgstr "سيتم تشغيل webhook إذا كان هذا التعبير صحيحًا" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "{0} قيد التكرار التلقائي {1}" @@ -25977,16 +26082,16 @@ 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:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "يمكن أن يكون هناك واحد فقط طية في شكل" @@ -25998,15 +26103,19 @@ msgstr "يوجد خطأ في قالب العناوين {0}" msgid "There is no data to be exported" msgstr "لا توجد بيانات ليتم تصديرها" +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "هناك بعض المشاكل مع رابط الملف: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26018,7 +26127,7 @@ msgstr "يجب أن يكون هناك على الأقل قاعدة إذن واح msgid "There was an error building this page" msgstr "كان هناك خطأ في بناء هذه الصفحة" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "كان هناك خطأ في حفظ المرشحات" @@ -26030,11 +26139,11 @@ msgstr "كانت هناك أخطاء" msgid "There were errors while creating the document. Please try again." msgstr "كانت هناك أخطاء أثناء إنشاء المستند. حاول مرة اخرى." -#: frappe/public/js/frappe/views/communication.js:840 +#: frappe/public/js/frappe/views/communication.js:843 msgid "There were errors while sending email. Please try again." msgstr "كانت هناك أخطاء أثناء إرسال البريد الإلكتروني. يرجى المحاولة مرة أخرى." -#: frappe/model/naming.py:494 +#: frappe/model/naming.py:502 msgid "There were some errors setting the name, please contact the administrator" msgstr "كانت هناك بعض الأخطاء التي تحدد الاسم، يرجى الاتصال بالمشرف" @@ -26075,7 +26184,7 @@ msgstr "إثبات أصالة الطرف الثالث" msgid "This Currency is disabled. Enable to use in transactions" msgstr "تم تعطيل هذه العملات . تمكين لاستخدامها في المعاملات" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "وهذا المجلس كانبان يكون القطاع الخاص" @@ -26083,6 +26192,10 @@ msgstr "وهذا المجلس كانبان يكون القطاع الخاص" msgid "This Month" msgstr "" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "" @@ -26108,6 +26221,11 @@ msgstr "هذا الإجراء مسموح به فقط لـ {}" msgid "This cannot be undone" msgstr "هذا لا يمكن التراجع عنها" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +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" @@ -26122,11 +26240,11 @@ msgstr "سيكون هذا المخطط متاحًا لجميع المستخدم msgid "This doctype has no orphan fields to trim" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26168,7 +26286,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26184,7 +26302,7 @@ msgstr "" msgid "This form has been modified after you have loaded it" msgstr "تم تعديل هذا النموذج بعد أن كنت قد تحميلها" -#: frappe/public/js/frappe/form/form.js:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "" @@ -26203,7 +26321,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "هذا يذهب فوق عرض الشرائح." -#: frappe/public/js/frappe/views/reports/query_report.js:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "هذا هو تقرير الخلفية. يرجى تعيين المرشحات المناسبة ثم إنشاء واحدة جديدة." @@ -26227,12 +26345,6 @@ msgstr "" msgid "This is an automatically generated reply" msgstr "هذا الرد تلقائي" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "هذا مثال على معاينة Google SERP." - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "هذا هو مماثل لكلمة شائعة الاستخدام." @@ -26251,7 +26363,7 @@ msgstr "تم تنشيط هذا الرابط بالفعل للتحقق منه." msgid "This link is invalid or expired. Please make sure you have pasted correctly." msgstr "هذا الرابط غير صالح أو منتهية الصلاحية. من فضلك تأكد من ولصق بشكل صحيح." -#: frappe/printing/page/print/print.js:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "قد تتم طباعة هذا على صفحات متعددة" @@ -26259,7 +26371,7 @@ msgstr "قد تتم طباعة هذا على صفحات متعددة" msgid "This month" msgstr "هذا الشهر" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26267,7 +26379,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "تم إنشاء هذا التقرير في {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "تم إنشاء هذا التقرير {0}." @@ -26298,7 +26410,7 @@ msgstr "" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " +msgid "This value specifies the max number of rows that can be rendered in report view." msgstr "" #: frappe/website/doctype/web_page/web_page.js:85 @@ -26330,10 +26442,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " +msgid "This will terminate the job immediately and might be dangerous, are you sure?" msgstr "" -#: frappe/core/doctype/user/user.py:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "مخنوق" @@ -26409,9 +26521,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26482,11 +26596,11 @@ msgstr "الجدول الزمني وصلات" msgid "Timeline Name" msgstr "اسم الزمني" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 msgid "Timeline field must be a Link or Dynamic Link" msgstr "يجب أن يكون حقل المخطط الزمني رابطا أو رابطا ديناميا" -#: frappe/core/doctype/doctype/doctype.py:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "يجب أن يكون حقل المخطط الزمني اسم حقل صالحا" @@ -26512,10 +26626,7 @@ msgid "Timespan" msgstr "الفترة الزمنية" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "الطابع الزمني" @@ -26535,9 +26646,6 @@ msgstr "" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26562,9 +26670,6 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26587,7 +26692,7 @@ msgstr "حقل العنوان" msgid "Title Prefix" msgstr "عنوان الاختصار" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "يجب أن يكون حقل العنوان حقل اسم صالح" @@ -26681,7 +26786,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "للحصول على التقرير المحدّث ، انقر على {0}." @@ -26736,7 +26841,7 @@ msgstr "قائمة المهام" msgid "Today" msgstr "اليوم" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "تبديل الرسم البياني" @@ -26752,11 +26857,11 @@ msgstr "تبديل عرض الشبكة" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "تبديل الشريط الجانبي" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "تبديل الشريط الجانبي" @@ -26802,7 +26907,7 @@ msgid "Tomorrow" msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "" @@ -26818,7 +26923,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "وقعت الكثير من المستخدمين في الآونة الأخيرة، وذلك هو تعطيل التسجيل. يرجى المحاولة مرة أخرى في ساعة" @@ -26880,10 +26985,10 @@ msgstr "" msgid "Topic" msgstr "موضوع" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "الاجمالي غير شامل الضريبة" @@ -26926,18 +27031,18 @@ msgstr "" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " -msgstr "إجمالي عدد الرسائل الإلكترونية المراد مزامنتها في عملية المزامنة الأولية" +msgid "Total number of emails to sync in initial sync process" +msgstr "" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "الاجمالي غير شامل الضريبة:" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "المجاميع" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "الصف الكلي" @@ -27003,26 +27108,10 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "عملية تجزئة" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "سجل المعاملات" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "تقرير سجل المعاملات" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "" @@ -27036,6 +27125,11 @@ msgstr "" msgid "Transition Rules" msgstr "الانتقال قوانين" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" @@ -27050,7 +27144,7 @@ msgstr "التحولات" msgid "Translatable" msgstr "للترجمة" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27061,7 +27155,7 @@ msgstr "" msgid "Translate Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "" @@ -27145,8 +27239,8 @@ msgstr "" msgid "Try a Naming Series" msgstr "" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "" @@ -27212,7 +27306,7 @@ msgstr "أسلوب اثنان عامل المصادقة" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27305,7 +27399,7 @@ msgstr "رابط الانترنت" msgid "URL for documentation or help" msgstr "عنوان URL للتوثيق أو المساعدة" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "" @@ -27408,7 +27502,7 @@ msgstr "" msgid "Unable to update event" msgstr "غير قادر على تحديث الحدث" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "تعذر كتابة تنسيق الملف {0}" @@ -27417,7 +27511,7 @@ msgstr "تعذر كتابة تنسيق الملف {0}" msgid "Unassign Condition" msgstr "إلغاء تعيين الشرط" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27433,7 +27527,7 @@ msgstr "" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27480,7 +27574,7 @@ msgstr "عمود غير معروف: {0}" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "مستخدم غير معروف" @@ -27492,8 +27586,7 @@ msgstr "" msgid "Unlock Reference Document" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "" @@ -27509,7 +27602,7 @@ msgstr "غير مقروء" msgid "Unread Notification Sent" msgstr "إرسال الإشعارات غير المقروءة" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "" @@ -27547,8 +27640,8 @@ msgstr "" msgid "Unsubscribed" msgstr "إلغاء اشتراكك" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27568,7 +27661,7 @@ msgstr "الملفات غير المضغوطة {0}" msgid "Unzipping files..." msgstr "فك ضغط الملفات ..." -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "الأحداث القادمة لهذا اليوم" @@ -27582,7 +27675,7 @@ msgstr "الأحداث القادمة لهذا اليوم" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "تحديث" @@ -27616,6 +27709,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27658,7 +27756,7 @@ msgstr "" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "محدّث" @@ -27666,7 +27764,7 @@ msgstr "محدّث" msgid "Updated Successfully" msgstr "تم التحديث بنجاح" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "تم التحديث إلى إصدار جديد 🎉" @@ -27674,7 +27772,7 @@ msgstr "تم التحديث إلى إصدار جديد 🎉" msgid "Updated successfully" msgstr "تم التحديث بنجاح" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "يتم التحديث" @@ -27719,8 +27817,8 @@ msgstr "" msgid "Upgrade your support experience with Frappe Helpdesk" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27730,11 +27828,11 @@ msgstr "تحميل" msgid "Upload Image" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "" @@ -27831,15 +27929,11 @@ msgstr "" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "استخدام الاستعلام الفرعي أو وظيفة مقيدة" -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "" @@ -27860,7 +27954,9 @@ msgid "Used OAuth" msgstr "" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -27869,6 +27965,7 @@ msgstr "" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -27883,11 +27980,12 @@ msgstr "" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -27896,6 +27994,7 @@ msgstr "" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -27912,17 +28011,11 @@ msgstr "" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "المستعمل" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "المستعمل" - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "المستخدم{0} يملك بالفعل الدور {1}
User '{0}' already has the role '{1}'" @@ -27952,7 +28045,7 @@ msgstr "المستخدم لا يستطيع أن ينشئ" msgid "User Cannot Search" msgstr "المستخدم لا يستطيع أن يبحث" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "" @@ -28016,11 +28109,6 @@ msgstr "تعريف المستخدم" msgid "User ID Property" msgstr "خاصية معرف المستخدم" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28040,6 +28128,11 @@ msgstr "" msgid "User Image" msgstr "صورة المستخدم" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "" @@ -28058,12 +28151,12 @@ msgstr "إذن المستخدم" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "ضوابط المستخدم" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "ضوابط المستخدم" @@ -28076,7 +28169,9 @@ msgstr "" msgid "User Permissions created successfully" msgstr "" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "" @@ -28142,6 +28237,10 @@ msgstr "" msgid "User does not have permission to create the new {0}" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "المستخدم إلزامي للمشاركة" @@ -28172,7 +28271,7 @@ msgstr "المستخدم {0} لا يمكن حذف" msgid "User {0} cannot be disabled" msgstr "المستخدم {0} لا يمكن تعطيل" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "المستخدم {0} لا يمكن إعادة تسمية" @@ -28193,7 +28292,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "طلب المستخدم {0} حذف البيانات" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "" @@ -28201,7 +28300,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "المستخدم {0} تم تعطيل" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28222,7 +28321,7 @@ msgstr "" msgid "Username" msgstr "اسم االمستخدم" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "اسم المستخدم {0} موجود بالفعل" @@ -28306,7 +28405,7 @@ msgstr "" msgid "Validate SSL Certificate" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "خطئ في التحقق" @@ -28329,8 +28428,8 @@ msgstr "الصلاحية" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28362,7 +28461,7 @@ msgstr "تم تغير القيمة" msgid "Value To Be Set" msgstr "قيمة ليتم تعيينها" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "لا يمكن تغير القيمة ل {0}" @@ -28378,11 +28477,11 @@ msgstr "لا يمكن أن تكون القيمة سالبة لـ {0}: {1}" msgid "Value for a check field can be either 0 or 1" msgstr "يمكن أن تكون قيمة حقل التحقق إما 0 أو 1" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "قيمة الحقل {0} طويلة جدًا في {1}. يجب أن يكون الطول أقل من {2} حرف" -#: frappe/model/base_document.py:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "القيمة {0} لا يمكن أن تكون قائمة" @@ -28407,7 +28506,7 @@ msgstr "" msgid "Value to Validate" msgstr "قيمة للتحقق من صحتها" -#: frappe/model/base_document.py:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "قيمة كبيرة جدا" @@ -28424,7 +28523,7 @@ msgstr "يجب أن تكون القيمة {0} بتنسيق المدة الصال msgid "Value {0} must in {1} format" msgstr "يجب أن تكون القيمة {0} بتنسيق {1}" -#: frappe/core/doctype/version/version_view.html:8 +#: frappe/core/doctype/version/version_view.html:9 msgid "Values Changed" msgstr "القيم التي تم تغييرها" @@ -28437,7 +28536,7 @@ msgstr "فيردانا" msgid "Verification" msgstr "" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "" @@ -28499,15 +28598,7 @@ msgstr "عرض الكل" msgid "View Audit Trail" msgstr "" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "عرض التعليق" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" @@ -28519,7 +28610,7 @@ msgstr "" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "عرض القائمة" @@ -28529,7 +28620,7 @@ msgstr "عرض القائمة" msgid "View Log" msgstr "عرض السجل" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "عرض المستندات المسموح بها" @@ -28576,7 +28667,7 @@ msgstr "عرض التقرير في المتصفح" msgid "View this in your browser" msgstr "عرض هذا في متصفحك" -#: frappe/public/js/frappe/web_form/web_form.js:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "" @@ -28645,6 +28736,7 @@ msgid "Warehouse" msgstr "المستودعات" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "تحذير" @@ -28653,7 +28745,7 @@ msgstr "تحذير" msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "" @@ -28739,7 +28831,7 @@ msgstr "صفحة على الإنترنت" msgid "Web Page Block" msgstr "كتلة صفحة الويب" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "" @@ -28842,7 +28934,7 @@ msgstr "" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "الموقع" @@ -28855,10 +28947,6 @@ msgstr "تحليلات الموقع" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -28902,7 +28990,7 @@ msgstr "نص الموقع البرمجي" msgid "Website Search Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "" @@ -29119,11 +29207,6 @@ msgstr "مرشح البدل" msgid "Will add \"%\" before and after the query" msgstr "" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "وسوف تستخدم في رابط (عادة الاسم الأول)." - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "سيكون معرف تسجيل الدخول" @@ -29138,7 +29221,7 @@ msgstr "سيتم عرض فقط إذا تم تمكين عناوين المقطع" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "مع رئيس رسالة" @@ -29216,7 +29299,7 @@ msgstr "" msgid "Workflow Data" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "" @@ -29242,11 +29325,11 @@ msgstr "حالة سير العمل" msgid "Workflow State Field" msgstr "حقل حالة سير العمل" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "لم يتم تعيين حالة سير العمل" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "انتقال حالة سير العمل غير مسموح به من {0} إلى {1}" @@ -29254,15 +29337,30 @@ msgstr "انتقال حالة سير العمل غير مسموح به من {0} msgid "Workflow States Don't Exist" msgstr "" -#: frappe/model/workflow.py:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "حالة سير العمل" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "الانتقال سير العمل" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29278,13 +29376,13 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29354,11 +29452,11 @@ msgstr "" msgid "Workspaces" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "" @@ -29377,11 +29475,11 @@ msgstr "تغليف" msgid "Write" msgstr "الكتابة" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "إحضار خاطئ من القيمة" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "X محور الحقل" @@ -29400,13 +29498,13 @@ msgstr "" msgid "Y Axis" msgstr "المحور ص" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" msgstr "حقول محور Y" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "Y الميدان" @@ -29458,16 +29556,17 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "نعم" @@ -29495,6 +29594,18 @@ msgstr "أنت" msgid "You Liked" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "أنت متصل بالإنترنت." @@ -29533,20 +29644,20 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "غير مسموح لك بتصدير النمط {}" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "لا يسمح لك بطباعة هذا التقرير" -#: frappe/public/js/frappe/views/communication.js:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "لا يسمح لك بإرسال رسائل البريد الإلكتروني ذات الصلة بهذه الوثيقة" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "لا يسمح لك بتحديث الوثيقة نموذج الويب هذه" @@ -29570,7 +29681,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:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29596,13 +29707,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " -msgstr "يمكنك أيضا نسخ ولصق هذا" +msgid "You can also copy-paste this" +msgstr "" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "يمكنك أيضًا نسخ {0} هذا ولصقه في متصفحك" +#: frappe/templates/emails/user_invitation_expired.html:8 +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 "" @@ -29615,11 +29730,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29639,7 +29754,7 @@ msgstr "" msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "" -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "" @@ -29657,7 +29772,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "يمكنك محاولة تغيير عوامل تصفية تقريرك." @@ -29669,11 +29784,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "لا يمكنك تعيين "خيارات" للحقل {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "لا يمكنك تعيين 'ترانزلاتابل' للحقل {0}" @@ -29691,7 +29806,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "لا يمكنك إنشاء مخطط لوحة معلومات من أنواع DocTypes الفردية" -#: frappe/custom/doctype/customize_form/customize_form.py:385 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "لا يمكنك ضبط \"للقراءة فقط\" للحقل {0}" @@ -29721,7 +29836,7 @@ msgstr "" msgid "You created this" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "" @@ -29734,15 +29849,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "ليس لديك الأذونات الكافية للوصول إلى هذا المورد. الرجاء الاتصال بالمدير للحصول علي الوصول." -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "لا يوجد لديك الصلاحية الكافية لاتمام هذا العمل" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29754,11 +29869,11 @@ msgstr "ليس لديك أذونات لإلغاء كافة المستندات ا msgid "You don't have access to Report: {0}" msgstr "ليس لديك حق الوصول إلى التقرير: {0}" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "لا تتوفر لديك الصلاحية للوصول الى هذا الملف" @@ -29766,19 +29881,19 @@ msgstr "لا تتوفر لديك الصلاحية للوصول الى هذا ا msgid "You don't have permission to get a report on: {0}" msgstr "ليس لديك إذن للحصول على تقرير عن: {0}" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "ليس لديك الأذونات للوصول إلى هذا المستند" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " -msgstr "لديك رسالة جديدة من:" +msgid "You have a new message from:" +msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "لقد تم تسجيل بنجاح" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29786,11 +29901,7 @@ msgstr "" msgid "You have not entered a value. The field will be set to empty." msgstr "" -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "" @@ -29810,7 +29921,7 @@ msgstr "لديك غير مرئي {0}" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29827,11 +29938,11 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "يجب عليك تسجيل الدخول لإرسال هذا النموذج" @@ -29855,7 +29966,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "عليك أن تكون في وضع المطور لتعديل نموذج ويب قياسي" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "يتوجب عليك تسجيل الدخول بصلاحية مدير النظام حتي تتمكن من الوصول الى النسخ الأحتياطية." @@ -29863,12 +29974,12 @@ msgstr "يتوجب عليك تسجيل الدخول بصلاحية مدير ال msgid "You need to be logged in to access this page" msgstr "تحتاج إلى تسجيل الدخول للوصول إلى هذه الصفحة" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "تحتاج إلى تسجيل الدخول للوصول إلى هذه {0}." #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " +msgid "You need to create these first:" msgstr "" #: frappe/www/login.html:76 @@ -29903,11 +30014,19 @@ msgstr "" msgid "You need {0} permission to fetch values from {1} {2}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "يبدو أنك على ما يرام!" @@ -29938,10 +30057,26 @@ msgstr "لقد قمت بإلغاء متابعة هذا المستند" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "موقع YouTube" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "" @@ -29971,7 +30106,7 @@ msgstr "اختصاراتك" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "تم قفل حسابك وسيتم استئنافه بعد {0} ثانية" @@ -29995,10 +30130,22 @@ msgstr "تم قبول طلب الاتصال الخاص بك إلى تقويم Go msgid "Your email address" msgstr "عنوان بريدك الإلكتروني" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "معرف تسجيل الدخول الخاص بك هو" @@ -30021,7 +30168,11 @@ msgstr "اسم المؤسسة وعنوانك لتذييل البريد الإل msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "وقد وردت الاستعلام الخاص بك. سوف نقوم بالرد مرة أخرى قريبا. إذا كان لديك أي معلومات إضافية، يرجى الرد على هذا البريد." -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "انتهت صلاحية الجلسة، يرجى تسجيل الدخول مرة أخرى للمتابعة." @@ -30043,7 +30194,7 @@ msgstr "صفر" msgid "Zero means send records updated at anytime" msgstr "صفر يعني إرسال التحديثات في أي وقت" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" msgstr "" @@ -30065,10 +30216,6 @@ msgstr "" msgid "`job_id` paramater is required for deduplication." msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30103,7 +30250,7 @@ msgstr "" msgid "cProfile Output" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "التقويم" @@ -30248,12 +30395,12 @@ msgstr "" msgid "email" msgstr "البريد الإلكتروني" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "البريد الوارد" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "فارغة" @@ -30310,7 +30457,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "ح" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "محور" @@ -30325,11 +30472,6 @@ msgstr "رمز" msgid "import" msgstr "استيراد" -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "في دقائق" - #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "" @@ -30338,7 +30480,7 @@ msgstr "" msgid "just now" msgstr "الآن فقط" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "" @@ -30367,7 +30509,7 @@ msgstr "قائمة" msgid "logged in" msgstr "تسجيل الدخول" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30388,11 +30530,6 @@ msgstr "م" msgid "merged {0} into {1}" msgstr "تم دمج {0} إلى {1}" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "" - #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json @@ -30416,7 +30553,7 @@ msgstr "إضافة" msgid "module name..." msgstr "اسم الوحدة برمجية ..." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "جديد" @@ -30545,10 +30682,6 @@ msgstr "قرأ" msgid "red" msgstr "أحمر" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "إعادة تسمية من {0} إلى {1}" @@ -30604,19 +30737,19 @@ msgstr "مشاركة" msgid "short" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "منذ اخر شهر" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "منذ الأسبوع الماضي" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "منذ السنة الماضية" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "منذ البارحة" @@ -30669,6 +30802,10 @@ msgstr "" msgid "this shouldn't break" msgstr "" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30696,7 +30833,7 @@ msgstr "" msgid "via Assignment Rule" msgstr "عبر قاعدة التنازل" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "" @@ -30710,7 +30847,7 @@ msgstr "عبر استيراد البيانات" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "عبر الإخطار" @@ -30743,10 +30880,15 @@ msgstr "" msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "" +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json @@ -30774,11 +30916,11 @@ msgstr "" msgid "{0}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "" @@ -30804,19 +30946,19 @@ msgstr "" msgid "{0} Calendar" msgstr "{0} التقويم" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "{0} الرسم البياني" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "{0} لوحة المعلومات" -#: frappe/public/js/frappe/form/grid_row.js:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "{0} الحقول" @@ -30840,6 +30982,10 @@ msgstr "" msgid "{0} List" msgstr "قائمة {0}" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "{0} م" @@ -30852,7 +30998,7 @@ msgstr "" msgid "{0} Name" msgstr "{0} الاسم" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "" @@ -30862,11 +31008,10 @@ msgstr "" msgid "{0} Report" msgstr "{0} تقرير" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "{0} الإعدادات" @@ -30891,7 +31036,15 @@ msgstr "" msgid "{0} added" msgstr "{0} أضيف" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0} موجود بالفعل. حدد اسما آخر" @@ -30903,7 +31056,7 @@ msgstr "{0} غير مشترك أصلاً" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0} تم إلغاء الاشتراك في {1} {2}" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "{0} و {1}" @@ -30911,7 +31064,7 @@ msgstr "{0} و {1}" msgid "{0} are currently {1}" msgstr "{0} حاليًا {1}" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "{0} مطلوبة" @@ -30928,7 +31081,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -30970,11 +31123,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "{0} تعليقات" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." msgstr "" @@ -30987,7 +31136,7 @@ msgstr "تم إنشاء {0} بنجاح" msgid "{0} created this" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "" @@ -31009,7 +31158,7 @@ msgstr "{0} غير موجود في الصف {1}" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "لا يمكن أن يحتوي اسم الحقل {0} على أحرف خاصة مثل {1}" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31041,7 +31190,7 @@ msgstr "{0} تركت محادثة في {1} {2}" msgid "{0} hours ago" msgstr "{0} قبل ساعات" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "" @@ -31050,23 +31199,23 @@ msgstr "" msgid "{0} in row {1} cannot have both URL and child items" msgstr "{0} في الصف {1} لا يمكن أن يكون لها عنوان URL وبنود فرعية في نفس الوقت" -#: frappe/core/doctype/doctype/doctype.py:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "{0} حقل إلزامي" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "{0} هو حقل بيانات غير صالح." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "{0} هو عنوان بريد إلكتروني غير صالح في "المستلمين"" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "" @@ -31075,27 +31224,27 @@ msgstr "" msgid "{0} is currently {1}" msgstr "{0} حاليًا {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "" @@ -31103,7 +31252,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "{0} إلزامي" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31123,12 +31272,12 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} ليس نوع DocType صالحًا للارتباط الديناميكي" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "{0} بريد الكتروني غير صالح
{0} is not a valid Email Address" @@ -31136,15 +31285,15 @@ msgstr "{0} بريد الكتروني غير صالح
{0} is not a valid Emai msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "{0} ليس اسمًا صالحًا" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "{0} ليس رقم هاتف صالحًا" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "{0} ليست حالة سير عمل صالحة. يرجى تحديث سير العمل والمحاولة مرة أخرى." @@ -31160,55 +31309,59 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} ليس تنسيق تقرير صالحًا. يجب أن يكون تنسيق التقرير مما يلي {1}" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "{0} هو الآن تنسيق الطباعة الافتراضي لنوع المستند {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 -#: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: 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/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} العناصر المحددة" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31241,35 +31394,35 @@ msgstr "قبل {0} دقائق" msgid "{0} months ago" msgstr "قبل {0} أشهر" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "{0} يجب أن يكون بعد {1}" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} يجب أن يكون واحدا من {1}" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "يجب تعيين {0} أولا" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "{0} يجب أن تكون فريدة من نوعها" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "" @@ -31277,7 +31430,7 @@ msgstr "" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "{0} ليست حالة صالحة" @@ -31290,11 +31443,11 @@ msgid "{0} not found" msgstr "لم يتم العثور على {0}" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} من {1}" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} من {1} ({2} صفوف تحتوي على أطفال)" @@ -31303,7 +31456,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "{0} أو {1}" @@ -31327,6 +31480,10 @@ msgstr "{0} تم حذف السجلات" msgid "{0} records will be exported" msgstr "سيتم تصدير {0} السجلات" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31336,15 +31493,29 @@ msgstr "" msgid "{0} removed their assignment." msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "تم حفظ {0} بنجاح" @@ -31364,11 +31535,11 @@ msgstr "{0} المشتركة هذه الوثيقة مع الجميع" msgid "{0} shared this document with {1}" msgstr "{0} مشاركة هذه الوثيقة مع {1}" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "{0} يجب ألا يكون مطابقًا لـ {1}" @@ -31381,8 +31552,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "{0} مشتركين تم اضافتهم" @@ -31392,7 +31563,7 @@ msgstr "{0} لإيقاف تلقي رسائل البريد الإلكتروني #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "{0} إلى {1}" @@ -31400,7 +31571,7 @@ msgstr "{0} إلى {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} الغى مشاركة هذه الوثيقة مع {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} تم تحديث" @@ -31436,15 +31607,15 @@ msgstr "تمت إضافة {0} {1}" msgid "{0} {1} added to Dashboard {2}" msgstr "تمت إضافة {0} {1} إلى لوحة التحكم {2}" -#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "{0} {1} موجود بالفعل" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "{0} {1} لا يمكن أن يكون {{}}. يجب أن تكون واحدة من \"{3}\"" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "{0} {1} لا يمكن أن يكون تفريعة لأن لديه تفريعات أخرى" @@ -31460,11 +31631,11 @@ msgstr "{0} {1} مرتبط بالمستندات المرسلة التالية: { msgid "{0} {1} not found" msgstr "{0} {1} غير موجود" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: لا يمكن حذف السجل المقدم. يجب عليك {2} إلغاء {3} أولاً." -#: frappe/model/base_document.py:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "{0}، الصف {1}" @@ -31472,79 +31643,79 @@ msgstr "{0}، الصف {1}" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "{0}/{1} مكتمل | يرجى ترك علامة التبويب هذه مفتوحة حتى الانتهاء." -#: frappe/model/base_document.py:1120 +#: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "{0}: '{1}' ({3}) سيتم اقتطاعه، حيث أن الحد الأقصى المسموح به هو {2}" -#: frappe/core/doctype/doctype/doctype.py:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "{0}: لا يمكن تعيين تعديل بدون إلغاء" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "{0}: لا يمكن تعيين معدل إذا لم يتم إرساله" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "{0} : لا يمكن تحديد تعيين بالتأكيد إذا لم يكن قابل للتأكيد" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "{0}: لا يمكن تعيين إلغاء بدون إرسال" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "{0} : لا يمكن تحديد استيراد دون إنشاء" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "{0} : لا يمكن تحديد تأكيد ، الغاء ، تعديل دون كتابة" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 msgid "{0}: Cannot set import as {1} is not importable" msgstr "{0}: لا يمكن تعيين استيراد كما {1} غير قابل للاستيراد" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 +#: 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:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "{0}: لا يمكن تعيين الحقل '{1}' على أنه فريد لأنه يحتوي على قيم غير فريدة" -#: frappe/core/doctype/doctype/doctype.py:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "{0}: الحقل {1} في الصف {2} لا يمكن إخفاؤه وإجباره دون التقصير" -#: frappe/core/doctype/doctype/doctype.py:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "{0}: الحقل {1} من النوع {2} لا يمكن أن يكون إلزاميًا" -#: frappe/core/doctype/doctype/doctype.py:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "{0}: اسم الحقل {1} يظهر عدة مرات في الصفوف {2}" -#: frappe/core/doctype/doctype/doctype.py:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "{0}: لا يمكن أن يكون Fieldtype {1} لـ {2} فريدًا" -#: frappe/core/doctype/doctype/doctype.py:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "{0} : لم يتم تحديد صلاحيات أساسية" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "{0} قاعدة واحدة فقط سمح لها نفس الدور، المستوى و{1}" -#: frappe/core/doctype/doctype/doctype.py:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" msgstr "{0}: يجب أن تكون الخيارات نوع DocType صالحًا للحقل {1} في الصف {2}" -#: frappe/core/doctype/doctype/doctype.py:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "{0}: الخيارات المطلوبة لحقل نوع الرابط أو الجدول {1} في الصف {2}" -#: frappe/core/doctype/doctype/doctype.py:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "{0}: يجب أن تكون الخيارات {1} هي نفس اسم النمط العقلي {2} للحقل {3}" @@ -31552,7 +31723,7 @@ msgstr "{0}: يجب أن تكون الخيارات {1} هي نفس اسم الن msgid "{0}: Other permission rules may also apply" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "{0} : صلاحيات على مستوى 0 يجب تحديده قبل أن يتم تحديد صلاحيات أعلى" @@ -31560,7 +31731,7 @@ msgstr "{0} : صلاحيات على مستوى 0 يجب تحديده قبل أن msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "" @@ -31573,11 +31744,11 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "{0}: تم تعيين {1} على الحالة {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} ضد {2}" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "{0}: لا يمكن فهرسة Fieldtype {1} لـ {2}" @@ -31601,7 +31772,7 @@ msgstr "" msgid "{count} rows selected" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "{{{0}}} غير صالح كأسم حقل. يجب أن يكون {{field_name}}." @@ -31609,11 +31780,11 @@ msgstr "{{{0}}} غير صالح كأسم حقل. يجب أن يكون {{field_na msgid "{} Complete" msgstr "{} اكتمال" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31639,7 +31810,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "{} ليست سلسلة تاريخ صالحة." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/bs.po b/frappe/locale/bs.po index 3fb8e5e99c..5a9280d4df 100644 --- a/frappe/locale/bs.po +++ b/frappe/locale/bs.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-21 21:50\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Bosnian\n" "MIME-Version: 1.0\n" @@ -18,10 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: bs_BA\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr " u vaš pretraživač" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json @@ -61,7 +57,7 @@ msgstr "#{0}" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "${values.doctype_name} je dodan u red čekanja za optimizaciju" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" msgstr "© Frappe Technologies Pvt. doo i saradnici" @@ -74,7 +70,7 @@ msgstr "<head> HTML" msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "'U Globalnoj Pretrazi' nije dozvoljeno za polje {0} tipa {1}" -#: frappe/core/doctype/doctype/doctype.py:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "'U Globalnoj Pretrazi' nije dozvoljeno za tip {0} u redu {1}" @@ -82,19 +78,23 @@ msgstr "'U Globalnoj Pretrazi' nije dozvoljeno za tip {0} u redu {1}" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "'U Prikazu Liste' nije dozvoljeno za polje {0} tipa {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "'U Prikazu Liste' nije dozvoljeno za tip {0} u redu {1}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" msgstr "'Primaoci' nisu navedeni" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "'{0}' nije važeći IBAN broj" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" msgstr "'{0}' nije važeći URL" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "'{0}' nije dozvoljeno za tip {1} u redu {2}" @@ -102,11 +102,11 @@ msgstr "'{0}' nije dozvoljeno za tip {1} u redu {2}" msgid "(Mandatory)" msgstr "(Obavezno)" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "** Neuspješno: {0} do {1}: {2}" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" msgstr "+ Dodaj / Ukloni Polja" @@ -122,7 +122,7 @@ msgstr "0 - Nacrt; 1 - Podneseno; 2 - Otkazano" msgid "0 is highest" msgstr "0 je najviše" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = Tačno i 0 = Netačno" @@ -141,15 +141,11 @@ msgstr "1 Dan" msgid "1 Google Calendar Event synced." msgstr "Sinhroniziran je 1 događaj iz Google Kalendara." -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 Izvještaj" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "1 komentar" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "prije 1 dan" @@ -158,17 +154,17 @@ msgid "1 hour" msgstr "1 sat" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "prije 1 sat" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "prije 1 minutu" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "prije 1 mjesec" @@ -180,37 +176,47 @@ msgstr "1 od 2" msgid "1 record will be exported" msgstr "1 zapis će biti eksportiran" -#: frappe/tests/test_utils.py:711 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "1 red od {0}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "1 red do {0}" + +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "prije 1 sekundu" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "prije 1 sedmicu" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "prije 1 godinu" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "prije 2 sata" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "prije 2 mjeseca" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "prije 2 sedmice" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "prije 2 godine" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "prije 3 minute" @@ -226,7 +232,7 @@ msgstr "4 sata" msgid "5 Records" msgstr "5 Zapisa" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "prije 5 dana" @@ -246,6 +252,15 @@ msgstr "<" msgid "<=" msgstr "<=" +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "\n" +" Kliknite ovdje da saznate više o autentifikaciji zasnovanoj na tokenima\n" +"" + #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "{0} nije važeći URL" @@ -255,6 +270,16 @@ msgstr "{0} nije važeći URL" msgid "
Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
" msgstr "
Ne ažuriraj jer to može pokvariti vašu formu. Koristite Prilagodi Prikaz Forme i Prilagođena Polja da postavite svojstva!
" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "

Zatražite datoteku koja sadrži vaše lične podatke (PII) koji su sačuvani na našem sistemu. Datoteka će biti u JSON formatu i bit će vam poslana putem e-pošte. Ako želite da se vaši PII izbrišu iz našeg sistema, molimo vas da podnesete zahtjev za brisanje podataka.

" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "

Pošaljite zahtjev za brisanje vašeg računa i ličnih podataka (PII) koji su pohranjeni u našem sistemu. Primit ćete e-poštu za potvrdu vašeg zahtjeva. Nakon što zahtjev bude potvrđen, mi ćemo se pobrinuti za brisanje vaših PII podataka. Ako samo želite provjeriti koje smo PII podatke pohranili, možete zatražiti svoje podatke.

" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -640,7 +665,7 @@ msgstr "

Za interakciju s gornjim HTML-om morat ćete koristiti `root_element` "some_class_element.textContent = \"Novi sadržaj\";\n" "" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

" msgstr "

Vaša OTP tajna na {0} je poništena. Ako niste izvršili ovo resetiranje i niste ga zatražili, odmah kontaktirajte svog administratora sistema.

" @@ -730,7 +755,7 @@ msgstr ">" msgid ">=" msgstr ">=" -#: frappe/core/doctype/doctype/doctype.py:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "Ime DocType-a treba da počinje slovom i može se sastojati samo od slova, brojeva, razmaka, donjih crta i crtica" @@ -739,15 +764,16 @@ msgstr "Ime DocType-a treba da počinje slovom i može se sastojati samo od slov msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "Instanca Sistema može funkcionirati kao OAuth klijent, resurs ili server za autorizaciju. Ovaj DocType sadrži postavke vezane za sva tri." -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" -msgstr "Istaknuta objava mora imati naslovnu sliku" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "Link za preuzimanje s vašim podacima bit će poslan na adresu e-pošte povezanu s vašim računom." #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "Polje s imenom {0} već postoji u {1}" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "Datoteka s istim imenom {} već postoji" @@ -760,7 +786,7 @@ msgstr "Lista resursa kojima će klijentska aplikacija imati pristup nakon što msgid "A new account has been created for you at {0}" msgstr "Za vas je kreiran novi račun na {0}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "Ponavljajući {0} {1} je kreiran za vas putem automatskog ponavljanja {2}." @@ -861,13 +887,17 @@ msgstr "API Krajnja Tačka" msgid "API Endpoint Args" msgstr "API Argumenti Krajnje Tačke" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "Argumenti krajnje API tačke trebaju biti važeći JSON" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -886,6 +916,10 @@ msgstr "API Ključ i tajna za interakciju s relejnim serverom. Oni će se automa msgid "API Key cannot be regenerated" msgstr "API Ključ se ne može regenerirati" +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "API Ključevi" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -906,7 +940,7 @@ msgstr "Zapisnik API Zahtjeva" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -953,6 +987,20 @@ msgstr "Preostalo je oko {0} minuta" msgid "About {0} seconds remaining" msgstr "Preostalo je oko {0} sekundi" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "Prihvati Poziv" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "Prihvaćeno" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "Prihvaćen" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -978,7 +1026,7 @@ msgstr "Pristupni Token" msgid "Access Token URL" msgstr "URL Pristupnog Tokena" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Pristup nije dozvoljen sa ove IP adrese" @@ -1042,7 +1090,7 @@ msgstr "Radnja / Ruta" msgid "Action Complete" msgstr "Radnja Završena" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "Radnja Neuspješna" @@ -1094,7 +1142,7 @@ msgstr "Radnja {0} nije uspjela {1} {2}. Pogledaj {3}" #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Radnje" @@ -1151,7 +1199,7 @@ msgstr "Zapisnik Aktivnosti" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -1162,7 +1210,7 @@ msgstr "Zapisnik Aktivnosti" msgid "Add" msgstr "Dodaj" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "Dodaj / Ukloni Kolone" @@ -1174,7 +1222,7 @@ msgstr "Dodaj / Ažuriraj" msgid "Add A New Rule" msgstr "Dodaj Novo Pravilo" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Dodaj Prilog" @@ -1194,7 +1242,7 @@ msgstr "Dodaj Ivicu na Dnu" msgid "Add Border at Top" msgstr "Dodaj Ivicu na Vrh" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "Dodaj Karticu na Nadzornu Tablu" @@ -1207,10 +1255,10 @@ msgid "Add Child" msgstr "Dodaj Podređeni" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "Dodaj Kolonu" @@ -1269,7 +1317,7 @@ msgstr "Dodaj Učesnike" msgid "Add Query Parameters" msgstr "Dodaj Parametre Upita" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "Dodaj Uloge" @@ -1302,12 +1350,12 @@ msgstr "Dodaj Pretplatnike" msgid "Add Tags" msgstr "Dodaj Oznake" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Dodaj Oznake" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "Dodaj Šablon" @@ -1396,7 +1444,7 @@ msgstr "Dodaj novu karticu" msgid "Add page break" msgstr "Dodaj prijelom stranice" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "Dodajte skriptu za Podređenu Tabelu" @@ -1434,7 +1482,7 @@ msgstr "Dodajte ovoj aktivnosti slanjem e-pošte na adresu {0}" msgid "Add {0}" msgstr "Dodaj {0}" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" msgstr "{0}" @@ -1477,6 +1525,7 @@ msgstr "Dodatne Dozvole" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1485,6 +1534,7 @@ msgstr "Adresa" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "Adresna Linija 1" @@ -1492,6 +1542,7 @@ msgstr "Adresna Linija 1" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "Adresna Linija 2" @@ -1542,7 +1593,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:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "Administracija" @@ -1556,7 +1607,6 @@ msgstr "Administracija" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1569,11 +1619,11 @@ msgstr "Administracija" msgid "Administrator" msgstr "Administrator" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "Administrator je prijavljen" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Administrator je pristupio {0} {1} putem IP adrese {2}." @@ -1594,8 +1644,8 @@ msgstr "Napredno" msgid "Advanced Control" msgstr "Napredna Kontrola" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" msgstr "Napredna pretraga" @@ -1654,7 +1704,7 @@ msgstr "Nakon Podnošenja" msgid "After Submit" msgstr "Nakon Podnošenja" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "Agregatno Polje je obavezno za kreiranje kartice sa brojevima" @@ -1681,11 +1731,11 @@ msgstr "Upozorenje" msgid "Alerts and Notifications" msgstr "Upozorenja i Obavještenja" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "Alias ne može biti SQL ključna riječ: {0}" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "Alias mora biti niz" @@ -1750,7 +1800,7 @@ msgstr "Sve slike priložene Dijaprojekciji Web Stranice trebaju biti javne" msgid "All Records" msgstr "Svi Zapisi" -#: frappe/public/js/frappe/form/form.js:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "Sva Podnošenja" @@ -1810,8 +1860,8 @@ msgstr "Dozvoli Grupno Uređivanje" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " -msgstr "Broj Dozvoljnih Uzastopnih Pokušaje Prijave " +msgid "Allow Consecutive Login Attempts" +msgstr "Broj Dozvoljnih Uzastopnih Pokušaje Prijave" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 msgid "Allow Google Calendar Access" @@ -1831,11 +1881,6 @@ msgstr "Dozvoli Gostu" msgid "Allow Guest to View" msgstr "Dozvoli Gostu da Gleda" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "Dozvoli Gostu da Komentariše" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1884,7 +1929,7 @@ msgid "Allow Print for Cancelled" msgstr "Dozvoli Ispis za Otkazano" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "Dozvoli Ispis za Nacrt" @@ -2117,7 +2162,7 @@ msgstr "Omogućava prikazivanje omogućenog osnovnog URL-a ključa za prijavu na msgid "Allows skipping authorization if a user has active tokens." msgstr "Omogućava preskakanje autorizacije ako korisnik ima aktivne tokene." -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "Već Registrovan" @@ -2125,11 +2170,11 @@ msgstr "Već Registrovan" msgid "Already in the following Users ToDo list:{0}" msgstr "Već na sljedećoj ToDo listi Korisnika:{0}" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "Takođe se dodaje polje zavisne valute {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "Takođe se dodaje polje statusne zavisnosti {0}" @@ -2138,6 +2183,12 @@ msgstr "Takođe se dodaje polje statusne zavisnosti {0}" msgid "Alternative Email ID" msgstr "Alternativni ID e-pošte" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "Uvijek" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2189,10 +2240,8 @@ msgstr "Izmijenjene postavke imenovanja dokumenata" msgid "Amended Documents" msgstr "Izmijenjeni Dokumenti" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "Izmijenjeno Od" @@ -2216,6 +2265,11 @@ msgstr "Izmjena nije Dozvoljena" msgid "Amendment naming rules updated." msgstr "Pravila Izmjene Imenovanje ažurirana" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "E-pošta za potvrdu vašeg zahtjeva poslana je na vašu adresu e-pošte. Molimo vas da potvrdite svoj zahtjev kako biste dovršili proces." + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "Došlo je do greške prilikom postavljanja standard Postavki Sesije" @@ -2309,10 +2363,12 @@ msgid "App Logo" msgstr "Logotip aplikacije" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2383,6 +2439,10 @@ msgstr "Naziv Aplikacije" msgid "Application Version" msgstr "Verzija Aplikacije" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "Aplikacija nije instalirana" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2392,7 +2452,7 @@ msgstr "Primijenjeno na" msgid "Apply" msgstr "Primjeni" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Primijeni Pravilo Dodjele" @@ -2440,7 +2500,7 @@ msgstr "Primijenite ovo pravilo ako je Korisnik Vlasnik" msgid "Apply to all Documents Types" msgstr "Primijeni na sve Tipove Dokumenata" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "Primjenjuje se: {0}" @@ -2473,7 +2533,11 @@ msgstr "Arhivirano" msgid "Archived Columns" msgstr "Arhivirane Kolone" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "Jeste li sigurni da želite otkazati pozivnicu?" + +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "Jeste li sigurni da želite izbrisati zadatke?" @@ -2501,11 +2565,15 @@ 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 "Jeste li sigurni da želite izbrisati karticu? Svi odjeljci zajedno s poljima na kartici bit će premješteni na prethodnu karticu." -#: frappe/public/js/frappe/web_form/web_form.js:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "Jeste li sigurni da želite izbrisati ovaj zapis?" + +#: frappe/public/js/frappe/web_form/web_form.js:191 msgid "Are you sure you want to discard the changes?" msgstr "Jeste li sigurni da želite odbaciti promjene?" -#: frappe/public/js/frappe/views/reports/query_report.js:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "Jeste li sigurni da želite generisati novi izvještaj?" @@ -2513,7 +2581,7 @@ msgstr "Jeste li sigurni da želite generisati novi izvještaj?" msgid "Are you sure you want to merge {0} with {1}?" msgstr "Jeste li sigurni da želite spojiti {0} sa {1}?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "Jeste li sigurni da želite nastaviti?" @@ -2568,6 +2636,12 @@ msgstr "Budući da je dijeljenje dokumenata onemogućeno, dajte im potrebne dozv msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "Prema vašem zahtjevu, vaš račun i podaci na {0} povezani sa e-poštom {1} su trajno izbrisani" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "Pitaj" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2577,7 +2651,7 @@ msgstr "Dodijeli Uslov" msgid "Assign To" msgstr "Dodijeli" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Dodijeli" @@ -2640,6 +2714,11 @@ msgstr "Dodijeljeno" msgid "Assigned To/Owner" msgstr "Dodijeljeno/Odgovorni" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "Dodijeljeni" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "Dodjeljuje se..." @@ -2709,7 +2788,13 @@ msgstr "Dodjela {0} je uklonjena od strane {1}" msgid "Assignments" msgstr "Dodjele" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "Asinhroni" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "Najmanje jedna kolona je potrebna da se prikaže u mreži." @@ -2789,7 +2874,7 @@ msgstr "U Prilogu Polja" msgid "Attached To Name" msgstr "Priloženo Imenu" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "Priloženo Imenu mora biti niz ili cijeli broj" @@ -2805,7 +2890,7 @@ msgstr "Prilog" msgid "Attachment Limit (MB)" msgstr "Ograničenje Priloga (MB)" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "Dostignuto Ograničenje Priloga" @@ -2823,15 +2908,15 @@ msgstr "Prilog Uklonjen" #. Label of the attachments (Code) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "Prilozi" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "Pokušaj povezivanja na QZ Tray..." -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "Pokušaj pokretanja QZ Tray..." @@ -2854,6 +2939,10 @@ msgstr "Revizijski Trag" msgid "Auth URL Data" msgstr "Auth URL Podaci" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "Podaci URL autorizacije trebaju biti važeći JSON" + #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authenticate as Service Principal" @@ -2871,8 +2960,8 @@ msgid "Authentication" msgstr "Autentifikacija" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " -msgstr "Aplikacije Autentifikaciju koje možete koristiti su: " +msgid "Authentication Apps you can use are:" +msgstr "Aplikacije Autentifikaciju koje možete koristiti su:" #: frappe/email/doctype/email_account/email_account.py:339 msgid "Authentication failed while receiving emails from Email Account: {0}." @@ -2985,11 +3074,11 @@ msgstr "Automatsko Ponavljanje" msgid "Auto Repeat Day" msgstr "Dan Automatskog Ponavljanja" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "Dan Automatskog Ponavljanja{0} {1} je ponovljen." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "Automatsko Ponavljanje Kreiranja Dokumenta Neuspješno" @@ -2997,11 +3086,16 @@ msgstr "Automatsko Ponavljanje Kreiranja Dokumenta Neuspješno" msgid "Auto Repeat Schedule" msgstr "Raspored Automatskog Ponavljanja" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "Korisnik Automatskog Ponavljanja" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "Automatsko Ponavljanje kreirano za ovaj dokument" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "Automatsko Ponavljanje neuspješno za {0}" @@ -3045,7 +3139,7 @@ msgstr "Automatsko praćenje dokumenata koje komentarišete" msgid "Auto follow documents that you create" msgstr "Automatsko praćenje dokumenata koje kreirate" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "Automatsko ponavljanje nije uspjelo. Omogući automatsko ponavljanje nakon rješavanja problema." @@ -3093,7 +3187,7 @@ msgstr "Automatsko povezivanje može se aktivirati samo ako je omogućeno Dolazn msgid "Automatically Assign Documents to Users" msgstr "Automatski dodijeli dokumente korisnicima" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "Automatski primijenjen filter za nedavne podatke. Ovo ponašanje možete onemogućiti iz postavki prikaza liste." @@ -3107,11 +3201,6 @@ msgstr "Automatski izbriši račun u roku od (sati)" msgid "Automation" msgstr "Automatizacija" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "Avatar" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3383,8 +3472,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:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "Na Osnovu" @@ -3501,10 +3590,8 @@ msgstr "Binarno Zapisivanje" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "Biografija" @@ -3534,64 +3621,6 @@ msgstr "Blok Moduli" msgid "Blocked" msgstr "Blokirano" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "Blog" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "Kategorija Bloga" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "Blog Uvod" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "Blog Predstavljanje" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "Blog Objava" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "Postavke bloga" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "Naziv Bloga" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "Bloger" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3688,13 +3717,6 @@ msgstr "Marka je ono što se pojavljuje u gornjem lijevom uglu alatne trake. Ako msgid "Breadcrumbs" msgstr "Mrvice" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "Pregledaj po Kategoriji" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3752,15 +3774,15 @@ msgstr "Grupno Brisanje" msgid "Bulk Edit" msgstr "Grupno Uređivanje" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "Grupno uređivanje {0}" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" msgstr "Grupna operacija nije uspjela" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "Grupna operacija uspješna" @@ -3775,7 +3797,7 @@ msgstr "Masovni izvoz u PDF" msgid "Bulk Update" msgstr "Masovno Ažuriranje" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "Grupno odobrenje podržava samo do 500 dokumenata." @@ -3787,7 +3809,7 @@ msgstr "Grupna operacija je stavljena u red čekanja u pozadini." msgid "Bulk operations only support up to 500 documents." msgstr "Grupne operacije podržavaju samo do 500 dokumenata." -#: frappe/model/workflow.py:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "Grupni {0} je stavljen u red čekanja u pozadini." @@ -3917,16 +3939,6 @@ msgstr "CSS selektor za element koji želite da istaknete." msgid "CSV" msgstr "CSV" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "Oznaka Poziva na Akciju" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "URL Poziva na Akciju" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3977,11 +3989,6 @@ msgstr "Poziv na Akciju" msgid "Call To Action URL" msgstr "URL Poziva na Akciju" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "Poziv na Akciju" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -3999,7 +4006,7 @@ msgid "Camera" msgstr "Kamera" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -4035,7 +4042,7 @@ msgstr "Može Pisati" msgid "Can not rename as column {0} is already present on DocType." msgstr "Ne može se preimenovati jer je kolona {0} već prisutna na DocType." -#: frappe/core/doctype/doctype/doctype.py:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "Može se promijeniti na/iz pravila imenovanja automatskog povećanja samo kada nema podataka u doctype" @@ -4059,14 +4066,15 @@ msgstr "Nije moguće preimenovati {0} u {1} jer {0} ne postoji." #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "Otkaži" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Otkaži" @@ -4084,16 +4092,18 @@ msgstr "Otkaži" msgid "Cancel All Documents" msgstr "Otkaži Sve Dokumente" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Otkaži {0} dokumenta?" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -4131,11 +4141,11 @@ msgstr "Nije Moguće Preuzeti Vrijednosti" msgid "Cannot Remove" msgstr "Nije Moguće Ukloniti" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "Nije Moguće Ažurirati Nakon Podnošenja" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "Nije moguće pristupiti putu datoteke {0}" @@ -4143,7 +4153,7 @@ msgstr "Nije moguće pristupiti putu datoteke {0}" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "Nije moguće otkazati prije podnošenja dok se prelazi iz {0} Stanja u {1} Stanje" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "Nije moguće otkazati prije podnošenja. Pogledaj Tranzicija {0}" @@ -4151,11 +4161,11 @@ msgstr "Nije moguće otkazati prije podnošenja. Pogledaj Tranzicija {0}" msgid "Cannot cancel {0}." msgstr "Nije moguće otkazati {0}." -#: frappe/model/document.py:1013 +#: frappe/model/document.py:1017 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "Nije moguće promijeniti status dokumenta iz 0 (Nacrt) u 2 (Otkazano)" -#: frappe/model/document.py:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "Nije moguće promijeniti status dokumenta sa 1 (Podneseno) u 0 (Nacrt)" @@ -4163,11 +4173,11 @@ msgstr "Nije moguće promijeniti status dokumenta sa 1 (Podneseno) u 0 (Nacrt)" msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "Nije moguće promijeniti stanje otkazanog dokumenta ({0} State)" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "Nije moguće promijeniti stanje Otkazanog Dokumenta. Prijelazni red {0}" -#: frappe/core/doctype/doctype/doctype.py:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "Nije moguće promijeniti u/iz automatskog povećanje automatskog imenovanja u Prilagodi Obrazac" @@ -4179,11 +4189,11 @@ msgstr "Nije moguće kreirati {0} naspram podređenog dokumenta: {1}" msgid "Cannot create private workspace of other users" msgstr "Nije moguće kreirati privatni radni prostor drugih korisnika" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "Nije moguće izbrisati mape Početna i Prilozi" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "Nije moguće izbrisati ili otkazati jer je {0} {1} povezan sa {2} {3} {4}" @@ -4218,7 +4228,7 @@ msgstr "Nije moguće izbrisati sistemski generisano polje {0}. msgid "Cannot delete {0}" msgstr "Nije moguće izbrisati {0}" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" msgstr "Ne može se izbrisati {0} jer ima podređene članove" @@ -4226,7 +4236,7 @@ msgstr "Ne može se izbrisati {0} jer ima podređene članove" msgid "Cannot edit Standard Dashboards" msgstr "Nije moguće uređivati Standardne Nadzorne Table" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "Nije moguće uređivati Standardno Obavještenje. Za uređivanje, onemogućite ovo i duplicirajte" @@ -4238,7 +4248,7 @@ msgstr "Nije moguće uređivati Standardne Grafikone" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "Nije moguće uređivati standard izvještaj.Dupliciraj i kreiraj novi izvještaj" -#: frappe/model/document.py:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "Nije moguće uređivati otkazani dokument" @@ -4246,8 +4256,8 @@ msgstr "Nije moguće uređivati otkazani dokument" msgid "Cannot edit filters for standard charts" msgstr "Nije moguće uređivati filtere za standardne grafikone" -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "Nije moguće uređivati filtere za standardne numeričke kartice" @@ -4255,27 +4265,27 @@ msgstr "Nije moguće uređivati filtere za standardne numeričke kartice" msgid "Cannot edit standard fields" msgstr "Nije moguće uređivati standardna polja" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "Nije moguće omogućiti {0} za tip dokumenta koji se ne može podnijeti" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "Nije moguće pronaći datoteku {} na disku" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "Nije moguće dobiti sadržaj mape" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:884 msgid "Cannot have multiple printers mapped to a single print format." msgstr "Nije moguće imati više pisača mapiranih u jedan format pisača." -#: frappe/public/js/frappe/form/grid.js:1132 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "Nije moguće uvesti tabelu sa više od 5000 redova." -#: frappe/model/document.py:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "Nije moguće povezati otkazani dokument: {0}" @@ -4287,11 +4297,11 @@ msgstr "Nije moguće mapirati jer sljedeći uslov nije ispunjen:" msgid "Cannot match column {0} with any field" msgstr "Nije moguće uskladiti kolonu {0} ni sa jednim poljem" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "Nije moguće pomjeriti red" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "Nije moguće ukloniti ID polje" @@ -4299,7 +4309,7 @@ msgstr "Nije moguće ukloniti ID polje" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "Ne može se postaviti dopuštenje 'Izvještaj' ako je postavljena dozvola 'Samo ako je Kreator'" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "Nije moguće postaviti Obavijest s događajem {0} za Doctype {1}" @@ -4316,11 +4326,11 @@ msgstr "Nije moguće podnijeti {0}." msgid "Cannot update {0}" msgstr "Nije moguće ažurirati {0}" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" -msgstr "Nije moguće koristiti podupit po redoslijedu" +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." +msgstr "Ovdje se ne može koristiti podupit." -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "Ne može se koristiti {0} u redoslijedu/grupiranju po" @@ -4388,15 +4398,6 @@ msgstr "Centar" 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 fakture, ne bi se trebali mijenjati nakon što su finalni. Finalno stanje za takve dokumente naziva se Podešeno. Možete ograničiti koje uloge mogu podnositi." -#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "Integritet Lanca" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "Lančani Hash" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4434,9 +4435,9 @@ msgstr "Promjeni Format Ispisivanja" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
\n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " +"Warning: Incorrectly updating counters can prevent documents from getting created." msgstr "Promijenite početni / tekući redni broj postojeće serije.
\n\n" -"Upozorenje: Neispravno ažuriranje brojača može spriječiti kreiranje dokumenata. " +"Upozorenje: Neispravno ažuriranje brojača može spriječiti kreiranje dokumenata." #. Label of the changed_at (Datetime) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -4505,7 +4506,7 @@ msgstr "Izvor Grafikona" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "Tip Grafikona" @@ -4538,7 +4539,7 @@ msgstr "Chat" msgid "Check" msgstr "Provjeri" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "Provjeri URL zahtjeva" @@ -4546,7 +4547,7 @@ msgstr "Provjeri URL zahtjeva" msgid "Check columns to select, drag to set order." msgstr "Označite kolone za odabir, povucite da postavite redoslijed." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "Provjerite Zapisnik Grešaka za više informacija: {0}" @@ -4587,11 +4588,6 @@ msgstr "Ako ovo potvrdite, stranica će biti objavljena na vašoj web stranici i msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "Ako ovo potvrdite, prikazat će se tekstualno područje u kojem možete napisati prilagođeni javascript koji će se izvoditi na ovoj stranici." -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "Verzija Kontrolne Sume" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "Podređeni DocTypes nisu dozvoljeni" @@ -4601,17 +4597,17 @@ msgstr "Podređeni DocTypes nisu dozvoljeni" msgid "Child Doctype" msgstr "Podređeni Doctype" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "Podređena tabela {0} za polje {1}" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Podređene tabele su prikazane kao mreža u drugim DocTypes" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "Podređena polja upita za '{0}' moraju biti lista ili torka." @@ -4640,6 +4636,7 @@ msgid "Choose authentication method to be used by all users" msgstr "Odaberi način autentifikacije koji će koristiti svi korisnici" #. 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 msgid "City" msgstr "Grad" @@ -4654,7 +4651,7 @@ msgstr "Grad/Mjesto" msgid "Clear" msgstr "Očisti" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "Očisti & Dodaj Šablon" @@ -4666,7 +4663,7 @@ msgstr "Očisti & Dodaj Šablon" msgid "Clear All" msgstr "Obriši Sve" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Obriši Dodjelu" @@ -4692,7 +4689,7 @@ msgstr "Očisti Zapisnike Nakon (dana)" msgid "Clear User Permissions" msgstr "Obriši Korisničke Dozvole" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "Obrišite poruku e-pošte i dodajte šablon" @@ -4704,11 +4701,15 @@ msgstr "Brisanje datuma završetka jer ne može biti u prošlosti za objavljene msgid "Click On Customize to add your first widget" msgstr "Klikni Prilagodi kako biste dodali svoj prvi vidžet" -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "Kliknite ispod da biste započeli:" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "Klikni ovdje" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "Klikni na datoteku da biste je odabrali." @@ -4739,24 +4740,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "Klikni na {0} za generisanje tokena osvježavanja." #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "Klikni na tabelu za uređivanje" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "Klikni da Postavite Dinamičke Filtere" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "Klikni da Postavite Filtere" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "Klikni da sortirate po {0}" @@ -4934,7 +4935,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Sklopi" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Sklopi Sve" @@ -4989,7 +4990,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:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5045,11 +5046,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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "Širina Kolone" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "Širina kolone ne može biti nula." @@ -5076,7 +5077,7 @@ msgstr "Kolone" msgid "Columns / Fields" msgstr "Kolone / Polja" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "Kolone zasnovane na" @@ -5118,16 +5119,6 @@ msgstr "Tip Komentara" msgid "Comment can only be edited by the owner" msgstr "Komentar može uređivati samo vlasnik" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "Ograničenje komentara" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "Ograničenje komentara po satu" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "Publicitet komentara može ažurirati samo originalni autor ili Upravitelj Systema." @@ -5135,7 +5126,7 @@ msgstr "Publicitet komentara može ažurirati samo originalni autor ili Upravite #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "Komentari" @@ -5144,7 +5135,7 @@ msgstr "Komentari" msgid "Comments and Communications will be associated with this linked document" msgstr "Komentari i Konverzacije će biti povezani sa ovim povezanim dokumentom" -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "Komentari ne mogu imati veze ili adrese e-pošte" @@ -5216,12 +5207,12 @@ msgid "Company Name" msgstr "Naziv Kompanije" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "Uporedite verzije" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "Upozorenje Kompilacije" @@ -5301,8 +5292,8 @@ msgstr "Komprimirano" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5316,6 +5307,11 @@ msgstr "Uslov" msgid "Condition JSON" msgstr "JSON Uslov" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "Tip Uslova" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5341,11 +5337,11 @@ msgstr "Konfiguracija" msgid "Configuration" msgstr "Konfiguracija" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "Konfiguriši Grafikon" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "Konfiguriši Kolone" @@ -5372,7 +5368,7 @@ msgstr "Konfiguriši kako će se izmijenjeni dokumenti imenovati.
\n\n" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "Konfiguriši različite aspekte načina na koji funkcionira imenovanje dokumenta kao što je imenovanje serije, trenutni brojač." -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Potvrdi" @@ -5391,7 +5387,7 @@ msgstr "Potvrdi Pristup" msgid "Confirm Deletion of Account" msgstr "Potvrdi Brisanje Računa" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "Potvrdi Novu Lozinku" @@ -5418,7 +5414,7 @@ msgstr "Potvrđeno" msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "Čestitamo na završetku podešavanja modula. Ako želite da saznate više, možete pogledati dokumentaciju ovdje." -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "Poveži sa {}" @@ -5436,8 +5432,8 @@ msgstr "Povezana Aplikacija" msgid "Connected User" msgstr "Povezani Korisnik" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "Povezano na QZ Tray!" @@ -5488,6 +5484,10 @@ msgstr "Ograničenja" msgid "Contact" msgstr "Kontakt" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
{0}" +msgstr "Kontakt/e-pošta nije pronađena. Nije dodan učesnik za -
{0}" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5545,15 +5545,13 @@ msgstr "Sadrži {0} sigurnosne ispravke" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5561,24 +5559,12 @@ msgstr "Sadrži {0} sigurnosne ispravke" msgid "Content" msgstr "Sadržaj" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "Sadržaj (HTML)" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "Sadržaj (Markdown)" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "Hash Sadržaja" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "Tip Sadržaja" @@ -5646,7 +5632,7 @@ msgstr "Kopiraj Vezu" msgid "Copy embed code" msgstr "Kopiraj ugrađen kod" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "Greška pri kopiranju u međuspremnik" @@ -5654,12 +5640,16 @@ msgstr "Greška pri kopiranju u međuspremnik" msgid "Copy to Clipboard" msgstr "Kopiraj u Međuspremnik" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "Kopiraj token u međuspremnik" + #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" msgstr "Autorska prava" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "Osnovni DocTypes se ne mogu prilagoditi." @@ -5667,7 +5657,7 @@ msgstr "Osnovni DocTypes se ne mogu prilagoditi." 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:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "Ispravna verzija:" @@ -5675,7 +5665,7 @@ msgstr "Ispravna verzija:" msgid "Could not connect to outgoing email server" msgstr "Povezivanje sa serverom odlazne e-pošte nije uspjelo" -#: frappe/model/document.py:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "Nije moguće pronaći {0}" @@ -5683,15 +5673,15 @@ msgstr "Nije moguće pronaći {0}" msgid "Could not map column {0} to field {1}" msgstr "Nije moguće mapirati kolonu {0} na polje {1}" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "Nije moguće parsirati polje: {0}" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " -msgstr "Nije moguće pokrenuti: " +msgid "Could not start up:" +msgstr "Nije moguće pokrenuti:" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "Nije moguće spremiti, provjerite podatke koje ste unijeli" @@ -5736,13 +5726,14 @@ msgstr "Brojač" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "Zemlja" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "Kod Zemlje Obavezan" @@ -5760,7 +5751,7 @@ msgstr "Opština" #: frappe/public/js/frappe/utils/number_systems.js:45 msgctxt "Number system" msgid "Cr" -msgstr "Cr" +msgstr "Potražuje" #. Label of the create (Check) field in DocType 'Custom DocPerm' #. Label of the create (Check) field in DocType 'DocPerm' @@ -5774,13 +5765,13 @@ msgstr "Cr" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Kreiraj" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "Kreiraj & Nastavi" @@ -5794,7 +5785,7 @@ 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:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "Kreiraj Grafikon" @@ -5828,12 +5819,12 @@ msgstr "Kreiraj Zapisnik" msgid "Create New" msgstr "Kreiraj" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Kreiraj" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "Kreiraj Novi DocType" @@ -5841,7 +5832,7 @@ msgstr "Kreiraj Novi DocType" msgid "Create New Kanban Board" msgstr "Kreiraj Novu Natpisnu Tablu" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "Kreiraj Korisničku e-poštu" @@ -5853,7 +5844,7 @@ msgstr "Kreiraj Novi Format" msgid "Create a Reminder" msgstr "Kreiraj Podsjetnik" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "Kreiraj ..." @@ -5861,11 +5852,11 @@ msgstr "Kreiraj ..." msgid "Create a new record" msgstr "Kreiraj novi zapis" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "+ {0}" @@ -5881,7 +5872,7 @@ msgstr "Kreiraj ili Uredi Format Ispisa" msgid "Create or Edit Workflow" msgstr "Kreiraj ili Uredi Radni Tok" -#: frappe/public/js/frappe/list/list_view.js:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "+ {0}" @@ -5891,7 +5882,7 @@ msgstr "Kreiraj Radni Tok vizuelno koristeći Alat Razvoja Radnog Toka." #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "Kreirano" @@ -5907,7 +5898,7 @@ msgstr "Kreirano" msgid "Created By" msgstr "Kreirano Od" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "Kreirano Prilagođeno Polje {0} u {1}" @@ -5919,7 +5910,7 @@ msgstr "Kreirano Prilagođeno Polje {0} u {1}" msgid "Created On" msgstr "Kreirano" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "Kreiranje {0}" @@ -6228,7 +6219,7 @@ msgstr "Prilagođena metoda get_list za {0} mora vratiti objekt QueryBuilder ili #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "Prilagođeno?" @@ -6256,14 +6247,14 @@ msgstr "Poništi Prilagođavanja" msgid "Customizations for {0} exported to:
{1}" msgstr "Prilagođavanja za {0} eksportirana u:
{1}" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "Prilagodi" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "Prilagodi" @@ -6282,7 +6273,7 @@ msgstr "Prilagodi nadzornu ploču" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "Prilagodi Formu" @@ -6360,7 +6351,7 @@ msgstr "Dnevno" msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "Dnevni sažetak događaja se šalje za događaje u kalendaru gdje se postavljaju podsjetnici." -#: frappe/desk/doctype/event/event.py:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "Dnevni događaji bi trebali završiti istog dana." @@ -6407,7 +6398,7 @@ msgstr "Tamna Tema" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "Nadzorna Tabla" @@ -6466,7 +6457,6 @@ msgstr "Nadzorne Table" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6479,7 +6469,6 @@ msgstr "Nadzorne Table" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6515,7 +6504,7 @@ msgstr "Zapisnik Uvoza Podataka" msgid "Data Import Template" msgstr "Šablon Uvoza Podataka" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "Predugi Podaci" @@ -6546,7 +6535,7 @@ msgstr "Iskorištenost Veličine Reda Tabele Baze Podataka" msgid "Database Storage Usage By Tables" msgstr "Pohranjena Iskorištenost Baze Podataka po Tabelama" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "Ograničenje Veličine Reda Tabele Baze Podataka" @@ -6684,11 +6673,11 @@ msgstr "Poštovani {0}" msgid "Debug Log" msgstr "Zapisnik Otklanjanja Grešaka" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "Decimalni razdjelnik mora biti '.' kada je Ponuda postavljena na Nenumeričko" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "Decimalni Razdjelnik mora biti jedan znak" @@ -6850,11 +6839,11 @@ msgstr "Standard Radni Prostor" msgid "Default display currency" msgstr "Standard Valuta" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "Standard za tip polja 'Provjeri' {0} mora biti ili '0' ili '1'" -#: frappe/core/doctype/doctype/doctype.py:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 msgid "Default value for {0} must be in the list of options." msgstr "Standard vrijednost za {0} mora biti na listi opcija." @@ -6888,6 +6877,12 @@ msgstr "Standard Postavke Ažurirane" msgid "Defines actions on states and the next step and allowed roles." msgstr "Definira akcije nad stanjima, sljedeći korak i dozvoljene uloge." +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "Definiše koliko dugo se izvezeni izvještaji poslani putem e-pošte čuvaju u sistemu. Starije datoteke će biti automatski izbrisane." + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6905,22 +6900,27 @@ msgstr "Odgođeno" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_permission/user_permission_list.js:189 -#: frappe/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Izbriši" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Izbriši" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "Izbriši" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "Izbriši Račun" @@ -6929,6 +6929,12 @@ msgstr "Izbriši Račun" msgid "Delete All" msgstr "Izbriši Sve" +#. Label of the delete_background_exported_reports_after (Int) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Delete Background Exported Reports After (Hours)" +msgstr "Obriši izvještaje izvezene u pozadini nakon (sati)" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6938,7 +6944,7 @@ msgstr "Izbriši Kolonu" msgid "Delete Data" msgstr "Izbriši Podatke" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "Izbriši Natpisnu Tablu" @@ -6952,7 +6958,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Izbriši Karticu" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "Izbriši i Generiši Novi" @@ -6961,7 +6967,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "Izbriši Kolonu" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "Izbriši komentar?" @@ -6994,12 +7000,12 @@ msgstr "Izbriši karticu" msgid "Delete this record to allow sending to this email address" msgstr "Izbrišite ovaj zapis da omogućite slanje na ovu adresu e-pošte" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "Trajno izbriši stavku {0}?" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Trajno izbriši {0} stavke?" @@ -7035,11 +7041,15 @@ msgstr "Izbrisani Dokumenti" msgid "Deleted Name" msgstr "Izbrisano Ime" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "Svi dokumenti su uspješno izbrisani" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Izbrisano!" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "Brisanje {0} u toku" @@ -7054,8 +7064,8 @@ msgstr "Brisanje {0} u toku..." #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " -msgstr "Koraci Brisanja " +msgid "Deletion Steps" +msgstr "Koraci Brisanja" #: frappe/core/doctype/page/page.py:110 #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 @@ -7071,7 +7081,7 @@ msgstr "Opcije Razdjelnika" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "Detekcija razdjelnika nije uspjela. Pokušajte omogućiti prilagođene razdjelnike i prilagodite opcije razdjelnika prema svojim podacima." -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "Razdjelnik mora biti jedan znak" @@ -7098,7 +7108,7 @@ msgstr "Odjel" msgid "Dependencies" msgstr "Zavisnosti" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "Zavisnosti & Licence" @@ -7133,7 +7143,6 @@ msgstr "Podređeni Od (uključujući)" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -7154,7 +7163,6 @@ msgstr "Podređeni Od (uključujući)" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -7164,11 +7172,6 @@ msgstr "Podređeni Od (uključujući)" msgid "Description" msgstr "Opis" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "Opis za stranicu sa listom, u običnom tekstu, samo nekoliko redova. (maksimalno 200 znakova)" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -7252,7 +7255,7 @@ msgstr "Ikona Radne Površine već postoji" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "Detalji" @@ -7313,11 +7316,6 @@ msgstr "Onemogući Obavještenja Zapisnika Promjena" msgid "Disable Comment Count" msgstr "Onemogući Brojanje Komentara" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "Onemogući Komentare" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7335,11 +7333,6 @@ msgstr "Onemogući Brojanje" msgid "Disable Document Sharing" msgstr "Onemogući Dijeljenje Dokumenata" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "Onemogući Lajkove" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "Onemogući Izvještaj" @@ -7349,6 +7342,11 @@ msgstr "Onemogući Izvještaj" msgid "Disable SMTP server authentication" msgstr "Onemogući autentifikaciju SMTP servera" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "Onemogući Pomicanje" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7394,7 +7392,6 @@ msgstr "Onemogući Prijave" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7409,7 +7406,6 @@ msgstr "Onemogući Prijave" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "Onemogućeno" @@ -7420,7 +7416,7 @@ msgstr "Automatski Odgovor Onemogućen" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "Odbaci" @@ -7438,7 +7434,7 @@ msgstr "Odbaci" msgid "Discard {0}" msgstr "Odbaci {0}" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "Odbaci?" @@ -7461,7 +7457,7 @@ msgstr "Odgovor Diskusije" msgid "Discussion Topic" msgstr "Tema Diskusije" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7497,19 +7493,23 @@ msgstr "Razdjelnik" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " -msgstr "Ne Kreiraj Novog Korisnika " +msgid "Do Not Create New User" +msgstr "Ne Kreiraj Novog Korisnika" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "Ne kreiraj novog korisnika ako korisnik sa e-poštom ne postoji u sistemu" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "Ne uređiuji zaglavlja koja su unaprijed postavljena u šablonu" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "Ne upozoravaj me više o {0}" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "Želiš li i dalje nastaviti?" @@ -7603,7 +7603,7 @@ msgstr "Dokument Status sljedećih stanja je promijenjen:
{0}{0} provided for the field {1} must have atleast one Link field" msgstr "DocType {0} predviđen za polje {1} mora imati najmanje jedno polje Veze" @@ -7650,11 +7650,11 @@ msgstr "DocType Stanje" msgid "DocType View" msgstr "DocType Prikaz" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "DocType se ne može spojiti" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "DocType može preimenovati samo Administrator" @@ -7663,7 +7663,7 @@ msgstr "DocType može preimenovati samo Administrator" msgid "DocType is a Table / Form in the application." msgstr "DocType je Tabela / Obrazac u aplikaciji." -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "DocType mora imati mogućnost podnošenja za odabrani Događaj Dokumenta" @@ -7696,7 +7696,7 @@ msgstr "DocType {0} ne postoji." msgid "DocType {} not found" msgstr "DocType {} nije pronađen" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "DocType naziv ne smije počinjati niti završavati razmakom" @@ -7710,7 +7710,7 @@ msgstr "DocTypes se ne mogu mijenjati, umjesto toga koristite {0}" msgid "Doctype" msgstr "Doctype" -#: frappe/core/doctype/doctype/doctype.py:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "Doctype naziv je ograničen na {0} znakova ({1})" @@ -7772,31 +7772,29 @@ msgstr "Povezivanje Dokumenta" msgid "Document Links" msgstr "Veze Dokumenta" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "Veze Dokumenta Red #{0}: Nije moguće pronaći polje {1} u {2} DocType" -#: frappe/core/doctype/doctype/doctype.py:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "Veze Dokument Red #{0}: Nevažeći doctype ili ime polja." -#: frappe/core/doctype/doctype/doctype.py:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "Veze Dokumenta Red #{0}: Nadređeni DocType je obavezan za interne veze" -#: frappe/core/doctype/doctype/doctype.py:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "Veze Dokumenta Red #{0}: Naziv polja tabele je obavezan za interne veze" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7938,13 +7936,13 @@ msgstr "Naziv Dokumenta" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "Tip Dokumenta" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 msgid "Document Type and Function are required to create a number card" msgstr "Tip i Funkcija Dokumenta su obavezni za kreiranje numeričke kartice" @@ -7981,7 +7979,7 @@ msgid "Document Types and Permissions" msgstr "Tipovi Dokumenata i Dozvole" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "Dokument Otključan" @@ -7989,15 +7987,15 @@ msgstr "Dokument Otključan" 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:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "Dokument je otkazan" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "Dokument je podnesen" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "Dokument je u stanju nacrta" @@ -8139,13 +8137,13 @@ msgstr "Donut" msgid "Double click to edit label" msgstr "Dvaput klikni za uređivanje oznake" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "Preuzmi" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "Preuzmi" @@ -8172,7 +8170,7 @@ msgstr "Link Preuzimanja" msgid "Download PDF" msgstr "Preuzmi PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "Preuzmi izvještaj" @@ -8235,7 +8233,7 @@ msgstr "Povuci elemente sa bočne trake da ih dodate. Povuci ih nazad u smeće." msgid "Drag to add state" msgstr "Pvuci da dodate stanje" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "Ispusti datoteke ovdje" @@ -8268,7 +8266,7 @@ msgstr "Dvostruki Unos" msgid "Duplicate Filter Name" msgstr "Duplicirani Naziv Filtera" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "Duplicirano Ime" @@ -8367,17 +8365,17 @@ msgstr "ESC" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8385,7 +8383,7 @@ msgstr "ESC" msgid "Edit" msgstr "Uredi" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Uredi" @@ -8395,7 +8393,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Uredi" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "Uredi" @@ -8424,7 +8422,7 @@ msgstr "Uredi Prilagođeni HTML" msgid "Edit DocType" msgstr "Uredi DocType" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Uredi DocType" @@ -8442,7 +8440,7 @@ msgstr "Uredi Filtere" msgid "Edit Footer" msgstr "Uredi Podnožje" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "Uredi Format" @@ -8527,7 +8525,7 @@ msgstr "Uredi {0} Doctype" msgid "Edit to add content" msgstr "Uredi da dodate sadržaj" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "Uredi vaš odgovor" @@ -8536,7 +8534,7 @@ msgstr "Uredi vaš odgovor" msgid "Edit your workflow visually using the Workflow Builder." msgstr "Uredi vaš Radni Tok vizuelno koristeći Alat Razvoja Radnog Toka." -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "Uredi {0}" @@ -8544,7 +8542,7 @@ msgstr "Uredi {0}" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "Uređivanje Mreže" @@ -8583,11 +8581,14 @@ msgstr "Birač Elementa" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8596,6 +8597,7 @@ msgstr "Birač Elementa" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8605,6 +8607,8 @@ msgstr "Birač Elementa" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "E-pošta" @@ -8636,7 +8640,7 @@ msgstr "Račun e-pošte je onemogućen." msgid "Email Account Name" msgstr "Ime Računa e-pošte" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "Račun e-pošte je dodan više puta" @@ -8724,6 +8728,7 @@ msgid "Email IDs" msgstr "E-pošta" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "E-pošta" @@ -8767,10 +8772,10 @@ msgstr "Broj Pokušaja e-pošte" msgid "Email Rule" msgstr "Pravilo e-pošte" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" -msgstr "E-pošta Poslana" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" +msgstr "E-pošta poslana u" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType @@ -8835,11 +8840,11 @@ msgstr "E-pošta je označena kao neželjena pošta" msgid "Email has been moved to trash" msgstr "E-pošta je premještena u smeće" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "E-pošta je obavezna za kreiranje korisničke e-pošte" -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "E-pošta nije poslana na {0} (otkazana / onemogućena)" @@ -8878,7 +8883,7 @@ msgstr "E-pošta će biti poslane sa sljedećim mogućim radnjama radnog toka" msgid "Embed code copied" msgstr "Kod Ugradnje kopiran" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "Prazan pseudonim nije dozvoljen" @@ -8886,7 +8891,7 @@ msgstr "Prazan pseudonim nije dozvoljen" msgid "Empty column" msgstr "Prazna kolona" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "Prazni niz argumenti nisu dozvoljeni" @@ -8905,7 +8910,7 @@ msgstr "Omogući" msgid "Enable Address Autocompletion" msgstr "Omogući Automatsko Dovršavanje Adrese" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "Omogućite Dozvoli Automatsko Ponavljanje za tip dokumenta {0} u formi za prilagođavanje" @@ -8931,11 +8936,6 @@ msgstr "Omogući Komentare" msgid "Enable Dynamic Client Registration" msgstr "Omogući Dinamičku Registraciju Klijenta" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "Omogući Obavještenje e-poštom" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -9029,11 +9029,6 @@ msgstr "Omogući Sigurnost" msgid "Enable Social Login" msgstr "Omogući Prijavu preko Društvenih Mreža" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "Omogući Dijeljenje preko Društvenim Mreža" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "Omogućite Praćenje Prikaza Stranica" @@ -9041,7 +9036,7 @@ msgstr "Omogućite Praćenje Prikaza Stranica" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "Omogući Dvofaktorsku Autentifikaciju" @@ -9053,12 +9048,6 @@ msgstr "Omogućite način rada za programere da kreirate standardni Šablon Ispi msgid "Enable developer mode to create a standard Web Template" msgstr "Omogući način rada za programere da kreirate standardni Web Šablon" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "Omogući obavještenje putem e-pošte za sve komentare ili lajkove primljene na vašem blog postu." - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -9082,6 +9071,7 @@ msgstr "Omogući praćenje web stranice u aplikaciji" #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -9094,6 +9084,7 @@ msgstr "Omogući praćenje web stranice u aplikaciji" #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "Omogućeno" @@ -9119,15 +9110,11 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "Omogućavanje automatskog odgovora na računu dolazne e-pošte će poslati automatske odgovore na sve sinhronizirane e-poruke. Želite li nastaviti?" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "Omogućavanjem ove opcije registrovaćete web-lokaciju na centralnom relejnom serveru za slanje guranih obavijesti za sve instalirane aplikacije putem Firebase Cloud Messaging. Ovaj server pohranjuje samo korisničke tokene i zapisnike grešaka, a poruke se ne spremaju." - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " -msgstr "Omogućavanje ove opcije registrovaćete web-lokaciju na centralnom relejnom serveru za slanje guranih obavijesti za sve instalirane aplikacije putem Firebase Cloud Messaging. Ovaj server pohranjuje samo korisničke tokene i zapisnike grešaka, a poruke se ne spremaju. " +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "Omogućavanjem ove opcije registrovaćete web-lokaciju na centralnom relejnom serveru za slanje guranih obavijesti za sve instalirane aplikacije putem Firebase Cloud Messaging. Ovaj server pohranjuje samo korisničke tokene i zapisnike grešaka, a poruke se ne spremaju." #. Description of the 'Queue in Background (BETA)' (Check) field in DocType #. 'DocType' @@ -9143,11 +9130,11 @@ msgstr "Ako ovo omogućite, dokumenti će se podnijeti u pozadini" msgid "Encrypt Backups" msgstr "Šifriraj Sigurnosne Kopije" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "Ključ Šifriranja je u nevažećem formatu!" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "Ključ Šifriranje je nevažeći! Provjeri site_config.json" @@ -9159,7 +9146,7 @@ msgstr "Kraj" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -9175,6 +9162,10 @@ msgstr "Datum Završetka" msgid "End Date cannot be before Start Date!" msgstr "Datum Završetka ne može biti prije datuma početka!" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "Datum završetka ne može biti danas." + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9219,7 +9210,7 @@ msgstr "Unesi Id klijenta i Tajnu klijenta u Google Postavke." msgid "Enter Code displayed in OTP App." msgstr "Unesi kod prikazan u OTP aplikaciji." -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "Unesi Primaoca(e) e-pošte" @@ -9289,10 +9280,17 @@ msgstr "Jednako" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9302,7 +9300,7 @@ msgstr "Jednako" msgid "Error" msgstr "Grеška" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "Grеška" @@ -9322,7 +9320,7 @@ msgstr "Zapisnik Grešaka" msgid "Error Message" msgstr "Poruka Greške" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 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...

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

Kliknite ovdje da preuzmete i instalirate QZ Tray.
Kliknite ovdje da saznate više o direknom ispisivanju." @@ -9350,9 +9348,9 @@ msgstr "Greška u Klijent Skripti." msgid "Error in Header/Footer Script" msgstr "Greška Skripte Zaglavlja/Podnožja" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "Greška u Obavještenju" @@ -9372,19 +9370,19 @@ msgstr "Greška pri parsiranju ugniježđenih filtera: {0}" msgid "Error while connecting to email account {0}" msgstr "Greška prilikom povezivanja na račun e-pošte {0}" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Greška prilikom evaluacije Obavještenja {0}. Popravite vaš šablon." -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "Greška: Podaci nedostaju u tabeli {0}" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "Greška: Nedostaje vrijednost za {0}: {1}" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "Greška: {0} Red #{1}: Nedostaje vrijednost za: {2}" @@ -9441,7 +9439,7 @@ msgstr "Tip Događaja" msgid "Events" msgstr "Događaji" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "Događaji u Današnjem Kalendaru" @@ -9525,7 +9523,7 @@ msgstr "Izvrši" msgid "Execute Console script" msgstr "Izvršite skriptu konzole" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "Izvršava se Kod" @@ -9533,7 +9531,7 @@ msgstr "Izvršava se Kod" msgid "Executing..." msgstr "Izvršavanje..." -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "Vrijeme izvršenja: {0} sek" @@ -9559,12 +9557,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Proširi" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Rasklopi Sve" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "Očekivani operator 'and' ili 'or', pronađen: {0}" @@ -9592,7 +9590,9 @@ msgid "Expire Notification On" msgstr "Obavještenje o isteku na dan" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "Isteklo" @@ -9620,13 +9620,13 @@ msgstr "Vrijeme isteka stranice sa slikom QR koda" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Izvoz" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Izvezi" @@ -9663,7 +9663,7 @@ msgstr "Eksportiraj iz" msgid "Export Import Log" msgstr "Izvezi Zapisnik Importa" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "Eksportiraj Izvještaj: {0}" @@ -9672,11 +9672,11 @@ msgstr "Eksportiraj Izvještaj: {0}" msgid "Export Type" msgstr "Tip Izvoza" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "Eksportiraj sve podudarne redove?" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "Eksportiraj sve {0} redove?" @@ -9684,6 +9684,10 @@ msgstr "Eksportiraj sve {0} redove?" msgid "Export as zip" msgstr "Eksportiraj kao zip" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "Izvoz u pozadini" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "Izvoz nije dozvoljen. Potrebna vam je {0} uloga za izvoz." @@ -9789,7 +9793,7 @@ msgstr "Neuspješni Poslovi" msgid "Failed Logins (Last 30 days)" msgstr "Neuspješne Prijave (posljednjih 30 dana)" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "Neuspješne Transakcije" @@ -9806,7 +9810,7 @@ msgstr "Promjena lozinke nije uspjela." msgid "Failed to complete setup" msgstr "Nije uspjelo dovršavanje postavljanja" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "Nije uspjelo izračunavanje tijela zahtjeva: {}" @@ -9815,15 +9819,15 @@ msgstr "Nije uspjelo izračunavanje tijela zahtjeva: {}" msgid "Failed to connect to server" msgstr "Povezivanje sa serverom nije uspjelo" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "Dekodiranje tokena nije uspjelo, navedite važeći token kodiran sa base64." -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "Dešifriranje ključa {0} nije uspjelo" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "Brisanje {0} dokumenata nije uspjelo: {1}" @@ -9831,8 +9835,8 @@ msgstr "Brisanje {0} dokumenata nije uspjelo: {1}" msgid "Failed to enable scheduler: {0}" msgstr "Omogućavanje Raspoređivača nije uspjelo: {0}" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "Procjena uslova nije uspjela: {}" @@ -9848,7 +9852,7 @@ msgstr "Nije uspjelo generiranje imena iz serije" msgid "Failed to generate preview of series" msgstr "Generiranje pregleda serije nije uspjelo" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "Nije uspjelo preuzimanje metode za komandu {0} sa {1}" @@ -9868,11 +9872,11 @@ msgstr "Uvoz virtuelnog doctypa {} nije uspio, je li prisutna datoteka kontroler msgid "Failed to optimize image: {0}" msgstr "Optimizacija slike nije uspjela: {0}" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "Nije uspjelo prikazivanje poruke: {}" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "Nije uspjelo prikazivanje predmeta: {}" @@ -9922,12 +9926,6 @@ msgstr "FavIcon" msgid "Fax" msgstr "Fax" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "Istaknuto" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "Povratne Informacije" @@ -9985,17 +9983,17 @@ msgstr "Preuzimaju se standard Dokumenata Globalnog Pretraživanja." #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "Polje" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" msgstr "Polje \"ruta\" je obavezno za Web Prikaze" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "Polje \"naziv\" je obavezno ako je postavljeno \"Polje Pretrage Web Stranice\"." @@ -10008,7 +10006,7 @@ msgstr "Polje \"vrijednost\" je obavezno. Navedi vrijednost koju treba ažurirat msgid "Field Description" msgstr "Opis Polja" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "Nedostaje Polje" @@ -10038,7 +10036,7 @@ msgstr "Šablon Polja" msgid "Field Type" msgstr "Tip Polja" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "Polje nije dozvoljeno u upitu" @@ -10064,11 +10062,11 @@ msgstr "Polje {0} ne postoji na {1}" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "Polje {0} se odnosi na nepostojeći tip dokumenta {1}." -#: frappe/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "Polje {0} nije pronađeno." -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "Polje {0} u dokumentu {1} nije ni polje za broj Mobilnog Telefona niti veza za Klijenta ili Korisnika" @@ -10086,20 +10084,20 @@ msgstr "Polje {0} u dokumentu {1} nije ni polje za broj Mobilnog Telefona niti v #: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json #: frappe/desk/doctype/form_tour_step/form_tour_step.json #: frappe/integrations/doctype/webhook_data/webhook_data.json -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "Ime Polja" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "Ime polja '{0}' je u konfliktu sa {1} imena {2} u {3}" -#: frappe/core/doctype/doctype/doctype.py:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "Ime polja {0} mora postojati da bi se omogućilo automatsko imenovanje" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "Ime polja je ograničeno na 64 znaka ({0})" @@ -10115,15 +10113,15 @@ msgstr "Ime polja koje će biti DocType za ovo polje veze." msgid "Fieldname {0} appears multiple times" msgstr "Ime polja {0} pojavljuje se više puta" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "Ime polja {0} ne može imati posebne znakove kao što je {1}" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "Ime polja {0} je u konfliktu sa meta objektom" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "Ime polja {0} je ograničeno" @@ -10146,7 +10144,7 @@ msgstr "Ime polja {0} je ograničeno" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -10159,7 +10157,7 @@ msgstr "Polja" msgid "Fields Multicheck" msgstr "Polja Višestrukog Odabira" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "Polja `file_name` ili `file_url` moraju biti postavljena za datoteku" @@ -10167,7 +10165,7 @@ msgstr "Polja `file_name` ili `file_url` moraju biti postavljena za datoteku" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "Polja moraju biti lista ili tuple kada je as_list omogućen" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "Polja moraju biti niz, lista, torka, pypika Polje ili pypika Funkcija" @@ -10195,7 +10193,7 @@ msgstr "Tip Polja" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "Tip polja se ne može promijeniti iz {0} u {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "Tip polja se ne može promijeniti iz {0} u {1} u redu {2}" @@ -10208,7 +10206,7 @@ msgstr "Tip polja se ne može promijeniti iz {0} u {1} u redu {2}" msgid "File" msgstr "Datoteka" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "Datoteka \"{0}\" je preskočena zbog nevažećeg tipa datoteke" @@ -10261,7 +10259,7 @@ msgstr "URL Datoteke" msgid "File backup is ready" msgstr "Sigurnosna Kopija Datoteke je spremna" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "Ime datoteke ne može imati {0}" @@ -10269,7 +10267,7 @@ msgstr "Ime datoteke ne može imati {0}" msgid "File not attached" msgstr "Datoteka nije priložena" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "Veličina datoteke je premašila maksimalnu dozvoljenu veličinu od {0} MB" @@ -10278,11 +10276,11 @@ msgstr "Veličina datoteke je premašila maksimalnu dozvoljenu veličinu od {0} msgid "File too big" msgstr "Datoteka je prevelika" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "Tip datoteke {0} nije dozvoljen" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "Datoteka {0} ne postoji" @@ -10296,10 +10294,10 @@ msgstr "Datoteke" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10336,11 +10334,11 @@ msgstr "Filter Naziv" msgid "Filter Values" msgstr "Filter Vrijednosti" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "Nedostaje uslov filtera nakon operatora: {0}" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "Polja filtera ne mogu sadržavati povratne crte (`)." @@ -10358,7 +10356,6 @@ msgstr "Filtrirano Prema" msgid "Filtered Records" msgstr "Filtrirani Zapisi" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "Filtrirano prema \"{0}\"" @@ -10373,7 +10370,9 @@ msgstr "Filtrirano prema \"{0}\"" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10395,6 +10394,11 @@ msgstr "Konfiguracija Filtera" msgid "Filters Display" msgstr "Prikaz Filtera" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "Uređivač Filtera" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10407,11 +10411,11 @@ msgstr "Filtrira JSON" msgid "Filters Section" msgstr "Sekcija Filtera" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "Primijenjeni filteri za {0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "Filteri spremljeni" @@ -10424,18 +10428,18 @@ msgstr "Filteri će biti dostupni putem filters.

Pošalji i msgid "Filters {0}" msgstr "Filteri {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:1427 +#: frappe/public/js/frappe/views/reports/report_view.js:1429 msgid "Filters:" msgstr "Filteri:" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 msgid "Find '{0}' in ..." msgstr "Pronađi '{0}' u..." #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 msgid "Find {0} in {1}" msgstr "Pronađi {0} u {1}" @@ -10459,8 +10463,12 @@ msgstr "Prvi Radni Dan Sedmice" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "Ime" @@ -10469,10 +10477,6 @@ msgstr "Ime" msgid "First Success Message" msgstr "Prva Poruka Uspjeha" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:49 -msgid "First Transaction" -msgstr "Prva Transakcija" - #: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." msgstr "Prva kolona podataka mora biti prazna." @@ -10523,11 +10527,11 @@ msgstr "Decimalna Preciznost" msgid "Fold" msgstr "Presavij" -#: frappe/core/doctype/doctype/doctype.py:1450 +#: frappe/core/doctype/doctype/doctype.py:1451 msgid "Fold can not be at the end of the form" msgstr "Presavijanje ne može biti na kraju forme" -#: frappe/core/doctype/doctype/doctype.py:1448 +#: frappe/core/doctype/doctype/doctype.py:1449 msgid "Fold must come before a Section Break" msgstr "Presavijanje mora doći prije prekida odjeljka" @@ -10545,7 +10549,7 @@ msgstr "Naziv Mape" msgid "Folder name should not include '/' (slash)" msgstr "Ime fascikle ne smije uključivati '/' (kosa crta)" -#: frappe/core/doctype/file/file.py:472 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "Mapa {0} nije prazna" @@ -10652,7 +10656,7 @@ msgstr "Detalji Podnožja" msgid "Footer HTML" msgstr "Podnožje HTML" -#: frappe/printing/doctype/letter_head/letter_head.py:75 +#: frappe/printing/doctype/letter_head/letter_head.py:81 msgid "Footer HTML set from attachment {0}" msgstr "HTML Podnožja postavljen iz priloga {0}" @@ -10689,7 +10693,7 @@ msgstr "Šablon Podnožja" msgid "Footer Template Values" msgstr "Vrijednosti Šablona Podnožja" -#: frappe/printing/page/print/print.js:116 +#: frappe/printing/page/print/print.js:129 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
" @@ -10748,8 +10752,8 @@ msgstr "Za Korisnika" msgid "For Value" msgstr "Za Vrijednost" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "Za poređenje, koristite >5, <10 ili =324. Za raspone koristite 5:10 (za vrijednosti između 5 i 10)." @@ -10775,12 +10779,6 @@ msgstr "Na primjer: {} Otvori" msgid "For help see Client Script API and Examples" msgstr "Za pomoć pogledaj API i primjere Klijentske skriptet" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "Za više informacija, klikni ovdje." - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "Za više informacija, {0}." @@ -10795,7 +10793,7 @@ msgstr "Za više adresa, unesi adresu u drugu liniju. npr. test@test.com ⏎ tes msgid "For updating, you can update only selective columns." msgstr "Za ažuriranje, možete ažurirati samo selektivne kolone." -#: frappe/core/doctype/doctype/doctype.py:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "Za {0} na nivou {1} u {2} u redu {3}" @@ -10850,7 +10848,7 @@ msgstr "Zaboravljana Lozinka?" #: frappe/custom/doctype/client_script/client_script.json #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/desk/doctype/form_tour/form_tour.json -#: frappe/printing/page/print/print.js:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "Forma" @@ -10910,6 +10908,11 @@ msgstr "Format" msgid "Format Data" msgstr "Format Podataka" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "Dvosedmično" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "Proslijediti" @@ -10937,7 +10940,15 @@ msgstr "Jedinice Frakcije" msgid "Frappe" msgstr "Frappe" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "Blog Sistema" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "Forum Sistema" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "Frappe Framework" @@ -11026,7 +11037,7 @@ msgstr "Od Datuma" msgid "From Date Field" msgstr "Od Datuma" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "Od Dokumenta" @@ -11053,18 +11064,16 @@ msgstr "Pun" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "Puno Ime" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "Cijela Stranica" @@ -11090,13 +11099,13 @@ msgstr "Funkcija zasnovana na" msgid "Function {0} is not whitelisted." msgstr "Funkcija {0} nije na bijeloj listi." -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "Funkcija {0} zahtijeva argumente, ali nijedan nije dat" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" -msgstr "Podređeni članovi se mogu kreirati samo pod članovima tipa 'Grupa'" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "Daljnje podgrupe mogu se kreirati samo pod zapisima označenim kao 'Grupa'" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -11155,7 +11164,7 @@ msgstr "Općenito" msgid "Generate Keys" msgstr "Generiši Ključeve" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "Generiši Novi Izvještaj" @@ -11163,8 +11172,14 @@ msgstr "Generiši Novi Izvještaj" msgid "Generate Random Password" msgstr "Generiši Nasumičnu Lozinku" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "Generiši odvojene dokumente za svakog Dodijeljenog" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "Generiši URL Praćenja" @@ -11187,7 +11202,7 @@ msgstr "Geolokacija" msgid "Geolocation Settings" msgstr "Geolokacijske Postavke" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "Preuzmi Današnja Upozorenja" @@ -11323,7 +11338,7 @@ msgid "Go to this URL after completing the form" msgstr "Idi na ovaj URL nakon popunjavanja forme" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "Idi na {0}" @@ -11371,10 +11386,6 @@ msgstr "Google Analytics anonymise IP" msgid "Google Calendar" msgstr "Google Kalendar" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}" -msgstr "Google Kalendar - Kontakt/e-mail nije pronađen. Nije dodan učesnik za -
{0}" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "Google Kalendar - Nije moguće kreirati Kalendar za {0}, kod greške {1}." @@ -11493,11 +11504,6 @@ msgstr "URL Google Sheet je nevažeći ili nije javno dostupan." msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "URL Google Sheet mora završavati sa \"gid={number}\". Kopiraj i zalijepi URL iz adresne trake pretraživača i pokušajte ponovo." -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "Google Snippet Pregled" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11574,14 +11580,10 @@ msgstr "Grupiši Po Tipu" msgid "Group By field is required to create a dashboard chart" msgstr "Polje Grupiši Po je obavezno za kreiranje grafikona nadzorne table" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "Grupiraj Po mora biti niz" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "Grupa" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11631,7 +11633,6 @@ msgstr "HH:mm:ss" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11642,9 +11643,8 @@ msgstr "HH:mm:ss" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11748,7 +11748,7 @@ msgstr "Zaglavlje" msgid "Header HTML" msgstr "HTML Zaglavlja" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "HTML Zaglavlja postavljen iz priloga {0}" @@ -11806,6 +11806,12 @@ msgstr "Toplotna Karta" msgid "Hello" msgstr "Zdravo" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "Zdravo," + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11871,7 +11877,7 @@ msgstr "Helvetica" msgid "Helvetica Neue" msgstr "Helvetica Neue" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "Ovdje je vaš URL-a za praćenje" @@ -11907,7 +11913,7 @@ msgstr "Sakriveno" msgid "Hidden Fields" msgstr "Sakrivena Polja" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "Skrivene kolone uključuju: {0}" @@ -11940,11 +11946,6 @@ msgstr "Sakrij Obrub" msgid "Hide Buttons" msgstr "Sakrij Dugmad" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "Sakrij Poziv Na Akciju" - #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json @@ -12024,7 +12025,7 @@ msgstr "Sakrij Bočnu Traku, Meni i Komentare" msgid "Hide Standard Menu" msgstr "Sakrij Standardni Meni" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "Sakrij Oznake" @@ -12038,7 +12039,7 @@ msgstr "Sakrij Vikende" msgid "Hide descendant records of For Value." msgstr "Sakrij podređene zapise Za Vrijednost." -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "Sakrij Detalje" @@ -12087,11 +12088,8 @@ msgstr "Savjet: Uključi 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:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -12179,16 +12177,16 @@ msgstr "Pretpostavka je da još nemate pristup nijednom radnom prostoru, ali ga #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "ID" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "ID" @@ -12284,9 +12282,9 @@ msgstr "Ako je označeno Primijeni Striktno Korisničko dopuštenje i definirano msgid "If Checked workflow status will not override status in list view" msgstr "Ako je označeno, status radnog toka neće nadjačati status u prikazu liste" -#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "Ako je Vlasnik" @@ -12414,6 +12412,10 @@ msgstr "Ako korisnik ima odabranu bilo koju ulogu, tada korisnik postaje \"Koris msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "Ako vam ove upute nisu pomogle, dodajte svoje prijedloge o GitHub problemima." +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "Ako je ovo bila greška ili vam je ponovo potreban pristup, obratite se svom timu." + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12445,7 +12447,11 @@ msgstr "Ako učitavaš nove zapise, \"Imenovanje Serije\" postaje obavezno, ako msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "Ako učitavate nove zapise, ostavite kolonu \"ime\" (ID) praznom." -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "Ako imate bilo kakvih pitanja, obratite se administratoru sistema." + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "Ako ste nedavno vratili web stranicu, možda ćete morati kopirati konfiguraciju web stranice koja sadrži izvorni ključ šifriranja." @@ -12502,12 +12508,12 @@ msgstr "Zanemari priloge veće od ove veličine" msgid "Ignored Apps" msgstr "Ignorisane Aplikacije" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "Ilegalan Status Dokumenta za {0}" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "Ilegalan SQL Upit" @@ -12568,11 +12574,11 @@ msgstr "Prikaz Slike" msgid "Image Width" msgstr "Širina Slike" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 msgid "Image field must be a valid fieldname" msgstr "Polje slike mora biti važeće ime polja" -#: frappe/core/doctype/doctype/doctype.py:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "Polje za sliku mora biti tipa Priloži Sliku" @@ -12594,15 +12600,15 @@ msgstr "Slike" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "Oponašaj" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "Oponašaj {0}" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "Oponašan od {0}" @@ -12628,7 +12634,7 @@ msgstr "Implicitno" msgid "Import" msgstr "Uvezi" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "Uvezi" @@ -12856,15 +12862,16 @@ msgstr "Uključite Teme iz Aplikacija" msgid "Include Web View Link in Email" msgstr "Uključi Web Pregled vezu u e-poštu" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "Uključi Filtere" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "Uključi skrivene kolone" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "Uključi Uvlačenje" @@ -12911,7 +12918,7 @@ msgstr "Račun dolazne e-pošte nije ispravan" msgid "Incomplete Virtual Doctype Implementation" msgstr "Nepotpuna implementacija virtualnog tipa dokumenta" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "Nepotpuni podaci prijave" @@ -12923,7 +12930,7 @@ msgstr "Neispravna Konfiguracija" msgid "Incorrect URL" msgstr "Neispravan URL" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "Netačan korisnik ili lozinka" @@ -12931,11 +12938,11 @@ msgstr "Netačan korisnik ili lozinka" msgid "Incorrect Verification code" msgstr "Netačan Verifikacioni Kod" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "Netačna vrijednost u redu {0}:" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "Netačna vrijednost:" @@ -12947,7 +12954,7 @@ msgstr "Netačna vrijednost:" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "Indeks" @@ -13022,7 +13029,7 @@ msgstr "Umetni Iznad" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "Umetni Poslije" @@ -13038,7 +13045,7 @@ msgstr "Umetni Nakon polja '{0}' spomenutog u prilagođenom polju '{1}', sa ozna msgid "Insert Below" msgstr "Umetni Ispod" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "Umetni Kolonu Ispred {0}" @@ -13056,8 +13063,12 @@ msgstr "Umetni Nove Zapise" msgid "Insert Style" msgstr "Umetni Stil" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "Instagram" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "Instaliraj {0} sa Marketplace" @@ -13074,7 +13085,7 @@ msgid "Installed Applications" msgstr "Instalirane Aplikacije" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "Instalirane Aplikacije" @@ -13091,19 +13102,19 @@ msgstr "Instrukcije Poslane e-poštom" msgid "Insufficient Permission Level for {0}" msgstr "Nedovoljan Nivo Dozvola za {0}" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "Nedovoljne Dozvole za {0}" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" msgstr "Nedovoljne dozvole za brisanje izvještaja" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" msgstr "Nedovoljne Dozvole za uređivanje Izvještaja" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "Nedovoljno ograničenje priloga" @@ -13207,9 +13218,9 @@ msgid "Invalid" msgstr "Nevažeći" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "Nevažeći izraz \"depends_on\"" @@ -13217,7 +13228,7 @@ msgstr "Nevažeći izraz \"depends_on\"" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "Nevažeći izraz \"depends_on\" postavljen u filteru {0}" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "Nevažeći izraz \"mandatory_depends_on\"" @@ -13233,7 +13244,7 @@ msgstr "Nevažeći CSV format" msgid "Invalid Code. Please try again." msgstr "Nevažeći Kod. Pkušaj ponovo." -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "Nevažeći Uslov: {}" @@ -13253,16 +13264,20 @@ msgstr "Nevažeći DocType" msgid "Invalid DocType: {0}" msgstr "Nevažeći DocType: {0}" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "Nevažeći Doctype" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "Nevažeći Naziv Polja" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "Nevažeći URL Datoteke" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "Nevažeći Filter" @@ -13294,7 +13309,7 @@ msgstr "Nevažeća Prijava. Pokušaj ponovo." msgid "Invalid Mail Server. Please rectify and try again." msgstr "Nevažeći Server Pošte. Ispravi i pokušaj ponovo." -#: frappe/model/naming.py:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "Nevažeća Serija Imenovanja: {}" @@ -13303,8 +13318,8 @@ msgstr "Nevažeća Serija Imenovanja: {}" msgid "Invalid Operation" msgstr "Nevažeća Operacija" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "Nevažeća Opcija" @@ -13316,25 +13331,25 @@ msgstr "Nevažeći Server Odlazne Pošte ili port: {0}" msgid "Invalid Output Format" msgstr "Nevažeći Izlazni Format" -#: frappe/model/base_document.py:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "Nevažeće Nadjačavanje" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "Nevažeći Parametri." -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "Nevažeća Lozinka" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "Nevažeći Broj Telefona" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "Nevažeći Zahtjev" @@ -13343,7 +13358,7 @@ msgstr "Nevažeći Zahtjev" msgid "Invalid Search Field {0}" msgstr "Nevažeće Polje Pretrage {0}" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "Nevažeći Naziv Polja Tabele" @@ -13351,8 +13366,8 @@ msgstr "Nevažeći Naziv Polja Tabele" msgid "Invalid Transition" msgstr "Nevažeća Tranzicija" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13366,47 +13381,51 @@ msgstr "Nevažeće Korisničko Ime ili Lozinka Podrške. Ispravi i pokušaj pono msgid "Invalid Values" msgstr "Nevažeće Vrijednosti" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "Nevažeća Tajna Webhooka" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "Nevažeća agregatna funkcija" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "Nevažeći format aliasa: {0}. Alias mora biti jednostavan identifikator." -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "Nevažeća aplikacija" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "Nevažeći format argumenta: {0}. Dozvoljeni su samo navodni niz literali ili jednostavna imena polja." -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "Nevažeći tip argumenta: {0}. Dozvoljeni su samo nizovi, brojevi i None." -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "Nevažeći znakovi u nazivu polja: {0}. Dozvoljeni su samo slova, brojevi i podvlake." -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "Nevažeći znakovi u nazivu tabele: {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "Nevažeća kolona" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "Nevažeći tip uslova u ugniježđenim filterima: {0}" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "Nevažeći smjer u Sortiraj Po: {0}. Mora biti 'ASC' ili 'DESC'." -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "Nevažeći status dokumenta" @@ -13418,31 +13437,27 @@ 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:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "Nevažeći format polja za SELECT: {0}. Nazivi polja moraju biti jednostavni, sa povratnim ukrštanjem, kvalifikovani tabelom, aliasirani ili sa '*'." -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "Nevažeći format polja u {0}: {1}. Koristi 'field', 'link_field.field' ili 'child_table.field'." -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "Nevažeći naziv polja u funkciji: {0}. Dozvoljeni su samo jednostavni nazivi polja." -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "Nevažeći naziv polja {0}" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "Nevažeći naziv polja: {0}" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "Nevažeći tip polja: {0}" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "Nevažeći naziv polja '{0}' u automatskom nazivu" @@ -13450,11 +13465,11 @@ msgstr "Nevažeći naziv polja '{0}' u automatskom nazivu" msgid "Invalid file path: {0}" msgstr "Nevažeći put datoteke: {0}" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "Nevažeći uslov filtera: {0}. Očekivana je lista ili torka." -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "Nevažeći format polja filtera: {0}. Koristi 'fieldname' ili 'link_fieldname.target_fieldname'." @@ -13462,20 +13477,28 @@ msgstr "Nevažeći format polja filtera: {0}. Koristi 'fieldname' ili 'link_fiel msgid "Invalid filter: {0}" msgstr "Nevažeći filter: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "Nevažeći tip argumenta funkcije: {0}. Dozvoljeni su samo nizovi, brojevi, liste i None." -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "Nevažeći format rječnika funkcija" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "Nevažeći unos" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "Nevažeći json dodan u prilagođene opcije: {0}" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "Nevažeći ključ" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "Nevažeći tip imena (cijeli broj) za kolonu imena varchar" @@ -13483,6 +13506,10 @@ msgstr "Nevažeći tip imena (cijeli broj) za kolonu imena varchar" msgid "Invalid naming series {}: dot (.) missing" msgstr "Nevažeća serija imenovanja {}: nedostaje tačka (.)" +#: frappe/model/naming.py:76 +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 (.) prije numeričkih rezerviranih mjesta. Molimo koristite format poput ABCD.#####." + #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "Nevažeći ili oštećeni sadržaj za uvoz" @@ -13491,19 +13518,27 @@ msgstr "Nevažeći ili oštećeni sadržaj za uvoz" msgid "Invalid redirect regex in row #{}: {}" msgstr "Nevažeći regex za preusmjeravanje u redu #{}: {}" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "Nevažeći argumenti zahtjeva" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "Nevažeći Zahtjev" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "Nevažeća uloga" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "Nevažeći format jednostavnog filtera: {0}" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "Nevažeći početak za uslov filtera: {0}. Očekivana je lista ili torka." -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "Nevažeći format niza literala: {0}" @@ -13511,7 +13546,7 @@ msgstr "Nevažeći format niza literala: {0}" msgid "Invalid template file for import" msgstr "Nevažeća datoteka šablona za uvoz" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "Nevažeće stanje tokena! Provjeri je li token kreirao OAuth korisnik." @@ -13520,20 +13555,20 @@ msgstr "Nevažeće stanje tokena! Provjeri je li token kreirao OAuth korisnik." msgid "Invalid username or password" msgstr "Neispravno korisničko Ime ili lozinka" -#: frappe/model/naming.py:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "Nevažeća vrijednost navedena za UUID: {}" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "Nevažeće vrijednosti za polja:" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "Nevažeća verzija wkhtmltopdf" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "Nevažeći {0} uslov" @@ -13542,10 +13577,47 @@ msgstr "Nevažeći {0} uslov" msgid "Inverse" msgstr "Obrnuto" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "Pozivnica je već prihvaćena" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "Pozivnica već postoji" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "Pozivnica se ne može otkazati" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "Pozivnica je otkazana" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "Pozivnica je istekla" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "Pozivnica nije pronađena" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "Pozivnica za pridruživanje {0} otkazana" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "Pozivnica za pridruživanje {0} istekla" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "Kreiraj Korisnika" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "Pozvan(a) od" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "Je" @@ -13570,7 +13642,7 @@ msgstr "Je Kalendar i Gantt" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "Je Podređena Tabela" @@ -13623,6 +13695,10 @@ msgstr "Je Mapa" msgid "Is Global" msgstr "Je Globalno" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Grupa" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13649,8 +13725,13 @@ msgstr "Je Opciono Stanje" msgid "Is Primary" msgstr "Je Primarno" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "Primarna Adresa" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 msgid "Is Primary Contact" msgstr "Je Primarni Kontakt" @@ -13681,7 +13762,7 @@ msgstr "Je Javno" msgid "Is Published Field" msgstr "Je Objavljeno Polje" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "Je Objavljeno Polje mora biti važeći naziv polja" @@ -13706,7 +13787,7 @@ msgstr "Je li Podešavanje Završeno?" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "Je Sam" @@ -13742,7 +13823,7 @@ msgstr "Je Standard" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "Je Podnošljiv" @@ -13948,11 +14029,11 @@ msgstr "Kolona Oglasne Table" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "Naziv Oglasne Table" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Postavke Oglasne Table" @@ -13973,12 +14054,14 @@ msgstr "Prati Konverzaciju" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -14240,7 +14323,7 @@ msgstr "Oznaka je obavezna" msgid "Landing Page" msgstr "Početna Stranica" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "Pejzaž" @@ -14248,10 +14331,13 @@ msgstr "Pejzaž" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Jezik" @@ -14339,8 +14425,12 @@ msgstr "Prošli Mjesec" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "Prezime" @@ -14355,6 +14445,11 @@ msgstr "Poslednji Datum Poništavanja Lozinke" msgid "Last Quarter" msgstr "Prošli Kvartal" +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "Posljednji put primljeno u" + #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json @@ -14371,11 +14466,6 @@ msgstr "Zadnje Izvođenje" msgid "Last Sync On" msgstr "Zadnja Sinhronizacija" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "Zadnja Sinhronizacija" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14486,7 +14576,7 @@ msgstr "Dužina" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "Dužina proslijeđenog niza podataka veća je od vrijednosti maksimalno dopuštenih bodova oznake!" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "Dužina {0} bi trebala biti između 1 i 1000" @@ -14535,8 +14625,8 @@ 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:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14564,7 +14654,7 @@ msgstr "Naziv Zaglavlja" msgid "Letter Head Scripts" msgstr "Skripte Zaglavlja" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "Zaglavlje ne može biti istovremeno onemogućeno i standard" @@ -14581,7 +14671,7 @@ msgstr "Zaglavlje u HTML-u" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "Nivo" @@ -14631,20 +14721,6 @@ msgstr "Svijetla Tema" msgid "Like" msgstr "Lajk" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "Ograničenje Lajkova" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "Ograničenje lajkova po satu" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "Lajk na {0}: {1}" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "Lajk" @@ -14685,6 +14761,7 @@ msgstr "Linija" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14698,6 +14775,7 @@ msgstr "Linija" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "Veza" @@ -14828,10 +14906,15 @@ msgstr "Povezano" msgid "Linked With" msgstr "Povezano Sa" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +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 (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14839,6 +14922,7 @@ msgstr "Povezano Sa" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "Veze" @@ -14880,7 +14964,7 @@ msgstr "Filter Liste" msgid "List Settings" msgstr "Postavke Liste" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Postavke Liste" @@ -14921,7 +15005,7 @@ msgstr "Lista izvršenih zakrpa" msgid "List setting message" msgstr "Poruka podešavanja liste" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "Liste" @@ -14930,9 +15014,8 @@ msgstr "Liste" msgid "Load Balancing" msgstr "Load Balancing" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Učitaj Još" @@ -14949,10 +15032,10 @@ msgstr "Učitaj više" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "Učitava se" @@ -14964,7 +15047,7 @@ msgstr "Učitavanje Filtera u toku..." msgid "Loading import file..." msgstr "Učitavanje datoteke za uvoz..." -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "Učitavanje verzija u toku..." @@ -14974,7 +15057,7 @@ msgstr "Učitavanje verzija u toku..." #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "Učitavanje u toku..." @@ -15035,7 +15118,7 @@ msgstr "Prijavite se da pristupite ovoj stranici." msgid "Log out" msgstr "Odjava" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "Odjavljen" @@ -15095,7 +15178,7 @@ msgstr "Kod Potvrdu Prijave od {}" msgid "Login and view in Browser" msgstr "Prijavi se i pregledaj u Pretraživaču" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "Prijava je potrebna da biste vidjeli pregled liste web forme. Omogući {0} da vidite postavke liste" @@ -15103,7 +15186,7 @@ msgstr "Prijava je potrebna da biste vidjeli pregled liste web forme. Omogući { msgid "Login link sent to your email" msgstr "Veza za prijavu poslana je na vašu e-poštu" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "Prijava trenutno nije dozvoljena" @@ -15156,7 +15239,7 @@ msgstr "Prijavi se putem veze e-pošte" msgid "Login with email link expiry (in minutes)" msgstr "Prijava se sa istekom veze e-pošte (u minutama)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "Prijava sa korisničkim imenom i lozinkom nije dozvoljena." @@ -15175,7 +15258,7 @@ msgstr "URI Logotipa" msgid "Logout" msgstr "Odjava" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "Odjava sa Svih Sesija" @@ -15279,7 +15362,10 @@ msgid "Major" msgstr "Velika" #. 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 +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "Neka \"ime\" bude pretraživo u Globalnoj Pretrazi" @@ -15355,7 +15441,7 @@ msgstr "Obavezno Zavisi od" msgid "Mandatory Depends On (JS)" msgstr "Obavezno Zavisi od (JS)" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "Nedostaju obavezne informacije:" @@ -15367,15 +15453,15 @@ msgstr "Obavezno polje: postavi ulogu za" msgid "Mandatory field: {0}" msgstr "Obavezno polje: {0}" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "Obavezna polja u tabeli {0}, red {1}" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "Obavezna polja nedostaju u {0}" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "Obavezna polja nedostaju:" @@ -15456,10 +15542,8 @@ msgid "Mark as Unread" msgstr "Označi kao Nepročitano" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15540,7 +15624,13 @@ msgstr "Maksimalna Veličina Priloga" msgid "Max auto email report per user" msgstr "Maksimalni broj automatskih izvještaja putem e-pošte po korisniku" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "Maksimalan broj dozvoljenih prijava po satu" + +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "Maksimalna širina za tip Valuta je 100px u redu {0}" @@ -15549,20 +15639,15 @@ msgstr "Maksimalna širina za tip Valuta je 100px u redu {0}" msgid "Maximum" msgstr "Maksimum" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "Maksimalna Granica Priloga {0} je dostignuta za {1} {2}." -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "Maksimalni Broj Polja" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "Maksimalno ograničenje priloga od {0} je dostignuto." -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "Maksimalno je dozvoljeno {0} redova" @@ -15578,7 +15663,7 @@ msgstr "Značenje Podnesi, Otkaži, Izmjeni" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15591,7 +15676,7 @@ msgstr "Srednje" msgid "Meeting" msgstr "Sastanak" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "Ispunjava Uslove?" @@ -15632,7 +15717,7 @@ msgstr "Meni" msgid "Merge with existing" msgstr "Spoji sa postojećim" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "Spajanje je moguće samo između Grupe na Grupe ili podređeni na podređeni" @@ -15658,7 +15743,7 @@ msgstr "Spajanje je moguće samo između Grupe na Grupe ili podređeni na podre #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15698,7 +15783,7 @@ msgstr "Poruka Poslata" msgid "Message Type" msgstr "Tip Poruke" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "Poruka je isječena" @@ -15730,29 +15815,21 @@ msgstr "Poruke" msgid "Meta" msgstr "Meta" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "Meta Opis" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "Meta Slika" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "Meta Oznake" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "Meta Naziv" @@ -15805,7 +15882,7 @@ msgstr "Metoda" msgid "Method Not Allowed" msgstr "Metoda nije Dozvoljena" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "Metoda je potrebna za kreiranje numeričke kartice" @@ -15821,6 +15898,11 @@ msgstr "Sredina Centar" msgid "Middle Name" msgstr "Srednje Ime" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "Srednje Ime (Opciono)" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15887,11 +15969,11 @@ msgstr "Gospođica" msgid "Missing DocType" msgstr "Nedostaje DocType" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "Nedostaje Polje" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "Nedostajuća Polja" @@ -15927,15 +16009,16 @@ msgstr "Mobilni Broj" msgid "Mobile No" msgstr "Mobilni Broj" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "Mobilni Broj" + #. Label of the modal_trigger (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Modal Trigger" msgstr "Modalni Okidač" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "Izmijenjeno Od" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15956,7 +16039,7 @@ msgstr "Izmijenjeno Od" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -16132,10 +16215,12 @@ msgstr "Više Informacija" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Više Informacija" @@ -16154,7 +16239,7 @@ msgstr "Više sadržaja na dnu stranice." msgid "Most Used" msgstr "Najviše Korišten" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "Najvjerovatnije je vaša lozinka predugačka." @@ -16165,7 +16250,7 @@ msgstr "Najvjerovatnije je vaša lozinka predugačka." msgid "Move" msgstr "Premjesti" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "Premjesti u" @@ -16201,7 +16286,7 @@ msgstr "Premjesti sekciju na novu karticu" msgid "Move the current field and the following fields to a new column" msgstr "Premjesti trenutno polje i sljedeća polja u novu kolonu" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "Pomjeri na Red Broj" @@ -16228,7 +16313,7 @@ msgstr "Gđa." msgid "Ms" msgstr "Gđa" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "Više početnih članova nije dozvoljeno." @@ -16251,7 +16336,7 @@ msgstr "Mora biti zatvoren u '()' i uključiti '{0}', što je čuvar mjesta za k msgid "Must be of type \"Attach Image\"" msgstr "Mora biti tipa \"Priloži Sliku\"" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "Mora imati dozvolu za pristup ovom izvještaju." @@ -16269,7 +16354,7 @@ msgid "Mx" msgstr "Mx" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16307,9 +16392,9 @@ msgstr "NAPOMENA: Ovo polje je zbog starih postavki. Ponovo podesite LDAP za rad #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16319,11 +16404,11 @@ msgstr "Naziv" msgid "Name (Doc Name)" msgstr "Naziv (Naziv dokumenta)" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "Naziv je već zauzet, postavite novi naziv" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "Naziv ne može sadržavati posebne znakove poput {0}" @@ -16335,7 +16420,7 @@ msgstr "Naziv tipa dokumenta (DocType) sa kojim želite da se ovo polje poveže. msgid "Name of the new Print Format" msgstr "Naziv novog formata za ispisivanje" -#: frappe/model/naming.py:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "Naziv {0} ne može biti {1}" @@ -16376,7 +16461,7 @@ msgstr "Pravilo Imenovanja" msgid "Naming Series" msgstr "Imenovanje Serije" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "Imenovanje Serije Obavezno" @@ -16413,12 +16498,12 @@ msgstr "Šablon Navigacijske Trake" msgid "Navbar Template Values" msgstr "Vrijednosti Šablona Navigacijske Trake" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Kreći se po listi prema dolje" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Kreći se po listi prema gore" @@ -16433,7 +16518,11 @@ msgstr "Idi na glavni sadržaj" msgid "Navigation Settings" msgstr "Postavke Navigacije" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "Trebate pomoć?" + +#: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "Potrebna je uloga Upravitelja Radnog Prostora za uređivanje privatnog radnog prostora drugih korisnika" @@ -16441,7 +16530,7 @@ msgstr "Potrebna je uloga Upravitelja Radnog Prostora za uređivanje privatnog r msgid "Negative Value" msgstr "Negativna Vrijednost" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "Ugniježđeni filteri moraju biti dati kao lista ili torka." @@ -16454,6 +16543,12 @@ msgstr "Greška ugniježđenog skupa. Kontaktiraj Administratora." msgid "Network Printer Settings" msgstr "Postavke Mrežnog Pisača" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "Nikad" + #. 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 @@ -16462,7 +16557,7 @@ msgstr "Postavke Mrežnog Pisača" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16483,10 +16578,6 @@ msgstr "Nova Adresa" msgid "New Chart" msgstr "Novi Grafikon" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "Novi Komentar {0}: {1}" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "Novi Kontakt" @@ -16495,8 +16586,8 @@ msgstr "Novi Kontakt" msgid "New Custom Block" msgstr "Novi Prilagođeni Blok" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" msgstr "Novi Prilagođeni Format Ispisa" @@ -16527,7 +16618,7 @@ msgstr "Novi Događaj" msgid "New Folder" msgstr "Nova Mapa" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "Nova Oglasna Tabla" @@ -16562,12 +16653,12 @@ msgstr "Nova Numerička Kartica" msgid "New Onboarding" msgstr "Nova Introdukcija" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "Nova Lozinka" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "Novo Ime Formata Ispisa" @@ -16576,7 +16667,7 @@ msgstr "Novo Ime Formata Ispisa" msgid "New Quick List" msgstr "Nova Brza Lista" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "Novi Naziv Izvještaja" @@ -16594,8 +16685,8 @@ msgstr "Nova Prečica" msgid "New Users (Last 30 days)" msgstr "Novi Korisnici (posljednjih 30 dana)" -#: frappe/core/doctype/version/version_view.html:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "Nova Vrijednost" @@ -16654,13 +16745,13 @@ msgstr "Nova vrijednost koju treba postaviti" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "Novi {0}" @@ -16676,7 +16767,7 @@ msgstr "Novi {0} {1} dodan na Nadzornu Tablu {2}" msgid "New {0} {1} created" msgstr "Novi {0} {1} kreiran" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "Novi {0}: {1}" @@ -16684,7 +16775,7 @@ msgstr "Novi {0}: {1}" msgid "New {} releases for the following apps are available" msgstr "Dostupna su nova {} izdanja za sljedeće aplikacije" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "Novokreirani korisnik {0} nema omogućene uloge." @@ -16697,7 +16788,7 @@ msgstr "Upravitelj Biltena" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16804,14 +16895,15 @@ msgstr "Sljedeća na Klik" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Ne" @@ -16861,6 +16953,10 @@ msgstr "Nema Računa e-pošte" msgid "No Email Accounts Assigned" msgstr "Nema dodeljenih naloga e-pošte" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "Nije pronađeno polje za e-poštu u {0}" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "Nema e-pošte" @@ -16896,15 +16992,15 @@ msgstr "Nije pronađen LDAP Korisnik za e-poštu: {0}" msgid "No Label" msgstr "Nema Oznake" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: 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 "Bez Zaglavlja" -#: frappe/model/naming.py:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "Nije Navedeno Ime za {0}" @@ -16912,7 +17008,7 @@ msgstr "Nije Navedeno Ime za {0}" msgid "No New notifications" msgstr "Nema Novih obavještenja" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "Nema Navedenih Dozvola" @@ -16932,11 +17028,11 @@ msgstr "Nema Dozvoljenih Grafikona na ovoj Nadzornoj Tabli" msgid "No Preview" msgstr "Nema Pregleda" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "Pregled nije Dostupan" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "Nijedan Pisač nije Dostupan." @@ -16952,11 +17048,11 @@ msgstr "Nema Rezultata" msgid "No Results found" msgstr "Nema Rezultata" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "Nisu Navedene Uloge" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "Nije Pronađeno Odabirno Polje" @@ -16964,7 +17060,7 @@ msgstr "Nije Pronađeno Odabirno Polje" msgid "No Suggestions" msgstr "Nema Prijedloga" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "Nema Oznaka" @@ -16976,7 +17072,7 @@ msgstr "Nema Nadolazećih Događaja" msgid "No address added yet." msgstr "Adresa još nije dodana." -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "Nema upozorenja za danas" @@ -17004,23 +17100,19 @@ msgstr "Nema promjena za sinhronizaciju" msgid "No changes to update" msgstr "Nema promjena za ažuriranje" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "Još nema komentara" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " -msgstr "Još nema komentara. " +msgid "No comments yet." +msgstr "Još nema komentara." #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." msgstr "Još nema dodanih kontakata." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "Nema kontakata povezanih s dokumentom" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "Nema podataka za izvoz" @@ -17036,11 +17128,15 @@ msgstr "Nije pronađen nijedan dokument označen sa {0}" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "Nijedan račun e-pošte nije povezan s korisnikom. Dodajte račun pod Korisnik > Pristigla pošta." +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "Nema adresa e-pošte za pozivnicu" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "Nema neuspjelih zapisa" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "Nisu pronađena polja koja se mogu koristiti kao kolona Oglasne Table. Koristite formu za prilagođavanje da dodate prilagođeno polje tipa \"Odaberi\"." @@ -17064,7 +17160,7 @@ msgstr "Nema daljnjih zapisa" msgid "No matching records. Search something new" msgstr "Nema podudarnih zapisa. Traži nešto novo" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "Nema više artikala za prikaz" @@ -17108,7 +17204,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "Nema dozvole za '{0}' {1}" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "Nema dozvole za čitanje {0}" @@ -17120,7 +17216,7 @@ msgstr "Nema dozvole za {0} {1} {2}" msgid "No records deleted" msgstr "Nema izbrisanih zapisa" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "Nema zapisa u {0}" @@ -17136,7 +17232,7 @@ msgstr "Nijedan zapis neće biti izvezen" msgid "No rows" msgstr "Nema redova" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "Nema predmeta" @@ -17156,11 +17252,11 @@ msgstr "Bez {0}" msgid "No {0} Found" msgstr "Nije pronađeno {0}" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "Nije pronađeno {0}" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "Nije pronađeno {0} sa odgovarajućim filterima. Obriši filtere da vidite sve {0}." @@ -17169,7 +17265,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:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "Broj." @@ -17212,7 +17308,7 @@ msgstr "Normalizovane Kopije" msgid "Normalized Query" msgstr "Normalizovani Upit" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "Nije Dozvoljeno" @@ -17233,7 +17329,7 @@ msgstr "Nisu Podređeni Od" msgid "Not Equals" msgstr "Nije Jednako" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "Nije Pronađeno" @@ -17259,20 +17355,19 @@ msgstr "Nije povezano ni sa jednim zapisom" msgid "Not Nullable" msgstr "Nemože se Nulirati" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "Nije Dozvoljeno" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "Nije Dozvoljeno čitati {0}" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17281,10 +17376,10 @@ msgstr "Nije Objavljeno" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "Nespremljeno" @@ -17316,7 +17411,7 @@ msgstr "Nije važeća Vrijednost Odvojena Zarezima (CSV datoteka)" msgid "Not a valid User Image." msgstr "Nije važeća Korisnička slika." -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "Nije važeća Akcija Radnog Toka" @@ -17332,11 +17427,11 @@ msgstr "Nije aktivno" msgid "Not allowed for {0}: {1}" msgstr "Nije dozvoljeno za {0}: {1}" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "Nije dozvoljeno priložiti {0} dokument, omogući Dozvoli Ispis za {0} u Postavkama Ispisa" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "Nije dozvoljeno kreirati prilagođeni Virtualni DocType." @@ -17360,27 +17455,27 @@ msgstr "Nije pronađeno" msgid "Not in Developer Mode" msgstr "Nije u načinu rada za programere" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "Nije u načinu rada za programere! Postavi u site_config.json ili napravi 'Prilagođen' DocType." -#: frappe/core/doctype/system_settings/system_settings.py:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Nije dozvoljeno" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "Nije dozvoljen pregled {0}" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17415,7 +17510,7 @@ msgstr "Napomena: Za najbolje rezultate, slike moraju biti iste veličine, a ši msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "Napomena: Višestruke sesije će biti dozvoljene u slučaju mobilnog uređaja" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "Napomena: Ovo će biti podijeljeno s korisnikom." @@ -17439,10 +17534,9 @@ msgstr "Ništa nije ostalo za ponoviti" msgid "Nothing left to undo" msgstr "Ništa nije ostalo za poništiti" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "Ništa za pokazati" @@ -17488,15 +17582,15 @@ msgstr "Obavijest Pretplaćeni Dokument" msgid "Notification sent to" msgstr "Obavještenje je poslano za" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "Obavještenje: klijent {0} nema postavljen broj mobilnog telefona" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "Obavještenje: dokument {0} nema postavljen broj {1} (polje: {2})" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "Obavještenje: korisnik {0} nema postavljen broj mobilnog telefona" @@ -17547,7 +17641,7 @@ msgstr "Obavijesti ako nema odgovora za (u minutama)" msgid "Notify users with a popup when they log in" msgstr "Obavijestite korisnike skočnim prozorom kada se prijave" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "Sad" @@ -17605,12 +17699,12 @@ msgstr "Broj Grupa" msgid "Number of Queries" msgstr "Broj Upita" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "Broj polja priloga je veći od {}, ograničenje je ažurirano na {}." -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "Broj Sigurnosnih Kopija mora biti veći od nule." @@ -17719,11 +17813,11 @@ msgstr "OTP Aplikacija" msgid "OTP Issuer Name" msgstr "Naziv OTP Izdavaoca" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "OTP Poništavanje Tajne - {0}" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "OTP Tajna je resetovana. Ponovna registracija će biti potrebna prilikom sljedeće prijave." @@ -17842,7 +17936,7 @@ msgstr "Na ili Poslije" msgid "On or Before" msgstr "Na ili Prije" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "{0}, {1} je napisao:" @@ -17882,7 +17976,7 @@ msgstr "Introdukcija Završena" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "Jednom podneseni dokumenti koji se podnose se ne mogu mijenjati. Mogu se samo poništiti i izmjenuti." @@ -17927,7 +18021,7 @@ msgstr "Samo Administrator može koristiti Snimač" msgid "Only Allow Edit For" msgstr "Dozvoli uređivanje samo za" -#: frappe/core/doctype/doctype/doctype.py:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "Jedine dopuštene opcije za polje podataka su:" @@ -17944,7 +18038,7 @@ msgstr "Samo Upravitelj Radnog Prostorar može uređivati javne radne prostore" msgid "Only allowed to export customizations in developer mode" msgstr "Dozvoljeno je izvoziti prilagođavanja samo u načinu rada za programere" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "Mogu se odbaciti samo nacrti dokumenata" @@ -17963,19 +18057,19 @@ msgstr "Za nove zapise neophodna su samo obavezna polja. Ako želite, možete iz msgid "Only one {0} can be set as primary." msgstr "Samo jedan {0} može biti postavljen kao primarni." -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "Mogu se izbrisati samo izvještaji tipa Konstruktor Izvještaja" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "Mogu se uređivati samo izvještaji tipa Konstruktor Izvještaja" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Dozvoljeno je prilagođavanje samo standardnih tipova dokumenata iz obrasca za prilagođavanje." -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "Samo Administrator može izbrisati standardni DocType." @@ -18045,7 +18139,7 @@ msgstr "Otvori Referentni Dokument" msgid "Open Settings" msgstr "Otvori Postavke" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "Aplikacije otvorenog koda za Web" @@ -18063,7 +18157,7 @@ msgstr "Otvorite dijalog sa obaveznim poljima da brzo kreirate novi zapis. Mora msgid "Open a module or tool" msgstr "Otvori modul ili alat" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "Otvori konzolu" @@ -18071,7 +18165,7 @@ msgstr "Otvori konzolu" msgid "Open in a new tab" msgstr "Otvori u novoj kartici" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Otvorite stavku liste" @@ -18086,13 +18180,13 @@ msgstr "Otvorite aplikaciju za autentifikaciju na svom mobilnom telefonu." #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "Otvori {0}" @@ -18101,6 +18195,10 @@ msgstr "Otvori {0}" msgid "OpenID Configuration" msgstr "OpenID Konfiguracija" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "OpenID Konfiguracija uspješno preuzeta!" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" @@ -18116,7 +18214,7 @@ msgstr "Otvoreno" msgid "Operation" msgstr "Operacija" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "Operator mora biti jedan od {0}" @@ -18142,7 +18240,7 @@ msgstr "Opcija 2" msgid "Option 3" msgstr "Opcija 3" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "Opcija {0} za polje {1} nije podređena tabela" @@ -18162,6 +18260,7 @@ msgstr "Opcija: Upozorenje će biti poslano ako je ovaj izraz tačan" #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -18170,11 +18269,12 @@ msgstr "Opcija: Upozorenje će biti poslano ako je ovaj izraz tačan" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "Opcije" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "Opcije Vrsta polja 'Dinamička veza' mora upućivati na drugo polje veze s opcijama kao 'DocType'" @@ -18183,7 +18283,7 @@ msgstr "Opcije Vrsta polja 'Dinamička veza' mora upućivati na drugo polje veze msgid "Options Help" msgstr "Pomoć Opcija" -#: frappe/core/doctype/doctype/doctype.py:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "Opcije Ocjenjivačkog Polja mogu se kretati od 3 do 10" @@ -18191,7 +18291,7 @@ msgstr "Opcije Ocjenjivačkog Polja mogu se kretati od 3 do 10" msgid "Options for select. Each option on a new line." msgstr "Opcije za odabir. Svaka opcija u novom redu." -#: frappe/core/doctype/doctype/doctype.py:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 msgid "Options for {0} must be set before setting the default value." msgstr "Opcije za {0} moraju se postaviti prije postavljanja standard vrijednosti." @@ -18199,7 +18299,7 @@ msgstr "Opcije za {0} moraju se postaviti prije postavljanja standard vrijednost msgid "Options is required for field {0} of type {1}" msgstr "Opcije su potrebne za polje {0} tipa {1}" -#: frappe/model/base_document.py:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "Opcije nisu postavljene za polje veze {0}" @@ -18215,7 +18315,7 @@ msgstr "Narandžasta" msgid "Order" msgstr "Red" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "Sortiraj Po mora biti niz" @@ -18231,12 +18331,12 @@ msgstr "Istorija" msgid "Org History Heading" msgstr "Naslov Istorije Organizacije" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "Orijentacija" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "Originalna Vrijednost" @@ -18304,10 +18404,6 @@ msgstr "Izlaz" msgid "Overview" msgstr "Pregled" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "Vlasnik" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" @@ -18315,9 +18411,9 @@ msgstr "ZAKRPA" #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/printing/page/print/print.js:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "PDF" @@ -18358,11 +18454,11 @@ msgstr "PDF Generisanje nije uspjelo" msgid "PDF generation failed because of broken image links" msgstr "PDF Generisanje nije uspjelo zbog neispravnih veza slika" -#: frappe/printing/page/print/print.js:616 +#: frappe/printing/page/print/print.js:656 msgid "PDF generation may not work as expected." msgstr "PDF Generisanje možda neće raditi kako se očekuje." -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:574 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "PDF ispis putem \"Direktnog Ispisa\" nije podržano." @@ -18534,7 +18630,7 @@ msgstr "Stranica za prikaz na web stranici\n" #: frappe/public/html/print_template.html:25 #: frappe/public/js/frappe/views/reports/print_tree.html:89 -#: frappe/public/js/frappe/web_form/web_form.js:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "Stranica {0} od {1}" @@ -18561,7 +18657,7 @@ msgstr "Nadređeni DocType" msgid "Parent Document Type" msgstr "Nadređeni Tip Dokumenta" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "Nadređeni Dokument Tip je obavezan za kreiranje numeričke kartice" @@ -18578,11 +18674,11 @@ msgstr "Nadređeno Polje" #. Label of the nsm_parent_field (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype.py:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "Nadređeno Polje (Stablo)" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "Nadređeno Polje mora biti važeće ime polja" @@ -18591,7 +18687,7 @@ msgstr "Nadređeno Polje mora biti važeće ime polja" msgid "Parent Label" msgstr "Nadređena Oznaka" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 msgid "Parent Missing" msgstr "Nedostaje Nadređeni" @@ -18665,8 +18761,8 @@ msgstr "Pasivno" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18676,7 +18772,7 @@ msgstr "Pasivno" msgid "Password" msgstr "Lozinka" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "E-pošta s lozinkom poslana" @@ -18689,7 +18785,7 @@ msgstr "Poništavanje Lozinke" msgid "Password Reset Link Generation Limit" msgstr "Maksimalan Broj Veza za Poništavanje Lozinke po satu" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "Lozinka se ne može filtrirati" @@ -18706,6 +18802,10 @@ msgstr "Lozinka za Osnovni DN" msgid "Password is required or select Awaiting Password" msgstr "Lozinka je obavezna ili odaberi Čekam Lozinku" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "Lozinka je važeća. 👍" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "Nedostaje Lozinka za Račun e-pošte" @@ -18714,7 +18814,7 @@ msgstr "Nedostaje Lozinka za Račun e-pošte" msgid "Password not found for {0} {1} {2}" msgstr "Lozinka nije pronađena za {0} {1} {2}" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "Uputstva za poništavanje lozinke su poslana na e-poštu korisnika {}" @@ -18722,11 +18822,11 @@ msgstr "Uputstva za poništavanje lozinke su poslana na e-poštu korisnika {}" msgid "Password set" msgstr "Lozinka postavljena" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu." @@ -18734,7 +18834,7 @@ msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu." msgid "Passwords do not match" msgstr "Lozinke se ne podudaraju" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "Lozinke se ne podudaraju!" @@ -18804,10 +18904,12 @@ msgstr "Maksimalna Upotreba Memorije" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "Na Čekanju" @@ -18883,7 +18985,7 @@ msgstr "Trajno Podnesi {0}?" msgid "Permanently delete {0}?" msgstr "Trajno izbriši {0}?" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "Greška Dozvole" @@ -18943,16 +19045,16 @@ msgstr "Tip Dozvole" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "Greška Dozvola" @@ -19014,15 +19116,18 @@ msgstr "Zahtjev Preuzimanje Ličnih Podataka" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -19035,13 +19140,13 @@ msgstr "Telefon" msgid "Phone No." msgstr "Broj Telefona." -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 msgid "Phone Number {0} set in field {1} is not valid." msgstr "Telefonski Broj {0} postavljen u polje {1} nije važeći." -#: frappe/public/js/frappe/form/print_utils.js:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "Odaberi Kolone" @@ -19101,11 +19206,11 @@ msgstr "Instaliraj biblioteku ldap3 putem pip-a da biste koristili ldap funkcion msgid "Please Set Chart" msgstr "Postavi Grafikon" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "Ažuriraj SMS Postavke" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "Dodaj predmet e-pošti" @@ -19113,7 +19218,7 @@ msgstr "Dodaj predmet e-pošti" msgid "Please add a valid comment." msgstr "Dodaj relevantan komentar." -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "Zamoli administratora da potvrdi vašu registraciju" @@ -19121,11 +19226,11 @@ msgstr "Zamoli administratora da potvrdi vašu registraciju" msgid "Please attach a file first." msgstr "Priloži datoteku." -#: frappe/printing/doctype/letter_head/letter_head.py:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 msgid "Please attach an image file to set HTML for Footer." msgstr "Priloži datoteku slike da postavite HTML za Podnožje." -#: frappe/printing/doctype/letter_head/letter_head.py:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "Priloži datoteku slike da postavite HTML za Zaglavlje." @@ -19133,19 +19238,15 @@ msgstr "Priloži datoteku slike da postavite HTML za Zaglavlje." msgid "Please attach the package" msgstr "Priloži Applikaciju" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "Provjerite URL konfiguracije OpenID-a" - #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "Provjeri vrijednosti filtera postavljene za Grafikon Nadzorne Table: {}" -#: frappe/model/base_document.py:951 +#: frappe/model/base_document.py:1008 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Provjeri vrijednost \"Preuzmi iz\" postavljenu za polje {0}" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "Provjeri e-poštu za potvrdu" @@ -19177,11 +19278,11 @@ msgstr "Klikni na sljedeću vezu da postavite novu lozinku" msgid "Please confirm your action to {0} this document." msgstr "Potvrdi akciju {0} ovog dokumenta." -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "Kontaktiraj Upravitelja Sistema da instalira ispravnu verziju." -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "Kreiraj Numeričku Karticu" @@ -19197,20 +19298,20 @@ msgstr "Izbriši polje iz {0} ili dodaj traženi dokument." msgid "Please do not change the template headings." msgstr "Ne mijenjaj Naslove Šablona." -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" msgstr "Kopiraj ovo da izvršite promjene" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "Omogući barem jedan ključ za prijavu na društvenim mrežama ili LDAP ili se prijavite putem veze e-pošte prije nego što onemogućite prijavu zasnovanu na korisničkom imenu/lozinki." #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "Omogući iskačuće prozore" @@ -19247,7 +19348,7 @@ msgstr "Unesi ID Klijenta prije nego što se omogući prijava na društvene mre msgid "Please enter Client Secret before social login is enabled" msgstr "Unesi Tajnu Klijenta prije nego što se omogući prijava na društvenim mrežama" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "Unesi URL Konfiguracije OpenID-a" @@ -19284,11 +19385,12 @@ msgstr "Unesi novu lozinku." msgid "Please enter your old password." msgstr "Unesi staru lozinku." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "Ppronađi priloženo {0}: {1}" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "Prijavi se da biste objavili komentar." @@ -19296,11 +19398,11 @@ msgstr "Prijavi se da biste objavili komentar." msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "Provjeri da su Referentni Dokumenti Konverzacije kružno povezani." -#: frappe/model/document.py:988 +#: frappe/model/document.py:992 msgid "Please refresh to get the latest document." msgstr "Osvježi da dobijete najnoviji dokument." -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:575 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "Ukloni mapiranje pisača u Postavkama Pisača i pokušaj ponovo." @@ -19316,7 +19418,7 @@ msgstr "Spremi dokument prije dodjele" msgid "Please save the document before removing assignment" msgstr "Spremi dokument prije uklanjanja dodjele" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "Prvo spremi izvještaj" @@ -19324,7 +19426,7 @@ msgstr "Prvo spremi izvještaj" msgid "Please save to edit the template." msgstr "Spremi da uredite šablon." -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "Odaberi DocType" @@ -19332,19 +19434,19 @@ msgstr "Odaberi DocType" msgid "Please select Entity Type first" msgstr "Odaberi Tip Entiteta" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "Odaberi Minimalnu Vrijednost Lozinke" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "Odaberi X i Y polja" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "Odaberi pozivni broj zemlje za polje {1}." -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "Odaberi datoteku." @@ -19352,7 +19454,7 @@ msgstr "Odaberi datoteku." msgid "Please select a file or url" msgstr "Odaberi datoteku ili url" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" msgstr "Odaberi važeću csv datoteku sa podacima" @@ -19364,7 +19466,7 @@ msgstr "Odaberi važeći filter datuma" msgid "Please select applicable Doctypes" msgstr "Odaberi primjenjive Dokumente" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Odaberi najmanje 1 kolonu iz {0} za sortiranje/grupiranje" @@ -19390,11 +19492,11 @@ msgstr "Odaberi {0}" msgid "Please set Email Address" msgstr "Postavi adresu e-pošte" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:589 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "Podesite mapiranje pisača za ovaj format ispisivanja u postavkama pisača" -#: frappe/public/js/frappe/views/reports/query_report.js:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "Postavi filtere" @@ -19402,7 +19504,7 @@ msgstr "Postavi filtere" msgid "Please set filters value in Report Filter table." msgstr "Postavi vrijednost filtera u tabeli Filter Izvještaja." -#: frappe/model/naming.py:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "Molimo postavite naziv dokumenta" @@ -19414,7 +19516,7 @@ msgstr "Postavite sljedeće dokumente na ovoj Nadzornoj Tabli kao standardne." msgid "Please set the series to be used." msgstr "Postavi seriju imenovanja koja će se koristiti." -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "Podesite SMS prije nego što ga postavite kao metodu provjere autentičnosti, putem SMS Postavki" @@ -19438,23 +19540,23 @@ msgstr "Navedi" msgid "Please specify a valid parent DocType for {0}" msgstr "Navedi važeći nadređeni DocType za {0}" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "Navedi najmanje 10 minuta zbog ritma okidača raspoređivača" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "Molimo navedite pomak minuta" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "Navedi koje polje datuma mora biti označeno" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "Navedi koje polje datuma i vremena mora biti označeno" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "Navedi koje polje vrijednosti mora biti označeno" @@ -19475,7 +19577,7 @@ msgstr "Koristi važeći LDAP filter za pretraživanje" msgid "Please use following links to download file backup." msgstr "Koristi sljedeće linkove za preuzimanje sigurnosne kopije datoteka." -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "Za više informacija posjeti https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key." @@ -19529,7 +19631,7 @@ msgstr "Stavka Menija Portala" msgid "Portal Settings" msgstr "Postavke Portala" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "Portret" @@ -19557,6 +19659,7 @@ msgstr "Pošte" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "Broj Pošte" @@ -19565,15 +19668,7 @@ msgstr "Broj Pošte" msgid "Posting Timestamp" msgstr "Vremenska Oznaka" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "Objave od {0}" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "Objave zavedene pod {0}" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "Potencijalno opasan sadržaj u niz literalu: {0}" @@ -19588,7 +19683,11 @@ msgstr "Potencijalno opasan sadržaj u niz literalu: {0}" msgid "Precision" msgstr "Preciznost" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "Preciznost ({0}) za {1} ne može biti duža od njegove dužine ({2})." + +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "Preciznost bi trebala biti između 1 i 6" @@ -19636,7 +19735,7 @@ msgstr "Analitika Pripremljenog Izvještaja" msgid "Prepared Report User" msgstr "Korisnik Pripremljenog Izvještaja" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "Generisanje Pripremljenog Izvještaja nije uspjelo" @@ -19644,7 +19743,7 @@ msgstr "Generisanje Pripremljenog Izvještaja nije uspjelo" msgid "Preparing Report" msgstr "Priprema Izvještaja" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "Priloži šablon poruci e-pošte" @@ -19665,7 +19764,7 @@ msgstr "Pritisni Enter da spremite" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19679,13 +19778,6 @@ msgstr "Pregled" msgid "Preview HTML" msgstr "Pregled HTML" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "Pregled Slike" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19714,7 +19806,7 @@ msgid "Preview:" msgstr "Pregled:" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19726,12 +19818,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "Prethodna" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "Prethodni Hash" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "Prethodno Podnošenje" @@ -19777,19 +19864,19 @@ msgstr "Primarni ključ tipa dokumenta {0} ne može se promijeniti jer postoje p #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/success_action/success_action.js:58 #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/printing/page/print/print.js:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "Ispiši" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Ispiši" @@ -19807,8 +19894,8 @@ msgstr "Ispiši Dokumente" #: frappe/core/workspace/build/build.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/page/print/print.js:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19859,7 +19946,7 @@ msgstr "Pomoć Ispis Formata" msgid "Print Format Type" msgstr "Tip Ispis Formata" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "Format Ispisa nije pronađen" @@ -19898,7 +19985,7 @@ msgstr "Sakrij ispis ako nema vrijednost" msgid "Print Language" msgstr "Jezik Ispisa" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "Ispis Poslan na pisač!" @@ -19915,8 +20002,8 @@ msgstr "Ispisni Server" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "Postavke Ispisa" @@ -19964,11 +20051,11 @@ msgstr "Ispiši Dokument" msgid "Print with letterhead" msgstr "Ispiši sa Zaglavljem" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "Pisač" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "Mapiranje Pisača" @@ -19978,11 +20065,11 @@ msgstr "Mapiranje Pisača" msgid "Printer Name" msgstr "Naziv Pisača" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "Postavke Pisača" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "Mapiranje pisača nije postavljeno." @@ -20040,7 +20127,7 @@ msgstr "Savjet: Dodaj referencu: {{ reference_doctype }} {{ reference_name msgid "Proceed" msgstr "Nastavi" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "Svejedno Nastavi" @@ -20061,18 +20148,28 @@ msgstr "Prof" msgid "Profile" msgstr "Profil" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "Slika Profila" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Profil uspješno ažuriran." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "Napredak" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "Projekat" #. Label of the property (Data) field in DocType 'Property Setter' -#: frappe/core/doctype/version/version_view.html:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: frappe/core/doctype/version/version_view.html:13 +#: frappe/core/doctype/version/version_view.html:38 +#: frappe/core/doctype/version/version_view.html:75 #: frappe/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "Svojstvo" @@ -20109,7 +20206,7 @@ msgstr "Tip Svojstva" msgid "Protect Attached Files" msgstr "Zaštiti Priložene Datoteke" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "Zaštićena Datoteka" @@ -20158,24 +20255,18 @@ msgstr "Sigurnosna Kopija Javnih Datoteka:" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "Objavi" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -20185,15 +20276,6 @@ msgstr "Objavi" msgid "Published" msgstr "Objavljeno" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "Objavljeno" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "Objavljeno" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json @@ -20283,7 +20365,9 @@ msgid "Put on Hold" msgstr "Stavi na Čekanje" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "Python" @@ -20295,9 +20379,9 @@ msgstr "QR Kod" msgid "QR Code for Login Verification" msgstr "QR Kod za Provjeru Prijave" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " -msgstr "QZ Tray neuspješan: " +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" +msgstr "QZ Tray neuspješan:" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' @@ -20346,7 +20430,7 @@ msgstr "Izvještaj Upita" msgid "Query analysis complete. Check suggested indexes." msgstr "Analiza Upita završena. Provjeri predložene indekse." -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "Upit mora biti tipa SELECT ili samo za čitanje WITH." @@ -20446,7 +20530,7 @@ msgstr "Filter Brze Liste" msgid "Quick Lists" msgstr "Brze Liste" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "Ponuda mora biti između 0 i 3" @@ -20483,12 +20567,6 @@ msgstr "Raspon" msgid "Rate Limiting" msgstr "Ograniči" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "Ograniči" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20508,7 +20586,7 @@ msgstr "Ocjena" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "Direktne Naredbe" @@ -20525,7 +20603,7 @@ msgstr "Neobrađena e-pošta" msgid "Raw Printing" msgstr "Direktno Ispisivanje" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "Postavka Direktnog Ispisivanja" @@ -20542,8 +20620,8 @@ msgid "Re:" msgstr "Od:" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "Od: {0}" @@ -20599,11 +20677,6 @@ msgstr "Samo za Čitanje zavisi o (JS)" msgid "Read Only Mode" msgstr "Samo za čitanje Način" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "Vrijeme Čitanja" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20619,7 +20692,7 @@ msgstr "Čitanje Primatelja Omogućeno" msgid "Read mode" msgstr "Način Čitanja" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "Pročitaj dokumentaciju da biste saznali više" @@ -20639,11 +20712,11 @@ msgstr "Realno Vrijeme (SocketIO)" msgid "Reason" msgstr "Razlog" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "Obnovi" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "Obnovi Stablo" @@ -20681,7 +20754,7 @@ msgstr "Parametar Primaoca" msgid "Recent years are easy to guess." msgstr "Lako je pogoditi posljednje godine." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "Skorašnji" @@ -20692,6 +20765,14 @@ msgstr "Skorašnji" msgid "Recipient" msgstr "Primatelj" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "Račun Primaoca" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20724,7 +20805,7 @@ msgstr "Predloženi Indeks Snimača" msgid "Records for following doctypes will be filtered" msgstr "Zapisi za sljedeće tipove dokumenata bit će filtrirani" -#: frappe/core/doctype/doctype/doctype.py:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "Rekurzivno Preuzimanje Iz" @@ -20741,6 +20822,11 @@ msgstr "Crvena" msgid "Redirect HTTP Status" msgstr "Preusmjeri HTTP Status" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "Preusmjeri na" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20835,6 +20921,11 @@ msgstr "Referentni Datum" msgid "Reference Datetime" msgstr "Referentni Datum i Vrijeme" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "Referentni Dokument" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20862,7 +20953,6 @@ msgstr "Referentni Naziv Dokumenta" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20903,9 +20993,9 @@ msgstr "Referentni Dokument Naziv" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20923,9 +21013,9 @@ msgstr "Referentni Dokument Naziv" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20955,7 +21045,6 @@ msgstr "Referentni Tip Dokumenta" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -21003,15 +21092,15 @@ msgstr "Referenca: {0} {1}" msgid "Referrer" msgstr "Preporučitelj" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Osvježi" @@ -21025,6 +21114,10 @@ msgstr "Osvježi Sve" msgid "Refresh Google Sheet" msgstr "Osvježite Google Sheet" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "Osvježi Pregled Ispisa" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -21036,18 +21129,18 @@ msgstr "Osvježite Google Sheet" msgid "Refresh Token" msgstr "Osvježi Token" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "Osvježava se" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "Osvježavanje u toku..." -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "Registrovan, ali onemogućen" @@ -21224,7 +21317,7 @@ msgstr "Preimenuj naziv polja" msgid "Rename {0}" msgstr "Preimenuj {0}" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "Preimenovane datoteke i zamijenjen kod u kontrolerima, provjerite!" @@ -21355,9 +21448,9 @@ msgstr "Odgovori Svima" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "Izvještaj" @@ -21427,11 +21520,11 @@ msgstr "Upravitelj izvještaja" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "Naziv Izvještaja" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "Naziv Izvještaja, Polje Izvještaja i Funkcija su obevezni za kreiranje numeričke kartice" @@ -21465,21 +21558,21 @@ msgstr "Pregled iIvještaja" msgid "Report bug" msgstr "Prijavi Grešku" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 msgid "Report cannot be set for Single types" msgstr "Izvještaj se ne može postaviti za Singl tipove" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 -#: frappe/desk/doctype/number_card/number_card.js:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "Izvještaj nema podataka, promijenite filtere ili promijenite naziv izvještaja" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 msgid "Report has no numeric fields, please change the Report Name" msgstr "Izvještaj nema numerička polja, promijeni Naziv Izvještaja" -#: frappe/public/js/frappe/views/reports/query_report.js:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "Izvještaj je pokrenut, klikni da vidite status" @@ -21491,24 +21584,24 @@ msgstr "Granica Izvještaja Dostignuta" msgid "Report timed out." msgstr "Izvještaj je istekao." -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "Izvještaj je uspješno ažuriran" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 msgid "Report was not saved (there were errors)" msgstr "Izvještaj nije spremljen (bilo je grešaka)" -#: frappe/public/js/frappe/views/reports/query_report.js:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "Izvještaj sa više od 10 kolona izgleda bolje u pejzažnom načinu rada." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "Izvještaj {0}" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "Izvještaj {0} izbrisan" @@ -21516,7 +21609,7 @@ msgstr "Izvještaj {0} izbrisan" msgid "Report {0} is disabled" msgstr "Izvještaj {0} je onemogućen" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "Izvještaj {0} spremljen" @@ -21527,7 +21620,7 @@ msgstr "Izvještaj:" #. Label of the prepared_report_section (Section Break) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "Izvještaji" @@ -21535,7 +21628,7 @@ msgstr "Izvještaji" msgid "Reports & Masters" msgstr "Izvještaji & Masters" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "Izvještaji su već u redu čekanja" @@ -21554,7 +21647,10 @@ msgid "Request Body" msgstr "Zahtjev od" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "Zatraži Podatke" @@ -21606,6 +21702,11 @@ msgstr "Zahtjev Istekao" msgid "Request URL" msgstr "URL Zahtjeva" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "Zahtjev za Brisanje Računa" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21657,11 +21758,11 @@ msgstr "Poništi Grafikon" msgid "Reset Dashboard Customizations" msgstr "Poništi Prilagođavanja Nadzorne Table" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "Poništi Polja" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "Poništi LDAP Lozinku" @@ -21669,11 +21770,11 @@ msgstr "Poništi LDAP Lozinku" msgid "Reset Layout" msgstr "Poništi Izgled" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "Poništi OTP Tajnu" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21708,7 +21809,7 @@ msgstr "Vrati na Standard" msgid "Reset sorting" msgstr "Poništi Sortiranje" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "Vrati na Standard" @@ -21746,6 +21847,7 @@ msgid "Resource TOS URI" msgstr "URI Uvjeta Pružanja Usluge Resursa" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21755,11 +21857,6 @@ msgstr "URI Uvjeta Pružanja Usluge Resursa" msgid "Response" msgstr "Odgovor" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "Odgovor " - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21818,7 +21915,7 @@ msgstr "Ograniči na Domenu" 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 "Ograniči korisnika samo sa ove IP adrese. Više IP adresa može se dodati odvajanjem zarezima. Također se prihvaćaju djelomične IP adrese poput (111.111.111)" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "Ograničenja" @@ -21852,7 +21949,7 @@ msgstr "Vratite se na ekran za provjeru i unesite kod koji prikazuje vaša aplik msgid "Reverse Icon Color" msgstr "Obrnute Boje Ikone" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "Vraćanje dužine na {0} za '{1}' u '{2}'. Postavljanje dužine kao {3} će uzrokovati skraćivanje podataka." @@ -21870,9 +21967,7 @@ msgstr "Opozovi" msgid "Revoked" msgstr "Opozvano" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21913,6 +22008,7 @@ msgstr "Robots.txt" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21926,6 +22022,7 @@ msgstr "Robots.txt" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21964,7 +22061,7 @@ msgstr "Dozvola Uloge za Stranicu i Izvještaj" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "Dozvole Uloge" @@ -21974,7 +22071,7 @@ msgstr "Dozvole Uloge" msgid "Role Permissions Manager" msgstr "Upravitelj Dozvola Uloge" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Upravitelj Dozvola Uloge" @@ -22017,6 +22114,7 @@ msgstr "Uloga je postavljena prema tipu korisnika {0}" #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -22026,6 +22124,7 @@ msgstr "Uloga je postavljena prema tipu korisnika {0}" #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -22062,7 +22161,7 @@ msgstr "Uloge Html" msgid "Roles can be set for users from their User page." msgstr "Uloge se mogu postaviti za korisnike sa njihove korisničke stranice." -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "Root {0} se ne može izbrisati" @@ -22082,8 +22181,6 @@ msgstr "Metoda Zaokruživanja" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -22095,8 +22192,6 @@ msgstr "Metoda Zaokruživanja" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -22121,24 +22216,24 @@ msgstr "Preusmjeravanja Rute" msgid "Route: Example \"/app\"" msgstr "Ruta: Primjer \"/app\"" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "Red" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "Red #" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "Red # {0}: korisnik koji nije administrator ne može postaviti ulogu {1} na prilagođeni tip dokumenta" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "Red #{0}:" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "Red #{}: Naziv polja je obavezan" @@ -22147,11 +22242,6 @@ msgstr "Red #{}: Naziv polja je obavezan" msgid "Row Format" msgstr "Format Reda" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "Indeks Reda" - #. Label of the row_indexes (Code) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Row Indexes" @@ -22166,7 +22256,7 @@ msgstr "Naziv Reda" msgid "Row Number" msgstr "Broj Reda" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "Vrijednosti Reda Promijenjene" @@ -22174,30 +22264,33 @@ msgstr "Vrijednosti Reda Promijenjene" msgid "Row {0}" msgstr "Red {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "Red {0}: Nije dozvoljeno onemogućiti Obavezno za standardna polja" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "Red {0}: Nije dozvoljeno omogućiti Dozvoli pri podnošenju za standardna polja" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Added" msgstr "Dodani Redovi" #. Label of the rows_removed_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "Ukonjeni Redovi" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "Prag redaka za Mrežu Pretraživanje" @@ -22288,7 +22381,7 @@ msgstr "SMS Parametar" msgid "SMS Settings" msgstr "SMS Postavke" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "SMS je uspješno poslan" @@ -22366,7 +22459,7 @@ msgstr "Salesforce" msgid "Salutation" msgstr "Titula" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "Isto polje se unosi više puta" @@ -22394,20 +22487,20 @@ msgstr "Subota" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22416,16 +22509,12 @@ msgstr "Subota" msgid "Save" msgstr "Spremi" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "Spremi API Tajnu: {0}" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "Svejedno Spremi" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "Spremi Kao" @@ -22433,11 +22522,11 @@ msgstr "Spremi Kao" msgid "Save Customizations" msgstr "Spremi Prilagođavanja" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "Spremi Izvještaj" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "Spremi Filtere" @@ -22462,7 +22551,7 @@ msgstr "Spremljeno" msgid "Saved Filters" msgstr "Spremjeni Filteri" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22541,7 +22630,7 @@ msgstr "Tip Zakazanog Posla" msgid "Scheduled Jobs Logs" msgstr "Zapisnik Zakazanih Poslova" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "Zakazano izvršenje za skriptu {0} je ažurirano" @@ -22564,7 +22653,7 @@ msgstr "Raspoređivač" msgid "Scheduler Event" msgstr "Događaj Raspoređivača" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "Raspoređivač Neaktivan" @@ -22577,7 +22666,7 @@ msgstr "Status Raspoređivača" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "Raspoređivač se ne može ponovno omogućiti kada je aktivan način rada za održavanje." -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "Raspoređivač je neaktivan. Nije moguće uvesti podatke." @@ -22709,7 +22798,7 @@ msgstr "Rezultati Pretrage" msgid "Search by filename or extension" msgstr "Pretraga po imenu datoteke ili ekstenziji" -#: frappe/core/doctype/doctype/doctype.py:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "Polje za pretragu {0} nije važeće" @@ -22809,7 +22898,7 @@ msgstr "Sigurnosne Postavke" msgid "See all Activity" msgstr "Pogledaj Sve Aktivnosti" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "Pogledaj sve prethodne izvještaje." @@ -22818,7 +22907,7 @@ msgstr "Pogledaj sve prethodne izvještaje." msgid "See on Website" msgstr "Vidi na web stranici" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "Pogledaj prethodne odgovore" @@ -22865,7 +22954,7 @@ msgstr "Viđeno prema Tabeli" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22873,28 +22962,28 @@ msgstr "Odaberi" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "Odaberi sve" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "Odaberi Priloge" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "Odaberi Podređenu Tabelu" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 msgid "Select Column" msgstr "Odaberi Kolonu" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "Odaberi Kolone" @@ -22953,12 +23042,15 @@ msgstr "Odaberi Polje" msgid "Select Field..." msgstr "Odaberi Polje..." -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "Odaberi Polja" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "Odaberite Polja (do {0})" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "Odaberite Polja za Umetanje" @@ -22971,7 +23063,7 @@ msgstr "Odaberi Polja za Ažuriranje" msgid "Select Filters" msgstr "Odaberi Filtere" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "Odaberi Google Kalendar s kojim događaj treba sinhronizirati." @@ -23004,8 +23096,8 @@ msgstr "Odaberi Obavezno" msgid "Select Module" msgstr "Odaberi Modul" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "Odaberi Mrežni Pisač" @@ -23070,14 +23162,14 @@ msgid "Select a field to edit its properties." msgstr "Odaberi polje da biste uredili njegova svojstva." #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "Odaberi Grupu." +msgid "Select a group {0} first." +msgstr "Odaberi grupu {0}." -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" msgstr "Odaberi važeće Polje Pošiljatelja za kreiranje dokumenata iz e-pošte" -#: frappe/core/doctype/doctype/doctype.py:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 msgid "Select a valid Subject field for creating documents from Email" msgstr "Odaberi važeće Polje Predmeta za kreiranje dokumenata iz e-pošte" @@ -23107,13 +23199,13 @@ msgstr "Odaberi najmanje jedan zapis za ispis" msgid "Select atleast 2 actions" msgstr "Odaberi najmanje dvije radnje" -#: frappe/public/js/frappe/list/list_view.js:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Odaberi Artikal Liste" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Odaberi artikle više listi" @@ -23147,7 +23239,7 @@ msgstr "Odaberi dvije verzije da vidite razliku." msgid "Select {0}" msgstr "Odaberi {0}" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "Samoodobrenje nije dozvoljeno" @@ -23331,7 +23423,7 @@ msgstr "E-pošta Pošiljatelja" msgid "Sender Email Field" msgstr "Polje e-pošte Pošiljatelja" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "Polje Pošiljatelja treba da ima opciju E-pošta" @@ -23425,7 +23517,7 @@ msgstr "Serija Imenovanja Ažurirana za {}" msgid "Series counter for {} updated to {} successfully" msgstr "Brojač Serija Imenovanja za {} uspješno je ažuriran na {}" -#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "Serija Imenovanja {0} se već koristi u {1}" @@ -23435,7 +23527,7 @@ msgstr "Serija Imenovanja {0} se već koristi u {1}" msgid "Server Action" msgstr "Radnja Servera" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Greška Servera" @@ -23454,7 +23546,7 @@ msgstr "IP Servera" msgid "Server Script" msgstr "Server Skripta" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "Server Skripte su onemogućene. Omogućite server skripte iz bench konfiguracije." @@ -23501,7 +23593,7 @@ msgstr "Standard Sesije" msgid "Session Defaults Saved" msgstr "Standard Postavke Sesije Spremljene" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "Sesija Istekla" @@ -23510,14 +23602,14 @@ msgstr "Sesija Istekla" msgid "Session Expiry (idle timeout)" msgstr "Istek Sesije (vremensko ograničenje mirovanja)" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "Istek Sesije mora biti u formatu {0}" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "Postavi" @@ -23543,12 +23635,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\" msgstr "Postavi zadane opcije za sve grafikone na ovoj Nadzornoj Tabli (npr. \"colors\": [\"#d1d8dd\", \"#ff5858\"])" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "Postavi Dinamičke Filtere" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23559,7 +23651,7 @@ msgstr "Postavi Filtere" msgid "Set Filters for {0}" msgstr "Postavi filtere za {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "Postavi Nivo" @@ -23613,7 +23705,7 @@ msgstr "Postavi Količinu" msgid "Set Role For" msgstr "Postavi Ulogu za" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Postavi Korisničke Dozvole" @@ -23623,16 +23715,16 @@ msgstr "Postavi Korisničke Dozvole" msgid "Set Value" msgstr "Postavi Vrijednost" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "Postavi sve privatno" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "Postavi sve javno" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "Postavi kao Standard" @@ -23651,18 +23743,21 @@ msgstr "Postavio Korisnik" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "Postavi vrijednosti dinamičkog filtera u JavaScriptu za obavezna polja ovdje." -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "Postavi nestandardnu preciznost za Decimalu ili Valuta polje" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "Postavljanje nestandardne preciznosti za polje tipa Decimala, Valuta ili Postotak" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23778,14 +23873,9 @@ msgstr "Postavke za Kontaktirajte Nas Stranicu" msgid "Settings for the About Us Page" msgstr "Postavke za O nama Stranicu" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "Postavke za kontrolu kategorija blogova i interakcija poput komentara i lajkova" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "Postavljanja" @@ -23801,8 +23891,8 @@ msgstr "Postavljanje> Korisnik" msgid "Setup > User Permissions" msgstr "Postavljanje > Korisničke Dozvole" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "Postavljanje Automatske e-pošte" @@ -23871,11 +23961,6 @@ msgstr "Dostavna Adresa" msgid "Shop" msgstr "Trgovina" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "Kratko Ime" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "Kratke mustre tastature je lako pogoditi" @@ -23895,11 +23980,6 @@ msgstr "Prečice" msgid "Show" msgstr "Prikaži" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "Prikaži \"Poziv na Akciju\" u Blogu" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23952,7 +24032,13 @@ msgstr "Prikaži Dokument" msgid "Show Error" msgstr "Prikaži Grešku" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "Prikaži upozorenje o eksternim linkovima" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "Prikaži Naziv Polja (klikni da kopirate u međuspremnik)" @@ -24080,7 +24166,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "Prikaži ključ za prijavu na socijalnu mrežu kao server za autorizaciju" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "Prikaži Oznake" @@ -24097,7 +24183,7 @@ msgstr "Prikaži Naziv" msgid "Show Title in Link Fields" msgstr "Prikaži Naziv u Poljima Veza" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "Prikaži Ukupno" @@ -24137,10 +24223,6 @@ msgstr "Prikaži sve Verzije" msgid "Show all activity" msgstr "Prikaži sve Aktivnosti" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "Prikaži sve Blogove" - #. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" @@ -24189,8 +24271,8 @@ msgstr "Prikaži vezu do dokumenta" msgid "Show list" msgstr "Prikaži listu" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "Prikaži više detalja" @@ -24219,7 +24301,7 @@ msgstr "Prikaži naziv u prozoru pretraživača kao \"Prefiks - naziv\"" msgid "Show {0} List" msgstr "Prikaži {0} Listu" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "Prikazuju se samo numerička polja iz Izvještaja" @@ -24254,7 +24336,7 @@ msgstr "Bočna Traka i Komentari" msgid "Sign Up and Confirmation" msgstr "Prijava i Potvrda" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "Prijava je onemogućena" @@ -24291,36 +24373,36 @@ msgstr "Prijava Onemogućena" msgid "Signups have been disabled for this website." msgstr "Prijave su onemogućene za ovu web stranicu." -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "Jednostavan Python izraz, primjer: Status u (\"Closed\", \"Cancelled\")" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" -msgstr "Jednostavan Python izraz, primjer: Status u (\"Invalid\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "Jednostavan Python Izraz, Primjer: status == \"Invalid\"" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" -msgstr "Jednostavan Python Izraz, primjer: status == 'Open' i tip == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "Jednostavan Python Izraz, Primjer: status == 'Open' i issue_type == 'Bug'" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" +msgstr "Jednostavan Python Izraz, Primjer: status u (\"Closed\", \"Cancelled\")" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "Simultane Sesije" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "Pojedinačni DocTypes se ne mogu prilagoditi." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Pojedinačni tipovi imaju samo jedan zapis bez pridruženih tablica. Vrijednosti se pohranjuju u tabSingles" @@ -24328,7 +24410,7 @@ msgstr "Pojedinačni tipovi imaju samo jedan zapis bez pridruženih tablica. Vri msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "Stranica radi u načinu samo za čitanje radi održavanja ili ažuriranja stranice, ova radnja se trenutno ne može izvršiti. Molimo pokušajte ponovo kasnije." -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "Veličina" @@ -24547,11 +24629,11 @@ msgstr "Nešto je pošlo po zlu tokom generisanja tokena. Klikni na {0} da gener msgid "Something went wrong." msgstr "Nešto je pošlo po zlu." -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 msgid "Sorry! I could not find what you were looking for." msgstr "Izvinite! Nije pronađeno ono što tražite." -#: frappe/public/js/frappe/views/pageview.js:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "Izvinite! Nije vam dozvoljeno da vidite ovu stranicu." @@ -24582,20 +24664,23 @@ msgstr "Opcije Sortiranja" msgid "Sort Order" msgstr "Redoslijed Sortiranja" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 msgid "Sort field {0} must be a valid fieldname" msgstr "Polje sortiranja {0} mora biti važeći naziv polja" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' -#: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "Izvor" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "Izvorni Kod" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24622,6 +24707,12 @@ msgstr "Neželjena Pošta" msgid "SparkPost" msgstr "SparkPost" +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "Pokreće radnje u pozadinskom poslu" + #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "Posebni Znakovi nisu dozvoljeni" @@ -24646,8 +24737,8 @@ msgstr "Navedi domene ili porijekla kojima je dozvoljeno ugraditi ovaj obrazac. msgid "Splash Image" msgstr "Uvodna Slika" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "Red" @@ -24679,11 +24770,11 @@ msgstr "Stack Trace" msgid "Standard" msgstr "Standard" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "Standardni DocType se ne može izbrisati." -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "Standardni DocType ne može imati standard ormat za ispise, koristi Prilagodi Formu" @@ -24695,7 +24786,7 @@ msgstr "Standard nije Postavljeno" msgid "Standard Permissions" msgstr "Standard Dozvole" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "Standard Ispis Format ne može se ažurirati" @@ -24703,11 +24794,11 @@ msgstr "Standard Ispis Format ne može se ažurirati" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "Standard Ispis Stil ne može se promeniti. Kopiraj za uređivanje." -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "Standard Izvještaji ne mogu se izbrisati" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "Standard Izvještaji ne mogu se uređivati" @@ -24739,8 +24830,8 @@ msgstr "Standard tip korisnika {0} ne može se izbrisati." #: frappe/core/doctype/recorder/recorder_list.js:87 #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45 -#: frappe/printing/page/print/print.js:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "Počni" @@ -24748,7 +24839,7 @@ msgstr "Počni" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24813,6 +24904,7 @@ msgstr "Počinje" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24821,7 +24913,7 @@ msgstr "Počinje" msgid "State" msgstr "Stanje" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "Svojstva Stanja" @@ -24877,6 +24969,7 @@ msgstr "Vremenski Interval Statistike" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24901,6 +24994,7 @@ msgstr "Vremenski Interval Statistike" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24908,8 +25002,8 @@ msgstr "Vremenski Interval Statistike" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24946,7 +25040,7 @@ msgstr "Koraci za provjeru vaše prijave" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "Sticky" @@ -24976,6 +25070,10 @@ msgstr "Korištenje Pohrane po Tabelama" msgid "Store Attached PDF Document" msgstr "Pohrani priloženi PDF Dokument" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +msgstr "Sačuvajte API tajnu na sigurnom mjestu. Neće biti više prikazivana." + #. 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." @@ -25054,7 +25152,7 @@ msgstr "Poddomena" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -25070,7 +25168,7 @@ msgstr "Predmet" msgid "Subject Field" msgstr "Polje Predmeta" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "Tip Polja Predmeta treba da bude Podaci, Tekst, Dugi Tekst, Mali Tekst, Uređivač Teksta" @@ -25084,6 +25182,7 @@ msgstr "Red Podnošenja" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -25092,10 +25191,11 @@ msgstr "Red Podnošenja" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "Rezerviši" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Rezerviši" @@ -25105,7 +25205,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Pošalji" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Pošalji" @@ -25129,7 +25229,7 @@ msgstr "Rezerviši Nakon Uvoza" msgid "Submit an Issue" msgstr "Prijavi Slučaj" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "Podnesi drugi odgovor" @@ -25141,7 +25241,7 @@ msgstr "Oznaka Dugmeta" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "Rezerviši pri Kreiranju" @@ -25153,7 +25253,7 @@ msgstr "Pošalji ovaj dokument da dovršite ovaj korak." msgid "Submit this document to confirm" msgstr "Pošalji ovaj dokument da potvrdite" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Pošalji {0} dokumenata?" @@ -25162,11 +25262,11 @@ msgstr "Pošalji {0} dokumenata?" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "Rezervisano" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "Rezervisani dokument ne može se pretvoriti nazad u nacrt. Prijelazni red {0}" @@ -25189,9 +25289,7 @@ msgid "Subsidiary" msgstr "Filijala" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "Podnaziv" @@ -25205,7 +25303,7 @@ msgstr "Podnaziv" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25247,20 +25345,16 @@ msgstr "Poruka Uspjeha" msgid "Success title" msgstr "Naziv Uspjeha" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "Uspjeh! Spremni ste 👍" - #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" msgstr "Broj Uspješnih Poslova" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "Uspješne Transakcije" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "Uspješno: {0} do {1}" @@ -25302,7 +25396,7 @@ msgstr "Predloži Optimizacije" msgid "Suggested Indexes" msgstr "Predloženi Indeksi" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "Predloženo Korisničko Ime: {0}" @@ -25424,7 +25518,7 @@ msgstr "Sinhronizacija u toku" msgid "Syncing {0} of {1}" msgstr "Sinhronizira se {0} od {1}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "Greška Sintakse" @@ -25547,6 +25641,7 @@ msgstr "Sistemski Zapisnici" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25629,6 +25724,7 @@ msgstr "Sistemski Zapisnici" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" msgstr "Upravitelj Sistema" @@ -25702,7 +25798,7 @@ msgstr "Tabela" msgid "Table Break" msgstr "Prijelom Tabele" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "Polje Tabele" @@ -25711,7 +25807,7 @@ msgstr "Polje Tabele" msgid "Table Fieldname" msgstr "Naziv Polja Tabele" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "Nedostaje Naziv Polja Tabele" @@ -25733,11 +25829,11 @@ msgstr "Višestruki Odabir Tabele" msgid "Table Trimmed" msgstr "Tabela Optimizirana" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "Tabela Ažurirana" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 msgid "Table {0} cannot be empty" msgstr "Tabela {0} ne može biti prazna" @@ -25779,11 +25875,18 @@ msgstr "Uslikaj" msgid "Target" msgstr "Cilj" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "Zadatak" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "Zadaci" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25845,7 +25948,7 @@ msgstr "Šablon Upozorenja" msgid "Templates" msgstr "Šabloni" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "Privremeno Onemogućeno" @@ -25919,7 +26022,7 @@ msgstr "Hvala vam što ste nam se obratili. Javit ćemo Vam se u najkraćem mogu "Vaš upit:\n\n" "{0}" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "Hvala vam što ste potrošili svoje dragocjeno vrijeme da ispunite ovaj obrazac" @@ -25943,7 +26046,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:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "CSV format razlikuje velika i mala slova" @@ -25956,15 +26059,15 @@ msgstr "ID klijenta dobijen sa Google Cloud Console pod " -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "Uvjet '{0}' je nevažeći" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "URL Datoteke koji ste unijeli nije tačan" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." msgstr "Sljedeći zakazani datum ne može biti kasniji od datuma završetka." @@ -26007,7 +26110,7 @@ msgstr "Promjene su vraćene." msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "Kolona {0} ima {1} različite formate datuma. Automatsko postavljanje {2} kao zadanog formata jer je najčešći. Molimo promijenite ostale vrijednosti u ovoj koloni u ovaj format." -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "Komentar ne može biti prazan" @@ -26015,7 +26118,7 @@ msgstr "Komentar ne može biti prazan" msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone." msgstr "Sadržaj ove e-pošte je strogo povjerljiv. Molimo vas da nikome ne prosljeđujete ovu e-poštu." -#: frappe/public/js/frappe/list/list_view.js:658 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "Prikazani broj je procijenjen. Klikni ovdje da vidite tačan broj." @@ -26045,7 +26148,7 @@ msgstr "Odabrani tip dokumenta je podređena tabela, tako da je obavezan tip nad msgid "The field {0} is mandatory" msgstr "Polje {0} je obavezno" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "Naziv polja koje ste naveli u Priloženo polju je nevažeći" @@ -26117,15 +26220,19 @@ msgstr "Broj projekta dobijen od Google Cloud Console pod " -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

Click here to download:
{0}

This link will expire in {1} hours." +msgstr "Izvještaj koji ste tražili je generiran.

Kliknite ovdje za preuzimanje:
{0}

Ovaj link će isteći za {1} sati." + +#: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" msgstr "Veza za poništavanje lozinke je istekla" -#: frappe/core/doctype/user/user.py:995 +#: frappe/core/doctype/user/user.py:1002 msgid "The reset password link has either been used before or is invalid" msgstr "Veza za poništavanje lozinke je ili ranije korištena ili je nevažeća" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "Resurs koji tražite nije dostupan" @@ -26137,7 +26244,7 @@ msgstr "Uloga {0} bi trebala biti prilagođena uloga." msgid "The selected document {0} is not a {1}." msgstr "Odabrani dokument {0} nije {1}." -#: frappe/utils/response.py:338 +#: frappe/utils/response.py:336 msgid "The system is being updated. Please refresh again after a few moments." msgstr "Sistem se ažurira. Osvježite ponovo nakon nekoliko trenutaka." @@ -26158,7 +26265,7 @@ msgstr "Vrijednost koju ste zalijepili bila je od {0} znakova. Maksimalni dopuš msgid "The webhook will be triggered if this expression is true" msgstr "Webhook će se pokrenuti ako je ovaj izraz istinit" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "{0} je već na automatskom ponavljanju {1}" @@ -26198,16 +26305,16 @@ msgstr "Nema predstojećih događaja za vas." msgid "There are no {0} for this {1}, why don't you start one!" msgstr "Nema {0} za ovaj {1}, zašto ga ne pokrenete!" -#: frappe/public/js/frappe/views/reports/query_report.js:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "U redu čekanja već postoji {0} s istim filterima:" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "U Web Formi može postojati samo 9 polja Prijeloma Stranice" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "U formi može postojati samo jedan preklop" @@ -26219,15 +26326,19 @@ msgstr "Postoji greška u vašem šablonu adrese {0}" msgid "There is no data to be exported" msgstr "Nema podataka za izvoz" +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "Ne postoji zadatak pod nazivom \"{}\"" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "Trenutno nema ništa novo za pokazati." -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "Postoji neki problem sa urlom datoteke: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "Postoji {0} s istim filterima već u redu čekanja:" @@ -26239,7 +26350,7 @@ msgstr "Mora postojati barem jedno pravilo dozvole." msgid "There was an error building this page" msgstr "Došlo je do greške pri izradi ove stranice" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "Došlo je do greške prilikom spremanja filtera" @@ -26251,11 +26362,11 @@ msgstr "Bilo je grešaka" msgid "There were errors while creating the document. Please try again." msgstr "Bilo je grešaka prilikom kreiranja dokumenta. Molimo pokušajte ponovo." -#: frappe/public/js/frappe/views/communication.js:840 +#: frappe/public/js/frappe/views/communication.js:843 msgid "There were errors while sending email. Please try again." msgstr "Bilo je grešaka prilikom slanja e-pošte. Molimo pokušajte ponovo." -#: frappe/model/naming.py:494 +#: frappe/model/naming.py:502 msgid "There were some errors setting the name, please contact the administrator" msgstr "Bilo je grešaka pri postavljanju naziva, obratite se administratoru" @@ -26296,7 +26407,7 @@ msgstr "Autentifikacija Trećeih Strane" msgid "This Currency is disabled. Enable to use in transactions" msgstr "Ova valuta je onemogućena. Omogućite korištenje u transakcijama" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "Ova Oglasna Tabla će biti privatna" @@ -26304,6 +26415,10 @@ msgstr "Ova Oglasna Tabla će biti privatna" msgid "This Month" msgstr "Ovaj Mjesec" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "Ovaj PDF se ne može prenijeti jer sadrži nesiguran sadržaj." + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "Ovaj Kvartal" @@ -26329,6 +26444,11 @@ msgstr "Ova radnja je dozvoljena samo za {}" msgid "This cannot be undone" msgstr "Ovo se ne može poništiti" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +msgstr "Ova kartica je prema standard postavkama vidljiva samo administratoru i odgovornim sistema. Postavite DocType za dijeljenje s korisnicima koji imaju pristup za čitanje." + #. 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" @@ -26343,11 +26463,11 @@ msgstr "Ovaj grafikon će biti dostupan svim korisnicima ako je ovo postavljeno" msgid "This doctype has no orphan fields to trim" msgstr "Ovaj tip dokumenta nema polja siroče za skraćivanje" -#: frappe/core/doctype/doctype/doctype.py:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "Ovaj tip dokumenta ima migracije na čekanju, pokrenite 'bench migrate' prije izmjene tipa dokumenta kako biste izbjegli gubitak promjena." -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "Ovaj dokument se trenutno ne može izbrisati jer ga mijenja drugi korisnik. Molimo pokušajte ponovo nakon nekog vremena." @@ -26393,7 +26513,7 @@ msgstr "Ovo polje će se pojaviti samo ako ovdje definirani naziv polja ima vrij "eval:doc.myfield=='Moja Vrijednost'\n" "eval:doc.age>18" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "Ova je datoteka priložena zaštićenom dokumentu i ne može se izbrisati." @@ -26409,7 +26529,7 @@ msgstr "Ova datoteka je javna. Može joj se pristupiti bez autentifikacije." msgid "This form has been modified after you have loaded it" msgstr "Ova forma je izmijenjena nakon što ste je učitali" -#: frappe/public/js/frappe/form/form.js:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "Ova formu nije moguće uređivati zbog Radnog Toka." @@ -26428,7 +26548,7 @@ msgstr "Ovaj poslužitelj geolokacije još nije podržan." msgid "This goes above the slideshow." msgstr "Ovo ide iznad projekcije slajdova." -#: frappe/public/js/frappe/views/reports/query_report.js:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "Ovo je pozadinski izvještaj. Molimo postavite odgovarajuće filtere, a zatim generišite novi." @@ -26452,12 +26572,6 @@ msgstr "Ovo je virtuelni tip dokumenta i podaci se periodično brišu." msgid "This is an automatically generated reply" msgstr "Ovo je automatski generisan odgovor" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "Ovo je primjer Google SERP Pregleda." - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "Ovo je slično uobičajenoj lozinki." @@ -26476,7 +26590,7 @@ msgstr "Ova veza je već aktivirana radi verifikacije." msgid "This link is invalid or expired. Please make sure you have pasted correctly." msgstr "Ova veza nije važeća ili je istekla. Provjerite jeste li ispravno zalijepili." -#: frappe/printing/page/print/print.js:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "Ovo se može ispisati na više stranica" @@ -26484,7 +26598,7 @@ msgstr "Ovo se može ispisati na više stranica" msgid "This month" msgstr "Ovog mjeseca" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "Ovaj izvještaj sadrži {0} redova i prevelik je za prikaz u pretraživaču, umjesto toga možete {1} ovaj izvještaj." @@ -26492,7 +26606,7 @@ msgstr "Ovaj izvještaj sadrži {0} redova i prevelik je za prikaz u pretraživa msgid "This report was generated on {0}" msgstr "Ovaj izvještaj je generisan {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "Ovaj izvještaj je generisan {0}." @@ -26523,8 +26637,8 @@ msgstr "Ova se vrijednost preuzima iz {0} polja {1}" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " -msgstr "Ova vrijednost određuje maksimalan broj redova koji se mogu prikazati u prikazu izvještaja. " +msgid "This value specifies the max number of rows that can be rendered in report view." +msgstr "Ova vrijednost određuje maksimalan broj redova koji se mogu prikazati u prikazu izvještaja." #: frappe/website/doctype/web_page/web_page.js:85 msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish" @@ -26555,10 +26669,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "Ovo će poništiti ovu introdukciju i prikazati ga svim korisnicima. Jeste li sigurni?" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " -msgstr "Ovo će odmah prekinuti posao i može biti opasno, jeste li sigurni? " +msgid "This will terminate the job immediately and might be dangerous, are you sure?" +msgstr "Ovo će odmah prekinuti posao i može biti opasno, jeste li sigurni?" -#: frappe/core/doctype/user/user.py:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "Prigušeno" @@ -26634,9 +26748,11 @@ msgstr "Vremenski Prozor (Sekunde)" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26707,11 +26823,11 @@ msgstr "Veze Vremenske Linije" msgid "Timeline Name" msgstr "Naziv Vremenske Linije" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 msgid "Timeline field must be a Link or Dynamic Link" msgstr "Polje Vremenske Linije mora biti veza ili Dinamička Veza" -#: frappe/core/doctype/doctype/doctype.py:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "Polje vremenske linije mora biti važeće ime polja" @@ -26737,10 +26853,7 @@ msgid "Timespan" msgstr "Vremenski Razmak" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "Vremenska Oznaka" @@ -26760,9 +26873,6 @@ msgstr "Savjet: Isprobaj novu konzolu koristeći" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26787,9 +26897,6 @@ msgstr "Savjet: Isprobaj novu konzolu koristeći" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26812,7 +26919,7 @@ msgstr "Polje Naziva" msgid "Title Prefix" msgstr "Prefiks Naziva" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "Polje Naziva mora biti važeće ime polja" @@ -26912,7 +27019,7 @@ msgstr "Da biste izvezli ovaj korak kao JSON, povežite ga u Introdukcijskom dok msgid "To generate password click {0}" msgstr "Za generiranje lozinke kliknite na {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "Da biste dobili ažurirani izvještaj, kliknite na {0}." @@ -26967,7 +27074,7 @@ msgstr "Za Uraditi" msgid "Today" msgstr "Danas" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "Prebaci grafikon" @@ -26983,11 +27090,11 @@ msgstr "Uključi Prikaz Mreže" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "Prebaci Bočnu Traku" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Prebaci Bočnu Traku" @@ -27033,7 +27140,7 @@ msgid "Tomorrow" msgstr "Sutra" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "Previše Dokumenata" @@ -27049,7 +27156,7 @@ msgstr "Previše promjena u bazi podataka u jednoj akciji." msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "Previše pozadinskih poslova na čekanju ({0}). Pokušaj ponovo nakon nekog vremena." -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "Nedavno se prijavilo previše korisnika, pa je registracija onemogućena. Pokušajte ponovo za sat vremena" @@ -27111,10 +27218,10 @@ msgstr "Vrh Desno" msgid "Topic" msgstr "Tema" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "Ukupno" @@ -27157,18 +27264,18 @@ msgstr "Ukupno Radno Vrijeme" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " -msgstr "Ukupan broj e-poruka za sinhronizaciju u početnom procesu sinhronizacije " +msgid "Total number of emails to sync in initial sync process" +msgstr "Ukupan broj e-poruka za sinhronizaciju u početnom procesu sinhronizacije" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "Ukupno:" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "Ukupno" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "Ukupni Red" @@ -27236,26 +27343,10 @@ msgstr "Prati prekretnice za bilo koji dokument" msgid "Tracking" msgstr "Praćenje" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "URL praćenja generisan i kopiran u međuspremnik" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "Hash Transakcije" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "Zapisnik Transakcija" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "Izvještaj Zapisnika Transakcija" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "Transrodno" @@ -27269,6 +27360,11 @@ msgstr "Tranzicijska Svojstva" msgid "Transition Rules" msgstr "Pravila Prelaza" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "Tranzicijski Zadaci" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" @@ -27283,7 +27379,7 @@ msgstr "Prelazi" msgid "Translatable" msgstr "Prevodivo" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "Prevedi Podatke" @@ -27294,7 +27390,7 @@ msgstr "Prevedi Podatke" msgid "Translate Link Fields" msgstr "Prevedi Polja Veza" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "Prevedi vrijednosti" @@ -27378,8 +27474,8 @@ msgstr "Pokušaj ponovo" msgid "Try a Naming Series" msgstr "Isprobaj Seriju Imenovanja" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "Isprobaj novi Dizajner Ispisa" @@ -27445,7 +27541,7 @@ msgstr "Metoda Dvofaktorske Autentifikacije" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27539,7 +27635,7 @@ msgstr "URL" msgid "URL for documentation or help" msgstr "URL za dokumentaciju ili pomoć" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "URL mora početi s http:// ili https://" @@ -27642,7 +27738,7 @@ msgstr "Nije moguće poslati poštu jer nedostaje račun e-pošte. Postavite zad msgid "Unable to update event" msgstr "Nije moguće ažurirati događaj" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "Nije moguće napisati format datoteke za {0}" @@ -27651,7 +27747,7 @@ msgstr "Nije moguće napisati format datoteke za {0}" msgid "Unassign Condition" msgstr "Poništi Dodjelu Uslova" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "Neuhvaćena Iznimka" @@ -27667,7 +27763,7 @@ msgstr "Poništi" msgid "Undo last action" msgstr "Poništi posljednju radnju" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "Neizbjegnuti navodnici u niz literalu: {0}" @@ -27716,7 +27812,7 @@ msgstr "Nepoznata Kolona: {0}" msgid "Unknown Rounding Method: {}" msgstr "Nepoznata Metoda Zaokruživanja: {}" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "Nepoznati Korisnik" @@ -27728,8 +27824,7 @@ msgstr "Nepoznato kodiranje datoteke. Pokušano koristiti: {0}" msgid "Unlock Reference Document" msgstr "Otključaj Referentni Dokument" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "Poništi Objavu" @@ -27745,7 +27840,7 @@ msgstr "Nepročitano" msgid "Unread Notification Sent" msgstr "Nepročitana Obavijest Poslana" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "Nesiguran SQL upit" @@ -27783,8 +27878,8 @@ msgstr "Parametri Otkazivanja" msgid "Unsubscribed" msgstr "Otkazano" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "Nepodržana funkcija ili nevažeći naziv polja: {0}" @@ -27804,7 +27899,7 @@ msgstr "Raspakovano {0} datoteka" msgid "Unzipping files..." msgstr "Raspakivanje datoteka..." -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "Nadolazeći Događaji za Danas" @@ -27818,7 +27913,7 @@ msgstr "Nadolazeći Događaji za Danas" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Ažuriraj" @@ -27852,6 +27947,11 @@ msgstr "Redoslijed ažuriranja" msgid "Update Password" msgstr "Ažuriraj Lozinku" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "Ažuriraj Profil" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27894,7 +27994,7 @@ msgstr "Ažuriraj {0} zapisa" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "Ažurirano" @@ -27902,7 +28002,7 @@ msgstr "Ažurirano" msgid "Updated Successfully" msgstr "Uspješno Ažurirano" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "Ažurirano na Novu Verziju 🎉" @@ -27910,7 +28010,7 @@ msgstr "Ažurirano na Novu Verziju 🎉" msgid "Updated successfully" msgstr "Uspješno Ažurirano" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "Ažuriranje" @@ -27955,8 +28055,8 @@ msgstr "Plan Ažuriranja" msgid "Upgrade your support experience with Frappe Helpdesk" msgstr "Nadogradi svoje iskustvo podrške uz Frappe Helpdesk" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27966,11 +28066,11 @@ msgstr "Učitaj" msgid "Upload Image" msgstr "Učitaj Sliku" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "Učitaj Datoteku" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "Učitaj {0} datoteke" @@ -28067,15 +28167,11 @@ msgstr "Koristi drugu e-poštu" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "Koristi ako standard postavke ne očitavaju vaše podatke ispravno" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "Korištenje funkcije {0} u polju je ograničena" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "Korištenje podupita ili funkcije je ograničena" -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "Koristi novi Konstruktor Formata Ispisa" @@ -28096,7 +28192,9 @@ msgid "Used OAuth" msgstr "Korišten OAuth" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -28105,6 +28203,7 @@ msgstr "Korišten OAuth" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -28119,11 +28218,12 @@ msgstr "Korišten OAuth" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -28132,6 +28232,7 @@ msgstr "Korišten OAuth" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -28148,17 +28249,11 @@ msgstr "Korišten OAuth" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "Korisnik" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "Korisnik " - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "Korisnik '{0}' već ima ulogu '{1}'" @@ -28188,7 +28283,7 @@ msgstr "Korisnik Nemože Kreirati" msgid "User Cannot Search" msgstr "Korisnik Nemože Pretraživati" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "Korisnik Promijenjen" @@ -28252,11 +28347,6 @@ msgstr "Korisnik" msgid "User ID Property" msgstr "Svojstvo Korisnika" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "Korisnički ID Bloggera" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28276,6 +28366,11 @@ msgstr "Polje Id-a korisnika obavezno je u tipu korisnika {0}" msgid "User Image" msgstr "Slika Korisnika" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "Korisnička Pozivnica" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "Korisnički Meni" @@ -28294,12 +28389,12 @@ msgstr "Korisnička Dozvola" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "Korisničke Dozvole" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Korisničke Dozvole" @@ -28312,7 +28407,9 @@ msgstr "Korisničke Dozvole se koriste za ograničavanje korisnika na određene msgid "User Permissions created successfully" msgstr "Korisničke Dozvole su uspješno kreirane" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "Korisnička Uloga" @@ -28378,6 +28475,10 @@ msgstr "Korisnik ne postoji." msgid "User does not have permission to create the new {0}" msgstr "Korisnik nema dozvolu za kreiranje novog {0}" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "Korisnik je onemogućen" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "Korisnik je obavezan za Dijeljenje" @@ -28408,7 +28509,7 @@ msgstr "Korisnik {0} se ne može izbrisati" msgid "User {0} cannot be disabled" msgstr "Korisnik {0} se ne može onemogućiti" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "Korisnik {0} se ne može preimenovati" @@ -28429,7 +28530,7 @@ msgstr "Korisnik {0} nema dozvolu za kreiranje Radnog Prostora." msgid "User {0} has requested for data deletion" msgstr "Korisnik {0} je zatražio brisanje podataka" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "Korisnik {0} predstavljen kao {1}" @@ -28437,7 +28538,7 @@ msgstr "Korisnik {0} predstavljen kao {1}" msgid "User {0} is disabled" msgstr "Korisnik {0} je onemogućen" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "Korisnik {0} je onemogućen. Molimo kontaktirajte svog upravitelja sistema." @@ -28458,7 +28559,7 @@ msgstr "URI informacija Korisnika" msgid "Username" msgstr "Korisničko Ime" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "Korisničko Ime {0} već postoji" @@ -28542,7 +28643,7 @@ msgstr "Validiraj Frappe Mail Postavke" msgid "Validate SSL Certificate" msgstr "Potvrdite SSL certifikat" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "Greška pri Validaciji" @@ -28565,8 +28666,8 @@ msgstr "Validnost" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28598,7 +28699,7 @@ msgstr "Vrijednost Promijenjena" msgid "Value To Be Set" msgstr "Vrijednost Koju Treba Postaviti" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "Vrijednost se ne može promijeniti za {0}" @@ -28614,11 +28715,11 @@ msgstr "Vrijednost ne može biti negativna za {0}: {1}" msgid "Value for a check field can be either 0 or 1" msgstr "Vrijednost polja za provjeru može biti 0 ili 1" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "Vrijednost za polje {0} je predugačka u {1}. Dužina bi trebala biti manja od {2} znakova" -#: frappe/model/base_document.py:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "Vrijednost za {0} ne može biti lista" @@ -28643,7 +28744,7 @@ msgstr "Vrijednost \"None\" podrazumijeva javnog klijenta. U takvom slučaju, ta msgid "Value to Validate" msgstr "Vrijednost za Provjeru" -#: frappe/model/base_document.py:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "Vrijednost je Prevelika" @@ -28660,7 +28761,7 @@ msgstr "Vrijednost {0} mora biti u važećem formatu trajanja: d h m s" msgid "Value {0} must in {1} format" msgstr "Vrijednost {0} mora biti u {1} formatu" -#: frappe/core/doctype/version/version_view.html:8 +#: frappe/core/doctype/version/version_view.html:9 msgid "Values Changed" msgstr "Vrijednosti Promijenjene" @@ -28673,7 +28774,7 @@ msgstr "Verdana" msgid "Verification" msgstr "Verifikacija" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "Verfikacijski Kod" @@ -28735,15 +28836,7 @@ msgstr "Prikaži Sve" msgid "View Audit Trail" msgstr "Prikaži Trag" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "Prikaži Blog Post" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "Prikaži Komentar" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "Prikaz Doctype Dozvola" @@ -28755,7 +28848,7 @@ msgstr "Prikaži datoteku" msgid "View Full Log" msgstr "Prikaži Cijeli Zapisnik" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "Prikaži Listu" @@ -28765,7 +28858,7 @@ msgstr "Prikaži Listu" msgid "View Log" msgstr "Prikaži Zapisnik" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Prikaži Dozvoljene Dokumente" @@ -28812,7 +28905,7 @@ msgstr "Prrikaži izvještaj u vašem pretraživaču" msgid "View this in your browser" msgstr "Prikaži ovo u svom pretraživaču" -#: frappe/public/js/frappe/web_form/web_form.js:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "Prikaži svoj odgovor" @@ -28881,6 +28974,7 @@ msgid "Warehouse" msgstr "Skladište" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Upozorenje" @@ -28889,7 +28983,7 @@ msgstr "Upozorenje" msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" msgstr "Upozorenje: GUBITAK PODATAKA NEPOSREDAN! Nastavkom će se trajno izbrisati sljedeće kolone baze podataka iz tipa dokumenta {0}:" -#: frappe/core/doctype/doctype/doctype.py:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "Upozorenje: Imenovanje nije postavljeno" @@ -28975,7 +29069,7 @@ msgstr "Web Stranica" msgid "Web Page Block" msgstr "Blok Web Stranice" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "URL Web Stranice" @@ -29078,7 +29172,7 @@ msgstr "Webhook URL" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "Web Stranica" @@ -29091,10 +29185,6 @@ msgstr "Analiza Web Stranice" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -29138,7 +29228,7 @@ msgstr "Skripta Web Stranice" msgid "Website Search Field" msgstr "Polje Pretraživanja Web Stranice" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "Polje Pretraživanja Web Stranice mora biti važeće ime polja" @@ -29355,11 +29445,6 @@ msgstr "Zamjenski Filter" msgid "Will add \"%\" before and after the query" msgstr "Dodat će \"%\" prije i poslije upita" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "Koristiti će se u url-u (obično ime)." - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "Biti će vaš prijavni ID" @@ -29374,7 +29459,7 @@ msgstr "Prikazat će se samo ako su naslovi sekcija omogućeni" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "Pokrenut će zakazane poslove samo jednom dnevno za neaktivne stranice. Postavi kao 0 kako biste izbjegli automatsko onemogućavanje raspoređivača." -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "Sa Zaglavljem" @@ -29452,7 +29537,7 @@ msgstr "Konstruktor Radnog Toka vam omogućava da kreirate radne tokove vizuelno msgid "Workflow Data" msgstr "Podaci Radnog Toka" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "Radni Tok Detalji" @@ -29478,11 +29563,11 @@ msgstr "Stanje Radnog Toka" msgid "Workflow State Field" msgstr "Polje stanja radnog toka" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "Stanje Radnog Toka nije postavljeno" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "Prijelaz Stanja Radnog Toka nije dozvoljen sa {0} na {1}" @@ -29490,15 +29575,30 @@ msgstr "Prijelaz Stanja Radnog Toka nije dozvoljen sa {0} na {1}" msgid "Workflow States Don't Exist" msgstr "Stanja Radnog Toka ne postoje" -#: frappe/model/workflow.py:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "Status Radnog Toka" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "Zadatak Radnog Toka" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "Prijelaz Radnog Toka" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "Zadatak Tranzicije Radnog Toka" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "Zadaci Tranzicije Radnog Toka" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29514,13 +29614,13 @@ msgstr "Radni Tok je uspješno ažuriran" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "Radni Prostor" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "Radni Prostor {0} ne postoji" @@ -29590,11 +29690,11 @@ msgstr "Radni Prostor {0} kreiran" msgid "Workspaces" msgstr "Radni Prostori" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "Želiš li objaviti ovaj komentar? To znači da će postati vidljiv korisnicima web stranice/portala." -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "Želiš li poništiti objavljivanje ovog komentara? To znači da više neće biti vidljivo korisnicima web stranice/portala." @@ -29613,11 +29713,11 @@ msgstr "Završava se.." msgid "Write" msgstr "Piši" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "Pogrešno Peuzimanje iz vrijednosti" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "Polje Ose X" @@ -29636,13 +29736,13 @@ msgstr "XLSX" msgid "Y Axis" msgstr "Y Osa" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" msgstr "Polja Ose Y" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "Y Polje" @@ -29694,16 +29794,17 @@ msgstr "Žuta" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Da" @@ -29731,6 +29832,18 @@ msgstr "Vi" msgid "You Liked" msgstr "Svidjelo vam se" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "Dodali ste 1 red u {0}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "Dodali ste {0} redova u {1}" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "Upravo ćete otvoriti eksterni link. Za potvrdu, ponovo kliknite na link." + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "Povezani ste na internet." @@ -29769,20 +29882,20 @@ msgstr "Nije vam dozvoljeno uređivati izvještaj." #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "Nije vam dozvoljeno da izvezete {} doctype" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "Nije vam dozvoljeno da ispišete ovaj izveštaj" -#: frappe/public/js/frappe/views/communication.js:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "Nije vam dozvoljeno slanje e-pošte u vezi sa ovim dokumentom" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "Nije vam dozvoljeno ažurirati ovaj dokument web forme" @@ -29806,7 +29919,7 @@ msgstr "Nemate dozvolu za pristup ovom resursu. Prijavite se za pristup" msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "Sada pratite ovaj dokument. Svakodnevno ćete primati ažuriranja putem e-pošte. Ovo možete promijeniti u korisničkim postavkama." -#: frappe/core/doctype/installed_applications/installed_applications.py:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 msgid "You are only allowed to update order, do not remove or add apps." msgstr "Dozvoljeno vam je samo ažurirati redoslijed, nemojte uklanjati ili dodavati aplikacije." @@ -29832,13 +29945,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "Takođ možete kopirati i zalijepiti sljedeću vezu u svoj preglednik" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " -msgstr "Ovo također možete kopirati i zalijepiti " +msgid "You can also copy-paste this" +msgstr "Ovo također možete kopirati i zalijepiti" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "Također možete kopirati i zalijepiti ovo {0} u svoj pretraživač" +#: frappe/templates/emails/user_invitation_expired.html:8 +msgid "You can ask your team to resend the invitation if you'd still like to join." +msgstr "Možete zamoliti svoj tim da ponovo pošalje pozivnicu ako se i dalje želite pridružiti." + #: frappe/core/page/permission_manager/permission_manager_help.html:17 msgid "You can change Submitted documents by cancelling them and then, amending them." msgstr "Podnesene dokumente možete promijeniti tako što ćete ih poništiti, a zatim ih izmijeniti." @@ -29851,11 +29968,11 @@ msgstr "Pravila zadržavanja možete promijeniti u {0}." msgid "You can continue with the onboarding after exploring this page" msgstr "Možete nastaviti s introdukcijom nakon što istražite ovu stranicu" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "Možete onemogućiti ovo {0} umjesto da ga obrišete." -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "Ograničenje možete povećati u Postavkama Sistema." @@ -29875,7 +29992,7 @@ msgstr "Možete ispisati najviše {0} dokumenata odjednom" msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "Možete postaviti samo tri prilagođena tipa dokumenata u tabeli Tipovi Dokumenata." -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "Možete otpremati samo JPG, PNG, PDF, TXT, CSV ili Microsoft dokumente." @@ -29893,7 +30010,7 @@ msgstr "Možete odabrati jedan od sljedećih," msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "Ovdje možete postaviti visoku vrijednost ako će se više korisnika prijavljivati sa iste mreže." -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "Možete pokušati promijeniti filtere vašeg izvještaja." @@ -29905,11 +30022,11 @@ msgstr "Možete koristiti Prilagodi Formu za postavljanje nivoa na poljima." msgid "You can use wildcard %" msgstr "Možete koristiti zamjenski znak %" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "Ne možete postaviti 'Opcije' za polje {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "Ne možete postaviti 'Prevodivo' za polje {0}" @@ -29927,7 +30044,7 @@ msgstr "Otkazali ste ovaj dokument {1}" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "Ne možete stvoriti grafikon nadzorne table iz jednog tipa dokumenata" -#: frappe/custom/doctype/customize_form/customize_form.py:385 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "Ne možete poništiti 'Samo za Čitanje' za polje {0}" @@ -29957,7 +30074,7 @@ msgstr "Promijenuli ste {0} u {1}" msgid "You created this" msgstr "Vi ste kreirali ovo" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "Vi ste kreirali ovaj dokument {0}" @@ -29970,15 +30087,15 @@ msgstr "Nemate dozvole za Čitanje ili Odabir za {}" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "Nemate dovoljno dozvola za pristup ovom resursu. Kontaktiraj svog odgovornog da dobijete pristup." -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "Nemate dovoljno dozvola da dovršite radnju" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "Nemate dozvolu za pristup polju: {0}" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "Nemate dozvolu za pristup {0}: {1}." @@ -29990,11 +30107,11 @@ msgstr "Nemate dozvole za otkazivanje svih povezanih dokumenata." msgid "You don't have access to Report: {0}" msgstr "Nemate pristup Izvještaju: {0}" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "Nemate dozvolu za pristup {0} DocType." -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "Nemate dozvolu za pristup ovoj datoteci" @@ -30002,19 +30119,19 @@ msgstr "Nemate dozvolu za pristup ovoj datoteci" msgid "You don't have permission to get a report on: {0}" msgstr "Nemate dozvolu da preuzmete izvještaj o: {0}" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "Nemate dozvole za pristup ovom dokumentu" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " -msgstr "Imate novu poruku od: " +msgid "You have a new message from:" +msgstr "Imate novu poruku od:" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "Uspješno ste odjavljeni" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "Dostigli ste ograničenje veličine reda u tabeli baze podataka: {0}" @@ -30022,11 +30139,7 @@ msgstr "Dostigli ste ograničenje veličine reda u tabeli baze podataka: {0}" msgid "You have not entered a value. The field will be set to empty." msgstr "Niste unijeli vrijednost. Polje će biti prazno." -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "Dobili ste ❤️ lajk na svom blog postu" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "Morate omogućiti Dvofaktorsku Autentifikaciju iz Postavki Sistema." @@ -30046,7 +30159,7 @@ msgstr "Niste vidjeli {0}" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "Još niste dodali Grafikon Nadrzorne Table ili Numeričke Kartice." -#: frappe/public/js/frappe/list/list_view.js:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "{0} nema u sistemu" @@ -30063,11 +30176,11 @@ msgstr "Zadnji put ste uređivali ovo" msgid "You must add atleast one link." msgstr "Morate dodati barem jednu vezu." -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "Morate biti prijavljeni da biste koristili ovaj obrazac." -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "Morate se prijaviti da pošaljete ovu formu" @@ -30091,7 +30204,7 @@ msgstr "Morate biti korisnik sistema da biste pristupili ovoj stranici." msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "Morate biti u modu programera da biste uredili Standardni Web Formu" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "Morate biti prijavljeni i imati ulogu Upravitelja Sistema da biste mogli pristupiti sigurnosnim kopijama." @@ -30099,13 +30212,13 @@ msgstr "Morate biti prijavljeni i imati ulogu Upravitelja Sistema da biste mogli msgid "You need to be logged in to access this page" msgstr "Morate biti prijavljeni da biste pristupili ovoj stranici" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "Morate biti prijavljeni da biste pristupili ovom {0}." #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " -msgstr "Prvo morate kreirati ove: " +msgid "You need to create these first:" +msgstr "Prvo morate kreirati ove:" #: frappe/www/login.html:76 msgid "You need to enable JavaScript for your app to work." @@ -30139,11 +30252,19 @@ msgstr "Trebate dozvolu za pisanje na {0} {1} da biste preimenovali" msgid "You need {0} permission to fetch values from {1} {2}" msgstr "Trebate {0} dozvolu da preuzmete vrijednosti iz {1} {2}" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "Uklonili ste 1 red iz {0}" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "Uklonili ste prilog {0}" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "Uklonili ste {0} redova od {1}" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "Izgleda da ste spremni!" @@ -30174,10 +30295,26 @@ msgstr "Prestali ste pratiti ovaj dokument" msgid "You viewed this" msgstr "Prikazali ste ovo" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "Bit ćete preusmjereni na:" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "Pozvani ste da se pridružite {0}" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "Pozvani ste da se pridružite {0}." + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "Prijavili ste se kao drugi korisnik sa druge kartice. Osvježite ovu stranicu da nastavite koristiti sistem." +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "Youtube" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "CSV datoteka se generira i pojavit će se u odjeljku Prilozi kada bude spremna. Osim toga, dobit ćete obavijest kada datoteka bude dostupna za preuzimanje." @@ -30207,7 +30344,7 @@ msgstr "Vaše Prečice" msgid "Your account has been deleted" msgstr "Vaš Račun je izbrisan" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "Vaš račun je zaključan i nastavit će se nakon {0} sekundi" @@ -30231,10 +30368,22 @@ msgstr "Vaš zahtjev za povezivanje sa Google Kalendarom je uspješno prihvaćen msgid "Your email address" msgstr "Vaša adresa e-pošte" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "Vaš izvezeni izvještaj: {0}" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "Vaša forma je uspješno ažurirana" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "Vaš poziv za pridruživanje {0} otkazao je sistem administrator." + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "Vaša pozivnica za pridruživanje {0} je istekla." + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "Vaš Id za prijavu je" @@ -30257,7 +30406,11 @@ msgstr "Ime vaše organizacije i adresa za podnožje e-pošte." msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "Vaš upit je primljen. Odgovorit ćemo vam uskoro. Ako imate dodatnih informacija, odgovorite na ovu poruku e-pošte." -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "Vaš izvještaj se generira u pozadini. Primit ćete e-poruku na {0} s linkom za preuzimanje kada bude spreman." + +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "Vaša sesija je istekla, prijavite se ponovo da nastavite." @@ -30279,7 +30432,7 @@ msgstr "Nula" msgid "Zero means send records updated at anytime" msgstr "Nula znači slanje zapisa ažuriranih u bilo koje vrijeme" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" msgstr "[Radnju preduzeta od {0}]" @@ -30301,10 +30454,6 @@ msgstr "`as_iterator` radi samo sa `as_list=True` ili `as_dict=True`" msgid "`job_id` paramater is required for deduplication." msgstr "Paramater `job_id` je potreban za deduplikaciju." -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "dodao redove za {0}" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30339,7 +30488,7 @@ msgstr "po Ulozi" msgid "cProfile Output" msgstr "cProfil Izlaz" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "kalendar" @@ -30484,12 +30633,12 @@ msgstr "emacs" msgid "email" msgstr "e-pošta" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "prijemno sanduče e-pošte" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "prazno" @@ -30546,7 +30695,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "h" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "čvorište" @@ -30561,11 +30710,6 @@ msgstr "ikona" msgid "import" msgstr "uvoz" -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "u minutama" - #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "jane@example.com" @@ -30574,7 +30718,7 @@ msgstr "jane@example.com" msgid "just now" msgstr "upravo sada" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "oznaka" @@ -30603,7 +30747,7 @@ msgstr "lista" msgid "logged in" msgstr "prijavljen" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "prijava_potrebna" @@ -30624,11 +30768,6 @@ msgstr "m" msgid "merged {0} into {1}" msgstr "spojeno {0} u {1}" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "min čitanja" - #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json @@ -30652,7 +30791,7 @@ msgstr "modul" msgid "module name..." msgstr "naziv modula..." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "novi" @@ -30781,10 +30920,6 @@ msgstr "čitaj" msgid "red" msgstr "crveno" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "uklonjeni redovi za {0}" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "preimenovan iz {0} u {1}" @@ -30840,19 +30975,19 @@ msgstr "dijeli" msgid "short" msgstr "kratko" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "od prošlog mjeseca" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "od prosle sedmice" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "od prosle godine" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "od jučer" @@ -30905,6 +31040,10 @@ msgstr "ova forma" msgid "this shouldn't break" msgstr "ovo ne bi trebalo da se pokvari" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "u vaš pretraživač" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30932,7 +31071,7 @@ msgstr "verzija_tabele" msgid "via Assignment Rule" msgstr "preko Pravila Dodjele" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "putem Automatskog Ponavljanja" @@ -30946,7 +31085,7 @@ msgstr "putem Uvoza Podataka" msgid "via Google Meet" msgstr "putem Google Meet" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "putem Obavijesti" @@ -30979,10 +31118,15 @@ msgstr "kada se klikne na element, on će fokusirati skočni prozor ako postoji. msgid "wkhtmltopdf" msgstr "wkhtmltopdf" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "wkhtmltopdf 0.12.x (sa zakrpljenim qt-om)." +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "tranzicija_radnog_toka" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json @@ -31010,11 +31154,11 @@ msgstr "yyyy-mm-dd" msgid "{0}" msgstr "{0}" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "{0} ${skip_list ? \"\" : type}" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "{0} ${type}" @@ -31040,19 +31184,19 @@ msgstr "{0} = {1}" msgid "{0} Calendar" msgstr "{0} Kalendar" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "{0} Grafikon" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "{0} Nadzorna Tabla" -#: frappe/public/js/frappe/form/grid_row.js:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "{0} Polja" @@ -31076,6 +31220,10 @@ msgstr "{0} Lajkade" msgid "{0} List" msgstr "{0} Lista" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "{0} Postavke Prikaza Liste" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "{0} M" @@ -31088,7 +31236,7 @@ msgstr "{0} Karta" msgid "{0} Name" msgstr "{0} Naziv" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "{0} Nije dozvoljeno mijenjati {1} nakon podnošenja iz {2} u {3}" @@ -31098,11 +31246,10 @@ msgstr "{0} Nije dozvoljeno mijenjati {1} nakon podnošenja iz {2} u {3}" msgid "{0} Report" msgstr "{0} Izvještaj" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "{0} Izvještaja" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "{0} Postavke" @@ -31127,7 +31274,15 @@ msgstr "{0} Radni Prostor" msgid "{0} added" msgstr "{0} dodano" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "{0} je dodao/la 1 red u {1}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "{0} je dodano {1} redova u {2}" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0} već postoji. Odaberite drugo ime" @@ -31139,7 +31294,7 @@ msgstr "{0} je već odjavljen" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0} je već otkazan za {1} {2}" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "{0} i {1}" @@ -31147,7 +31302,7 @@ msgstr "{0} i {1}" msgid "{0} are currently {1}" msgstr "{0} su trenutno {1}" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "{0} su obavezni" @@ -31164,7 +31319,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0} priloženo {1}" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "{0} ne može biti više od {1}" @@ -31206,11 +31361,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "{0} promijenio(la) {1} u {2}" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "{0} komentara" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." msgstr "{0} sadrži nevažeći izraz Preuzmi Iz, Preuzmi Iz ne može biti samoreferencijalan." @@ -31223,7 +31374,7 @@ msgstr "{0} je uspješno kreiran" msgid "{0} created this" msgstr "{0} je kreirao(la) ovo" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "{0} je kreirao/la ovaj dokument {1}" @@ -31245,7 +31396,7 @@ msgstr "{0} ne postoji u redu {1}" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "Polje {0} ne može se postaviti kao jedinstveno u {1}, budući da postoje nejedinstvene vrijednosti" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "Polja {0} ne mogu sadržavati povratne naznake (`): {1}" @@ -31277,7 +31428,7 @@ msgstr "{0} je napustio(la) konverzaciju u {1} {2}" msgid "{0} hours ago" msgstr "{0} sati prije" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "{0} ako ne budete preusmjereni unutar {1} sekundi" @@ -31286,23 +31437,23 @@ msgstr "{0} ako ne budete preusmjereni unutar {1} sekundi" msgid "{0} in row {1} cannot have both URL and child items" msgstr "{0} u redu {1} ne može imati i URL i podređene artikle" -#: frappe/core/doctype/doctype/doctype.py:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "{0} je obavezno polje" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "{0} nije važeća zip datoteka" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "{0} je nevažeće polje podataka." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "{0} je nevažeća adresa e-pošte u 'Primatelji'" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "{0} je između {1} i {2}" @@ -31311,27 +31462,27 @@ msgstr "{0} je između {1} i {2}" msgid "{0} is currently {1}" msgstr "{0} je trenutno {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "{0} je jednako {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "{0} je veće ili jednako {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "{0} je veće od {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "{0} je manje ili jednako {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "{0} je manje od {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "{0} je kao {1}" @@ -31339,7 +31490,7 @@ msgstr "{0} je kao {1}" msgid "{0} is mandatory" msgstr "{0} je obavezan" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "{0} nije podređena tabela od {1}" @@ -31359,12 +31510,12 @@ msgstr "{0} nije važeći Kalendar. Preusmjeravanje na Standard Kalendar." msgid "{0} is not a valid Cron expression." msgstr "{0} nije važeći Cron izraz." -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} nije važeća DocType za dinamičku vezu" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "{0} nije važeća adresa e-pošte" @@ -31372,15 +31523,15 @@ msgstr "{0} nije važeća adresa e-pošte" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "{0} nije važeći ISO 3166 ALPHA-2 kod." -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "{0} nije važeće Ime" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "{0} nije ispravan broj telefona" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "{0} nije važeće Stanje Radnog Toka. Ažuriraj Radni Tok i pokušaj ponovo." @@ -31396,55 +31547,59 @@ msgstr "{0} nije važeće nadređeno polje za {1}" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} nije važeći format izvještaja. Format izvještaja bi trebao biti jedan od sljedećih {1}" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "{0} nije zip datoteka" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "{0} nije dozvoljena uloga za {1}" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "{0} nije jednako {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "{0} nije kao {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "{0} nije jedno od {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "{0} nije postavljeno" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "{0} je sada standardi format ispisivanja za {1} tip dokumenta" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" msgstr "{0} je jedan od {1}" #: frappe/email/doctype/email_account/email_account.py:304 -#: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/printing/doctype/print_format/print_format.py:104 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} je obavezan" -#: frappe/public/js/frappe/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "{0} je postavljeno" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "{0} je unutar {1}" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} artikala odabrano" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} samo se predstavljao kao vi. Naveli su ovaj razlog: {1}" @@ -31477,35 +31632,35 @@ msgstr "prije {0} minuta" msgid "{0} months ago" msgstr "{0} mjeseci prije" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "{0} mora biti iza {1}" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "{0} mora početi sa '{1}'" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "{0} mora biti jednako '{1}'" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "{0} ne smije biti ni jedna od {1}" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} mora biti jedan od {1}" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "{0} se mora prvo postaviti" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "{0} mora biti jedinstven" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "{0} mora biti {1} {2}" @@ -31513,7 +31668,7 @@ msgstr "{0} mora biti {1} {2}" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "{0} mora početi i završavati slovom i može sadržavati samo slova, crticu ili donju crticu." -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "{0} nije važeća Zemlja" @@ -31526,11 +31681,11 @@ msgid "{0} not found" msgstr "{0} nije pronađen" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} od {1}" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} od {1} ({2} redovi sa potomcima)" @@ -31539,7 +31694,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "Samo {0}." -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "{0} ili {1}" @@ -31563,6 +31718,10 @@ msgstr "{0} zapis(a) je obrisan(o)" msgid "{0} records will be exported" msgstr "{0} zapis(a) će biti izvezen(o)" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "{0} je uklonio/la 1 red iz {1}" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31572,15 +31731,29 @@ msgstr "{0} uklonio prilog {1}" msgid "{0} removed their assignment." msgstr "{0} je uklonio(la) svoju dodjelu." -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "{0} je uklonilo {1} redova iz {2}" + +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "{0} uloga nema dozvolu ni za jedan tip dokumenta" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " -msgstr "{0} red #{1}: " +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" +msgstr "{0} red #{1}:" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "{0} redova od {1}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "{0} redova do {1}" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "{0} uspješno spremljen" @@ -31600,11 +31773,11 @@ msgstr "{0} je podijelio(la) ovaj dokument sa svima" msgid "{0} shared this document with {1}" msgstr "{0} podijelio(la) ovaj dokument sa {1}" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "{0} treba indeksirati jer se poziva na konekcije nadzorne table" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "{0} ne bi trebalo biti isto kao {1}" @@ -31617,8 +31790,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "{0} je podnio ovaj dokument {1}" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "{0} pretplatnika je dodano" @@ -31628,7 +31801,7 @@ msgstr "{0} da prestanete primati e-poštu ovog tipa" #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "{0} do {1}" @@ -31636,7 +31809,7 @@ msgstr "{0} do {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} je prekinuo(la) dijeljenje ovog dokumenta sa {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} ažurirano" @@ -31672,15 +31845,15 @@ msgstr "{0} {1} dodano" msgid "{0} {1} added to Dashboard {2}" msgstr "{0} {1} dodan na Nadzornu Ploču {2}" -#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "{0} {1} već postoji" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "{0} {1} ne može biti \"{2}\". Trebao bi biti jedan od \"{3}\"" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "{0} {1} ne može biti nadređeni jer ima podređene" @@ -31696,11 +31869,11 @@ msgstr "{0} {1} je povezan sa sljedećim podesenim dokumentima: {2}" msgid "{0} {1} not found" msgstr "{0} {1} nije pronađeno" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: Podenseni Zapis se ne može izbrisati. Prvo morate {2} otkazati {3}." -#: frappe/model/base_document.py:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "{0}, Red {1}" @@ -31708,79 +31881,79 @@ msgstr "{0}, Red {1}" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "{0}/{1} završeno | Ostavite ovu karticu otvorenom do završetka." -#: frappe/model/base_document.py:1120 +#: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "{0}: '{1}' ({3}) će biti skraćen, jer je maksimalni dozvoljeni broj znakova {2}" -#: frappe/core/doctype/doctype/doctype.py:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "{0}: Ne može se postaviti Izmjena bez Otkaži" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "{0}: Nije moguće postaviti Dodijeli Izmjenu ako nije Podnošljivo" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "{0}: Ne može se postaviti Dodijeli Podnošenje ako nije Podnošljivo" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "{0}: Nije moguće postaviti Otkaži bez Podnesi" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "{0}: Nije moguće postaviti Uvoz bez Kreiranja" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "{0}: Nije moguće podesiti Podnesi, Otkaži, Izmijeni bez Piši" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 msgid "{0}: Cannot set import as {1} is not importable" msgstr "{0}: Nije moguće postaviti uvoz jer {1} nije uvožljiv" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436 msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings" msgstr "{0}: Nije uspjelo prilaganje novog ponavljajućeg dokumenta. Da biste omogućili prilaganje dokumenta u automatskom ponavljanju obavijesti e-pošte, omogući {1} u Postavkama Ispisa" -#: frappe/core/doctype/doctype/doctype.py:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "{0}: Polje '{1}' ne može se postaviti kao jedinstveno jer ima nejedinstvene vrijednosti" -#: frappe/core/doctype/doctype/doctype.py:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "{0}: Polje {1} u redu {2} ne može biti skriveno i obavezno bez standardnog" -#: frappe/core/doctype/doctype/doctype.py:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "{0}: Polje {1} tipa {2} ne može biti obavezno" -#: frappe/core/doctype/doctype/doctype.py:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "{0}: Ime polja {1} se pojavljuje više puta u redovima {2}" -#: frappe/core/doctype/doctype/doctype.py:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "{0}: Tip polja {1} za {2} ne može biti jedinstven" -#: frappe/core/doctype/doctype/doctype.py:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "{0}: Nisu postavljene osnovne dozvole" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "{0}: Dozvoljeno je samo jedno pravilo sa istom ulogom, nivoom i {1}" -#: frappe/core/doctype/doctype/doctype.py:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" msgstr "{0}: Opcije moraju biti važeći DocType za polje {1} u redu {2}" -#: frappe/core/doctype/doctype/doctype.py:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "{0}: Obavezne opcije za polje Tip Veze ili Tabele {1} u redu {2}" -#: frappe/core/doctype/doctype/doctype.py:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "{0}: Opcije {1} moraju biti iste kao naziv tipa dokumenta {2} za polje {3}" @@ -31788,7 +31961,7 @@ msgstr "{0}: Opcije {1} moraju biti iste kao naziv tipa dokumenta {2} za polje { msgid "{0}: Other permission rules may also apply" msgstr "{0}: Mogu se primjenjivati i druga pravila o dozvolama" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "{0}: Dozvola na nivou 0 mora biti postavljena prije postavljanja viših nivoa" @@ -31796,7 +31969,7 @@ msgstr "{0}: Dozvola na nivou 0 mora biti postavljena prije postavljanja viših msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "{0}: Možete povećati ograničenje za polje ako je potrebno preko {1}" -#: frappe/core/doctype/doctype/doctype.py:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "{0}: naziv polja ne može se postaviti na rezerviranu ključnu riječ {1}" @@ -31809,11 +31982,11 @@ 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:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} naspram {2}" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "{0}:Tip polja {1} za {2} ne može se indeksirati" @@ -31837,7 +32010,7 @@ msgstr "{count} red odabran" msgid "{count} rows selected" msgstr "{count} redova odabrano" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "{{{0}}} nije važeća forma naziva polja. Trebalo bi da bude {{field_name}}." @@ -31845,11 +32018,11 @@ msgstr "{{{0}}} nije važeća forma naziva polja. Trebalo bi da bude {{field_nam msgid "{} Complete" msgstr "{} Završeno" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "{} Nevažeći python kod na liniji {}" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "{} Možda nevažeći python kod.
{}" @@ -31875,7 +32048,7 @@ msgstr "{} je onemogućen. Može se omogućiti samo ako je označeno {}." msgid "{} is not a valid date string." msgstr "{} nije ispravan datumski niz." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "{} nije pronađeno u PATH! Ovo je potrebno za pristup konzoli." diff --git a/frappe/locale/cs.po b/frappe/locale/cs.po index 1249a2a0ba..4b318d5c4f 100644 --- a/frappe/locale/cs.po +++ b/frappe/locale/cs.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-21 21:50\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Czech\n" "MIME-Version: 1.0\n" @@ -18,10 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: cs_CZ\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr "" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json @@ -61,7 +57,7 @@ msgstr "" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" msgstr "" @@ -74,7 +70,7 @@ msgstr "" msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "" @@ -82,19 +78,23 @@ msgstr "" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" msgstr "" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "" @@ -102,11 +102,11 @@ msgstr "" msgid "(Mandatory)" msgstr "" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" msgstr "" @@ -122,7 +122,7 @@ msgstr "" msgid "0 is highest" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "" @@ -140,15 +140,11 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "" @@ -157,17 +153,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "" @@ -179,37 +175,47 @@ msgstr "" msgid "1 record will be exported" msgstr "" -#: frappe/tests/test_utils.py:711 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "" + +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "" @@ -225,7 +231,7 @@ msgstr "" msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "" @@ -245,6 +251,13 @@ msgstr "" msgid "<=" msgstr "" +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "" @@ -254,6 +267,16 @@ msgstr "" msgid "
Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
" msgstr "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -479,7 +502,7 @@ msgid "

To interact with above HTML you will have to use `root_element` as a p "" msgstr "" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

" msgstr "" @@ -546,7 +569,7 @@ msgstr "" msgid ">=" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" @@ -555,15 +578,16 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." msgstr "" #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "" @@ -576,7 +600,7 @@ msgstr "" msgid "A new account has been created for you at {0}" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "" @@ -675,13 +699,17 @@ msgstr "" msgid "API Endpoint Args" msgstr "" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -700,6 +728,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -720,7 +752,7 @@ msgstr "" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -767,6 +799,20 @@ msgstr "" msgid "About {0} seconds remaining" msgstr "" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "Přijato" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -792,7 +838,7 @@ msgstr "" msgid "Access Token URL" msgstr "" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "" @@ -856,7 +902,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "" @@ -908,7 +954,7 @@ msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "" @@ -965,7 +1011,7 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -976,7 +1022,7 @@ msgstr "" msgid "Add" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -988,7 +1034,7 @@ msgstr "" msgid "Add A New Rule" msgstr "" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "" @@ -1008,7 +1054,7 @@ msgstr "" msgid "Add Border at Top" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "" @@ -1021,10 +1067,10 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "" @@ -1083,7 +1129,7 @@ msgstr "" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "" @@ -1116,12 +1162,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "" @@ -1210,7 +1256,7 @@ msgstr "" msgid "Add page break" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "" @@ -1248,7 +1294,7 @@ msgstr "" msgid "Add {0}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" msgstr "" @@ -1291,6 +1337,7 @@ msgstr "" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1299,6 +1346,7 @@ msgstr "" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "" @@ -1306,6 +1354,7 @@ msgstr "" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "" @@ -1356,7 +1405,7 @@ msgstr "" msgid "Adds a custom field to a DocType" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "" @@ -1370,7 +1419,6 @@ msgstr "" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1383,11 +1431,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1408,8 +1456,8 @@ msgstr "" msgid "Advanced Control" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" msgstr "" @@ -1468,7 +1516,7 @@ msgstr "" msgid "After Submit" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "" @@ -1495,11 +1543,11 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1564,7 +1612,7 @@ msgstr "" msgid "All Records" msgstr "" -#: frappe/public/js/frappe/form/form.js:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "" @@ -1624,7 +1672,7 @@ msgstr "" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " +msgid "Allow Consecutive Login Attempts" msgstr "" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 @@ -1645,11 +1693,6 @@ msgstr "" msgid "Allow Guest to View" msgstr "" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1698,7 +1741,7 @@ msgid "Allow Print for Cancelled" msgstr "" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "" @@ -1930,7 +1973,7 @@ msgstr "" msgid "Allows skipping authorization if a user has active tokens." msgstr "" -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "" @@ -1938,11 +1981,11 @@ msgstr "" msgid "Already in the following Users ToDo list:{0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "" @@ -1951,6 +1994,12 @@ msgstr "" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2002,10 +2051,8 @@ msgstr "" msgid "Amended Documents" msgstr "" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "" @@ -2029,6 +2076,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2122,10 +2174,12 @@ msgid "App Logo" msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2196,6 +2250,10 @@ msgstr "" msgid "Application Version" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2205,7 +2263,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2253,7 +2311,7 @@ msgstr "" msgid "Apply to all Documents Types" msgstr "" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "" @@ -2286,7 +2344,11 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2314,11 +2376,15 @@ msgctxt "Confirmation dialog message" msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:191 msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2326,7 +2392,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2381,6 +2447,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2390,7 +2462,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2453,6 +2525,11 @@ msgstr "" msgid "Assigned To/Owner" msgstr "" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "" @@ -2522,7 +2599,13 @@ msgstr "" msgid "Assignments" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -2602,7 +2685,7 @@ msgstr "" msgid "Attached To Name" msgstr "" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "" @@ -2618,7 +2701,7 @@ msgstr "" msgid "Attachment Limit (MB)" msgstr "" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "" @@ -2636,15 +2719,15 @@ 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:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "" @@ -2667,6 +2750,10 @@ msgstr "" msgid "Auth URL Data" msgstr "" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "" + #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authenticate as Service Principal" @@ -2684,7 +2771,7 @@ msgid "Authentication" msgstr "" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " +msgid "Authentication Apps you can use are:" msgstr "" #: frappe/email/doctype/email_account/email_account.py:339 @@ -2798,11 +2885,11 @@ msgstr "" msgid "Auto Repeat Day" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "" @@ -2810,11 +2897,16 @@ msgstr "" msgid "Auto Repeat Schedule" msgstr "" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "" @@ -2858,7 +2950,7 @@ msgstr "" msgid "Auto follow documents that you create" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "" @@ -2906,7 +2998,7 @@ msgstr "" msgid "Automatically Assign Documents to Users" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "" @@ -2920,11 +3012,6 @@ msgstr "" msgid "Automation" msgstr "" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3196,8 +3283,8 @@ msgstr "" #. Label of the based_on (Link) field in DocType 'Language' #: frappe/core/doctype/language/language.json -#: frappe/printing/page/print/print.js:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "" @@ -3314,10 +3401,8 @@ msgstr "" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "" @@ -3347,64 +3432,6 @@ msgstr "" msgid "Blocked" msgstr "" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3501,13 +3528,6 @@ msgstr "" msgid "Breadcrumbs" msgstr "" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3565,15 +3585,15 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" msgstr "" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "" @@ -3588,7 +3608,7 @@ msgstr "" msgid "Bulk Update" msgstr "" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "" @@ -3600,7 +3620,7 @@ msgstr "" msgid "Bulk operations only support up to 500 documents." msgstr "" -#: frappe/model/workflow.py:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "" @@ -3730,16 +3750,6 @@ msgstr "" msgid "CSV" msgstr "" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3790,11 +3800,6 @@ msgstr "" msgid "Call To Action URL" msgstr "" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -3812,7 +3817,7 @@ msgid "Camera" msgstr "" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3848,7 +3853,7 @@ msgstr "" msgid "Can not rename as column {0} is already present on DocType." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "" @@ -3872,14 +3877,15 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3897,16 +3903,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -3944,11 +3952,11 @@ msgstr "" msgid "Cannot Remove" msgstr "" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3956,7 +3964,7 @@ msgstr "" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "" @@ -3964,11 +3972,11 @@ msgstr "" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1013 +#: frappe/model/document.py:1017 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -3976,11 +3984,11 @@ msgstr "" msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "" @@ -3992,11 +4000,11 @@ msgstr "" msgid "Cannot create private workspace of other users" msgstr "" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4031,7 +4039,7 @@ msgstr "" msgid "Cannot delete {0}" msgstr "" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" msgstr "" @@ -4039,7 +4047,7 @@ msgstr "" msgid "Cannot edit Standard Dashboards" msgstr "" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "" @@ -4051,7 +4059,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" -#: frappe/model/document.py:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "" @@ -4059,8 +4067,8 @@ msgstr "" msgid "Cannot edit filters for standard charts" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "" @@ -4068,27 +4076,27 @@ msgstr "" msgid "Cannot edit standard fields" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:884 msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1132 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "" @@ -4100,11 +4108,11 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "" @@ -4112,7 +4120,7 @@ msgstr "" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "" @@ -4129,11 +4137,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4201,15 +4209,6 @@ msgstr "" msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4247,7 +4246,7 @@ msgstr "" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
\n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " +"Warning: Incorrectly updating counters can prevent documents from getting created." msgstr "" #. Label of the changed_at (Datetime) field in DocType 'Permission Log' @@ -4317,7 +4316,7 @@ msgstr "" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "" @@ -4350,7 +4349,7 @@ msgstr "" msgid "Check" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "" @@ -4358,7 +4357,7 @@ msgstr "" msgid "Check columns to select, drag to set order." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "" @@ -4399,11 +4398,6 @@ msgstr "" msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "" -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "" @@ -4413,17 +4407,17 @@ msgstr "" msgid "Child Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4452,6 +4446,7 @@ msgid "Choose authentication method to be used by all users" 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 msgid "City" msgstr "" @@ -4466,7 +4461,7 @@ msgstr "" msgid "Clear" msgstr "" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "" @@ -4478,7 +4473,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4504,7 +4499,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "" @@ -4516,11 +4511,15 @@ msgstr "" msgid "Click On Customize to add your first widget" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "" @@ -4551,24 +4550,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4746,7 +4745,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4801,7 +4800,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:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4857,11 +4856,11 @@ msgstr "" msgid "Column Name cannot be empty" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4888,7 +4887,7 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "" @@ -4930,16 +4929,6 @@ msgstr "" msgid "Comment can only be edited by the owner" msgstr "" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "" @@ -4947,7 +4936,7 @@ msgstr "" #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "" @@ -4956,7 +4945,7 @@ msgstr "" msgid "Comments and Communications will be associated with this linked document" msgstr "" -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "" @@ -5028,12 +5017,12 @@ msgid "Company Name" msgstr "" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "" @@ -5113,8 +5102,8 @@ msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5128,6 +5117,11 @@ msgstr "" msgid "Condition JSON" msgstr "" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5153,11 +5147,11 @@ msgstr "" msgid "Configuration" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5182,7 +5176,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5201,7 +5195,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "" @@ -5228,7 +5222,7 @@ msgstr "" msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "" @@ -5246,8 +5240,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "" @@ -5298,6 +5292,10 @@ msgstr "" msgid "Contact" msgstr "" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
{0}" +msgstr "" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5355,15 +5353,13 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5371,24 +5367,12 @@ msgstr "" msgid "Content" msgstr "" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "" @@ -5456,7 +5440,7 @@ msgstr "" msgid "Copy embed code" msgstr "" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "" @@ -5464,12 +5448,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "" + #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5477,7 +5465,7 @@ msgstr "" msgid "Core Modules {0} cannot be searched in Global Search." msgstr "" -#: frappe/printing/page/print/print.js:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "" @@ -5485,7 +5473,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "" -#: frappe/model/document.py:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "" @@ -5493,15 +5481,15 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " +msgid "Could not start up:" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "" @@ -5546,13 +5534,14 @@ msgstr "" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "" @@ -5584,13 +5573,13 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5604,7 +5593,7 @@ msgid "Create Card" msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "" @@ -5638,12 +5627,12 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5651,7 +5640,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "" @@ -5663,7 +5652,7 @@ msgstr "" msgid "Create a Reminder" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "" @@ -5671,11 +5660,11 @@ msgstr "" msgid "Create a new record" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "" @@ -5691,7 +5680,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "" @@ -5701,7 +5690,7 @@ msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "" @@ -5717,7 +5706,7 @@ msgstr "" msgid "Created By" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "" @@ -5729,7 +5718,7 @@ msgstr "" msgid "Created On" msgstr "" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "" @@ -6038,7 +6027,7 @@ msgstr "" #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "" @@ -6066,14 +6055,14 @@ msgstr "" msgid "Customizations for {0} exported to:
{1}" msgstr "" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6092,7 +6081,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "" @@ -6170,7 +6159,7 @@ msgstr "" msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "" -#: frappe/desk/doctype/event/event.py:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "" @@ -6217,7 +6206,7 @@ msgstr "" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "" @@ -6276,7 +6265,6 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6289,7 +6277,6 @@ msgstr "" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6325,7 +6312,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "" @@ -6356,7 +6343,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6494,11 +6481,11 @@ msgstr "" msgid "Debug Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "" @@ -6660,11 +6647,11 @@ msgstr "" msgid "Default display currency" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 msgid "Default value for {0} must be in the list of options." msgstr "" @@ -6698,6 +6685,12 @@ msgstr "" msgid "Defines actions on states and the next step and allowed roles." msgstr "" +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6715,22 +6708,27 @@ 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/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "Smazat" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "" @@ -6739,6 +6737,12 @@ msgstr "" 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 +msgid "Delete Background Exported Reports After (Hours)" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6748,7 +6752,7 @@ msgstr "" msgid "Delete Data" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6762,7 +6766,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6771,7 +6775,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "" @@ -6804,12 +6808,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6845,11 +6849,15 @@ msgstr "" msgid "Deleted Name" msgstr "" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "" @@ -6864,7 +6872,7 @@ msgstr "" #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " +msgid "Deletion Steps" msgstr "" #: frappe/core/doctype/page/page.py:110 @@ -6881,7 +6889,7 @@ msgstr "" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "" @@ -6908,7 +6916,7 @@ msgstr "" msgid "Dependencies" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "" @@ -6943,7 +6951,6 @@ msgstr "" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -6964,7 +6971,6 @@ msgstr "" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -6974,11 +6980,6 @@ msgstr "" msgid "Description" msgstr "" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -7062,7 +7063,7 @@ msgstr "" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "" @@ -7123,11 +7124,6 @@ msgstr "" msgid "Disable Comment Count" msgstr "" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7145,11 +7141,6 @@ msgstr "" msgid "Disable Document Sharing" msgstr "" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "" @@ -7159,6 +7150,11 @@ msgstr "" msgid "Disable SMTP server authentication" msgstr "" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7204,7 +7200,6 @@ msgstr "" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7219,7 +7214,6 @@ msgstr "" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "" @@ -7230,7 +7224,7 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "" @@ -7248,7 +7242,7 @@ msgstr "" msgid "Discard {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "" @@ -7271,7 +7265,7 @@ msgstr "" msgid "Discussion Topic" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7307,19 +7301,23 @@ msgstr "" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " +msgid "Do Not Create New User" msgstr "" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7410,7 +7408,7 @@ msgstr "" msgid "DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1577 +#: frappe/core/doctype/doctype/doctype.py:1578 msgid "DocType {0} provided for the field {1} must have atleast one Link field" msgstr "" @@ -7457,11 +7455,11 @@ msgstr "" msgid "DocType View" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "" @@ -7470,7 +7468,7 @@ msgstr "" msgid "DocType is a Table / Form in the application." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "" @@ -7503,7 +7501,7 @@ msgstr "" msgid "DocType {} not found" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "" @@ -7517,7 +7515,7 @@ msgstr "" msgid "Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "" @@ -7579,31 +7577,29 @@ msgstr "" msgid "Document Links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7745,13 +7741,13 @@ msgstr "" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 msgid "Document Type and Function are required to create a number card" msgstr "" @@ -7788,7 +7784,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "" @@ -7796,15 +7792,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "" @@ -7946,13 +7942,13 @@ msgstr "" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "" @@ -7979,7 +7975,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "" @@ -8042,7 +8038,7 @@ msgstr "" msgid "Drag to add state" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "" @@ -8075,7 +8071,7 @@ msgstr "" msgid "Duplicate Filter Name" msgstr "" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "" @@ -8174,17 +8170,17 @@ msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8192,7 +8188,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8202,7 +8198,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8231,7 +8227,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8249,7 +8245,7 @@ msgstr "" msgid "Edit Footer" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "" @@ -8334,7 +8330,7 @@ msgstr "" msgid "Edit to add content" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "" @@ -8343,7 +8339,7 @@ msgstr "" msgid "Edit your workflow visually using the Workflow Builder." msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "" @@ -8351,7 +8347,7 @@ msgstr "" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "" @@ -8390,11 +8386,14 @@ msgstr "" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8403,6 +8402,7 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8412,6 +8412,8 @@ msgstr "" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "" @@ -8443,7 +8445,7 @@ msgstr "" msgid "Email Account Name" msgstr "" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "" @@ -8531,6 +8533,7 @@ msgid "Email IDs" msgstr "" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "" @@ -8574,10 +8577,10 @@ msgstr "" msgid "Email Rule" msgstr "" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" -msgstr "" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" +msgstr "E-mail odeslán dne" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType @@ -8642,11 +8645,11 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "" @@ -8685,7 +8688,7 @@ msgstr "" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8693,7 +8696,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -8712,7 +8715,7 @@ msgstr "" msgid "Enable Address Autocompletion" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "" @@ -8738,11 +8741,6 @@ msgstr "" msgid "Enable Dynamic Client Registration" msgstr "" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -8836,11 +8834,6 @@ msgstr "" msgid "Enable Social Login" msgstr "" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "" @@ -8848,7 +8841,7 @@ msgstr "" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "" @@ -8860,12 +8853,6 @@ msgstr "" msgid "Enable developer mode to create a standard Web Template" msgstr "" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "" - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -8888,6 +8875,7 @@ msgstr "" #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -8900,6 +8888,7 @@ msgstr "" #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "" @@ -8925,14 +8914,10 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "" - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." msgstr "" #. Description of the 'Queue in Background (BETA)' (Check) field in DocType @@ -8949,11 +8934,11 @@ msgstr "" msgid "Encrypt Backups" msgstr "" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "" @@ -8965,7 +8950,7 @@ msgstr "" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -8981,6 +8966,10 @@ msgstr "" msgid "End Date cannot be before Start Date!" msgstr "" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9025,7 +9014,7 @@ msgstr "" msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "" @@ -9095,10 +9084,17 @@ msgstr "" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9108,7 +9104,7 @@ msgstr "" msgid "Error" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "" @@ -9128,7 +9124,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 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 "" @@ -9156,9 +9152,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "" @@ -9178,19 +9174,19 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "" @@ -9247,7 +9243,7 @@ msgstr "" msgid "Events" msgstr "" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "" @@ -9331,7 +9327,7 @@ msgstr "" msgid "Execute Console script" msgstr "" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "" @@ -9339,7 +9335,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "" @@ -9365,12 +9361,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9398,7 +9394,9 @@ msgid "Expire Notification On" msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "" @@ -9426,13 +9424,13 @@ msgstr "" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9469,7 +9467,7 @@ msgstr "" msgid "Export Import Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "" @@ -9478,11 +9476,11 @@ msgstr "" msgid "Export Type" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "" @@ -9490,6 +9488,10 @@ msgstr "" msgid "Export as zip" msgstr "" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "" @@ -9595,7 +9597,7 @@ msgstr "" msgid "Failed Logins (Last 30 days)" msgstr "" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "" @@ -9612,7 +9614,7 @@ msgstr "" msgid "Failed to complete setup" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "" @@ -9621,15 +9623,15 @@ msgstr "" msgid "Failed to connect to server" msgstr "" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "" @@ -9637,8 +9639,8 @@ msgstr "" msgid "Failed to enable scheduler: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "" @@ -9654,7 +9656,7 @@ msgstr "" msgid "Failed to generate preview of series" msgstr "" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "" @@ -9674,11 +9676,11 @@ msgstr "" msgid "Failed to optimize image: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "" @@ -9728,12 +9730,6 @@ msgstr "" msgid "Fax" msgstr "" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "" @@ -9791,17 +9787,17 @@ msgstr "" #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "" @@ -9814,7 +9810,7 @@ msgstr "" msgid "Field Description" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9844,7 +9840,7 @@ msgstr "" msgid "Field Type" msgstr "" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "" @@ -9870,11 +9866,11 @@ msgstr "" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "" -#: frappe/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "" -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9892,20 +9888,20 @@ 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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "" @@ -9921,15 +9917,15 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "" @@ -9952,7 +9948,7 @@ msgstr "" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -9965,7 +9961,7 @@ msgstr "" msgid "Fields Multicheck" msgstr "" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "" @@ -9973,7 +9969,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10001,7 +9997,7 @@ msgstr "" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10014,7 +10010,7 @@ msgstr "" msgid "File" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "" @@ -10067,7 +10063,7 @@ msgstr "" msgid "File backup is ready" msgstr "" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "" @@ -10075,7 +10071,7 @@ msgstr "" msgid "File not attached" msgstr "" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "" @@ -10084,11 +10080,11 @@ msgstr "" msgid "File too big" msgstr "" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "" @@ -10102,10 +10098,10 @@ msgstr "" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10142,11 +10138,11 @@ msgstr "" msgid "Filter Values" msgstr "" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10164,7 +10160,6 @@ msgstr "" msgid "Filtered Records" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "" @@ -10179,7 +10174,9 @@ msgstr "" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10201,6 +10198,11 @@ msgstr "" msgid "Filters Display" msgstr "" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10213,11 +10215,11 @@ msgstr "" msgid "Filters Section" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "" @@ -10230,18 +10232,18 @@ msgstr "" msgid "Filters {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1427 +#: frappe/public/js/frappe/views/reports/report_view.js:1429 msgid "Filters:" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 msgid "Find '{0}' in ..." msgstr "" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 msgid "Find {0} in {1}" msgstr "" @@ -10265,8 +10267,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "" @@ -10275,10 +10281,6 @@ msgstr "" msgid "First Success Message" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:49 -msgid "First Transaction" -msgstr "" - #: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." msgstr "" @@ -10329,11 +10331,11 @@ msgstr "" msgid "Fold" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1450 +#: frappe/core/doctype/doctype/doctype.py:1451 msgid "Fold can not be at the end of the form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1448 +#: frappe/core/doctype/doctype/doctype.py:1449 msgid "Fold must come before a Section Break" msgstr "" @@ -10351,7 +10353,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "" -#: frappe/core/doctype/file/file.py:472 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "" @@ -10458,7 +10460,7 @@ msgstr "" msgid "Footer HTML" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:75 +#: frappe/printing/doctype/letter_head/letter_head.py:81 msgid "Footer HTML set from attachment {0}" msgstr "" @@ -10495,7 +10497,7 @@ msgstr "" msgid "Footer Template Values" msgstr "" -#: frappe/printing/page/print/print.js:116 +#: frappe/printing/page/print/print.js:129 msgid "Footer might not be visible as {0} option is disabled
" msgstr "" @@ -10553,8 +10555,8 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10580,12 +10582,6 @@ msgstr "" msgid "For help see Client Script API and Examples" msgstr "" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "" - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "" @@ -10600,7 +10596,7 @@ msgstr "" msgid "For updating, you can update only selective columns." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "" @@ -10655,7 +10651,7 @@ 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:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "" @@ -10715,6 +10711,11 @@ msgstr "" msgid "Format Data" msgstr "" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "" @@ -10742,7 +10743,15 @@ msgstr "" msgid "Frappe" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "" @@ -10831,7 +10840,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "" @@ -10858,18 +10867,16 @@ msgstr "" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "" @@ -10895,12 +10902,12 @@ msgstr "" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" +msgid "Further sub-groups can only be created under records marked as 'Group'" msgstr "" #: frappe/core/doctype/communication/communication.js:291 @@ -10960,7 +10967,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "" @@ -10968,8 +10975,14 @@ msgstr "" msgid "Generate Random Password" msgstr "" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "" @@ -10992,7 +11005,7 @@ msgstr "" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "" @@ -11128,7 +11141,7 @@ msgid "Go to this URL after completing the form" msgstr "" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "" @@ -11176,10 +11189,6 @@ msgstr "" msgid "Google Calendar" msgstr "" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}" -msgstr "" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "" @@ -11298,11 +11307,6 @@ msgstr "" msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "" -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11379,14 +11383,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11436,7 +11436,6 @@ msgstr "" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11447,9 +11446,8 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11553,7 +11551,7 @@ msgstr "" msgid "Header HTML" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "" @@ -11611,6 +11609,12 @@ msgstr "" msgid "Hello" msgstr "" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "Ahoj," + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11676,7 +11680,7 @@ msgstr "" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "" @@ -11712,7 +11716,7 @@ msgstr "" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11745,11 +11749,6 @@ msgstr "" msgid "Hide Buttons" msgstr "" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "" - #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json @@ -11829,7 +11828,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -11843,7 +11842,7 @@ msgstr "" msgid "Hide descendant records of For Value." msgstr "" -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "" @@ -11892,11 +11891,8 @@ 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:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -11984,16 +11980,16 @@ msgstr "" #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -12089,9 +12085,9 @@ msgstr "" msgid "If Checked workflow status will not override status in list view" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "" @@ -12219,6 +12215,10 @@ msgstr "" msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12250,7 +12250,11 @@ msgstr "" msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "" -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "" @@ -12307,12 +12311,12 @@ msgstr "" msgid "Ignored Apps" msgstr "" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "" @@ -12373,11 +12377,11 @@ msgstr "" msgid "Image Width" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 msgid "Image field must be a valid fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "" @@ -12399,15 +12403,15 @@ msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "" @@ -12433,7 +12437,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12661,15 +12665,16 @@ msgstr "" msgid "Include Web View Link in Email" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "" @@ -12716,7 +12721,7 @@ msgstr "" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "" @@ -12728,7 +12733,7 @@ msgstr "" msgid "Incorrect URL" msgstr "" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "" @@ -12736,11 +12741,11 @@ msgstr "" msgid "Incorrect Verification code" msgstr "" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "" @@ -12752,7 +12757,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "" @@ -12827,7 +12832,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "" @@ -12843,7 +12848,7 @@ msgstr "" msgid "Insert Below" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "" @@ -12861,8 +12866,12 @@ msgstr "" msgid "Insert Style" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "" @@ -12879,7 +12888,7 @@ msgid "Installed Applications" msgstr "" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "" @@ -12896,19 +12905,19 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" msgstr "" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "" @@ -13012,9 +13021,9 @@ msgid "Invalid" msgstr "" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "" @@ -13022,7 +13031,7 @@ msgstr "" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "" @@ -13038,7 +13047,7 @@ msgstr "" msgid "Invalid Code. Please try again." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "" @@ -13058,16 +13067,20 @@ msgstr "" msgid "Invalid DocType: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13099,7 +13112,7 @@ msgstr "" msgid "Invalid Mail Server. Please rectify and try again." msgstr "" -#: frappe/model/naming.py:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "" @@ -13108,8 +13121,8 @@ msgstr "" msgid "Invalid Operation" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "" @@ -13121,25 +13134,25 @@ msgstr "" msgid "Invalid Output Format" msgstr "" -#: frappe/model/base_document.py:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "" @@ -13148,7 +13161,7 @@ msgstr "" msgid "Invalid Search Field {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "" @@ -13156,8 +13169,8 @@ msgstr "" msgid "Invalid Transition" msgstr "" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13171,47 +13184,51 @@ msgstr "" msgid "Invalid Values" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "" @@ -13223,31 +13240,27 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13255,11 +13268,11 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13267,20 +13280,28 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "" @@ -13288,6 +13309,10 @@ msgstr "" msgid "Invalid naming series {}: dot (.) missing" msgstr "" +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "" @@ -13296,19 +13321,27 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13316,7 +13349,7 @@ msgstr "" msgid "Invalid template file for import" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "" @@ -13325,20 +13358,20 @@ msgstr "" msgid "Invalid username or password" msgstr "" -#: frappe/model/naming.py:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "" @@ -13347,10 +13380,47 @@ msgstr "" msgid "Inverse" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "" @@ -13375,7 +13445,7 @@ msgstr "" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "" @@ -13428,6 +13498,10 @@ msgstr "" msgid "Is Global" msgstr "" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Je skupina" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13454,8 +13528,13 @@ msgstr "" msgid "Is Primary" msgstr "" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 msgid "Is Primary Contact" msgstr "" @@ -13486,7 +13565,7 @@ msgstr "" msgid "Is Published Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "" @@ -13511,7 +13590,7 @@ msgstr "" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "" @@ -13547,7 +13626,7 @@ msgstr "" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "" @@ -13753,11 +13832,11 @@ msgstr "" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13778,12 +13857,14 @@ msgstr "" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -14045,7 +14126,7 @@ msgstr "" msgid "Landing Page" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "" @@ -14053,10 +14134,13 @@ msgstr "" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14144,8 +14228,12 @@ msgstr "" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "" @@ -14160,6 +14248,11 @@ msgstr "" msgid "Last Quarter" msgstr "" +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" + #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json @@ -14176,11 +14269,6 @@ msgstr "" msgid "Last Sync On" msgstr "" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14291,7 +14379,7 @@ msgstr "" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "" @@ -14340,8 +14428,8 @@ 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:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14369,7 +14457,7 @@ msgstr "" msgid "Letter Head Scripts" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "" @@ -14386,7 +14474,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "" @@ -14436,20 +14524,6 @@ msgstr "" msgid "Like" msgstr "" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "" @@ -14490,6 +14564,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14503,6 +14578,7 @@ msgstr "" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "" @@ -14633,10 +14709,15 @@ msgstr "" msgid "Linked With" msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +msgstr "" + #. Label of the links (Table) field in DocType 'Address' #. Label of the links (Table) field in DocType 'Contact' #. Label of the links_section (Tab Break) field in DocType 'DocType' #. Label of the links (Table) field in DocType 'Customize Form' +#. Label of the links (Table) field in DocType 'Event' #. Label of the links (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14644,6 +14725,7 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "" @@ -14685,7 +14767,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14726,7 +14808,7 @@ msgstr "" msgid "List setting message" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "" @@ -14735,9 +14817,8 @@ msgstr "" msgid "Load Balancing" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14754,10 +14835,10 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "" @@ -14769,7 +14850,7 @@ msgstr "" msgid "Loading import file..." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "" @@ -14779,7 +14860,7 @@ msgstr "" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "" @@ -14840,7 +14921,7 @@ msgstr "" msgid "Log out" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "" @@ -14900,7 +14981,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -14908,7 +14989,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "" @@ -14961,7 +15042,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -14980,7 +15061,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "" @@ -15084,7 +15165,10 @@ msgid "Major" 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 +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "" @@ -15160,7 +15244,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "" @@ -15172,15 +15256,15 @@ msgstr "" msgid "Mandatory field: {0}" msgstr "" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "" @@ -15261,10 +15345,8 @@ msgid "Mark as Unread" msgstr "" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15345,7 +15427,13 @@ msgstr "" msgid "Max auto email report per user" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "" @@ -15354,20 +15442,15 @@ msgstr "" msgid "Maximum" msgstr "" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "" -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "" -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "" @@ -15383,7 +15466,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15396,7 +15479,7 @@ msgstr "" msgid "Meeting" msgstr "" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "" @@ -15437,7 +15520,7 @@ msgstr "" msgid "Merge with existing" msgstr "" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "" @@ -15463,7 +15546,7 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15503,7 +15586,7 @@ msgstr "" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "" @@ -15535,29 +15618,21 @@ msgstr "" msgid "Meta" msgstr "" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "" @@ -15610,7 +15685,7 @@ msgstr "" msgid "Method Not Allowed" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "" @@ -15626,6 +15701,11 @@ msgstr "" msgid "Middle Name" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15692,11 +15772,11 @@ msgstr "" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "" @@ -15732,15 +15812,16 @@ msgstr "" msgid "Mobile No" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "Mobilní číslo" + #. Label of the modal_trigger (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Modal Trigger" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15761,7 +15842,7 @@ msgstr "" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -15937,10 +16018,12 @@ msgstr "" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "" @@ -15959,7 +16042,7 @@ msgstr "" msgid "Most Used" msgstr "" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "" @@ -15970,7 +16053,7 @@ msgstr "" msgid "Move" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "" @@ -16006,7 +16089,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "" @@ -16033,7 +16116,7 @@ msgstr "" msgid "Ms" msgstr "" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "" @@ -16056,7 +16139,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "" @@ -16074,7 +16157,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16112,9 +16195,9 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16124,11 +16207,11 @@ msgstr "" msgid "Name (Doc Name)" msgstr "" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "" @@ -16140,7 +16223,7 @@ msgstr "" msgid "Name of the new Print Format" msgstr "" -#: frappe/model/naming.py:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "" @@ -16179,7 +16262,7 @@ msgstr "" msgid "Naming Series" msgstr "" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "" @@ -16216,12 +16299,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16236,7 +16319,11 @@ msgstr "" msgid "Navigation Settings" msgstr "" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16244,7 +16331,7 @@ msgstr "" msgid "Negative Value" msgstr "" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16257,6 +16344,12 @@ msgstr "" msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +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 @@ -16265,7 +16358,7 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16286,10 +16379,6 @@ msgstr "" msgid "New Chart" msgstr "" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "" @@ -16298,8 +16387,8 @@ msgstr "" msgid "New Custom Block" msgstr "" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" msgstr "" @@ -16330,7 +16419,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "" @@ -16365,12 +16454,12 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "" @@ -16379,7 +16468,7 @@ msgstr "" msgid "New Quick List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "" @@ -16397,8 +16486,8 @@ msgstr "" msgid "New Users (Last 30 days)" msgstr "" -#: frappe/core/doctype/version/version_view.html:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "" @@ -16455,13 +16544,13 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "" @@ -16477,7 +16566,7 @@ msgstr "" msgid "New {0} {1} created" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "" @@ -16485,7 +16574,7 @@ msgstr "" msgid "New {} releases for the following apps are available" msgstr "" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "" @@ -16498,7 +16587,7 @@ msgstr "" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16605,14 +16694,15 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16662,6 +16752,10 @@ msgstr "" msgid "No Email Accounts Assigned" msgstr "" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "" @@ -16697,15 +16791,15 @@ msgstr "" msgid "No Label" msgstr "" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: frappe/public/js/frappe/list/bulk_operations.js:98 #: frappe/public/js/frappe/list/bulk_operations.js:170 #: frappe/utils/weasyprint.py:52 msgid "No Letterhead" msgstr "" -#: frappe/model/naming.py:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "" @@ -16713,7 +16807,7 @@ msgstr "" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "" @@ -16733,11 +16827,11 @@ msgstr "" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "" @@ -16753,11 +16847,11 @@ msgstr "" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16765,7 +16859,7 @@ msgstr "" msgid "No Suggestions" msgstr "" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "" @@ -16777,7 +16871,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "" @@ -16805,23 +16899,19 @@ msgstr "" msgid "No changes to update" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " +msgid "No comments yet." msgstr "" #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "" @@ -16837,11 +16927,15 @@ msgstr "" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16865,7 +16959,7 @@ msgstr "" msgid "No matching records. Search something new" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "" @@ -16909,7 +17003,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "" @@ -16921,7 +17015,7 @@ msgstr "" msgid "No records deleted" msgstr "" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "" @@ -16937,7 +17031,7 @@ msgstr "" msgid "No rows" msgstr "" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -16957,11 +17051,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -16970,7 +17064,7 @@ msgid "No {0} mail" msgstr "" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -17013,7 +17107,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "" @@ -17034,7 +17128,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -17060,20 +17154,19 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17082,10 +17175,10 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "" @@ -17117,7 +17210,7 @@ msgstr "" msgid "Not a valid User Image." msgstr "" -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "" @@ -17133,11 +17226,11 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "" @@ -17161,27 +17254,27 @@ msgstr "" msgid "Not in Developer Mode" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17216,7 +17309,7 @@ msgstr "" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17240,10 +17333,9 @@ msgstr "" msgid "Nothing left to undo" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "" @@ -17289,15 +17381,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17348,7 +17440,7 @@ msgstr "" msgid "Notify users with a popup when they log in" msgstr "" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "" @@ -17406,12 +17498,12 @@ msgstr "" msgid "Number of Queries" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17520,11 +17612,11 @@ msgstr "" msgid "OTP Issuer Name" msgstr "" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "" @@ -17643,7 +17735,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "" @@ -17683,7 +17775,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "" @@ -17728,7 +17820,7 @@ msgstr "" msgid "Only Allow Edit For" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "" @@ -17745,7 +17837,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "" @@ -17764,19 +17856,19 @@ msgstr "" msgid "Only one {0} can be set as primary." msgstr "" -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17846,7 +17938,7 @@ msgstr "" msgid "Open Settings" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "" @@ -17864,7 +17956,7 @@ msgstr "" msgid "Open a module or tool" msgstr "" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "" @@ -17872,7 +17964,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17887,13 +17979,13 @@ msgstr "" #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "" @@ -17902,6 +17994,10 @@ msgstr "" msgid "OpenID Configuration" msgstr "" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" @@ -17917,7 +18013,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "" @@ -17943,7 +18039,7 @@ msgstr "" msgid "Option 3" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "" @@ -17963,6 +18059,7 @@ msgstr "" #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -17971,11 +18068,12 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "" @@ -17984,7 +18082,7 @@ msgstr "" msgid "Options Help" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "" @@ -17992,7 +18090,7 @@ msgstr "" msgid "Options for select. Each option on a new line." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 msgid "Options for {0} must be set before setting the default value." msgstr "" @@ -18000,7 +18098,7 @@ msgstr "" msgid "Options is required for field {0} of type {1}" msgstr "" -#: frappe/model/base_document.py:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "" @@ -18016,7 +18114,7 @@ msgstr "" msgid "Order" msgstr "" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18032,12 +18130,12 @@ msgstr "" msgid "Org History Heading" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "" @@ -18105,10 +18203,6 @@ msgstr "" msgid "Overview" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" @@ -18116,9 +18210,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:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18159,11 +18253,11 @@ msgstr "" msgid "PDF generation failed because of broken image links" msgstr "" -#: frappe/printing/page/print/print.js:616 +#: frappe/printing/page/print/print.js:656 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:574 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18335,7 +18429,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:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "" @@ -18362,7 +18456,7 @@ msgstr "" msgid "Parent Document Type" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "" @@ -18379,11 +18473,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:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "" @@ -18392,7 +18486,7 @@ msgstr "" msgid "Parent Label" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 msgid "Parent Missing" msgstr "" @@ -18466,8 +18560,8 @@ msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18477,7 +18571,7 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "" @@ -18490,7 +18584,7 @@ msgstr "" msgid "Password Reset Link Generation Limit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18507,6 +18601,10 @@ msgstr "" msgid "Password is required or select Awaiting Password" msgstr "" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "" @@ -18515,7 +18613,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18523,11 +18621,11 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." msgstr "" @@ -18535,7 +18633,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "" @@ -18605,10 +18703,12 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "" @@ -18684,7 +18784,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "" @@ -18744,16 +18844,16 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: frappe/core/page/permission_manager/permission_manager.js:221 #: frappe/core/workspace/users/users.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Permissions" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "" @@ -18815,15 +18915,18 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -18836,13 +18939,13 @@ msgstr "" msgid "Phone No." msgstr "" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "" @@ -18902,11 +19005,11 @@ msgstr "" msgid "Please Set Chart" msgstr "" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "" @@ -18914,7 +19017,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18922,11 +19025,11 @@ msgstr "" msgid "Please attach a file first." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 msgid "Please attach an image file to set HTML for Footer." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "" @@ -18934,19 +19037,15 @@ msgstr "" msgid "Please attach the package" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "" - #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "" -#: frappe/model/base_document.py:951 +#: frappe/model/base_document.py:1008 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "" @@ -18978,11 +19077,11 @@ msgstr "" msgid "Please confirm your action to {0} this document." msgstr "" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "" @@ -18998,20 +19097,20 @@ msgstr "" msgid "Please do not change the template headings." msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "" @@ -19048,7 +19147,7 @@ msgstr "" msgid "Please enter Client Secret before social login is enabled" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "" @@ -19085,11 +19184,12 @@ msgstr "" msgid "Please enter your old password." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "" @@ -19097,11 +19197,11 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "" -#: frappe/model/document.py:988 +#: frappe/model/document.py:992 msgid "Please refresh to get the latest document." msgstr "" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:575 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19117,7 +19217,7 @@ msgstr "" msgid "Please save the document before removing assignment" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "" @@ -19125,7 +19225,7 @@ msgstr "" msgid "Please save to edit the template." msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "" @@ -19133,19 +19233,19 @@ msgstr "" msgid "Please select Entity Type first" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "" @@ -19153,7 +19253,7 @@ msgstr "" msgid "Please select a file or url" msgstr "" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" msgstr "" @@ -19165,7 +19265,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19191,11 +19291,11 @@ msgstr "" msgid "Please set Email Address" msgstr "" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:589 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "" @@ -19203,7 +19303,7 @@ msgstr "" msgid "Please set filters value in Report Filter table." msgstr "" -#: frappe/model/naming.py:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "" @@ -19215,7 +19315,7 @@ msgstr "" msgid "Please set the series to be used." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -19239,23 +19339,23 @@ msgstr "" msgid "Please specify a valid parent DocType for {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "" @@ -19276,7 +19376,7 @@ msgstr "" msgid "Please use following links to download file backup." msgstr "" -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" @@ -19330,7 +19430,7 @@ msgstr "" msgid "Portal Settings" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "" @@ -19358,6 +19458,7 @@ msgstr "" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "" @@ -19366,15 +19467,7 @@ msgstr "" msgid "Posting Timestamp" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19389,7 +19482,11 @@ msgstr "" msgid "Precision" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "" @@ -19437,7 +19534,7 @@ msgstr "" msgid "Prepared Report User" msgstr "" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "" @@ -19445,7 +19542,7 @@ msgstr "" msgid "Preparing Report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "" @@ -19466,7 +19563,7 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19480,13 +19577,6 @@ msgstr "" msgid "Preview HTML" msgstr "" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19515,7 +19605,7 @@ msgid "Preview:" msgstr "" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19527,12 +19617,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "" @@ -19578,19 +19663,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:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19608,8 +19693,8 @@ 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:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19660,7 +19745,7 @@ msgstr "" msgid "Print Format Type" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19699,7 +19784,7 @@ msgstr "" msgid "Print Language" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "" @@ -19716,8 +19801,8 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "" @@ -19765,11 +19850,11 @@ msgstr "" msgid "Print with letterhead" msgstr "" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "" @@ -19779,11 +19864,11 @@ msgstr "" msgid "Printer Name" msgstr "" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "" @@ -19841,7 +19926,7 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "" @@ -19862,18 +19947,28 @@ msgstr "" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Profil byl úspěšně aktualizován." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: 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:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: 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/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "" @@ -19910,7 +20005,7 @@ msgstr "" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -19959,24 +20054,18 @@ msgstr "" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -19986,15 +20075,6 @@ msgstr "" msgid "Published" msgstr "" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json @@ -20084,7 +20164,9 @@ msgid "Put on Hold" msgstr "" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "" @@ -20096,8 +20178,8 @@ msgstr "" msgid "QR Code for Login Verification" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' @@ -20147,7 +20229,7 @@ msgstr "" msgid "Query analysis complete. Check suggested indexes." msgstr "" -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "" @@ -20247,7 +20329,7 @@ msgstr "" msgid "Quick Lists" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20284,12 +20366,6 @@ msgstr "" msgid "Rate Limiting" msgstr "" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20309,7 +20385,7 @@ msgstr "" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "" @@ -20326,7 +20402,7 @@ msgstr "" msgid "Raw Printing" msgstr "" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "" @@ -20343,8 +20419,8 @@ msgid "Re:" msgstr "" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "" @@ -20400,11 +20476,6 @@ msgstr "" msgid "Read Only Mode" msgstr "" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20420,7 +20491,7 @@ msgstr "" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "" @@ -20440,11 +20511,11 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20482,7 +20553,7 @@ msgstr "" msgid "Recent years are easy to guess." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "" @@ -20493,6 +20564,14 @@ msgstr "" msgid "Recipient" msgstr "" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20525,7 +20604,7 @@ msgstr "" msgid "Records for following doctypes will be filtered" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "" @@ -20542,6 +20621,11 @@ msgstr "" msgid "Redirect HTTP Status" msgstr "" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20636,6 +20720,11 @@ msgstr "" msgid "Reference Datetime" msgstr "" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20663,7 +20752,6 @@ msgstr "" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20704,9 +20792,9 @@ msgstr "" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20724,9 +20812,9 @@ msgstr "" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20756,7 +20844,6 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -20804,15 +20891,15 @@ msgstr "" msgid "Referrer" msgstr "" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "" @@ -20826,6 +20913,10 @@ msgstr "" msgid "Refresh Google Sheet" msgstr "" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -20837,18 +20928,18 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "" @@ -21025,7 +21116,7 @@ msgstr "" msgid "Rename {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "" @@ -21156,9 +21247,9 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "" @@ -21228,11 +21319,11 @@ 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:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "" @@ -21266,21 +21357,21 @@ msgstr "" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 msgid "Report cannot be set for Single types" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 -#: frappe/desk/doctype/number_card/number_card.js:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21292,24 +21383,24 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "" @@ -21317,7 +21408,7 @@ msgstr "" msgid "Report {0} is disabled" msgstr "" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "" @@ -21328,7 +21419,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:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "" @@ -21336,7 +21427,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "" @@ -21355,7 +21446,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "" @@ -21407,6 +21501,11 @@ msgstr "" msgid "Request URL" msgstr "" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21458,11 +21557,11 @@ msgstr "" msgid "Reset Dashboard Customizations" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "" @@ -21470,11 +21569,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21509,7 +21608,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21547,6 +21646,7 @@ msgid "Resource TOS URI" msgstr "" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21556,11 +21656,6 @@ msgstr "" msgid "Response" msgstr "" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "" - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21619,7 +21714,7 @@ msgstr "" msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "" @@ -21653,7 +21748,7 @@ msgstr "" msgid "Reverse Icon Color" msgstr "" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "" @@ -21671,9 +21766,7 @@ msgstr "" msgid "Revoked" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21714,6 +21807,7 @@ msgstr "" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21727,6 +21821,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21765,7 +21860,7 @@ msgstr "" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "" @@ -21775,7 +21870,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21818,6 +21913,7 @@ msgstr "" #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -21827,6 +21923,7 @@ msgstr "" #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -21863,7 +21960,7 @@ msgstr "" msgid "Roles can be set for users from their User page." msgstr "" -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "" @@ -21883,8 +21980,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -21896,8 +21991,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -21922,24 +22015,24 @@ msgstr "" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "" @@ -21948,11 +22041,6 @@ msgstr "" msgid "Row Format" msgstr "" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "" - #. Label of the row_indexes (Code) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Row Indexes" @@ -21967,7 +22055,7 @@ msgstr "" msgid "Row Number" msgstr "" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "" @@ -21975,30 +22063,33 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Added" msgstr "" #. Label of the rows_removed_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22089,7 +22180,7 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "" @@ -22167,7 +22258,7 @@ msgstr "" msgid "Salutation" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "" @@ -22195,20 +22286,20 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22217,16 +22308,12 @@ msgstr "" msgid "Save" msgstr "" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "" @@ -22234,11 +22321,11 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "" @@ -22263,7 +22350,7 @@ msgstr "" msgid "Saved Filters" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22342,7 +22429,7 @@ msgstr "" msgid "Scheduled Jobs Logs" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "" @@ -22365,7 +22452,7 @@ msgstr "" msgid "Scheduler Event" msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "" @@ -22378,7 +22465,7 @@ msgstr "" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "" @@ -22510,7 +22597,7 @@ msgstr "" msgid "Search by filename or extension" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "" @@ -22610,7 +22697,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "" @@ -22619,7 +22706,7 @@ msgstr "" msgid "See on Website" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "" @@ -22666,7 +22753,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/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22674,28 +22761,28 @@ msgstr "" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 msgid "Select Column" msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "" @@ -22754,12 +22841,15 @@ msgstr "" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "" @@ -22772,7 +22862,7 @@ msgstr "" msgid "Select Filters" msgstr "" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "" @@ -22805,8 +22895,8 @@ msgstr "" msgid "Select Module" msgstr "" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "" @@ -22871,14 +22961,14 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." +msgid "Select a group {0} first." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 msgid "Select a valid Subject field for creating documents from Email" msgstr "" @@ -22908,13 +22998,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22948,7 +23038,7 @@ msgstr "" msgid "Select {0}" msgstr "" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "" @@ -23132,7 +23222,7 @@ msgstr "" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "" @@ -23226,7 +23316,7 @@ msgstr "" msgid "Series counter for {} updated to {} successfully" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "" @@ -23236,7 +23326,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23255,7 +23345,7 @@ msgstr "" msgid "Server Script" msgstr "" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23302,7 +23392,7 @@ msgstr "" msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "" @@ -23311,14 +23401,14 @@ msgstr "" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "" @@ -23344,12 +23434,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23360,7 +23450,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23414,7 +23504,7 @@ msgstr "" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23424,16 +23514,16 @@ msgstr "" msgid "Set Value" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "" @@ -23452,18 +23542,21 @@ msgstr "" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "" -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23555,14 +23648,9 @@ msgstr "" msgid "Settings for the About Us Page" msgstr "" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "" @@ -23578,8 +23666,8 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "" @@ -23648,11 +23736,6 @@ msgstr "" msgid "Shop" msgstr "" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "" @@ -23672,11 +23755,6 @@ msgstr "" msgid "Show" msgstr "" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23729,7 +23807,13 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23857,7 +23941,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "" @@ -23874,7 +23958,7 @@ msgstr "" msgid "Show Title in Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "" @@ -23914,10 +23998,6 @@ msgstr "" msgid "Show all activity" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "" - #. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" @@ -23966,8 +24046,8 @@ msgstr "" msgid "Show list" msgstr "" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "" @@ -23996,7 +24076,7 @@ msgstr "" msgid "Show {0} List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "" @@ -24031,7 +24111,7 @@ msgstr "" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "" @@ -24068,22 +24148,22 @@ msgstr "" msgid "Signups have been disabled for this website." msgstr "" -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" msgstr "" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" msgstr "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' @@ -24091,13 +24171,13 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "" #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "" @@ -24105,7 +24185,7 @@ msgstr "" msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "" -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "" @@ -24324,11 +24404,11 @@ msgstr "" msgid "Something went wrong." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 msgid "Sorry! I could not find what you were looking for." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "" @@ -24359,20 +24439,23 @@ msgstr "" msgid "Sort Order" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 msgid "Sort field {0} must be a valid fieldname" msgstr "" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' -#: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24399,6 +24482,12 @@ msgstr "" msgid "SparkPost" msgstr "" +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "" @@ -24423,8 +24512,8 @@ msgstr "" msgid "Splash Image" msgstr "" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -24456,11 +24545,11 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "" @@ -24472,7 +24561,7 @@ msgstr "" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "" @@ -24480,11 +24569,11 @@ msgstr "" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "" -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "" @@ -24516,8 +24605,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:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "" @@ -24525,7 +24614,7 @@ msgstr "" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24590,6 +24679,7 @@ msgstr "" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24598,7 +24688,7 @@ msgstr "" msgid "State" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "" @@ -24654,6 +24744,7 @@ msgstr "" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24678,6 +24769,7 @@ msgstr "" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24685,8 +24777,8 @@ msgstr "" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24723,7 +24815,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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24753,6 +24845,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +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." @@ -24831,7 +24927,7 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -24847,7 +24943,7 @@ msgstr "" msgid "Subject Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "" @@ -24861,6 +24957,7 @@ msgstr "" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24869,10 +24966,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24882,7 +24980,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24906,7 +25004,7 @@ msgstr "" msgid "Submit an Issue" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "" @@ -24918,7 +25016,7 @@ msgstr "" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "" @@ -24930,7 +25028,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24939,11 +25037,11 @@ msgstr "" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "" @@ -24966,9 +25064,7 @@ msgid "Subsidiary" msgstr "" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "" @@ -24982,7 +25078,7 @@ msgstr "" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25024,20 +25120,16 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "" - #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" msgstr "" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "" @@ -25079,7 +25171,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "" @@ -25201,7 +25293,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25324,6 +25416,7 @@ msgstr "" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25406,6 +25499,7 @@ msgstr "" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" msgstr "" @@ -25479,7 +25573,7 @@ msgstr "" msgid "Table Break" msgstr "" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "" @@ -25488,7 +25582,7 @@ msgstr "" msgid "Table Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "" @@ -25510,11 +25604,11 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 msgid "Table {0} cannot be empty" msgstr "" @@ -25556,11 +25650,18 @@ msgstr "" msgid "Target" msgstr "" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "Úkoly" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25622,7 +25723,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "" @@ -25694,7 +25795,7 @@ msgid "Thank you for reaching out to us. We will get back to you at the earliest "{0}" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "" @@ -25718,7 +25819,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "" @@ -25729,15 +25830,15 @@ msgid "The Client ID obtained from the Google Cloud Console under " msgstr "" -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." msgstr "" @@ -25778,7 +25879,7 @@ msgstr "" msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "" -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "" @@ -25786,7 +25887,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:658 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25816,7 +25917,7 @@ msgstr "" msgid "The field {0} is mandatory" msgstr "" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "" @@ -25886,15 +25987,19 @@ msgid "The project number obtained from Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

Click here to download:
{0}

This link will expire in {1} hours." +msgstr "" + +#: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:995 +#: frappe/core/doctype/user/user.py:1002 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25906,7 +26011,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:338 +#: frappe/utils/response.py:336 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25927,7 +26032,7 @@ msgstr "" msgid "The webhook will be triggered if this expression is true" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "" @@ -25967,16 +26072,16 @@ 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:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "" @@ -25988,15 +26093,19 @@ msgstr "" msgid "There is no data to be exported" msgstr "" +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26008,7 +26117,7 @@ msgstr "" msgid "There was an error building this page" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "" @@ -26020,11 +26129,11 @@ msgstr "" msgid "There were errors while creating the document. Please try again." msgstr "" -#: frappe/public/js/frappe/views/communication.js:840 +#: frappe/public/js/frappe/views/communication.js:843 msgid "There were errors while sending email. Please try again." msgstr "" -#: frappe/model/naming.py:494 +#: frappe/model/naming.py:502 msgid "There were some errors setting the name, please contact the administrator" msgstr "" @@ -26065,7 +26174,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "" @@ -26073,6 +26182,10 @@ msgstr "" msgid "This Month" msgstr "" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "" @@ -26098,6 +26211,11 @@ msgstr "" msgid "This cannot be undone" msgstr "" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +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" @@ -26112,11 +26230,11 @@ msgstr "" msgid "This doctype has no orphan fields to trim" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26158,7 +26276,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26174,7 +26292,7 @@ msgstr "" msgid "This form has been modified after you have loaded it" msgstr "" -#: frappe/public/js/frappe/form/form.js:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "" @@ -26193,7 +26311,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26217,12 +26335,6 @@ msgstr "" msgid "This is an automatically generated reply" msgstr "" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "" - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "" @@ -26241,7 +26353,7 @@ msgstr "" msgid "This link is invalid or expired. Please make sure you have pasted correctly." msgstr "" -#: frappe/printing/page/print/print.js:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "" @@ -26249,7 +26361,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26257,7 +26369,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "" @@ -26288,7 +26400,7 @@ msgstr "" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " +msgid "This value specifies the max number of rows that can be rendered in report view." msgstr "" #: frappe/website/doctype/web_page/web_page.js:85 @@ -26320,10 +26432,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " +msgid "This will terminate the job immediately and might be dangerous, are you sure?" msgstr "" -#: frappe/core/doctype/user/user.py:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "" @@ -26399,9 +26511,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26472,11 +26586,11 @@ msgstr "" msgid "Timeline Name" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 msgid "Timeline field must be a Link or Dynamic Link" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "" @@ -26502,10 +26616,7 @@ msgid "Timespan" msgstr "" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "" @@ -26525,9 +26636,6 @@ msgstr "" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26552,9 +26660,6 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26577,7 +26682,7 @@ msgstr "" msgid "Title Prefix" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "" @@ -26671,7 +26776,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "" @@ -26726,7 +26831,7 @@ msgstr "" msgid "Today" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "" @@ -26742,11 +26847,11 @@ msgstr "" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26792,7 +26897,7 @@ msgid "Tomorrow" msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "" @@ -26808,7 +26913,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26870,10 +26975,10 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -26916,18 +27021,18 @@ msgstr "" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " +msgid "Total number of emails to sync in initial sync process" msgstr "" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "" @@ -26993,26 +27098,10 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "" @@ -27026,6 +27115,11 @@ msgstr "" msgid "Transition Rules" msgstr "" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" @@ -27040,7 +27134,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27051,7 +27145,7 @@ msgstr "" msgid "Translate Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "" @@ -27135,8 +27229,8 @@ msgstr "" msgid "Try a Naming Series" msgstr "" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "" @@ -27202,7 +27296,7 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27295,7 +27389,7 @@ msgstr "" msgid "URL for documentation or help" msgstr "" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "" @@ -27398,7 +27492,7 @@ msgstr "" msgid "Unable to update event" msgstr "" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "" @@ -27407,7 +27501,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27423,7 +27517,7 @@ msgstr "" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27470,7 +27564,7 @@ msgstr "" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "" @@ -27482,8 +27576,7 @@ msgstr "" msgid "Unlock Reference Document" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "" @@ -27499,7 +27592,7 @@ msgstr "" msgid "Unread Notification Sent" msgstr "" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "" @@ -27537,8 +27630,8 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27558,7 +27651,7 @@ msgstr "" msgid "Unzipping files..." msgstr "" -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "" @@ -27572,7 +27665,7 @@ msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "" @@ -27606,6 +27699,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27648,7 +27746,7 @@ msgstr "" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "" @@ -27656,7 +27754,7 @@ msgstr "" msgid "Updated Successfully" msgstr "" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "" @@ -27664,7 +27762,7 @@ msgstr "" msgid "Updated successfully" msgstr "" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "" @@ -27709,8 +27807,8 @@ msgstr "" msgid "Upgrade your support experience with Frappe Helpdesk" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27720,11 +27818,11 @@ msgstr "" msgid "Upload Image" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "" @@ -27821,15 +27919,11 @@ msgstr "" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "" -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "" @@ -27850,7 +27944,9 @@ msgid "Used OAuth" msgstr "" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -27859,6 +27955,7 @@ msgstr "" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -27873,11 +27970,12 @@ msgstr "" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -27886,6 +27984,7 @@ msgstr "" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -27902,17 +28001,11 @@ msgstr "" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "" - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "" @@ -27942,7 +28035,7 @@ msgstr "" msgid "User Cannot Search" msgstr "" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "" @@ -28006,11 +28099,6 @@ msgstr "" msgid "User ID Property" msgstr "" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28030,6 +28118,11 @@ msgstr "" msgid "User Image" msgstr "" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "" @@ -28048,12 +28141,12 @@ msgstr "" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28066,7 +28159,9 @@ msgstr "" msgid "User Permissions created successfully" msgstr "" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "" @@ -28132,6 +28227,10 @@ msgstr "" msgid "User does not have permission to create the new {0}" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "" @@ -28162,7 +28261,7 @@ msgstr "" msgid "User {0} cannot be disabled" msgstr "" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "" @@ -28183,7 +28282,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "" @@ -28191,7 +28290,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28212,7 +28311,7 @@ msgstr "" msgid "Username" msgstr "" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "" @@ -28296,7 +28395,7 @@ msgstr "" msgid "Validate SSL Certificate" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "" @@ -28319,8 +28418,8 @@ msgstr "" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28352,7 +28451,7 @@ msgstr "" msgid "Value To Be Set" msgstr "" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "" @@ -28368,11 +28467,11 @@ msgstr "" msgid "Value for a check field can be either 0 or 1" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" -#: frappe/model/base_document.py:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "" @@ -28397,7 +28496,7 @@ msgstr "" msgid "Value to Validate" msgstr "" -#: frappe/model/base_document.py:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "" @@ -28414,7 +28513,7 @@ msgstr "" msgid "Value {0} must in {1} format" msgstr "" -#: frappe/core/doctype/version/version_view.html:8 +#: frappe/core/doctype/version/version_view.html:9 msgid "Values Changed" msgstr "" @@ -28427,7 +28526,7 @@ msgstr "" msgid "Verification" msgstr "" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "" @@ -28489,15 +28588,7 @@ msgstr "" msgid "View Audit Trail" msgstr "" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" @@ -28509,7 +28600,7 @@ msgstr "" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "" @@ -28519,7 +28610,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28566,7 +28657,7 @@ msgstr "" msgid "View this in your browser" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "" @@ -28635,6 +28726,7 @@ msgid "Warehouse" msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "" @@ -28643,7 +28735,7 @@ msgstr "" msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "" @@ -28729,7 +28821,7 @@ msgstr "" msgid "Web Page Block" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "" @@ -28832,7 +28924,7 @@ msgstr "" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "" @@ -28845,10 +28937,6 @@ msgstr "" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -28892,7 +28980,7 @@ msgstr "" msgid "Website Search Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "" @@ -29109,11 +29197,6 @@ msgstr "" msgid "Will add \"%\" before and after the query" msgstr "" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "" - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "" @@ -29128,7 +29211,7 @@ msgstr "" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "" @@ -29206,7 +29289,7 @@ msgstr "" msgid "Workflow Data" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "" @@ -29232,11 +29315,11 @@ msgstr "" msgid "Workflow State Field" msgstr "" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "" @@ -29244,15 +29327,30 @@ msgstr "" msgid "Workflow States Don't Exist" msgstr "" -#: frappe/model/workflow.py:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29268,13 +29366,13 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29344,11 +29442,11 @@ msgstr "" msgid "Workspaces" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "" @@ -29367,11 +29465,11 @@ msgstr "" msgid "Write" msgstr "" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "" @@ -29390,13 +29488,13 @@ msgstr "" msgid "Y Axis" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" msgstr "" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "" @@ -29448,16 +29546,17 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29485,6 +29584,18 @@ msgstr "" msgid "You Liked" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "" @@ -29523,20 +29634,20 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29560,7 +29671,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:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29586,13 +29697,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " +msgid "You can also copy-paste this" msgstr "" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "" +#: frappe/templates/emails/user_invitation_expired.html:8 +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 "" @@ -29605,11 +29720,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29629,7 +29744,7 @@ msgstr "" msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "" -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "" @@ -29647,7 +29762,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "" @@ -29659,11 +29774,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29681,7 +29796,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:385 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29711,7 +29826,7 @@ msgstr "" msgid "You created this" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "" @@ -29724,15 +29839,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29744,11 +29859,11 @@ msgstr "" msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "" @@ -29756,19 +29871,19 @@ msgstr "" msgid "You don't have permission to get a report on: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " +msgid "You have a new message from:" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29776,11 +29891,7 @@ msgstr "" msgid "You have not entered a value. The field will be set to empty." msgstr "" -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "" @@ -29800,7 +29911,7 @@ msgstr "" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29817,11 +29928,11 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "" @@ -29845,7 +29956,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "" @@ -29853,12 +29964,12 @@ msgstr "" msgid "You need to be logged in to access this page" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "" #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " +msgid "You need to create these first:" msgstr "" #: frappe/www/login.html:76 @@ -29893,11 +30004,19 @@ msgstr "" msgid "You need {0} permission to fetch values from {1} {2}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "" @@ -29928,10 +30047,26 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "" @@ -29961,7 +30096,7 @@ msgstr "" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "" @@ -29985,10 +30120,22 @@ msgstr "" msgid "Your email address" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "" @@ -30011,7 +30158,11 @@ msgstr "" msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "" -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "" @@ -30033,7 +30184,7 @@ msgstr "" msgid "Zero means send records updated at anytime" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" msgstr "" @@ -30055,10 +30206,6 @@ msgstr "" msgid "`job_id` paramater is required for deduplication." msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30093,7 +30240,7 @@ msgstr "" msgid "cProfile Output" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "" @@ -30238,12 +30385,12 @@ msgstr "" msgid "email" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "" @@ -30300,7 +30447,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "" @@ -30315,11 +30462,6 @@ msgstr "" msgid "import" msgstr "" -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "" - #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "" @@ -30328,7 +30470,7 @@ msgstr "" msgid "just now" msgstr "" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "" @@ -30357,7 +30499,7 @@ msgstr "" msgid "logged in" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30378,11 +30520,6 @@ msgstr "" msgid "merged {0} into {1}" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "" - #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json @@ -30406,7 +30543,7 @@ msgstr "" msgid "module name..." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "" @@ -30535,10 +30672,6 @@ msgstr "" msgid "red" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "" @@ -30594,19 +30727,19 @@ msgstr "" msgid "short" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "" @@ -30659,6 +30792,10 @@ msgstr "" msgid "this shouldn't break" msgstr "" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30686,7 +30823,7 @@ msgstr "" msgid "via Assignment Rule" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "" @@ -30700,7 +30837,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "" @@ -30733,10 +30870,15 @@ msgstr "" msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "" +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json @@ -30764,11 +30906,11 @@ msgstr "" msgid "{0}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "" @@ -30794,19 +30936,19 @@ msgstr "" msgid "{0} Calendar" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "" @@ -30830,6 +30972,10 @@ msgstr "" msgid "{0} List" msgstr "" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "" @@ -30842,7 +30988,7 @@ msgstr "" msgid "{0} Name" msgstr "" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "" @@ -30852,11 +30998,10 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "" @@ -30881,7 +31026,15 @@ msgstr "" msgid "{0} added" msgstr "" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "" @@ -30893,7 +31046,7 @@ msgstr "" msgid "{0} already unsubscribed for {1} {2}" msgstr "" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "" @@ -30901,7 +31054,7 @@ msgstr "" msgid "{0} are currently {1}" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "" @@ -30918,7 +31071,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -30960,11 +31113,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." msgstr "" @@ -30977,7 +31126,7 @@ msgstr "" msgid "{0} created this" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "" @@ -30999,7 +31148,7 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31031,7 +31180,7 @@ msgstr "" msgid "{0} hours ago" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "" @@ -31040,23 +31189,23 @@ msgstr "" msgid "{0} in row {1} cannot have both URL and child items" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "" @@ -31065,27 +31214,27 @@ msgstr "" msgid "{0} is currently {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "" @@ -31093,7 +31242,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31113,12 +31262,12 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "" @@ -31126,15 +31275,15 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "" @@ -31150,55 +31299,59 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 -#: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: 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/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31231,35 +31384,35 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "" @@ -31267,7 +31420,7 @@ msgstr "" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "" @@ -31280,11 +31433,11 @@ msgid "{0} not found" msgstr "" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31293,7 +31446,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "" @@ -31317,6 +31470,10 @@ msgstr "" msgid "{0} records will be exported" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31326,15 +31483,29 @@ msgstr "" msgid "{0} removed their assignment." msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "" @@ -31354,11 +31525,11 @@ msgstr "" msgid "{0} shared this document with {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "" @@ -31371,8 +31542,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "" @@ -31382,7 +31553,7 @@ msgstr "" #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "" @@ -31390,7 +31561,7 @@ msgstr "" msgid "{0} un-shared this document with {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "" @@ -31426,15 +31597,15 @@ msgstr "" msgid "{0} {1} added to Dashboard {2}" msgstr "" -#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "" @@ -31450,11 +31621,11 @@ msgstr "" msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" -#: frappe/model/base_document.py:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "" @@ -31462,79 +31633,79 @@ msgstr "" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "" -#: frappe/model/base_document.py:1120 +#: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 msgid "{0}: Cannot set import as {1} is not importable" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 +#: 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:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "" @@ -31542,7 +31713,7 @@ msgstr "" msgid "{0}: Other permission rules may also apply" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "" @@ -31550,7 +31721,7 @@ msgstr "" msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "" @@ -31563,11 +31734,11 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "" @@ -31591,7 +31762,7 @@ msgstr "" msgid "{count} rows selected" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "" @@ -31599,11 +31770,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31629,7 +31800,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/da.po b/frappe/locale/da.po new file mode 100644 index 0000000000..3dcd25c897 --- /dev/null +++ b/frappe/locale/da.po @@ -0,0 +1,31822 @@ +msgid "" +msgstr "" +"Project-Id-Version: frappe\n" +"Report-Msgid-Bugs-To: developers@frappe.io\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" +"Last-Translator: developers@frappe.io\n" +"Language-Team: Danish\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.16.0\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project-ID: 639578\n" +"X-Crowdin-Language: da\n" +"X-Crowdin-File: /[frappe.frappe] develop/frappe/locale/main.pot\n" +"X-Crowdin-File-ID: 52\n" +"Language: da_DK\n" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "!=" +msgstr "!=" + +#. Description of the 'Org History Heading' (Data) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "\"Company History\"" +msgstr "\"Selskabshistorik\"" + +#: frappe/core/doctype/data_export/exporter.py:202 +msgid "\"Parent\" signifies the parent table in which this row must be added" +msgstr "" + +#. Description of the 'Team Members Heading' (Data) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "\"Team Members\" or \"Management\"" +msgstr "\"Teammedlemmer\" eller \"Ledelse\"" + +#: frappe/public/js/frappe/form/form.js:1090 +msgid "\"amended_from\" field must be present to do an amendment." +msgstr "" + +#: frappe/utils/csvutils.py:246 +msgid "\"{0}\" is not a valid Google Sheets URL" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:21 +#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:22 +msgid "#{0}" +msgstr "#{0}" + +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:36 +msgid "${values.doctype_name} has been added to queue for optimization" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "© Frappe Technologies Pvt. Ltd. and contributors" +msgstr "" + +#. Label of the head_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "<head> HTML" +msgstr "" + +#: frappe/public/js/form_builder/store.js:206 +msgid "'In Global Search' is not allowed for field {0} of type {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1355 +msgid "'In Global Search' not allowed for type {0} in row {1}" +msgstr "" + +#: frappe/public/js/form_builder/store.js:198 +msgid "'In List View' is not allowed for field {0} of type {1}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:367 +msgid "'In List View' not allowed for type {0} in row {1}" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 +msgid "'Recipients' not specified" +msgstr "" + +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "" + +#: frappe/utils/__init__.py:261 +msgid "'{0}' is not a valid URL" +msgstr "'{0}' er ikke gyldig URL" + +#: frappe/core/doctype/doctype/doctype.py:1349 +msgid "'{0}' not allowed for type {1} in row {2}" +msgstr "'{0}' ikke tilladt for type {1} i række {2}" + +#: frappe/public/js/frappe/data_import/data_exporter.js:302 +msgid "(Mandatory)" +msgstr "(Obligatorisk)" + +#: frappe/model/rename_doc.py:703 +msgid "** Failed: {0} to {1}: {2}" +msgstr "** Fejlede: {0} til {1}: {2}" + +#: frappe/public/js/frappe/list/list_settings.js:133 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 +msgid "+ Add / Remove Fields" +msgstr "+ Tilføj / Fjern Felter" + +#. Description of the 'Doc Status' (Select) field in DocType 'Workflow Document +#. State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "0 - Draft; 1 - Submitted; 2 - Cancelled" +msgstr "0 - Udkast; 1 - Godkendt; 2 - Annulleret" + +#. Description of the 'Priority' (Int) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "0 is highest" +msgstr "0 er højest" + +#: frappe/public/js/frappe/form/grid_row.js:893 +msgid "1 = True & 0 = False" +msgstr "1 = Sandt & 0 = Falsk" + +#. Description of the 'Fraction Units' (Int) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "1 Currency = [?] Fraction\n" +"For e.g. 1 USD = 100 Cent" +msgstr "1 Valuta = [?] Brøkdel\n" +"F.eks. 1 USD = 100 Cent" + +#: frappe/public/js/frappe/form/reminders.js:19 +msgid "1 Day" +msgstr "1 Dag" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:374 +msgid "1 Google Calendar Event synced." +msgstr "1 Google Kalender Begivenhed synkroniseret." + +#: frappe/public/js/frappe/views/reports/query_report.js:963 +msgid "1 Report" +msgstr "1 Rapport" + +#: frappe/tests/test_utils.py:845 +msgid "1 day ago" +msgstr "1 dag siden" + +#: frappe/public/js/frappe/form/reminders.js:17 +msgid "1 hour" +msgstr "1 time" + +#: frappe/public/js/frappe/utils/pretty_date.js:52 +#: frappe/tests/test_utils.py:843 +msgid "1 hour ago" +msgstr "1 time siden" + +#: frappe/public/js/frappe/utils/pretty_date.js:48 +#: frappe/tests/test_utils.py:841 +msgid "1 minute ago" +msgstr "1 minut siden" + +#: frappe/public/js/frappe/utils/pretty_date.js:66 +#: frappe/tests/test_utils.py:849 +msgid "1 month ago" +msgstr "1 måned siden" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:3 +msgid "1 of 2" +msgstr "1 af 2" + +#: frappe/public/js/frappe/data_import/data_exporter.js:227 +msgid "1 record will be exported" +msgstr "1 post vil blive eksporteret" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "" + +#: frappe/tests/test_utils.py:840 +msgid "1 second ago" +msgstr "1 sekund siden" + +#: frappe/public/js/frappe/utils/pretty_date.js:62 +#: frappe/tests/test_utils.py:847 +msgid "1 week ago" +msgstr "1 uge siden" + +#: frappe/public/js/frappe/utils/pretty_date.js:70 +#: frappe/tests/test_utils.py:851 +msgid "1 year ago" +msgstr "1 år siden" + +#: frappe/tests/test_utils.py:844 +msgid "2 hours ago" +msgstr "2 timer siden" + +#: frappe/tests/test_utils.py:850 +msgid "2 months ago" +msgstr "2 måneder siden" + +#: frappe/tests/test_utils.py:848 +msgid "2 weeks ago" +msgstr "2 uger siden" + +#: frappe/tests/test_utils.py:852 +msgid "2 years ago" +msgstr "2 år siden" + +#: frappe/tests/test_utils.py:842 +msgid "3 minutes ago" +msgstr "3 minutter siden" + +#: frappe/public/js/frappe/form/reminders.js:16 +msgid "30 minutes" +msgstr "30 minutter" + +#: frappe/public/js/frappe/form/reminders.js:18 +msgid "4 hours" +msgstr "4 timer" + +#: frappe/public/js/frappe/data_import/data_exporter.js:37 +msgid "5 Records" +msgstr "5 Poster" + +#: frappe/tests/test_utils.py:846 +msgid "5 days ago" +msgstr "5 dage siden" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:36 +msgid "; not allowed in condition" +msgstr "; ikke tilladt i tilstand" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "<" +msgstr "<" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "<=" +msgstr "<=" + +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "\n" +" Klik her for at lære om tokenbaseret godkendelse\n" +"" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:601 +msgid "{0} is not a valid URL" +msgstr "{0} er ikke gyldig URL" + +#. Content of the 'Help' (HTML) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "
Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
" +msgstr "" + +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + +#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "
\n" +" Edit list of Series in the box. Rules:\n" +"
    \n" +"
  • Each Series Prefix on a new line.
  • \n" +"
  • Allowed special characters are \"/\" and \"-\"
  • \n" +"
  • \n" +" Optionally, set the number of digits in the series using dot (.)\n" +" followed by hashes (#). For example, \".####\" means that the series\n" +" will have four digits. Default is five digits.\n" +"
  • \n" +"
  • \n" +" You can also use variables in the series name by putting them\n" +" between (.) dots\n" +"
    \n" +" Supported Variables:\n" +"
      \n" +"
    • .YYYY. - Year in 4 digits
    • \n" +"
    • .YY. - Year in 2 digits
    • \n" +"
    • .MM. - Month
    • \n" +"
    • .DD. - Day of month
    • \n" +"
    • .WW. - Week of the year
    • \n" +"
    • \n" +" .{fieldname}. - fieldname on the document e.g.\n" +" branch\n" +"
    • \n" +"
    • .FY. - Fiscal Year (requires ERPNext to be installed)
    • \n" +"
    • .ABBR. - Company Abbreviation (requires ERPNext to be installed)
    • \n" +"
    \n" +"
  • \n" +"
\n" +" Examples:\n" +"
    \n" +"
  • INV-
  • \n" +"
  • INV-10-
  • \n" +"
  • INVK-
  • \n" +"
  • INV-.YYYY.-.{branch}.-.MM.-.####
  • \n" +"
\n" +"
\n" +"
\n" +msgstr "" + +#. Content of the 'Custom HTML Help' (HTML) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "

Custom CSS Help

\n\n" +"

Notes:

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

Examples

\n\n" +"

1. Left align integers

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

1. Add border to sections except the last section

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

Print Format Help

\n" +"
\n" +"

Introduction

\n" +"

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

\n" +"

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

\n" +"
\n" +"

References

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

Example

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

Common Functions

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

Default Template

\n" +"

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

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

Email Reply Example

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

How to get fieldnames

\n\n" +"

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

\n\n" +"

Templating

\n\n" +"

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

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

Condition Examples:

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

Condition Examples:

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

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

For Example:

\n" +"

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

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

Set context before rendering a template. Example:

\n" +"

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

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

For example:

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

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

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

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

\n" +"

Allowed functions:\n" +"

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

Example:

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

" +msgstr "" + +#. Header text in the Welcome Workspace Workspace +#: frappe/core/workspace/welcome_workspace/welcome_workspace.json +msgid "Hi," +msgstr "Hej," + +#: frappe/custom/doctype/custom_field/custom_field.js:39 +msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." +msgstr "" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "=" +msgstr "=" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid ">" +msgstr ">" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid ">=" +msgstr ">=" + +#: frappe/core/doctype/doctype/doctype.py:1035 +msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" +msgstr "" + +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:175 +msgid "A field with the name {0} already exists in {1}" +msgstr "Et felt med navnet {0} findes allerede i {1}" + +#: frappe/core/doctype/file/file.py:269 +msgid "A file with same name {} already exists" +msgstr "En fil med samme navn {} findes allerede" + +#. Description of the 'Scopes' (Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A list of resources which the Client App will have access to after the user allows it.
e.g. project" +msgstr "" + +#: frappe/templates/emails/new_user.html:5 +msgid "A new account has been created for you at {0}" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 +msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." +msgstr "" + +#. Description of the 'Symbol' (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "A symbol for this currency. For e.g. $" +msgstr "Symbol for denne valuta. F.eks. $" + +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:49 +msgid "A template already exists for field {0} of {1}" +msgstr "Skabelon eksisterer allerede for felt {0} af {1}" + +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
\n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "" + +#: frappe/utils/password_strength.py:169 +msgid "A word by itself is easy to guess." +msgstr "Et ord i sig selv er let at gætte." + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A0" +msgstr "A0" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A1" +msgstr "A1" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A2" +msgstr "A2" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A3" +msgstr "A3" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A4" +msgstr "A4" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A5" +msgstr "A5" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A6" +msgstr "A6" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A7" +msgstr "A7" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A8" +msgstr "A8" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A9" +msgstr "A9" + +#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "ALL" +msgstr "ALLE" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "API" +msgstr "API" + +#. Label of the api_access (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "API Access" +msgstr "API Adgang" + +#. 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 Slutpunkt" + +#. Label of the api_endpoint_args (Code) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "API Endpoint Args" +msgstr "API Slutpunkts Argumenter" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "" + +#. Label of the api_key (Data) field in DocType 'User' +#. Label of the api_key (Data) field in DocType 'Email Account' +#. Label of the api_key (Password) field in DocType 'Geolocation Settings' +#. Label of the api_key (Data) field in DocType 'Google Settings' +#. Label of the sb_01 (Section Break) field in DocType 'Google Settings' +#. Label of the api_key (Data) field in DocType 'Push Notification Settings' +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "API Key" +msgstr "API Nøgle" + +#. Description of the 'Authentication' (Section Break) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "API Key and Secret to interact with the relay server. These will be auto-generated when the first push notification is sent from any of the apps installed on this site." +msgstr "" + +#. Description of the 'API Key' (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "API Key cannot be regenerated" +msgstr "" + +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "API Nøgler" + +#. Label of the api_logging_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "API Logging" +msgstr "API Logning" + +#. Label of the api_method (Data) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "API Method" +msgstr "API Metode" + +#. Name of a DocType +#: frappe/core/doctype/api_request_log/api_request_log.json +msgid "API Request Log" +msgstr "API Anmodningslog" + +#. Label of the api_secret (Password) field in DocType 'User' +#. Label of the api_secret (Password) field in DocType 'Email Account' +#. Label of the api_secret (Password) field in DocType 'Push Notification +#. Settings' +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "API Secret" +msgstr "API Hemmelighed" + +#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType' +#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "ASC" +msgstr "ASC" + +#. Label of a standard help item +#. Type: Action +#: frappe/hooks.py +msgid "About" +msgstr "Om" + +#: frappe/www/about.html:11 frappe/www/about.html:18 +msgid "About Us" +msgstr "Om Os" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/website/workspace/website/website.json +msgid "About Us Settings" +msgstr "Om Os Indstillinger" + +#. Name of a DocType +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +msgid "About Us Team Member" +msgstr "Om Os Team Medlem" + +#: frappe/core/doctype/data_import/data_import.js:27 +msgid "About {0} minute remaining" +msgstr "Omkring {0} minut tilbage" + +#: frappe/core/doctype/data_import/data_import.js:28 +msgid "About {0} minutes remaining" +msgstr "Omkring {0} minutter tilbage" + +#: frappe/core/doctype/data_import/data_import.js:25 +msgid "About {0} seconds remaining" +msgstr "Omkring {0} sekunder tilbage" + +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "Accepter Invitation" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "Accepteret" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "Accepteret" + +#. Label of the access_control_section (Section Break) field in DocType 'Web +#. Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Access Control" +msgstr "Adgang Kontrol" + +#. Name of a DocType +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/workspace/users/users.json +msgid "Access Log" +msgstr "Adgang Log" + +#. Label of the access_token (Data) field in DocType 'OAuth Bearer Token' +#. Label of the access_token (Password) field in DocType 'Token Cache' +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Access Token" +msgstr "Adgang Token" + +#. Label of the access_token_url (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Access Token URL" +msgstr "Adgang Token URL" + +#: frappe/auth.py:494 +msgid "Access not allowed from this IP Address" +msgstr "Adgang ikke tilladt fra denne IP Adresse" + +#. Label of the account_section (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Account" +msgstr "Konto" + +#. Label of the account_deletion_settings_section (Section Break) field in +#. DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Account Deletion Settings" +msgstr "Konto Sletning Indstillinger" + +#. Name of a role +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Accounts Manager" +msgstr "Konti Administrator" + +#. Name of a role +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Accounts User" +msgstr "Konti Bruger" + +#: frappe/public/js/frappe/form/dashboard.js:510 +msgid "Accurate count can not be fetched, click here to view all documents" +msgstr "" + +#. Label of the action (Select) field in DocType 'Amended Document Naming +#. Settings' +#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' +#. Label of the action (Data) field in DocType 'Navbar Item' +#. Label of the action (Select) field in DocType 'Onboarding Step' +#. Label of the action (Select) field in DocType 'Email Flag Queue' +#. Label of the action (Link) field in DocType 'Workflow Transition' +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_group/email_group.js:34 +#: frappe/email/doctype/email_group/email_group.js:63 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +#: frappe/workflow/page/workflow_builder/workflow_builder.js:37 +msgid "Action" +msgstr "Handling" + +#. Label of the action (Small Text) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json +msgid "Action / Route" +msgstr "Handling / Rute" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:305 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:376 +msgid "Action Complete" +msgstr "Handling Fuldført" + +#: frappe/model/document.py:1888 +msgid "Action Failed" +msgstr "Handling Mislykkedes" + +#. Label of the action_label (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Action Label" +msgstr "Handling Etiket" + +#. Label of the action_timeout (Int) field in DocType 'Success Action' +#: frappe/core/doctype/success_action/success_action.json +msgid "Action Timeout (Seconds)" +msgstr "" + +#. Label of the action_type (Select) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json +msgid "Action Type" +msgstr "Handling Type" + +#: frappe/core/doctype/submission_queue/submission_queue.py:120 +msgid "Action {0} completed successfully on {1} {2}. View it {3}" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.py:116 +msgid "Action {0} failed on {1} {2}. View it {3}" +msgstr "" + +#. Label of the actions_section (Tab Break) field in DocType 'DocType' +#. Label of the actions (Table) field in DocType 'Customize Form' +#: frappe/core/doctype/communication/communication.js:66 +#: frappe/core/doctype/communication/communication.js:74 +#: frappe/core/doctype/communication/communication.js:82 +#: frappe/core/doctype/communication/communication.js:90 +#: frappe/core/doctype/communication/communication.js:99 +#: frappe/core/doctype/communication/communication.js:108 +#: frappe/core/doctype/communication/communication.js:131 +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/rq_job/rq_job_list.js:14 +#: frappe/core/doctype/rq_job/rq_job_list.js:39 +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:48 +#: frappe/custom/doctype/customize_form/customize_form.js:108 +#: frappe/custom/doctype/customize_form/customize_form.js:116 +#: frappe/custom/doctype/customize_form/customize_form.js:124 +#: frappe/custom/doctype/customize_form/customize_form.js:132 +#: frappe/custom/doctype/customize_form/customize_form.js:140 +#: frappe/custom/doctype/customize_form/customize_form.js:148 +#: frappe/custom/doctype/customize_form/customize_form.js:283 +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/public/js/frappe/ui/page.html:57 +#: frappe/public/js/frappe/views/reports/query_report.js: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:850 +msgid "Actions" +msgstr "Handlinger" + +#. Label of the activate (Check) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json +msgid "Activate" +msgstr "Aktivér" + +#. Option for the 'Status' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' +#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/recorder/recorder_list.js:207 +#: frappe/core/doctype/user/user_list.js:12 +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/workflow/doctype/workflow/workflow_list.js:5 +msgid "Active" +msgstr "Aktiv" + +#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Active Directory" +msgstr "Active Directory" + +#. Label of the active_domains_sb (Section Break) field in DocType 'Domain +#. Settings' +#. Label of the active_domains (Table) field in DocType 'Domain Settings' +#: frappe/core/doctype/domain_settings/domain_settings.json +msgid "Active Domains" +msgstr "Aktive Domæner" + +#. Label of the active_sessions (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/www/third_party_apps.html:34 +msgid "Active Sessions" +msgstr "Aktive Sessioner" + +#. Group in User's connections +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/form/dashboard.js:22 +#: frappe/public/js/frappe/form/footer/form_timeline.js:60 +msgid "Activity" +msgstr "Aktivitet" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/workspace/build/build.json +#: frappe/core/workspace/users/users.json +msgid "Activity Log" +msgstr "Aktivitet Log" + +#: frappe/core/page/permission_manager/permission_manager.js:482 +#: frappe/email/doctype/email_group/email_group.js:60 +#: frappe/public/js/frappe/form/grid_row.js:502 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:101 +#: frappe/public/js/frappe/form/templates/set_sharing.html:68 +#: frappe/public/js/frappe/list/bulk_operations.js:437 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 +#: frappe/public/js/frappe/widgets/widget_dialog.js:30 +msgid "Add" +msgstr "Tilføj" + +#: frappe/public/js/frappe/form/grid_row.js:455 +msgid "Add / Remove Columns" +msgstr "Tilføj / Fjern Kolonner" + +#: frappe/core/doctype/user_permission/user_permission_list.js:4 +msgid "Add / Update" +msgstr "Tilføj / Opdater" + +#: frappe/core/page/permission_manager/permission_manager.js:442 +msgid "Add A New Rule" +msgstr "Tilføj Ny Regel" + +#: frappe/public/js/frappe/views/communication.js:601 +#: frappe/public/js/frappe/views/interaction.js:159 +msgid "Add Attachment" +msgstr "Tilføj Vedhæftning" + +#. 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 "Tilføj Baggrunds Billede" + +#. 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 "Tilføj Kant Nederst" + +#. 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 "Tilføj Kant Øverst" + +#: frappe/desk/doctype/number_card/number_card.js:37 +msgid "Add Card to Dashboard" +msgstr "Tilføj kort til Oversigtspanel" + +#: frappe/public/js/frappe/views/reports/query_report.js:210 +msgid "Add Chart to Dashboard" +msgstr "Tilføj Diagram til Oversigtspanel" + +#: frappe/public/js/frappe/views/treeview.js:301 +msgid "Add Child" +msgstr "Tilføj Underordnet" + +#: frappe/public/js/frappe/views/kanban/kanban_board.html:4 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 +#: frappe/public/js/print_format_builder/Field.vue:112 +msgid "Add Column" +msgstr "Tilføj Kolonne" + +#: frappe/core/doctype/communication/communication.js:127 +msgid "Add Contact" +msgstr "Tilføj Kontakt" + +#: frappe/desk/doctype/event/event.js:38 +msgid "Add Contacts" +msgstr "Tilføj Kontakter" + +#. 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 "Tilføj Beholder" + +#. 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 "Tilføj Brugerdefinerede Tags" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:188 +#: frappe/public/js/frappe/widgets/widget_dialog.js:716 +msgid "Add Filters" +msgstr "Tilføj Filtre" + +#. 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 "Tilføj Grå Baggrund" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:230 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 +msgid "Add Group" +msgstr "Tilføj Gruppe" + +#: frappe/core/doctype/recorder/recorder.js:30 +msgid "Add Indexes" +msgstr "Tilføj Indekser" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Add Multiple" +msgstr "Tilføj Flere" + +#: frappe/core/page/permission_manager/permission_manager.js:445 +msgid "Add New Permission Rule" +msgstr "Tilføj Ny Tilladelsesregel" + +#: frappe/desk/doctype/event/event.js:35 frappe/desk/doctype/event/event.js:42 +msgid "Add Participants" +msgstr "Tilføj Deltagere" + +#. 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 "Tilføj Forespørgselsparametre" + +#: frappe/core/doctype/user/user.py:819 +msgid "Add Roles" +msgstr "Tilføj Roller" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Add Row" +msgstr "Tilføj Række" + +#. Label of the add_signature (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/public/js/frappe/views/communication.js:133 +msgid "Add Signature" +msgstr "Tilføj Signatur" + +#. 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 "Tilføj Plads Nederst" + +#. 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 "Tilføj plads Øverst" + +#: frappe/email/doctype/email_group/email_group.js:38 +#: frappe/email/doctype/email_group/email_group.js:59 +msgid "Add Subscribers" +msgstr "Tilføj Abonnenter" + +#: frappe/public/js/frappe/list/bulk_operations.js:425 +msgid "Add Tags" +msgstr "Tilføj Tags" + +#: frappe/public/js/frappe/list/list_view.js:2151 +msgctxt "Button in list view actions menu" +msgid "Add Tags" +msgstr "Tilføj Tags" + +#: frappe/public/js/frappe/views/communication.js:433 +msgid "Add Template" +msgstr "Tilføj Skabelon" + +#. Label of the add_total_row (Check) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Add Total Row" +msgstr "Tilføje Total Række" + +#. Label of the add_translate_data (Check) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Add Translate Data" +msgstr "Tilføj Oversæt Data" + +#. Label of the add_unsubscribe_link (Check) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Add Unsubscribe Link" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:6 +msgid "Add User Permissions" +msgstr "Tilføj Brugerrettigheder" + +#. Label of the add_video_conferencing (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Add Video Conferencing" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:299 +msgid "Add a Filter" +msgstr "Tilføj Filtre" + +#: frappe/core/page/permission_manager/permission_manager_help.html:9 +msgid "Add a New Role" +msgstr "Tilføj Ny Rolle" + +#: frappe/public/js/frappe/form/form_tour.js:211 +msgid "Add a Row" +msgstr "Tilføj Række" + +#: frappe/templates/includes/comments/comments.html:30 +#: frappe/templates/includes/comments/comments.html:47 +msgid "Add a comment" +msgstr "Tilføj kommentar" + +#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:28 +#: frappe/public/js/form_builder/components/Tabs.vue:192 +msgid "Add a new section" +msgstr "Tilføj ny sektion" + +#: frappe/public/js/frappe/form/form.js:193 +msgid "Add a row above the current row" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:205 +msgid "Add a row at the bottom" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:201 +msgid "Add a row at the top" +msgstr "Tilføj række øverst" + +#: frappe/public/js/frappe/form/form.js:197 +msgid "Add a row below the current row" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:286 +msgid "Add a {0} Chart" +msgstr "Tilføj {0} Diagram" + +#: frappe/public/js/form_builder/components/Section.vue:271 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:115 +msgid "Add column" +msgstr "Tilføj kolonne" + +#: frappe/public/js/form_builder/components/AddFieldButton.vue:9 +#: frappe/public/js/form_builder/components/AddFieldButton.vue:48 +msgid "Add field" +msgstr "Tilføj felt" + +#: frappe/public/js/form_builder/components/Sidebar.vue:49 +#: frappe/public/js/form_builder/components/Tabs.vue:153 +msgid "Add new tab" +msgstr "Tilføj ny fane" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:125 +msgid "Add page break" +msgstr "Tilføj sideskift" + +#: frappe/custom/doctype/client_script/client_script.js:18 +msgid "Add script for Child Table" +msgstr "Tilføj script til Underordnet Tabel" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:111 +msgid "Add section above" +msgstr "Tilføj afsnit ovenfor" + +#: frappe/public/js/form_builder/components/Section.vue:265 +msgid "Add section below" +msgstr "Tilføj afsnit nedenfor" + +#: frappe/public/js/form_builder/components/Sidebar.vue:52 +#: frappe/public/js/form_builder/components/Tabs.vue:157 +msgid "Add tab" +msgstr "Tilføj fane" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:263 +#: frappe/public/js/frappe/views/reports/query_report.js:252 +msgid "Add to Dashboard" +msgstr "Tilføj til Oversigtspanel" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:99 +msgid "Add to ToDo" +msgstr "Tilføj til ToDo" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:32 +msgid "Add to table" +msgstr "Tilføj til tabel" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:99 +msgid "Add to this activity by mailing to {0}" +msgstr "Tilføj til denne aktivitet ved at sende mail til {0}" + +#: frappe/public/js/frappe/views/kanban/kanban_column.html:20 +msgid "Add {0}" +msgstr "Tilføj {0}" + +#: frappe/public/js/frappe/list/list_view.js:289 +msgctxt "Primary action in list view" +msgid "Add {0}" +msgstr "Tilføj {0}" + +#. Option for the 'Status' (Select) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Added" +msgstr "Tilføjet" + +#. Description of the '<head> HTML' (Code) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Added HTML in the <head> section of the web page, primarily used for website verification and SEO" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:81 +msgid "Added default log doctypes: {}" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:180 +#: frappe/public/js/frappe/form/link_selector.js:202 +msgid "Added {0} ({1})" +msgstr "" + +#. Label of the additional_permissions (Section Break) field in DocType 'Custom +#. DocPerm' +#. Label of the additional_permissions (Section Break) field in DocType +#. 'DocPerm' +#. Label of the additional_permissions_section (Section Break) field in DocType +#. 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "Additional Permissions" +msgstr "" + +#. Name of a DocType +#. Label of the address (Link) field in DocType 'Contact' +#. Label of the address (Section Break) field in DocType 'Contact Us Settings' +#. Label of the address (Small Text) field in DocType 'Website Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Address" +msgstr "Adresse" + +#. Label of the address_line1 (Data) field in DocType 'Address' +#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Address Line 1" +msgstr "Adresselinje 1" + +#. Label of the address_line2 (Data) field in DocType 'Address' +#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/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 "Adresselinje 2" + +#. Name of a DocType +#: frappe/contacts/doctype/address_template/address_template.json +msgid "Address Template" +msgstr "Adresse Skabelon" + +#. Label of the address_title (Data) field in DocType 'Address' +#. Label of the address_title (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Address Title" +msgstr "Adresse Titel" + +#: frappe/contacts/doctype/address/address.py:72 +msgid "Address Title is mandatory." +msgstr "Adresse Titel er obligatorisk." + +#. Label of the address_type (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Address Type" +msgstr "Adresse Type" + +#. Description of the 'Address' (Small Text) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Address and other legal information you may want to put in the footer." +msgstr "Adresse og andre juridiske oplysninger, som du måske vil skrive i sidefoden." + +#: frappe/contacts/doctype/address/address.py:206 +msgid "Addresses" +msgstr "Adresser" + +#. Name of a report +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.json +msgid "Addresses And Contacts" +msgstr "Adresser Og Kontakter" + +#. Description of a DocType +#: frappe/custom/doctype/client_script/client_script.json +msgid "Adds a custom client script to a DocType" +msgstr "Tilføjer brugerdefineret klientscript til en DocType" + +#. Description of a DocType +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Adds a custom field to a DocType" +msgstr "Tilføjer brugerdefineret felt til DocType" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 +msgid "Administration" +msgstr "Administration" + +#. Name of a role +#: frappe/contacts/doctype/salutation/salutation.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/domain/domain.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/patch_log/patch_log.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/version/version.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Administrator" +msgstr "Administrator" + +#: frappe/core/doctype/user/user.py:1226 +msgid "Administrator Logged In" +msgstr "Administrator Logget Ind" + +#: frappe/core/doctype/user/user.py:1220 +msgid "Administrator accessed {0} on {1} via IP Address {2}." +msgstr "" + +#: frappe/desk/form/document_follow.py:52 +msgid "Administrator can't follow" +msgstr "Administrator kan ikke følge" + +#. Label of the advanced (Section Break) field in DocType 'DocType' +#. Label of the advanced_tab (Tab Break) field in DocType 'System Settings' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Advanced" +msgstr "Avanceret" + +#. 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 "Avanceret Kontrol" + +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 +msgid "Advanced Search" +msgstr "Avanceret Søgning" + +#. Label of the sb_advanced (Section Break) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Advanced Settings" +msgstr "Avancerede Indstillinger" + +#: frappe/public/js/frappe/ui/filters/filter.js:64 +#: frappe/public/js/frappe/ui/filters/filter.js:70 +msgid "After" +msgstr "Efter" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Cancel" +msgstr "Efter Annullering" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Delete" +msgstr "Efter Sletning" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Discard" +msgstr "Efter Kassering" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Insert" +msgstr "Efter Indsæt" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Rename" +msgstr "Efter Omdøb" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Save" +msgstr "Efter Gem" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Save (Submitted Document)" +msgstr "" + +#. Label of the section_break_5 (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "After Submission" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Submit" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:63 +msgid "Aggregate Field is required to create a number card" +msgstr "" + +#. Label of the aggregate_function_based_on (Select) field in DocType +#. 'Dashboard Chart' +#. Label of the aggregate_function_based_on (Select) field in DocType 'Number +#. Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Aggregate Function Based On" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:410 +msgid "Aggregate Function field is required to create a dashboard chart" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Alert" +msgstr "Advarsel" + +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Alerts and Notifications" +msgstr "Advarsler og Meddelelser" + +#: frappe/database/query.py:1610 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1535 +msgid "Alias must be a string" +msgstr "" + +#. Label of the align (Select) field in DocType 'Letter Head' +#. Label of the footer_align (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Align" +msgstr "Justér" + +#. Label of the align_labels_right (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Align Labels to the Right" +msgstr "" + +#. Label of the right (Check) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "Align Right" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:479 +msgid "Align Value" +msgstr "" + +#. Name of a role +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/gender/gender.json +#: frappe/contacts/doctype/salutation/salutation.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/file/file.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/tag_link/tag_link.json +#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "All" +msgstr "Alle" + +#. Label of the all_day (Check) field in DocType 'Calendar View' +#. Label of the all_day (Check) field in DocType 'Event' +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json +#: frappe/public/js/frappe/ui/notifications/notifications.js:408 +msgid "All Day" +msgstr "Hele Dagen" + +#: frappe/website/doctype/website_slideshow/website_slideshow.py:43 +msgid "All Images attached to Website Slideshow should be public" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:29 +msgid "All Records" +msgstr "Alle Poster" + +#: frappe/public/js/frappe/form/form.js:2224 +msgid "All Submissions" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:452 +msgid "All customizations will be removed. Please confirm." +msgstr "" + +#: frappe/templates/includes/comments/comments.html:158 +msgid "All fields are necessary to submit the comment." +msgstr "" + +#. Description of the 'Document States' (Table) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "All possible Workflow States and roles of the workflow. Docstatus Options: 0 is \"Saved\", 1 is \"Submitted\" and 2 is \"Cancelled\"" +msgstr "" + +#: frappe/utils/password_strength.py:183 +msgid "All-uppercase is almost as easy to guess as all-lowercase." +msgstr "" + +#. Label of the allocated_to (Link) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +msgid "Allocated To" +msgstr "Tildelt Til" + +#. Label of the allow (Link) field in DocType 'User Permission' +#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key' +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/templates/includes/oauth_confirmation.html:16 +msgid "Allow" +msgstr "Tillad" + +#: frappe/website/doctype/website_settings/website_settings.py:160 +msgid "Allow API Indexing Access" +msgstr "" + +#. Label of the allow_auto_repeat (Check) field in DocType 'DocType' +#. Label of the allow_auto_repeat (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Allow Auto Repeat" +msgstr "" + +#. Label of the allow_bulk_edit (Check) field in DocType 'DocField' +#. Label of the allow_bulk_edit (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Allow Bulk Edit" +msgstr "Tillad Masse Redigering" + +#. Label of the allow_edit (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Allow Bulk Editing" +msgstr "Tillad Masse Redigering" + +#. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Consecutive Login Attempts" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:79 +msgid "Allow Google Calendar Access" +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:40 +msgid "Allow Google Contacts Access" +msgstr "" + +#. Label of the allow_guest (Check) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Allow Guest" +msgstr "Tillad Gæst" + +#. Label of the allow_guest_to_view (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Allow Guest to View" +msgstr "" + +#. Label of the allow_guests_to_upload_files (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Guests to Upload Files" +msgstr "" + +#. Label of the allow_import (Check) field in DocType 'DocType' +#. Label of the allow_import (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Allow Import (via Data Import Tool)" +msgstr "" + +#. Label of the allow_login_after_fail (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Login After Fail" +msgstr "" + +#. Label of the allow_login_using_mobile_number (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Login using Mobile Number" +msgstr "" + +#. Label of the allow_login_using_user_name (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Login using User Name" +msgstr "" + +#. Label of the sb_allow_modules (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allow Modules" +msgstr "" + +#. Label of the allow_older_web_view_links (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Older Web View Links (Insecure)" +msgstr "" + +#. Label of the allow_print_for_cancelled (Check) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Allow Print for Cancelled" +msgstr "" + +#. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Allow Print for Draft" +msgstr "" + +#. Label of the allow_read_on_all_link_options (Check) field in DocType 'Web +#. Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Allow Read On All Link Options" +msgstr "" + +#. Label of the allow_rename (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Allow Rename" +msgstr "Tillad Omdøb" + +#. Label of the roles_permission (Section Break) field in DocType 'Role +#. Permission for Page and Report' +#. Label of the allow_roles (Table MultiSelect) field in DocType 'Module +#. Onboarding' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Allow Roles" +msgstr "Tillad Roller" + +#. 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 "Tillad Selv Godkendelse" + +#. Label of the enable_telemetry (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Sending Usage Data for Improving Applications" +msgstr "" + +#. Description of the 'Allow Self Approval' (Check) field in DocType 'Workflow +#. Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Allow approval for creator of the document" +msgstr "" + +#. Label of the allow_comments (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow comments" +msgstr "" + +#. Label of the allow_delete (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow delete" +msgstr "Tillad sletning" + +#. Label of the email_append_to (Check) field in DocType 'DocType' +#. Label of the email_append_to (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Allow document creation via Email" +msgstr "" + +#. Label of the allow_edit (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow editing after submit" +msgstr "" + +#. Description of the 'Allow Bulk Editing' (Check) field in DocType 'List View +#. Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Allow editing even if the doctype has a workflow set up.\n\n" +"Does nothing if a workflow isn't set up." +msgstr "" + +#. Label of the allow_events_in_timeline (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Allow events in timeline" +msgstr "" + +#. Label of the allow_in_quick_entry (Check) field in DocType 'DocField' +#. Label of the allow_in_quick_entry (Check) field in DocType 'Custom Field' +#. Label of the allow_in_quick_entry (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Allow in Quick Entry" +msgstr "Tillad i Hurtig Indgang" + +#. Label of the allow_incomplete (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow incomplete forms" +msgstr "Tillad ufuldstændige formularer" + +#. Label of the allow_multiple (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow multiple responses" +msgstr "Tillad flere svar" + +#. Label of the allow_on_submit (Check) field in DocType 'DocField' +#. Label of the allow_on_submit (Check) field in DocType 'Custom Field' +#. Label of the allow_on_submit (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Allow on Submit" +msgstr "" + +#. Label of the deny_multiple_sessions (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow only one session per user" +msgstr "" + +#. Label of the allow_page_break_inside_tables (Check) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Allow page break inside tables" +msgstr "" + +#. Label of the allow_print (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow print" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:431 +msgid "Allow recording my first session to improve user experience" +msgstr "" + +#. Description of the 'Allow incomplete forms' (Check) field in DocType 'Web +#. Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow saving if mandatory fields are not filled" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:424 +msgid "Allow sending usage data for improving applications" +msgstr "" + +#. Description of the 'Login After' (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allow user to login only after this hour (0-24)" +msgstr "" + +#. Description of the 'Login Before' (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allow user to login only before this hour (0-24)" +msgstr "" + +#. Description of the 'Login with email link' (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow users to log in without a password, using a login link sent to their email" +msgstr "" + +#. Label of the allowed (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Allowed" +msgstr "Tilladt" + +#. Label of the allowed_file_extensions (Small Text) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allowed File Extensions" +msgstr "" + +#. Label of the allowed_in_mentions (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allowed In Mentions" +msgstr "" + +#. Label of the allowed_modules_section (Section Break) field in DocType 'User +#. Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Allowed Modules" +msgstr "" + +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "" + +#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Allowed Roles" +msgstr "Tilladte Roller" + +#. Label of the allowed_embedding_domains (Small Text) field in DocType 'Web +#. Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allowed embedding domains" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1256 +msgid "Allowing DocType, DocType. Be careful!" +msgstr "" + +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414" +msgstr "" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "" + +#: frappe/core/doctype/user/user.py:1034 +msgid "Already Registered" +msgstr "" + +#: frappe/desk/form/assign_to.py:137 +msgid "Already in the following Users ToDo list:{0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:907 +msgid "Also adding the dependent currency field {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:920 +msgid "Also adding the status dependency field {0}" +msgstr "" + +#. Label of the login_id (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Alternative Email ID" +msgstr "" + +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + +#. Label of the always_bcc (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Always BCC Address" +msgstr "" + +#. Label of the add_draft_heading (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Always add \"Draft\" Heading for printing draft documents" +msgstr "" + +#. Label of the always_use_account_email_id_as_sender (Check) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Always use this email address as sender address" +msgstr "" + +#. Label of the always_use_account_name_as_sender_name (Check) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Always use this name as sender name" +msgstr "" + +#. Label of the amend (Check) field in DocType 'Custom DocPerm' +#. Label of the amend (Check) field in DocType 'DocPerm' +#. Label of the amend (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "Amend" +msgstr "Ændre" + +#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming +#. Settings' +#. Option for the 'Default Amendment Naming' (Select) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Amend Counter" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +msgid "Amended Document Naming Settings" +msgstr "" + +#. Label of the amended_documents_section (Section Break) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Amended Documents" +msgstr "" + +#. Label of the amended_from (Link) field in DocType 'Personal Data Download +#. Request' +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +msgid "Amended From" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:12 +msgctxt "Freeze message while amending a document" +msgid "Amending" +msgstr "Ændrer" + +#. Label of the amend_naming_override (Table) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Amendment Naming Override" +msgstr "" + +#: frappe/model/document.py:551 +msgid "Amendment Not Allowed" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:207 +msgid "Amendment naming rules updated." +msgstr "" + +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 +msgid "An error occurred while setting Session Defaults" +msgstr "" + +#. Description of the 'FavIcon' (Attach) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" +msgstr "" + +#: frappe/templates/includes/oauth_confirmation.html:38 +msgid "An unexpected error occurred while authorizing {}." +msgstr "" + +#. Label of the analytics_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Analytics" +msgstr "Analyse" + +#: frappe/public/js/frappe/ui/filters/filter.js:35 +msgid "Ancestors Of" +msgstr "" + +#. Label of the announcement_widget (Text Editor) field in DocType 'Navbar +#. Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Announcement Widget" +msgstr "" + +#. Label of the announcements_section (Section Break) field in DocType 'Navbar +#. Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Announcements" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Annual" +msgstr "Årlig" + +#. Label of the anonymization_matrix (Code) field in DocType 'Personal Data +#. Deletion Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Anonymization Matrix" +msgstr "" + +#. Label of the anonymous (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Anonymous responses" +msgstr "" + +#: frappe/public/js/frappe/request.js:189 +msgid "Another transaction is blocking this one. Please try again in a few seconds." +msgstr "" + +#: frappe/model/rename_doc.py:379 +msgid "Another {0} with name {1} exists, select another name" +msgstr "" + +#. Description of the 'Raw Commands' (Code) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:36 +msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type." +msgstr "" + +#. Label of the app_tab (Tab Break) field in DocType 'System Settings' +#. Label of the app_section (Section Break) field in DocType 'User' +#. Label of the app (Data) field in DocType 'Desktop Icon' +#. Label of the app (Data) field in DocType 'Workspace' +#. Label of the app (Data) field in DocType 'Website Theme Ignore App' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json +msgid "App" +msgstr "App" + +#. Label of the app_id (Data) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "App ID" +msgstr "App ID" + +#. Label of the app_logo (Attach Image) field in DocType 'Website Settings' +#: frappe/public/js/frappe/ui/toolbar/navbar.html:8 +#: frappe/website/doctype/website_settings/website_settings.json +msgid "App Logo" +msgstr "App Logo" + +#. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' +#. Label of the app_name (Data) field in DocType 'Changelog Feed' +#. Label of the app_name (Data) field in DocType 'Website Settings' +#: frappe/core/doctype/installed_applications/installed_applications.js:27 +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "App Name" +msgstr "App Navn" + +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "Appens Navn (Klient Navn)" + +#: frappe/modules/utils.py:280 +msgid "App not found for module: {0}" +msgstr "" + +#: frappe/__init__.py:1113 +msgid "App {0} is not installed" +msgstr "" + +#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email +#. Account' +#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Append Emails to Sent Folder" +msgstr "" + +#. Label of the append_to (Link) field in DocType 'Email Account' +#. Label of the append_to (Link) field in DocType 'IMAP Folder' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "Append To" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:202 +msgid "Append To can be one of {0}" +msgstr "" + +#. Description of the 'Append To' (Link) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Append as communication against this DocType (must have fields: \"Sender\" and \"Subject\"). These fields can be defined in the email settings section of the appended doctype." +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:105 +msgid "Applicable Document Types" +msgstr "" + +#. Label of the applicable_for (Link) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "Applicable For" +msgstr "" + +#. Label of the app_logo (Attach Image) field in DocType 'Navbar Settings' +#. Label of the logo_section (Section Break) field in DocType 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Application Logo" +msgstr "" + +#. Label of the app_name (Data) field in DocType 'Installed Application' +#. Label of the app_name (Data) field in DocType 'System Settings' +#: frappe/core/doctype/installed_application/installed_application.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Application Name" +msgstr "" + +#. Label of the app_version (Data) field in DocType 'Installed Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Application Version" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "" + +#. Label of the doctype_or_field (Select) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Applied On" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:103 +msgid "Apply" +msgstr "Anvend" + +#: frappe/public/js/frappe/list/list_view.js:2136 +msgctxt "Button in list view actions menu" +msgid "Apply Assignment Rule" +msgstr "Anvend Tildelingsregel" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:318 +msgid "Apply Filters" +msgstr "Anvend Filtre" + +#. 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 "Anvend Streng Brugertilladelser" + +#. Label of the view (Select) field in DocType 'Client Script' +#: frappe/custom/doctype/client_script/client_script.json +msgid "Apply To" +msgstr "Anvend Til" + +#. Label of the apply_to_all_doctypes (Check) field in DocType 'User +#. Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "Apply To All Document Types" +msgstr "Anvend Til Alle Dokumenttyper" + +#. Label of the apply_user_permission_on (Link) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Apply User Permission On" +msgstr "Anvend Brugertilladelse Til" + +#. Label of the apply_document_permissions (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Apply document permissions" +msgstr "Anvend dokumenttilladelser" + +#. Description of the 'If user is the owner' (Check) field in DocType 'Custom +#. DocPerm' +#. Description of the 'If user is the owner' (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +msgid "Apply this rule if the User is the Owner" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:75 +msgid "Apply to all Documents Types" +msgstr "" + +#: frappe/model/workflow.py:322 +msgid "Applying: {0}" +msgstr "Anvender: {0}" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:115 +msgid "Approval Required" +msgstr "Godkendelse Påkrævet" + +#. Label of a standard navbar item +#. Type: Route +#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18 +#: frappe/website/js/website.js:619 frappe/www/me.html:80 +msgid "Apps" +msgstr "Apps" + +#: frappe/public/js/frappe/utils/number_systems.js:41 +msgctxt "Number system" +msgid "Ar" +msgstr "Ar" + +#: frappe/public/js/frappe/views/kanban/kanban_column.html:14 +msgid "Archive" +msgstr "Arkiv" + +#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Archived" +msgstr "Arkiveret" + +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:494 +msgid "Archived Columns" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2115 +msgid "Are you sure you want to clear the assignments?" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:294 +msgid "Are you sure you want to delete all rows?" +msgstr "" + +#: frappe/public/js/frappe/form/controls/attach.js:38 +#: frappe/public/js/frappe/form/sidebar/attachments.js:135 +msgid "Are you sure you want to delete the attachment?" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:197 +msgctxt "Confirmation dialog message" +msgid "Are you sure you want to delete the column? All the fields in the column will be moved to the previous column." +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:126 +msgctxt "Confirmation dialog message" +msgid "Are you sure you want to delete the section? All the columns along with fields in the section will be moved to the previous section." +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:65 +msgctxt "Confirmation dialog message" +msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:191 +msgid "Are you sure you want to discard the changes?" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:977 +msgid "Are you sure you want to generate a new report?" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:120 +msgid "Are you sure you want to merge {0} with {1}?" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 +msgid "Are you sure you want to proceed?" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:25 +msgid "Are you sure you want to re-enable scheduler?" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:163 +msgid "Are you sure you want to relink this communication to {0}?" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:10 +msgid "Are you sure you want to remove all failed jobs?" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:116 +msgid "Are you sure you want to remove the {0} filter?" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:268 +msgid "Are you sure you want to reset all customizations?" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:125 +msgid "Are you sure you want to save this document?" +msgstr "" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 +#: frappe/core/doctype/user_permission/user_permission_list.js:165 +msgid "Are you sure?" +msgstr "" + +#. Label of the arguments (Code) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Arguments" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Arial" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:11 +msgid "As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User." +msgstr "" + +#: frappe/desk/form/assign_to.py:107 +msgid "As document sharing is disabled, please give them the required permissions before assigning." +msgstr "" + +#: frappe/templates/emails/account_deletion_notification.html:3 +msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" +msgstr "" + +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + +#. Label of the assign_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Assign Condition" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 +msgid "Assign To" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2097 +msgctxt "Button in list view actions menu" +msgid "Assign To" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 +msgid "Assign To User Group" +msgstr "" + +#. Label of the assign_to_users_section (Section Break) field in DocType +#. 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Assign To Users" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:260 +msgid "Assign a user" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:52 +msgid "Assign one by one, in sequence" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:174 +msgid "Assign to me" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:53 +msgid "Assign to the one who has the least assignments" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:54 +msgid "Assign to the user set in this field" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Assigned" +msgstr "" + +#. Label of the assigned_by (Link) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:41 +msgid "Assigned By" +msgstr "" + +#. Label of the assigned_by_full_name (Read Only) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +msgid "Assigned By Full Name" +msgstr "" + +#: frappe/model/meta.py:62 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:49 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:71 +#: frappe/public/js/frappe/model/meta.js:210 +#: frappe/public/js/frappe/model/model.js:136 +#: frappe/public/js/frappe/views/interaction.js:82 +msgid "Assigned To" +msgstr "Tildelt Til" + +#: frappe/desk/report/todo/todo.py:40 +msgid "Assigned To/Owner" +msgstr "" + +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:269 +msgid "Assigning..." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Assignment" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Assignment Completed" +msgstr "" + +#. Label of the sb (Section Break) field in DocType 'Assignment Rule' +#. Label of the assignment_days (Table) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Assignment Days" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Tools Workspace +#. Label of a shortcut in the Tools Workspace +#. Label of the assignment_rule (Link) field in DocType 'ToDo' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/todo/todo.json +msgid "Assignment Rule" +msgstr "" + +#. Name of a DocType +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +msgid "Assignment Rule Day" +msgstr "" + +#. Name of a DocType +#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +msgid "Assignment Rule User" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55 +msgid "Assignment Rule is not allowed on document type {0}" +msgstr "" + +#. Label of the assignment_rules_section (Section Break) field in DocType +#. 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Assignment Rules" +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.py:153 +msgid "Assignment Update on {0}" +msgstr "" + +#: frappe/desk/form/assign_to.py:78 +msgid "Assignment for {0} {1}" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:62 +msgid "Assignment of {0} removed by {1}" +msgstr "" + +#. Label of the enable_email_assignment (Check) field in DocType 'Notification +#. Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:255 +msgid "Assignments" +msgstr "" + +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:697 +msgid "At least one column is required to show in the grid." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:73 +msgid "At least one field is required in Web Form Fields Table" +msgstr "" + +#: frappe/core/doctype/data_export/data_export.js:44 +msgid "At least one field of Parent Document Type is mandatory" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/public/js/form_builder/components/controls/AttachControl.vue:15 +#: frappe/public/js/frappe/form/controls/attach.js:5 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Attach" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:155 +msgid "Attach Document Print" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Attach Image" +msgstr "" + +#. Label of the attach_package (Attach) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json +msgid "Attach Package" +msgstr "" + +#. Label of the attach_print (Check) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Attach Print" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/WebLink.vue:10 +msgid "Attach a web link" +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:8 +msgid "Attach files / urls and add in table." +msgstr "" + +#. Label of the attached_file (Code) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Attached File" +msgstr "" + +#. Label of the attached_to_doctype (Link) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Attached To DocType" +msgstr "" + +#. Label of the attached_to_field (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Attached To Field" +msgstr "" + +#. Label of the attached_to_name (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Attached To Name" +msgstr "" + +#: frappe/core/doctype/file/file.py:152 +msgid "Attached To Name must be a string or an integer" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Attachment" +msgstr "" + +#. Label of the attachment_limit (Int) field in DocType 'Email Account' +#. Label of the attachment_limit (Int) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Attachment Limit (MB)" +msgstr "" + +#: frappe/core/doctype/file/file.py:338 +#: frappe/public/js/frappe/form/sidebar/attachments.js:36 +msgid "Attachment Limit Reached" +msgstr "" + +#. Label of the attachment_link (HTML) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Attachment Link" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Attachment Removed" +msgstr "" + +#. Label of the attachments (Code) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/public/js/frappe/form/templates/form_sidebar.html:63 +#: frappe/website/doctype/web_form/templates/web_form.html:113 +msgid "Attachments" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:119 +msgid "Attempting Connection to QZ Tray..." +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:135 +msgid "Attempting to launch QZ Tray..." +msgstr "" + +#: frappe/www/attribution.html:9 +msgid "Attribution" +msgstr "" + +#. Name of a report +#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json +msgid "Audit System Hooks" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/audit_trail/audit_trail.json +msgid "Audit Trail" +msgstr "" + +#. Label of the auth_url_data (Code) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Auth URL Data" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "" + +#. Label of the backend_app_flow (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Authenticate as Service Principal" +msgstr "" + +#. Label of the authentication_column (Section Break) field in DocType 'Email +#. Account' +#. Label of the authentication_credential_section (Section Break) field in +#. DocType 'Push Notification Settings' +#. Label of a Card Break in the Integrations Workspace +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Authentication" +msgstr "" + +#: frappe/www/qrcode.html:19 +msgid "Authentication Apps you can use are:" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:339 +msgid "Authentication failed while receiving emails from Email Account: {0}." +msgstr "" + +#. Label of the author (Data) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Author" +msgstr "" + +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "" + +#. Label of the authorization_code (Password) field in DocType 'Google +#. Calendar' +#. Label of the authorization_code (Password) field in DocType 'Google +#. Contacts' +#. Label of the authorization_code (Data) field in DocType 'OAuth Authorization +#. Code' +#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Authorization Code" +msgstr "" + +#. Label of the authorization_uri (Small Text) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Authorization URI" +msgstr "" + +#: frappe/templates/includes/oauth_confirmation.html:35 +msgid "Authorization error for {}." +msgstr "" + +#. Label of the authorize_api_access (Button) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Authorize API Access" +msgstr "" + +#. Label of the authorize_api_indexing_access (Button) field in DocType +#. 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Authorize API Indexing Access" +msgstr "" + +#. Label of the authorize_google_calendar_access (Button) field in DocType +#. 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Authorize Google Calendar Access" +msgstr "" + +#. Label of the authorize_google_contacts_access (Button) field in DocType +#. 'Google Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Authorize Google Contacts Access" +msgstr "" + +#. Label of the authorize_url (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Authorize URL" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Authorized" +msgstr "" + +#: frappe/www/attribution.html:20 +msgid "Authors" +msgstr "" + +#: frappe/www/attribution.html:37 +msgid "Authors / Maintainers" +msgstr "" + +#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth +#. Provider Settings' +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +msgid "Auto" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Auto Email Report" +msgstr "" + +#. Label of the autoname (Data) field in DocType 'DocType' +#. Label of the autoname (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Auto Name" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Tools Workspace +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/workspace/tools/tools.json +#: frappe/public/js/frappe/utils/common.js:442 +msgid "Auto Repeat" +msgstr "" + +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +msgid "Auto Repeat Day" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 +msgid "Auto Repeat Day{0} {1} has been repeated." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 +msgid "Auto Repeat Document Creation Failed" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:117 +msgid "Auto Repeat Schedule" +msgstr "" + +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + +#: frappe/public/js/frappe/utils/common.js:434 +msgid "Auto Repeat created for this document" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 +msgid "Auto Repeat failed for {0}" +msgstr "" + +#. Label of the auto_reply (Section Break) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Auto Reply" +msgstr "" + +#. Label of the auto_reply_message (Text Editor) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Auto Reply Message" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:177 +msgid "Auto assignment failed: {0}" +msgstr "" + +#. Label of the follow_assigned_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Auto follow documents that are assigned to you" +msgstr "" + +#. Label of the follow_shared_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Auto follow documents that are shared with you" +msgstr "" + +#. Label of the follow_liked_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Auto follow documents that you Like" +msgstr "" + +#. Label of the follow_commented_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Auto follow documents that you comment on" +msgstr "" + +#. Label of the follow_created_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Auto follow documents that you create" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Autocomplete" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Autoincrement" +msgstr "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Automate processes and extend standard functionality using scripts and background jobs" +msgstr "" + +#. Option for the 'Communication Type' (Select) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Automated Message" +msgstr "" + +#. Option for the 'Desk Theme' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/ui/theme_switcher.js:69 +msgid "Automatic" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:772 +msgid "Automatic Linking can be activated only for one Email Account." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:766 +msgid "Automatic Linking can be activated only if Incoming is enabled." +msgstr "" + +#. Description of a DocType +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Automatically Assign Documents to Users" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:131 +msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." +msgstr "" + +#. Label of the auto_account_deletion (Int) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Automatically delete account within (hours)" +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Automation" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/form/controls/password.js:88 +#: frappe/public/js/frappe/ui/group_by/group_by.js:21 +msgid "Average" +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 +msgid "Average of {0}" +msgstr "" + +#: frappe/utils/password_strength.py:130 +msgid "Avoid dates and years that are associated with you." +msgstr "" + +#: frappe/utils/password_strength.py:124 +msgid "Avoid recent years." +msgstr "" + +#: frappe/utils/password_strength.py:117 +msgid "Avoid sequences like abc or 6543 as they are easy to guess" +msgstr "" + +#: frappe/utils/password_strength.py:124 +msgid "Avoid years that are associated with you." +msgstr "" + +#. Label of the awaiting_password (Check) field in DocType 'User Email' +#: frappe/core/doctype/user_email/user_email.json +msgid "Awaiting Password" +msgstr "" + +#. Label of the awaiting_password (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Awaiting password" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:195 +msgid "Awesome Work" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:353 +msgid "Awesome, now try making an entry yourself" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:9 +msgctxt "Number system" +msgid "B" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B0" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B1" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B10" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B2" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B3" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B4" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B5" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B6" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B7" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B8" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B9" +msgstr "" + +#. Label of the bcc (Code) field in DocType 'Communication' +#. Label of the bcc (Code) field in DocType 'Notification Recipient' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "BCC" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:87 +msgctxt "Email Recipients" +msgid "BCC" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:181 +msgid "Back" +msgstr "" + +#: frappe/templates/pages/integrations/gcalendar-success.html:13 +msgid "Back to Desk" +msgstr "" + +#: frappe/www/404.html:26 +msgid "Back to Home" +msgstr "" + +#: frappe/www/login.html:201 frappe/www/login.html:232 +msgid "Back to Login" +msgstr "" + +#. Label of the background_color (Color) field in DocType 'Number Card' +#. Label of the background_color (Color) field in DocType 'Social Link +#. Settings' +#. Label of the background_color (Link) field in DocType 'Website Theme' +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Background Color" +msgstr "" + +#. Label of the background_image (Attach Image) field in DocType 'Web Page +#. Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Background Image" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Label of the background_jobs_section (Section Break) field in DocType +#. 'System Health Report' +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 +msgid "Background Jobs" +msgstr "" + +#. Label of the background_jobs_check (Data) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Background Jobs Check" +msgstr "" + +#. Label of the background_jobs_queue (Autocomplete) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Background Jobs Queue" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:87 +msgid "Background Print (required for >25 documents)" +msgstr "" + +#. Label of the background_workers (Section Break) field in DocType 'System +#. Settings' +#. Label of the background_workers (Table) field in DocType 'System Health +#. Report' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Background Workers" +msgstr "" + +#: frappe/desk/page/backups/backups.js:28 +msgid "Backup Encryption Key" +msgstr "" + +#: frappe/desk/page/backups/backups.py:98 +msgid "Backup job is already queued. You will receive an email with the download link" +msgstr "" + +#. Label of the backups_tab (Tab Break) field in DocType 'System Settings' +#. Label of the backups_section (Section Break) field in DocType 'System Health +#. Report' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Backups" +msgstr "" + +#. Label of the backups_size (Float) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Backups (MB)" +msgstr "" + +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68 +msgid "Bad Cron Expression" +msgstr "" + +#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Banker's Rounding" +msgstr "" + +#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Banker's Rounding (legacy)" +msgstr "" + +#. Label of the banner (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Banner" +msgstr "" + +#. Label of the banner_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Banner HTML" +msgstr "" + +#. Label of the banner_image (Attach Image) field in DocType 'User' +#. Label of the banner_image (Attach Image) field in DocType 'Web Form' +#: frappe/core/doctype/user/user.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Banner Image" +msgstr "" + +#. Description of the 'Banner HTML' (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Banner is above the Top Menu Bar." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Bar" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Barcode" +msgstr "" + +#. Label of the base_dn (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Base Distinguished Name (DN)" +msgstr "" + +#. Label of the base_url (Data) field in DocType 'Geolocation Settings' +#. Label of the base_url (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Base URL" +msgstr "" + +#. Label of the based_on (Link) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 +msgid "Based On" +msgstr "Baseret På" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Based on Field" +msgstr "" + +#. Label of the user (Link) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Based on Permissions For User" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Basic" +msgstr "" + +#. Label of the section_break_3 (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Basic Info" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:63 +#: frappe/public/js/frappe/ui/filters/filter.js:69 +msgid "Before" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Cancel" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Delete" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Discard" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Insert" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Print" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Rename" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Save" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Save (Submitted Document)" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Submit" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Validate" +msgstr "" + +#. Option for the 'Level' (Select) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Beginner" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:29 +msgid "Beginning with" +msgstr "" + +#. Label of the beta (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Beta" +msgstr "" + +#: frappe/utils/password_strength.py:73 +msgid "Better add a few more letters or another word" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:27 +msgid "Between" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Billing" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:27 +msgid "Billing Contact" +msgstr "" + +#. Label of the binary_logging (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Binary Logging" +msgstr "" + +#. Label of the bio (Small Text) field in DocType 'User' +#. Label of the bio (Small Text) field in DocType 'About Us Team Member' +#: frappe/core/doctype/user/user.json +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +msgid "Bio" +msgstr "" + +#. Label of the birth_date (Date) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Birth Date" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:41 +msgid "Blank Template" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/block_module/block_module.json +msgid "Block Module" +msgstr "" + +#. Label of the block_modules (Table) field in DocType 'Module Profile' +#. Label of the block_modules (Table) field in DocType 'User' +#: frappe/core/doctype/module_profile/module_profile.json +#: frappe/core/doctype/user/user.json +msgid "Block Modules" +msgstr "" + +#. Label of the blocked (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Blocked" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Blue" +msgstr "" + +#. Label of the bold (Check) field in DocType 'DocField' +#. Label of the bold (Check) field in DocType 'Custom Field' +#. Label of the bold (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Bold" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Bot" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:126 +msgid "Both DocType and Name required" +msgstr "" + +#: frappe/templates/includes/login/login.js:24 +#: frappe/templates/includes/login/login.js:96 +msgid "Both login and password required" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:154 +msgid "Bottom" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:248 +msgid "Bottom Center" +msgstr "" + +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:247 +msgid "Bottom Left" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:249 +msgid "Bottom Right" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Bounced" +msgstr "" + +#. Label of the brand (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand" +msgstr "Mærke" + +#. Label of the brand_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand HTML" +msgstr "" + +#. Label of the banner_image (Attach Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand Image" +msgstr "" + +#. Label of the brand_logo (Attach Image) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Brand Logo" +msgstr "" + +#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n" +"has a transparent background and use the <img /> tag. Keep size as 200px x 30px" +msgstr "" + +#. Label of the breadcrumbs (Code) field in DocType 'Web Form' +#. Label of the breadcrumbs (Code) field in DocType 'Web Page' +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Breadcrumbs" +msgstr "" + +#. Label of the browser (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:36 +msgid "Browser" +msgstr "" + +#. Label of the browser_version (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Browser Version" +msgstr "" + +#: frappe/public/js/frappe/desk.js:19 +msgid "Browser not supported" +msgstr "" + +#. Label of the brute_force_security (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Brute Force Security" +msgstr "" + +#. Label of the bufferpool_size (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Bufferpool Size" +msgstr "" + +#. Name of a Workspace +#: frappe/core/workspace/build/build.json +msgid "Build" +msgstr "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Build your own reports, print formats, and dashboards. Create personalized workspaces for easier navigation" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow_list.js:18 +msgid "Build {0}" +msgstr "" + +#: frappe/templates/includes/footer/footer_powered.html:1 +msgid "Built on {0}" +msgstr "" + +#. Label of the bulk_actions (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Bulk Actions" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:142 +msgid "Bulk Delete" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:321 +msgid "Bulk Edit" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1190 +msgid "Bulk Edit {0}" +msgstr "" + +#: frappe/desk/reportview.py:637 +msgid "Bulk Operation Failed" +msgstr "" + +#: frappe/desk/reportview.py:641 +msgid "Bulk Operation Successful" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:131 +msgid "Bulk PDF Export" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +msgid "Bulk Update" +msgstr "" + +#: frappe/model/workflow.py:310 +msgid "Bulk approval only support up to 500 documents." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:56 +msgid "Bulk operation is enqueued in background." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:68 +msgid "Bulk operations only support up to 500 documents." +msgstr "" + +#: frappe/model/workflow.py:299 +msgid "Bulk {0} is enqueued in background." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Button" +msgstr "" + +#. Label of the button_gradients (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Button Gradients" +msgstr "" + +#. Label of the button_rounded_corners (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Button Rounded Corners" +msgstr "" + +#. Label of the button_shadows (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Button Shadows" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "By \"Naming Series\" field" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:111 +#: frappe/website/doctype/web_page/web_page.js:118 +msgid "By default the title is used as meta title, adding a value here will override it." +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "By fieldname" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "By script" +msgstr "" + +#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in +#. DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Bypass Restricted IP Address Check If Two Factor Auth Enabled" +msgstr "" + +#. Label of the bypass_2fa_for_retricted_ip_users (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Bypass Two Factor Auth for users who login from restricted IP Address" +msgstr "" + +#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Bypass restricted IP Address check If Two Factor Auth Enabled" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "C5E" +msgstr "" + +#: frappe/templates/print_formats/standard_macros.html:220 +msgid "CANCELLED" +msgstr "" + +#. Label of the cc (Code) field in DocType 'Communication' +#. Label of the cc (Code) field in DocType 'Notification Recipient' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "CC" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:77 +msgctxt "Email Recipients" +msgid "CC" +msgstr "" + +#. Label of the cmd (Data) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "CMD" +msgstr "" + +#: frappe/public/js/frappe/color_picker/color_picker.js:20 +msgid "COLOR PICKER" +msgstr "" + +#. Label of the css_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Label of the css (Code) field in DocType 'Print Style' +#. Label of the css (Code) field in DocType 'Web Page' +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/website/doctype/web_page/web_page.json +msgid "CSS" +msgstr "" + +#. Label of the css_class (Small Text) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "CSS Class" +msgstr "" + +#. Description of the 'Element Selector' (Data) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "CSS selector for the element you want to highlight." +msgstr "" + +#. Option for the 'File Type' (Select) field in DocType 'Data Export' +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/core/doctype/data_export/data_export.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "CSV" +msgstr "" + +#. Label of the cache_section (Section Break) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Cache" +msgstr "" + +#: frappe/sessions.py:35 +msgid "Cache Cleared" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:181 +msgid "Calculate" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Calendar" +msgstr "" + +#. Label of the calendar_name (Data) field in DocType 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Calendar Name" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/public/js/frappe/list/base_list.js:207 +msgid "Calendar View" +msgstr "" + +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/contacts/doctype/contact/contact.js:55 +#: frappe/desk/doctype/event/event.json +msgid "Call" +msgstr "" + +#. Label of the call_to_action (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Call To Action" +msgstr "" + +#. Label of the call_to_action_url (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Call To Action URL" +msgstr "" + +#. Label of the callback_message (Small Text) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Callback Message" +msgstr "" + +#. Label of the callback_title (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Callback Title" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150 +#: frappe/public/js/frappe/ui/capture.js:334 +msgid "Camera" +msgstr "" + +#. Label of the campaign (Data) field in DocType 'Web Page View' +#: frappe/public/js/frappe/utils/utils.js:1766 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:39 +msgid "Campaign" +msgstr "Kampagne" + +#. Label of the campaign_description (Small Text) field in DocType 'UTM +#. Campaign' +#: frappe/website/doctype/utm_campaign/utm_campaign.json +msgid "Campaign Description (Optional)" +msgstr "" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:4 +#: frappe/public/js/frappe/form/templates/set_sharing.html:50 +msgid "Can Read" +msgstr "" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:7 +#: frappe/public/js/frappe/form/templates/set_sharing.html:53 +msgid "Can Share" +msgstr "" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:6 +#: frappe/public/js/frappe/form/templates/set_sharing.html:52 +msgid "Can Submit" +msgstr "" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:5 +#: frappe/public/js/frappe/form/templates/set_sharing.html:51 +msgid "Can Write" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:410 +msgid "Can not rename as column {0} is already present on DocType." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1164 +msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" +msgstr "" + +#. Description of the 'Apply User Permission On' (Link) field in DocType 'User +#. Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Can only list down the document types which has been linked to the User document type." +msgstr "" + +#: frappe/desk/form/document_follow.py:48 +msgid "Can't follow since changes are not tracked." +msgstr "" + +#: frappe/model/rename_doc.py:366 +msgid "Can't rename {0} to {1} because {0} doesn't exist." +msgstr "" + +#. Label of the cancel (Check) field in DocType 'Custom DocPerm' +#. Label of the cancel (Check) field in DocType 'DocPerm' +#. Label of the cancel (Check) field in DocType 'User Document Type' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/doctype/doctype_list.js:131 +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/reminders.js:54 +msgid "Cancel" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2206 +msgctxt "Button in list view actions menu" +msgid "Cancel" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:68 +msgctxt "Secondary button in warning dialog" +msgid "Cancel" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:979 +msgid "Cancel All" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:966 +msgid "Cancel All Documents" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2211 +msgctxt "Title of confirmation dialog" +msgid "Cancel {0} documents?" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType 'ToDo' +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +#: frappe/desk/form/save.py:64 +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/public/js/frappe/model/indicator.js:78 +#: frappe/public/js/frappe/ui/filters/filter.js:540 +msgid "Cancelled" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:52 +msgid "Cancelled Document restored as Draft" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:13 +msgctxt "Freeze message while cancelling a document" +msgid "Cancelling" +msgstr "" + +#: frappe/desk/form/linked_with.py:381 +msgid "Cancelling documents" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:91 +msgid "Cancelling {0}" +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.py:265 +msgid "Cannot Download Report due to insufficient permissions" +msgstr "" + +#: frappe/client.py:452 +msgid "Cannot Fetch Values" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.py:156 +msgid "Cannot Remove" +msgstr "" + +#: frappe/model/base_document.py:1222 +msgid "Cannot Update After Submit" +msgstr "" + +#: frappe/core/doctype/file/file.py:646 +msgid "Cannot access file path {0}" +msgstr "" + +#: frappe/public/js/workflow_builder/utils.js:183 +msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:110 +msgid "Cannot cancel before submitting. See Transition {0}" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:294 +msgid "Cannot cancel {0}." +msgstr "" + +#: frappe/model/document.py:1017 +msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" +msgstr "" + +#: frappe/model/document.py:1031 +msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" +msgstr "" + +#: frappe/public/js/workflow_builder/utils.js:170 +msgid "Cannot change state of Cancelled Document ({0} State)" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:99 +msgid "Cannot change state of Cancelled Document. Transition row {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1154 +msgid "Cannot change to/from autoincrement autoname in Customize Form" +msgstr "" + +#: frappe/core/doctype/communication/communication.py:169 +msgid "Cannot create a {0} against a child document: {1}" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:272 +msgid "Cannot create private workspace of other users" +msgstr "" + +#: frappe/core/doctype/file/file.py:165 +msgid "Cannot delete Home and Attachments folders" +msgstr "" + +#: frappe/model/delete_doc.py:419 +msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:369 +msgid "Cannot delete standard action. You can hide it if you want" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:391 +msgid "Cannot delete standard document state." +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:321 +msgid "Cannot delete standard field {0}. You can hide it instead." +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:38 +#: frappe/public/js/form_builder/components/Section.vue:117 +#: frappe/public/js/form_builder/components/Section.vue:190 +#: frappe/public/js/form_builder/components/Tabs.vue:56 +msgid "Cannot delete standard field. You can hide it if you want" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:347 +msgid "Cannot delete standard link. You can hide it if you want" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:313 +msgid "Cannot delete system generated field {0}. You can hide it instead." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:215 +msgid "Cannot delete {0}" +msgstr "" + +#: frappe/utils/nestedset.py:312 +msgid "Cannot delete {0} as it has child nodes" +msgstr "" + +#: frappe/desk/doctype/dashboard/dashboard.py:48 +msgid "Cannot edit Standard Dashboards" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:202 +msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:388 +msgid "Cannot edit Standard charts" +msgstr "" + +#: frappe/core/doctype/report/report.py:72 +msgid "Cannot edit a standard report. Please duplicate and create a new report" +msgstr "" + +#: frappe/model/document.py:1037 +msgid "Cannot edit cancelled document" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:378 +msgid "Cannot edit filters for standard charts" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 +msgid "Cannot edit filters for standard number cards" +msgstr "" + +#: frappe/client.py:166 +msgid "Cannot edit standard fields" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 +msgid "Cannot enable {0} for a non-submittable doctype" +msgstr "" + +#: frappe/core/doctype/file/file.py:264 +msgid "Cannot find file {} on disk" +msgstr "" + +#: frappe/core/doctype/file/file.py:586 +msgid "Cannot get file contents of a Folder" +msgstr "" + +#: frappe/printing/page/print/print.js:884 +msgid "Cannot have multiple printers mapped to a single print format." +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1134 +msgid "Cannot import table with more than 5000 rows." +msgstr "" + +#: frappe/model/document.py:1105 +msgid "Cannot link cancelled document: {0}" +msgstr "" + +#: frappe/model/mapper.py:175 +msgid "Cannot map because following condition fails:" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:971 +msgid "Cannot match column {0} with any field" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:176 +msgid "Cannot move row" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:932 +msgid "Cannot remove ID field" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.py:132 +msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:235 +msgid "Cannot set Notification with event {0} on Document Type {1}" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:67 +msgid "Cannot share {0} with submit permission as the doctype {1} is not submittable" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:291 +msgid "Cannot submit {0}." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.js:26 +#: frappe/public/js/frappe/list/bulk_operations.js:366 +msgid "Cannot update {0}" +msgstr "" + +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." +msgstr "" + +#: frappe/model/db_query.py:1168 +msgid "Cannot use {0} in order/group by" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:297 +msgid "Cannot {0} {1}." +msgstr "" + +#: frappe/utils/password_strength.py:181 +msgid "Capitalization doesn't help very much." +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:294 +msgid "Capture" +msgstr "" + +#. Label of the card (Link) field in DocType 'Number Card Link' +#: frappe/desk/doctype/number_card_link/number_card_link.json +msgid "Card" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Card Break" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:262 +msgid "Card Label" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:262 +msgid "Card Links" +msgstr "" + +#. Label of the cards (Table) field in DocType 'Dashboard' +#: frappe/desk/doctype/dashboard/dashboard.json +msgid "Cards" +msgstr "" + +#. Label of the category (Data) field in DocType 'Desktop Icon' +#. Label of the category (Link) field in DocType 'Help Article' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/public/js/frappe/views/interaction.js:72 +#: frappe/website/doctype/help_article/help_article.json +msgid "Category" +msgstr "" + +#. Label of the category_description (Text) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json +msgid "Category Description" +msgstr "" + +#. Label of the category_name (Data) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json +msgid "Category Name" +msgstr "" + +#. Option for the 'Align' (Select) field in DocType 'Letter Head' +#. Option for the 'Text Align' (Select) field in DocType 'Web Page' +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Center" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:16 +msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:11 +#: frappe/tests/test_translate.py:111 +msgid "Change" +msgstr "" + +#: frappe/tests/test_translate.py:112 +msgctxt "Coins" +msgid "Change" +msgstr "" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:38 +msgid "Change Image" +msgstr "" + +#. Label of the label (Data) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Change Label (via Custom Translation)" +msgstr "" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:45 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:141 +msgid "Change Letter Head" +msgstr "" + +#. Label of the change_password (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Change Password" +msgstr "" + +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:27 +msgid "Change Print Format" +msgstr "" + +#. Description of the 'Update Series Counter' (Section Break) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Change the starting / current sequence number of an existing series.
\n\n" +"Warning: Incorrectly updating counters can prevent documents from getting created." +msgstr "" + +#. Label of the changed_at (Datetime) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Changed at" +msgstr "" + +#. Label of the changed_by (Link) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Changed by" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +msgid "Changelog Feed" +msgstr "" + +#. Label of the changed_values (HTML) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Changes" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.js:5 +msgid "Changing any setting will reflect on all the email accounts associated with this domain." +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.js:67 +msgid "Changing rounding method on site with data can result in unexpected behaviour." +msgstr "" + +#. Label of the channel (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Channel" +msgstr "" + +#. Label of the chart (Link) field in DocType 'Dashboard Chart Link' +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Chart" +msgstr "" + +#. Label of the chart_config (Code) field in DocType 'Dashboard Settings' +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +msgid "Chart Configuration" +msgstr "" + +#. Label of the chart_name (Data) field in DocType 'Dashboard Chart' +#. Label of the chart_name (Link) field in DocType 'Workspace Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/workspace_chart/workspace_chart.json +#: frappe/public/js/frappe/views/reports/query_report.js:289 +#: frappe/public/js/frappe/widgets/widget_dialog.js:137 +msgid "Chart Name" +msgstr "" + +#. Label of the chart_options (Code) field in DocType 'Dashboard' +#. Label of the chart_options_section (Section Break) field in DocType +#. 'Dashboard Chart' +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Chart Options" +msgstr "" + +#. Label of the source (Link) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Chart Source" +msgstr "" + +#. Label of the chart_type (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/views/reports/report_view.js:510 +msgid "Chart Type" +msgstr "" + +#. Label of the charts (Table) field in DocType 'Dashboard' +#. Label of the charts (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/workspace/workspace.json +msgid "Charts" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Chat" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Check" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:99 +msgid "Check Request URL" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 +msgid "Check columns to select, drag to set order." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 +msgid "Check the Error Log for more information: {0}" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.js:147 +msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it." +msgstr "" + +#. Description of the 'User must always select' (Check) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Check this if you want to force the user to select a series before saving. There will be no default if you check this." +msgstr "" + +#. Description of the 'Show Full Number' (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." +msgstr "" + +#: frappe/public/js/frappe/desk.js:235 +msgid "Checking one moment" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.js:140 +msgid "Checking this will enable tracking page views for blogs, web pages, etc." +msgstr "" + +#. Description of the 'Hide Custom DocTypes and Reports' (Check) field in +#. DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Checking this will hide custom doctypes and reports cards in Links section" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:78 +msgid "Checking this will publish the page on your website and it'll be visible to everyone." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:104 +msgid "Checking this will show a text area where you can write custom javascript that will run on this page." +msgstr "" + +#: frappe/www/list.py:85 +msgid "Child DocTypes are not allowed" +msgstr "" + +#. Label of the child_doctype (Data) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Child Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1648 +msgid "Child Table {0} for field {1}" +msgstr "" + +#. Description of the 'Is Child Table' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:53 +msgid "Child Tables are shown as a Grid in other DocTypes" +msgstr "" + +#: frappe/database/query.py:662 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:651 +msgid "Choose Existing Card or create New Card" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:571 +msgid "Choose a block or continue typing" +msgstr "" + +#: frappe/public/js/form_builder/components/controls/DataControl.vue:18 +#: frappe/public/js/frappe/form/controls/color.js:5 +msgid "Choose a color" +msgstr "" + +#: frappe/public/js/form_builder/components/controls/DataControl.vue:21 +#: frappe/public/js/frappe/form/controls/icon.js:5 +msgid "Choose an icon" +msgstr "" + +#. Description of the 'Two Factor Authentication method' (Select) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Choose authentication method to be used by all users" +msgstr "" + +#. Label of the city (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "City" +msgstr "By" + +#. Label of the city (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "City/Town" +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:12 +#: frappe/public/js/frappe/form/controls/attach.js:16 +msgid "Clear" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:438 +msgid "Clear & Add Template" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:114 +msgid "Clear & Add template" +msgstr "" + +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2112 +msgctxt "Button in list view actions menu" +msgid "Clear Assignment" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:287 +msgid "Clear Cache and Reload" +msgstr "" + +#: frappe/core/doctype/error_log/error_log_list.js:12 +msgid "Clear Error Logs" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:299 +msgid "Clear Filters" +msgstr "" + +#. Label of the days (Int) field in DocType 'Logs To Clear' +#: frappe/core/doctype/logs_to_clear/logs_to_clear.json +msgid "Clear Logs After (days)" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:144 +msgid "Clear User Permissions" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:439 +msgid "Clear the email message and add the template" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.py:215 +msgid "Clearing end date, as it cannot be in the past for published pages." +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:194 +msgid "Click On Customize to add your first widget" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 +msgid "Click here" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 +msgid "Click on a file to select it." +msgstr "" + +#: frappe/templates/emails/login_with_email_link.html:19 +msgid "Click on the button to log in to {0}" +msgstr "" + +#: frappe/templates/emails/data_deletion_approval.html:2 +msgid "Click on the link below to approve the request" +msgstr "" + +#: frappe/templates/emails/new_user.html:7 +msgid "Click on the link below to complete your registration and set a new password" +msgstr "" + +#: frappe/templates/emails/download_data.html:3 +msgid "Click on the link below to download your data" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:4 +msgid "Click on the link below to verify your request" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:118 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:41 +#: frappe/website/doctype/website_settings/website_settings.py:161 +msgid "Click on {0} to generate Refresh Token." +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 +#: frappe/desk/doctype/number_card/number_card.js:222 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:99 +#: frappe/website/doctype/web_form/web_form.js:236 +msgid "Click table to edit" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 +#: frappe/desk/doctype/number_card/number_card.js:419 +msgid "Click to Set Dynamic Filters" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 +#: frappe/desk/doctype/number_card/number_card.js:278 +#: frappe/website/doctype/web_form/web_form.js:262 +msgid "Click to Set Filters" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:741 +msgid "Click to sort by {0}" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Clicked" +msgstr "" + +#. Label of the client (Link) field in DocType 'OAuth Authorization Code' +#. Label of the client (Link) field in DocType 'OAuth Bearer Token' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "Client" +msgstr "" + +#. Label of the client_code_section (Section Break) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Client Code" +msgstr "" + +#. Label of the sb_client_credentials_section (Section Break) field in DocType +#. 'Connected App' +#. Label of the client_credentials (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Client Credentials" +msgstr "" + +#. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' +#. Label of the client_id (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Client ID" +msgstr "" + +#. Label of the client_id (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Client Id" +msgstr "" + +#. Label of the client_information (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Client Information" +msgstr "" + +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#. Label of the client_script (Code) field in DocType 'DocType Layout' +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/website/doctype/web_page/web_page.js:103 +msgid "Client Script" +msgstr "" + +#. Label of the client_secret (Password) field in DocType 'Connected App' +#. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' +#. Label of the client_secret (Password) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Client Secret" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "" + +#. Label of the client_urls (Section Break) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Client URLs" +msgstr "" + +#. Label of the client_script (Code) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Client script" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:39 +#: frappe/desk/doctype/todo/todo.js:23 +#: frappe/public/js/frappe/form/form_tour.js:17 +#: frappe/public/js/frappe/ui/messages.js:251 +#: frappe/website/js/bootstrap-4.js:24 +msgid "Close" +msgstr "Luk" + +#. Label of the close_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Close Condition" +msgstr "" + +#: frappe/public/js/form_builder/components/FieldProperties.vue:79 +msgid "Close properties" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType 'ToDo' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +msgid "Closed" +msgstr "Lukket" + +#: frappe/templates/discussions/comment_box.html:25 +#: frappe/templates/discussions/reply_section.html:53 +#: frappe/templates/discussions/topic_modal.html:11 +msgid "Cmd+Enter to add comment" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the code (Data) field in DocType 'Country' +#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/geo/doctype/country/country.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Code" +msgstr "" + +#. Label of the code_challenge (Data) field in DocType 'OAuth Authorization +#. Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Code Challenge" +msgstr "" + +#. Label of the code_editor_type (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Code Editor Type" +msgstr "" + +#. Label of the code_challenge_method (Select) field in DocType 'OAuth +#. Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Code challenge method" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:276 +#: frappe/public/js/frappe/ui/sidebar.html:11 +#: frappe/public/js/frappe/widgets/base_widget.js:159 +msgid "Collapse" +msgstr "" + +#: frappe/public/js/frappe/form/controls/code.js:184 +msgctxt "Shrink code field." +msgid "Collapse" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/treeview.js:123 +msgid "Collapse All" +msgstr "" + +#. Label of the collapsible (Check) field in DocType 'DocField' +#. Label of the collapsible (Check) field in DocType 'Custom Field' +#. Label of the collapsible (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Collapsible" +msgstr "" + +#. Label of the collapsible_depends_on (Code) field in DocType 'Custom Field' +#. Label of the collapsible_depends_on (Code) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Collapsible Depends On" +msgstr "" + +#. Label of the collapsible_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Collapsible Depends On (JS)" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the color (Data) field in DocType 'DocType' +#. Label of the color (Select) field in DocType 'DocType State' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the color (Color) field in DocType 'Dashboard Chart' +#. Label of the color (Color) field in DocType 'Dashboard Chart Field' +#. Label of the color (Data) field in DocType 'Desktop Icon' +#. Label of the color (Color) field in DocType 'Event' +#. Label of the color (Color) field in DocType 'Number Card' +#. Label of the color (Color) field in DocType 'ToDo' +#. Label of the color (Color) field in DocType 'Workspace Shortcut' +#. Name of a DocType +#. Label of the color (Color) field in DocType 'Color' +#. Label of the color (Color) field in DocType 'Social Link Settings' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/views/reports/query_report.js:1241 +#: frappe/public/js/frappe/widgets/widget_dialog.js:546 +#: frappe/public/js/frappe/widgets/widget_dialog.js:694 +#: frappe/website/doctype/color/color.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Color" +msgstr "" + +#. Label of the column (Data) field in DocType 'Recorder Suggested Index' +#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:7 +#: frappe/public/js/form_builder/components/Section.vue:270 +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8 +msgid "Column" +msgstr "" + +#: frappe/core/doctype/report/boilerplate/controller.py:28 +msgid "Column 1" +msgstr "" + +#: frappe/core/doctype/report/boilerplate/controller.py:33 +msgid "Column 2" +msgstr "" + +#: frappe/desk/doctype/kanban_board/kanban_board.py:84 +msgid "Column {0} already exist." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Column Break" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:140 +msgid "Column Labels:" +msgstr "" + +#. Label of the column_name (Data) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/data_export/exporter.py:25 +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Column Name" +msgstr "" + +#: frappe/desk/doctype/kanban_board/kanban_board.py:45 +msgid "Column Name cannot be empty" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:455 +msgid "Column Width" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:662 +msgid "Column width cannot be zero." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:380 +msgid "Column {0}" +msgstr "" + +#. Label of the columns (Int) field in DocType 'DocField' +#. Label of the columns_section (Section Break) field in DocType 'Report' +#. Label of the columns (Table) field in DocType 'Report' +#. Label of the columns (Int) field in DocType 'Custom Field' +#. Label of the columns (Int) field in DocType 'Customize Form Field' +#. Label of the columns (Table) field in DocType 'Kanban Board' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report/report.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +msgid "Columns" +msgstr "" + +#. Label of the columns (HTML Editor) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Columns / Fields" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 +msgid "Columns based on" +msgstr "" + +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 +msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Comm10E" +msgstr "" + +#. Name of a DocType +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/version/version_view.html:3 +#: frappe/public/js/frappe/form/controls/comment.js:9 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:237 +#: frappe/templates/includes/comments/comments.html:34 +msgid "Comment" +msgstr "" + +#. Label of the comment_by (Data) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Comment By" +msgstr "" + +#. Label of the comment_email (Data) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Comment Email" +msgstr "" + +#. Label of the comment_type (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Comment Type" +msgstr "" + +#: frappe/desk/form/utils.py:58 +msgid "Comment can only be edited by the owner" +msgstr "" + +#: frappe/desk/form/utils.py:75 +msgid "Comment publicity can only be updated by the original author or a System Manager." +msgstr "" + +#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 +#: frappe/public/js/frappe/model/meta.js:209 +#: frappe/public/js/frappe/model/model.js:135 +#: frappe/website/doctype/web_form/templates/web_form.html:129 +msgid "Comments" +msgstr "Kommentarer" + +#. Description of the 'Timeline Field' (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Comments and Communications will be associated with this linked document" +msgstr "" + +#: frappe/templates/includes/comments/comments.py:52 +msgid "Comments cannot have links or email addresses" +msgstr "" + +#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Commercial Rounding" +msgstr "" + +#. Label of the commit (Check) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "Commit" +msgstr "" + +#. Label of the committed (Check) field in DocType 'Console Log' +#: frappe/desk/doctype/console_log/console_log.json +msgid "Committed" +msgstr "" + +#: frappe/utils/password_strength.py:176 +msgid "Common names and surnames are easy to guess." +msgstr "" + +#. Name of a DocType +#. Option for the 'Communication Type' (Select) field in DocType +#. 'Communication' +#. Label of the communication (Data) field in DocType 'Email Flag Queue' +#. Label of the communication (Link) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/tests/test_translate.py:35 frappe/tests/test_translate.py:119 +msgid "Communication" +msgstr "Kommunikation" + +#. Name of a DocType +#: frappe/core/doctype/communication_link/communication_link.json +msgid "Communication Link" +msgstr "" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Communication Logs" +msgstr "" + +#. Label of the communication_type (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Communication Type" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:32 +msgid "Communication secret not set" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/company_history/company_history.json +#: frappe/www/about.html:29 +msgid "Company History" +msgstr "" + +#. Label of the company_introduction (Text Editor) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Company Introduction" +msgstr "" + +#. Label of the company_name (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Company Name" +msgstr "" + +#: frappe/core/doctype/server_script/server_script.js:14 +#: frappe/custom/doctype/client_script/client_script.js:56 +#: frappe/public/js/frappe/utils/diffview.js:28 +msgid "Compare Versions" +msgstr "" + +#: frappe/core/doctype/server_script/server_script.py:159 +msgid "Compilation warning" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.py:123 +msgid "Compiled Successfully" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/www/complete_signup.html:21 +msgid "Complete" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:203 +msgid "Complete By" +msgstr "" + +#: frappe/core/doctype/user/user.py:479 +#: frappe/templates/emails/new_user.html:10 +msgid "Complete Registration" +msgstr "" + +#: frappe/public/js/frappe/ui/slides.js:355 +msgctxt "Finish the setup wizard" +msgid "Complete Setup" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#. Option for the 'Status' (Select) field in DocType 'Workflow Action' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/doctype/boilerplate/controller_list.html:31 +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/desk/doctype/event/event.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/utils/goal.py:117 +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Completed" +msgstr "Udført" + +#. Label of the completed_by_role (Link) field in DocType 'Workflow Action' +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Completed By Role" +msgstr "" + +#. Label of the completed_by (Link) field in DocType 'Workflow Action' +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Completed By User" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#: frappe/website/doctype/web_template/web_template.json +msgid "Component" +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:184 +msgid "Compose Email" +msgstr "" + +#. Option for the 'Row Format' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Compressed" +msgstr "" + +#. Label of the condition (Select) field in DocType 'Document Naming Rule +#. Condition' +#. Label of the condition (Code) field in DocType 'Navbar Item' +#. Label of the condition (Small Text) field in DocType 'Bulk Update' +#. Label of the condition (Code) field in DocType 'Notification' +#. Label of the condition (Data) field in DocType 'Notification Recipient' +#. Label of the condition (Small Text) field in DocType 'Webhook' +#. Label of the condition (Code) field in DocType 'Workflow Transition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 +#: frappe/email/doctype/notification/notification.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/website/doctype/web_form/web_form.js:197 +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Condition" +msgstr "" + +#. Label of the condition_json (JSON) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Condition JSON" +msgstr "" + +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + +#. Label of the condition_description (HTML) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Condition description" +msgstr "" + +#. Label of the conditions (Table) field in DocType 'Document Naming Rule' +#. Label of the conditions (Section Break) field in DocType 'Workflow +#. Transition' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Conditions" +msgstr "" + +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "" + +#. Label of the configuration_section (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Configuration" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:492 +msgid "Configure Chart" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:407 +msgid "Configure Columns" +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:200 +msgid "Configure Recorder" +msgstr "" + +#: frappe/public/js/print_format_builder/Field.vue:103 +msgid "Configure columns for {0}" +msgstr "" + +#. Description of the 'Amended Documents' (Section Break) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Configure how amended documents will be named.
\n\n" +"Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
\n\n" +"Default Naming will make the amended document to behave same as new documents." +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Configure various aspects of how document naming works like naming series, current counter." +msgstr "" + +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 +#: frappe/www/update-password.html:66 +msgid "Confirm" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:31 +msgctxt "Title of confirmation dialog" +msgid "Confirm" +msgstr "" + +#: frappe/integrations/oauth2.py:138 +msgid "Confirm Access" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:93 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:101 +msgid "Confirm Deletion of Account" +msgstr "" + +#: frappe/core/doctype/user/user.js:184 +msgid "Confirm New Password" +msgstr "" + +#: frappe/www/update-password.html:55 +msgid "Confirm Password" +msgstr "" + +#: frappe/templates/emails/data_deletion_approval.html:6 +#: frappe/templates/emails/delete_data_confirmation.html:7 +msgid "Confirm Request" +msgstr "" + +#. Label of the confirmation_email_template (Link) field in DocType 'Email +#. Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Confirmation Email Template" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 +msgid "Confirmed" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:525 +msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.js:20 +msgid "Connect to {}" +msgstr "" + +#. Label of the connected_app (Link) field in DocType 'Email Account' +#. Name of a DocType +#. Label of the connected_app (Link) field in DocType 'Token Cache' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Connected App" +msgstr "" + +#. Label of the connected_user (Link) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Connected User" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 +msgid "Connected to QZ Tray!" +msgstr "" + +#: frappe/public/js/frappe/request.js:36 +msgid "Connection Lost" +msgstr "" + +#: frappe/templates/pages/integrations/gcalendar-success.html:3 +msgid "Connection Success" +msgstr "" + +#: frappe/public/js/frappe/dom.js:446 +msgid "Connection lost. Some features might not work." +msgstr "" + +#. Label of the connections_tab (Tab Break) field in DocType 'DocType' +#. Label of the connections_tab (Tab Break) field in DocType 'Module Def' +#. Label of the connections_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/form/dashboard.js:54 +msgid "Connections" +msgstr "" + +#. Label of the console (Code) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "Console" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/console_log/console_log.json +msgid "Console Log" +msgstr "" + +#: frappe/desk/doctype/console_log/console_log.py:24 +msgid "Console Logs can not be deleted" +msgstr "" + +#. Label of the constraints_section (Section Break) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Constraints" +msgstr "" + +#. Name of a DocType +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.js:113 +msgid "Contact" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
{0}" +msgstr "" + +#. Label of the sb_01 (Section Break) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Contact Details" +msgstr "" + +#. Name of a DocType +#: frappe/contacts/doctype/contact_email/contact_email.json +msgid "Contact Email" +msgstr "" + +#. Label of the phone_nos (Table) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Contact Numbers" +msgstr "" + +#. Name of a DocType +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Contact Phone" +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:291 +msgid "Contact Synced with Google Contacts." +msgstr "" + +#: frappe/www/contact.html:4 +msgid "Contact Us" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/workspace/website/website.json +msgid "Contact Us Settings" +msgstr "" + +#. Description of the 'Query Options' (Small Text) field in DocType 'Contact Us +#. Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." +msgstr "" + +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "Kontakter" + +#: frappe/utils/change_log.py:362 +msgid "Contains {0} security fix" +msgstr "" + +#: frappe/utils/change_log.py:360 +msgid "Contains {0} security fixes" +msgstr "" + +#. Label of the content (HTML Editor) field in DocType 'Comment' +#. Label of the content (Text Editor) field in DocType 'Note' +#. Label of the content (Long Text) field in DocType 'Workspace' +#. Label of the content (Text Editor) field in DocType 'Help Article' +#. Label of the section_title (Tab Break) field in DocType 'Web Page' +#. Label of the sb1 (Section Break) field in DocType 'Web Page' +#. Label of the content (Data) field in DocType 'Web Page View' +#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/utils/utils.js:1782 +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:41 +msgid "Content" +msgstr "" + +#. Label of the content_hash (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Content Hash" +msgstr "" + +#. Label of the content_type (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Content Type" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:86 +msgid "Content data shoud be a list" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:91 +msgid "Content type for building the page" +msgstr "" + +#. Label of the context (Data) field in DocType 'Translation' +#. Label of the context_section (Section Break) field in DocType 'Web Page' +#: frappe/core/doctype/translation/translation.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Context" +msgstr "" + +#. Label of the context_script (Code) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Context Script" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:204 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:232 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:272 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:312 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:361 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:383 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:423 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:531 +msgid "Continue" +msgstr "" + +#. Label of the contributed (Check) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Contributed" +msgstr "" + +#. Label of the contribution_docname (Data) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Contribution Document Name" +msgstr "" + +#. Label of the contribution_status (Select) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Contribution Status" +msgstr "" + +#. Description of the 'Sign ups' (Select) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1036 +msgid "Copied to clipboard." +msgstr "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:93 +msgid "Copy Link" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:29 +msgid "Copy embed code" +msgstr "" + +#: frappe/public/js/frappe/request.js:621 +msgid "Copy error to clipboard" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:507 +msgid "Copy to Clipboard" +msgstr "" + +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "" + +#. Label of the copyright (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Copyright" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:125 +msgid "Core DocTypes cannot be customized." +msgstr "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:36 +msgid "Core Modules {0} cannot be searched in Global Search." +msgstr "" + +#: frappe/printing/page/print/print.js:660 +msgid "Correct version :" +msgstr "" + +#: frappe/email/smtp.py:78 +msgid "Could not connect to outgoing email server" +msgstr "" + +#: frappe/model/document.py:1101 +msgid "Could not find {0}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:933 +msgid "Could not map column {0} to field {1}" +msgstr "" + +#: frappe/database/query.py:566 +msgid "Could not parse field: {0}" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:234 +msgid "Could not start up:" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:383 +msgid "Couldn't save, please check the data you have entered" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#. Label of the count (Int) field in DocType 'System Health Report Workers' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +#: frappe/public/js/frappe/ui/group_by/group_by.js:19 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 +#: frappe/workflow/doctype/workflow/workflow.js:162 +msgid "Count" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:540 +msgid "Count Customizations" +msgstr "" + +#. Label of the section_break_5 (Section Break) field in DocType 'Workspace +#. Shortcut' +#. Label of the stats_filter (Code) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:525 +msgid "Count Filter" +msgstr "" + +#: frappe/public/js/frappe/form/dashboard.js:509 +msgid "Count of linked documents" +msgstr "" + +#. Label of the counter (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Counter" +msgstr "" + +#. Label of the country (Link) field in DocType 'Address' +#. Label of the country (Link) field in DocType 'Address Template' +#. Label of the country (Link) field in DocType 'System Settings' +#. Name of a DocType +#. Label of the country (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/geo/doctype/country/country.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Country" +msgstr "" + +#: frappe/utils/__init__.py:132 +msgid "Country Code Required" +msgstr "" + +#. Label of the country_name (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "Country Name" +msgstr "" + +#. Label of the county (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "County" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:23 +#: frappe/public/js/frappe/utils/number_systems.js:45 +msgctxt "Number system" +msgid "Cr" +msgstr "" + +#. Label of the create (Check) field in DocType 'Custom DocPerm' +#. Label of the create (Check) field in DocType 'DocPerm' +#. Label of the create (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/communication/communication.js:117 +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 +#: frappe/public/js/frappe/form/reminders.js:49 +#: frappe/public/js/frappe/views/file/file_view.js:112 +#: frappe/public/js/frappe/views/interaction.js:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 +#: frappe/public/js/frappe/views/workspace/workspace.js:469 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:46 +msgid "Create" +msgstr "Skabe" + +#: frappe/core/doctype/doctype/doctype_list.js:103 +msgid "Create & Continue" +msgstr "" + +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:49 +msgid "Create Address" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 +msgid "Create Card" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 +msgid "Create Chart" +msgstr "" + +#: frappe/public/js/form_builder/components/controls/TableControl.vue:62 +msgid "Create Child Doctype" +msgstr "" + +#. Label of the create_contact (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Create Contacts from Incoming Emails" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Create Entry" +msgstr "" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:59 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:195 +msgid "Create Letter Head" +msgstr "" + +#. Label of the create_log (Check) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Create Log" +msgstr "" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:41 +#: frappe/public/js/frappe/views/treeview.js:378 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:41 +msgid "Create New" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:514 +msgctxt "Create a new document from list view" +msgid "Create New" +msgstr "" + +#: frappe/core/doctype/doctype/doctype_list.js:101 +msgid "Create New DocType" +msgstr "" + +#: frappe/public/js/frappe/list/list_view_select.js:204 +msgid "Create New Kanban Board" +msgstr "" + +#: frappe/core/doctype/user/user.js:264 +msgid "Create User Email" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_start.html:16 +msgid "Create a New Format" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:9 +msgid "Create a Reminder" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 +msgid "Create a new ..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:156 +msgid "Create a new record" +msgstr "" + +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 +#: frappe/public/js/frappe/form/link_selector.js:139 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 +msgid "Create a new {0}" +msgstr "" + +#: frappe/www/login.html:162 +msgid "Create a {0} Account" +msgstr "" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 +msgid "Create or Edit Print Format" +msgstr "" + +#: frappe/workflow/page/workflow_builder/workflow_builder.js:34 +msgid "Create or Edit Workflow" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:509 +msgid "Create your first {0}" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:16 +msgid "Create your workflow visually using the Workflow Builder." +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/views/file/file_view.js:370 +msgid "Created" +msgstr "" + +#. Label of the created_at (Datetime) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Created At" +msgstr "" + +#: frappe/model/meta.py:58 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:73 +#: frappe/public/js/frappe/model/meta.js:206 +#: frappe/public/js/frappe/model/model.js:123 +msgid "Created By" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:65 +msgid "Created Custom Field {0} in {1}" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241 +#: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:53 +#: frappe/public/js/frappe/model/meta.js:201 +#: frappe/public/js/frappe/model/model.js:125 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:479 +msgid "Created On" +msgstr "" + +#: frappe/public/js/frappe/desk.js:517 +#: frappe/public/js/frappe/views/treeview.js:393 +msgid "Creating {0}" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:41 +msgid "Creation of this document is only permitted in developer mode." +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Cron" +msgstr "" + +#. Label of the cron_format (Data) field in DocType 'Scheduled Job Type' +#. Label of the cron_format (Data) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Cron Format" +msgstr "" + +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62 +msgid "Cron format is required for job types with Cron frequency." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:34 +msgid "Crop" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Ctrl + Down" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Ctrl + Up" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:32 +msgid "Ctrl+Enter to add comment" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Label of the currency (Link) field in DocType 'System Settings' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the currency (Link) field in DocType 'Dashboard Chart' +#. Label of the currency (Link) field in DocType 'Number Card' +#. Name of a DocType +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:414 +#: frappe/geo/doctype/currency/currency.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Currency" +msgstr "Valuta" + +#. Label of the currency_name (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Currency Name" +msgstr "" + +#. Label of the currency_precision (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Currency Precision" +msgstr "" + +#. Description of a DocType +#: frappe/geo/doctype/currency/currency.json +msgid "Currency list stores the currency value, its symbol and fraction unit" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Current" +msgstr "" + +#. Label of the current_job_id (Link) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Current Job ID" +msgstr "" + +#. Label of the current_value (Int) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Current Value" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "Current status" +msgstr "" + +#: frappe/public/js/frappe/form/form_viewers.js:5 +msgid "Currently Viewing" +msgstr "" + +#. Label of the custom (Check) field in DocType 'DocType Action' +#. Label of the custom (Check) field in DocType 'DocType Link' +#. Label of the custom (Check) field in DocType 'DocType State' +#. Label of the custom (Check) field in DocType 'Module Def' +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Label of the custom (Check) field in DocType 'Desktop Icon' +#. Option for the 'Type' (Select) field in DocType 'Number Card' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_type/user_type_list.js:7 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/notification/notification.json +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/public/js/frappe/form/reminders.js:20 +msgid "Custom" +msgstr "" + +#. Label of the custom_base_url (Check) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Custom Base URL" +msgstr "" + +#. Label of the custom_block_name (Link) field in DocType 'Workspace Custom +#. Block' +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json +msgid "Custom Block Name" +msgstr "" + +#. Label of the custom_blocks_tab (Tab Break) field in DocType 'Workspace' +#. Label of the custom_blocks (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Custom Blocks" +msgstr "" + +#. Label of the css (Code) field in DocType 'Print Format' +#. Label of the custom_css (Code) field in DocType 'Web Form' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Custom CSS" +msgstr "" + +#. Label of the custom_configuration_section (Section Break) field in DocType +#. 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Custom Configuration" +msgstr "" + +#. Label of the custom_delimiters (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Custom Delimiters" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/custom_docperm/custom_docperm.json +msgid "Custom DocPerm" +msgstr "" + +#. Label of the custom_select_doctypes (Table) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Custom Document Types (Select Permission)" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:105 +msgid "Custom Document Types Limit Exceeded" +msgstr "" + +#: frappe/desk/desktop.py:524 +msgid "Custom Documents" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Custom Field" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:220 +msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account." +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:277 +msgid "Custom Fields can only be added to a standard DocType." +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:274 +msgid "Custom Fields cannot be added to core DocTypes." +msgstr "" + +#. Label of the custom_footer_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Custom Footer" +msgstr "" + +#. Label of the custom_format (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Custom Format" +msgstr "" + +#. Label of the ldap_custom_group_search (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Custom Group Search" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:122 +msgid "Custom Group Search if filled needs to contain the user placeholder {0}, eg uid={0},ou=users,dc=example,dc=com" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:190 +#: frappe/printing/page/print_format_builder/print_format_builder.js:728 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162 +msgid "Custom HTML" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +msgid "Custom HTML Block" +msgstr "" + +#. Label of the custom_html_help (HTML) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Custom HTML Help" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:114 +msgid "Custom LDAP Directoy Selected, please ensure 'LDAP Group Member attribute' and 'Group Object Class' are entered" +msgstr "" + +#. Label of the label (Data) field in DocType 'Web Form Field' +#. Label of the label (Data) field in DocType 'Web Form List Column' +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +msgid "Custom Label" +msgstr "" + +#. Label of the custom_menu (Table) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Custom Menu Items" +msgstr "" + +#. Label of the custom_options (Code) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Custom Options" +msgstr "" + +#. Label of the custom_overrides (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Custom Overrides" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Custom Report" +msgstr "" + +#: frappe/desk/desktop.py:525 +msgid "Custom Reports" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/custom_role/custom_role.json +msgid "Custom Role" +msgstr "" + +#. Label of the custom_scss (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Custom SCSS" +msgstr "" + +#. Label of the custom_sidebar_menu (Section Break) field in DocType 'Portal +#. Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Custom Sidebar Menu" +msgstr "" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Custom Translation" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:423 +msgid "Custom field renamed to {0} successfully." +msgstr "" + +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "" + +#. Label of the custom (Check) field in DocType 'DocType' +#. Label of the custom (Check) field in DocType 'Website Theme' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:83 +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Custom?" +msgstr "" + +#. Group in DocType's connections +#. Group in Module Def's connections +#. Label of a Card Break in the Build Workspace +#. Label of the customization_tab (Tab Break) field in DocType 'Web Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/workspace/build/build.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Customization" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:358 +msgid "Customizations Discarded" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:465 +msgid "Customizations Reset" +msgstr "" + +#: frappe/modules/utils.py:96 +msgid "Customizations for {0} exported to:
{1}" +msgstr "" + +#: frappe/printing/page/print/print.js:184 +#: frappe/public/js/frappe/form/templates/print_layout.html:39 +#: frappe/public/js/frappe/form/toolbar.js:600 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 +msgid "Customize" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1949 +msgctxt "Button in list view menu" +msgid "Customize" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:89 +msgid "Customize Child Table" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:38 +msgid "Customize Dashboard" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:33 +#: frappe/core/doctype/doctype/doctype.js:61 +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +msgid "Customize Form" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:100 +msgid "Customize Form - {0}" +msgstr "" + +#. Name of a DocType +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Customize Form Field" +msgstr "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Customize properties, naming, fields and more for standard doctypes" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:144 +msgid "Cut" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Cyan" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#. Option for the 'Request Method' (Select) field in DocType 'Webhook' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/webhook/webhook.json +msgid "DELETE" +msgstr "" + +#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType' +#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "DESC" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "DLE" +msgstr "" + +#: frappe/templates/print_formats/standard_macros.html:215 +msgid "DRAFT" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Frequency' (Select) field in DocType 'User' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:398 +#: frappe/website/report/website_analytics/website_analytics.js:23 +msgid "Daily" +msgstr "" + +#: frappe/templates/emails/upcoming_events.html:8 +msgid "Daily Event Digest is sent for Calendar Events where reminders are set." +msgstr "" + +#: frappe/desk/doctype/event/event.py:104 +msgid "Daily Events should finish on the Same Day." +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Daily Long" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Daily Maintenance" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Danger" +msgstr "" + +#. Option for the 'Desk Theme' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Dark" +msgstr "" + +#. Label of the dark_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Dark Color" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:65 +msgid "Dark Theme" +msgstr "" + +#. Label of the dashboard (Check) field in DocType 'User' +#. Label of a Link in the Build Workspace +#. Name of a DocType +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/core/doctype/user/user.json +#: frappe/core/page/dashboard_view/dashboard_view.js:10 +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 +#: frappe/public/js/frappe/utils/utils.js:935 +msgid "Dashboard" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8 +msgid "Dashboard Chart" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json +msgid "Dashboard Chart Field" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Dashboard Chart Link" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgid "Dashboard Chart Source" +msgstr "" + +#. Name of a role +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Dashboard Manager" +msgstr "" + +#. Label of the dashboard_name (Data) field in DocType 'Dashboard' +#: frappe/desk/doctype/dashboard/dashboard.json +msgid "Dashboard Name" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +msgid "Dashboard Settings" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:204 +msgid "Dashboard View" +msgstr "" + +#. Label of the tab_break_2 (Tab Break) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Dashboards" +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#. Label of the data (Code) field in DocType 'Deleted Document' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Label of the data (Code) field in DocType 'Version' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the webhook_data (Table) field in DocType 'Webhook' +#. Label of the data (Code) field in DocType 'Webhook Request Log' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/deleted_document/deleted_document.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/core/doctype/version/version.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Data" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:59 +msgid "Data Clipped" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/data_export/data_export.json +msgid "Data Export" +msgstr "" + +#. Name of a DocType +#. Label of the data_import (Link) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/data_import_log/data_import_log.json +msgid "Data Import" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/data_import_log/data_import_log.json +msgid "Data Import Log" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:174 +msgid "Data Import Template" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:619 +msgid "Data Too Long" +msgstr "" + +#. Label of the database (Data) field in DocType 'System Health Report' +#. Label of the database_section (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Database" +msgstr "" + +#. Label of the engine (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Database Engine" +msgstr "" + +#. Label of the database_processes_section (Section Break) field in DocType +#. 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "Database Processes" +msgstr "" + +#: frappe/public/js/frappe/doctype/index.js:38 +msgid "Database Row Size Utilization" +msgstr "" + +#. Name of a report +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json +msgid "Database Storage Usage By Tables" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:251 +msgid "Database Table Row Size Limit" +msgstr "" + +#: frappe/public/js/frappe/doctype/index.js:40 +msgid "Database Table Row Size Utilization: {0}%, this limits number of fields you can add." +msgstr "" + +#. Label of the database_version (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Database Version" +msgstr "" + +#. Label of the communication_date (Datetime) field in DocType 'Activity Log' +#. Label of the communication_date (Datetime) field in DocType 'Communication' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/report/todo/todo.py:38 +#: frappe/public/js/frappe/views/interaction.js:80 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Date" +msgstr "" + +#. Label of the date_format (Select) field in DocType 'Language' +#. Label of the date_format (Select) field in DocType 'System Settings' +#. Label of the date_format (Data) field in DocType 'Country' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/geo/doctype/country/country.json +msgid "Date Format" +msgstr "" + +#. Label of the section_break_dfrx (Section Break) field in DocType 'Audit +#. Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/public/js/frappe/widgets/chart_widget.js:237 +msgid "Date Range" +msgstr "" + +#. Label of the date_and_number_format (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Date and Number Format" +msgstr "" + +#: frappe/public/js/frappe/form/controls/date.js:247 +msgid "Date {0} must be in format: {1}" +msgstr "" + +#: frappe/utils/password_strength.py:129 +msgid "Dates are often easy to guess." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Datetime" +msgstr "" + +#. Label of the day (Select) field in DocType 'Assignment Rule Day' +#. Label of the day (Select) field in DocType 'Auto Repeat Day' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/public/js/frappe/views/calendar/calendar.js:277 +msgid "Day" +msgstr "" + +#. Label of the day_of_week (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Day of Week" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Days After" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Days Before" +msgstr "" + +#. Label of the days_in_advance (Int) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Days Before or After" +msgstr "" + +#: frappe/public/js/frappe/request.js:252 +msgid "Deadlock Occurred" +msgstr "" + +#: frappe/templates/emails/password_reset.html:1 +msgid "Dear" +msgstr "" + +#: frappe/templates/emails/administrator_logged_in.html:1 +msgid "Dear System Manager," +msgstr "" + +#: frappe/templates/emails/account_deletion_notification.html:1 +#: frappe/templates/emails/delete_data_confirmation.html:1 +msgid "Dear User," +msgstr "" + +#: frappe/templates/emails/download_data.html:1 +msgid "Dear {0}" +msgstr "" + +#. Label of the debug_log (Code) field in DocType 'Scheduled Job Log' +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +msgid "Debug Log" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:318 +msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:310 +msgid "Decimal Separator must be a single character" +msgstr "" + +#. Label of the default (Small Text) field in DocType 'DocField' +#. Label of the default (Small Text) field in DocType 'Report Filter' +#. Label of the default (Small Text) field in DocType 'Customize Form Field' +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#. Label of the default (Data) field in DocType 'Web Form Field' +#. Label of the default (Small Text) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/templates/form_grid/fields.html:30 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Default" +msgstr "Standard" + +#: frappe/contacts/doctype/address_template/address_template.py:41 +msgid "Default Address Template cannot be deleted" +msgstr "" + +#. Label of the default_amend_naming (Select) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Default Amendment Naming" +msgstr "" + +#. Label of the default_app (Select) field in DocType 'System Settings' +#. Label of the default_app (Select) field in DocType 'User' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +msgid "Default App" +msgstr "" + +#. Label of the default_email_template (Link) field in DocType 'DocType' +#. Label of the default_email_template (Link) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Default Email Template" +msgstr "" + +#: frappe/email/doctype/email_account/email_account_list.js:13 +msgid "Default Inbox" +msgstr "" + +#. Label of the default_incoming (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:224 +msgid "Default Incoming" +msgstr "" + +#. Label of the is_default (Check) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Default Letter Head" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming +#. Settings' +#. Option for the 'Default Amendment Naming' (Select) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Default Naming" +msgstr "" + +#. Label of the default_outgoing (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:232 +msgid "Default Outgoing" +msgstr "" + +#. Label of the default_portal_home (Data) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Default Portal Home" +msgstr "" + +#. Label of the default_print_format (Data) field in DocType 'DocType' +#. Label of the default_print_format (Link) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Default Print Format" +msgstr "" + +#. Label of the default_print_language (Link) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Default Print Language" +msgstr "" + +#. Label of the default_redirect_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Default Redirect URI" +msgstr "" + +#. Label of the default_role (Link) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Default Role at Time of Signup" +msgstr "" + +#: frappe/email/doctype/email_account/email_account_list.js:16 +msgid "Default Sending" +msgstr "" + +#: frappe/email/doctype/email_account/email_account_list.js:7 +msgid "Default Sending and Inbox" +msgstr "" + +#. Label of the sort_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Default Sort Field" +msgstr "" + +#. Label of the sort_order (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Default Sort Order" +msgstr "" + +#. Label of the field (Data) field in DocType 'Print Format Field Template' +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +msgid "Default Template For Field" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.js:28 +msgid "Default Theme" +msgstr "" + +#. Label of the default_role (Link) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Default User Role" +msgstr "" + +#. Label of the default_user_type (Link) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Default User Type" +msgstr "" + +#. Label of the default (Text) field in DocType 'Custom Field' +#. Label of the default_value (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Default Value" +msgstr "" + +#. Label of the default_view (Select) field in DocType 'DocType' +#. Label of the default_view (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Default View" +msgstr "" + +#. Label of the default_workspace (Link) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Default Workspace" +msgstr "" + +#. Description of the 'Currency' (Link) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Default display currency" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1377 +msgid "Default for 'Check' type of field {0} must be either '0' or '1'" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1390 +msgid "Default value for {0} must be in the list of options." +msgstr "" + +#: frappe/core/doctype/session_default_settings/session_default_settings.py:38 +msgid "Default {0}" +msgstr "" + +#. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Default: \"Contact Us\"" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/defaultvalue/defaultvalue.json +msgid "DefaultValue" +msgstr "" + +#. Label of the defaults_section (Section Break) field in DocType 'DocField' +#. Label of the sb2 (Section Break) field in DocType 'User' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/user/user.json +msgid "Defaults" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:243 +msgid "Defaults Updated" +msgstr "" + +#. Description of a DocType +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Defines actions on states and the next step and allowed roles." +msgstr "" + +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + +#. Description of a DocType +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Defines workflow states and rules for a document." +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Delayed" +msgstr "" + +#. Label of the delete (Check) field in DocType 'Custom DocPerm' +#. Label of the delete (Check) field in DocType 'DocPerm' +#. Label of the delete (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_permission/user_permission_list.js:189 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 +#: frappe/public/js/frappe/form/grid.js:66 +#: frappe/public/js/frappe/form/toolbar.js:464 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 +#: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 +#: frappe/templates/discussions/reply_card.html:35 +#: frappe/templates/discussions/reply_section.html:29 +msgid "Delete" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2174 +msgctxt "Button in list view actions menu" +msgid "Delete" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "Slet" + +#: frappe/www/me.html:65 +msgid "Delete Account" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Delete All" +msgstr "" + +#. Label of the delete_background_exported_reports_after (Int) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Delete Background Exported Reports After (Hours)" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:196 +msgctxt "Title of confirmation dialog" +msgid "Delete Column" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:10 +msgid "Delete Data" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 +msgid "Delete Kanban Board" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:125 +msgctxt "Title of confirmation dialog" +msgid "Delete Section" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:64 +msgctxt "Title of confirmation dialog" +msgid "Delete Tab" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:944 +msgid "Delete and Generate New" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:203 +msgctxt "Button text" +msgid "Delete column" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 +msgid "Delete comment?" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:205 +msgctxt "Button text" +msgid "Delete entire column with fields" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:134 +msgctxt "Button text" +msgid "Delete entire section with fields" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:73 +msgctxt "Button text" +msgid "Delete entire tab with fields" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:132 +msgctxt "Button text" +msgid "Delete section" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:71 +msgctxt "Button text" +msgid "Delete tab" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:29 +msgid "Delete this record to allow sending to this email address" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2179 +msgctxt "Title of confirmation dialog" +msgid "Delete {0} item permanently?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2185 +msgctxt "Title of confirmation dialog" +msgid "Delete {0} items permanently?" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Step' +#: frappe/core/doctype/comment/comment.json +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Deleted" +msgstr "" + +#. Label of the deleted_doctype (Data) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Deleted DocType" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Deleted Document" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Deleted Documents" +msgstr "" + +#. Label of the deleted_name (Data) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Deleted Name" +msgstr "" + +#: frappe/desk/reportview.py:641 +msgid "Deleted all documents successfully" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "" + +#: frappe/desk/reportview.py:618 +msgid "Deleting {0}" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:202 +msgid "Deleting {0} records..." +msgstr "" + +#: frappe/public/js/frappe/model/model.js:692 +msgid "Deleting {0}..." +msgstr "" + +#. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Deletion Steps" +msgstr "" + +#: frappe/core/doctype/page/page.py:110 +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 +msgid "Deletion of this document is only permitted in developer mode." +msgstr "" + +#. Label of the delimiter_options (Data) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Delimiter Options" +msgstr "" + +#: frappe/utils/csvutils.py:76 +msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:306 +msgid "Delimiter must be a single character" +msgstr "" + +#. Label of the delivery_status (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Delivery Status" +msgstr "" + +#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/templates/includes/oauth_confirmation.html:17 +msgid "Deny" +msgstr "" + +#. Label of the department (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Department" +msgstr "" + +#. Label of the dependencies (Data) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:323 +#: frappe/www/attribution.html:29 +msgid "Dependencies" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Dependencies & Licenses" +msgstr "" + +#. Label of the depends_on (Code) field in DocType 'Custom Field' +#. Label of the depends_on (Code) field in DocType 'Customize Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Depends On" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:32 +msgid "Descendants Of" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:33 +msgid "Descendants Of (inclusive)" +msgstr "" + +#. Label of the description (Small Text) field in DocType 'Assignment Rule' +#. Label of the description (Small Text) field in DocType 'Reminder' +#. Label of the description (Small Text) field in DocType 'DocField' +#. Label of the description (Small Text) field in DocType 'DocType' +#. Label of the description (Text) field in DocType 'Customize Form Field' +#. Label of the description (Small Text) field in DocType 'Desktop Icon' +#. Label of the description (Text Editor) field in DocType 'Event' +#. Label of the description (HTML Editor) field in DocType 'Form Tour Step' +#. Label of the description_section (Section Break) field in DocType +#. 'Onboarding Step' +#. Label of the description (Markdown Editor) field in DocType 'Onboarding +#. Step' +#. Label of the description (Small Text) field in DocType 'Tag' +#. Label of the description (Text Editor) field in DocType 'ToDo' +#. Label of the description (HTML Editor) field in DocType 'Workspace Link' +#. Label of the description (Small Text) field in DocType 'Print Heading' +#. Label of the description (Small Text) field in DocType 'UTM Medium' +#. Label of the description (Small Text) field in DocType 'UTM Source' +#. Label of the description (Text) field in DocType 'Web Form Field' +#. Label of the meta_description (Small Text) field in DocType 'Web Page' +#. Label of the description (Text) field in DocType 'Website Slideshow Item' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/todo/todo.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/report/todo/todo.py:39 +#: frappe/printing/doctype/print_heading/print_heading.json +#: frappe/public/js/frappe/form/reminders.js:44 +#: frappe/public/js/frappe/widgets/widget_dialog.js:256 +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +#: frappe/www/attribution.html:24 +msgid "Description" +msgstr "" + +#. Description of the 'Description' (Section Break) field in DocType +#. 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Description to inform the user about any action that is going to be performed" +msgstr "" + +#. Label of the designation (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Designation" +msgstr "" + +#. Label of the desk_access (Check) field in DocType 'Role' +#: frappe/core/doctype/role/role.json +msgid "Desk Access" +msgstr "" + +#. Label of the desk_settings_section (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Desk Settings" +msgstr "" + +#. Label of the desk_theme (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Desk Theme" +msgstr "" + +#. Name of a role +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_group/user_group.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Desk User" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Desktop Icon" +msgstr "" + +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:225 +msgid "Desktop Icon already exists" +msgstr "" + +#. Label of the details_tab (Tab Break) field in DocType 'Module Def' +#. Label of the details (Code) field in DocType 'Scheduled Job Log' +#. Label of the details_tab (Tab Break) field in DocType 'Customize Form' +#. Label of the details (Section Break) field in DocType 'Event' +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json +#: frappe/public/js/form_builder/components/Tabs.vue:92 +#: frappe/public/js/form_builder/store.js:259 +#: frappe/public/js/form_builder/utils.js:38 +#: frappe/public/js/frappe/form/layout.js:152 +#: frappe/public/js/frappe/views/treeview.js:292 +msgid "Details" +msgstr "" + +#. Label of the use_csv_sniffer (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Detect CSV type" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:494 +msgid "Did not add" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:388 +msgid "Did not remove" +msgstr "" + +#: frappe/public/js/frappe/utils/diffview.js:57 +msgid "Diff" +msgstr "" + +#. Description of the 'States' (Section Break) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Different \"States\" this document can exist in. Like \"Open\", \"Pending Approval\" etc." +msgstr "" + +#. Label of the prefix_digits (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Digits" +msgstr "" + +#. Label of the ldap_directory_server (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Directory Server" +msgstr "" + +#. Label of the disable_auto_refresh (Check) field in DocType 'List View +#. Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Auto Refresh" +msgstr "" + +#. Label of the disable_automatic_recency_filters (Check) field in DocType +#. 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Automatic Recency Filters" +msgstr "" + +#. Label of the disable_change_log_notification (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Disable Change Log Notification" +msgstr "" + +#. Label of the disable_comment_count (Check) field in DocType 'List View +#. Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Comment Count" +msgstr "" + +#. Label of the disable_contact_us (Check) field in DocType 'Contact Us +#. Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Disable Contact Us Page" +msgstr "" + +#. Label of the disable_count (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Count" +msgstr "" + +#. Label of the disable_document_sharing (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Disable Document Sharing" +msgstr "" + +#: frappe/core/doctype/report/report.js:39 +msgid "Disable Report" +msgstr "" + +#. Label of the no_smtp_authentication (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Disable SMTP server authentication" +msgstr "" + +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + +#. Label of the disable_sidebar_stats (Check) field in DocType 'List View +#. Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Sidebar Stats" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.js:146 +msgid "Disable Signup for your site" +msgstr "" + +#. Label of the disable_standard_email_footer (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Disable Standard Email Footer" +msgstr "" + +#. Label of the disable_system_update_notification (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Disable System Update Notification" +msgstr "" + +#. Label of the disable_user_pass_login (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Disable Username/Password Login" +msgstr "" + +#. Label of the disable_signup (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Disable signups" +msgstr "" + +#. Label of the disabled (Check) field in DocType 'Assignment Rule' +#. Label of the disabled (Check) field in DocType 'Auto Repeat' +#. Option for the 'Status' (Select) field in DocType 'Auto Repeat' +#. Label of the disabled (Check) field in DocType 'Milestone Tracker' +#. Label of the disabled (Check) field in DocType 'Address' +#. Label of the disabled (Check) field in DocType 'Document Naming Rule' +#. Label of the disabled (Check) field in DocType 'Report' +#. Label of the disabled (Check) field in DocType 'Role' +#. Label of the disabled (Check) field in DocType 'Server Script' +#. Label of the disabled (Check) field in DocType 'Letter Head' +#. Label of the disabled (Check) field in DocType 'Print Format' +#. Label of the disabled (Check) field in DocType 'Print Style' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +#: frappe/contacts/doctype/address/address.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user_list.js:14 +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/public/js/frappe/form/templates/address_list.html:35 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 +msgid "Disabled" +msgstr "Deaktiveret" + +#: frappe/email/doctype/email_account/email_account.js:300 +msgid "Disabled Auto Reply" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:338 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 +#: frappe/public/js/frappe/views/workspace/workspace.js:351 +#: frappe/public/js/frappe/web_form/web_form.js:193 +msgid "Discard" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:44 +msgctxt "Button in web form" +msgid "Discard" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:30 +msgctxt "Discard Email" +msgid "Discard" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:848 +msgid "Discard {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:190 +msgid "Discard?" +msgstr "" + +#: frappe/desk/form/save.py:75 +msgid "Discarded" +msgstr "" + +#. Description of the 'Suggested Indexes' (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Disclaimer: These indexes are suggested based on data and queries performed during this recording. These suggestions may or may not help." +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/discussion_reply/discussion_reply.json +msgid "Discussion Reply" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/discussion_topic/discussion_topic.json +msgid "Discussion Topic" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 +#: frappe/templates/discussions/reply_card.html:16 +#: frappe/templates/discussions/reply_section.html:29 +msgid "Dismiss" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:572 +msgctxt "Stop showing the onboarding widget." +msgid "Dismiss" +msgstr "" + +#. Label of the display (Section Break) field in DocType 'DocField' +#. Label of the updates_tab (Tab Break) field in DocType 'System Settings' +#. Label of the display (Section Break) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Display" +msgstr "" + +#. Label of the depends_on (Code) field in DocType 'Web Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Display Depends On" +msgstr "" + +#. Label of the depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Display Depends On (JS)" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:180 +msgid "Divider" +msgstr "" + +#. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Do Not Create New User" +msgstr "" + +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Do not create new user if user with email does not exist in the system" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1195 +msgid "Do not edit headers which are preset in the template" +msgstr "" + +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.js:71 +msgid "Do you still want to proceed?" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:958 +msgid "Do you want to cancel all linked documents?" +msgstr "" + +#. Label of the webhook_docevent (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Doc Event" +msgstr "" + +#. Label of the sb_doc_events (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Doc Events" +msgstr "" + +#. Label of the doc_status (Select) field in DocType 'Workflow Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Doc Status" +msgstr "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocField" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/docperm/docperm.json +msgid "DocPerm" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/docshare/docshare.json +msgid "DocShare" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:264 +msgid "DocStatus of the following states have changed:
{0}
\n" +"\t\t\t\tDo you want to update the docstatus of existing documents in those states?
\n" +"\t\t\t\tThis does not undo any effect bought in by the document's existing docstatus.\n" +"\t\t\t\t" +msgstr "" + +#. Label of the document_type (Link) field in DocType 'Amended Document Naming +#. Settings' +#. Label of the doctype_name (Link) field in DocType 'Audit Trail' +#. Name of a DocType +#. Group in Module Def's connections +#. Label of the ref_doctype (Link) field in DocType 'Permission Inspector' +#. Label of the ref_doctype (Link) field in DocType 'Version' +#. Label of a shortcut in the Build Workspace +#. Label of the dt (Link) field in DocType 'Client Script' +#. Label of the dt (Link) field in DocType 'Custom Field' +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#. Label of the doc_type (Link) field in DocType 'Property Setter' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' +#. Label of the document_type (Link) field in DocType 'Workspace Quick List' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Label of the webhook_doctype (Link) field in DocType 'Webhook' +#. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/data_export/exporter.py:26 +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/core/doctype/version/version.json +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:15 +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:38 +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:164 +#: frappe/website/doctype/website_slideshow/website_slideshow.js:18 +msgid "DocType" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1578 +msgid "DocType {0} provided for the field {1} must have atleast one Link field" +msgstr "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocType Action" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#. Label of the doctype_event (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "DocType Event" +msgstr "" + +#. Name of a DocType +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +msgid "DocType Layout" +msgstr "" + +#. Name of a DocType +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +msgid "DocType Layout Field" +msgstr "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocType Link" +msgstr "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocType State" +msgstr "" + +#. Label of the doc_view (Select) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:479 +msgid "DocType View" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:657 +msgid "DocType can not be merged" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:651 +msgid "DocType can only be renamed by Administrator" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/doctype/doctype.json +msgid "DocType is a Table / Form in the application." +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:83 +msgid "DocType must be Submittable for the selected Doc Event" +msgstr "" + +#: frappe/client.py:403 +msgid "DocType must be a string" +msgstr "" + +#: frappe/public/js/form_builder/store.js:154 +msgid "DocType must have atleast one field" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:57 +msgid "DocType not supported by Log Settings." +msgstr "" + +#. Description of the 'Document Type' (Link) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "DocType on which this Workflow is applicable." +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:4 +msgid "DocType required" +msgstr "" + +#: frappe/modules/utils.py:175 +msgid "DocType {0} does not exist." +msgstr "" + +#: frappe/modules/utils.py:238 +msgid "DocType {} not found" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1029 +msgid "DocType's name should not start or end with whitespace" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.js:67 +msgid "DocTypes cannot be modified, please use {0} instead" +msgstr "" + +#. Label of the ref_doctype (Link) field in DocType 'Document Follow' +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:682 +msgid "Doctype" +msgstr "Doctype" + +#: frappe/core/doctype/doctype/doctype.py:1023 +msgid "Doctype name is limited to {0} characters ({1})" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:3 +msgid "Doctype required" +msgstr "" + +#. Label of the reference_name (Data) field in DocType 'Milestone' +#. Label of the document (Dynamic Link) field in DocType 'Audit Trail' +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#. Label of the docname (Dynamic Link) field in DocType 'Permission Inspector' +#. Label of the document (Link) field in DocType 'Notification Subscribed +#. Document' +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json +#: frappe/public/js/frappe/views/render_preview.js:42 +msgid "Document" +msgstr "" + +#. Label of the actions (Table) field in DocType 'DocType' +#. Label of the document_actions_section (Section Break) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Document Actions" +msgstr "" + +#. Label of the document_follow_notifications_section (Section Break) field in +#. DocType 'User' +#. Name of a DocType +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/document_follow/document_follow.json +msgid "Document Follow" +msgstr "" + +#: frappe/desk/form/document_follow.py:94 +msgid "Document Follow Notification" +msgstr "" + +#. Label of the document_name (Data) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Document Link" +msgstr "" + +#. Label of the section_break_12 (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Document Linking" +msgstr "" + +#. Label of the links (Table) field in DocType 'DocType' +#. Label of the document_links_section (Section Break) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Document Links" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1212 +msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1232 +msgid "Document Links Row #{0}: Invalid doctype or fieldname." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1195 +msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1201 +msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" +msgstr "" + +#. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' +#. Label of the share_name (Dynamic Link) field in DocType 'DocShare' +#. Label of the docname (Data) field in DocType 'Version' +#. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' +#. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_permission/user_permission_list.js:36 +#: frappe/core/doctype/version/version.json +#: frappe/desk/doctype/tag_link/tag_link.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/public/js/frappe/form/form_tour.js:62 +msgid "Document Name" +msgstr "" + +#: frappe/client.py:406 +msgid "Document Name must be a string" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Document Naming Rule" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "Document Naming Rule Condition" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Document Naming Settings" +msgstr "" + +#: frappe/model/document.py:478 +msgid "Document Queued" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:38 +msgid "Document Restoration Summary" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:68 +msgid "Document Restored" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:354 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:396 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:415 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:434 +msgid "Document Saved" +msgstr "" + +#. Label of the enable_email_share (Check) field in DocType 'Notification +#. Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Document Share" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/document_share_key/document_share_key.json +msgid "Document Share Key" +msgstr "" + +#. Label of the document_share_key_expiry (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Document Share Key Expiry (in Days)" +msgstr "" + +#. Name of a report +#. Label of a Link in the Users Workspace +#: frappe/core/report/document_share_report/document_share_report.json +#: frappe/core/workspace/users/users.json +msgid "Document Share Report" +msgstr "" + +#. Label of the states (Table) field in DocType 'DocType' +#. Label of the document_states_section (Section Break) field in DocType +#. 'Customize Form' +#. Label of the states (Table) field in DocType 'Workflow' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Document States" +msgstr "" + +#: frappe/model/meta.py:54 frappe/public/js/frappe/model/meta.js:202 +#: frappe/public/js/frappe/model/model.js:137 +msgid "Document Status" +msgstr "" + +#. Label of the tag (Link) field in DocType 'Tag Link' +#: frappe/desk/doctype/tag_link/tag_link.json +msgid "Document Tag" +msgstr "" + +#. Label of the title (Data) field in DocType 'Tag Link' +#: frappe/desk/doctype/tag_link/tag_link.json +msgid "Document Title" +msgstr "" + +#. Label of the document_type (Link) field in DocType 'Assignment Rule' +#. Label of the reference_type (Link) field in DocType 'Milestone' +#. Label of the reminder_doctype (Link) field in DocType 'Reminder' +#. Label of the reference_doctype (Link) field in DocType 'Data Import' +#. Label of the share_doctype (Link) field in DocType 'DocShare' +#. Label of the document_type (Link) field in DocType 'Document Naming Rule' +#. Label of the ref_doctype (Link) field in DocType 'Session Default' +#. Label of the document_type (Link) field in DocType 'User Document Type' +#. Label of the document_type (Link) field in DocType 'User Select Document +#. Type' +#. Label of the document_type (Link) field in DocType 'DocType Layout' +#. Label of the document_type (Link) field in DocType 'Bulk Update' +#. Label of the document_type (Link) field in DocType 'Dashboard Chart' +#. Label of the document_type (Link) field in DocType 'Global Search DocType' +#. Label of the document_type (Link) field in DocType 'Notification Log' +#. Label of the document_type (Link) field in DocType 'Number Card' +#. Option for the 'Type' (Select) field in DocType 'Number Card' +#. Label of the document_type (Link) field in DocType 'Tag Link' +#. Label of the document_type (Link) field in DocType 'Notification' +#. Label of the document_type (Link) field in DocType 'Print Format Field +#. Template' +#. Label of the document_type (Data) field in DocType 'Personal Data Deletion +#. Step' +#. Label of the document_type (Link) field in DocType 'Workflow' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/session_default/session_default.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_permission/user_permission_list.js:26 +#: frappe/core/doctype/user_select_document_type/user_select_document_type.json +#: frappe/core/page/permission_manager/permission_manager.js:49 +#: frappe/core/page/permission_manager/permission_manager.js:218 +#: frappe/core/page/permission_manager/permission_manager.js:449 +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/tag_link/tag_link.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/public/js/frappe/roles_editor.js:68 +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Document Type" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:60 +msgid "Document Type and Function are required to create a number card" +msgstr "" + +#: frappe/permissions.py:149 +msgid "Document Type is not importable" +msgstr "" + +#: frappe/permissions.py:145 +msgid "Document Type is not submittable" +msgstr "" + +#. Label of the document_type (Link) field in DocType 'Milestone Tracker' +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Document Type to Track" +msgstr "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:40 +msgid "Document Type {0} has been repeated." +msgstr "" + +#. Label of the user_doctypes (Table) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Document Types" +msgstr "" + +#. Label of the select_doctypes (Table) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Document Types (Select Permissions Only)" +msgstr "" + +#. Label of the section_break_2 (Section Break) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Document Types and Permissions" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.py:163 +#: frappe/model/document.py:1959 +msgid "Document Unlocked" +msgstr "" + +#: frappe/desk/form/document_follow.py:56 +msgid "Document follow is not enabled for this user." +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1302 +msgid "Document has been cancelled" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1301 +msgid "Document has been submitted" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1300 +msgid "Document is in draft state" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "Document is only editable by users with role" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:182 +msgid "Document not Relinked" +msgstr "" + +#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:155 +msgid "Document renamed from {0} to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:164 +msgid "Document renaming from {0} to {1} has been queued" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:397 +msgid "Document type is required to create a dashboard chart" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:45 +msgid "Document {0} Already Restored" +msgstr "" + +#: frappe/workflow/doctype/workflow_action/workflow_action.py:203 +msgid "Document {0} has been set to state {1} by {2}" +msgstr "" + +#: frappe/client.py:430 +msgid "Document {0} {1} does not exist" +msgstr "" + +#. Label of the documentation (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Documentation Link" +msgstr "" + +#. Label of the documentation_url (Data) field in DocType 'DocField' +#. Label of the documentation_url (Data) field in DocType 'Module Onboarding' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Documentation URL" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_dashboard.html:17 +msgid "Documents" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:25 +msgid "Documents restored successfully" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:33 +msgid "Documents that failed to restore" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:29 +msgid "Documents that were already restored" +msgstr "" + +#. Name of a DocType +#. Label of the domain (Data) field in DocType 'Domain' +#. Label of the domain (Link) field in DocType 'Has Domain' +#. Label of the domain (Link) field in DocType 'Email Account' +#: frappe/core/doctype/domain/domain.json +#: frappe/core/doctype/has_domain/has_domain.json +#: frappe/email/doctype/email_account/email_account.json +msgid "Domain" +msgstr "" + +#. Label of the domain_name (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Domain Name" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/domain_settings/domain_settings.json +msgid "Domain Settings" +msgstr "" + +#. Label of the domains_html (HTML) field in DocType 'Domain Settings' +#: frappe/core/doctype/domain_settings/domain_settings.json +msgid "Domains HTML" +msgstr "" + +#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom +#. Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:272 +msgid "Don't Import" +msgstr "" + +#. Label of the override_status (Check) field in DocType 'Workflow' +#. Label of the avoid_status_override (Check) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow/workflow.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Don't Override Status" +msgstr "" + +#. Label of the mute_emails (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Don't Send Emails" +msgstr "" + +#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'DocField' +#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize +#. Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" +msgstr "" + +#: frappe/www/login.html:139 frappe/www/login.html:155 +#: frappe/www/update-password.html:70 +msgid "Don't have an account?" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:16 +#: frappe/public/js/frappe/ui/messages.js:238 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:17 +#: frappe/public/js/print_format_builder/HTMLEditor.vue:5 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52 +msgid "Done" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Donut" +msgstr "" + +#: frappe/public/js/form_builder/components/EditableInput.vue:43 +msgid "Double click to edit label" +msgstr "" + +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:8 +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Download" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:247 +msgctxt "Export report" +msgid "Download" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/page/backups/backups.js:4 +msgid "Download Backups" +msgstr "" + +#: frappe/templates/emails/download_data.html:6 +msgid "Download Data" +msgstr "" + +#: frappe/desk/page/backups/backups.js:14 +msgid "Download Files Backup" +msgstr "" + +#: frappe/templates/emails/download_data.html:9 +msgid "Download Link" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:134 +msgid "Download PDF" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:840 +msgid "Download Report" +msgstr "" + +#. Label of the download_template (Button) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Download Template" +msgstr "" + +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:61 +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:69 +#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48 +msgid "Download Your Data" +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.js:49 +msgid "Download as CSV" +msgstr "" + +#: frappe/contacts/doctype/contact/contact.js:98 +msgid "Download vCard" +msgstr "" + +#: frappe/contacts/doctype/contact/contact_list.js:4 +msgid "Download vCards" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:46 +msgid "Dr" +msgstr "" + +#: frappe/public/js/frappe/model/indicator.js:73 +#: frappe/public/js/frappe/ui/filters/filter.js:538 +msgid "Draft" +msgstr "Udkast" + +#: frappe/public/js/frappe/views/workspace/blocks/header.js:46 +#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:136 +#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:44 +#: frappe/public/js/frappe/widgets/base_widget.js:33 +msgid "Drag" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:189 +msgid "Drag & Drop a section here from another tab" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:14 +msgid "Drag and drop files here or upload from" +msgstr "" + +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:76 +msgid "Drag columns to set order. Column width is set in percentage. The total width should not be more than 100. Columns marked in red will be removed." +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:3 +msgid "Drag elements from the sidebar to add. Drag them back to trash." +msgstr "" + +#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:296 +msgid "Drag to add state" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 +msgid "Drop files here" +msgstr "" + +#. Label of the section_break_2 (Section Break) field in DocType 'Navbar +#. Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Dropdowns" +msgstr "" + +#. Label of the date (Date) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +msgid "Due Date" +msgstr "" + +#. Label of the due_date_based_on (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Due Date Based On" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +#: frappe/public/js/frappe/form/toolbar.js:422 +msgid "Duplicate" +msgstr "" + +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:53 +msgid "Duplicate Entry" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:144 +msgid "Duplicate Filter Name" +msgstr "" + +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 +msgid "Duplicate Name" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Duplicate Row" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:209 +msgid "Duplicate current row" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:245 +msgid "Duplicate field" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the duration (Float) field in DocType 'Recorder' +#. Label of the duration (Float) field in DocType 'Recorder Query' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/recorder_query/recorder_query.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Duration" +msgstr "" + +#. Option for the 'Row Format' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Dynamic" +msgstr "" + +#. Label of the dynamic_filters_section (Section Break) field in DocType +#. 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Dynamic Filters" +msgstr "" + +#. Label of the dynamic_filters_json (Code) field in DocType 'Dashboard Chart' +#. Label of the dynamic_filters_json (Code) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Dynamic Filters JSON" +msgstr "" + +#. Label of the dynamic_filters_section (Section Break) field in DocType +#. 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Dynamic Filters Section" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Name of a DocType +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Dynamic Link" +msgstr "" + +#. Label of the dynamic_report_filters_section (Section Break) field in DocType +#. 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Dynamic Report Filters" +msgstr "" + +#. Label of the dynamic_route (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Dynamic Route" +msgstr "" + +#. Label of the dynamic_template (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Dynamic Template" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "ESC" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/page/dashboard_view/dashboard_view.js:169 +#: frappe/printing/page/print_format_builder/print_format_builder_start.html:8 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 +#: frappe/public/js/frappe/form/controls/markdown_editor.js:31 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 +#: frappe/public/js/frappe/views/workspace/workspace.js:64 +#: frappe/public/js/frappe/widgets/base_widget.js:64 +#: frappe/public/js/frappe/widgets/chart_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 +#: frappe/templates/discussions/reply_card.html:29 +#: frappe/templates/discussions/reply_section.html:29 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:46 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:84 +msgid "Edit" +msgstr "Redigere" + +#: frappe/public/js/frappe/list/list_view.js:2260 +msgctxt "Button in list view actions menu" +msgid "Edit" +msgstr "Redigere" + +#: frappe/website/doctype/web_form/templates/web_form.html:23 +msgctxt "Button in web form" +msgid "Edit" +msgstr "Redigere" + +#: frappe/public/js/frappe/form/grid_row.js:350 +msgctxt "Edit grid row" +msgid "Edit" +msgstr "Redigere" + +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:66 +msgid "Edit Address in Form" +msgstr "" + +#: frappe/templates/emails/auto_email_report.html:63 +msgid "Edit Auto Email Report Settings" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:38 +msgid "Edit Chart" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:50 +msgid "Edit Custom Block" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:727 +msgid "Edit Custom HTML" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:619 +msgid "Edit DocType" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1976 +msgctxt "Button in list view menu" +msgid "Edit DocType" +msgstr "" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:42 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:42 +msgid "Edit Existing" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:55 +msgid "Edit Filters" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:29 +msgid "Edit Footer" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:29 +msgid "Edit Format" +msgstr "" + +#: frappe/public/js/frappe/form/quick_entry.js:326 +msgid "Edit Full Form" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:27 +#: frappe/public/js/print_format_builder/Field.vue:83 +msgid "Edit HTML" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:9 +msgid "Edit Header" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:609 +#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:8 +msgid "Edit Heading" +msgstr "" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52 +msgid "Edit Letter Head" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:35 +msgid "Edit Letter Head Footer" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:42 +msgid "Edit Links" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:44 +msgid "Edit Number Card" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:46 +msgid "Edit Onboarding" +msgstr "" + +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:24 +msgid "Edit Print Format" +msgstr "" + +#: frappe/www/me.html:38 +msgid "Edit Profile" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:173 +msgid "Edit Properties" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:48 +msgid "Edit Quick List" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:40 +msgid "Edit Shortcut" +msgstr "" + +#. Label of the edit_values (Button) field in DocType 'Web Page Block' +#. Label of the edit_navbar_template_values (Button) field in DocType 'Website +#. Settings' +#. Label of the edit_footer_template_values (Button) field in DocType 'Website +#. Settings' +#: frappe/public/js/frappe/utils/web_template.js:5 +#: frappe/website/doctype/web_page_block/web_page_block.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Edit Values" +msgstr "" + +#: frappe/desk/doctype/note/note.js:11 +msgid "Edit mode" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:254 +msgid "Edit the {0} Doctype" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:721 +msgid "Edit to add content" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:470 +msgctxt "Button in web form" +msgid "Edit your response" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:18 +msgid "Edit your workflow visually using the Workflow Builder." +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:683 +#: frappe/public/js/frappe/widgets/widget_dialog.js:52 +msgid "Edit {0}" +msgstr "" + +#. Label of the editable_grid (Check) field in DocType 'DocType' +#. Label of the editable_grid (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:58 +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Editable Grid" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Editing Row" +msgstr "" + +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:14 +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:20 +msgid "Editing {0}" +msgstr "" + +#. Description of the 'SMS Gateway URL' (Small Text) field in DocType 'SMS +#. Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Eg. smsgateway.com/api/send_sms.cgi" +msgstr "" + +#: frappe/rate_limiter.py:152 +msgid "Either key or IP flag is required." +msgstr "" + +#. Label of the element_selector (Data) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Element Selector" +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Label of the email (Check) field in DocType 'Custom DocPerm' +#. Label of the email (Check) field in DocType 'DocPerm' +#. Option for the 'Two Factor Authentication method' (Select) field in DocType +#. 'System Settings' +#. Label of the email_tab (Tab Break) field in DocType 'System Settings' +#. Label of the email (Data) field in DocType 'User' +#. Label of the email_settings (Section Break) field in DocType 'User' +#. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' +#. Label of the email (Data) field in DocType 'Event Participants' +#. Label of the email (Data) field in DocType 'Email Group Member' +#. Label of the email (Data) field in DocType 'Email Unsubscribe' +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/success_action/success_action.js:59 +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/desk/doctype/event_participants/event_participants.json +#: frappe/email/doctype/email_group_member/email_group_member.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/success_action.js:85 +#: frappe/public/js/frappe/form/toolbar.js:382 +#: frappe/templates/includes/comments/comments.html:25 +#: frappe/templates/signup.html:9 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +#: frappe/www/login.html:8 frappe/www/login.py:104 +msgid "Email" +msgstr "E-mail" + +#. Label of a Link in the Tools Workspace +#. Label of the email_account (Link) field in DocType 'Communication' +#. Label of the email_account (Link) field in DocType 'User Email' +#. Name of a DocType +#. Label of the email_account (Data) field in DocType 'Email Flag Queue' +#. Label of the email_account (Link) field in DocType 'Email Queue' +#. Label of the email_account (Link) field in DocType 'Unhandled Email' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/communication.js:199 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_email/user_email.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Email Account" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:343 +msgid "Email Account Disabled." +msgstr "" + +#. Label of the email_account_name (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Email Account Name" +msgstr "" + +#: frappe/core/doctype/user/user.py:749 +msgid "Email Account added multiple times" +msgstr "" + +#: frappe/email/smtp.py:43 +msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:576 +msgid "Email Account {0} Disabled" +msgstr "" + +#. Label of the email_id (Data) field in DocType 'Address' +#. Label of the email_id (Data) field in DocType 'Contact' +#. Label of the email_id (Data) field in DocType 'Email Account' +#. Label of the email_id (Data) field in DocType 'Google Contacts' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:485 +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/www/complete_signup.html:11 frappe/www/login.html:184 +#: frappe/www/login.html:216 +msgid "Email Address" +msgstr "" + +#. Description of the 'Email Address' (Data) field in DocType 'Google Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Email Address whose Google Contacts are to be synced." +msgstr "" + +#: frappe/email/doctype/email_group/email_group.js:43 +msgid "Email Addresses" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Email Domain" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Email Flag Queue" +msgstr "" + +#. Label of the email_footer_address (Small Text) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Email Footer Address" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#. Label of the email_group (Link) field in DocType 'Email Group Member' +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/email_group/email_group.json +#: frappe/email/doctype/email_group_member/email_group_member.json +msgid "Email Group" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/email_group_member/email_group_member.json +msgid "Email Group Member" +msgstr "" + +#. Label of the email_header (Data) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Email Header" +msgstr "" + +#. Label of the email_id (Data) field in DocType 'Contact Email' +#. Label of the email_id (Data) field in DocType 'User Email' +#. Label of the email_id (Data) field in DocType 'Email Rule' +#: frappe/contacts/doctype/contact/contact.py:131 +#: frappe/contacts/doctype/contact_email/contact_email.json +#: frappe/core/doctype/user_email/user_email.json +#: frappe/email/doctype/email_rule/email_rule.json +msgid "Email ID" +msgstr "" + +#. Label of the email_ids (Table) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Email IDs" +msgstr "" + +#. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Email Id" +msgstr "E-mail" + +#. Label of the email_inbox (Section Break) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Email Inbox" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Email Queue" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +msgid "Email Queue Recipient" +msgstr "" + +#: frappe/email/queue.py:161 +msgid "Email Queue flushing aborted due to too many failures." +msgstr "" + +#. Description of a DocType +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Email Queue records." +msgstr "" + +#. Label of the email_reply_help (HTML) field in DocType 'Email Template' +#: frappe/email/doctype/email_template/email_template.json +msgid "Email Reply Help" +msgstr "" + +#. Label of the email_retry_limit (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Email Retry Limit" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/email_rule/email_rule.json +msgid "Email Rule" +msgstr "" + +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" +msgstr "" + +#. Label of the email_settings_sb (Section Break) field in DocType 'DocType' +#. Label of the email_settings_section (Section Break) field in DocType +#. 'Customize Form' +#. Label of the column_break_3 (Section Break) field in DocType 'Notification +#. Settings' +#. Label of the email_settings (Section Break) field in DocType 'Auto Email +#. Report' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Email Settings" +msgstr "" + +#. Label of the email_signature (Text Editor) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Email Signature" +msgstr "" + +#. Label of the email_status (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Email Status" +msgstr "" + +#. Label of the email_sync_option (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Email Sync Option" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Label of the email_template (Link) field in DocType 'Communication' +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/public/js/frappe/views/communication.js:107 +msgid "Email Template" +msgstr "" + +#. Label of the enable_email_threads_on_assigned_document (Check) field in +#. DocType 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Email Threads on Assigned Document" +msgstr "" + +#. Label of the email_to (Small Text) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Email To" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +msgid "Email Unsubscribe" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:342 +msgid "Email has been marked as spam" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:355 +msgid "Email has been moved to trash" +msgstr "" + +#: frappe/core/doctype/user/user.js:266 +msgid "Email is mandatory to create User Email" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:822 +msgid "Email not sent to {0} (unsubscribed / disabled)" +msgstr "" + +#: frappe/utils/oauth.py:163 +msgid "Email not verified with {0}" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue.js:19 +msgid "Email queue is currently suspended. Resume to automatically send other emails." +msgstr "" + +#. Label of the section_break_udjs (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Emails" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:216 +msgid "Emails Pulled" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:934 +msgid "Emails are already being pulled from this account." +msgstr "" + +#: frappe/email/queue.py:138 +msgid "Emails are muted" +msgstr "" + +#. Description of the 'Send Email Alert' (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Emails will be sent with next possible workflow actions" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:34 +msgid "Embed code copied" +msgstr "" + +#: frappe/database/query.py:1539 +msgid "Empty alias is not allowed" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:285 +msgid "Empty column" +msgstr "" + +#: frappe/database/query.py:1457 +msgid "Empty string arguments are not allowed" +msgstr "" + +#. Label of the enable (Check) field in DocType 'Google Calendar' +#. Label of the enable (Check) field in DocType 'Google Contacts' +#. Label of the enable (Check) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "Enable" +msgstr "" + +#. Label of the enable_address_autocompletion (Check) field in DocType +#. 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Enable Address Autocompletion" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 +msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" +msgstr "" + +#. Label of the enable_auto_reply (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Enable Auto Reply" +msgstr "" + +#. Label of the enable_automatic_linking (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Enable Automatic Linking in Documents" +msgstr "" + +#. Label of the enable_comments (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Enable Comments" +msgstr "" + +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "" + +#. Label of the enable_email_notifications (Check) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Enable Email Notifications" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:106 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:36 +#: frappe/website/doctype/website_settings/website_settings.py:129 +msgid "Enable Google API in Google Settings." +msgstr "" + +#. Label of the enable_google_indexing (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Enable Google indexing" +msgstr "" + +#. Label of the enable_incoming (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:225 +msgid "Enable Incoming" +msgstr "" + +#. Label of the enable_onboarding (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Enable Onboarding" +msgstr "" + +#. Label of the enable_outgoing (Check) field in DocType 'User Email' +#. Label of the enable_outgoing (Check) field in DocType 'Email Account' +#: frappe/core/doctype/user_email/user_email.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:233 +msgid "Enable Outgoing" +msgstr "" + +#. Label of the enable_password_policy (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Enable Password Policy" +msgstr "" + +#. Label of the enable_prepared_report (Check) field in DocType 'Role +#. Permission for Page and Report' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgid "Enable Prepared Report" +msgstr "" + +#. Label of the enable_print_server (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Enable Print Server" +msgstr "" + +#. Label of the enable_push_notification_relay (Check) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Enable Push Notification Relay" +msgstr "" + +#. Label of the enable_rate_limit (Check) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Enable Rate Limit" +msgstr "" + +#. Label of the enable_raw_printing (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Enable Raw Printing" +msgstr "" + +#: frappe/core/doctype/report/report.js:39 +msgid "Enable Report" +msgstr "" + +#. Label of the enable_scheduler (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Enable Scheduled Jobs" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:23 +msgid "Enable Scheduler" +msgstr "" + +#. Label of the enable_security (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Enable Security" +msgstr "" + +#. Label of the enable_social_login (Check) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Enable Social Login" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.js:139 +msgid "Enable Tracking Page Views" +msgstr "" + +#. Label of the enable_two_factor_auth (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/twofactor.py:438 +msgid "Enable Two Factor Auth" +msgstr "" + +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:28 +msgid "Enable developer mode to create a standard Print Template" +msgstr "" + +#: frappe/website/doctype/web_template/web_template.py:33 +msgid "Enable developer mode to create a standard Web Template" +msgstr "" + +#. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Enable if on click\n" +"opens modal." +msgstr "" + +#. Label of the enable_view_tracking (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Enable in-app website tracking" +msgstr "" + +#. Label of the enabled (Check) field in DocType 'Language' +#. Label of the enabled (Check) field in DocType 'User' +#. Label of the enabled (Check) field in DocType 'Client Script' +#. Label of the enabled (Check) field in DocType 'Notification Settings' +#. Label of the enabled (Check) field in DocType 'Auto Email Report' +#. Label of the enabled (Check) field in DocType 'Notification' +#. Label of the enabled (Check) field in DocType 'Currency' +#. Label of the enabled (Check) field in DocType 'LDAP Settings' +#. Label of the enabled (Check) field in DocType 'Webhook' +#. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/user/user.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/notification/notification.json +#: frappe/geo/doctype/currency/currency.json +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Enabled" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:29 +msgid "Enabled Scheduler" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:1010 +msgid "Enabled email inbox for user {0}" +msgstr "" + +#. Description of the 'Is Calendar and Gantt' (Check) field in DocType +#. 'DocType' +#. Description of the 'Is Calendar and Gantt' (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Enables Calendar and Gantt views." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:295 +msgid "Enabling auto reply on an incoming email account will send automated replies to all the synchronized emails. Do you wish to continue?" +msgstr "" + +#. Description of a DocType +#. Description of the 'Relay Settings' (Section Break) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "" + +#. Description of the 'Queue in Background (BETA)' (Check) field in DocType +#. 'DocType' +#. Description of the 'Queue in Background (BETA)' (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Enabling this will submit documents in background" +msgstr "" + +#. Label of the encrypt_backup (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Encrypt Backups" +msgstr "" + +#: frappe/utils/password.py:196 +msgid "Encryption key is in invalid format!" +msgstr "" + +#: frappe/utils/password.py:211 +msgid "Encryption key is invalid! Please check site_config.json" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:51 +msgid "End" +msgstr "" + +#. Label of the end_date (Date) field in DocType 'Auto Repeat' +#. Label of the end_date (Date) field in DocType 'Audit Trail' +#. Label of the end_date (Datetime) field in DocType 'Web Page' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/public/js/frappe/utils/common.js:416 +#: frappe/website/doctype/web_page/web_page.json +msgid "End Date" +msgstr "" + +#. Label of the end_date_field (Select) field in DocType 'Calendar View' +#: frappe/desk/doctype/calendar_view/calendar_view.json +msgid "End Date Field" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.py:208 +msgid "End Date cannot be before Start Date!" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + +#. Label of the ended_at (Datetime) field in DocType 'RQ Job' +#. Label of the ended_at (Datetime) field in DocType 'Submission Queue' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Ended At" +msgstr "" + +#. Label of the sb_endpoints_section (Section Break) field in DocType +#. 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Endpoints" +msgstr "" + +#. Label of the ends_on (Datetime) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Ends on" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Energy Point" +msgstr "" + +#. Label of the enqueued_by (Data) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Enqueued By" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:125 +msgid "Enqueued creation of indexes" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108 +msgid "Ensure the user and group search paths are correct." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:109 +msgid "Enter Client Id and Client Secret in Google Settings." +msgstr "" + +#: frappe/templates/includes/login/login.js:351 +msgid "Enter Code displayed in OTP App." +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:777 +msgid "Enter Email Recipient(s)" +msgstr "" + +#. Label of the doc_type (Link) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Enter Form Type" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:94 +msgctxt "Title of prompt dialog" +msgid "Enter Value" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:60 +msgid "Enter a name for this {0}" +msgstr "" + +#. Description of the 'User Defaults' (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Enter default value fields (keys) and values. If you add multiple values for a field, the first one will be picked. These defaults are also used to set \"match\" permission rules. To see list of fields, go to \"Customize Form\"." +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:111 +msgid "Enter folder name" +msgstr "" + +#. Description of the 'Static Parameters' (Table) field in DocType 'SMS +#. Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)" +msgstr "" + +#. Description of the 'Message Parameter' (Data) field in DocType 'SMS +#. Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Enter url parameter for message" +msgstr "" + +#. Description of the 'Receiver Parameter' (Data) field in DocType 'SMS +#. Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Enter url parameter for receiver nos" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:341 +msgid "Enter your password" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:22 +msgid "Entity Name" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:9 +msgid "Entity Type" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:16 +msgid "Equals" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#. Label of the error (Code) field in DocType 'Error Log' +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#. Label of the error (Code) field in DocType 'Email Queue' +#. Label of the error (Code) field in DocType 'Email Queue Recipient' +#. Label of the error (Code) field in DocType 'Integration Request' +#. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +#: frappe/desk/page/backups/backups.js:37 +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/ui/messages.js:22 +msgid "Error" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:264 +msgctxt "Title of error message in web form" +msgid "Error" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/error_log/error_log.json +msgid "Error Log" +msgstr "" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Error Logs" +msgstr "" + +#. Label of the error_message (Text) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Error Message" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:156 +msgid "Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:32 +msgid "Error connecting via IMAP/POP3: {e}" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:33 +msgid "Error connecting via SMTP: {e}" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:101 +msgid "Error has occurred in {0}" +msgstr "" + +#: frappe/public/js/frappe/form/script_manager.js:199 +msgid "Error in Client Script" +msgstr "" + +#: frappe/public/js/frappe/form/script_manager.js:256 +msgid "Error in Client Script." +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:21 +msgid "Error in Header/Footer Script" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 +msgid "Error in Notification" +msgstr "" + +#: frappe/utils/pdf.py:59 +msgid "Error in print format on line {0}: {1}" +msgstr "" + +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:670 +msgid "Error while connecting to email account {0}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:779 +msgid "Error while evaluating Notification {0}. Please fix your template." +msgstr "" + +#: frappe/model/base_document.py:860 +msgid "Error: Data missing in table {0}" +msgstr "" + +#: frappe/model/base_document.py:870 +msgid "Error: Value missing for {0}: {1}" +msgstr "" + +#: frappe/model/base_document.py:864 +msgid "Error: {0} Row #{1}: Value missing for: {2}" +msgstr "" + +#. Label of the errors_generated_in_last_1_day_section (Section Break) field in +#. DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Errors" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Name of a DocType +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json +msgid "Event" +msgstr "" + +#. Label of the event_category (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Event Category" +msgstr "" + +#. Label of the event_frequency (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Event Frequency" +msgstr "" + +#. Label of the event_participants (Table) field in DocType 'Event' +#. Name of a DocType +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/event_participants/event_participants.json +msgid "Event Participants" +msgstr "" + +#. Label of the enable_email_event_reminders (Check) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Event Reminders" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:493 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:577 +msgid "Event Synced with Google Calendar." +msgstr "" + +#. Label of the event_type (Data) field in DocType 'Recorder' +#. Label of the event_type (Select) field in DocType 'Event' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/desk/doctype/event/event.json +msgid "Event Type" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:56 +msgid "Events" +msgstr "" + +#: frappe/desk/doctype/event/event.py:278 +msgid "Events in Today's Calendar" +msgstr "" + +#. Label of the everyone (Check) field in DocType 'DocShare' +#: frappe/core/doctype/docshare/docshare.json +#: frappe/public/js/frappe/form/templates/set_sharing.html:11 +msgid "Everyone" +msgstr "" + +#. Description of the 'Custom Options' (Code) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"]" +msgstr "" + +#. Label of the exact_copies (Int) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Exact Copies" +msgstr "" + +#. Label of the example (HTML) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Example" +msgstr "" + +#. Description of the 'Default Portal Home' (Data) field in DocType 'Portal +#. Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Example: \"/desk\"" +msgstr "" + +#. Description of the 'Path' (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Example: #Tree/Account" +msgstr "" + +#. Description of the 'Digits' (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Example: 00001" +msgstr "" + +#. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours." +msgstr "" + +#. Description of the 'Description' (Small Text) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Example: {{ subject }}" +msgstr "" + +#. Option for the 'File Type' (Select) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Excel" +msgstr "" + +#: frappe/public/js/frappe/form/controls/password.js:90 +msgid "Excellent" +msgstr "" + +#. Label of the exception (Text) field in DocType 'Data Import Log' +#. Label of the exc_info (Code) field in DocType 'RQ Job' +#. Label of the exception (Long Text) field in DocType 'Submission Queue' +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Exception" +msgstr "" + +#. Label of the execute_section (Section Break) field in DocType 'System +#. Console' +#: frappe/desk/doctype/system_console/system_console.js:17 +#: frappe/desk/doctype/system_console/system_console.js:22 +#: frappe/desk/doctype/system_console/system_console.json +msgid "Execute" +msgstr "" + +#: frappe/desk/doctype/system_console/system_console.js:10 +msgid "Execute Console script" +msgstr "" + +#: frappe/public/js/frappe/ui/dropdown_console.js:132 +msgid "Executing Code" +msgstr "" + +#: frappe/desk/doctype/system_console/system_console.js:18 +msgid "Executing..." +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2140 +msgid "Execution Time: {0} sec" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Executive" +msgstr "" + +#. Label of the existing_role (Link) field in DocType 'Role Replication' +#: frappe/core/doctype/role_replication/role_replication.json +msgid "Existing Role" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:115 +#: frappe/public/js/frappe/views/treeview.js:127 +#: frappe/public/js/frappe/views/treeview.js:137 +#: frappe/public/js/frappe/widgets/base_widget.js:159 +msgid "Expand" +msgstr "" + +#: frappe/public/js/frappe/form/controls/code.js:185 +msgctxt "Enlarge code field." +msgid "Expand" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/treeview.js:133 +msgid "Expand All" +msgstr "" + +#: frappe/database/query.py:354 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:23 +msgid "Experimental" +msgstr "" + +#. Option for the 'Level' (Select) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Expert" +msgstr "" + +#. Label of the expiration_time (Datetime) field in DocType 'OAuth +#. Authorization Code' +#. Label of the expiration_time (Datetime) field in DocType 'OAuth Bearer +#. Token' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "Expiration time" +msgstr "" + +#. Label of the expire_notification_on (Datetime) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Expire Notification On" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Expired" +msgstr "" + +#. Label of the expires_in (Int) field in DocType 'OAuth Bearer Token' +#. Label of the expires_in (Int) field in DocType 'Token Cache' +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Expires In" +msgstr "" + +#. Label of the expires_on (Date) field in DocType 'Document Share Key' +#: frappe/core/doctype/document_share_key/document_share_key.json +msgid "Expires On" +msgstr "" + +#. Label of the lifespan_qrcode_image (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Expiry time of QR Code Image Page" +msgstr "" + +#. Label of the export (Check) field in DocType 'Custom DocPerm' +#. Label of the export (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/recorder/recorder_list.js:37 +#: frappe/public/js/frappe/data_import/data_exporter.js:92 +#: frappe/public/js/frappe/data_import/data_exporter.js:243 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 +#: frappe/public/js/frappe/widgets/chart_widget.js:315 +msgid "Export" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2282 +msgctxt "Button in list view actions menu" +msgid "Export" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:245 +msgid "Export 1 record" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:262 +msgid "Export Custom Permissions" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:242 +msgid "Export Customizations" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +#: frappe/public/js/frappe/data_import/data_exporter.js:14 +msgid "Export Data" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:86 +#: frappe/public/js/frappe/data_import/import_preview.js:199 +msgid "Export Errored Rows" +msgstr "" + +#. Label of the export_from (Data) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Export From" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:518 +msgid "Export Import Log" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:245 +msgctxt "Export report" +msgid "Export Report: {0}" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:26 +msgid "Export Type" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1640 +msgid "Export all matching rows?" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1650 +msgid "Export all {0} rows?" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:154 +msgid "Export as zip" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + +#: frappe/public/js/frappe/utils/tools.js:11 +msgid "Export not allowed. You need {0} role to export." +msgstr "" + +#. Description of the 'Export without main header' (Check) field in DocType +#. 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Export the data without any header notes and column descriptions" +msgstr "" + +#. Label of the export_without_main_header (Check) field in DocType 'Data +#. Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Export without main header" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:247 +msgid "Export {0} records" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:263 +msgid "Exported permissions will be force-synced on every migrate overriding any other customization." +msgstr "" + +#. Label of the expose_recipients (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Expose Recipients" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Expression" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Expression (old style)" +msgstr "" + +#. Description of the 'Condition' (Data) field in DocType 'Notification +#. Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Expression, Optional" +msgstr "" + +#. Label of the external_link (Data) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/views/workspace/workspace.js:426 +msgid "External Link" +msgstr "" + +#. Label of the section_break_18 (Section Break) field in DocType 'Connected +#. App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Extra Parameters" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Facebook" +msgstr "" + +#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Fail" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' +#. Option for the 'Status' (Select) field in DocType 'Submission Queue' +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Failed" +msgstr "" + +#. Label of the failed_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Failed Emails" +msgstr "" + +#. Label of the failed_job_count (Int) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Failed Job Count" +msgstr "" + +#. Label of the failed_jobs (Int) field in DocType 'System Health Report +#. Workers' +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "Failed Jobs" +msgstr "" + +#. Label of the failed_logins (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Failed Logins (Last 30 days)" +msgstr "" + +#: frappe/model/workflow.py:362 +msgid "Failed Transactions" +msgstr "" + +#: frappe/utils/synchronization.py:46 +msgid "Failed to aquire lock: {}. Lock may be held by another process." +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:359 +msgid "Failed to change password." +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:232 +#: frappe/desk/page/setup_wizard/setup_wizard.py:42 +msgid "Failed to complete setup" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:141 +msgid "Failed to compute request body: {}" +msgstr "" + +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:46 +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:48 +msgid "Failed to connect to server" +msgstr "" + +#: frappe/auth.py:701 +msgid "Failed to decode token, please provide a valid base64-encoded token." +msgstr "" + +#: frappe/utils/password.py:210 +msgid "Failed to decrypt key {0}" +msgstr "" + +#: frappe/desk/reportview.py:635 +msgid "Failed to delete {0} documents: {1}" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:33 +msgid "Failed to enable scheduler: {0}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 +msgid "Failed to evaluate conditions: {}" +msgstr "" + +#: frappe/types/exporter.py:205 +msgid "Failed to export python type hints" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:249 +msgid "Failed to generate names from the series" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:75 +msgid "Failed to generate preview of series" +msgstr "" + +#: frappe/handler.py:76 +msgid "Failed to get method for command {0} with {1}" +msgstr "" + +#: frappe/api/v2.py:46 +msgid "Failed to get method {0} with {1}" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:59 +msgid "Failed to get site info" +msgstr "" + +#: frappe/model/virtual_doctype.py:63 +msgid "Failed to import virtual doctype {}, is controller file present?" +msgstr "" + +#: frappe/utils/image.py:75 +msgid "Failed to optimize image: {0}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:122 +msgid "Failed to render message: {}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:140 +msgid "Failed to render subject: {}" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:94 +msgid "Failed to request login to Frappe Cloud" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue.py:297 +msgid "Failed to send email with subject:" +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.py:43 +msgid "Failed to send notification email" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.py:24 +msgid "Failed to update global settings" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:74 +msgid "Failed while calling API {0}" +msgstr "" + +#. Label of the failing_scheduled_jobs (Table) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Failing Scheduled Jobs (last 7 days)" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:459 +msgid "Failure" +msgstr "" + +#. Label of the failure_rate (Percent) field in DocType 'System Health Report +#. Failing Jobs' +#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json +msgid "Failure Rate" +msgstr "" + +#. Label of the favicon (Attach) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "FavIcon" +msgstr "" + +#. Label of the fax (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Fax" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:33 +msgid "Feedback" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:29 +msgid "Female" +msgstr "" + +#. Label of the fetch_from (Small Text) field in DocType 'DocField' +#. Label of the fetch_from (Small Text) field in DocType 'Custom Field' +#. Label of the fetch_from (Small Text) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:29 +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:34 +msgid "Fetch From" +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:15 +msgid "Fetch Images" +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:13 +msgid "Fetch attached images from document" +msgstr "" + +#. Label of the fetch_if_empty (Check) field in DocType 'DocField' +#. Label of the fetch_if_empty (Check) field in DocType 'Custom Field' +#. Label of the fetch_if_empty (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Fetch on Save if Empty" +msgstr "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:61 +msgid "Fetching default Global Search documents." +msgstr "" + +#. Label of the field (Select) field in DocType 'Assignment Rule' +#. Label of the field (Select) field in DocType 'Document Naming Rule +#. Condition' +#. Label of the field (Select) field in DocType 'Bulk Update' +#. Label of the report_field (Select) field in DocType 'Number Card' +#. Label of the field (Select) field in DocType 'Onboarding Step' +#. Label of the fieldname (Select) field in DocType 'Web Form Field' +#. Label of the fieldname (Select) field in DocType 'Web Form List Column' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +#: frappe/core/doctype/permission_log/permission_log.js:12 +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/public/js/frappe/list/bulk_operations.js:327 +#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +msgid "Field" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:418 +msgid "Field \"route\" is mandatory for Web Views" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1527 +msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.js:17 +msgid "Field \"value\" is mandatory. Please specify value to be updated" +msgstr "" + +#. Label of the description (Text) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Field Description" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1078 +msgid "Field Missing" +msgstr "" + +#. Label of the field_name (Data) field in DocType 'Property Setter' +#. Label of the field_name (Select) field in DocType 'Kanban Board' +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +msgid "Field Name" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:141 +msgid "Field Orientation (Left-Right)" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:148 +msgid "Field Orientation (Top-Down)" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:233 +#: frappe/public/js/print_format_builder/utils.js:69 +msgid "Field Template" +msgstr "" + +#. Label of the fieldtype (Select) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/templates/form_grid/fields.html:40 +msgid "Field Type" +msgstr "" + +#: frappe/desk/reportview.py:202 +msgid "Field not permitted in query" +msgstr "" + +#. Description of the 'Workflow State Field' (Data) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)" +msgstr "" + +#. Label of the track_field (Select) field in DocType 'Milestone Tracker' +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Field to Track" +msgstr "" + +#: frappe/custom/doctype/property_setter/property_setter.py:51 +msgid "Field type cannot be changed for {0}" +msgstr "" + +#: frappe/database/database.py:919 +msgid "Field {0} does not exist on {1}" +msgstr "" + +#: frappe/desk/form/meta.py:184 +msgid "Field {0} is referring to non-existing doctype {1}." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1756 +msgid "Field {0} not found." +msgstr "" + +#: frappe/email/doctype/notification/notification.py:547 +msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" +msgstr "" + +#. Label of the fieldname (Data) field in DocType 'Report Column' +#. Label of the fieldname (Data) field in DocType 'Report Filter' +#. Label of the fieldname (Data) field in DocType 'Custom Field' +#. Label of the fieldname (Select) field in DocType 'DocType Layout Field' +#. Label of the fieldname (Select) field in DocType 'Form Tour Step' +#. Label of the fieldname (Select) field in DocType 'Webhook Data' +#. Label of the fieldname (Data) field in DocType 'Web Template Field' +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.js:120 +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/integrations/doctype/webhook_data/webhook_data.json +#: frappe/public/js/frappe/form/grid_row.js:455 +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Fieldname" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:271 +msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1077 +msgid "Fieldname called {0} must exist to enable autonaming" +msgstr "" + +#: frappe/database/schema.py:131 frappe/database/schema.py:408 +msgid "Fieldname is limited to 64 characters ({0})" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:197 +msgid "Fieldname not set for Custom Field" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:107 +msgid "Fieldname which will be the DocType for this link field." +msgstr "" + +#: frappe/public/js/form_builder/store.js:175 +msgid "Fieldname {0} appears multiple times" +msgstr "" + +#: frappe/database/schema.py:398 +msgid "Fieldname {0} cannot have special characters like {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1921 +msgid "Fieldname {0} conflicting with meta object" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:497 +#: frappe/public/js/form_builder/utils.js:302 +msgid "Fieldname {0} is restricted" +msgstr "" + +#. Label of the fields (Table) field in DocType 'DocType' +#. Label of the fields_section (Section Break) field in DocType 'DocType' +#. Label of the fields_tab (Tab Break) field in DocType 'DocType' +#. Label of the fields_section_break (Section Break) field in DocType +#. 'Customize Form' +#. Label of the fields (Table) field in DocType 'Customize Form' +#. Label of the fields (Table) field in DocType 'DocType Layout' +#. Label of the fields (Code) field in DocType 'Kanban Board' +#. Label of the fields_html (HTML) field in DocType 'List View Settings' +#. Label of the fields (Code) field in DocType 'List View Settings' +#. Label of the fields (Small Text) field in DocType 'Personal Data Deletion +#. Step' +#. Label of the fields (Table) field in DocType 'Web Template' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +#: frappe/public/js/frappe/list/list_settings.js:133 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +#: frappe/website/doctype/web_template/web_template.json +msgid "Fields" +msgstr "" + +#. Label of the fields_multicheck (HTML) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Fields Multicheck" +msgstr "" + +#: frappe/core/doctype/file/file.py:431 +msgid "Fields `file_name` or `file_url` must be set for File" +msgstr "" + +#: frappe/model/db_query.py:146 +msgid "Fields must be a list or tuple when as_list is enabled" +msgstr "" + +#: frappe/database/query.py:613 +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 "" + +#. Label of the fieldtype (Select) field in DocType 'Report Column' +#. Label of the fieldtype (Select) field in DocType 'Report Filter' +#. Label of the fieldtype (Data) field in DocType 'Form Tour Step' +#. Label of the fieldtype (Select) field in DocType 'Web Form Field' +#. Label of the fieldtype (Data) field in DocType 'Web Form List Column' +#. Label of the fieldtype (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Fieldtype" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:193 +msgid "Fieldtype cannot be changed from {0} to {1}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:593 +msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" +msgstr "" + +#. Label of a shortcut in the Tools Workspace +#. Name of a DocType +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/file/file.json +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "File" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 +msgid "File \"{0}\" was skipped because of invalid file type" +msgstr "" + +#: frappe/core/doctype/file/utils.py:128 +msgid "File '{0}' not found" +msgstr "" + +#. Label of the private_file_section (Section Break) field in DocType 'Access +#. Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "File Information" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:74 +msgid "File Manager" +msgstr "" + +#. Label of the file_name (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "File Name" +msgstr "" + +#. Label of the file_size (Int) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "File Size" +msgstr "" + +#. Label of the section_break_ryki (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "File Storage" +msgstr "" + +#. Label of the file_type (Data) field in DocType 'Access Log' +#. Label of the file_type (Select) field in DocType 'Data Export' +#. Label of the file_type (Data) field in DocType 'File' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/data_export/data_export.json +#: frappe/core/doctype/file/file.json +#: frappe/public/js/frappe/data_import/data_exporter.js:19 +msgid "File Type" +msgstr "" + +#. Label of the file_url (Code) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "File URL" +msgstr "" + +#: frappe/desk/page/backups/backups.py:107 +msgid "File backup is ready" +msgstr "" + +#: frappe/core/doctype/file/file.py:649 +msgid "File name cannot have {0}" +msgstr "" + +#: frappe/utils/csvutils.py:28 +msgid "File not attached" +msgstr "" + +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 +#: frappe/utils/file_manager.py:221 +msgid "File size exceeded the maximum allowed size of {0} MB" +msgstr "" + +#: frappe/public/js/frappe/request.js:198 +msgid "File too big" +msgstr "" + +#: frappe/core/doctype/file/file.py:390 +msgid "File type of {0} is not allowed" +msgstr "" + +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 +msgid "File {0} does not exist" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Label of the files_tab (Tab Break) field in DocType 'System Settings' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Files" +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.js:8 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: frappe/desk/doctype/number_card/number_card.js: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:969 +#: frappe/public/js/frappe/ui/filters/filter_list.js:134 +#: frappe/website/doctype/web_form/web_form.js:197 +msgid "Filter" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.html:36 +msgid "Filter By" +msgstr "" + +#. Label of the filter_data (Section Break) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Filter Data" +msgstr "" + +#. Label of the filter_list (HTML) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Filter List" +msgstr "" + +#. Label of the filter_meta (Text) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Filter Meta" +msgstr "" + +#. Label of the filter_name (Data) field in DocType 'List Filter' +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/public/js/frappe/list/list_filter.js:33 +msgid "Filter Name" +msgstr "" + +#. Label of the filter_values (HTML) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Filter Values" +msgstr "" + +#: frappe/database/query.py:360 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:427 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 +msgid "Filter..." +msgstr "" + +#. Label of the filtered_by (Data) field in DocType 'Personal Data Deletion +#. Step' +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Filtered By" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:33 +msgid "Filtered Records" +msgstr "" + +#: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 +msgid "Filtered by \"{0}\"" +msgstr "" + +#. Label of the filters (Code) field in DocType 'Access Log' +#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report' +#. Label of the filters (Small Text) field in DocType 'Prepared Report' +#. Label of the filters_section (Section Break) field in DocType 'Report' +#. Label of the filters (Table) field in DocType 'Report' +#. Label of the filters_section (Section Break) field in DocType 'Dashboard +#. Chart' +#. Label of the filters (Code) field in DocType 'Kanban Board' +#. Label of the filters (Long Text) field in DocType 'List Filter' +#. Label of the filters (Text) field in DocType 'Auto Email Report' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/notification/notification.json +msgid "Filters" +msgstr "" + +#. Label of the filters_config (Code) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Filters Configuration" +msgstr "" + +#. Label of the filters_display (HTML) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Filters Display" +msgstr "" + +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + +#. Label of the filters_json (Code) field in DocType 'Dashboard Chart' +#. Label of the filters_json (Code) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Filters JSON" +msgstr "" + +#. Label of the filters_section (Section Break) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Filters Section" +msgstr "" + +#: frappe/public/js/frappe/form/controls/link.js:514 +msgid "Filters applied for {0}" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 +msgid "Filters saved" +msgstr "" + +#. Description of the 'Script' (Code) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Filters will be accessible via filters.

Send output as result = [result], or for old style data = [columns], [result]" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:133 +msgid "Filters {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1429 +msgid "Filters:" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 +msgid "Find '{0}' in ..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 +msgid "Find {0} in {1}" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Finished" +msgstr "" + +#. Label of the report_end_time (Datetime) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Finished At" +msgstr "" + +#. Label of the first_day_of_the_week (Select) field in DocType 'Language' +#. Label of the first_day_of_the_week (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "First Day of the Week" +msgstr "" + +#. Label of the first_name (Data) field in DocType 'Contact' +#. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 +msgid "First Name" +msgstr "" + +#. Label of the first_success_message (Data) field in DocType 'Success Action' +#: frappe/core/doctype/success_action/success_action.json +msgid "First Success Message" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:185 +msgid "First data column must be blank." +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:7 +msgid "First set the name and save the record." +msgstr "" + +#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:304 +msgid "Fit" +msgstr "" + +#. Label of the flag (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +msgid "Flag" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Float" +msgstr "" + +#. Label of the float_precision (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Float Precision" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Fold" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1451 +msgid "Fold can not be at the end of the form" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1449 +msgid "Fold must come before a Section Break" +msgstr "" + +#. Label of the folder (Link) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Folder" +msgstr "" + +#. Label of the folder_name (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "Folder Name" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:100 +msgid "Folder name should not include '/' (slash)" +msgstr "" + +#: frappe/core/doctype/file/file.py:497 +msgid "Folder {0} is not empty" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Folio" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:106 +#: frappe/public/js/frappe/form/toolbar.js:879 +msgid "Follow" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:101 +msgid "Followed by" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 +msgid "Following Report Filters have missing values:" +msgstr "" + +#: frappe/desk/form/document_follow.py:63 +msgid "Following document {0}" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:108 +msgid "Following fields are missing:" +msgstr "" + +#: frappe/public/js/frappe/ui/field_group.js:139 +msgid "Following fields have invalid values:" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:358 +msgid "Following fields have missing values" +msgstr "" + +#: frappe/public/js/frappe/ui/field_group.js:126 +msgid "Following fields have missing values:" +msgstr "" + +#. Label of the font (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Font" +msgstr "" + +#. Label of the font_properties (Data) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Font Properties" +msgstr "" + +#. Label of the font_size (Int) field in DocType 'Print Format' +#. Label of the font_size (Float) field in DocType 'Print Settings' +#. Label of the font_size (Data) field in DocType 'Website Theme' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:45 +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Font Size" +msgstr "" + +#. Label of the section_break_8 (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Fonts" +msgstr "" + +#. Label of the set_footer (Section Break) field in DocType 'Email Account' +#. Label of the footer_section (Section Break) field in DocType 'Letter Head' +#. Label of the footer (Text Editor) field in DocType 'About Us Settings' +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#. Label of the footer_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer" +msgstr "" + +#. Label of the footer_powered (Small Text) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer \"Powered By\"" +msgstr "" + +#. Label of the footer_source (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer Based On" +msgstr "" + +#. Label of the footer (Text Editor) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Footer Content" +msgstr "" + +#. Label of the footer_details_section (Section Break) field in DocType +#. 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer Details" +msgstr "" + +#. Label of the footer (HTML Editor) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer HTML" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:81 +msgid "Footer HTML set from attachment {0}" +msgstr "" + +#. Label of the footer_image_section (Section Break) field in DocType 'Letter +#. Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer Image" +msgstr "" + +#. Label of the footer (Section Break) field in DocType 'Website Settings' +#. Label of the footer_items (Table) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer Items" +msgstr "" + +#. Label of the footer_logo (Attach Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer Logo" +msgstr "" + +#. Label of the footer_script (Code) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer Script" +msgstr "" + +#. Label of the footer_template (Link) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer Template" +msgstr "" + +#. Label of the footer_template_values (Code) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer Template Values" +msgstr "" + +#: frappe/printing/page/print/print.js:129 +msgid "Footer might not be visible as {0} option is disabled
" +msgstr "" + +#. Description of the 'Footer HTML' (HTML Editor) field in DocType 'Letter +#. Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer will display correctly only in PDF" +msgstr "" + +#. Label of the for_doctype (Link) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "For DocType" +msgstr "" + +#. Description of the 'Row Name' (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "For DocType Link / DocType Action" +msgstr "" + +#. Label of the for_document (Dynamic Link) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "For Document" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:155 +msgid "For Document Type" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:566 +msgid "For Example: {} Open" +msgstr "" + +#. Description of the 'Options' (Small Text) field in DocType 'DocField' +#. Description of the 'Options' (Small Text) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "For Links, enter the DocType as range.\n" +"For Select, enter list of Options, each on a new line." +msgstr "" + +#. Label of the for_user (Link) field in DocType 'List Filter' +#. Label of the for_user (Link) field in DocType 'Notification Log' +#. Label of the for_user (Data) field in DocType 'Workspace' +#: frappe/core/doctype/user_permission/user_permission_list.js:10 +#: frappe/core/doctype/user_permission/user_permission_list.js:148 +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/workspace/workspace.json +msgid "For User" +msgstr "" + +#. Label of the for_value (Dynamic Link) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "For Value" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 +msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:19 +msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment." +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:162 +msgid "For example:" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:752 +msgid "For example: If you want to include the document ID, use {0}" +msgstr "" + +#. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "For example: {} Open" +msgstr "" + +#. Description of the 'Client script' (Code) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "For help see Client Script API and Examples" +msgstr "" + +#: frappe/integrations/doctype/google_settings/google_settings.js:7 +msgid "For more information, {0}." +msgstr "" + +#. Description of the 'Email To' (Small Text) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "For multiple addresses, enter the address on different line. e.g. test@test.com ⏎ test1@test.com" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:197 +msgid "For updating, you can update only selective columns." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1765 +msgid "For {0} at level {1} in {2} in row {3}" +msgstr "" + +#. Label of the force (Check) field in DocType 'Package Import' +#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth +#. Provider Settings' +#: frappe/core/doctype/package_import/package_import.json +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +msgid "Force" +msgstr "" + +#. Label of the force_re_route_to_default_view (Check) field in DocType +#. 'DocType' +#. Label of the force_re_route_to_default_view (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Force Re-route to Default View" +msgstr "" + +#. Label of the force_show (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Force Show" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.js:13 +msgid "Force Stop job" +msgstr "" + +#. Label of the force_user_to_reset_password (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Force User to Reset Password" +msgstr "" + +#. Label of the force_web_capture_mode_for_uploads (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Force Web Capture Mode for Uploads" +msgstr "" + +#: frappe/www/login.html:37 +msgid "Forgot Password?" +msgstr "" + +#. Label of the form_builder_tab (Tab Break) field in DocType 'DocType' +#. Option for the 'Apply To' (Select) field in DocType 'Client Script' +#. Label of the form_tab (Tab Break) field in DocType 'Customize Form' +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Label of the form_tab (Tab Break) field in DocType 'Web Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/printing/page/print/print.js:96 +#: frappe/website/doctype/web_form/web_form.json +msgid "Form" +msgstr "" + +#. Label of the form_builder (HTML) field in DocType 'DocType' +#. Label of the form_builder (HTML) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Form Builder" +msgstr "" + +#. Label of the form_dict (Code) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Form Dict" +msgstr "" + +#. Label of the form_settings_section (Section Break) field in DocType +#. 'DocType' +#. Label of the form_settings_section (Section Break) field in DocType 'User' +#. Label of the form_settings_section (Section Break) field in DocType +#. 'Customize Form' +#. Label of the form_settings_section (Section Break) field in DocType 'Web +#. Form' +#: frappe/core/doctype/doctype/doctype.json frappe/core/doctype/user/user.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Form Settings" +msgstr "" + +#. Name of a DocType +#. Label of the form_tour (Link) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Form Tour" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Form Tour Step" +msgstr "" + +#. Option for the 'Request Structure' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Form URL-Encoded" +msgstr "" + +#. Label of the format (Data) field in DocType 'Workspace Shortcut' +#. Label of the format (Select) field in DocType 'Auto Email Report' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:565 +msgid "Format" +msgstr "" + +#. Label of the format_data (Code) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Format Data" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:70 +msgid "Forward" +msgstr "" + +#. Label of the forward_to_email (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Forward To Email Address" +msgstr "" + +#. Label of the fraction (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Fraction" +msgstr "" + +#. Label of the fraction_units (Int) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Fraction Units" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/www/login.html:64 frappe/www/login.html:162 frappe/www/login.py:53 +#: frappe/www/login.py:153 +msgid "Frappe" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 +msgid "Frappe Framework" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:59 +msgid "Frappe Light" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Frappe Mail" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:547 +msgid "Frappe Mail OAuth Error" +msgstr "" + +#. Label of the frappe_mail_site (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Frappe Mail Site" +msgstr "" + +#. Label of a standard help item +#. Type: Route +#: frappe/hooks.py +msgid "Frappe Support" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Frappe page builder using components" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:112 +msgctxt "Image Cropper" +msgid "Free" +msgstr "" + +#. Label of the frequency (Select) field in DocType 'Auto Repeat' +#. Label of the frequency (Select) field in DocType 'Scheduled Job Type' +#. Label of the document_follow_frequency (Select) field in DocType 'User' +#. Label of the frequency (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:5 +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:395 +msgid "Frequency" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the friday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Friday" +msgstr "" + +#. Label of the sender (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/permission_log/permission_log.js:12 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:70 +msgid "From" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:197 +msgctxt "Email Sender" +msgid "From" +msgstr "" + +#. Label of the from_date (Date) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/report/website_analytics/website_analytics.js:8 +msgid "From Date" +msgstr "" + +#. Label of the from_date_field (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "From Date Field" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1848 +msgid "From Document Type" +msgstr "" + +#. Label of the sender_full_name (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "From Full Name" +msgstr "" + +#. Label of the from_user (Link) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "From User" +msgstr "" + +#: frappe/public/js/frappe/utils/diffview.js:31 +msgid "From version" +msgstr "" + +#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Full" +msgstr "" + +#. Label of the full_name (Data) field in DocType 'Contact' +#. Label of the full_name (Data) field in DocType 'Activity Log' +#. Label of the full_name (Data) field in DocType 'User' +#. Label of the full_name (Data) field in DocType 'About Us Team Member' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:479 +#: frappe/templates/signup.html:4 +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +msgid "Full Name" +msgstr "" + +#: frappe/printing/page/print/print.js:80 +#: frappe/public/js/frappe/form/templates/print_layout.html:42 +msgid "Full Page" +msgstr "" + +#. Label of the full_width (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Full Width" +msgstr "" + +#. Label of the function (Select) field in DocType 'Number Card' +#. Label of the report_function (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/views/reports/query_report.js:246 +#: frappe/public/js/frappe/widgets/widget_dialog.js:699 +msgid "Function" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:706 +msgid "Function Based On" +msgstr "" + +#: frappe/__init__.py:466 +msgid "Function {0} is not whitelisted." +msgstr "" + +#: frappe/database/query.py:1419 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:419 +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:291 +msgid "Fw: {0}" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "GET" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "GMail" +msgstr "" + +#. Option for the 'License Type' (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "GNU Affero General Public License" +msgstr "" + +#. Option for the 'License Type' (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "GNU General Public License" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/public/js/frappe/views/gantt/gantt_view.js:10 +msgid "Gantt" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:205 +msgid "Gantt View" +msgstr "" + +#. Label of the gender (Link) field in DocType 'Contact' +#. Name of a DocType +#. Label of the gender (Data) field in DocType 'Gender' +#. Label of the gender (Link) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/gender/gender.json +#: frappe/core/doctype/user/user.json +msgid "Gender" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:32 +msgid "Genderqueer" +msgstr "" + +#: frappe/www/contact.html:29 +msgid "General" +msgstr "" + +#. Label of the generate_keys (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Generate Keys" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:882 +msgid "Generate New Report" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:394 +msgid "Generate Random Password" +msgstr "" + +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1827 +msgid "Generate Tracking URL" +msgstr "" + +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Geoapify" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Geolocation" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Geolocation Settings" +msgstr "" + +#: frappe/email/doctype/notification/notification.js:226 +msgid "Get Alerts for Today" +msgstr "" + +#: frappe/desk/page/backups/backups.js:21 +msgid "Get Backup Encryption Key" +msgstr "" + +#. Label of the get_contacts (Button) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Get Contacts" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:93 +msgid "Get Fields" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:32 +msgid "Get Header and Footer wkhtmltopdf variables" +msgstr "" + +#: frappe/public/js/frappe/form/multi_select_dialog.js:86 +msgid "Get Items" +msgstr "Hent Artikler" + +#: frappe/integrations/doctype/connected_app/connected_app.js:6 +msgid "Get OpenID Configuration" +msgstr "" + +#: frappe/www/printview.html:22 +msgid "Get PDF" +msgstr "" + +#. Description of the 'Try a Naming Series' (Data) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Get a preview of generated names with a series." +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.js:305 +msgid "Get more insights with" +msgstr "" + +#. Description of the 'Email Threads on Assigned Document' (Check) field in +#. DocType 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Get notified when an email is received on any of the documents assigned to you." +msgstr "" + +#. Description of the 'User Image' (Attach Image) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Get your globally recognized avatar from Gravatar.com" +msgstr "" + +#. Label of the git_branch (Data) field in DocType 'Installed Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Git Branch" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "GitHub" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Github flavoured markdown syntax" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json +msgid "Global Search DocType" +msgstr "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.js:24 +msgid "Global Search Document Types Reset." +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/global_search_settings/global_search_settings.json +msgid "Global Search Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:122 +msgid "Global Shortcuts" +msgstr "" + +#. Label of the global_unsubscribe (Check) field in DocType 'Email Unsubscribe' +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +msgid "Global Unsubscribe" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:843 +msgid "Go" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:241 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:321 +msgid "Go Back" +msgstr "" + +#: frappe/desk/doctype/notification_settings/notification_settings.js:17 +msgid "Go to Notification Settings List" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Go to Page" +msgstr "" + +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:41 +msgid "Go to Workflow" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.js:18 +msgid "Go to Workspace" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:144 +msgid "Go to next record" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:154 +msgid "Go to previous record" +msgstr "" + +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:53 +msgid "Go to the document" +msgstr "" + +#. Description of the 'Success URL' (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Go to this URL after completing the form" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.js:54 +#: frappe/custom/doctype/client_script/client_script.js:12 +msgid "Go to {0}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:92 +#: frappe/core/doctype/doctype/doctype.js:55 +#: frappe/custom/doctype/customize_form/customize_form.js:104 +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:42 +#: frappe/workflow/doctype/workflow/workflow.js:44 +msgid "Go to {0} List" +msgstr "" + +#: frappe/core/doctype/page/page.js:11 +msgid "Go to {0} Page" +msgstr "" + +#: frappe/utils/goal.py:115 frappe/utils/goal.py:122 +msgid "Goal" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Google" +msgstr "" + +#. Label of the google_analytics_id (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Google Analytics ID" +msgstr "" + +#. Label of the google_analytics_anonymize_ip (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Google Analytics anonymise IP" +msgstr "" + +#. Label of the sb_00 (Section Break) field in DocType 'Event' +#. Label of the google_calendar (Link) field in DocType 'Event' +#. Name of a DocType +#. Label of the sb_00 (Section Break) field in DocType 'Google Calendar' +#. Label of a Link in the Integrations Workspace +#: frappe/desk/doctype/event/event.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Calendar" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:266 +msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:610 +msgid "Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:305 +msgid "Google Calendar - Could not fetch event from Google Calendar, error code {0}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:252 +msgid "Google Calendar - Could not find Calendar for {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:232 +msgid "Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:496 +msgid "Google Calendar - Could not insert event in Google Calendar {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:580 +msgid "Google Calendar - Could not update Event {0} in Google Calendar, error code {1}." +msgstr "" + +#. Label of the google_calendar_event_id (Data) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Google Calendar Event ID" +msgstr "" + +#. Label of the google_calendar_id (Data) field in DocType 'Event' +#. Label of the google_calendar_id (Data) field in DocType 'Google Calendar' +#: frappe/desk/doctype/event/event.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Google Calendar ID" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:181 +msgid "Google Calendar has been configured." +msgstr "" + +#. Label of the sb_00 (Section Break) field in DocType 'Contact' +#. Label of the google_contacts (Link) field in DocType 'Contact' +#. Name of a DocType +#. Label of the sb_00 (Section Break) field in DocType 'Google Contacts' +#. Label of a Link in the Integrations Workspace +#: frappe/contacts/doctype/contact/contact.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Contacts" +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:137 +msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:294 +msgid "Google Contacts - Could not update contact in Google Contacts {0}, error code {1}." +msgstr "" + +#. Label of the google_contacts_id (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Google Contacts Id" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 +msgid "Google Drive" +msgstr "" + +#. Label of the section_break_7 (Section Break) field in DocType 'Google +#. Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "Google Drive Picker" +msgstr "" + +#. Label of the google_drive_picker_enabled (Check) field in DocType 'Google +#. Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "Google Drive Picker Enabled" +msgstr "" + +#. Label of the font (Data) field in DocType 'Print Format' +#. Label of the google_font (Data) field in DocType 'Website Theme' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:28 +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Google Font" +msgstr "" + +#. Label of the google_meet_link (Small Text) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Google Meet Link" +msgstr "" + +#. Label of a Card Break in the Integrations Workspace +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Services" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Settings" +msgstr "" + +#: frappe/utils/csvutils.py:226 +msgid "Google Sheets URL is invalid or not publicly accessible." +msgstr "" + +#: frappe/utils/csvutils.py:231 +msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." +msgstr "" + +#. Label of the grant_type (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Grant Type" +msgstr "" + +#: frappe/public/js/frappe/form/dashboard.js:34 +#: frappe/public/js/frappe/form/templates/form_dashboard.html:10 +msgid "Graph" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Gray" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:23 +msgid "Greater Than" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:25 +msgid "Greater Than Or Equal To" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Green" +msgstr "" + +#: frappe/public/js/form_builder/components/controls/TableControl.vue:53 +msgid "Grid Empty State" +msgstr "" + +#. Label of the grid_page_length (Int) field in DocType 'DocType' +#. Label of the grid_page_length (Int) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Grid Page Length" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:127 +msgid "Grid Shortcuts" +msgstr "" + +#. Label of the group (Data) field in DocType 'DocType Action' +#. Label of the group (Data) field in DocType 'DocType Link' +#. Label of the group (Data) field in DocType 'Website Sidebar Item' +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Group" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/report/website_analytics/website_analytics.js:32 +msgid "Group By" +msgstr "" + +#. Label of the group_by_based_on (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Group By Based On" +msgstr "" + +#. Label of the group_by_type (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Group By Type" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408 +msgid "Group By field is required to create a dashboard chart" +msgstr "" + +#: frappe/database/query.py:752 +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 "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Group your custom doctypes under modules" +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 +msgid "Grouped by {0}" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "HEAD" +msgstr "" + +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "HERE" +msgstr "" + +#. Option for the 'Time Format' (Select) field in DocType 'Language' +#. Option for the 'Time Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "HH:mm" +msgstr "" + +#. Option for the 'Time Format' (Select) field in DocType 'Language' +#. Option for the 'Time Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "HH:mm:ss" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the html_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Message Type' (Select) field in DocType 'Notification' +#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter +#. Head' +#. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' +#. Label of the html (Code) field in DocType 'Print Format' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/print_format_builder/Field.vue:86 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json +msgid "HTML" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "HTML Editor" +msgstr "" + +#. Label of the page (HTML Editor) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "HTML Page" +msgstr "" + +#. Description of the 'Header' (HTML Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "HTML for header section. Optional" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "HTML with jinja support" +msgstr "" + +#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Half" +msgstr "" + +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Half Yearly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/public/js/frappe/utils/common.js:402 +msgid "Half-yearly" +msgstr "" + +#. Label of the handled_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Handled Emails" +msgstr "" + +#. Label of the has_attachment (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Has Attachment" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/has_domain/has_domain.json +msgid "Has Domain" +msgstr "" + +#. Label of the has_next_condition (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Has Next Condition" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/has_role/has_role.json +msgid "Has Role" +msgstr "" + +#. Label of the has_setup_wizard (Check) field in DocType 'Installed +#. Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Has Setup Wizard" +msgstr "" + +#. Label of the has_web_view (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Has Web View" +msgstr "" + +#: frappe/templates/signup.html:19 +msgid "Have an account? Login" +msgstr "" + +#. Label of the header (Check) field in DocType 'SMS Parameter' +#. Label of the header_section (Section Break) field in DocType 'Letter Head' +#. Label of the header (HTML Editor) field in DocType 'Web Page' +#. Label of the header (HTML Editor) field in DocType 'Website Slideshow' +#: frappe/core/doctype/sms_parameter/sms_parameter.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Header" +msgstr "" + +#. Label of the content (HTML Editor) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Header HTML" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:69 +msgid "Header HTML set from attachment {0}" +msgstr "" + +#. Label of the header_script (Code) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Header Script" +msgstr "" + +#. Label of the sb2 (Section Break) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Header and Breadcrumbs" +msgstr "" + +#. Label of the section_break_38 (Tab Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Header, Robots" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "Header/Footer scripts can be used to add dynamic behaviours." +msgstr "" + +#. Label of the webhook_headers (Table) field in DocType 'Webhook' +#. Label of the headers (Code) field in DocType 'Webhook Request Log' +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Headers" +msgstr "" + +#: frappe/email/email_body.py:322 +msgid "Headers must be a dictionary" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the heading (Data) field in DocType 'Contact Us Settings' +#. Label of the heading (Data) field in DocType 'Website Slideshow Item' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:609 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "Heading" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Heatmap" +msgstr "" + +#: frappe/templates/emails/new_user.html:2 +msgid "Hello" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "" + +#. Label of the help_section (Section Break) field in DocType 'Server Script' +#. Label of the help (HTML) field in DocType 'Property Setter' +#: frappe/core/doctype/server_script/server_script.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/public/js/frappe/form/templates/form_sidebar.html:41 +#: frappe/public/js/frappe/form/workflow.js:23 +#: frappe/public/js/frappe/ui/toolbar/navbar.html:87 +#: frappe/public/js/frappe/utils/help.js:27 +msgid "Help" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/workspace/website/website.json +msgid "Help Article" +msgstr "" + +#. Label of the help_articles (Int) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json +msgid "Help Articles" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/workspace/website/website.json +msgid "Help Category" +msgstr "" + +#. Label of the help_dropdown (Table) field in DocType 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +#: frappe/public/js/frappe/ui/toolbar/navbar.html:84 +msgid "Help Dropdown" +msgstr "" + +#. Label of the help_html (HTML) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Help HTML" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:149 +msgid "Help on Search" +msgstr "" + +#. Description of the 'Content' (Text Editor) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Help: To link to another record in the system, use \"/app/note/[Note Name]\" as the Link URL. (don't use \"http://\")" +msgstr "" + +#. Label of the helpful (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Helpful" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Helvetica" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Helvetica Neue" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1824 +msgid "Here's your tracking URL" +msgstr "" + +#: frappe/www/qrcode.html:9 +msgid "Hi {0}" +msgstr "" + +#. Label of the hidden (Check) field in DocType 'DocField' +#. Label of the hidden (Check) field in DocType 'DocType Action' +#. Label of the hidden (Check) field in DocType 'DocType Link' +#. Label of the hidden (Check) field in DocType 'Navbar Item' +#. Label of the hidden (Check) field in DocType 'Custom Field' +#. Label of the hidden (Check) field in DocType 'Customize Form Field' +#. Label of the hidden (Check) field in DocType 'Desktop Icon' +#. Label of the hidden (Check) field in DocType 'Workspace Link' +#. Label of the hidden (Check) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:3 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Hidden" +msgstr "" + +#. Label of the section_break_13 (Section Break) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Hidden Fields" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1650 +msgid "Hidden columns include: {0}" +msgstr "" + +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/frappe/widgets/base_widget.js:46 +#: frappe/public/js/frappe/widgets/base_widget.js:178 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 +#: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 +msgid "Hide" +msgstr "" + +#. Label of the hide_block (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Hide Block" +msgstr "" + +#. Label of the hide_border (Check) field in DocType 'DocField' +#. Label of the hide_border (Check) field in DocType 'Custom Field' +#. Label of the hide_border (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Hide Border" +msgstr "" + +#. Label of the hide_buttons (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Hide Buttons" +msgstr "" + +#. Label of the allow_copy (Check) field in DocType 'DocType' +#. Label of the allow_copy (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Hide Copy" +msgstr "" + +#. Label of the hide_custom (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Hide Custom DocTypes and Reports" +msgstr "" + +#. Label of the hide_days (Check) field in DocType 'DocField' +#. Label of the hide_days (Check) field in DocType 'Custom Field' +#. Label of the hide_days (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Hide Days" +msgstr "" + +#. Label of the hide_descendants (Check) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_permission/user_permission_list.js:96 +msgid "Hide Descendants" +msgstr "" + +#. Label of the hide_empty_read_only_fields (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Hide Empty Read-Only Fields" +msgstr "" + +#: frappe/www/error.html:62 +msgid "Hide Error" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:488 +msgid "Hide Label" +msgstr "" + +#. Label of the hide_login (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Hide Login" +msgstr "" + +#: frappe/public/js/form_builder/form_builder.bundle.js:43 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 +msgid "Hide Preview" +msgstr "" + +#. Description of the 'Hide Buttons' (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Hide Previous, Next and Close button on highlight dialog." +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:94 +msgid "Hide Saved" +msgstr "" + +#. Label of the hide_seconds (Check) field in DocType 'DocField' +#. Label of the hide_seconds (Check) field in DocType 'Custom Field' +#. Label of the hide_seconds (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Hide Seconds" +msgstr "" + +#. Label of the hide_toolbar (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Hide Sidebar, Menu, and Comments" +msgstr "" + +#. Label of the hide_standard_menu (Check) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Hide Standard Menu" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1851 +msgid "Hide Tags" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:179 +msgid "Hide Weekends" +msgstr "" + +#. Description of the 'Hide Descendants' (Check) field in DocType 'User +#. Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "Hide descendant records of For Value." +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:285 +msgid "Hide details" +msgstr "" + +#. Label of the hide_footer (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Hide footer" +msgstr "" + +#. Label of the hide_footer_in_auto_email_reports (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Hide footer in auto email reports" +msgstr "" + +#. Label of the hide_footer_signup (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Hide footer signup" +msgstr "" + +#. Label of the hide_navbar (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Hide navbar" +msgstr "" + +#. Option for the 'Priority' (Select) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:225 +msgid "High" +msgstr "" + +#. Description of the 'Priority' (Int) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Higher priority rule will be applied first" +msgstr "" + +#. Label of the highlight (Text) field in DocType 'Company History' +#: frappe/website/doctype/company_history/company_history.json +msgid "Highlight" +msgstr "" + +#: frappe/www/update-password.html:301 +msgid "Hint: Include symbols, numbers and capital letters in the password" +msgstr "" + +#. Label of the home_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:38 +#: frappe/public/js/frappe/views/file/file_view.js:67 +#: frappe/public/js/frappe/views/file/file_view.js:88 +#: frappe/public/js/frappe/views/pageview.js:156 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:22 frappe/www/login.html:170 frappe/www/me.html:76 +#: frappe/www/message.html:29 +msgid "Home" +msgstr "" + +#. Label of the home_page (Data) field in DocType 'Role' +#. Label of the home_page (Data) field in DocType 'Website Settings' +#: frappe/core/doctype/role/role.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Home Page" +msgstr "" + +#. Label of the home_settings (Code) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Home Settings" +msgstr "" + +#: frappe/core/doctype/file/test_file.py:321 +#: frappe/core/doctype/file/test_file.py:323 +#: frappe/core/doctype/file/test_file.py:387 +msgid "Home/Test Folder 1" +msgstr "" + +#: frappe/core/doctype/file/test_file.py:376 +msgid "Home/Test Folder 1/Test Folder 3" +msgstr "" + +#: frappe/core/doctype/file/test_file.py:332 +msgid "Home/Test Folder 2" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Frequency' (Select) field in DocType 'User' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user.json +msgid "Hourly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Hourly Long" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Hourly Maintenance" +msgstr "" + +#. Description of the 'Password Reset Link Generation Limit' (Int) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Hourly rate limit for generating password reset links" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "" + +#. Description of the 'Number Format' (Select) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "How should this currency be formatted? If not set, will use system defaults" +msgstr "" + +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "" + +#. Paragraph text in the Welcome Workspace Workspace +#: frappe/core/workspace/welcome_workspace/welcome_workspace.json +msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 +#: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 +#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 +#: frappe/public/js/frappe/data_import/data_exporter.js:330 +#: frappe/public/js/frappe/data_import/data_exporter.js:345 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 +#: frappe/public/js/frappe/model/meta.js:200 +#: frappe/public/js/frappe/model/model.js:122 +msgid "ID" +msgstr "" + +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 +msgctxt "Label of name column in report" +msgid "ID" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:169 +msgid "ID (name)" +msgstr "" + +#. Description of the 'Field Name' (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "ID (name) of the entity whose property is to be set" +msgstr "" + +#. Description of the 'Section ID' (Data) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "IDs must contain only alphanumeric characters, not contain spaces, and should be unique." +msgstr "" + +#. Label of the section_break_25 (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "IMAP Details" +msgstr "" + +#. Label of the imap_folder (Data) field in DocType 'Communication' +#. Label of the imap_folder (Table) field in DocType 'Email Account' +#. Name of a DocType +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "IMAP Folder" +msgstr "" + +#. Label of the ip_address (Data) field in DocType 'Activity Log' +#. Label of the ip_address (Data) field in DocType 'Comment' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +msgid "IP Address" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the icon (Data) field in DocType 'DocType' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the icon (Data) field in DocType 'Desktop Icon' +#. Label of the icon (Icon) field in DocType 'Workspace' +#. Label of the icon (Data) field in DocType 'Workspace Link' +#. Label of the icon (Data) field in DocType 'Workspace Shortcut' +#. Label of the icon (Data) field in DocType 'Social Login Key' +#. Label of the icon (Select) field in DocType 'Workflow State' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/public/js/frappe/views/workspace/workspace.js:458 +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Icon" +msgstr "" + +#. Description of the 'Icon' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Icon will appear on the button" +msgstr "" + +#. Label of the sb_identity_details (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Identity Details" +msgstr "" + +#. Label of the idx (Int) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Idx" +msgstr "" + +#. Description of the 'Apply Strict User Permissions' (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User" +msgstr "" + +#. Description of the 'Don't Override Status' (Check) field in DocType +#. 'Workflow' +#. Description of the 'Don't Override Status' (Check) field in DocType +#. 'Workflow Document State' +#: frappe/workflow/doctype/workflow/workflow.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "If Checked workflow status will not override status in list view" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1777 +#: 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 +msgid "If a Role does not have access at Level 0, then higher levels are meaningless." +msgstr "" + +#. Description of the 'Is Active' (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "If checked, all other workflows become inactive." +msgstr "" + +#. Description of the 'Show Absolute Values' (Check) field in DocType 'Print +#. Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "If checked, negative numeric values of Currency, Quantity or Count would be shown as positive" +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "If checked, users will not see the Confirm Access dialog." +msgstr "" + +#. Description of the 'Disabled' (Check) field in DocType 'Role' +#: frappe/core/doctype/role/role.json +msgid "If disabled, this role will be removed from all users." +msgstr "" + +#. Description of the 'Bypass Restricted IP Address Check If Two Factor Auth +#. Enabled' (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings" +msgstr "" + +#. Description of the 'Anonymous responses' (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "If enabled, all responses on the web form will be submitted anonymously" +msgstr "" + +#. Description of the 'Bypass restricted IP Address check If Two Factor Auth +#. Enabled' (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page" +msgstr "" + +#. Description of the 'Track Changes' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "If enabled, changes to the document are tracked and shown in timeline" +msgstr "" + +#. Description of the 'Track Views' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "If enabled, document views are tracked, this can happen multiple times" +msgstr "" + +#. Description of the 'Track Seen' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "If enabled, the document is marked as seen, the first time a user opens it" +msgstr "" + +#. Description of the 'Send System Notification' (Check) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "If enabled, the notification will show up in the notifications dropdown on the top right corner of the navigation bar." +msgstr "" + +#. Description of the 'Enable Password Policy' (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 1 being very weak and 4 being very strong." +msgstr "" + +#. Description of the 'Bypass Two Factor Auth for users who login from +#. restricted IP Address' (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth" +msgstr "" + +#. Description of the 'Notify Users On Every Login' (Check) field in DocType +#. 'Note' +#: frappe/desk/doctype/note/note.json +msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once." +msgstr "" + +#. Description of the 'Default Workspace' (Link) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "If left empty, the default workspace will be the last visited workspace" +msgstr "" + +#. Description of the 'Port' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "If non standard port (e.g. 587)" +msgstr "" + +#. Description of the 'Port' (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "If non standard port (e.g. 587). If on Google Cloud, try port 2525." +msgstr "" + +#. Description of the 'Port' (Data) field in DocType 'Email Account' +#. Description of the 'Port' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)" +msgstr "" + +#. Description of the 'Currency Precision' (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If not set, the currency precision will depend on number format" +msgstr "" + +#. Description of the 'Roles' (Table) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used." +msgstr "" + +#. Description of the 'User Type' (Link) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:38 +msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." +msgstr "" + +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType +#. 'DocField' +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom +#. Field' +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType +#. 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "If unchecked, the value will always be re-fetched on save." +msgstr "" + +#. Label of the if_owner (Check) field in DocType 'Custom DocPerm' +#. Label of the if_owner (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +msgid "If user is the owner" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:204 +msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:188 +msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:186 +msgid "If you are uploading new records, leave the \"name\" (ID) column blank." +msgstr "" + +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 +msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." +msgstr "" + +#. Description of the 'Parent Label' (Select) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "If you set this, this Item will come in a drop-down under the selected parent." +msgstr "" + +#: frappe/templates/emails/administrator_logged_in.html:3 +msgid "If you think this is unauthorized, please change the Administrator password." +msgstr "" + +#. Description of the 'Delimiter Options' (Data) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "If your CSV uses a different delimiter, add that character here, ensuring no spaces or additional characters are included." +msgstr "" + +#. Description of the 'Source Text' (Code) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "If your data is in HTML, please copy paste the exact HTML code with the tags." +msgstr "" + +#. Label of the ignore_user_permissions (Check) field in DocType 'DocField' +#. Label of the ignore_user_permissions (Check) field in DocType 'Custom Field' +#. Label of the ignore_user_permissions (Check) field in DocType 'Customize +#. Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Ignore User Permissions" +msgstr "" + +#. Label of the ignore_xss_filter (Check) field in DocType 'DocField' +#. Label of the ignore_xss_filter (Check) field in DocType 'Custom Field' +#. Label of the ignore_xss_filter (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Ignore XSS Filter" +msgstr "" + +#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email +#. Account' +#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Ignore attachments over this size" +msgstr "" + +#. Label of the ignored_apps (Table) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Ignored Apps" +msgstr "" + +#: frappe/model/workflow.py:202 +msgid "Illegal Document Status for {0}" +msgstr "" + +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 +msgid "Illegal SQL Query" +msgstr "" + +#: frappe/utils/jinja.py:127 +msgid "Illegal template" +msgstr "" + +#. Label of the image (Attach Image) field in DocType 'Contact' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter +#. Head' +#. Label of the image (Attach Image) field in DocType 'Letter Head' +#. Label of the footer_image (Attach Image) field in DocType 'Letter Head' +#. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' +#. Label of the meta_image (Attach Image) field in DocType 'Web Page' +#. Label of the image (Attach) field in DocType 'Website Slideshow Item' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "Image" +msgstr "" + +#. Label of the image_field (Data) field in DocType 'DocType' +#. Label of the image_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Image Field" +msgstr "" + +#. Label of the image_height (Float) field in DocType 'Letter Head' +#. Label of the footer_image_height (Float) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Image Height" +msgstr "" + +#. Label of the image_link (Attach) field in DocType 'About Us Team Member' +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +msgid "Image Link" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:208 +msgid "Image View" +msgstr "" + +#. Label of the image_width (Float) field in DocType 'Letter Head' +#. Label of the footer_image_width (Float) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Image Width" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1507 +msgid "Image field must be a valid fieldname" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1509 +msgid "Image field must be of type Attach Image" +msgstr "" + +#: frappe/core/doctype/file/utils.py:136 +msgid "Image link '{0}' is not valid" +msgstr "" + +#: frappe/core/doctype/file/file.js:108 +msgid "Image optimized" +msgstr "" + +#: frappe/core/doctype/file/utils.py:289 +msgid "Image: Corrupted Data Stream" +msgstr "" + +#: frappe/public/js/frappe/views/image/image_view.js:13 +msgid "Images" +msgstr "" + +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/user/user.js:372 +msgid "Impersonate" +msgstr "" + +#: frappe/core/doctype/user/user.js:399 +msgid "Impersonate as {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 +msgid "Impersonated by {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:21 +msgid "Impersonating {0}" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:56 +msgid "Implement `clear_old_logs` method to enable auto error clearing." +msgstr "" + +#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Implicit" +msgstr "" + +#. Label of the import (Check) field in DocType 'Custom DocPerm' +#. Label of the import (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/recorder/recorder_list.js:16 +#: frappe/email/doctype/email_group/email_group.js:31 +msgid "Import" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1913 +msgctxt "Button in list view menu" +msgid "Import" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Label of a shortcut in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Import Data" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.js:14 +msgid "Import Email From" +msgstr "" + +#. Label of the import_file (Attach) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import File" +msgstr "" + +#. Label of the import_warnings_section (Section Break) field in DocType 'Data +#. Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import File Errors and Warnings" +msgstr "" + +#. Label of the import_log_section (Section Break) field in DocType 'Data +#. Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Log" +msgstr "" + +#. Label of the import_log_preview (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Log Preview" +msgstr "" + +#. Label of the import_preview (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Preview" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:41 +msgid "Import Progress" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.js:8 +#: frappe/email/doctype/email_group/email_group.js:30 +msgid "Import Subscribers" +msgstr "" + +#. Label of the import_type (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Type" +msgstr "" + +#. Label of the import_warnings (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Warnings" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:117 +msgid "Import Zip" +msgstr "" + +#. Label of the google_sheets_url (Data) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import from Google Sheets" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:612 +msgid "Import template should be of type .csv, .xlsx or .xls" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:482 +msgid "Import template should contain a Header and atleast one row." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:165 +msgid "Import timed out, please re-try." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.py:68 +msgid "Importing {0} is not allowed." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.js:19 +msgid "Importing {0} of {1}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:35 +msgid "Importing {0} of {1}, {2}" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:20 +msgid "In" +msgstr "" + +#. Description of the 'Force User to Reset Password' (Int) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "In Days" +msgstr "" + +#. Label of the in_filter (Check) field in DocType 'DocField' +#. Label of the in_filter (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In Filter" +msgstr "" + +#. Label of the in_global_search (Check) field in DocType 'DocField' +#. Label of the in_global_search (Check) field in DocType 'Custom Field' +#. Label of the in_global_search (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In Global Search" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.js:88 +msgid "In Grid View" +msgstr "" + +#. Label of the in_standard_filter (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "In List Filter" +msgstr "" + +#. Label of the in_list_view (Check) field in DocType 'DocField' +#. Label of the in_list_view (Check) field in DocType 'Custom Field' +#. Label of the in_list_view (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.js:89 +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In List View" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:19 +msgid "In Minutes" +msgstr "" + +#. Label of the in_preview (Check) field in DocType 'DocField' +#. Label of the in_preview (Check) field in DocType 'Custom Field' +#. Label of the in_preview (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In Preview" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:42 +msgid "In Progress" +msgstr "" + +#: frappe/database/database.py:287 +msgid "In Read Only Mode" +msgstr "" + +#. Label of the in_reply_to (Link) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "In Reply To" +msgstr "" + +#. Label of the in_standard_filter (Check) field in DocType 'Custom Field' +#. Label of the in_standard_filter (Check) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In Standard Filter" +msgstr "" + +#. Description of the 'Font Size' (Float) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "In points. Default is 9." +msgstr "" + +#. Description of the 'Allow Login After Fail' (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "In seconds" +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:209 +msgid "Inactive" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/email/doctype/email_account/email_account_list.js:19 +msgid "Inbox" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_account/email_account.json +msgid "Inbox User" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:209 +msgid "Inbox View" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:110 +msgid "Include Disabled" +msgstr "" + +#. Label of the include_name_field (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Include Name Field" +msgstr "" + +#. Label of the navbar_search (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Include Search in Top Bar" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.js:61 +msgid "Include Theme from Apps" +msgstr "" + +#. Label of the attach_view_link (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Include Web View Link in Email" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 +msgid "Include filters" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1648 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1620 +msgid "Include indentation" +msgstr "" + +#: frappe/public/js/frappe/form/controls/password.js:106 +msgid "Include symbols, numbers and capital letters in the password" +msgstr "" + +#. Label of the incoming_popimap_tab (Tab Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Incoming" +msgstr "" + +#. Label of the mailbox_settings (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Incoming (POP/IMAP) Settings" +msgstr "" + +#. Label of the incoming_emails_last_7_days_column (Column Break) field in +#. DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Incoming Emails (Last 7 days)" +msgstr "" + +#. Label of the email_server (Data) field in DocType 'Email Account' +#. Label of the email_server (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Incoming Server" +msgstr "" + +#. Label of the mailbox_settings (Section Break) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Incoming Settings" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:32 +msgid "Incoming email account not correct" +msgstr "" + +#: frappe/model/virtual_doctype.py:79 frappe/model/virtual_doctype.py:92 +msgid "Incomplete Virtual Doctype Implementation" +msgstr "" + +#: frappe/auth.py:258 +msgid "Incomplete login details" +msgstr "" + +#: frappe/email/smtp.py:104 +msgid "Incorrect Configuration" +msgstr "" + +#: frappe/utils/csvutils.py:234 +msgid "Incorrect URL" +msgstr "" + +#: frappe/utils/password.py:100 +msgid "Incorrect User or Password" +msgstr "" + +#: frappe/twofactor.py:176 frappe/twofactor.py:188 +msgid "Incorrect Verification code" +msgstr "" + +#: frappe/model/document.py:1555 +msgid "Incorrect value in row {0}:" +msgstr "" + +#: frappe/model/document.py:1557 +msgid "Incorrect value:" +msgstr "" + +#. Label of the search_index (Check) field in DocType 'DocField' +#. Label of the index (Int) field in DocType 'Recorder Query' +#. Label of the search_index (Check) field in DocType 'Custom Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder_query/recorder_query.json +#: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 +#: frappe/public/js/frappe/model/meta.js:203 +#: frappe/public/js/frappe/model/model.js:124 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 +msgid "Index" +msgstr "" + +#. Label of the index_web_pages_for_search (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Index Web Pages for Search" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:132 +msgid "Index created successfully on column {0} of doctype {1}" +msgstr "" + +#. Label of the indexing_authorization_code (Data) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Indexing authorization code" +msgstr "" + +#. Label of the indexing_refresh_token (Data) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Indexing refresh token" +msgstr "" + +#. Label of the indicator (Select) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Indicator" +msgstr "" + +#. Label of the indicator_color (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Indicator Color" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:463 +msgid "Indicator color" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/core/doctype/comment/comment.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Info" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:144 +msgid "Info:" +msgstr "" + +#. Label of the initial_sync_count (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Initial Sync Count" +msgstr "" + +#. Option for the 'Database Engine' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "InnoDB" +msgstr "" + +#. Description of the 'New Role' (Data) field in DocType 'Role Replication' +#: frappe/core/doctype/role_replication/role_replication.json +msgid "Input existing role name if you would like to extend it with access of another role." +msgstr "" + +#: frappe/core/doctype/data_import/data_import_list.js:35 +msgid "Insert" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Insert Above" +msgstr "" + +#. Label of the insert_after (Select) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/public/js/frappe/views/reports/query_report.js:1893 +msgid "Insert After" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:251 +msgid "Insert After cannot be set as {0}" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:244 +msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Insert Below" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:395 +msgid "Insert Column Before {0}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/markdown_editor.js:82 +msgid "Insert Image in Markdown" +msgstr "" + +#. Option for the 'Import Type' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Insert New Records" +msgstr "" + +#. Label of the insert_style (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Insert Style" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 +msgid "Install {0} from Marketplace" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Installed Application" +msgstr "" + +#. Name of a DocType +#. Label of the installed_applications (Table) field in DocType 'Installed +#. Applications' +#: frappe/core/doctype/installed_applications/installed_applications.json +msgid "Installed Applications" +msgstr "" + +#: frappe/core/doctype/installed_applications/installed_applications.js:18 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Installed Apps" +msgstr "" + +#. Label of the instructions (HTML) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Instructions" +msgstr "" + +#: frappe/templates/includes/login/login.js:261 +msgid "Instructions Emailed" +msgstr "" + +#: frappe/permissions.py:840 +msgid "Insufficient Permission Level for {0}" +msgstr "" + +#: frappe/database/query.py:808 frappe/database/query.py:1054 +msgid "Insufficient Permission for {0}" +msgstr "" + +#: frappe/desk/reportview.py:361 +msgid "Insufficient Permissions for deleting Report" +msgstr "" + +#: frappe/desk/reportview.py:332 +msgid "Insufficient Permissions for editing Report" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:446 +msgid "Insufficient attachment limit" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Int" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Integration Request" +msgstr "" + +#. Group in User's connections +#. Name of a Workspace +#. Label of the integrations (Tab Break) field in DocType 'Website Settings' +#: frappe/core/doctype/user/user.json +#: frappe/integrations/workspace/integrations/integrations.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Integrations" +msgstr "" + +#. Description of the 'Delivery Status' (Select) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Integrations can use this field to set email delivery status" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Inter" +msgstr "" + +#. Label of the interest (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Interests" +msgstr "" + +#. Option for the 'Level' (Select) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Intermediate" +msgstr "" + +#: frappe/public/js/frappe/request.js:235 +msgid "Internal Server Error" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/docshare/docshare.json +msgid "Internal record of document shares" +msgstr "" + +#. Label of the intro_video_url (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Intro Video URL" +msgstr "" + +#. Description of the 'Company Introduction' (Text Editor) field in DocType +#. 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Introduce your company to the website visitor." +msgstr "" + +#. Label of the introduction_section (Section Break) field in DocType 'Contact +#. Us Settings' +#. Label of the introduction (Text Editor) field in DocType 'Contact Us +#. Settings' +#. Label of the introduction_text (Text Editor) field in DocType 'Web Form' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Introduction" +msgstr "" + +#. Description of the 'Introduction' (Text Editor) field in DocType 'Contact Us +#. Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Introductory information for the Contact Us Page" +msgstr "" + +#. Label of the introspection_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Introspection URI" +msgstr "" + +#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization +#. Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Invalid" +msgstr "" + +#: frappe/public/js/form_builder/utils.js:221 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 +msgid "Invalid \"depends_on\" expression" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:514 +msgid "Invalid \"depends_on\" expression set in filter {0}" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:210 +msgid "Invalid \"mandatory_depends_on\" expression" +msgstr "" + +#: frappe/utils/nestedset.py:178 +msgid "Invalid Action" +msgstr "" + +#: frappe/utils/csvutils.py:37 +msgid "Invalid CSV Format" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:111 +msgid "Invalid Code. Please try again." +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:91 +msgid "Invalid Condition: {}" +msgstr "" + +#: frappe/email/smtp.py:135 +msgid "Invalid Credentials" +msgstr "" + +#: frappe/utils/data.py:146 frappe/utils/data.py:309 +msgid "Invalid Date" +msgstr "" + +#: frappe/www/list.py:85 +msgid "Invalid DocType" +msgstr "" + +#: frappe/database/query.py:144 +msgid "Invalid DocType: {0}" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1273 +msgid "Invalid Fieldname" +msgstr "" + +#: frappe/core/doctype/file/file.py:221 +msgid "Invalid File URL" +msgstr "" + +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 +msgid "Invalid Filter" +msgstr "" + +#: frappe/public/js/form_builder/store.js:221 +msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" +msgstr "" + +#: frappe/utils/dashboard.py:61 +msgid "Invalid Filter Value" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.py:83 +msgid "Invalid Home Page" +msgstr "" + +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 +msgid "Invalid Link" +msgstr "" + +#: frappe/www/login.py:128 +msgid "Invalid Login Token" +msgstr "" + +#: frappe/templates/includes/login/login.js:290 +msgid "Invalid Login. Try again." +msgstr "" + +#: frappe/email/receive.py:112 frappe/email/receive.py:149 +msgid "Invalid Mail Server. Please rectify and try again." +msgstr "" + +#: frappe/model/naming.py:109 +msgid "Invalid Naming Series: {}" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.py:113 +#: frappe/core/doctype/rq_job/rq_job.py:122 +msgid "Invalid Operation" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 +msgid "Invalid Option" +msgstr "" + +#: frappe/email/smtp.py:103 +msgid "Invalid Outgoing Mail Server or Port: {0}" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 +msgid "Invalid Output Format" +msgstr "" + +#: frappe/model/base_document.py:134 +msgid "Invalid Override" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.py:202 +msgid "Invalid Parameters." +msgstr "" + +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 +msgid "Invalid Password" +msgstr "" + +#: frappe/utils/__init__.py:125 +msgid "Invalid Phone Number" +msgstr "" + +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/www/login.py:128 +msgid "Invalid Request" +msgstr "" + +#: frappe/desk/search.py:26 +msgid "Invalid Search Field {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1215 +msgid "Invalid Table Fieldname" +msgstr "" + +#: frappe/public/js/workflow_builder/store.js:192 +msgid "Invalid Transition" +msgstr "" + +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 +#: frappe/public/js/frappe/widgets/widget_dialog.js:602 +#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 +msgid "Invalid URL" +msgstr "" + +#: frappe/email/receive.py:157 +msgid "Invalid User Name or Support Password. Please rectify and try again." +msgstr "" + +#: frappe/public/js/frappe/ui/field_group.js:137 +msgid "Invalid Values" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:120 +msgid "Invalid Webhook Secret" +msgstr "" + +#: frappe/desk/reportview.py:187 +msgid "Invalid aggregate function" +msgstr "" + +#: frappe/database/query.py:1544 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1470 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1446 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:462 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:577 +msgid "Invalid characters in table name: {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:404 +msgid "Invalid column" +msgstr "" + +#: frappe/database/query.py:383 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:789 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1020 frappe/model/document.py:1034 +msgid "Invalid docstatus" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:229 +msgid "Invalid expression set in filter {0}" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:219 +msgid "Invalid expression set in filter {0} ({1})" +msgstr "" + +#: frappe/database/query.py:1303 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:736 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1622 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2241 +msgid "Invalid field name {0}" +msgstr "" + +#: frappe/database/query.py:670 +msgid "Invalid field type: {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1086 +msgid "Invalid fieldname '{0}' in autoname" +msgstr "" + +#: frappe/deprecation_dumpster.py:283 +msgid "Invalid file path: {0}" +msgstr "" + +#: frappe/database/query.py:366 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:452 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:201 +msgid "Invalid filter: {0}" +msgstr "" + +#: frappe/database/query.py:1424 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1385 +msgid "Invalid function dictionary format" +msgstr "" + +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "" + +#: frappe/desk/doctype/dashboard/dashboard.py:67 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 +msgid "Invalid json added in the custom options: {0}" +msgstr "" + +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 +msgid "Invalid name type (integer) for varchar name column" +msgstr "" + +#: frappe/model/naming.py:62 +msgid "Invalid naming series {}: dot (.) missing" +msgstr "" + +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:453 +msgid "Invalid or corrupted content for import" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.py:139 +msgid "Invalid redirect regex in row #{}: {}" +msgstr "" + +#: frappe/app.py:340 +msgid "Invalid request arguments" +msgstr "" + +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 +msgid "Invalid simple filter format: {0}" +msgstr "" + +#: frappe/database/query.py:343 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1491 +msgid "Invalid string literal format: {0}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:430 +msgid "Invalid template file for import" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.py:208 +msgid "Invalid token state! Check if the token has been created by the OAuth user." +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:165 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:336 +msgid "Invalid username or password" +msgstr "" + +#: frappe/model/naming.py:176 +msgid "Invalid value specified for UUID: {}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:253 +msgctxt "Error message in web form" +msgid "Invalid values for fields:" +msgstr "" + +#: frappe/printing/page/print/print.js:654 +msgid "Invalid wkhtmltopdf version" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1565 +msgid "Invalid {0} condition" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Inverse" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + +#: frappe/contacts/doctype/contact/contact.js:30 +msgid "Invite as User" +msgstr "" + +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:22 +msgid "Is" +msgstr "" + +#. Label of the is_active (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Is Active" +msgstr "" + +#. Label of the is_attachments_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Attachments Folder" +msgstr "" + +#. Label of the is_calendar_and_gantt (Check) field in DocType 'DocType' +#. Label of the is_calendar_and_gantt (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Is Calendar and Gantt" +msgstr "" + +#. Label of the istable (Check) field in DocType 'DocType' +#. Label of the is_child_table (Check) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:50 +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Is Child Table" +msgstr "" + +#. Label of the is_complete (Check) field in DocType 'Module Onboarding' +#. Label of the is_complete (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Complete" +msgstr "" + +#. Label of the is_completed (Check) field in DocType 'Email Flag Queue' +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Is Completed" +msgstr "" + +#. Label of the is_custom (Check) field in DocType 'Role' +#. Label of the is_custom (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "Is Custom" +msgstr "" + +#. Label of the is_custom_field (Check) field in DocType 'Customize Form Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Is Custom Field" +msgstr "" + +#. Label of the is_default (Check) field in DocType 'Address Template' +#. Label of the is_default (Check) field in DocType 'User Permission' +#. Label of the is_default (Check) field in DocType 'Dashboard' +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_permission/user_permission_list.js:69 +#: frappe/desk/doctype/dashboard/dashboard.json +msgid "Is Default" +msgstr "" + +#. Label of the is_dynamic_url (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Is Dynamic URL?" +msgstr "" + +#. Label of the is_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Folder" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:43 +msgid "Is Global" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Er Gruppe" + +#. Label of the is_hidden (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Is Hidden" +msgstr "" + +#. Label of the is_home_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Home Folder" +msgstr "" + +#. Label of the reqd (Check) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Is Mandatory Field" +msgstr "" + +#. Label of the is_optional_state (Check) field in DocType 'Workflow Document +#. State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Is Optional State" +msgstr "" + +#. Label of the is_primary (Check) field in DocType 'Contact Email' +#: frappe/contacts/doctype/contact_email/contact_email.json +msgid "Is Primary" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "" + +#. Label of the is_primary_contact (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 +msgid "Is Primary Contact" +msgstr "" + +#. Label of the is_primary_mobile_no (Check) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Is Primary Mobile" +msgstr "" + +#. Label of the is_primary_phone (Check) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Is Primary Phone" +msgstr "" + +#. Label of the is_private (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Private" +msgstr "" + +#. Label of the is_public (Check) field in DocType 'Dashboard Chart' +#. Label of the is_public (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Is Public" +msgstr "" + +#. Label of the is_published_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Is Published Field" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1516 +msgid "Is Published Field must be a valid fieldname" +msgstr "" + +#. Label of the is_query_report (Check) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:341 +msgid "Is Query Report" +msgstr "" + +#. Label of the is_remote_request (Check) field in DocType 'Integration +#. Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Is Remote Request?" +msgstr "" + +#. Label of the is_setup_complete (Check) field in DocType 'Installed +#. Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Is Setup Complete?" +msgstr "" + +#. Label of the issingle (Check) field in DocType 'DocType' +#. Label of the is_single (Check) field in DocType 'Onboarding Step' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:65 +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Single" +msgstr "" + +#. Label of the is_skipped (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Skipped" +msgstr "" + +#. Label of the is_spam (Check) field in DocType 'Email Rule' +#: frappe/email/doctype/email_rule/email_rule.json +msgid "Is Spam" +msgstr "" + +#. Label of the is_standard (Check) field in DocType 'Navbar Item' +#. Label of the is_standard (Select) field in DocType 'Report' +#. Label of the is_standard (Check) field in DocType 'User Type' +#. Label of the is_standard (Check) field in DocType 'Dashboard' +#. Label of the is_standard (Check) field in DocType 'Dashboard Chart' +#. Label of the is_standard (Check) field in DocType 'Form Tour' +#. Label of the is_standard (Check) field in DocType 'Number Card' +#. Label of the is_standard (Check) field in DocType 'Notification' +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/notification/notification.json +msgid "Is Standard" +msgstr "" + +#. Label of the is_submittable (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:40 +msgid "Is Submittable" +msgstr "" + +#. Label of the is_system_generated (Check) field in DocType 'Custom Field' +#. Label of the is_system_generated (Check) field in DocType 'Customize Form +#. Field' +#. Label of the is_system_generated (Check) field in DocType 'Property Setter' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Is System Generated" +msgstr "" + +#. Label of the istable (Check) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Is Table" +msgstr "" + +#. Label of the is_table_field (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Is Table Field" +msgstr "" + +#. Label of the is_tree (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Is Tree" +msgstr "" + +#. Label of the is_unique (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Is Unique" +msgstr "" + +#. Label of the is_virtual (Check) field in DocType 'DocType' +#. Label of the is_virtual (Check) field in DocType 'Custom Field' +#. Label of the is_virtual (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Is Virtual" +msgstr "" + +#. Label of the is_standard (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Is standard" +msgstr "" + +#: frappe/core/doctype/file/utils.py:157 frappe/utils/file_manager.py:311 +msgid "It is risky to delete this file: {0}. Please contact your System Manager." +msgstr "" + +#. Label of the item_label (Data) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Item Label" +msgstr "" + +#. Label of the item_type (Select) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Item Type" +msgstr "" + +#: frappe/utils/nestedset.py:229 +msgid "Item cannot be added to its own descendants" +msgstr "" + +#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "JS" +msgstr "" + +#. Label of the js_message (HTML) field in DocType 'Custom HTML Block' +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +msgid "JS Message" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the json (Code) field in DocType 'Report' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Request Structure' (Select) field in DocType 'Webhook' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report/report.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/integrations/doctype/webhook/webhook.json +msgid "JSON" +msgstr "" + +#. Label of the webhook_json (Code) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "JSON Request Body" +msgstr "" + +#: frappe/templates/signup.html:5 +msgid "Jane Doe" +msgstr "" + +#. Label of the js (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "JavaScript" +msgstr "" + +#. Description of the 'Javascript' (Code) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}" +msgstr "" + +#. Label of the javascript (Code) field in DocType 'Report' +#. Label of the javascript_section (Section Break) field in DocType 'Custom +#. HTML Block' +#. Label of the javascript (Code) field in DocType 'Web Page' +#. Label of the javascript (Code) field in DocType 'Website Script' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_script/website_script.json +msgid "Javascript" +msgstr "" + +#: frappe/www/login.html:74 +msgid "Javascript is disabled on your browser" +msgstr "" + +#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Jinja" +msgstr "" + +#. Label of the job_id (Data) field in DocType 'Prepared Report' +#. Label of the job_id (Data) field in DocType 'RQ Job' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job ID" +msgstr "" + +#. Label of the job_id (Link) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Job Id" +msgstr "" + +#. Label of the job_info_section (Section Break) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job Info" +msgstr "" + +#. Label of the job_name (Data) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job Name" +msgstr "" + +#. Label of the job_status_section (Section Break) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job Status" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.js:24 +msgid "Job Stopped Successfully" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.py:121 +msgid "Job is in {0} state and can't be cancelled" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.py:113 +msgid "Job is not running." +msgstr "" + +#: frappe/desk/doctype/event/event.js:55 +msgid "Join video conference with {0}" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 +msgid "Jump to field" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:17 +#: frappe/public/js/frappe/utils/number_systems.js:31 +#: frappe/public/js/frappe/utils/number_systems.js:53 +msgctxt "Number system" +msgid "K" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Kanban" +msgstr "" + +#. Name of a DocType +#. Label of the kanban_board (Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:511 +msgid "Kanban Board" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Kanban Board Column" +msgstr "" + +#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 +msgid "Kanban Board Name" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 +msgctxt "Button in kanban view menu" +msgid "Kanban Settings" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:206 +msgid "Kanban View" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Keep track of all update feeds" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/communication/communication.json +msgid "Keeps track of all communications" +msgstr "" + +#. Label of the defkey (Data) field in DocType 'DefaultValue' +#. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' +#. Label of the key (Data) field in DocType 'Query Parameters' +#. Label of the key (Data) field in DocType 'Webhook Data' +#. Label of the key (Small Text) field in DocType 'Webhook Header' +#. Label of the key (Data) field in DocType 'Website Meta Tag' +#: frappe/core/doctype/defaultvalue/defaultvalue.json +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/integrations/doctype/query_parameters/query_parameters.json +#: frappe/integrations/doctype/webhook_data/webhook_data.json +#: frappe/integrations/doctype/webhook_header/webhook_header.json +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json +msgid "Key" +msgstr "" + +#. Label of a standard help item +#. Type: Action +#: frappe/hooks.py frappe/public/js/frappe/ui/keyboard.js:130 +msgid "Keyboard Shortcuts" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Keycloak" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:37 +msgctxt "Number system" +msgid "Kh" +msgstr "" + +#. Label of a Card Break in the Website Workspace +#: frappe/website/doctype/help_article/help_article.py:80 +#: frappe/website/doctype/help_article/templates/help_article_list.html:2 +#: frappe/website/doctype/help_article/templates/help_article_list.html:11 +#: frappe/website/workspace/website/website.json +msgid "Knowledge Base" +msgstr "" + +#. Name of a role +#: frappe/website/doctype/help_article/help_article.json +msgid "Knowledge Base Contributor" +msgstr "" + +#. Name of a role +#: frappe/website/doctype/help_article/help_article.json +msgid "Knowledge Base Editor" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:27 +#: frappe/public/js/frappe/utils/number_systems.js:49 +msgctxt "Number system" +msgid "L" +msgstr "" + +#. Label of the ldap_auth_section (Section Break) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Auth" +msgstr "" + +#. Label of the ldap_custom_settings_section (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Custom Settings" +msgstr "" + +#. Label of the ldap_email_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Email Field" +msgstr "" + +#. Label of the ldap_first_name_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP First Name Field" +msgstr "" + +#. Label of the ldap_group (Data) field in DocType 'LDAP Group Mapping' +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgid "LDAP Group" +msgstr "" + +#. Label of the ldap_group_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Group Field" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgid "LDAP Group Mapping" +msgstr "" + +#. Label of the ldap_group_mappings_section (Section Break) field in DocType +#. 'LDAP Settings' +#. Label of the ldap_groups (Table) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Group Mappings" +msgstr "" + +#. Label of the ldap_group_member_attribute (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Group Member attribute" +msgstr "" + +#. Label of the ldap_last_name_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Last Name Field" +msgstr "" + +#. Label of the ldap_middle_name_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Middle Name Field" +msgstr "" + +#. Label of the ldap_mobile_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Mobile Field" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163 +msgid "LDAP Not Installed" +msgstr "" + +#. Label of the ldap_phone_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Phone Field" +msgstr "" + +#. Label of the ldap_search_string (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Search String" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:130 +msgid "LDAP Search String must be enclosed in '()' and needs to contian the user placeholder {0}, eg sAMAccountName={0}" +msgstr "" + +#. Label of the ldap_search_and_paths_section (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Search and Paths" +msgstr "" + +#. Label of the ldap_security (Section Break) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Security" +msgstr "" + +#. Label of the ldap_server_settings_section (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Server Settings" +msgstr "" + +#. Label of the ldap_server_url (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Server Url" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "LDAP Settings" +msgstr "" + +#. Label of the ldap_user_creation_and_mapping_section (Section Break) field in +#. DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP User Creation and Mapping" +msgstr "" + +#. Label of the ldap_username_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Username Field" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:309 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:426 +msgid "LDAP is not enabled." +msgstr "" + +#. Label of the ldap_search_path_group (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP search path for Groups" +msgstr "" + +#. Label of the ldap_search_path_user (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP search path for Users" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:102 +msgid "LDAP settings incorrect. validation response was: {0}" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Label of the label (Data) field in DocType 'DocField' +#. Label of the label (Data) field in DocType 'DocType Action' +#. Label of the label (Data) field in DocType 'Report Column' +#. Label of the label (Data) field in DocType 'Report Filter' +#. Label of the label (Data) field in DocType 'Custom Field' +#. Label of the label (Data) field in DocType 'Customize Form Field' +#. Label of the label (Data) field in DocType 'DocType Layout Field' +#. Label of the label (Data) field in DocType 'Desktop Icon' +#. Label of the label (Data) field in DocType 'Form Tour Step' +#. Label of the label (Data) field in DocType 'Number Card' +#. Label of the label (Data) field in DocType 'Workspace Chart' +#. Label of the label (Data) field in DocType 'Workspace Custom Block' +#. Label of the label (Data) field in DocType 'Workspace Link' +#. Label of the label (Data) field in DocType 'Workspace Number Card' +#. Label of the label (Data) field in DocType 'Workspace Quick List' +#. Label of the label (Data) field in DocType 'Workspace Shortcut' +#. Label of the label (Data) field in DocType 'Top Bar Item' +#. Label of the label (Data) field in DocType 'Web Template Field' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/workspace_chart/workspace_chart.json +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:474 +#: frappe/public/js/form_builder/components/Field.vue:208 +#: frappe/public/js/frappe/widgets/widget_dialog.js:183 +#: frappe/public/js/frappe/widgets/widget_dialog.js:251 +#: frappe/public/js/frappe/widgets/widget_dialog.js:313 +#: frappe/public/js/frappe/widgets/widget_dialog.js:466 +#: frappe/public/js/frappe/widgets/widget_dialog.js:643 +#: frappe/public/js/frappe/widgets/widget_dialog.js:676 +#: frappe/public/js/print_format_builder/Field.vue:18 +#: frappe/templates/form_grid/fields.html:37 +#: frappe/website/doctype/top_bar_item/top_bar_item.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Label" +msgstr "" + +#. Label of the label_help (HTML) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Label Help" +msgstr "" + +#. Label of the label_and_type (Section Break) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Label and Type" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:145 +msgid "Label is mandatory" +msgstr "" + +#. Label of the sb0 (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Landing Page" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:23 +msgid "Landscape" +msgstr "" + +#. Name of a DocType +#. Label of the language (Link) field in DocType 'System Settings' +#. Label of the language (Link) field in DocType 'Translation' +#. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 +#: frappe/public/js/frappe/form/templates/print_layout.html:11 +msgid "Language" +msgstr "" + +#. Label of the language_code (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +msgid "Language Code" +msgstr "" + +#. Label of the language_name (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +msgid "Language Name" +msgstr "" + +#. Label of the last_10_active_users (Code) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Last 10 active users" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:628 +msgid "Last 14 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:632 +msgid "Last 30 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:652 +msgid "Last 6 Months" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:624 +msgid "Last 7 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:636 +msgid "Last 90 Days" +msgstr "" + +#. Label of the last_active (Datetime) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Active" +msgstr "" + +#. Label of the last_execution (Datetime) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Last Execution" +msgstr "" + +#. Label of the last_heartbeat (Datetime) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Last Heartbeat" +msgstr "" + +#. Label of the last_ip (Read Only) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last IP" +msgstr "" + +#. Label of the last_known_versions (Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Known Versions" +msgstr "" + +#. Label of the last_login (Read Only) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Login" +msgstr "" + +#: frappe/email/doctype/notification/notification.js:32 +msgid "Last Modified Date" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:242 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:480 +msgid "Last Modified On" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:644 +msgid "Last Month" +msgstr "" + +#. Label of the last_name (Data) field in DocType 'Contact' +#. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 +msgid "Last Name" +msgstr "" + +#. Label of the last_password_reset_date (Date) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Password Reset Date" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:648 +msgid "Last Quarter" +msgstr "" + +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" + +#. Label of the last_reset_password_key_generated_on (Datetime) field in +#. DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Reset Password Key Generated On" +msgstr "" + +#. Label of the datetime_last_run (Datetime) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Last Run" +msgstr "" + +#. Label of the last_sync_on (Datetime) field in DocType 'Google Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Last Sync On" +msgstr "" + +#. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Last Synced On" +msgstr "" + +#: frappe/model/meta.py:57 frappe/public/js/frappe/model/meta.js:205 +#: frappe/public/js/frappe/model/model.js:130 +msgid "Last Updated By" +msgstr "" + +#: frappe/model/meta.py:56 frappe/public/js/frappe/model/meta.js:204 +#: frappe/public/js/frappe/model/model.js:126 +msgid "Last Updated On" +msgstr "" + +#. Label of the last_user (Link) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Last User" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:640 +msgid "Last Week" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:656 +msgid "Last Year" +msgstr "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:753 +msgid "Last synced {0}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:194 +msgid "Layout Reset" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:186 +msgid "Layout will be reset to standard layout, are you sure you want to do this?" +msgstr "" + +#: frappe/website/web_template/section_with_features/section_with_features.html:26 +msgid "Learn more" +msgstr "" + +#. Description of the 'Repeat Till' (Date) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Leave blank to repeat always" +msgstr "" + +#: frappe/core/doctype/communication/mixins.py:207 +#: frappe/email/doctype/email_account/email_account.py:720 +msgid "Leave this conversation" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Ledger" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Align' (Select) field in DocType 'Letter Head' +#. Option for the 'Text Align' (Select) field in DocType 'Web Page' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Left" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:483 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:155 +msgctxt "alignment" +msgid "Left" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Left Bottom" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Left Center" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:58 +msgid "Left this conversation" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Legal" +msgstr "" + +#. Label of the length (Int) field in DocType 'DocField' +#. Label of the length (Int) field in DocType 'Custom Field' +#. Label of the length (Int) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Length" +msgstr "" + +#: frappe/public/js/frappe/ui/chart.js:11 +msgid "Length of passed data array is greater than value of maximum allowed label points!" +msgstr "" + +#: frappe/database/schema.py:138 +msgid "Length of {0} should be between 1 and 1000" +msgstr "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:729 +msgid "Less" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:24 +msgid "Less Than" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:26 +msgid "Less Than Or Equal To" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:434 +msgid "Let us continue with the onboarding" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/blocks/onboarding.js:94 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:597 +msgid "Let's Get Started" +msgstr "" + +#: frappe/utils/password_strength.py:111 +msgid "Let's avoid repeated words and characters" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:474 +msgid "Let's set up your account" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:263 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:304 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:375 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:414 +msgid "Let's take you back to onboarding" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Letter" +msgstr "" + +#. Label of the letter_head (Link) field in DocType 'Report' +#. Name of a DocType +#: frappe/core/doctype/report/report.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/page/print/print.js:140 +#: 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 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 +msgid "Letter Head" +msgstr "" + +#. Label of the source (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Letter Head Based On" +msgstr "" + +#. Label of the letter_head_image_section (Section Break) field in DocType +#. 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Letter Head Image" +msgstr "" + +#. Label of the letter_head_name (Data) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:198 +msgid "Letter Head Name" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "Letter Head Scripts" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:49 +msgid "Letter Head cannot be both disabled and default" +msgstr "" + +#. Description of the 'Header HTML' (HTML Editor) field in DocType 'Letter +#. Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Letter Head in HTML" +msgstr "" + +#. Label of the permlevel (Int) field in DocType 'Custom DocPerm' +#. Label of the permlevel (Int) field in DocType 'DocPerm' +#. Label of the level (Select) field in DocType 'Help Article' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/page/permission_manager/permission_manager.js:144 +#: frappe/core/page/permission_manager/permission_manager.js:220 +#: frappe/public/js/frappe/roles_editor.js:68 +#: frappe/website/doctype/help_article/help_article.json +msgid "Level" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:467 +msgid "Level 0 is for document level permissions, higher levels for field level permissions." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:94 +msgid "Library" +msgstr "" + +#. Label of the license (Markdown Editor) field in DocType 'Package' +#: frappe/core/doctype/package/package.json frappe/www/attribution.html:36 +msgid "License" +msgstr "" + +#. Label of the license_type (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "License Type" +msgstr "" + +#. Option for the 'Desk Theme' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Light" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Light Blue" +msgstr "" + +#. Label of the light_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Light Color" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:60 +msgid "Light Theme" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/ui/filters/filter.js:18 +msgid "Like" +msgstr "" + +#: frappe/desk/like.py:92 +msgid "Liked" +msgstr "" + +#: frappe/model/meta.py:60 frappe/public/js/frappe/model/meta.js:208 +#: frappe/public/js/frappe/model/model.js:134 +msgid "Liked By" +msgstr "" + +#. Label of the likes (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Likes" +msgstr "" + +#. Label of the limit (Int) field in DocType 'Bulk Update' +#: frappe/desk/doctype/bulk_update/bulk_update.json +msgid "Limit" +msgstr "" + +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Line" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the link (Long Text) field in DocType 'Changelog Feed' +#. Label of the link (Small Text) field in DocType 'Desktop Icon' +#. Label of the link (Small Text) field in DocType 'Notification Log' +#. Option for the 'Type' (Select) field in DocType 'Workspace' +#. Option for the 'Type' (Select) field in DocType 'Workspace Link' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Link" +msgstr "" + +#. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Link Cards" +msgstr "" + +#. Label of the link_count (Int) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Link Count" +msgstr "" + +#. Label of the link_details_section (Section Break) field in DocType +#. 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Link Details" +msgstr "" + +#. Label of the link_doctype (Link) field in DocType 'Activity Log' +#. Label of the link_doctype (Link) field in DocType 'Communication Link' +#. Label of the link_doctype (Link) field in DocType 'DocType Link' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Link DocType" +msgstr "" + +#. Label of the link_doctype (Link) field in DocType 'Dynamic Link' +#: frappe/core/doctype/dynamic_link/dynamic_link.json +msgid "Link Document Type" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:406 +#: frappe/workflow/doctype/workflow_action/workflow_action.py:202 +msgid "Link Expired" +msgstr "" + +#. Label of the link_field_results_limit (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Link Field Results Limit" +msgstr "" + +#. Label of the link_fieldname (Data) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Link Fieldname" +msgstr "" + +#. Label of the link_filters (JSON) field in DocType 'DocField' +#. Label of the link_filters (JSON) field in DocType 'Custom Field' +#. Label of the link_filters (JSON) field in DocType 'Customize Form' +#. Label of the link_filters (JSON) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Link Filters" +msgstr "" + +#. Label of the link_name (Dynamic Link) field in DocType 'Activity Log' +#. Label of the link_name (Dynamic Link) field in DocType 'Communication Link' +#. Label of the link_name (Dynamic Link) field in DocType 'Dynamic Link' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json +msgid "Link Name" +msgstr "" + +#. Label of the link_title (Read Only) field in DocType 'Communication Link' +#. Label of the link_title (Read Only) field in DocType 'Dynamic Link' +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json +msgid "Link Title" +msgstr "" + +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace' +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Link' +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/views/workspace/workspace.js:418 +#: frappe/public/js/frappe/widgets/widget_dialog.js:281 +#: frappe/public/js/frappe/widgets/widget_dialog.js:427 +msgid "Link To" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:363 +msgid "Link To in Row" +msgstr "" + +#. Label of the link_type (Select) field in DocType 'Workspace' +#. Label of the link_type (Select) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/views/workspace/workspace.js:410 +#: frappe/public/js/frappe/widgets/widget_dialog.js:273 +msgid "Link Type" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:359 +msgid "Link Type in Row" +msgstr "" + +#: frappe/website/doctype/about_us_settings/about_us_settings.js:6 +msgid "Link for About Us Page is \"/about\"." +msgstr "" + +#. Description of the 'Home Page' (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Link that is the website home page. Standard Links (home, login, products, blog, about, contact)" +msgstr "" + +#. Description of the 'URL' (Data) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "Link to the page you want to open. Leave blank if you want to make it a group parent." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +msgid "Linked" +msgstr "" + +#: frappe/public/js/frappe/form/linked_with.js:23 +msgid "Linked With" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +msgstr "" + +#. Label of the links (Table) field in DocType 'Address' +#. Label of the links (Table) field in DocType 'Contact' +#. Label of the links_section (Tab Break) field in DocType 'DocType' +#. Label of the links (Table) field in DocType 'Customize Form' +#. Label of the links (Table) field in DocType 'Event' +#. Label of the links (Table) field in DocType 'Workspace' +#: frappe/contacts/doctype/address/address.js:39 +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.js:92 +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/workspace/workspace.json +msgid "Links" +msgstr "" + +#. Option for the 'Apply To' (Select) field in DocType 'Client Script' +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/utils/utils.js:926 +msgid "List" +msgstr "" + +#. Label of the list__search_settings_section (Section Break) field in DocType +#. 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "List / Search Settings" +msgstr "" + +#. Label of the list_columns (Table) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "List Columns" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/list_filter/list_filter.json +msgid "List Filter" +msgstr "" + +#. Label of the list_settings_section (Section Break) field in DocType 'User' +#. Label of the section_break_8 (Section Break) field in DocType 'Customize +#. Form' +#. Label of the section_break_3 (Section Break) field in DocType 'Web Form' +#: frappe/core/doctype/user/user.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/website/doctype/web_form/web_form.json +msgid "List Settings" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1993 +msgctxt "Button in list view menu" +msgid "List Settings" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:202 +msgid "List View" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "List View Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:161 +msgid "List a document type" +msgstr "" + +#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Form' +#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Page' +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" +msgstr "" + +#. Description of the 'Send Notification to' (Small Text) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "List of email addresses, separated by comma or new line." +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/patch_log/patch_log.json +msgid "List of patches executed" +msgstr "" + +#. Label of the list_setting_message (HTML) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "List setting message" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 +msgid "Lists" +msgstr "" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Load Balancing" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 +#: frappe/website/doctype/help_article/templates/help_article_list.html:30 +msgid "Load More" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:215 +msgctxt "Form timeline" +msgid "Load More Communications" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45 +msgid "Load more" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:172 +#: frappe/public/js/frappe/form/controls/multicheck.js:13 +#: frappe/public/js/frappe/form/linked_with.js:13 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 +#: frappe/public/js/frappe/ui/listing.html:16 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 +msgid "Loading" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:107 +msgid "Loading Filters..." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:257 +msgid "Loading import file..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Loading versions..." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45 +#: frappe/public/js/frappe/form/sidebar/share.js:51 +#: frappe/public/js/frappe/list/list_sidebar.js:243 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 +#: frappe/public/js/frappe/views/kanban/kanban_board.html:11 +#: frappe/public/js/frappe/widgets/chart_widget.js:50 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:129 +msgid "Loading..." +msgstr "" + +#. Label of the location (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Location" +msgstr "" + +#. Label of the log (Code) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json +msgid "Log" +msgstr "" + +#. Label of the log_api_requests (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Log API Requests" +msgstr "" + +#. Label of the log_data_section (Section Break) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Log Data" +msgstr "" + +#. Label of the ref_doctype (Link) field in DocType 'Logs To Clear' +#: frappe/core/doctype/logs_to_clear/logs_to_clear.json +msgid "Log DocType" +msgstr "" + +#: frappe/templates/emails/login_with_email_link.html:27 +msgid "Log In To {0}" +msgstr "" + +#. Label of the log_index (Int) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import_log/data_import_log.json +msgid "Log Index" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/log_setting_user/log_setting_user.json +msgid "Log Setting User" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/log_settings/log_settings.json +#: frappe/public/js/frappe/logtypes.js:20 +msgid "Log Settings" +msgstr "" + +#: frappe/www/app.py:23 +msgid "Log in to access this page." +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +#: frappe/website/doctype/website_settings/website_settings.py:182 +msgid "Log out" +msgstr "" + +#: frappe/handler.py:119 +msgid "Logged Out" +msgstr "" + +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#. Label of the security_tab (Tab Break) field in DocType 'System Settings' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/public/js/frappe/web_form/webform_script.js:16 +#: frappe/templates/discussions/discussions_section.html:60 +#: frappe/templates/discussions/reply_section.html:44 +#: frappe/templates/includes/navbar/dropdown_login.html:15 +#: frappe/templates/includes/navbar/navbar_login.html:25 +#: frappe/website/page_renderers/not_permitted_page.py:24 +#: frappe/www/login.html:45 +msgid "Login" +msgstr "" + +#. Label of the login_after (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Login After" +msgstr "" + +#. Label of the login_before (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Login Before" +msgstr "" + +#: frappe/public/js/frappe/desk.js:256 +msgid "Login Failed please try again" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:144 +msgid "Login Id is required" +msgstr "" + +#. Label of the login_methods_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Login Methods" +msgstr "" + +#. Label of the misc_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Login Page" +msgstr "" + +#: frappe/www/login.py:156 +msgid "Login To {0}" +msgstr "" + +#: frappe/twofactor.py:260 +msgid "Login Verification Code from {}" +msgstr "" + +#: frappe/templates/emails/new_message.html:4 +msgid "Login and view in Browser" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:368 +msgid "Login is required to see web form list view. Enable {0} to see list settings" +msgstr "" + +#: frappe/templates/includes/login/login.js:69 +msgid "Login link sent to your email" +msgstr "" + +#: frappe/auth.py:342 frappe/auth.py:345 +msgid "Login not allowed at this time" +msgstr "" + +#. Label of the login_required (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Login required" +msgstr "" + +#: frappe/twofactor.py:164 +msgid "Login session expired, refresh page to retry" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:110 +msgid "Login to comment" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:6 +msgid "Login to start a new discussion" +msgstr "" + +#: frappe/www/login.html:64 +msgid "Login to {0}" +msgstr "" + +#: frappe/templates/includes/login/login.js:319 +msgid "Login token required" +msgstr "" + +#: frappe/www/login.html:126 frappe/www/login.html:210 +msgid "Login with Email Link" +msgstr "" + +#: frappe/www/login.html:116 +msgid "Login with Frappe Cloud" +msgstr "" + +#: frappe/www/login.html:49 +msgid "Login with LDAP" +msgstr "" + +#. Label of the login_with_email_link (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Login with email link" +msgstr "" + +#. Label of the login_with_email_link_expiry (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Login with email link expiry (in minutes)" +msgstr "" + +#: frappe/auth.py:147 +msgid "Login with username and password is not allowed." +msgstr "" + +#: frappe/www/login.html:100 +msgid "Login with {0}" +msgstr "" + +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "" + +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 +#: frappe/www/me.html:84 +msgid "Logout" +msgstr "" + +#: frappe/core/doctype/user/user.js:190 +msgid "Logout All Sessions" +msgstr "" + +#. Label of the logout_on_password_reset (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Logout All Sessions on Password Reset" +msgstr "" + +#. Label of the logout_all_sessions (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Logout From All Devices After Changing Password" +msgstr "" + +#. Group in User's connections +#. Label of a Card Break in the Users Workspace +#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json +msgid "Logs" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/logs_to_clear/logs_to_clear.json +msgid "Logs To Clear" +msgstr "" + +#. Label of the logs_to_clear (Table) field in DocType 'Log Settings' +#: frappe/core/doctype/log_settings/log_settings.json +msgid "Logs to Clear" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Long Text" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:317 +msgid "Looks like you didn't change the value" +msgstr "" + +#: frappe/www/third_party_apps.html:59 +msgid "Looks like you haven’t added any third party apps." +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:315 +msgid "Looks like you haven’t received any notifications." +msgstr "" + +#. Option for the 'Priority' (Select) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:217 +msgid "Low" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:13 +msgctxt "Number system" +msgid "M" +msgstr "" + +#. Option for the 'License Type' (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "MIT License" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:48 +msgid "Madam" +msgstr "" + +#. Label of the main_section (Text Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Main Section" +msgstr "" + +#. Label of the main_section_html (HTML Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Main Section (HTML)" +msgstr "" + +#. Label of the main_section_md (Markdown Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Main Section (Markdown)" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Maintenance Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +msgid "Maintenance User" +msgstr "" + +#. Label of the major (Int) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json +msgid "Major" +msgstr "" + +#. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Make \"name\" searchable in Global Search" +msgstr "" + +#. Label of the make_attachment_public (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Make Attachment Public (by default)" +msgstr "" + +#. Label of the make_attachments_public (Check) field in DocType 'DocType' +#. Label of the make_attachments_public (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Make Attachments Public by Default" +msgstr "" + +#. Description of the 'Disable Username/Password Login' (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Make sure to configure a Social Login Key before disabling to prevent lockout" +msgstr "" + +#: frappe/utils/password_strength.py:92 +msgid "Make use of longer keyboard patterns" +msgstr "" + +#: frappe/public/js/frappe/form/multi_select_dialog.js:87 +msgid "Make {0}" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:77 +msgid "Makes the page public" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:28 +msgid "Male" +msgstr "" + +#: frappe/www/me.html:56 +msgid "Manage 3rd party apps" +msgstr "" + +#. Description of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Manage your data" +msgstr "" + +#. Label of the reqd (Check) field in DocType 'DocField' +#. Label of the mandatory (Check) field in DocType 'Report Filter' +#. Label of the reqd (Check) field in DocType 'Customize Form Field' +#. Label of the reqd (Check) field in DocType 'Web Form Field' +#. Label of the reqd (Check) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Mandatory" +msgstr "" + +#. Label of the mandatory_depends_on (Code) field in DocType 'Custom Field' +#. Label of the mandatory_depends_on (Code) field in DocType 'Customize Form +#. Field' +#. Label of the mandatory_depends_on (Code) field in DocType 'Web Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Mandatory Depends On" +msgstr "" + +#. Label of the mandatory_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Mandatory Depends On (JS)" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:536 +msgid "Mandatory Information missing:" +msgstr "" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120 +msgid "Mandatory field: set role for" +msgstr "" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124 +msgid "Mandatory field: {0}" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:172 +msgid "Mandatory fields required in table {0}, Row {1}" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:177 +msgid "Mandatory fields required in {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:258 +msgctxt "Error message in web form" +msgid "Mandatory fields required:" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:142 +msgid "Mandatory:" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Map" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:194 +#: frappe/public/js/frappe/data_import/import_preview.js:306 +msgid "Map Columns" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:211 +msgid "Map View" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:294 +msgid "Map columns from {0} to fields in {1}" +msgstr "" + +#. Description of the 'Dynamic Route' (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Map route parameters into form variables. Example /project/<name>" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:924 +msgid "Mapping column {0} to field {1}" +msgstr "" + +#. Label of the margin_bottom (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Bottom" +msgstr "" + +#. Label of the margin_left (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Left" +msgstr "" + +#. Label of the margin_right (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Right" +msgstr "" + +#. Label of the margin_top (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Top" +msgstr "" + +#. Label of the mariadb_variables_section (Section Break) field in DocType +#. 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "MariaDB Variables" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:45 +msgid "Mark all as read" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:78 +#: frappe/core/doctype/communication/communication_list.js:19 +msgid "Mark as Read" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:95 +msgid "Mark as Spam" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:78 +#: frappe/core/doctype/communication/communication_list.js:22 +msgid "Mark as Unread" +msgstr "" + +#. Option for the 'Message Type' (Select) field in DocType 'Notification' +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/email/doctype/notification/notification.json +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json +msgid "Markdown" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Markdown Editor" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Marked As Spam" +msgstr "" + +#. Name of a role +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +msgid "Marketing Manager" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:50 +msgid "Master" +msgstr "" + +#. Description of the 'Limit' (Int) field in DocType 'Bulk Update' +#: frappe/desk/doctype/bulk_update/bulk_update.json +msgid "Max 500 records at a time" +msgstr "" + +#. Label of the max_attachments (Int) field in DocType 'DocType' +#. Label of the max_attachments (Int) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Max Attachments" +msgstr "" + +#. Label of the max_file_size (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max File Size (MB)" +msgstr "" + +#. Label of the max_height (Data) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Max Height" +msgstr "" + +#. Label of the max_length (Int) field in DocType 'Web Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Max Length" +msgstr "" + +#. Label of the max_report_rows (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max Report Rows" +msgstr "" + +#. Label of the max_value (Int) field in DocType 'Web Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Max Value" +msgstr "" + +#. Label of the max_attachment_size (Int) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Max attachment size" +msgstr "" + +#. Label of the max_auto_email_report_per_user (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max auto email report per user" +msgstr "" + +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1343 +msgid "Max width for type Currency is 100px in row {0}" +msgstr "" + +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Maximum" +msgstr "" + +#: frappe/core/doctype/file/file.py:332 +msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/attachments.js:38 +msgid "Maximum attachment limit of {0} has been reached." +msgstr "" + +#: frappe/model/rename_doc.py:689 +msgid "Maximum {0} rows allowed" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:221 +msgid "Me" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:14 +msgid "Meaning of Submit, Cancel, Amend" +msgstr "" + +#. Option for the 'Priority' (Select) field in DocType 'ToDo' +#. Label of the medium (Data) field in DocType 'Web Page View' +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:221 +#: frappe/public/js/frappe/utils/utils.js:1774 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:40 +msgid "Medium" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json +msgid "Meeting" +msgstr "" + +#: frappe/email/doctype/notification/notification.js:200 +#: frappe/integrations/doctype/webhook/webhook.js:96 +msgid "Meets Condition?" +msgstr "" + +#. Group in Email Group's connections +#: frappe/email/doctype/email_group/email_group.json +msgid "Members" +msgstr "" + +#. Label of the cache_memory_usage (Data) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Memory Usage" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63 +msgid "Memory Usage in MB" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Mention" +msgstr "" + +#. Label of the enable_email_mention (Check) field in DocType 'Notification +#. Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Mentions" +msgstr "" + +#: frappe/public/js/frappe/ui/page.html:41 +#: frappe/public/js/frappe/ui/page.js:162 +msgid "Menu" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:242 +#: frappe/public/js/frappe/model/model.js:705 +msgid "Merge with existing" +msgstr "" + +#: frappe/utils/nestedset.py:320 +msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" +msgstr "" + +#. Label of the message (Text) field in DocType 'Auto Repeat' +#. Label of the content (Text Editor) field in DocType 'Activity Log' +#. Label of the content (Text Editor) field in DocType 'Communication' +#. Label of the message (Small Text) field in DocType 'SMS Log' +#. Label of the message (Data) field in DocType 'Success Action' +#. Label of the email_content (Text Editor) field in DocType 'Notification Log' +#. Label of the section_break_15 (Section Break) field in DocType 'Auto Email +#. Report' +#. Label of the description (Text Editor) field in DocType 'Auto Email Report' +#. Label of the message (Code) field in DocType 'Email Queue' +#. Label of the message_sb (Section Break) field in DocType 'Notification' +#. Label of the message (Code) field in DocType 'Notification' +#. Label of the message (Text) field in DocType 'Workflow Document State' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import/data_import.js:483 +#: frappe/core/doctype/sms_log/sms_log.json +#: frappe/core/doctype/success_action/success_action.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/notification/notification.js:205 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/ui/messages.js:182 +#: frappe/public/js/frappe/views/communication.js:126 +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/www/message.html:3 +msgid "Message" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78 +msgctxt "Default title of the message dialog" +msgid "Message" +msgstr "" + +#. Label of the message_examples (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Message Examples" +msgstr "" + +#. Label of the message_id (Small Text) field in DocType 'Communication' +#. Label of the message_id (Small Text) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Message ID" +msgstr "" + +#. Label of the message_parameter (Data) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Message Parameter" +msgstr "" + +#: frappe/templates/includes/contact.js:36 +msgid "Message Sent" +msgstr "" + +#. Label of the message_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Message Type" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:956 +msgid "Message clipped" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:344 +msgid "Message from server: {0}" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104 +msgid "Message not setup" +msgstr "" + +#. Description of the 'Success message' (Text) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Message to be displayed on successful completion" +msgstr "" + +#. Label of the message_id (Code) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Message-id" +msgstr "" + +#. Label of the messages (Code) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import_log/data_import_log.json +msgid "Messages" +msgstr "" + +#. Label of the meta_section (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:124 +msgid "Meta Description" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:131 +msgid "Meta Image" +msgstr "" + +#. Label of the metatags_section (Section Break) field in DocType 'Web Page' +#. Label of the meta_tags (Table) field in DocType 'Website Route Meta' +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_route_meta/website_route_meta.json +msgid "Meta Tags" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:117 +msgid "Meta Title" +msgstr "" + +#. Label of the meta_description (Small Text) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta description" +msgstr "" + +#. Label of the meta_image (Attach Image) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta image" +msgstr "" + +#. Label of the meta_title (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta title" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:110 +msgid "Meta title for SEO" +msgstr "" + +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "" + +#. Label of the method (Data) field in DocType 'Access Log' +#. Label of the method (Data) field in DocType 'API Request Log' +#. Label of the method (Select) field in DocType 'Recorder' +#. Label of the method (Data) field in DocType 'Scheduled Job Type' +#. Label of the method (Data) field in DocType 'Scheduler Event' +#. Label of the method (Data) field in DocType 'Number Card' +#. Label of the auth_method (Select) field in DocType 'Email Account' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/scheduler_event/scheduler_event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/notification/notification.json +msgid "Method" +msgstr "" + +#: frappe/__init__.py:468 +msgid "Method Not Allowed" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:74 +msgid "Method is required to create a number card" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Mid Center" +msgstr "" + +#. Label of the middle_name (Data) field in DocType 'Contact' +#. Label of the middle_name (Data) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json +msgid "Middle Name" +msgstr "" + +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Tools Workspace +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/workspace/tools/tools.json +msgid "Milestone" +msgstr "" + +#. Label of the milestone_tracker (Link) field in DocType 'Milestone' +#. Name of a DocType +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Milestone Tracker" +msgstr "" + +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Minimum" +msgstr "" + +#. Label of the minimum_password_score (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Minimum Password Score" +msgstr "" + +#. Label of the minor (Int) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json +msgid "Minor" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Minutes After" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Minutes Before" +msgstr "" + +#. Label of the minutes_offset (Int) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Minutes Offset" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:103 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:117 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:125 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333 +msgid "Misconfigured" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:49 +msgid "Miss" +msgstr "" + +#: frappe/desk/form/meta.py:194 +msgid "Missing DocType" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1527 +msgid "Missing Field" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:183 +msgid "Missing Fields" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 +msgid "Missing Filters Required" +msgstr "" + +#: frappe/desk/form/assign_to.py:110 +msgid "Missing Permission" +msgstr "" + +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 +msgid "Missing Value" +msgstr "" + +#: frappe/public/js/frappe/ui/field_group.js:124 +#: frappe/public/js/frappe/widgets/widget_dialog.js:374 +#: frappe/public/js/workflow_builder/store.js:97 +#: frappe/workflow/doctype/workflow/workflow.js:71 +msgid "Missing Values Required" +msgstr "" + +#: frappe/www/login.py:107 +msgid "Mobile" +msgstr "" + +#. Label of the mobile_no (Data) field in DocType 'Contact' +#. Label of the mobile_no (Data) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json frappe/tests/test_translate.py:86 +#: frappe/tests/test_translate.py:89 frappe/tests/test_translate.py:91 +#: frappe/tests/test_translate.py:94 +msgid "Mobile No" +msgstr "" + +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +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 "" + +#. Label of the module (Data) field in DocType 'Block Module' +#. Label of the module (Link) field in DocType 'DocType' +#. Label of the module (Link) field in DocType 'Page' +#. Label of the module (Link) field in DocType 'Report' +#. Label of the module (Link) field in DocType 'User Type Module' +#. Label of the module (Link) field in DocType 'Dashboard' +#. Label of the module (Link) field in DocType 'Dashboard Chart' +#. Label of the module (Link) field in DocType 'Dashboard Chart Source' +#. Label of the module (Link) field in DocType 'Form Tour' +#. Label of the module (Link) field in DocType 'Module Onboarding' +#. Label of the module (Link) field in DocType 'Number Card' +#. Label of the module (Link) field in DocType 'Workspace' +#. Label of the module (Link) field in DocType 'Notification' +#. Label of the module (Link) field in DocType 'Print Format' +#. Label of the module (Link) field in DocType 'Print Format Field Template' +#. Label of the module (Link) field in DocType 'Web Form' +#. Label of the module (Link) field in DocType 'Web Template' +#. Label of the module (Link) field in DocType 'Website Theme' +#: frappe/core/doctype/block_module/block_module.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:31 +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/core/doctype/user_type_module/user_type_module.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Module" +msgstr "" + +#. Label of the module (Link) field in DocType 'Server Script' +#. Label of the module (Link) field in DocType 'Client Script' +#. Label of the module (Link) field in DocType 'Custom Field' +#. Label of the module (Link) field in DocType 'Property Setter' +#. Label of the module (Link) field in DocType 'Web Page' +#: frappe/core/doctype/server_script/server_script.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Module (for export)" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#. Label of a shortcut in the Build Workspace +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/workspace/build/build.json +msgid "Module Def" +msgstr "" + +#. Label of the module_html (HTML) field in DocType 'Module Profile' +#: frappe/core/doctype/module_profile/module_profile.json +msgid "Module HTML" +msgstr "" + +#. Label of the module_name (Data) field in DocType 'Module Def' +#. Label of the module_name (Data) field in DocType 'Desktop Icon' +#: frappe/core/doctype/module_def/module_def.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Module Name" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Module Onboarding" +msgstr "" + +#. Name of a DocType +#. Label of the module_profile (Link) field in DocType 'User' +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/module_profile/module_profile.json +#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json +msgid "Module Profile" +msgstr "" + +#. Label of the module_profile_name (Data) field in DocType 'Module Profile' +#: frappe/core/doctype/module_profile/module_profile.json +msgid "Module Profile Name" +msgstr "" + +#: frappe/desk/doctype/module_onboarding/module_onboarding.py:69 +msgid "Module onboarding progress reset" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:250 +msgid "Module to Export" +msgstr "" + +#: frappe/modules/utils.py:273 +msgid "Module {} not found" +msgstr "" + +#. Group in Package's connections +#. Label of a Card Break in the Build Workspace +#: frappe/core/doctype/package/package.json +#: frappe/core/workspace/build/build.json +msgid "Modules" +msgstr "" + +#. Label of the modules_html (HTML) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Modules HTML" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the monday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Monday" +msgstr "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Monitor logs for errors, background jobs, communications, and user activity" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Monospace" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:275 +msgid "Month" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:400 +#: frappe/website/report/website_analytics/website_analytics.js:25 +msgid "Monthly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Monthly Long" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:39 +#: frappe/public/js/frappe/form/multi_select_dialog.js:45 +#: frappe/public/js/frappe/form/multi_select_dialog.js:72 +#: frappe/public/js/frappe/ui/toolbar/search.js:285 +#: frappe/public/js/frappe/ui/toolbar/search.js:300 +#: frappe/public/js/frappe/widgets/chart_widget.js:729 +#: frappe/templates/includes/list/list.html:25 +#: frappe/templates/includes/search_template.html:13 +msgid "More" +msgstr "" + +#. Label of the section_break_6gd5 (Section Break) field in DocType 'Permission +#. Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "More Info" +msgstr "" + +#. Label of the more_info (Section Break) field in DocType 'Contact' +#. Label of the additional_info (Section Break) field in DocType 'Activity Log' +#. Label of the additional_info (Section Break) field in DocType +#. 'Communication' +#. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "More Information" +msgstr "" + +#: frappe/website/doctype/help_article/templates/help_article.html:19 +#: frappe/website/doctype/help_article/templates/help_article.html:33 +msgid "More articles on {0}" +msgstr "" + +#. Description of the 'Footer' (Text Editor) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "More content for the bottom of the page." +msgstr "" + +#: frappe/public/js/frappe/ui/sort_selector.js:193 +msgid "Most Used" +msgstr "" + +#: frappe/utils/password.py:75 +msgid "Most probably your password is too long." +msgstr "" + +#: frappe/core/doctype/communication/communication.js:86 +#: frappe/core/doctype/communication/communication.js:194 +#: frappe/core/doctype/communication/communication.js:212 +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Move" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:194 +msgid "Move To" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:104 +msgid "Move To Trash" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:295 +msgid "Move current and all subsequent sections to a new tab" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:177 +msgid "Move cursor to above row" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:181 +msgid "Move cursor to below row" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:185 +msgid "Move cursor to next column" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:189 +msgid "Move cursor to previous column" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:294 +msgid "Move sections to new tab" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:237 +msgid "Move the current field and the following fields to a new column" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:169 +msgid "Move to Row Number" +msgstr "" + +#. Description of the 'Next on Click' (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Move to next step when clicked inside highlighted area." +msgstr "" + +#. Description of the 'Parent Element Selector' (Data) field in DocType 'Form +#. Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Mozilla doesn't support :has() so you can pass parent selector here as workaround" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:43 +msgid "Mr" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:47 +msgid "Mrs" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:44 +msgid "Ms" +msgstr "" + +#: frappe/utils/nestedset.py:344 +msgid "Multiple root nodes not allowed." +msgstr "" + +#. Description of the 'Import from Google Sheets' (Data) field in DocType 'Data +#. Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Must be a publicly accessible Google Sheets URL" +msgstr "" + +#. Description of the 'LDAP Search String' (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Must be enclosed in '()' and include '{0}', which is a placeholder for the user/login name. i.e. (&(objectclass=user)(uid={0}))" +msgstr "" + +#. Description of the 'Image Field' (Data) field in DocType 'DocType' +#. Description of the 'Image Field' (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Must be of type \"Attach Image\"" +msgstr "" + +#: frappe/desk/query_report.py:210 +msgid "Must have report permission to access this report." +msgstr "" + +#: frappe/core/doctype/report/report.py:151 +msgid "Must specify a Query to run" +msgstr "" + +#. Label of the mute_sounds (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Mute Sounds" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:45 +msgid "Mx" +msgstr "" + +#: frappe/templates/includes/web_sidebar.html:41 +#: frappe/website/doctype/web_form/web_form.py:525 +#: frappe/website/doctype/website_settings/website_settings.py:181 +#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 +msgid "My Account" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:57 +msgid "My Device" +msgstr "" + +#: frappe/public/js/frappe/ui/apps_switcher.js:71 +msgid "My Workspaces" +msgstr "" + +#. Option for the 'Database Engine' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "MyISAM" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:19 +msgid "NOTE: If you add states or transitions in the table, it will be reflected in the Workflow Builder but you will have to position them manually. Also Workflow Builder is currently in BETA." +msgstr "" + +#. Description of the 'LDAP Group Field' (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "NOTE: This box is due for depreciation. Please re-setup LDAP to work with the newer settings" +msgstr "" + +#. Label of the fieldname (Data) field in DocType 'DocField' +#. Label of the fieldname (Data) field in DocType 'Customize Form Field' +#. Label of the label (Data) field in DocType 'Workspace' +#. Label of the webhook_name (Data) field in DocType 'Slack Webhook URL' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype_list.js:22 +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +#: frappe/public/js/frappe/form/layout.js:76 +#: frappe/public/js/frappe/form/multi_select_dialog.js:240 +#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/views/file/file_view.js:97 +#: frappe/website/doctype/website_slideshow/website_slideshow.js:25 +msgid "Name" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.js:29 +msgid "Name (Doc Name)" +msgstr "" + +#: frappe/desk/utils.py:24 +msgid "Name already taken, please set a new name" +msgstr "" + +#: frappe/model/naming.py:512 +msgid "Name cannot contain special characters like {0}" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:91 +msgid "Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:117 +msgid "Name of the new Print Format" +msgstr "" + +#: frappe/model/naming.py:507 +msgid "Name of {0} cannot be {1}" +msgstr "" + +#: frappe/utils/password_strength.py:174 +msgid "Names and surnames by themselves are easy to guess." +msgstr "" + +#. Label of the sb1 (Tab Break) field in DocType 'DocType' +#. Label of the naming_section (Section Break) field in DocType 'Document +#. Naming Rule' +#. Label of the naming_section (Section Break) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Naming" +msgstr "" + +#. Description of the 'Auto Name' (Data) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Naming Options:\n" +"
  1. field:[fieldname] - By Field
  2. naming_series: - By Naming Series (field called naming_series must be present)
  3. Prompt - Prompt user for a name
  4. [series] - Series by prefix (separated by a dot); for example PRE.#####
  5. \n" +"
  6. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
" +msgstr "" + +#. Label of the naming_rule (Select) field in DocType 'DocType' +#. Label of the naming_rule (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Naming Rule" +msgstr "" + +#. Label of the naming_series_tab (Tab Break) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Naming Series" +msgstr "" + +#: frappe/model/naming.py:268 +msgid "Naming Series mandatory" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#. Label of the top_bar (Section Break) field in DocType 'Website Settings' +#. Label of the navbar_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Navbar" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Navbar Item" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/navbar_settings/navbar_settings.json +#: frappe/core/workspace/build/build.json +msgid "Navbar Settings" +msgstr "" + +#. Label of the navbar_template (Link) field in DocType 'Website Settings' +#. Label of the navbar_template_section (Section Break) field in DocType +#. 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Navbar Template" +msgstr "" + +#. Label of the navbar_template_values (Code) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Navbar Template Values" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1380 +msgctxt "Description of a list view shortcut" +msgid "Navigate list down" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1387 +msgctxt "Description of a list view shortcut" +msgid "Navigate list up" +msgstr "" + +#: frappe/public/js/frappe/ui/page.js:175 +msgid "Navigate to main content" +msgstr "" + +#. Label of the navigation_settings_section (Section Break) field in DocType +#. 'User' +#: frappe/core/doctype/user/user.json +msgid "Navigation Settings" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:322 +msgid "Need Workspace Manager role to edit private workspace of other users" +msgstr "" + +#: frappe/model/document.py:794 +msgid "Negative Value" +msgstr "" + +#: frappe/database/query.py:335 +msgid "Nested filters must be provided as a list or tuple." +msgstr "" + +#: frappe/utils/nestedset.py:94 +msgid "Nested set error. Please contact the Administrator." +msgstr "" + +#. Name of a DocType +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Network Printer Settings" +msgstr "" + +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/success_action/success_action.js:57 +#: frappe/core/page/dashboard_view/dashboard_view.js:173 +#: frappe/desk/doctype/todo/todo.js:46 +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/success_action.js:77 +#: frappe/public/js/frappe/views/treeview.js:473 +#: frappe/public/js/frappe/views/workspace/workspace.js:64 +#: frappe/website/doctype/web_form/templates/web_list.html:15 +#: frappe/www/list.html:19 +msgid "New" +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:15 +msgid "New Activity" +msgstr "" + +#: frappe/public/js/frappe/form/templates/address_list.html:3 +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:5 +#: frappe/public/js/frappe/utils/address_and_contact.js:71 +msgid "New Address" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:58 +msgid "New Chart" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:3 +msgid "New Contact" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:70 +msgid "New Custom Block" +msgstr "" + +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 +msgid "New Custom Print Format" +msgstr "" + +#. Label of the new_document_form (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "New Document Form" +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.py:154 +msgid "New Document Shared {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:27 +#: frappe/public/js/frappe/views/communication.js:23 +msgid "New Email" +msgstr "" + +#: frappe/public/js/frappe/list/list_view_select.js:98 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:177 +msgid "New Email Account" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:47 +msgid "New Event" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:94 +msgid "New Folder" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 +msgid "New Kanban Board" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:62 +msgid "New Links" +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.py:152 +msgid "New Mention on {0}" +msgstr "" + +#: frappe/www/contact.py:61 +msgid "New Message from Website Contact Page" +msgstr "" + +#. Label of the new_name (Read Only) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +#: frappe/public/js/frappe/form/toolbar.js:218 +#: frappe/public/js/frappe/model/model.js:713 +msgid "New Name" +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.py:151 +msgid "New Notification" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:64 +msgid "New Number Card" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:66 +msgid "New Onboarding" +msgstr "" + +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 +msgid "New Password" +msgstr "" + +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 +msgid "New Print Format Name" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:68 +msgid "New Quick List" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1386 +msgid "New Report name" +msgstr "" + +#. Label of the new_role (Data) field in DocType 'Role Replication' +#: frappe/core/doctype/role_replication/role_replication.json +msgid "New Role" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:60 +msgid "New Shortcut" +msgstr "" + +#. Label of the new_users (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "New Users (Last 30 days)" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 +msgid "New Value" +msgstr "" + +#: frappe/workflow/page/workflow_builder/workflow_builder.js:61 +msgid "New Workflow Name" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:390 +msgid "New Workspace" +msgstr "" + +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
\n" +"Public clients are restricted by default." +msgstr "" + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "" + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "" + +#: frappe/www/update-password.html:92 +msgid "New password cannot be same as old password" +msgstr "" + +#: frappe/utils/change_log.py:389 +msgid "New updates are available" +msgstr "" + +#. Description of the 'Disable signups' (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "New users will have to be manually registered by system managers." +msgstr "" + +#. Description of the 'Set Value' (Small Text) field in DocType 'Property +#. Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "New value to be set" +msgstr "" + +#: frappe/public/js/frappe/form/quick_entry.js:179 +#: frappe/public/js/frappe/form/toolbar.js:37 +#: frappe/public/js/frappe/form/toolbar.js:206 +#: frappe/public/js/frappe/form/toolbar.js:221 +#: frappe/public/js/frappe/form/toolbar.js:561 +#: frappe/public/js/frappe/model/model.js:612 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 +#: 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:438 +msgid "New {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:393 +msgid "New {0} Created" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:385 +msgid "New {0} {1} added to Dashboard {2}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:390 +msgid "New {0} {1} created" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 +msgid "New {0}: {1}" +msgstr "" + +#: frappe/utils/change_log.py:375 +msgid "New {} releases for the following apps are available" +msgstr "" + +#: frappe/core/doctype/user/user.py:815 +msgid "Newly created user {0} has no roles enabled." +msgstr "" + +#. Name of a role +#: frappe/email/doctype/email_group/email_group.json +#: frappe/email/doctype/email_group_member/email_group_member.json +#: frappe/website/doctype/utm_campaign/utm_campaign.json +msgid "Newsletter Manager" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:14 +#: frappe/public/js/frappe/form/form_tour.js:324 +#: frappe/public/js/frappe/web_form/web_form.js:93 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:15 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:240 +#: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 +#: frappe/website/web_template/slideshow/slideshow.html:44 +msgid "Next" +msgstr "" + +#: frappe/public/js/frappe/ui/slides.js:359 +msgctxt "Go to next slide" +msgid "Next" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:684 +msgid "Next 14 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:688 +msgid "Next 30 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:704 +msgid "Next 6 Months" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:680 +msgid "Next 7 Days" +msgstr "" + +#. Label of the next_action_email_template (Link) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Next Action Email Template" +msgstr "" + +#. Label of the next_actions_html (HTML) field in DocType 'Success Action' +#: frappe/core/doctype/success_action/success_action.json +msgid "Next Actions HTML" +msgstr "" + +#. Label of the next_execution (Datetime) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Next Execution" +msgstr "" + +#. Label of the next_form_tour (Link) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Next Form Tour" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:696 +msgid "Next Month" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:700 +msgid "Next Quarter" +msgstr "" + +#. Label of the next_schedule_date (Date) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Next Schedule Date" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:6 +msgid "Next Scheduled Date" +msgstr "" + +#. Label of the next_state (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Next State" +msgstr "" + +#. Label of the next_step_condition (Code) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Next Step Condition" +msgstr "" + +#. Label of the next_sync_token (Password) field in DocType 'Google Calendar' +#. Label of the next_sync_token (Password) field in DocType 'Google Contacts' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Next Sync Token" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:692 +msgid "Next Week" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:708 +msgid "Next Year" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "Next actions" +msgstr "" + +#. Label of the next_on_click (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Next on Click" +msgstr "" + +#. Option for the 'Standard' (Select) field in DocType 'Page' +#. Option for the 'Is Standard' (Select) field in DocType 'Report' +#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP +#. Settings' +#. Option for the 'Standard' (Select) field in DocType 'Print Format' +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 +#: 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:498 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 +#: frappe/website/doctype/help_article/templates/help_article.html:26 +msgid "No" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:546 +msgctxt "Checkbox is not checked" +msgid "No" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:37 +msgctxt "Dismiss confirmation dialog" +msgid "No" +msgstr "" + +#: frappe/www/third_party_apps.html:56 +msgid "No Active Sessions" +msgstr "" + +#. Label of the no_copy (Check) field in DocType 'DocField' +#. Label of the no_copy (Check) field in DocType 'Custom Field' +#. Label of the no_copy (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "No Copy" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:162 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 +#: frappe/public/js/form_builder/components/controls/TableControl.vue:64 +#: frappe/public/js/frappe/data_import/import_preview.js:146 +#: frappe/public/js/frappe/form/multi_select_dialog.js:224 +#: frappe/public/js/frappe/utils/datatable.js:10 +#: frappe/public/js/frappe/widgets/chart_widget.js:57 +msgid "No Data" +msgstr "" + +#: frappe/public/js/frappe/widgets/quick_list_widget.js:134 +msgid "No Data..." +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:176 +msgid "No Email Account" +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:196 +msgid "No Email Accounts Assigned" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:183 +msgid "No Emails" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:361 +msgid "No Entry for the User {0} found within LDAP!" +msgstr "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:407 +msgid "No Filters Set" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:372 +msgid "No Google Calendar Event to sync." +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:262 +msgid "No Images" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:363 +msgid "No LDAP User found for email: {0}" +msgstr "" + +#: frappe/public/js/form_builder/components/EditableInput.vue:11 +#: frappe/public/js/form_builder/components/EditableInput.vue:14 +#: frappe/public/js/form_builder/components/Field.vue:209 +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:55 +#: frappe/public/js/print_format_builder/Field.vue:24 +#: frappe/public/js/workflow_builder/components/ActionNode.vue:53 +#: frappe/public/js/workflow_builder/components/StateNode.vue:47 +#: frappe/public/js/workflow_builder/store.js:51 +msgid "No Label" +msgstr "" + +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 +#: 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 +msgid "No Name Specified for {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:315 +msgid "No New notifications" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1757 +msgid "No Permissions Specified" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:199 +msgid "No Permissions set for this criteria." +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:93 +msgid "No Permitted Charts" +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:92 +msgid "No Permitted Charts on this Dashboard" +msgstr "" + +#: frappe/printing/doctype/print_settings/print_settings.js:13 +msgid "No Preview" +msgstr "" + +#: frappe/printing/page/print/print.js:747 +msgid "No Preview Available" +msgstr "" + +#: frappe/printing/page/print/print.js:902 +msgid "No Printer is Available." +msgstr "" + +#: frappe/core/doctype/rq_worker/rq_worker_list.js:3 +msgid "No RQ Workers connected. Try restarting the bench." +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:135 +msgid "No Results" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:51 +msgid "No Results found" +msgstr "" + +#: frappe/core/doctype/user/user.py:816 +msgid "No Roles Specified" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 +msgid "No Select Field Found" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:179 +msgid "No Suggestions" +msgstr "" + +#: frappe/desk/reportview.py:707 +msgid "No Tags" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:442 +msgid "No Upcoming Events" +msgstr "" + +#: frappe/public/js/frappe/form/templates/address_list.html:43 +msgid "No address added yet." +msgstr "" + +#: frappe/email/doctype/notification/notification.js:236 +msgid "No alerts for today" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:178 +msgid "No automatic optimization suggestions available." +msgstr "" + +#: frappe/public/js/frappe/form/save.js:36 +msgid "No changes in document" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:662 +msgid "No changes made" +msgstr "" + +#: frappe/model/rename_doc.py:369 +msgid "No changes made because old and new name are the same." +msgstr "" + +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:59 +msgid "No changes to sync" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:298 +msgid "No changes to update" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:4 +msgid "No comments yet." +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:91 +msgid "No contacts added yet." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 +msgid "No contacts linked to document" +msgstr "" + +#: frappe/desk/query_report.py:381 +msgid "No data to export" +msgstr "" + +#: frappe/contacts/doctype/address/address.py:246 +msgid "No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:71 +msgid "No documents found tagged with {0}" +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:21 +msgid "No email account associated with the User. Please add an account under User > Email Inbox." +msgstr "" + +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:478 +msgid "No failed logs" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 +msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." +msgstr "" + +#: frappe/utils/file_manager.py:143 +msgid "No file attached" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:134 +msgid "No filters found" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:299 +msgid "No filters selected" +msgstr "" + +#: frappe/desk/form/utils.py:111 +msgid "No further records" +msgstr "" + +#: frappe/templates/includes/search_template.html:49 +msgid "No matching records. Search something new" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form_list.js:162 +msgid "No more items to display" +msgstr "" + +#: frappe/utils/password_strength.py:45 +msgid "No need for symbols, digits, or uppercase letters." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:195 +msgid "No new Google Contacts synced." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:46 +msgid "No new notifications" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:415 +msgid "No of Columns" +msgstr "" + +#. Label of the no_of_requested_sms (Int) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "No of Requested SMS" +msgstr "" + +#. Label of the no_of_rows (Int) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "No of Rows (Max 500)" +msgstr "" + +#. Label of the no_of_sent_sms (Int) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "No of Sent SMS" +msgstr "" + +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 +msgid "No permission for {0}" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1142 +msgctxt "{0} = verb, {1} = object" +msgid "No permission to '{0}' {1}" +msgstr "" + +#: frappe/model/db_query.py:949 +msgid "No permission to read {0}" +msgstr "" + +#: frappe/share.py:220 +msgid "No permission to {0} {1} {2}" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:175 +msgid "No records deleted" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 +msgid "No records present in {0}" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_stat.html:3 +msgid "No records tagged." +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:225 +msgid "No records will be exported" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "No rows" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:135 +msgid "No subject" +msgstr "" + +#: frappe/www/printview.py:472 +msgid "No template found at path: {0}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/multiselect_list.js:262 +msgid "No values to show" +msgstr "" + +#: frappe/website/web_template/discussions/discussions.html:2 +msgid "No {0}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view_select.js:157 +msgid "No {0} Found" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form_list.js:234 +msgid "No {0} found" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:499 +msgid "No {0} found with matching filters. Clear filters to see all {0}." +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:171 +msgid "No {0} mail" +msgstr "" + +#: frappe/public/js/form_builder/utils.js:117 +#: frappe/public/js/frappe/form/grid_row.js:257 +msgctxt "Title of the 'row number' column" +msgid "No." +msgstr "" + +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Nomatim" +msgstr "" + +#. Label of the non_negative (Check) field in DocType 'DocField' +#. Label of the non_negative (Check) field in DocType 'Custom Field' +#. Label of the non_negative (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Non Negative" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:33 +msgid "Non-Conforming" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:36 +msgid "None: End of Workflow" +msgstr "" + +#. Label of the normalized_copies (Int) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Normalized Copies" +msgstr "" + +#. Label of the normalized_query (Data) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Normalized Query" +msgstr "" + +#: frappe/core/doctype/user/user.py:1029 +#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 +msgid "Not Allowed" +msgstr "" + +#: frappe/templates/includes/login/login.js:259 +msgid "Not Allowed: Disabled User" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:36 +msgid "Not Ancestors Of" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:34 +msgid "Not Descendants Of" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:17 +msgid "Not Equals" +msgstr "" + +#: frappe/app.py:390 frappe/www/404.html:3 +msgid "Not Found" +msgstr "" + +#. Label of the not_helpful (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Not Helpful" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:21 +msgid "Not In" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:19 +msgid "Not Like" +msgstr "" + +#: frappe/public/js/frappe/form/linked_with.js:45 +msgid "Not Linked to any record" +msgstr "" + +#. Label of the not_nullable (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Not Nullable" +msgstr "" + +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 +#: frappe/public/js/frappe/web_form/webform_script.js:15 +#: frappe/website/doctype/web_form/web_form.py:774 +#: frappe/website/page_renderers/not_permitted_page.py:22 +#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 +#: frappe/www/qrcode.py:37 +msgid "Not Permitted" +msgstr "" + +#: frappe/desk/query_report.py:596 +msgid "Not Permitted to read {0}" +msgstr "" + +#: frappe/website/doctype/web_form/web_form_list.js:7 +#: frappe/website/doctype/web_page/web_page_list.js:7 +msgid "Not Published" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 +#: frappe/public/js/frappe/model/indicator.js:28 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 +#: frappe/website/doctype/web_form/templates/web_form.html:85 +msgid "Not Saved" +msgstr "" + +#: frappe/core/doctype/error_log/error_log_list.js:7 +msgid "Not Seen" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +msgid "Not Sent" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:219 +msgid "Not Set" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:608 +msgctxt "Field value is not set" +msgid "Not Set" +msgstr "" + +#: frappe/utils/csvutils.py:102 +msgid "Not a valid Comma Separated Value (CSV File)" +msgstr "" + +#: frappe/core/doctype/user/user.py:266 +msgid "Not a valid User Image." +msgstr "" + +#: frappe/model/workflow.py:117 +msgid "Not a valid Workflow Action" +msgstr "" + +#: frappe/templates/includes/login/login.js:255 +msgid "Not a valid user" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow_list.js:7 +msgid "Not active" +msgstr "" + +#: frappe/permissions.py:383 +msgid "Not allowed for {0}: {1}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:639 +msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:336 +msgid "Not allowed to create custom Virtual DocType." +msgstr "" + +#: frappe/www/printview.py:165 +msgid "Not allowed to print cancelled documents" +msgstr "" + +#: frappe/www/printview.py:162 +msgid "Not allowed to print draft documents" +msgstr "" + +#: frappe/permissions.py:213 +msgid "Not allowed via controller permission check" +msgstr "" + +#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94 +msgid "Not found" +msgstr "" + +#: frappe/core/doctype/page/page.py:62 +msgid "Not in Developer Mode" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:331 +msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:217 +#: frappe/public/js/frappe/request.js:159 +#: frappe/public/js/frappe/request.js:170 +#: frappe/public/js/frappe/request.js:175 +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 +#: frappe/website/js/website.js:97 +msgid "Not permitted" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:53 +msgid "Not permitted to view {0}" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/note/note.json +msgid "Note" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/note_seen_by/note_seen_by.json +msgid "Note Seen By" +msgstr "" + +#: frappe/www/confirm_workflow_action.html:8 +msgid "Note:" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:775 +msgid "Note: Changing the Page Name will break previous URL to this page." +msgstr "" + +#: frappe/core/doctype/user/user.js:35 +msgid "Note: Etc timezones have their signs reversed." +msgstr "" + +#. Description of the 'sb0' (Section Break) field in DocType 'Website +#. Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Note: For best results, images must be of the same size and width must be greater than height." +msgstr "" + +#. Description of the 'Allow only one session per user' (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Note: Multiple sessions will be allowed in case of mobile device" +msgstr "" + +#: frappe/core/doctype/user/user.js:387 +msgid "Note: This will be shared with user." +msgstr "" + +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.js:8 +msgid "Note: Your request for account deletion will be fulfilled within {0} hours." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:183 +msgid "Notes:" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:492 +msgid "Nothing New" +msgstr "" + +#: frappe/public/js/frappe/form/undo_manager.js:43 +msgid "Nothing left to redo" +msgstr "" + +#: frappe/public/js/frappe/form/undo_manager.js:33 +msgid "Nothing left to undo" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:383 +#: frappe/public/js/frappe/views/reports/query_report.js:105 +#: frappe/templates/includes/list/list.html:9 +#: frappe/website/doctype/help_article/templates/help_article_list.html:21 +msgid "Nothing to show" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:129 +msgid "Nothing to update" +msgstr "" + +#. Label of the notification (Tab Break) field in DocType 'Auto Repeat' +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/mixins.py:142 +#: frappe/email/doctype/notification/notification.json +msgid "Notification" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Notification Log" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Notification Recipient" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/public/js/frappe/ui/notifications/notifications.js:37 +msgid "Notification Settings" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json +msgid "Notification Subscribed Document" +msgstr "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8 +msgid "Notification sent to" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:544 +msgid "Notification: customer {0} has no Mobile number set" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:530 +msgid "Notification: document {0} has no {1} number set (field: {2})" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:539 +msgid "Notification: user {0} has no Mobile number set" +msgstr "" + +#. Label of the notifications (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/ui/notifications/notifications.js:50 +#: frappe/public/js/frappe/ui/notifications/notifications.js:187 +msgid "Notifications" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:299 +msgid "Notifications Disabled" +msgstr "" + +#. Description of the 'Default Outgoing' (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Notifications and bulk mails will be sent from this outgoing server." +msgstr "" + +#. Label of the notify_on_every_login (Check) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Notify Users On Every Login" +msgstr "" + +#. Label of the notify_by_email (Check) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Notify by Email" +msgstr "" + +#. Label of the notify_by_email (Check) field in DocType 'DocShare' +#: frappe/core/doctype/docshare/docshare.json +msgid "Notify by email" +msgstr "" + +#. Label of the notify_if_unreplied (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Notify if unreplied" +msgstr "" + +#. Label of the unreplied_for_mins (Int) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Notify if unreplied for (in mins)" +msgstr "" + +#. Label of the notify_on_login (Check) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Notify users with a popup when they log in" +msgstr "" + +#: frappe/public/js/frappe/form/controls/datetime.js:41 +#: frappe/public/js/frappe/form/controls/time.js:37 +msgid "Now" +msgstr "" + +#. Label of the phone (Data) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Number" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:628 +msgid "Number Card" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/number_card_link/number_card_link.json +msgid "Number Card Link" +msgstr "" + +#. Label of the number_card_name (Link) field in DocType 'Workspace Number +#. Card' +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json +msgid "Number Card Name" +msgstr "" + +#. Label of the number_cards_tab (Tab Break) field in DocType 'Workspace' +#. Label of the number_cards (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:658 +msgid "Number Cards" +msgstr "" + +#. Label of the number_format (Select) field in DocType 'Language' +#. Label of the number_format (Select) field in DocType 'System Settings' +#. Label of the number_format (Select) field in DocType 'Currency' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/geo/doctype/currency/currency.json +msgid "Number Format" +msgstr "" + +#. Label of the backup_limit (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Number of Backups" +msgstr "" + +#. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Number of Groups" +msgstr "" + +#. Label of the number_of_queries (Int) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Number of Queries" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:443 +#: frappe/public/js/frappe/doctype/index.js:59 +msgid "Number of attachment fields are more than {}, limit updated to {}." +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:172 +msgid "Number of backups must be greater than zero." +msgstr "" + +#. Description of the 'Columns' (Int) field in DocType 'Customize Form Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Number of columns for a field in a Grid (Total Columns in a grid should be less than 11)" +msgstr "" + +#. Description of the 'Columns' (Int) field in DocType 'DocField' +#. Description of the 'Columns' (Int) field in DocType 'Custom Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)" +msgstr "" + +#. Description of the 'Document Share Key Expiry (in Days)' (Int) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Number of days after which the document Web View link shared on email will be expired" +msgstr "" + +#. Label of the cache_keys (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Number of keys" +msgstr "" + +#. Label of the onsite_backups (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Number of onsite backups" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "OAuth" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "OAuth Authorization Code" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "OAuth Bearer Token" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "OAuth Client" +msgstr "" + +#. Label of the sb_00 (Section Break) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "OAuth Client ID" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json +msgid "OAuth Client Role" +msgstr "" + +#: frappe/email/oauth.py:30 +msgid "OAuth Error" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "OAuth Provider Settings" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_scope/oauth_scope.json +msgid "OAuth Scope" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:250 +msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "OPTIONS" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:190 +msgid "OR" +msgstr "" + +#. Option for the 'Two Factor Authentication method' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "OTP App" +msgstr "" + +#. Label of the otp_issuer_name (Data) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "OTP Issuer Name" +msgstr "" + +#: frappe/twofactor.py:450 +msgid "OTP Secret Reset - {0}" +msgstr "" + +#: frappe/twofactor.py:469 +msgid "OTP Secret has been reset. Re-registration will be required on next login." +msgstr "" + +#: frappe/templates/includes/login/login.js:355 +msgid "OTP setup using OTP App was not completed. Please contact Administrator." +msgstr "" + +#. Label of the occurrences (Int) field in DocType 'System Health Report +#. Errors' +#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json +msgid "Occurrences" +msgstr "" + +#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Off" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Office" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Office 365" +msgstr "" + +#: frappe/core/doctype/server_script/server_script.js:36 +msgid "Official Documentation" +msgstr "" + +#. Label of the offset_x (Int) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Offset X" +msgstr "" + +#. Label of the offset_y (Int) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Offset Y" +msgstr "" + +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "" + +#: frappe/www/update-password.html:38 +msgid "Old Password" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:412 +msgid "Old and new fieldnames are same." +msgstr "" + +#. Description of the 'Number of Backups' (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Older backups will be automatically deleted" +msgstr "" + +#. Label of the oldest_unscheduled_job (Link) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Oldest Unscheduled Job" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "On Hold" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Authorization" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Charge Processed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Failed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Mandate Acquisition Processed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Mandate Charge Processed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Paid" +msgstr "" + +#. Description of the 'Is Dynamic URL?' (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "On checking this option, URL will be treated like a jinja template string" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:66 +#: frappe/public/js/frappe/ui/filters/filter.js:72 +msgid "On or After" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:65 +#: frappe/public/js/frappe/ui/filters/filter.js:71 +msgid "On or Before" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:966 +msgid "On {0}, {1} wrote:" +msgstr "" + +#. Label of the onboard (Check) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:335 +msgid "Onboard" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:232 +msgid "Onboarding Name" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json +msgid "Onboarding Permission" +msgstr "" + +#. Label of the onboarding_status (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Onboarding Status" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Onboarding Step" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json +msgid "Onboarding Step Map" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:264 +msgid "Onboarding complete" +msgstr "" + +#. Description of the 'Is Submittable' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:43 +msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:35 +msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)." +msgstr "" + +#: frappe/www/complete_signup.html:7 +msgid "One Last Step" +msgstr "" + +#: frappe/twofactor.py:278 +msgid "One Time Password (OTP) Registration Code from {}" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:331 +msgid "One of" +msgstr "" + +#: frappe/client.py:213 +msgid "Only 200 inserts allowed in one request" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue.py:87 +msgid "Only Administrator can delete Email Queue" +msgstr "" + +#: frappe/core/doctype/page/page.py:66 +msgid "Only Administrator can edit" +msgstr "" + +#: frappe/core/doctype/report/report.py:75 +msgid "Only Administrator can save a standard report. Please rename and save." +msgstr "" + +#: frappe/recorder.py:314 +msgid "Only Administrator is allowed to use Recorder" +msgstr "" + +#. Label of the allow_edit (Link) field in DocType 'Workflow Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Only Allow Edit For" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1621 +msgid "Only Options allowed for Data field are:" +msgstr "" + +#. Label of the data_modified_till (Int) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Only Send Records Updated in Last X Hours" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.js:32 +msgid "Only Workspace Manager can edit public workspaces" +msgstr "" + +#: frappe/modules/utils.py:65 +msgid "Only allowed to export customizations in developer mode" +msgstr "" + +#: frappe/model/document.py:1239 +msgid "Only draft documents can be discarded" +msgstr "" + +#. Label of the only_for (Link) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:328 +msgid "Only for" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:192 +msgid "Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish." +msgstr "" + +#: frappe/contacts/doctype/contact/contact.py:131 +#: frappe/contacts/doctype/contact/contact.py:158 +msgid "Only one {0} can be set as primary." +msgstr "" + +#: frappe/desk/reportview.py:358 +msgid "Only reports of type Report Builder can be deleted" +msgstr "" + +#: frappe/desk/reportview.py:329 +msgid "Only reports of type Report Builder can be edited" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:131 +msgid "Only standard DocTypes are allowed to be customized from Customize Form." +msgstr "" + +#: frappe/model/delete_doc.py:281 +msgid "Only the Administrator can delete a standard DocType." +msgstr "" + +#: frappe/desk/form/assign_to.py:198 +msgid "Only the assignee can complete this to-do." +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +msgid "Only {0} emailed reports are allowed per user." +msgstr "" + +#: frappe/templates/includes/login/login.js:291 +msgid "Oops! Something went wrong." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Contact' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#. Option for the 'Email Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType 'ToDo' +#. Option for the 'Status' (Select) field in DocType 'Workflow Action' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/deleted_document/deleted_document.js:7 +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Open" +msgstr "" + +#: frappe/desk/doctype/todo/todo_list.js:14 +msgctxt "Access" +msgid "Open" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:207 +#: frappe/public/js/frappe/ui/keyboard.js:217 +msgid "Open Awesomebar" +msgstr "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:75 +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:96 +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:97 +msgid "Open Communication" +msgstr "" + +#: frappe/templates/emails/new_notification.html:10 +msgid "Open Document" +msgstr "" + +#. Label of the subscribed_documents (Table MultiSelect) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Open Documents" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:243 +msgid "Open Help" +msgstr "" + +#. Label of the open_reference_document (Button) field in DocType 'Notification +#. Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Open Reference Document" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:226 +msgid "Open Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Open Source Applications for the Web" +msgstr "" + +#. Label of the open_in_new_tab (Check) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "Open URL in a New Tab" +msgstr "" + +#. Description of the 'Quick Entry' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:176 +msgid "Open a module or tool" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:367 +msgid "Open console" +msgstr "" + +#: frappe/public/js/print_format_builder/Preview.vue:17 +msgid "Open in a new tab" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1433 +msgctxt "Description of a list view shortcut" +msgid "Open list item" +msgstr "" + +#: frappe/core/doctype/error_log/error_log.js:15 +msgid "Open reference document" +msgstr "" + +#: frappe/www/qrcode.html:13 +msgid "Open your authentication app on your mobile phone." +msgstr "" + +#: frappe/desk/doctype/todo/todo_list.js:17 +#: frappe/public/js/frappe/form/templates/form_links.html:18 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 +msgid "Open {0}" +msgstr "" + +#. Label of the openid_configuration (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "OpenID Configuration" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "" + +#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "OpenLDAP" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Opened" +msgstr "" + +#. Label of the operation (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Operation" +msgstr "" + +#: frappe/utils/data.py:2172 +msgid "Operator must be one of {0}" +msgstr "" + +#: frappe/core/doctype/file/file.js:34 +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:8 +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:28 +msgid "Optimize" +msgstr "" + +#: frappe/core/doctype/file/file.js:106 +msgid "Optimizing image..." +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:100 +msgid "Option 1" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:102 +msgid "Option 2" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:104 +msgid "Option 3" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1639 +msgid "Option {0} for field {1} is not a child table" +msgstr "" + +#. Description of the 'CC' (Code) field in DocType 'Notification Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Optional: Always send to these ids. Each Email Address on a new row" +msgstr "" + +#. Description of the 'Condition' (Code) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Optional: The alert will be sent if this expression is true" +msgstr "" + +#. Label of the options (Small Text) field in DocType 'DocField' +#. Label of the options (Data) field in DocType 'Report Column' +#. Label of the options (Small Text) field in DocType 'Report Filter' +#. Label of the options (Small Text) field in DocType 'Custom Field' +#. Label of the options (Small Text) field in DocType 'Customize Form Field' +#. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' +#. Label of the options (Small Text) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/templates/form_grid/fields.html:43 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Options" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1367 +msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" +msgstr "" + +#. Label of the options_help (HTML) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Options Help" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1661 +msgid "Options for Rating field can range from 3 to 10" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:96 +msgid "Options for select. Each option on a new line." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1384 +msgid "Options for {0} must be set before setting the default value." +msgstr "" + +#: frappe/public/js/form_builder/store.js:182 +msgid "Options is required for field {0} of type {1}" +msgstr "" + +#: frappe/model/base_document.py:928 +msgid "Options not set for link field {0}" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Orange" +msgstr "" + +#. Label of the order (Code) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Order" +msgstr "" + +#: frappe/database/query.py:769 +msgid "Order By must be a string" +msgstr "" + +#. Label of the sb0 (Section Break) field in DocType 'About Us Settings' +#. Label of the company_history (Table) field in DocType 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Org History" +msgstr "" + +#. Label of the company_history_heading (Data) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Org History Heading" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:21 +msgid "Orientation" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 +msgid "Original Value" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/contacts/doctype/address/address.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/page/setup_wizard/install_fixtures.py:30 +msgid "Other" +msgstr "" + +#. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outgoing" +msgstr "" + +#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outgoing (SMTP) Settings" +msgstr "" + +#. Label of the outgoing_emails_column (Column Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Outgoing Emails (Last 7 days)" +msgstr "" + +#. Label of the smtp_server (Data) field in DocType 'Email Account' +#. Label of the smtp_server (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Outgoing Server" +msgstr "" + +#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Outgoing Settings" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:33 +msgid "Outgoing email account not correct" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outlook.com" +msgstr "" + +#. Label of the output (Code) field in DocType 'Permission Inspector' +#. Label of the output (Code) field in DocType 'System Console' +#. Label of the output (Code) field in DocType 'Integration Request' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Output" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_dashboard.html:5 +msgid "Overview" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "PATCH" +msgstr "" + +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/page/print/print.js:84 +#: frappe/public/js/frappe/form/templates/print_layout.html:44 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 +msgid "PDF" +msgstr "" + +#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191 +msgid "PDF Generation in Progress" +msgstr "" + +#. Label of the pdf_generator (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "PDF Generator" +msgstr "" + +#. Label of the pdf_page_height (Float) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "PDF Page Height (in mm)" +msgstr "" + +#. Label of the pdf_page_size (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "PDF Page Size" +msgstr "" + +#. Label of the pdf_page_width (Float) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "PDF Page Width (in mm)" +msgstr "" + +#. Label of the pdf_settings (Section Break) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "PDF Settings" +msgstr "" + +#: frappe/utils/print_format.py:289 +msgid "PDF generation failed" +msgstr "" + +#: frappe/utils/pdf.py:106 +msgid "PDF generation failed because of broken image links" +msgstr "" + +#: frappe/printing/page/print/print.js:656 +msgid "PDF generation may not work as expected." +msgstr "" + +#: frappe/printing/page/print/print.js:574 +msgid "PDF printing via \"Raw Print\" is not supported." +msgstr "" + +#. Label of the pid (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "PID" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#. Option for the 'Request Method' (Select) field in DocType 'Webhook' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/webhook/webhook.json +msgid "POST" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#. Option for the 'Request Method' (Select) field in DocType 'Webhook' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/webhook/webhook.json +msgid "PUT" +msgstr "" + +#. Label of the package (Link) field in DocType 'Module Def' +#. Name of a DocType +#. Label of the package (Link) field in DocType 'Package Release' +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/package/package.json +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/workspace/build/build.json frappe/www/attribution.html:34 +msgid "Package" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/package_import/package_import.json +#: frappe/core/workspace/build/build.json +msgid "Package Import" +msgstr "" + +#. Label of the package_name (Data) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "Package Name" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/package_release/package_release.json +msgid "Package Release" +msgstr "" + +#. Label of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Packages" +msgstr "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Packages are lightweight apps (collection of Module Defs) that can be created, imported, or released right from the UI" +msgstr "" + +#. Label of the page (Link) field in DocType 'Custom Role' +#. Name of a DocType +#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for +#. Page and Report' +#. Label of the page (Link) field in DocType 'Role Permission for Page and +#. Report' +#. Label of a Link in the Build Workspace +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Page" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:63 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Page Break" +msgstr "" + +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json +msgid "Page Builder" +msgstr "" + +#. Label of the page_blocks (Table) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Page Building Blocks" +msgstr "" + +#. Label of the page_html (Section Break) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "Page HTML" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:73 +msgid "Page Height (in mm)" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:5 +msgid "Page Margins" +msgstr "" + +#. Label of the page_name (Data) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "Page Name" +msgstr "" + +#. Label of the page_number (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:63 +msgid "Page Number" +msgstr "" + +#. Label of the page_route (Small Text) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Page Route" +msgstr "" + +#. Label of the view_link_in_email (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Page Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:125 +msgid "Page Shortcuts" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:66 +msgid "Page Size" +msgstr "" + +#. Label of the page_title (Data) field in DocType 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Page Title" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:80 +msgid "Page Width (in mm)" +msgstr "" + +#: frappe/www/qrcode.py:35 +msgid "Page has expired!" +msgstr "" + +#: frappe/printing/doctype/print_settings/print_settings.py:70 +#: frappe/public/js/frappe/list/bulk_operations.js:106 +msgid "Page height and width cannot be zero" +msgstr "" + +#: frappe/public/js/frappe/views/container.js:52 frappe/www/404.html:23 +msgid "Page not found" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/web_page/web_page.json +msgid "Page to show on the website\n" +msgstr "" + +#: frappe/public/html/print_template.html:25 +#: frappe/public/js/frappe/views/reports/print_tree.html:89 +#: frappe/public/js/frappe/web_form/web_form.js:288 +#: frappe/templates/print_formats/standard.html:34 +msgid "Page {0} of {1}" +msgstr "" + +#. Label of the parameter (Data) field in DocType 'SMS Parameter' +#: frappe/core/doctype/sms_parameter/sms_parameter.json +msgid "Parameter" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:142 +#: frappe/public/js/frappe/views/workspace/workspace.js:434 +msgid "Parent" +msgstr "" + +#. Label of the parent_doctype (Link) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Parent DocType" +msgstr "" + +#. Label of the parent_document_type (Link) field in DocType 'Dashboard Chart' +#. Label of the parent_document_type (Link) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Parent Document Type" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:66 +msgid "Parent Document Type is required to create a number card" +msgstr "" + +#. Label of the parent_element_selector (Data) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Parent Element Selector" +msgstr "" + +#. Label of the parent_fieldname (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Parent Field" +msgstr "" + +#. Label of the nsm_parent_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype.py:934 +msgid "Parent Field (Tree)" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:940 +msgid "Parent Field must be a valid fieldname" +msgstr "" + +#. Label of the parent_label (Select) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "Parent Label" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1198 +msgid "Parent Missing" +msgstr "" + +#. Label of the parent_page (Link) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Parent Page" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:24 +msgid "Parent Table" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:404 +msgid "Parent document type is required to create a dashboard chart" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:253 +msgid "Parent is the name of the document to which the data will get added to." +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." +msgstr "" + +#: frappe/permissions.py:820 +msgid "Parentfield not specified in {0}: {1}" +msgstr "" + +#: frappe/client.py:467 +msgid "Parenttype, Parent and Parentfield are required to insert a child record" +msgstr "" + +#. Label of the partial (Check) field in DocType 'Personal Data Deletion Step' +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Partial" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Partial Success" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Partially Sent" +msgstr "" + +#. Label of the participants (Section Break) field in DocType 'Event' +#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json +msgid "Participants" +msgstr "" + +#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Pass" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Passive" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the password_settings (Section Break) field in DocType 'System +#. Settings' +#. Label of the password_tab (Tab Break) field in DocType 'System Settings' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the password (Password) field in DocType 'Email Account' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:493 +#: frappe/email/doctype/email_account/email_account.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/www/login.html:22 +msgid "Password" +msgstr "" + +#: frappe/core/doctype/user/user.py:1094 +msgid "Password Email Sent" +msgstr "" + +#: frappe/core/doctype/user/user.py:459 +msgid "Password Reset" +msgstr "" + +#. Label of the password_reset_limit (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Password Reset Link Generation Limit" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:897 +msgid "Password cannot be filtered" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:357 +msgid "Password changed successfully." +msgstr "" + +#. Label of the password (Password) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Password for Base DN" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:189 +msgid "Password is required or select Awaiting Password" +msgstr "" + +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "" + +#: frappe/public/js/frappe/desk.js:212 +msgid "Password missing in Email Account" +msgstr "" + +#: frappe/utils/password.py:47 +msgid "Password not found for {0} {1} {2}" +msgstr "" + +#: frappe/core/doctype/user/user.py:1093 +msgid "Password reset instructions have been sent to {}'s email" +msgstr "" + +#: frappe/www/update-password.html:191 +msgid "Password set" +msgstr "" + +#: frappe/auth.py:261 +msgid "Password size exceeded the maximum allowed size" +msgstr "" + +#: frappe/core/doctype/user/user.py:882 +msgid "Password size exceeded the maximum allowed size." +msgstr "" + +#: frappe/www/update-password.html:93 +msgid "Passwords do not match" +msgstr "" + +#: frappe/core/doctype/user/user.js:198 +msgid "Passwords do not match!" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:151 +msgid "Paste" +msgstr "" + +#. Label of the patch (Int) field in DocType 'Package Release' +#. Label of the patch (Code) field in DocType 'Patch Log' +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Patch" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Patch Log" +msgstr "" + +#: frappe/modules/patch_handler.py:136 +msgid "Patch type {} not found in patches.txt" +msgstr "" + +#. Label of the path (Data) field in DocType 'API Request Log' +#. Label of the path (Small Text) field in DocType 'Package Release' +#. Label of the path (Data) field in DocType 'Recorder' +#. Label of the path (Data) field in DocType 'Onboarding Step' +#. Label of the path (Data) field in DocType 'Web Page View' +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:35 +msgid "Path" +msgstr "" + +#. Label of the local_ca_certs_file (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Path to CA Certs File" +msgstr "" + +#. Label of the local_server_certificate_file (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Path to Server Certificate" +msgstr "" + +#. Label of the local_private_key_file (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Path to private Key File" +msgstr "" + +#: frappe/website/path_resolver.py:208 +msgid "Path {0} it not a valid path" +msgstr "" + +#. Label of the payload_count (Int) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Payload Count" +msgstr "" + +#. Label of the peak_memory_usage (Int) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Peak Memory Usage" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Step' +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Pending" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Pending Approval" +msgstr "" + +#. Label of the pending_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Pending Emails" +msgstr "" + +#. Label of the pending_jobs (Int) field in DocType 'System Health Report +#. Queue' +#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json +msgid "Pending Jobs" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Pending Verification" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Percent" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Percentage" +msgstr "" + +#. Label of the dynamic_date_period (Select) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Period" +msgstr "" + +#. Label of the permlevel (Int) field in DocType 'DocField' +#. Label of the permlevel (Int) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Perm Level" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Permanent" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1028 +msgid "Permanently Cancel {0}?" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1074 +msgid "Permanently Discard {0}?" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:861 +msgid "Permanently Submit {0}?" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:684 +msgid "Permanently delete {0}?" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 +msgid "Permission Error" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "Permission Inspector" +msgstr "" + +#. Label of the permlevel (Int) field in DocType 'Custom Field' +#: frappe/core/page/permission_manager/permission_manager.js:463 +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Permission Level" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:22 +msgid "Permission Levels" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Permission Log" +msgstr "" + +#. Label of a shortcut in the Users Workspace +#: frappe/core/workspace/users/users.json +msgid "Permission Manager" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Permission Query" +msgstr "" + +#. Label of the permission_rules (Section Break) field in DocType 'Custom Role' +#: frappe/core/doctype/custom_role/custom_role.json +msgid "Permission Rules" +msgstr "" + +#. Label of the permission_type (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "Permission Type" +msgstr "" + +#. Label of the section_break_4 (Section Break) field in DocType 'Custom +#. DocPerm' +#. Label of the permissions (Section Break) field in DocType 'DocField' +#. Label of the section_break_4 (Section Break) field in DocType 'DocPerm' +#. Label of the permissions (Table) field in DocType 'DocType' +#. Label of the permissions_tab (Tab Break) field in DocType 'DocType' +#. Label of the permissions (Section Break) field in DocType 'System Settings' +#. Label of a Card Break in the Users Workspace +#. Label of the permissions (Section Break) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 +#: 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:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 +msgid "Permissions Error" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:10 +msgid "Permissions are automatically applied to Standard Reports and searches." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:5 +msgid "Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:26 +msgid "Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:24 +msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:6 +msgid "Permissions get applied on Users based on what Roles they are assigned." +msgstr "" + +#. Name of a report +#. Label of a Link in the Users Workspace +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.json +#: frappe/core/workspace/users/users.json +msgid "Permitted Documents For User" +msgstr "" + +#. Label of the permitted_roles (Table MultiSelect) field in DocType 'Workflow +#. Action' +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Permitted Roles" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Personal" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Personal Data Deletion Request" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Personal Data Deletion Step" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +msgid "Personal Data Download Request" +msgstr "" + +#. Label of the phone (Data) field in DocType 'Address' +#. Label of the phone (Data) field in DocType 'Contact' +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the phone (Data) field in DocType 'Contact Us Settings' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Phone" +msgstr "" + +#. Label of the phone_no (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Phone No." +msgstr "" + +#: frappe/utils/__init__.py:124 +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:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 +msgid "Pick Columns" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Pie" +msgstr "" + +#. Label of the pincode (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Pincode" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Pink" +msgstr "" + +#. Label of the placeholder (Data) field in DocType 'DocField' +#. Label of the placeholder (Data) field in DocType 'Custom Field' +#. Label of the placeholder (Data) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Placeholder" +msgstr "" + +#. Option for the 'Message Type' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Plain Text" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Plant" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:544 +msgid "Please Authorize OAuth for Email Account {0}" +msgstr "" + +#: frappe/email/oauth.py:29 +msgid "Please Authorize OAuth for Email Account {}" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.py:77 +msgid "Please Duplicate this Website Theme to customize." +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:162 +msgid "Please Install the ldap3 library via pip to use ldap functionality." +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:308 +msgid "Please Set Chart" +msgstr "" + +#: frappe/core/doctype/sms_settings/sms_settings.py:88 +msgid "Please Update SMS Settings" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 +msgid "Please add a subject to your email" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:168 +msgid "Please add a valid comment." +msgstr "" + +#: frappe/core/doctype/user/user.py:1076 +msgid "Please ask your administrator to verify your sign-up" +msgstr "" + +#: frappe/public/js/frappe/form/controls/select.js:101 +msgid "Please attach a file first." +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:82 +msgid "Please attach an image file to set HTML for Footer." +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:70 +msgid "Please attach an image file to set HTML for Letter Head." +msgstr "" + +#: frappe/core/doctype/package_import/package_import.py:39 +msgid "Please attach the package" +msgstr "" + +#: frappe/utils/dashboard.py:58 +msgid "Please check the filter values set for Dashboard Chart: {}" +msgstr "" + +#: frappe/model/base_document.py:1008 +msgid "Please check the value of \"Fetch From\" set for field {0}" +msgstr "" + +#: frappe/core/doctype/user/user.py:1074 +msgid "Please check your email for verification" +msgstr "" + +#: frappe/email/smtp.py:134 +msgid "Please check your email login credentials." +msgstr "" + +#: frappe/twofactor.py:243 +msgid "Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it." +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.js:23 +msgid "Please click Edit on the Workspace for best results" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:158 +msgid "Please click on 'Export Errored Rows', fix the errors and import again." +msgstr "" + +#: frappe/twofactor.py:286 +msgid "Please click on the following link and follow the instructions on the page. {0}" +msgstr "" + +#: frappe/templates/emails/password_reset.html:2 +msgid "Please click on the following link to set your new password" +msgstr "" + +#: frappe/www/confirm_workflow_action.html:4 +msgid "Please confirm your action to {0} this document." +msgstr "" + +#: frappe/printing/page/print/print.js:658 +msgid "Please contact your system manager to install correct version." +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.js:45 +msgid "Please create Card first" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:42 +msgid "Please create chart first" +msgstr "" + +#: frappe/desk/form/meta.py:190 +msgid "Please delete the field from {0} or add the required doctype." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:184 +msgid "Please do not change the template headings." +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:19 +msgid "Please duplicate this to make changes" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:165 +msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.js:45 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:17 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 +#: frappe/public/js/frappe/list/bulk_operations.js:161 +#: frappe/public/js/frappe/utils/utils.js:1471 +msgid "Please enable pop-ups" +msgstr "" + +#: frappe/public/js/frappe/microtemplate.js:162 +#: frappe/public/js/frappe/microtemplate.js:177 +msgid "Please enable pop-ups in your browser" +msgstr "" + +#: frappe/integrations/google_oauth.py:55 +msgid "Please enable {} before continuing." +msgstr "" + +#: frappe/utils/oauth.py:191 +msgid "Please ensure that your profile has an email address" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 +msgid "Please enter Access Token URL" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 +msgid "Please enter Authorize URL" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 +msgid "Please enter Base URL" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 +msgid "Please enter Client ID before social login is enabled" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 +msgid "Please enter Client Secret before social login is enabled" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.py:54 +msgid "Please enter OpenID Configuration URL" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 +msgid "Please enter Redirect URL" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:163 +msgid "Please enter a valid email address." +msgstr "" + +#: frappe/templates/includes/contact.js:15 +msgid "Please enter both your email and message so that we can get back to you. Thanks!" +msgstr "" + +#: frappe/www/update-password.html:259 +msgid "Please enter the password" +msgstr "" + +#: frappe/public/js/frappe/desk.js:217 +msgctxt "Email Account" +msgid "Please enter the password for: {0}" +msgstr "" + +#: frappe/core/doctype/sms_settings/sms_settings.py:43 +msgid "Please enter valid mobile nos" +msgstr "" + +#: frappe/www/update-password.html:142 +msgid "Please enter your new password." +msgstr "" + +#: frappe/www/update-password.html:135 +msgid "Please enter your old password." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 +msgid "Please find attached {0}: {1}" +msgstr "" + +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 +msgid "Please login to post a comment." +msgstr "" + +#: frappe/core/doctype/communication/communication.py:186 +msgid "Please make sure the Reference Communication Docs are not circularly linked." +msgstr "" + +#: frappe/model/document.py:992 +msgid "Please refresh to get the latest document." +msgstr "" + +#: frappe/printing/page/print/print.js:575 +msgid "Please remove the printer mapping in Printer Settings and try again." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:358 +msgid "Please save before attaching." +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:52 +msgid "Please save the document before assignment" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:72 +msgid "Please save the document before removing assignment" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1718 +msgid "Please save the report first" +msgstr "" + +#: frappe/website/doctype/web_template/web_template.js:22 +msgid "Please save to edit the template." +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:31 +msgid "Please select DocType first" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:27 +msgid "Please select Entity Type first" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:116 +msgid "Please select Minimum Password Score" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1193 +msgid "Please select X and Y fields" +msgstr "" + +#: frappe/utils/__init__.py:131 +msgid "Please select a country code for field {1}." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 +msgid "Please select a file first." +msgstr "" + +#: frappe/utils/file_manager.py:50 +msgid "Please select a file or url" +msgstr "" + +#: frappe/model/rename_doc.py:684 +msgid "Please select a valid csv file with data" +msgstr "" + +#: frappe/utils/data.py:309 +msgid "Please select a valid date filter" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:203 +msgid "Please select applicable Doctypes" +msgstr "" + +#: frappe/model/db_query.py:1163 +msgid "Please select atleast 1 column from {0} to sort/group" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:214 +msgid "Please select prefix first" +msgstr "" + +#: frappe/core/doctype/data_export/data_export.js:42 +msgid "Please select the Document Type." +msgstr "" + +#. Description of the 'Directory Server' (Select) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Please select the LDAP Directory being used" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.js:100 +msgid "Please select {0}" +msgstr "" + +#: frappe/contacts/doctype/contact/contact.py:298 +msgid "Please set Email Address" +msgstr "" + +#: frappe/printing/page/print/print.js:589 +msgid "Please set a printer mapping for this print format in the Printer Settings" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1416 +msgid "Please set filters" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 +msgid "Please set filters value in Report Filter table." +msgstr "" + +#: frappe/model/naming.py:580 +msgid "Please set the document name" +msgstr "" + +#: frappe/desk/doctype/dashboard/dashboard.py:120 +msgid "Please set the following documents in this Dashboard as standard first." +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:120 +msgid "Please set the series to be used." +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:129 +msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104 +msgid "Please setup a message first" +msgstr "" + +#: frappe/core/doctype/user/user.py:424 +msgid "Please setup default outgoing Email Account from Settings > Email Account" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:432 +msgid "Please setup default outgoing Email Account from Tools > Email Account" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:774 +msgid "Please specify" +msgstr "" + +#: frappe/permissions.py:796 +msgid "Please specify a valid parent DocType for {0}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:163 +msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:160 +msgid "Please specify the minutes offset" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:154 +msgid "Please specify which date field must be checked" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:158 +msgid "Please specify which datetime field must be checked" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:167 +msgid "Please specify which value field must be checked" +msgstr "" + +#: frappe/public/js/frappe/request.js:187 +#: frappe/public/js/frappe/views/translation_manager.js:102 +msgid "Please try again" +msgstr "" + +#: frappe/integrations/google_oauth.py:58 +msgid "Please update {} before continuing." +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333 +msgid "Please use a valid LDAP search filter" +msgstr "" + +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." +msgstr "" + +#: frappe/utils/password.py:217 +msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." +msgstr "" + +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "" + +#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Polling" +msgstr "" + +#. Label of the popover_element (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Popover Element" +msgstr "" + +#. Label of the ondemand_description (HTML Editor) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Popover or Modal Description" +msgstr "" + +#. Label of the smtp_port (Data) field in DocType 'Email Account' +#. Label of the incoming_port (Data) field in DocType 'Email Account' +#. Label of the smtp_port (Data) field in DocType 'Email Domain' +#. Label of the incoming_port (Data) field in DocType 'Email Domain' +#. Label of the port (Int) field in DocType 'Network Printer Settings' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Port" +msgstr "" + +#. Label of the menu (Table) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Portal Menu" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +msgid "Portal Menu Item" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/portal_settings/portal_settings.json +#: frappe/website/workspace/website/website.json +msgid "Portal Settings" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:24 +msgid "Portrait" +msgstr "" + +#. Label of the position (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Position" +msgstr "" + +#: frappe/templates/discussions/comment_box.html:29 +#: frappe/templates/discussions/reply_card.html:15 +#: frappe/templates/discussions/reply_section.html:29 +#: frappe/templates/discussions/reply_section.html:53 +#: frappe/templates/discussions/topic_modal.html:11 +msgid "Post" +msgstr "" + +#: frappe/templates/discussions/reply_section.html:40 +msgid "Post it here, our mentors will help you out." +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Postal" +msgstr "" + +#. Label of the pincode (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 +msgid "Postal Code" +msgstr "" + +#. Label of the posting_timestamp (Datetime) field in DocType 'Changelog Feed' +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +msgid "Posting Timestamp" +msgstr "" + +#: frappe/database/query.py:1520 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" + +#. Label of the precision (Select) field in DocType 'DocField' +#. Label of the precision (Select) field in DocType 'Custom Field' +#. Label of the precision (Select) field in DocType 'Customize Form Field' +#. Label of the precision (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Precision" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 +msgid "Precision should be between 1 and 6" +msgstr "" + +#: frappe/utils/password_strength.py:187 +msgid "Predictable substitutions like '@' instead of 'a' don't help very much." +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:34 +msgid "Prefer not to say" +msgstr "" + +#. Label of the is_primary_address (Check) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Preferred Billing Address" +msgstr "" + +#. Label of the is_shipping_address (Check) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Preferred Shipping Address" +msgstr "" + +#. Label of the prefix (Data) field in DocType 'Document Naming Rule' +#. Label of the prefix (Autocomplete) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Prefix" +msgstr "" + +#. Name of a DocType +#. Label of the prepared_report (Check) field in DocType 'Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:32 +msgid "Prepared Report" +msgstr "" + +#. Name of a report +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json +msgid "Prepared Report Analytics" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Prepared Report User" +msgstr "" + +#: frappe/desk/query_report.py:308 +msgid "Prepared report render failed" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:473 +msgid "Preparing Report" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:434 +msgid "Prepend the template to the email message" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:139 +msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:141 +msgid "Press Enter to save" +msgstr "" + +#. Label of the section_import_preview (Section Break) field in DocType 'Data +#. Import' +#. Label of the preview (Section Break) field in DocType 'File' +#. Label of the preview_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Label of the preview (Attach Image) field in DocType 'Print Style' +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/file/file.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/email/doctype/notification/notification.js:194 +#: frappe/integrations/doctype/webhook/webhook.js:90 +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/public/js/frappe/form/controls/markdown_editor.js:17 +#: frappe/public/js/frappe/form/controls/markdown_editor.js:31 +#: frappe/public/js/frappe/ui/capture.js:236 +msgid "Preview" +msgstr "" + +#. Label of the preview_html (HTML) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Preview HTML" +msgstr "" + +#. Label of the preview_message (Button) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Preview Message" +msgstr "" + +#: frappe/public/js/form_builder/form_builder.bundle.js:83 +msgid "Preview Mode" +msgstr "" + +#. Label of the series_preview (Text) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Preview of generated names" +msgstr "" + +#: frappe/public/js/frappe/views/render_preview.js:19 +msgid "Preview on {0}" +msgstr "" + +#: frappe/public/js/print_format_builder/Preview.vue:103 +msgid "Preview type" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.js:81 +msgid "Preview:" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:15 +#: frappe/public/js/frappe/web_form/web_form.js:97 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:16 +#: frappe/templates/includes/slideshow.html:34 +#: frappe/website/web_template/slideshow/slideshow.html:40 +msgid "Previous" +msgstr "" + +#: frappe/public/js/frappe/ui/slides.js:351 +msgctxt "Go to previous slide" +msgid "Previous" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:2216 +msgid "Previous Submission" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Primary" +msgstr "" + +#: frappe/public/js/frappe/form/templates/address_list.html:27 +msgid "Primary Address" +msgstr "" + +#. Label of the primary_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Primary Color" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:23 +msgid "Primary Contact" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:69 +msgid "Primary Email" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:49 +msgid "Primary Mobile" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:41 +msgid "Primary Phone" +msgstr "" + +#: frappe/database/mariadb/schema.py:156 frappe/database/postgres/schema.py:199 +#: frappe/database/sqlite/schema.py:141 +msgid "Primary key of doctype {0} can not be changed as there are existing values." +msgstr "" + +#. Label of the print (Check) field in DocType 'Custom DocPerm' +#. Label of the print (Check) field in DocType 'DocPerm' +#. Label of the print (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/success_action/success_action.js:58 +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/printing/page/print/print.js:78 +#: frappe/public/js/frappe/form/success_action.js:81 +#: frappe/public/js/frappe/form/templates/print_layout.html:46 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 +#: frappe/public/js/frappe/list/bulk_operations.js:95 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 +msgid "Print" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2166 +msgctxt "Button in list view actions menu" +msgid "Print" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:48 +msgid "Print Documents" +msgstr "" + +#. Label of the print_format (Link) field in DocType 'Auto Repeat' +#. Label of a Link in the Build Workspace +#. Label of the print_format (Link) field in DocType 'Notification' +#. Name of a DocType +#. Label of the print_format (Link) field in DocType 'Web Form' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/workspace/build/build.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 +#: frappe/public/js/frappe/list/bulk_operations.js:59 +#: frappe/website/doctype/web_form/web_form.json +msgid "Print Format" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Label of the print_format_builder (Check) field in DocType 'Print Format' +#: frappe/automation/workspace/tools/tools.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:44 +#: frappe/printing/page/print_format_builder/print_format_builder.js:67 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:4 +msgid "Print Format Builder" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Print Format Builder (New)" +msgstr "" + +#. Label of the print_format_builder_beta (Check) field in DocType 'Print +#. Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format Builder Beta" +msgstr "" + +#: frappe/utils/pdf.py:63 +msgid "Print Format Error" +msgstr "" + +#. Name of a DocType +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +msgid "Print Format Field Template" +msgstr "" + +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "" + +#. Label of the print_format_help (HTML) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format Help" +msgstr "" + +#. Label of the print_format_type (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format Type" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1586 +msgid "Print Format not found" +msgstr "" + +#: frappe/www/printview.py:451 +msgid "Print Format {0} is disabled" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#. Label of the print_heading (Data) field in DocType 'Print Heading' +#: frappe/automation/workspace/tools/tools.json +#: frappe/printing/doctype/print_heading/print_heading.json +msgid "Print Heading" +msgstr "" + +#. Label of the print_hide (Check) field in DocType 'DocField' +#. Label of the print_hide (Check) field in DocType 'Custom Field' +#. Label of the print_hide (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Hide" +msgstr "" + +#. Label of the print_hide_if_no_value (Check) field in DocType 'DocField' +#. Label of the print_hide_if_no_value (Check) field in DocType 'Custom Field' +#. Label of the print_hide_if_no_value (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Hide If No Value" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:168 +msgid "Print Language" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:225 +msgid "Print Sent to the printer!" +msgstr "" + +#. Label of the server_printer (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Print Server" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Label of the column_break_25 (Section Break) field in DocType 'Notification' +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.js:6 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 +#: frappe/public/js/frappe/form/templates/print_layout.html:35 +msgid "Print Settings" +msgstr "" + +#. Label of the print_style_section (Section Break) field in DocType 'Print +#. Settings' +#. Label of the print_style (Link) field in DocType 'Print Settings' +#. Name of a DocType +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.json +msgid "Print Style" +msgstr "" + +#. Label of the print_style_name (Data) field in DocType 'Print Style' +#: frappe/printing/doctype/print_style/print_style.json +msgid "Print Style Name" +msgstr "" + +#. Label of the print_style_preview (HTML) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Print Style Preview" +msgstr "" + +#. Label of the print_width (Data) field in DocType 'DocField' +#. Label of the print_width (Data) field in DocType 'Custom Field' +#. Label of the print_width (Data) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Width" +msgstr "" + +#. Description of the 'Print Width' (Data) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Width of the field, if the field is a column in a table" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:170 +msgid "Print document" +msgstr "" + +#. Label of the with_letterhead (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Print with letterhead" +msgstr "" + +#: frappe/printing/page/print/print.js:870 +msgid "Printer" +msgstr "" + +#: frappe/printing/page/print/print.js:847 +msgid "Printer Mapping" +msgstr "" + +#. Label of the printer_name (Select) field in DocType 'Network Printer +#. Settings' +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Printer Name" +msgstr "" + +#: frappe/printing/page/print/print.js:839 +msgid "Printer Settings" +msgstr "" + +#: frappe/printing/page/print/print.js:588 +msgid "Printer mapping not set." +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Printing" +msgstr "" + +#: frappe/utils/print_format.py:291 +msgid "Printing failed" +msgstr "" + +#. Label of the priority (Int) field in DocType 'Assignment Rule' +#. Label of the priority (Int) field in DocType 'Document Naming Rule' +#. Label of the priority (Select) field in DocType 'ToDo' +#. Label of the priority (Int) field in DocType 'Email Queue' +#. Label of the idx (Int) field in DocType 'Web Page' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:37 +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:211 +#: frappe/website/doctype/web_page/web_page.json +msgid "Priority" +msgstr "" + +#. Label of the private (Check) field in DocType 'Custom HTML Block' +#. Option for the 'Event Type' (Select) field in DocType 'Event' +#. Label of the private (Check) field in DocType 'Kanban Board' +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/note/note_list.js:8 +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:35 +msgid "Private" +msgstr "" + +#. Label of the private_files_size (Float) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Private Files (MB)" +msgstr "" + +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "" + +#. Description of the 'Auto Reply Message' (Text Editor) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference" +msgstr "" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22 +msgid "Proceed" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:940 +msgid "Proceed Anyway" +msgstr "" + +#: frappe/public/js/frappe/form/controls/table.js:104 +msgid "Processing" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:52 +msgid "Processing..." +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:51 +msgid "Prof" +msgstr "" + +#. Group in User's connections +#: frappe/core/doctype/user/user.json +msgid "Profile" +msgstr "" + +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "" + +#: frappe/public/js/frappe/socketio_client.js:82 +msgid "Progress" +msgstr "" + +#: 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/custom/doctype/property_setter/property_setter.json +msgid "Property" +msgstr "" + +#. Label of the property_depends_on_section (Section Break) field in DocType +#. 'Customize Form Field' +#. Label of the property_depends_on_section (Section Break) field in DocType +#. 'Web Form Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Property Depends On" +msgstr "" + +#. Name of a DocType +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Property Setter" +msgstr "" + +#. Description of a DocType +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Property Setter overrides a standard DocType or Field property" +msgstr "" + +#. Label of the property_type (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Property Type" +msgstr "" + +#. Label of the protect_attached_files (Check) field in DocType 'DocType' +#. Label of the protect_attached_files (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Protect Attached Files" +msgstr "" + +#: frappe/core/doctype/file/file.py:526 +msgid "Protected File" +msgstr "" + +#. Description of the 'Allowed File Extensions' (Small Text) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Provide a list of allowed file extensions for file uploads. Each line should contain one allowed file type. If unset, all file extensions are allowed. Example:
CSV
JPG
PNG" +msgstr "" + +#. Label of the provider (Data) field in DocType 'User Social Login' +#. Label of the provider (Select) field in DocType 'Geolocation Settings' +#: frappe/core/doctype/user_social_login/user_social_login.json +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Provider" +msgstr "" + +#. Label of the provider_name (Data) field in DocType 'Connected App' +#. Label of the provider_name (Data) field in DocType 'Social Login Key' +#. Label of the provider_name (Data) field in DocType 'Token Cache' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Provider Name" +msgstr "" + +#. Option for the 'Event Type' (Select) field in DocType 'Event' +#. Label of the public (Check) field in DocType 'Note' +#. Label of the public (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/note/note_list.js:6 +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/views/interaction.js:78 +#: frappe/public/js/frappe/views/workspace/workspace.js:440 +msgid "Public" +msgstr "" + +#. Label of the public_files_size (Float) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Public Files (MB)" +msgstr "" + +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "" + +#. Label of the publish (Check) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 +#: frappe/website/doctype/web_form/web_form.js:86 +msgid "Publish" +msgstr "" + +#. Label of the published (Check) field in DocType 'Comment' +#. Label of the published (Check) field in DocType 'Help Article' +#. Label of the published (Check) field in DocType 'Help Category' +#. Label of the published (Check) field in DocType 'Web Form' +#. Label of the published (Check) field in DocType 'Web Page' +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_form/web_form_list.js:5 +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/web_page/web_page_list.js:5 +msgid "Published" +msgstr "" + +#. Label of the publishing_dates_section (Section Break) field in DocType 'Web +#. Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Publishing Dates" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:208 +msgid "Pull Emails" +msgstr "" + +#. Label of the pull_from_google_calendar (Check) field in DocType 'Google +#. Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Pull from Google Calendar" +msgstr "" + +#. Label of the pull_from_google_contacts (Check) field in DocType 'Google +#. Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Pull from Google Contacts" +msgstr "" + +#. Label of the pulled_from_google_calendar (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Pulled from Google Calendar" +msgstr "" + +#. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Pulled from Google Contacts" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:209 +msgid "Pulling emails..." +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Purchase Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Purchase Master Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Purchase User" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Purple" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Push Notification Settings" +msgstr "" + +#. Label of a Card Break in the Integrations Workspace +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Push Notifications" +msgstr "" + +#. Label of the push_to_google_calendar (Check) field in DocType 'Google +#. Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Push to Google Calendar" +msgstr "" + +#. Label of the push_to_google_contacts (Check) field in DocType 'Google +#. Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Push to Google Contacts" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23 +msgid "Put on Hold" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json +msgid "Python" +msgstr "" + +#: frappe/www/qrcode.html:3 +msgid "QR Code" +msgstr "" + +#: frappe/www/qrcode.html:6 +msgid "QR Code for Login Verification" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:401 +msgid "Quarterly" +msgstr "" + +#. Label of the query (Data) field in DocType 'Recorder Query' +#. Label of the query (Code) field in DocType 'Report' +#: frappe/core/doctype/recorder_query/recorder_query.json +#: frappe/core/doctype/report/report.json +msgid "Query" +msgstr "" + +#. Label of the section_break_6 (Section Break) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Query / Script" +msgstr "" + +#. Label of the query_options (Small Text) field in DocType 'Contact Us +#. Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Query Options" +msgstr "" + +#. Label of the query_parameters (Table) field in DocType 'Connected App' +#. Name of a DocType +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/query_parameters/query_parameters.json +msgid "Query Parameters" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +#: frappe/public/js/frappe/views/reports/query_report.js:17 +msgid "Query Report" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:188 +msgid "Query analysis complete. Check suggested indexes." +msgstr "" + +#: frappe/utils/safe_exec.py:497 +msgid "Query must be of SELECT or read-only WITH type." +msgstr "" + +#. Label of the queue (Select) field in DocType 'RQ Job' +#. Label of the queue (Data) field in DocType 'System Health Report Queue' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json +msgid "Queue" +msgstr "" + +#: frappe/utils/background_jobs.py:731 +msgid "Queue Overloaded" +msgstr "" + +#. Label of the queue_status (Table) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Queue Status" +msgstr "" + +#. Label of the queue_type (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Queue Type(s)" +msgstr "" + +#. Label of the queue_in_background (Check) field in DocType 'DocType' +#. Label of the queue_in_background (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Queue in Background (BETA)" +msgstr "" + +#: frappe/utils/background_jobs.py:556 +msgid "Queue should be one of {0}" +msgstr "" + +#. Label of the queue (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Queue(s)" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#. Option for the 'Status' (Select) field in DocType 'Submission Queue' +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Queued" +msgstr "" + +#. Label of the queued_at (Datetime) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Queued At" +msgstr "" + +#. Label of the queued_by (Data) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Queued By" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.py:174 +msgid "Queued for Submission. You can track the progress over {0}." +msgstr "" + +#: frappe/desk/page/backups/backups.py:96 +msgid "Queued for backup. You will receive an email with the download link" +msgstr "" + +#. Label of the queues (Data) field in DocType 'System Health Report Workers' +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "Queues" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:85 +msgid "Queuing {0} for Submission" +msgstr "" + +#. Label of the quick_entry (Check) field in DocType 'DocType' +#. Label of the quick_entry (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Quick Entry" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:3 +msgid "Quick Help for Setting Permissions" +msgstr "" + +#. Label of the quick_list_filter (Code) field in DocType 'Workspace Quick +#. List' +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +msgid "Quick List Filter" +msgstr "" + +#. Label of the quick_lists_tab (Tab Break) field in DocType 'Workspace' +#. Label of the quick_lists (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Quick Lists" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:314 +msgid "Quoting must be between 0 and 3" +msgstr "" + +#. Label of the raw_information_log_section (Section Break) field in DocType +#. 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "RAW Information Log" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/rq_job/rq_job.json +msgid "RQ Job" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "RQ Worker" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Random" +msgstr "" + +#: frappe/website/report/website_analytics/website_analytics.js:20 +msgid "Range" +msgstr "" + +#. Label of the rate_limiting_section (Section Break) field in DocType 'Server +#. Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Rate Limiting" +msgstr "" + +#. Label of the rate_limit_email_link_login (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Rate limit for email link login" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Rating" +msgstr "" + +#. Label of the raw_commands (Code) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:98 +msgid "Raw Commands" +msgstr "" + +#. Label of the raw (Code) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Raw Email" +msgstr "" + +#. Label of the raw_printing (Check) field in DocType 'Print Format' +#. Label of the raw_printing_section (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Raw Printing" +msgstr "" + +#: frappe/printing/page/print/print.js:178 +msgid "Raw Printing Setting" +msgstr "" + +#: frappe/public/js/frappe/form/templates/print_layout.html:37 +msgid "Raw Printing Settings" +msgstr "" + +#: frappe/desk/doctype/console_log/console_log.js:6 +msgid "Re-Run in Console" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:726 +msgid "Re:" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:268 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 +msgid "Re: {0}" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Label of the read (Check) field in DocType 'Custom DocPerm' +#. Label of the read (Check) field in DocType 'DocPerm' +#. Label of the read (Check) field in DocType 'DocShare' +#. Label of the read (Check) field in DocType 'User Document Type' +#. Label of the read (Check) field in DocType 'Notification Log' +#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue' +#: frappe/client.py:450 frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Read" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the read_only (Check) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Label of the read_only (Check) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the read_only (Check) field in DocType 'Customize Form Field' +#. Label of the read_only (Check) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/public/js/form_builder/form_builder.bundle.js:83 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Read Only" +msgstr "" + +#. Label of the read_only_depends_on (Code) field in DocType 'Custom Field' +#. Label of the read_only_depends_on (Code) field in DocType 'Customize Form +#. Field' +#. Label of the read_only_depends_on (Code) field in DocType 'Web Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Read Only Depends On" +msgstr "" + +#. Label of the read_only_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Read Only Depends On (JS)" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:16 +#: frappe/templates/includes/navbar/navbar_items.html:97 +msgid "Read Only Mode" +msgstr "" + +#. Label of the read_by_recipient (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Read by Recipient" +msgstr "" + +#. Label of the read_by_recipient_on (Datetime) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Read by Recipient On" +msgstr "" + +#: frappe/desk/doctype/note/note.js:10 +msgid "Read mode" +msgstr "" + +#: frappe/utils/safe_exec.py:99 +msgid "Read the documentation to know more" +msgstr "" + +#. Label of the readme (Markdown Editor) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "Readme" +msgstr "" + +#. Label of the realtime_socketio_section (Section Break) field in DocType +#. 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Realtime (SocketIO)" +msgstr "" + +#. Label of the reason (Long Text) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Reason" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:894 +msgid "Rebuild" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:511 +msgid "Rebuild Tree" +msgstr "" + +#: frappe/utils/nestedset.py:177 +msgid "Rebuilding of tree is not supported for {}" +msgstr "" + +#. Option for the 'Sent or Received' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Received" +msgstr "" + +#: frappe/integrations/doctype/token_cache/token_cache.py:49 +msgid "Received an invalid token type." +msgstr "" + +#. Label of the receiver_by_document_field (Select) field in DocType +#. 'Notification Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Receiver By Document Field" +msgstr "" + +#. Label of the receiver_by_role (Link) field in DocType 'Notification +#. Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Receiver By Role" +msgstr "" + +#. Label of the receiver_parameter (Data) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Receiver Parameter" +msgstr "" + +#: frappe/utils/password_strength.py:123 +msgid "Recent years are easy to guess." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 +msgid "Recents" +msgstr "" + +#. Label of the recipients (Table) field in DocType 'Email Queue' +#. Label of the recipient (Data) field in DocType 'Email Queue Recipient' +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +msgid "Recipient" +msgstr "" + +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Recipient Unsubscribed" +msgstr "" + +#. Label of the recipients (Small Text) field in DocType 'Auto Repeat' +#. Label of the column_break_5 (Section Break) field in DocType 'Notification' +#. Label of the recipients (Table) field in DocType 'Notification' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/email/doctype/notification/notification.json +msgid "Recipients" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/recorder/recorder.json +msgid "Recorder" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Recorder Query" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json +msgid "Recorder Suggested Index" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_help.html:2 +msgid "Records for following doctypes will be filtered" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1609 +msgid "Recursive Fetch From" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Red" +msgstr "" + +#. Label of the redirect_http_status (Select) field in DocType 'Website Route +#. Redirect' +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +msgid "Redirect HTTP Status" +msgstr "" + +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + +#. Label of the redirect_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Redirect URI" +msgstr "" + +#. Label of the redirect_uri_bound_to_authorization_code (Data) field in +#. DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Redirect URI Bound To Auth Code" +msgstr "" + +#. Label of the redirect_uris (Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Redirect URIs" +msgstr "" + +#. Label of the redirect_url (Small Text) field in DocType 'User' +#. Label of the redirect_url (Data) field in DocType 'Social Login Key' +#: frappe/core/doctype/user/user.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Redirect URL" +msgstr "" + +#. Description of the 'Default App' (Select) field in DocType 'System Settings' +#. Description of the 'Default App' (Select) field in DocType 'User' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +msgid "Redirect to the selected app after login" +msgstr "" + +#. Description of the 'Welcome URL' (Data) field in DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Redirect to this URL after successful confirmation." +msgstr "" + +#. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Redirects" +msgstr "" + +#: frappe/sessions.py:149 +msgid "Redis cache server not running. Please contact Administrator / Tech support" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:530 +msgid "Redo" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:164 +#: frappe/public/js/frappe/form/toolbar.js:538 +msgid "Redo last action" +msgstr "" + +#. Label of the ref_doctype (Link) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Ref DocType" +msgstr "" + +#: frappe/desk/doctype/form_tour/form_tour.js:38 +msgid "Referance Doctype and Dashboard Name both can't be used at the same time." +msgstr "" + +#. Label of the linked_with (Section Break) field in DocType 'Address' +#. Label of the contact_details (Section Break) field in DocType 'Contact' +#. Label of the reference_section (Section Break) field in DocType 'Activity +#. Log' +#. Label of the reference_section (Section Break) field in DocType +#. 'Communication' +#. Label of the reference (Dynamic Link) field in DocType 'Permission Log' +#. Label of the section_break_6 (Section Break) field in DocType 'ToDo' +#. Label of the reference_section (Section Break) field in DocType 'Integration +#. Request' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/core/doctype/user_type/user_type_dashboard.py:5 +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:42 +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/public/js/frappe/views/interaction.js:54 +msgid "Reference" +msgstr "" + +#. Label of the date_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Reference Date" +msgstr "" + +#. Label of the datetime_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Reference Datetime" +msgstr "" + +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "" + +#. Label of the reference_name (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Reference DocName" +msgstr "" + +#. Label of the reference_doctype (Link) field in DocType 'Error Log' +#. Label of the ref_doctype (Link) field in DocType 'Submission Queue' +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Reference DocType" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26 +msgid "Reference DocType and Reference Name are required" +msgstr "" + +#. Label of the ref_docname (Dynamic Link) field in DocType 'Submission Queue' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Discussion +#. Topic' +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/website/doctype/discussion_topic/discussion_topic.json +msgid "Reference Docname" +msgstr "" + +#. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' +#. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' +#: frappe/core/doctype/communication/communication.js:143 +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/views/render_preview.js:34 +#: frappe/website/doctype/discussion_topic/discussion_topic.json +msgid "Reference Doctype" +msgstr "" + +#. Label of the reference_document (Dynamic Link) field in DocType 'Auto +#. Repeat' +#. Label of the reference_document (Data) field in DocType 'Access Log' +#. Label of the reference_doctype (Link) field in DocType 'Form Tour' +#. Label of the reference_document (Link) field in DocType 'Onboarding Step' +#. Label of the reference_document (Data) field in DocType 'Webhook Request +#. Log' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:4 +#: frappe/core/doctype/access_log/access_log.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Reference Document" +msgstr "" + +#. Label of the reference_docname (Dynamic Link) field in DocType 'Document +#. Share Key' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Integration +#. Request' +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Reference Document Name" +msgstr "" + +#. Label of the reference_doctype (Link) field in DocType 'Auto Repeat' +#. Label of the reference_doctype (Link) field in DocType 'Activity Log' +#. Label of the reference_doctype (Link) field in DocType 'Comment' +#. Label of the reference_doctype (Link) field in DocType 'Communication' +#. Label of the parent (Data) field in DocType 'Custom DocPerm' +#. Label of the ref_doctype (Data) field in DocType 'Custom Role' +#. Label of the reference_doctype (Link) field in DocType 'Document Share Key' +#. Label of the reference_doctype (Link) field in DocType 'Server Script' +#. Label of the ref_doctype (Link) field in DocType 'Success Action' +#. Label of the reference_doctype (Link) field in DocType 'View Log' +#. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' +#. Label of the reference_doctype (Link) field in DocType 'Event Participants' +#. Label of the reference_doctype (Link) field in DocType 'Kanban Board' +#. Label of the reference_doctype (Link) field in DocType 'List Filter' +#. Label of the reference_doctype (Link) field in DocType 'Email Queue' +#. Label of the reference_doctype (Link) field in DocType 'Email Unsubscribe' +#. Label of the reference_doctype (Link) field in DocType 'Integration Request' +#. Label of the reference_doctype (Link) field in DocType 'Portal Menu Item' +#. Label of the reference_doctype (Link) field in DocType 'Workflow Action' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/success_action/success_action.json +#: frappe/core/doctype/view_log/view_log.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/event_participants/event_participants.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Reference Document Type" +msgstr "" + +#. Label of the reference_name (Dynamic Link) field in DocType 'Activity Log' +#. Label of the reference_name (Dynamic Link) field in DocType 'Comment' +#. Label of the reference_name (Dynamic Link) field in DocType 'Communication' +#. Label of the docname (Data) field in DocType 'Data Import Log' +#. Label of the reference_name (Data) field in DocType 'Error Log' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event +#. Participants' +#. Label of the reference_name (Dynamic Link) field in DocType 'ToDo' +#. Label of the reference_name (Dynamic Link) field in DocType 'Email +#. Unsubscribe' +#. Label of the reference_name (Dynamic Link) field in DocType 'Workflow +#. Action' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.js:152 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/desk/doctype/event_participants/event_participants.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Reference Name" +msgstr "" + +#. Label of the reference_owner (Read Only) field in DocType 'Activity Log' +#. Label of the reference_owner (Data) field in DocType 'Comment' +#. Label of the reference_owner (Read Only) field in DocType 'Communication' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +msgid "Reference Owner" +msgstr "" + +#. Label of the reference_report (Data) field in DocType 'Report' +#. Label of the reference_report (Link) field in DocType 'Onboarding Step' +#. Label of the reference_report (Data) field in DocType 'Auto Email Report' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Reference Report" +msgstr "" + +#. Label of the reference_type (Link) field in DocType 'Permission Log' +#. Label of the reference_type (Link) field in DocType 'ToDo' +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/desk/doctype/todo/todo.json +msgid "Reference Type" +msgstr "" + +#. Label of the reference_name (Dynamic Link) field in DocType 'View Log' +#: frappe/core/doctype/view_log/view_log.json +msgid "Reference name" +msgstr "" + +#: frappe/templates/emails/auto_reply.html:3 +msgid "Reference: {0} {1}" +msgstr "" + +#. Label of the referrer (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:37 +msgid "Referrer" +msgstr "" + +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 +#: frappe/public/js/frappe/form/form.js:1201 +#: frappe/public/js/frappe/form/templates/print_layout.html:6 +#: frappe/public/js/frappe/list/base_list.js:66 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 +#: frappe/public/js/frappe/widgets/chart_widget.js:291 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 +#: frappe/public/js/print_format_builder/Preview.vue:24 +msgid "Refresh" +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:177 +msgid "Refresh All" +msgstr "" + +#. Label of the refresh_google_sheet (Button) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Refresh Google Sheet" +msgstr "" + +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + +#. Label of the refresh_token (Password) field in DocType 'Google Calendar' +#. Label of the refresh_token (Password) field in DocType 'Google Contacts' +#. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' +#. Label of the refresh_token (Password) field in DocType 'Token Cache' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Refresh Token" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:536 +msgctxt "Document count in list view" +msgid "Refreshing" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.js:57 +#: frappe/core/doctype/user/user.js:362 +#: frappe/desk/page/setup_wizard/setup_wizard.js:211 +msgid "Refreshing..." +msgstr "" + +#: frappe/core/doctype/user/user.py:1036 +msgid "Registered but disabled" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/translation/translation.json +msgid "Rejected" +msgstr "" + +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:30 +msgid "Relay Server URL missing" +msgstr "" + +#. Label of the section_break_qgjr (Section Break) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Relay Settings" +msgstr "" + +#. Group in Package's connections +#: frappe/core/doctype/package/package.json +msgid "Release" +msgstr "" + +#. Label of the release_notes (Markdown Editor) field in DocType 'Package +#. Release' +#: frappe/core/doctype/package_release/package_release.json +msgid "Release Notes" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:48 +#: frappe/core/doctype/communication/communication.js:159 +msgid "Relink" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:138 +msgid "Relink Communication" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Relinked" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py +#: frappe/public/js/frappe/form/toolbar.js:447 +msgid "Reload" +msgstr "" + +#: frappe/public/js/frappe/form/controls/attach.js:16 +msgid "Reload File" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:249 +msgid "Reload List" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:100 +msgid "Reload Report" +msgstr "" + +#. Label of the remember_last_selected_value (Check) field in DocType +#. 'DocField' +#. Label of the remember_last_selected_value (Check) field in DocType +#. 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Remember Last Selected Value" +msgstr "" + +#. Label of the remind_at (Datetime) field in DocType 'Reminder' +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/public/js/frappe/form/reminders.js:33 +msgid "Remind At" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:479 +msgid "Remind Me" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:13 +msgid "Remind Me In" +msgstr "" + +#. Name of a DocType +#: frappe/automation/doctype/reminder/reminder.json +msgid "Reminder" +msgstr "" + +#: frappe/automation/doctype/reminder/reminder.py:39 +msgid "Reminder cannot be created in past." +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:96 +msgid "Reminder set at {0}" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:14 +#: frappe/public/js/frappe/ui/filters/edit_filter.html:4 +#: frappe/public/js/frappe/ui/group_by/group_by.html:4 +msgid "Remove" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:8 +msgid "Remove Failed Jobs" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:493 +msgid "Remove Field" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:427 +msgid "Remove Section" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:138 +msgid "Remove all customizations?" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:286 +msgid "Remove all fields in the column" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:278 +#: frappe/public/js/frappe/utils/datatable.js:9 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:120 +msgid "Remove column" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:260 +msgid "Remove field" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:279 +msgid "Remove last column" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:130 +msgid "Remove page break" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:266 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:135 +msgid "Remove section" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:140 +msgid "Remove tab" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Removed" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:137 +#: frappe/public/js/frappe/form/toolbar.js:254 +#: frappe/public/js/frappe/form/toolbar.js:258 +#: frappe/public/js/frappe/form/toolbar.js:435 +#: frappe/public/js/frappe/model/model.js:723 +#: frappe/public/js/frappe/views/treeview.js:311 +msgid "Rename" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:116 +#: frappe/custom/doctype/custom_field/custom_field.js:136 +msgid "Rename Fieldname" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:710 +msgid "Rename {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:699 +msgid "Renamed files and replaced code in controllers, please check!" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:17 +msgid "Render labels to the left and values to the right in this section" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:43 +#: frappe/desk/doctype/todo/todo.js:36 +msgid "Reopen" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:547 +msgid "Repeat" +msgstr "" + +#. Label of the repeat_header_footer (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Repeat Header and Footer" +msgstr "" + +#. Label of the repeat_on (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat On" +msgstr "" + +#. Label of the repeat_till (Date) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat Till" +msgstr "" + +#. Label of the repeat_on_day (Int) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Repeat on Day" +msgstr "" + +#. Label of the repeat_on_days (Table) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Repeat on Days" +msgstr "" + +#. Label of the repeat_on_last_day (Check) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Repeat on Last Day of the Month" +msgstr "" + +#. Label of the repeat_this_event (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat this Event" +msgstr "" + +#: frappe/utils/password_strength.py:110 +msgid "Repeats like \"aaa\" are easy to guess" +msgstr "" + +#: frappe/utils/password_strength.py:105 +msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\"" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151 +msgid "Repeats {0}" +msgstr "" + +#: frappe/core/doctype/role_replication/role_replication.js:7 +#: frappe/core/doctype/role_replication/role_replication.js:14 +msgid "Replicate" +msgstr "" + +#: frappe/core/doctype/role_replication/role_replication.js:8 +msgid "Replicating..." +msgstr "" + +#: frappe/core/doctype/role_replication/role_replication.js:13 +msgid "Replication completed." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Contact' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.json +msgid "Replied" +msgstr "" + +#. Label of the reply (Text Editor) field in DocType 'Discussion Reply' +#: frappe/core/doctype/communication/communication.js:57 +#: frappe/public/js/frappe/form/footer/form_timeline.js:563 +#: frappe/website/doctype/discussion_reply/discussion_reply.json +msgid "Reply" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:62 +msgid "Reply All" +msgstr "" + +#. Label of the report (Check) field in DocType 'Custom DocPerm' +#. Label of the report (Link) field in DocType 'Custom Role' +#. Label of the report (Check) field in DocType 'DocPerm' +#. Name of a DocType +#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for +#. Page and Report' +#. Label of the report (Link) field in DocType 'Role Permission for Page and +#. Report' +#. Label of a Link in the Build Workspace +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'Type' (Select) field in DocType 'Number Card' +#. Label of the background_jobs_tab (Tab Break) field in DocType 'System Health +#. Report' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:8 +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:104 +#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/request.js:616 +#: frappe/public/js/frappe/utils/utils.js:923 +msgid "Report" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/list/list_view_select.js:66 +msgid "Report Builder" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/report_column/report_column.json +msgid "Report Column" +msgstr "" + +#. Label of the report_description (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Report Description" +msgstr "" + +#: frappe/core/doctype/report/report.py:151 +msgid "Report Document Error" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/report_filter/report_filter.json +msgid "Report Filter" +msgstr "" + +#. Label of the report_filters (Section Break) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Report Filters" +msgstr "" + +#. Label of the report_hide (Check) field in DocType 'DocField' +#. Label of the report_hide (Check) field in DocType 'Custom Field' +#. Label of the report_hide (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Report Hide" +msgstr "" + +#. Label of the report_information_section (Section Break) field in DocType +#. 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Report Information" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/report/report.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Report Manager" +msgstr "" + +#. Label of the report_name (Data) field in DocType 'Access Log' +#. Label of the report_name (Data) field in DocType 'Prepared Report' +#. Label of the report_name (Data) field in DocType 'Report' +#. Label of the report_name (Link) field in DocType 'Dashboard Chart' +#. Label of the report_name (Link) field in DocType 'Number Card' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/views/reports/query_report.js:1973 +msgid "Report Name" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:70 +msgid "Report Name, Report Field and Fucntion are required to create a number card" +msgstr "" + +#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Link' +#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Report Ref DocType" +msgstr "" + +#. Label of the report_reference_doctype (Data) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Report Reference Doctype" +msgstr "" + +#. Label of the report_type (Select) field in DocType 'Report' +#. Label of the report_type (Data) field in DocType 'Onboarding Step' +#. Label of the report_type (Read Only) field in DocType 'Auto Email Report' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Report Type" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:203 +msgid "Report View" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:26 +msgid "Report bug" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1823 +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" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 +#: frappe/desk/doctype/number_card/number_card.js:189 +msgid "Report has no numeric fields, please change the Report Name" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1021 +msgid "Report initiated, click to view status" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 +msgid "Report limit reached" +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.py:223 +msgid "Report timed out." +msgstr "" + +#: frappe/desk/query_report.py:651 +msgid "Report updated successfully" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1359 +msgid "Report was not saved (there were errors)" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2011 +msgid "Report with more than 10 columns looks better in Landscape mode." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 +msgid "Report {0}" +msgstr "" + +#: frappe/desk/reportview.py:365 +msgid "Report {0} deleted" +msgstr "" + +#: frappe/desk/query_report.py:54 +msgid "Report {0} is disabled" +msgstr "" + +#: frappe/desk/reportview.py:342 +msgid "Report {0} saved" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:20 +msgid "Report:" +msgstr "" + +#. Label of the prepared_report_section (Section Break) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 +msgid "Reports" +msgstr "" + +#: frappe/patches/v14_0/update_workspace2.py:50 +msgid "Reports & Masters" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:937 +msgid "Reports already in Queue" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/user/user.json +msgid "Represents a User in the system." +msgstr "" + +#. Description of a DocType +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Represents the states allowed in one document and role assigned to change the state." +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.js:101 +msgid "Request Body" +msgstr "" + +#. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json +msgid "Request Data" +msgstr "" + +#. Label of the request_description (Data) field in DocType 'Integration +#. Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Request Description" +msgstr "" + +#. Label of the request_headers (Code) field in DocType 'Recorder' +#. Label of the request_headers (Code) field in DocType 'Integration Request' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Request Headers" +msgstr "" + +#. Label of the request_id (Data) field in DocType 'Integration Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Request ID" +msgstr "" + +#. Label of the rate_limit_count (Int) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Request Limit" +msgstr "" + +#. Label of the request_method (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request Method" +msgstr "" + +#. Label of the request_structure (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request Structure" +msgstr "" + +#: frappe/public/js/frappe/request.js:231 +msgid "Request Timed Out" +msgstr "" + +#. Label of the timeout (Int) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/public/js/frappe/request.js:244 +msgid "Request Timeout" +msgstr "" + +#. Label of the request_url (Small Text) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request URL" +msgstr "" + +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + +#. Label of the requested_numbers (Code) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "Requested Numbers" +msgstr "" + +#. Label of the require_trusted_certificate (Select) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Require Trusted Certificate" +msgstr "" + +#. Description of the 'LDAP search path for Groups' (Data) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Requires any valid fdn path. i.e. ou=groups,dc=example,dc=com" +msgstr "" + +#. Description of the 'LDAP search path for Users' (Data) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Requires any valid fdn path. i.e. ou=users,dc=example,dc=com" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:279 +msgid "Res: {0}" +msgstr "" + +#: frappe/desk/doctype/form_tour/form_tour.js:101 +#: frappe/desk/doctype/global_search_settings/global_search_settings.js:19 +#: frappe/desk/doctype/module_onboarding/module_onboarding.js:17 +#: frappe/website/doctype/portal_settings/portal_settings.js:19 +msgid "Reset" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:136 +msgid "Reset All Customizations" +msgstr "" + +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:21 +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:37 +msgid "Reset Changes" +msgstr "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:306 +msgid "Reset Chart" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:39 +msgid "Reset Dashboard Customizations" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:228 +msgid "Reset Fields" +msgstr "" + +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 +msgid "Reset LDAP Password" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:128 +msgid "Reset Layout" +msgstr "" + +#: frappe/core/doctype/user/user.js:223 +msgid "Reset OTP Secret" +msgstr "" + +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 +#: frappe/www/me.html:48 frappe/www/update-password.html:3 +#: frappe/www/update-password.html:32 +msgid "Reset Password" +msgstr "" + +#. Label of the reset_password_key (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Reset Password Key" +msgstr "" + +#. Label of the reset_password_link_expiry_duration (Duration) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Reset Password Link Expiry Duration" +msgstr "" + +#. Label of the reset_password_template (Link) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Reset Password Template" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:116 +msgid "Reset Permissions for {0}?" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:114 +msgid "Reset To Default" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:8 +msgid "Reset sorting" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:434 +msgid "Reset to default" +msgstr "" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19 +msgid "Reset to defaults" +msgstr "" + +#: frappe/templates/emails/password_reset.html:3 +msgid "Reset your password" +msgstr "" + +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "" + +#. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' +#. Label of the response_section (Section Break) field in DocType 'Integration +#. Request' +#. Label of the response (Code) field in DocType 'Webhook Request Log' +#: frappe/email/doctype/email_template/email_template.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Response" +msgstr "" + +#. Label of the response_type (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Response Type" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:414 +msgid "Rest of the day" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.js:11 +#: frappe/core/doctype/deleted_document/deleted_document_list.js:48 +msgid "Restore" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:509 +msgid "Restore Original Permissions" +msgstr "" + +#: frappe/website/doctype/portal_settings/portal_settings.js:20 +msgid "Restore to default settings?" +msgstr "" + +#. Label of the restored (Check) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Restored" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:74 +msgid "Restoring Deleted Document" +msgstr "" + +#. Label of the restrict_ip (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Restrict IP" +msgstr "" + +#. Label of the restrict_to_domain (Link) field in DocType 'DocType' +#. Label of the restrict_to_domain (Link) field in DocType 'Module Def' +#. Label of the restrict_to_domain (Link) field in DocType 'Page' +#. Label of the restrict_to_domain (Link) field in DocType 'Role' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/page/page.json frappe/core/doctype/role/role.json +msgid "Restrict To Domain" +msgstr "" + +#. Label of the restrict_to_domain (Link) field in DocType 'Workspace' +#. Label of the restrict_to_domain (Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Restrict to Domain" +msgstr "" + +#. Description of the 'Restrict IP' (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:199 +msgctxt "Title of message showing restrictions in list view" +msgid "Restrictions" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:382 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:397 +msgid "Result" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:27 +msgid "Resume Sending" +msgstr "" + +#. Label of the retry (Int) field in DocType 'Email Queue' +#: frappe/core/doctype/data_import/data_import.js:110 +#: frappe/desk/page/setup_wizard/setup_wizard.js:297 +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Retry" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:47 +msgid "Retry Sending" +msgstr "" + +#: frappe/www/qrcode.html:15 +msgid "Return to the Verification screen and enter the code displayed by your authentication app" +msgstr "" + +#. Label of the reverse (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Reverse Icon Color" +msgstr "" + +#: frappe/database/schema.py:165 +msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." +msgstr "" + +#. Label of the revocation_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Revocation URI" +msgstr "" + +#: frappe/www/third_party_apps.html:47 +msgid "Revoke" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token' +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "Revoked" +msgstr "" + +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json +msgid "Rich Text" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Align' (Select) field in DocType 'Letter Head' +#. Option for the 'Text Align' (Select) field in DocType 'Web Page' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Right" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:484 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:156 +msgctxt "alignment" +msgid "Right" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Right Bottom" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Right Center" +msgstr "" + +#. Label of the robots_txt (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Robots.txt" +msgstr "" + +#. Label of the role (Link) field in DocType 'Custom DocPerm' +#. Label of the roles (Table) field in DocType 'Custom Role' +#. Label of the role (Link) field in DocType 'DocPerm' +#. Label of the role (Link) field in DocType 'Has Role' +#. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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' +#. Label of the role (Link) field in DocType 'Portal Menu Item' +#. Label of the role (Link) field in DocType 'Workflow Action Permitted Role' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/has_role/has_role.json +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type/user_type.py:110 +#: frappe/core/page/permission_manager/permission_manager.js:219 +#: frappe/core/page/permission_manager/permission_manager.js:456 +#: frappe/core/workspace/users/users.json +#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json +msgid "Role" +msgstr "" + +#: frappe/core/doctype/role/role.js:8 +msgid "Role 'All' will be given to all system + website users." +msgstr "" + +#: frappe/core/doctype/role/role.js:13 +msgid "Role 'Desk User' will be given to all system users." +msgstr "" + +#. Label of the role_name (Data) field in DocType 'Role' +#. Label of the role_profile (Data) field in DocType 'Role Profile' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/role_profile/role_profile.json +msgid "Role Name" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/workspace/users/users.json +msgid "Role Permission for Page and Report" +msgstr "" + +#. Label of the permissions_section (Section Break) field in DocType 'User +#. Document Type' +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/public/js/frappe/roles_editor.js:114 +msgid "Role Permissions" +msgstr "" + +#. Label of a Link in the Users Workspace +#: frappe/core/page/permission_manager/permission_manager.js:4 +#: frappe/core/workspace/users/users.json +msgid "Role Permissions Manager" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1935 +msgctxt "Button in list view menu" +msgid "Role Permissions Manager" +msgstr "" + +#. Name of a DocType +#. Label of the role_profile_name (Link) field in DocType 'User' +#. Label of the role_profile (Link) field in DocType 'User Role Profile' +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_role_profile/user_role_profile.json +#: frappe/core/workspace/users/users.json +msgid "Role Profile" +msgstr "" + +#. Label of the role_profiles (Table MultiSelect) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Role Profiles" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/role_replication/role_replication.json +msgid "Role Replication" +msgstr "" + +#. Label of the role_and_level (Section Break) field in DocType 'Custom +#. DocPerm' +#. Label of the role_and_level (Section Break) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +msgid "Role and Level" +msgstr "" + +#: frappe/core/doctype/user/user.py:365 +msgid "Role has been set as per the user type {0}" +msgstr "" + +#. Label of the roles (Table) field in DocType 'Page' +#. Label of the roles (Table) field in DocType 'Report' +#. Label of the roles (Table) field in DocType 'Role Permission for Page and +#. Report' +#. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' +#. Label of the roles_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Label of the roles (Table) field in DocType 'Custom HTML Block' +#. Label of the roles (Table) field in DocType 'Dashboard Chart' +#. Label of the roles (Table) field in DocType 'Workspace' +#. Label of the roles_tab (Tab Break) field in DocType 'Workspace' +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/core/page/permission_manager/permission_manager.js:66 +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/workspace/workspace.json +msgid "Roles" +msgstr "" + +#. Label of the roles_permissions_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Roles & Permissions" +msgstr "" + +#. Label of the roles (Table) field in DocType 'Role Profile' +#. Label of the roles (Table) field in DocType 'User' +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/user/user.json +msgid "Roles Assigned" +msgstr "" + +#. Label of the roles_html (HTML) field in DocType 'Role Profile' +#. Label of the roles_html (HTML) field in DocType 'User' +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/user/user.json +msgid "Roles HTML" +msgstr "" + +#. Label of the roles_html (HTML) field in DocType 'Role Permission for Page +#. and Report' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgid "Roles Html" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:7 +msgid "Roles can be set for users from their User page." +msgstr "" + +#: frappe/utils/nestedset.py:293 +msgid "Root {0} cannot be deleted" +msgstr "" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Round Robin" +msgstr "" + +#. Label of the rounding_method (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Rounding Method" +msgstr "" + +#. Label of the route (Data) field in DocType 'DocType' +#. Option for the 'Action Type' (Select) field in DocType 'DocType Action' +#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' +#. Label of the route (Data) field in DocType 'Navbar Item' +#. Label of the route (Data) field in DocType 'DocType Layout' +#. Label of the route (Data) field in DocType 'Route History' +#. Label of the route (Data) field in DocType 'Help Article' +#. Label of the route (Data) field in DocType 'Help Category' +#. Label of the route (Data) field in DocType 'Portal Menu Item' +#. Label of the route (Data) field in DocType 'Web Form' +#. Label of the route (Data) field in DocType 'Web Page' +#. Label of the route (Data) field in DocType 'Website Sidebar Item' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/route_history/route_history.json +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Route" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/route_history/route_history.json +msgid "Route History" +msgstr "" + +#. Label of the route_redirects (Table) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Route Redirects" +msgstr "" + +#. Description of the 'Home Page' (Data) field in DocType 'Role' +#: frappe/core/doctype/role/role.json +msgid "Route: Example \"/app\"" +msgstr "" + +#: frappe/model/base_document.py:909 frappe/model/document.py:779 +msgid "Row" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:74 +msgid "Row #" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 +msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" +msgstr "" + +#: frappe/model/base_document.py:1039 +msgid "Row #{0}:" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:492 +msgid "Row #{}: Fieldname is required" +msgstr "" + +#. Label of the row_format (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Row Format" +msgstr "" + +#. Label of the row_indexes (Code) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import_log/data_import_log.json +msgid "Row Indexes" +msgstr "" + +#. Label of the row_name (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Row Name" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:483 +msgid "Row Number" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:69 +msgid "Row Values Changed" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:367 +msgid "Row {0}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:357 +msgid "Row {0}: Not allowed to disable Mandatory for standard fields" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:346 +msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" +msgstr "" + +#. Label of the rows_added_section (Section Break) field in DocType 'Audit +#. Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/version/version_view.html:33 +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 +msgid "Rows Removed" +msgstr "" + +#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Rows Threshold for Grid Search" +msgstr "" + +#. Label of the rule (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Rule" +msgstr "" + +#. Label of the section_break_3 (Section Break) field in DocType 'Document +#. Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Rule Conditions" +msgstr "" + +#: frappe/permissions.py:675 +msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." +msgstr "" + +#. Group in DocType's connections +#: frappe/core/doctype/doctype/doctype.json +msgid "Rules" +msgstr "" + +#. Description of the 'Transitions' (Table) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Rules defining transition of state in the workflow." +msgstr "" + +#. Description of the 'Transition Rules' (Section Break) field in DocType +#. 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Rules for how states are transitions, like next state and which role is allowed to change state etc." +msgstr "" + +#. Description of the 'Priority' (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Rules with higher priority number will be applied first." +msgstr "" + +#. Label of the dormant_days (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Run Jobs only Daily if Inactive For (Days)" +msgstr "" + +#. Description of the 'Enable Scheduled Jobs' (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Run scheduled jobs only if checked" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 +msgid "Runtime in Minutes" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 +msgid "Runtime in Seconds" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Two Factor Authentication method' (Select) field in DocType +#. 'System Settings' +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/email/doctype/notification/notification.json +msgid "SMS" +msgstr "" + +#. Label of the sms_gateway_url (Small Text) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "SMS Gateway URL" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/sms_log/sms_log.json +msgid "SMS Log" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/sms_parameter/sms_parameter.json +msgid "SMS Parameter" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/core/doctype/sms_settings/sms_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "SMS Settings" +msgstr "" + +#: frappe/core/doctype/sms_settings/sms_settings.py:114 +msgid "SMS sent successfully" +msgstr "" + +#: frappe/templates/includes/login/login.js:369 +msgid "SMS was not sent. Please contact Administrator." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:212 +msgid "SMTP Server is required" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "SQL" +msgstr "" + +#. Description of the 'Condition' (Small Text) field in DocType 'Bulk Update' +#: frappe/desk/doctype/bulk_update/bulk_update.json +msgid "SQL Conditions. Example: status=\"Open\"" +msgstr "" + +#. Label of the sql_explain_html (HTML) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder/recorder.js:85 +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "SQL Explain" +msgstr "" + +#. Label of the sql_output (HTML) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "SQL Output" +msgstr "" + +#. Label of the sql_queries (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "SQL Queries" +msgstr "" + +#. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "SSL/TLS Mode" +msgstr "" + +#: frappe/public/js/frappe/color_picker/color_picker.js:20 +msgid "SWATCHES" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Sales Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Sales Master Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Sales User" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Salesforce" +msgstr "" + +#. Label of the salutation (Link) field in DocType 'Contact' +#. Name of a DocType +#. Label of the salutation (Data) field in DocType 'Salutation' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/salutation/salutation.json +msgid "Salutation" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:113 +msgid "Same Field is entered more than once" +msgstr "" + +#. Label of the sample (HTML) field in DocType 'Client Script' +#: frappe/custom/doctype/client_script/client_script.json +msgid "Sample" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the saturday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Saturday" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/data_import/data_import.js:113 +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/page/print/print.js:898 +#: 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/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 +#: frappe/public/js/frappe/utils/common.js:443 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 +#: frappe/public/js/frappe/views/workspace/workspace.js:335 +#: frappe/public/js/frappe/widgets/base_widget.js:142 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:120 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:15 +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:33 +msgid "Save" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:143 +msgid "Save Anyway" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 +msgid "Save As" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:63 +msgid "Save Customizations" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1968 +msgid "Save Report" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 +msgid "Save filters" +msgstr "" + +#. Label of the save_on_complete (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Save on Completion" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:295 +msgid "Save the document." +msgstr "" + +#: frappe/model/rename_doc.py:106 +#: frappe/printing/page/print_format_builder/print_format_builder.js:858 +#: frappe/public/js/frappe/form/toolbar.js:286 +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 +#: frappe/public/js/frappe/views/workspace/workspace.js:684 +msgid "Saved" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.html:88 +msgid "Saved Filters" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:41 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47 +#: frappe/public/js/frappe/views/workspace/workspace.js:348 +msgid "Saving" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:9 +msgctxt "Freeze message while saving a document" +msgid "Saving" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:411 +msgid "Saving Customization..." +msgstr "" + +#: frappe/desk/doctype/module_onboarding/module_onboarding.js:8 +msgid "Saving this will export this document as well as the steps linked here as json." +msgstr "" + +#: frappe/public/js/form_builder/store.js:233 +#: frappe/public/js/print_format_builder/store.js:36 +#: frappe/public/js/workflow_builder/store.js:73 +msgid "Saving..." +msgstr "" + +#: frappe/public/js/frappe/scanner/index.js:72 +msgid "Scan QRCode" +msgstr "" + +#: frappe/www/qrcode.html:14 +msgid "Scan the QR Code and enter the resulting code displayed." +msgstr "" + +#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Schedule" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:97 +msgid "Schedule Send At" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +msgid "Scheduled" +msgstr "" + +#. Label of the scheduled_against (Link) field in DocType 'Scheduler Event' +#: frappe/core/doctype/scheduler_event/scheduler_event.json +msgid "Scheduled Against" +msgstr "" + +#. Label of the scheduled_job_type (Link) field in DocType 'Scheduled Job Log' +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +msgid "Scheduled Job" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +msgid "Scheduled Job Log" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#. Label of the scheduled_job_type (Link) field in DocType 'System Health +#. Report Failing Jobs' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json +msgid "Scheduled Job Type" +msgstr "" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Scheduled Jobs Logs" +msgstr "" + +#: frappe/core/doctype/server_script/server_script.py:150 +msgid "Scheduled execution for script {0} has updated" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.js:26 +msgid "Scheduled to send" +msgstr "" + +#. Label of the scheduler_section (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Scheduler" +msgstr "" + +#. Label of the scheduler_event (Link) field in DocType 'Scheduled Job Type' +#. Name of a DocType +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/scheduler_event/scheduler_event.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Scheduler Event" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.py:107 +msgid "Scheduler Inactive" +msgstr "" + +#. Label of the scheduler_status (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Scheduler Status" +msgstr "" + +#: frappe/utils/scheduler.py:247 +msgid "Scheduler can not be re-enabled when maintenance mode is active." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.py:107 +msgid "Scheduler is inactive. Cannot import data." +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:19 +msgid "Scheduler: Active" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:21 +msgid "Scheduler: Inactive" +msgstr "" + +#. Label of the scope (Data) field in DocType 'OAuth Scope' +#: frappe/integrations/doctype/oauth_scope/oauth_scope.json +msgid "Scope" +msgstr "" + +#. Label of the sb_scope_section (Section Break) field in DocType 'Connected +#. App' +#. Label of the scopes (Table) field in DocType 'Connected App' +#. Label of the scopes (Text) field in DocType 'OAuth Authorization Code' +#. Label of the scopes (Text) field in DocType 'OAuth Bearer Token' +#. Label of the scopes (Text) field in DocType 'OAuth Client' +#. Label of the scopes (Table) field in DocType 'Token Cache' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Scopes" +msgstr "" + +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "" + +#. Label of the report_script (Code) field in DocType 'Report' +#. Label of the script (Code) field in DocType 'Server Script' +#. Label of the script (Code) field in DocType 'Client Script' +#. Label of the script (Code) field in DocType 'Console Log' +#. Label of the custom_javascript (Section Break) field in DocType 'Web Page' +#. Label of the custom_js_section (Tab Break) field in DocType 'Website Theme' +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/desk/doctype/console_log/console_log.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Script" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/server_script/server_script.json +msgid "Script Manager" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Script Report" +msgstr "" + +#. Label of the script_type (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Script Type" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/website_script/website_script.json +msgid "Script to attach to all web pages." +msgstr "" + +#. Label of a Card Break in the Build Workspace +#. Label of the scripting_tab (Tab Break) field in DocType 'Web Page' +#: frappe/core/workspace/build/build.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Scripting" +msgstr "" + +#. Label of the section_break_6 (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Scripting / Style" +msgstr "" + +#. Label of the scripts_section (Section Break) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Scripts" +msgstr "" + +#. Label of the search_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/public/js/frappe/form/link_selector.js:46 +#: frappe/public/js/frappe/list/list_sidebar.html:69 +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20 +#: frappe/public/js/frappe/ui/toolbar/search.js:49 +#: frappe/public/js/frappe/ui/toolbar/search.js:68 +#: frappe/templates/discussions/search.html:2 +#: frappe/templates/includes/search_template.html:26 +msgid "Search" +msgstr "" + +#. Label of the search_bar (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Search Bar" +msgstr "" + +#. Label of the search_fields (Data) field in DocType 'DocType' +#. Label of the search_fields (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Search Fields" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:186 +msgid "Search Help" +msgstr "" + +#. Label of the allowed_in_global_search (Table) field in DocType 'Global +#. Search Settings' +#: frappe/desk/doctype/global_search_settings/global_search_settings.json +msgid "Search Priorities" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:132 +msgid "Search Results" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:13 +msgid "Search by filename or extension" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1468 +msgid "Search field {0} is not valid" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:87 +msgid "Search fields" +msgstr "" + +#: frappe/public/js/form_builder/components/AddFieldButton.vue:19 +msgid "Search fieldtypes..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:50 +#: frappe/public/js/frappe/ui/toolbar/search.js:69 +msgid "Search for anything" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:300 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:306 +msgid "Search for {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:166 +msgid "Search in a document type" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:29 +msgid "Search or type a command ({0})" +msgstr "" + +#: frappe/public/js/form_builder/components/SearchBox.vue:8 +msgid "Search properties..." +msgstr "" + +#: frappe/templates/includes/search_box.html:8 +msgid "Search results for" +msgstr "" + +#: frappe/templates/includes/navbar/navbar_search.html:6 +#: frappe/templates/includes/search_box.html:2 +#: frappe/templates/includes/search_template.html:23 +msgid "Search..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:210 +msgid "Searching ..." +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#: frappe/public/js/form_builder/components/Section.vue:263 +#: frappe/website/doctype/web_template/web_template.json +msgid "Section" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Section Break" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:421 +msgid "Section Heading" +msgstr "" + +#. Label of the section_id (Data) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Section ID" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:28 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:8 +msgid "Section Title" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:217 +#: frappe/public/js/form_builder/components/Section.vue:240 +msgid "Section must have at least one column" +msgstr "" + +#. Label of the sb3 (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Security Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:309 +msgid "See all Activity" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:863 +msgid "See all past reports." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1235 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4 +msgid "See on Website" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:160 +msgctxt "Button in web form" +msgid "See previous responses" +msgstr "" + +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:49 +msgid "See the document at {0}" +msgstr "" + +#. Label of the seen (Check) field in DocType 'Comment' +#. Label of the seen (Check) field in DocType 'Communication' +#. Label of the seen (Check) field in DocType 'Error Log' +#. Label of the seen (Check) field in DocType 'Notification Settings' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/error_log/error_log_list.js:5 +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Seen" +msgstr "" + +#. Label of the seen_by_section (Section Break) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Seen By" +msgstr "" + +#. Label of the seen_by (Table) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Seen By Table" +msgstr "" + +#. Label of the select (Check) field in DocType 'Custom DocPerm' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the select (Check) field in DocType 'DocPerm' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/printing/page/print/print.js:642 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Select" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:149 +#: frappe/public/js/frappe/form/controls/multicheck.js:166 +#: frappe/public/js/frappe/form/grid_row.js:498 +msgid "Select All" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:601 +#: frappe/public/js/frappe/views/interaction.js:93 +#: frappe/public/js/frappe/views/interaction.js:155 +msgid "Select Attachments" +msgstr "" + +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 +msgid "Select Child Table" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:388 +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 +msgid "Select Columns" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:399 +msgid "Select Country" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:415 +msgid "Select Currency" +msgstr "" + +#. Label of the dashboard_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/public/js/frappe/utils/dashboard_utils.js:240 +msgid "Select Dashboard" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Select Date Range" +msgstr "" + +#. Label of the doc_type (Link) field in DocType 'Web Form' +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:28 +#: frappe/public/js/frappe/doctype/index.js:171 +#: frappe/website/doctype/web_form/web_form.json +msgid "Select DocType" +msgstr "" + +#. Label of the reference_doctype (Link) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Select Doctype" +msgstr "" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:50 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:50 +msgid "Select Document Type" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:179 +msgid "Select Document Type or Role to start." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:34 +msgid "Select Document Types to set which User Permissions are used to limit access." +msgstr "" + +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 +#: frappe/public/js/frappe/doctype/index.js:200 +#: frappe/public/js/frappe/form/toolbar.js:838 +msgid "Select Field" +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.html:35 +#: frappe/public/js/frappe/ui/group_by/group_by.js:141 +msgid "Select Field..." +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:490 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 +msgid "Select Fields" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:147 +msgid "Select Fields To Insert" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:148 +msgid "Select Fields To Update" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:21 +msgid "Select Filters" +msgstr "" + +#: frappe/desk/doctype/event/event.py:107 +msgid "Select Google Calendar to which event should be synced." +msgstr "" + +#: frappe/contacts/doctype/contact/contact.py:77 +msgid "Select Google Contacts to which contact should be synced." +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.html:10 +msgid "Select Group By..." +msgstr "" + +#: frappe/public/js/frappe/list/list_view_select.js:185 +msgid "Select Kanban" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:391 +msgid "Select Language" +msgstr "" + +#. Label of the list_name (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select List View" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:158 +msgid "Select Mandatory" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:280 +msgid "Select Module" +msgstr "" + +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 +msgid "Select Network Printer" +msgstr "" + +#. Label of the page_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select Page" +msgstr "" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 +#: frappe/public/js/frappe/views/communication.js:160 +msgid "Select Print Format" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:82 +msgid "Select Print Format to Edit" +msgstr "" + +#. Label of the report_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select Report" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:631 +msgid "Select Table Columns for {0}" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:408 +msgid "Select Time Zone" +msgstr "" + +#. Label of the transaction_type (Autocomplete) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Select Transaction" +msgstr "" + +#: frappe/workflow/page/workflow_builder/workflow_builder.js:68 +msgid "Select Workflow" +msgstr "" + +#. Label of the workspace_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select Workspace" +msgstr "" + +#. Label of the select_workspaces_section (Section Break) field in DocType +#. 'Workspace Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Select Workspaces" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.js:23 +msgid "Select a Brand Image first." +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:108 +msgid "Select a DocType to make a new format" +msgstr "" + +#: frappe/public/js/form_builder/components/Sidebar.vue:56 +msgid "Select a field to edit its properties." +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:358 +msgid "Select a group {0} first." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1956 +msgid "Select a valid Sender Field for creating documents from Email" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1940 +msgid "Select a valid Subject field for creating documents from Email" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:321 +msgid "Select an Image" +msgstr "" + +#: frappe/www/apps.html:10 +msgid "Select an app to continue" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_start.html:2 +msgid "Select an existing format to edit or start a new format." +msgstr "" + +#. Description of the 'Brand Image' (Attach Image) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Select an image of approx width 150px with a transparent background for best results." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:36 +msgid "Select atleast 1 record for printing" +msgstr "" + +#: frappe/core/doctype/success_action/success_action.js:18 +msgid "Select atleast 2 actions" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1447 +msgctxt "Description of a list view shortcut" +msgid "Select list item" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 +msgctxt "Description of a list view shortcut" +msgid "Select multiple list items" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:167 +msgid "Select or drag across time slots to create a new event." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:239 +msgid "Select records for assignment" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:260 +msgid "Select records for removing assignment" +msgstr "" + +#. Description of the 'Insert After' (Select) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Select the label after which you want to insert new field." +msgstr "" + +#: frappe/public/js/frappe/utils/diffview.js:102 +msgid "Select two versions to view the diff." +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:24 +#: frappe/public/js/frappe/form/multi_select_dialog.js:80 +#: frappe/public/js/frappe/form/multi_select_dialog.js:282 +#: frappe/public/js/frappe/list/list_view_select.js:153 +#: frappe/public/js/print_format_builder/Preview.vue:90 +msgid "Select {0}" +msgstr "" + +#: frappe/model/workflow.py:120 +msgid "Self approval is not allowed" +msgstr "" + +#: frappe/www/contact.html:41 +msgid "Send" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:26 +msgctxt "Send Email" +msgid "Send" +msgstr "" + +#. Description of the 'Minutes Offset' (Int) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send at the earliest this number of minutes before or after the reference datetime. The actual sending may be delayed by up to 5 minutes due to the scheduler's trigger cadence." +msgstr "" + +#. Label of the send_after (Datetime) field in DocType 'Communication' +#. Label of the send_after (Datetime) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Send After" +msgstr "" + +#. Label of the event (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send Alert On" +msgstr "" + +#. Label of the send_email_alert (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Send Email Alert" +msgstr "" + +#. Label of the send_email (Check) field in DocType 'Workflow Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Send Email On State" +msgstr "" + +#. Description of the 'Send Print as PDF' (Check) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Send Email Print Attachments as PDF (Recommended)" +msgstr "" + +#. Label of the send_email_to_creator (Check) field in DocType 'Workflow +#. Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Send Email To Creator" +msgstr "" + +#. Label of the send_me_a_copy (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Send Me A Copy of Outgoing Emails" +msgstr "" + +#. Label of the send_notification_to (Small Text) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Send Notification to" +msgstr "" + +#. Label of the document_follow_notify (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Send Notifications For Documents Followed By Me" +msgstr "" + +#. Label of the thread_notify (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Send Notifications For Email Threads" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.js:21 +msgid "Send Now" +msgstr "" + +#. Label of the send_print_as_pdf (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Send Print as PDF" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:150 +msgid "Send Read Receipt" +msgstr "" + +#. Label of the send_system_notification (Check) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send System Notification" +msgstr "" + +#. Label of the send_to_all_assignees (Check) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send To All Assignees" +msgstr "" + +#. Label of the send_welcome_email (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Send Welcome Email" +msgstr "" + +#. Description of the 'Reference Date' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send alert if date matches this field's value" +msgstr "" + +#. Description of the 'Reference Datetime' (Select) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send alert if datetime matches this field's value" +msgstr "" + +#. Description of the 'Value Changed' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send alert if this field's value changes" +msgstr "" + +#. Label of the send_reminder (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Send an email reminder in the morning" +msgstr "" + +#. Description of the 'Days Before or After' (Int) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send days before or after the reference date" +msgstr "" + +#. Description of the 'Send Email On State' (Check) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Send email when document transitions to the state." +msgstr "" + +#. Description of the 'Forward To Email Address' (Data) field in DocType +#. 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Send enquiries to this email address" +msgstr "" + +#: frappe/templates/includes/login/login.js:72 frappe/www/login.html:230 +msgid "Send login link" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:144 +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 "" + +#. Label of the send_unsubscribe_message (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Send unsubscribe message in email" +msgstr "" + +#. Label of the sender (Data) field in DocType 'Event' +#. Label of the sender (Data) field in DocType 'ToDo' +#. Label of the sender (Link) field in DocType 'Auto Email Report' +#. Label of the sender (Data) field in DocType 'Email Queue' +#. Label of the sender (Link) field in DocType 'Notification' +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/notification/notification.json +msgid "Sender" +msgstr "" + +#. Label of the sender_email (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Sender Email" +msgstr "" + +#. Label of the sender_field (Data) field in DocType 'DocType' +#. Label of the sender_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Sender Email Field" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1959 +msgid "Sender Field should have Email in options" +msgstr "" + +#. Label of the sender_name (Data) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "Sender Name" +msgstr "" + +#. Label of the sender_name_field (Data) field in DocType 'DocType' +#. Label of the sender_name_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Sender Name Field" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Sendgrid" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Sending" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Sent or Received' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +msgid "Sent" +msgstr "" + +#. Label of the sent_folder_name (Data) field in DocType 'Email Account' +#. Label of the sent_folder_name (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Sent Folder Name" +msgstr "" + +#. Label of the sent_on (Date) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "Sent On" +msgstr "" + +#. Label of the read_receipt (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Sent Read Receipt" +msgstr "" + +#. Label of the sent_to (Code) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "Sent To" +msgstr "" + +#. Label of the sent_or_received (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Sent or Received" +msgstr "" + +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Sent/Received Email" +msgstr "" + +#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Separator" +msgstr "" + +#. Label of the sequence_id (Float) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Sequence Id" +msgstr "" + +#. Label of the naming_series_options (Text) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Series List for this Transaction" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:115 +msgid "Series Updated for {}" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:223 +msgid "Series counter for {} updated to {} successfully" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1110 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 +msgid "Series {0} already used in {1}" +msgstr "" + +#. Option for the 'Action Type' (Select) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json +msgid "Server Action" +msgstr "" + +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 +#: frappe/www/error.html:36 frappe/www/error.py:15 +msgid "Server Error" +msgstr "" + +#. Label of the server_ip (Data) field in DocType 'Network Printer Settings' +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Server IP" +msgstr "" + +#. Label of the server_script (Link) field in DocType 'Scheduled Job Type' +#. Name of a DocType +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/workspace/build/build.json +msgid "Server Script" +msgstr "" + +#: frappe/utils/safe_exec.py:98 +msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." +msgstr "" + +#: frappe/core/doctype/server_script/server_script.js:39 +msgid "Server Scripts feature is not available on this site." +msgstr "" + +#: frappe/public/js/frappe/request.js:254 +msgid "Server failed to process this request because of a concurrent conflicting request. Please try again." +msgstr "" + +#: frappe/public/js/frappe/request.js:246 +msgid "Server was too busy to process this request. Please try again." +msgstr "" + +#. Label of the service (Select) field in DocType 'Email Account' +#. Label of the integration_request_service (Data) field in DocType +#. 'Integration Request' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Service" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/session_default/session_default.json +msgid "Session Default" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/session_default_settings/session_default_settings.json +msgid "Session Default Settings" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#. Label of the session_defaults (Table) field in DocType 'Session Default +#. Settings' +#: frappe/core/doctype/session_default_settings/session_default_settings.json +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 +msgid "Session Defaults" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 +msgid "Session Defaults Saved" +msgstr "" + +#: frappe/app.py:376 +msgid "Session Expired" +msgstr "" + +#. Label of the session_expiry (Data) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Session Expiry (idle timeout)" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:123 +msgid "Session Expiry must be in format {0}" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 +#: frappe/public/js/frappe/widgets/chart_widget.js:447 +msgid "Set" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:607 +msgctxt "Field value is set" +msgid "Set" +msgstr "" + +#. Label of the set_banner_from_image (Button) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Set Banner from Image" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:200 +msgid "Set Chart" +msgstr "" + +#. Description of the 'Chart Options' (Code) field in DocType 'Dashboard' +#: frappe/desk/doctype/dashboard/dashboard.json +msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"])" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 +#: frappe/desk/doctype/number_card/number_card.js:384 +msgid "Set Dynamic Filters" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 +#: frappe/desk/doctype/number_card/number_card.js:292 +#: frappe/public/js/form_builder/components/Field.vue:80 +#: frappe/website/doctype/web_form/web_form.js:269 +msgid "Set Filters" +msgstr "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:436 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:105 +msgid "Set Filters for {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2121 +msgid "Set Level" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:92 +msgid "Set Limit" +msgstr "" + +#. Description of the 'Setup Series for transactions' (Section Break) field in +#. DocType 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Set Naming Series options on your transactions." +msgstr "" + +#. Label of the new_password (Password) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Set New Password" +msgstr "" + +#: frappe/desk/page/backups/backups.js:8 +msgid "Set Number of Backups" +msgstr "" + +#: frappe/www/update-password.html:32 +msgid "Set Password" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:112 +msgid "Set Permissions" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:471 +msgid "Set Properties" +msgstr "" + +#. Label of the property_section (Section Break) field in DocType +#. 'Notification' +#. Label of the set_property_after_alert (Select) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Set Property After Alert" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:207 +#: frappe/public/js/frappe/form/link_selector.js:208 +msgid "Set Quantity" +msgstr "" + +#. Label of the set_role_for (Select) field in DocType 'Role Permission for +#. Page and Report' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgid "Set Role For" +msgstr "" + +#: frappe/core/doctype/user/user.js:124 +#: frappe/core/page/permission_manager/permission_manager.js:72 +msgid "Set User Permissions" +msgstr "" + +#. Label of the value (Small Text) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Set Value" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 +msgid "Set all private" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +msgid "Set all public" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:50 +msgid "Set as Default" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.js:33 +msgid "Set as Default Theme" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Set by user" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:162 +msgid "Set dynamic filter values in JavaScript for the required fields here." +msgstr "" + +#. Description of the 'Precision' (Select) field in DocType 'Custom Field' +#. Description of the 'Precision' (Select) field in DocType 'Customize Form +#. Field' +#. Description of the 'Precision' (Select) field in DocType 'Web Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Set non-standard precision for a Float or Currency field" +msgstr "" + +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + +#. Label of the set_only_once (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set only once" +msgstr "" + +#. Description of the 'Max attachment size' (Int) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Set size in MB" +msgstr "" + +#. Description of the 'Filters Configuration' (Code) field in DocType 'Number +#. Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Set the filters here. For example:\n" +"
\n"
+"[{\n"
+"\tfieldname: \"company\",\n"
+"\tlabel: __(\"Company\"),\n"
+"\tfieldtype: \"Link\",\n"
+"\toptions: \"Company\",\n"
+"\tdefault: frappe.defaults.get_user_default(\"Company\"),\n"
+"\treqd: 1\n"
+"},\n"
+"{\n"
+"\tfieldname: \"account\",\n"
+"\tlabel: __(\"Account\"),\n"
+"\tfieldtype: \"Link\",\n"
+"\toptions: \"Account\",\n"
+"\treqd: 1\n"
+"}]\n"
+"
" +msgstr "" + +#. Description of the 'Method' (Data) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Set the path to a whitelisted function that will return the data for the number card in the format:\n\n" +"
\n"
+"{\n"
+"\t\"value\": value,\n"
+"\t\"fieldtype\": \"Currency\",\n"
+"\t\"route_options\": {\"from_date\": \"2023-05-23\"},\n"
+"\t\"route\": [\"query-report\", \"Permitted Documents For User\"]\n"
+"}
" +msgstr "" + +#: frappe/contacts/doctype/address_template/address_template.py:33 +msgid "Setting this Address Template as default as there is no other default" +msgstr "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:86 +msgid "Setting up Global Search documents." +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:285 +msgid "Setting up your system" +msgstr "" + +#. Label of the settings_tab (Tab Break) field in DocType 'DocType' +#. Label of the settings_tab (Tab Break) field in DocType 'User' +#. Group in User's connections +#. Label of a Card Break in the Integrations Workspace +#. Label of the settings_tab (Tab Break) field in DocType 'Web Form' +#. Label of the settings (Tab Break) field in DocType 'Web Page' +#. Label of a Card Break in the Website Workspace +#: frappe/core/doctype/doctype/doctype.json frappe/core/doctype/user/user.json +#: frappe/integrations/workspace/integrations/integrations.json +#: frappe/public/js/frappe/form/templates/print_layout.html:25 +#: frappe/public/js/frappe/ui/apps_switcher.js:137 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 +#: frappe/public/js/frappe/views/workspace/workspace.js:362 +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/workspace/website/website.json frappe/www/me.html:20 +msgid "Settings" +msgstr "" + +#. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Settings Dropdown" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Settings for Contact Us Page" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Settings for the About Us Page" +msgstr "" + +#. 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:576 +msgid "Setup" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:27 +msgid "Setup > Customize Form" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:8 +msgid "Setup > User" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:33 +msgid "Setup > User Permissions" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 +msgid "Setup Auto Email" +msgstr "" + +#. Label of the setup_complete (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:211 +msgid "Setup Complete" +msgstr "" + +#. Label of the setup_series (Section Break) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Setup Series for transactions" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:236 +msgid "Setup failed" +msgstr "" + +#. Label of the share (Check) field in DocType 'Custom DocPerm' +#. Label of the share (Check) field in DocType 'DocPerm' +#. Label of the share (Check) field in DocType 'DocShare' +#. Label of the share (Check) field in DocType 'User Document Type' +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/public/js/frappe/form/templates/form_sidebar.html:90 +msgid "Share" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/share.js:107 +msgid "Share With" +msgstr "" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:49 +msgid "Share this document with" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/share.js:45 +msgid "Share {0} with" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Shared" +msgstr "" + +#: frappe/desk/form/assign_to.py:132 +msgid "Shared with the following Users with Read access:{0}" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Shipping" +msgstr "" + +#: frappe/public/js/frappe/form/templates/address_list.html:31 +msgid "Shipping Address" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Shop" +msgstr "" + +#: frappe/utils/password_strength.py:91 +msgid "Short keyboard patterns are easy to guess" +msgstr "" + +#. Label of the shortcuts (Table) field in DocType 'Workspace' +#. Label of the tab_break_15 (Tab Break) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Shortcuts" +msgstr "" + +#: frappe/public/js/frappe/widgets/base_widget.js:46 +#: frappe/public/js/frappe/widgets/base_widget.js:178 +#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 +msgid "Show" +msgstr "" + +#. Label of the show_absolute_datetime_in_timeline (Check) field in DocType +#. 'System Settings' +#. Label of the show_absolute_datetime_in_timeline (Check) field in DocType +#. 'User' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +msgid "Show Absolute Datetime in Timeline" +msgstr "" + +#. Label of the absolute_value (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Show Absolute Values" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:73 +msgid "Show All" +msgstr "" + +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "" + +#: frappe/desk/doctype/calendar_view/calendar_view.js:10 +msgid "Show Calendar" +msgstr "" + +#. Label of the symbol_on_right (Check) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Show Currency Symbol on Right Side" +msgstr "" + +#. Label of the show_dashboard (Check) field in DocType 'DocField' +#. Label of the show_dashboard (Check) field in DocType 'Custom Field' +#. Label of the show_dashboard (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard/dashboard.js:6 +msgid "Show Dashboard" +msgstr "" + +#. Label of the show_document (Button) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Show Document" +msgstr "" + +#: frappe/www/error.html:42 frappe/www/error.html:65 +msgid "Show Error" +msgstr "" + +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 +msgid "Show Fieldname (click to copy on clipboard)" +msgstr "" + +#. Label of the first_document (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Show First Document Tour" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#. Label of the show_form_tour (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Show Form Tour" +msgstr "" + +#. Label of the allow_error_traceback (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show Full Error and Allow Reporting of Issues to the Developer" +msgstr "" + +#. Label of the show_full_form (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Show Full Form?" +msgstr "" + +#. Label of the show_full_number (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Show Full Number" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:234 +msgid "Show Keyboard Shortcuts" +msgstr "" + +#. Label of the show_labels (Check) field in DocType 'Kanban Board' +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:30 +msgid "Show Labels" +msgstr "" + +#. Label of the show_language_picker (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Show Language Picker" +msgstr "" + +#. Label of the line_breaks (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Show Line Breaks after Sections" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:410 +msgid "Show Links" +msgstr "" + +#. Label of the show_failed_logs (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Show Only Failed Logs" +msgstr "" + +#. Label of the show_percentage_stats (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Show Percentage Stats" +msgstr "" + +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30 +msgid "Show Permissions" +msgstr "" + +#: frappe/public/js/form_builder/form_builder.bundle.js:31 +#: frappe/public/js/form_builder/form_builder.bundle.js:43 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:18 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 +msgid "Show Preview" +msgstr "" + +#. Label of the show_preview_popup (Check) field in DocType 'DocType' +#. Label of the show_preview_popup (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Show Preview Popup" +msgstr "" + +#. Label of the show_processlist (Check) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "Show Processlist" +msgstr "" + +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "" + +#: frappe/core/doctype/error_log/error_log.js:9 +msgid "Show Related Errors" +msgstr "" + +#. Label of the show_report (Button) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/prepared_report/prepared_report.js:43 +#: frappe/core/doctype/report/report.js:16 +msgid "Show Report" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:15 +#: frappe/public/js/frappe/list/list_filter.js:94 +msgid "Show Saved" +msgstr "" + +#. Label of the show_section_headings (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Show Section Headings" +msgstr "" + +#. Label of the show_sidebar (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Show Sidebar" +msgstr "" + +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.html:77 +#: frappe/public/js/frappe/list/list_view.js:1851 +msgid "Show Tags" +msgstr "" + +#. Label of the show_title (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Show Title" +msgstr "" + +#. Label of the show_title_field_in_link (Check) field in DocType 'DocType' +#. Label of the show_title_field_in_link (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Show Title in Link Fields" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1529 +msgid "Show Totals" +msgstr "" + +#: frappe/desk/doctype/form_tour/form_tour.js:116 +msgid "Show Tour" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:448 +msgid "Show Traceback" +msgstr "" + +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:204 +msgid "Show Warnings" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:179 +msgid "Show Weekends" +msgstr "" + +#. Label of the show_account_deletion_link (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Show account deletion link in My Account page" +msgstr "" + +#: frappe/core/doctype/version/version.js:6 +msgid "Show all Versions" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:69 +msgid "Show all activity" +msgstr "" + +#. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Show as cc" +msgstr "" + +#. Label of the show_attachments (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Show attachments" +msgstr "" + +#. Label of the show_footer_on_login (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Show footer on login" +msgstr "" + +#. Description of the 'Show Full Form?' (Check) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Show full form instead of a quick entry modal" +msgstr "" + +#. Label of the document_type (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Show in Module Section" +msgstr "" + +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "" + +#. Label of the show_in_filter (Check) field in DocType 'Web Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Show in filter" +msgstr "" + +#. Label of the show_document_link (Check) field in DocType 'Slack Webhook URL' +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +msgid "Show link to document" +msgstr "" + +#. Label of the show_list (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Show list" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 +msgid "Show more details" +msgstr "" + +#. Label of the show_on_timeline (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Show on Timeline" +msgstr "" + +#. Description of the 'Stats Time Interval' (Select) field in DocType 'Number +#. Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Show percentage difference according to this time interval" +msgstr "" + +#. Label of the show_sidebar (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Show sidebar" +msgstr "" + +#. Description of the 'Title Prefix' (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Show title in browser window as \"Prefix - title\"" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:148 +msgid "Show {0} List" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:506 +msgid "Showing only Numeric fields from Report" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:153 +msgid "Showing only first {0} rows out of {1}" +msgstr "" + +#. Label of the list_sidebar (Check) field in DocType 'User' +#. Label of the form_sidebar (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Sidebar" +msgstr "" + +#. Label of the sidebar_items (Table) field in DocType 'Website Sidebar' +#: frappe/website/doctype/website_sidebar/website_sidebar.json +msgid "Sidebar Items" +msgstr "" + +#. Label of the section_break_4 (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Sidebar Settings" +msgstr "" + +#. Label of the section_break_17 (Section Break) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Sidebar and Comments" +msgstr "" + +#. Label of the sign_up_and_confirmation_section (Section Break) field in +#. DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Sign Up and Confirmation" +msgstr "" + +#: frappe/core/doctype/user/user.py:1029 +msgid "Sign Up is disabled" +msgstr "" + +#: frappe/templates/signup.html:16 frappe/www/login.html:140 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 +msgid "Sign up" +msgstr "" + +#. Label of the sign_ups (Select) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Sign ups" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the signature_section (Section Break) field in DocType 'Email +#. Account' +#. Label of the signature (Text Editor) field in DocType 'Email Account' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Signature" +msgstr "" + +#: frappe/www/login.html:168 +msgid "Signup Disabled" +msgstr "" + +#: frappe/www/login.html:169 +msgid "Signups have been disabled for this website." +msgstr "" + +#. Description of the 'Close Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "" + +#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" +msgstr "" + +#. Label of the simultaneous_sessions (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Simultaneous Sessions" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:128 +msgid "Single DocTypes cannot be customized." +msgstr "" + +#. Description of the 'Is Single' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:68 +msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" +msgstr "" + +#: frappe/database/database.py:284 +msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:370 +msgid "Size" +msgstr "" + +#. Label of the size (Float) field in DocType 'System Health Report Tables' +#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json +msgid "Size (MB)" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:82 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:18 +msgid "Skip" +msgstr "" + +#. Label of the skip_authorization (Check) field in DocType 'OAuth Client' +#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider +#. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Skip Authorization" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:332 +msgid "Skip Step" +msgstr "" + +#. Label of the skipped (Check) field in DocType 'Patch Log' +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Skipped" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:952 +msgid "Skipping Duplicate Column {0}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:977 +msgid "Skipping Untitled Column" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:963 +msgid "Skipping column {0}" +msgstr "" + +#: frappe/modules/utils.py:176 +msgid "Skipping fixture syncing for doctype {0} from file {1}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:39 +msgid "Skipping {0} of {1}, {2}" +msgstr "" + +#. Label of the skype (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Skype" +msgstr "" + +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Slack" +msgstr "" + +#. Label of the slack_webhook_url (Link) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Slack Channel" +msgstr "" + +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65 +msgid "Slack Webhook Error" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Slack Webhook URL" +msgstr "" + +#. Label of the slideshow (Link) field in DocType 'Web Page' +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Slideshow" +msgstr "" + +#. Label of the slideshow_items (Table) field in DocType 'Website Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow Items" +msgstr "" + +#. Label of the slideshow_name (Data) field in DocType 'Website Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow Name" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow like display for the website" +msgstr "" + +#. Label of the slug (Data) field in DocType 'UTM Campaign' +#. Label of the slug (Data) field in DocType 'UTM Medium' +#. Label of the slug (Data) field in DocType 'UTM Source' +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +msgid "Slug" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Small Text" +msgstr "" + +#. Label of the smallest_currency_fraction_value (Currency) field in DocType +#. 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Smallest Currency Fraction Value" +msgstr "" + +#. Description of the 'Smallest Currency Fraction Value' (Currency) field in +#. DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:32 +msgid "Snippet and more variables: {0}" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "Social Link Settings" +msgstr "" + +#. Label of the social_link_type (Select) field in DocType 'Social Link +#. Settings' +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "Social Link Type" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Social Login Key" +msgstr "" + +#. Label of the social_login_provider (Select) field in DocType 'Social Login +#. Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Social Login Provider" +msgstr "" + +#. Label of the social_logins (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Social Logins" +msgstr "" + +#. Label of the socketio_ping_check (Select) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "SocketIO Ping Check" +msgstr "" + +#. Label of the socketio_transport_mode (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "SocketIO Transport Mode" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Soft-Bounced" +msgstr "" + +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 +msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." +msgstr "" + +#. Description of the 'Sent Folder Name' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Some mailboxes require a different Sent Folder Name e.g. \"INBOX.Sent\"" +msgstr "" + +#: frappe/public/js/frappe/desk.js:20 +msgid "Some of the features might not work in your browser. Please update your browser to the latest version." +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:101 +msgid "Something went wrong" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:133 +msgid "Something went wrong during the token generation. Click on {0} to generate a new one." +msgstr "" + +#: frappe/templates/includes/login/login.js:293 +msgid "Something went wrong." +msgstr "" + +#: frappe/public/js/frappe/views/pageview.js:117 +msgid "Sorry! I could not find what you were looking for." +msgstr "" + +#: frappe/public/js/frappe/views/pageview.js:125 +msgid "Sorry! You are not permitted to view this page." +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:6 +msgid "Sort Ascending" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:7 +msgid "Sort Descending" +msgstr "" + +#. Label of the sort_field (Select) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Sort Field" +msgstr "" + +#. Label of the sort_options (Check) field in DocType 'DocField' +#. Label of the sort_options (Check) field in DocType 'Custom Field' +#. Label of the sort_options (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Sort Options" +msgstr "" + +#. Label of the sort_order (Select) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Sort Order" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1551 +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:1757 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +#: frappe/website/report/website_analytics/website_analytics.js:38 +msgid "Source" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "" + +#. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgid "Source Name" +msgstr "" + +#. Label of the source_text (Code) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +#: frappe/public/js/frappe/views/translation_manager.js:38 +msgid "Source Text" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:23 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:174 +msgid "Spacer" +msgstr "" + +#. Option for the 'Email Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Spam" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "SparkPost" +msgstr "" + +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:83 +msgid "Special Characters are not allowed" +msgstr "" + +#: frappe/model/naming.py:68 +msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}" +msgstr "" + +#. Description of the 'Timeout (In Seconds)' (Int) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Specify a custom timeout, default timeout is 1500 seconds" +msgstr "" + +#. Description of the 'Allowed embedding domains' (Small Text) field in DocType +#. 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin." +msgstr "" + +#. Label of the splash_image (Attach Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Splash Image" +msgstr "" + +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 +#: frappe/templates/print_formats/standard_macros.html:44 +msgid "Sr" +msgstr "" + +#: frappe/public/js/print_format_builder/Field.vue:143 +#: frappe/public/js/print_format_builder/Field.vue:164 +msgid "Sr No." +msgstr "" + +#. Label of the stack_html (HTML) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder/recorder.js:82 +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Stack Trace" +msgstr "" + +#. Label of the standard (Select) field in DocType 'Page' +#. Label of the standard (Check) field in DocType 'Desktop Icon' +#. Label of the standard (Select) field in DocType 'Print Format' +#. Label of the standard (Check) field in DocType 'Print Format Field Template' +#. Label of the standard (Check) field in DocType 'Print Style' +#. Label of the standard (Check) field in DocType 'Web Template' +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/user_type/user_type_list.js:5 +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/website/doctype/web_template/web_template.json +msgid "Standard" +msgstr "" + +#: frappe/model/delete_doc.py:119 +msgid "Standard DocType can not be deleted." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:229 +msgid "Standard DocType cannot have default print format, use Customize Form" +msgstr "" + +#: frappe/desk/doctype/dashboard/dashboard.py:58 +msgid "Standard Not Set" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:132 +msgid "Standard Permissions" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.py:82 +msgid "Standard Print Format cannot be updated" +msgstr "" + +#: frappe/printing/doctype/print_style/print_style.py:31 +msgid "Standard Print Style cannot be changed. Please duplicate to edit." +msgstr "" + +#: frappe/desk/reportview.py:355 +msgid "Standard Reports cannot be deleted" +msgstr "" + +#: frappe/desk/reportview.py:326 +msgid "Standard Reports cannot be edited" +msgstr "" + +#. Label of the standard_menu_items (Section Break) field in DocType 'Portal +#. Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Standard Sidebar Menu" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:40 +msgid "Standard Web Forms can not be modified, duplicate the Web Form instead." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Standard rich text editor with controls" +msgstr "" + +#: frappe/core/doctype/role/role.py:46 +msgid "Standard roles cannot be disabled" +msgstr "" + +#: frappe/core/doctype/role/role.py:32 +msgid "Standard roles cannot be renamed" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:61 +msgid "Standard user type {0} can not be deleted." +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:87 +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 +msgid "Start" +msgstr "" + +#. Label of the start_date (Date) field in DocType 'Auto Repeat' +#. Label of the start_date (Date) field in DocType 'Audit Trail' +#. Label of the start_date (Datetime) field in DocType 'Web Page' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/public/js/frappe/utils/common.js:409 +#: frappe/website/doctype/web_page/web_page.json +msgid "Start Date" +msgstr "" + +#. Label of the start_date_field (Select) field in DocType 'Calendar View' +#: frappe/desk/doctype/calendar_view/calendar_view.json +msgid "Start Date Field" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:110 +msgid "Start Import" +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:201 +msgid "Start Recording" +msgstr "" + +#. Label of the birth_date (Datetime) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Start Time" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:8 +msgid "Start a new discussion" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:22 +msgid "Start entering data below this line" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:165 +msgid "Start new Format" +msgstr "" + +#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "StartTLS" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Started" +msgstr "" + +#. Label of the started_at (Datetime) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Started At" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:286 +msgid "Starting Frappe ..." +msgstr "" + +#. Label of the starts_on (Datetime) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Starts on" +msgstr "" + +#. Label of the state (Data) field in DocType 'Token Cache' +#. Label of the state (Link) field in DocType 'Workflow Document State' +#. Label of the workflow_state_name (Data) field in DocType 'Workflow State' +#. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/workflow/doctype/workflow/workflow.js:162 +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "State" +msgstr "" + +#: frappe/public/js/workflow_builder/components/Properties.vue:26 +msgid "State Properties" +msgstr "" + +#. Label of the state (Data) field in DocType 'Address' +#. Label of the state (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "State/Province" +msgstr "" + +#. Label of the document_states_section (Tab Break) field in DocType 'DocType' +#. Label of the states (Table) field in DocType 'Customize Form' +#. Label of the states_head (Section Break) field in DocType 'Workflow' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/workflow/doctype/workflow/workflow.json +msgid "States" +msgstr "" + +#. Label of the parameters (Table) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Static Parameters" +msgstr "" + +#. Label of the statistics_section (Section Break) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Statistics" +msgstr "" + +#. Label of the stats_section (Section Break) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/form/dashboard.js:43 +#: frappe/public/js/frappe/form/templates/form_dashboard.html:13 +msgid "Stats" +msgstr "" + +#. Label of the stats_time_interval (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Stats Time Interval" +msgstr "" + +#. Label of the status (Select) field in DocType 'Auto Repeat' +#. Label of the status (Select) field in DocType 'Contact' +#. Label of the status (Select) field in DocType 'Activity Log' +#. Label of the status_section (Section Break) field in DocType 'Communication' +#. Label of the status (Select) field in DocType 'Communication' +#. Label of the status (Select) field in DocType 'Data Import' +#. Label of the status (Select) field in DocType 'Permission Log' +#. Label of the status (Select) field in DocType 'Prepared Report' +#. Label of the status (Select) field in DocType 'RQ Job' +#. Label of the status (Data) field in DocType 'RQ Worker' +#. Label of the status (Select) field in DocType 'Scheduled Job Log' +#. Label of the status_section (Section Break) field in DocType 'Scheduled Job +#. Type' +#. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' +#. Label of the status (Select) field in DocType 'Event' +#. Label of the status (Select) field in DocType 'Kanban Board Column' +#. Label of the status (Select) field in DocType 'ToDo' +#. Label of the status (Select) field in DocType 'Email Queue' +#. Label of the status (Select) field in DocType 'Email Queue Recipient' +#. Label of the status (Select) field in DocType 'Integration Request' +#. Label of the status (Select) field in DocType 'OAuth Bearer Token' +#. Label of the status (Select) field in DocType 'Personal Data Deletion +#. Request' +#. Label of the status (Select) field in DocType 'Personal Data Deletion Step' +#. Label of the status (Select) field in DocType 'Workflow Action' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import/data_import.js:483 +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Status" +msgstr "" + +#: frappe/www/update-password.html:188 +msgid "Status Updated" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue.js:37 +msgid "Status Updated. The email will be picked up in the next scheduled run." +msgstr "" + +#: frappe/www/message.html:24 +msgid "Status: {0}" +msgstr "" + +#. Label of the step (Link) field in DocType 'Onboarding Step Map' +#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json +msgid "Step" +msgstr "" + +#. Label of the steps (Table) field in DocType 'Form Tour' +#. Label of the steps (Table) field in DocType 'Module Onboarding' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Steps" +msgstr "" + +#: frappe/www/qrcode.html:11 +msgid "Steps to verify your login" +msgstr "" + +#. Label of the sticky (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/public/js/frappe/form/grid_row.js:455 +msgid "Sticky" +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:87 +msgid "Stop" +msgstr "" + +#. Label of the stopped (Check) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Stopped" +msgstr "" + +#. Label of the db_storage_usage (Float) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Storage Usage (MB)" +msgstr "" + +#. Label of the top_db_tables (Table) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Storage Usage By Table" +msgstr "" + +#. Label of the store_attached_pdf_document (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Store Attached PDF Document" +msgstr "" + +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +msgstr "" + +#. Description of the 'Last Known Versions' (Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Stores the JSON of last known versions of various installed apps. It is used to show release notes." +msgstr "" + +#. Description of the 'Last Reset Password Key Generated On' (Datetime) field +#. in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Stores the datetime when the last reset password key was generated." +msgstr "" + +#: frappe/utils/password_strength.py:97 +msgid "Straight rows of keys are easy to guess" +msgstr "" + +#. Label of the strip_exif_metadata_from_uploaded_images (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Strip EXIF tags from uploaded images" +msgstr "" + +#: frappe/public/js/frappe/form/controls/password.js:89 +msgid "Strong" +msgstr "" + +#. Label of the custom_css (Tab Break) field in DocType 'Web Page' +#. Label of the style (Select) field in DocType 'Workflow State' +#: frappe/website/doctype/web_page/web_page.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Style" +msgstr "" + +#. Label of the section_break_9 (Section Break) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Style Settings" +msgstr "" + +#. Description of the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange" +msgstr "" + +#. Label of the stylesheet_section (Tab Break) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Stylesheet" +msgstr "" + +#. Description of the 'Fraction' (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Sub-currency. For e.g. \"Cent\"" +msgstr "" + +#. Description of the 'Subdomain' (Small Text) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Sub-domain provided by erpnext.com" +msgstr "" + +#. Label of the subdomain (Small Text) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Subdomain" +msgstr "" + +#. Label of the subject (Data) field in DocType 'Auto Repeat' +#. Label of the subject (Small Text) field in DocType 'Activity Log' +#. Label of the subject (Text) field in DocType 'Comment' +#. Label of the subject (Small Text) field in DocType 'Communication' +#. Label of the subject (Small Text) field in DocType 'Event' +#. Label of the subject (Text) field in DocType 'Notification Log' +#. Label of the subject (Data) field in DocType 'Email Template' +#. Label of the subject (Data) field in DocType 'Notification' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/email/doctype/notification/notification.js:204 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/views/communication.js:119 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:63 +msgid "Subject" +msgstr "" + +#. Label of the subject_field (Data) field in DocType 'DocType' +#. Label of the subject_field (Data) field in DocType 'Customize Form' +#. Label of the subject_field (Select) field in DocType 'Calendar View' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +msgid "Subject Field" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1949 +msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Submission Queue" +msgstr "" + +#. Label of the submit (Check) field in DocType 'Custom DocPerm' +#. Label of the submit (Check) field in DocType 'DocPerm' +#. Label of the submit (Check) field in DocType 'DocShare' +#. Label of the submit (Check) field in DocType 'User Document Type' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_permission/user_permission_list.js:138 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/quick_entry.js:225 +#: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Submit" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2233 +msgctxt "Button in list view actions menu" +msgid "Submit" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:47 +msgctxt "Button in web form" +msgid "Submit" +msgstr "" + +#: frappe/public/js/frappe/ui/dialog.js:64 +msgctxt "Primary action in dialog" +msgid "Submit" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:97 +msgctxt "Primary action of prompt dialog" +msgid "Submit" +msgstr "" + +#: frappe/public/js/frappe/desk.js:227 +msgctxt "Submit password for Email Account" +msgid "Submit" +msgstr "" + +#. Label of the submit_after_import (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Submit After Import" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:39 +msgid "Submit an Issue" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:163 +msgctxt "Button in web form" +msgid "Submit another response" +msgstr "" + +#. Label of the button_label (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Submit button label" +msgstr "" + +#. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 +msgid "Submit on Creation" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:395 +msgid "Submit this document to complete this step." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1221 +msgid "Submit this document to confirm" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2238 +msgctxt "Title of confirmation dialog" +msgid "Submit {0} documents?" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/model/indicator.js:95 +#: frappe/public/js/frappe/ui/filters/filter.js:539 +#: frappe/website/doctype/web_form/templates/web_form.html:143 +msgid "Submitted" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:104 +msgid "Submitted Document cannot be converted back to draft. Transition row {0}" +msgstr "" + +#: frappe/public/js/workflow_builder/utils.js:176 +msgid "Submitted document cannot be converted back to draft while transitioning from {0} State to {1} State" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:10 +msgctxt "Freeze message while submitting a document" +msgid "Submitting" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:88 +msgid "Submitting {0}" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Subsidiary" +msgstr "" + +#. Label of the subtitle (Data) field in DocType 'Module Onboarding' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Subtitle" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#. Label of the success (Check) field in DocType 'Data Import Log' +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/data_import/data_import.js:459 +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/desk/doctype/bulk_update/bulk_update.js:31 +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 +#: frappe/public/js/frappe/form/grid.js:1172 +#: frappe/public/js/frappe/views/translation_manager.js:21 +#: frappe/templates/includes/login/login.js:230 +#: frappe/templates/includes/login/login.js:236 +#: frappe/templates/includes/login/login.js:269 +#: frappe/templates/includes/login/login.js:277 +#: frappe/templates/pages/integrations/gcalendar-success.html:9 +#: frappe/workflow/doctype/workflow_action/workflow_action.py:171 +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Success" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/success_action/success_action.json +msgid "Success Action" +msgstr "" + +#. Label of the success_message (Data) field in DocType 'Module Onboarding' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Success Message" +msgstr "" + +#. Label of the success_uri (Data) field in DocType 'Token Cache' +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Success URI" +msgstr "" + +#. Label of the success_url (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Success URL" +msgstr "" + +#. Label of the success_message (Text) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Success message" +msgstr "" + +#. Label of the success_title (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Success title" +msgstr "" + +#. Label of the successful_job_count (Int) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Successful Job Count" +msgstr "" + +#: frappe/model/workflow.py:363 +msgid "Successful Transactions" +msgstr "" + +#: frappe/model/rename_doc.py:698 +msgid "Successful: {0} to {1}" +msgstr "" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100 +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113 +msgid "Successfully Updated" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:423 +msgid "Successfully imported {0}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:144 +msgid "Successfully imported {0} out of {1} records." +msgstr "" + +#: frappe/desk/doctype/form_tour/form_tour.py:87 +msgid "Successfully reset onboarding status for all users." +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:22 +msgid "Successfully updated translations" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:431 +msgid "Successfully updated {0}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:149 +msgid "Successfully updated {0} out of {1} records." +msgstr "" + +#: frappe/core/doctype/recorder/recorder.js:15 +msgid "Suggest Optimizations" +msgstr "" + +#. Label of the suggested_indexes (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Suggested Indexes" +msgstr "" + +#: frappe/core/doctype/user/user.py:733 +msgid "Suggested Username: {0}" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/ui/group_by/group_by.js:20 +msgid "Sum" +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 +msgid "Sum of {0}" +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:88 +msgid "Summary" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the sunday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Sunday" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:27 +msgid "Suspend Sending" +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:276 +msgid "Switch Camera" +msgstr "" + +#: frappe/public/js/frappe/desk.js:96 +#: frappe/public/js/frappe/ui/theme_switcher.js:11 +msgid "Switch Theme" +msgstr "" + +#: frappe/templates/includes/navbar/navbar_login.html:17 +msgid "Switch To Desk" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.js:319 +msgid "Switch to Frappe CRM for smarter sales" +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:281 +msgid "Switching Camera" +msgstr "" + +#. Label of the symbol (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Symbol" +msgstr "" + +#. Label of the sb_01 (Section Break) field in DocType 'Google Calendar' +#. Label of the sync (Section Break) field in DocType 'Google Contacts' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Sync" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:28 +msgid "Sync Calendar" +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.js:28 +msgid "Sync Contacts" +msgstr "" + +#. Label of the sync_as_public (Check) field in DocType 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Sync events from Google as public" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:256 +msgid "Sync on Migrate" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:312 +msgid "Sync token was invalid and has been reset, Retry syncing." +msgstr "" + +#. Label of the sync_with_google_calendar (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Sync with Google Calendar" +msgstr "" + +#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Sync with Google Contacts" +msgstr "" + +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46 +msgid "Sync {0} Fields" +msgstr "" + +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:100 +msgid "Synced Fields" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:31 +#: frappe/integrations/doctype/google_contacts/google_contacts.js:31 +msgid "Syncing" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:19 +msgid "Syncing {0} of {1}" +msgstr "" + +#: frappe/utils/data.py:2573 +msgid "Syntax Error" +msgstr "" + +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "System" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/public/js/frappe/ui/dropdown_console.js:4 +msgid "System Console" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:408 +msgid "System Generated Fields can not be renamed" +msgstr "" + +#. Label of a standard help item +#. Type: Route +#: frappe/hooks.py +msgid "System Health" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "System Health Report" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json +msgid "System Health Report Errors" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json +msgid "System Health Report Failing Jobs" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json +msgid "System Health Report Queue" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json +msgid "System Health Report Tables" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "System Health Report Workers" +msgstr "" + +#. Label of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "System Logs" +msgstr "" + +#. Name of a role +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/gender/gender.json +#: frappe/contacts/doctype/salutation/salutation.json +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/data_export/data_export.json +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/core/doctype/deleted_document/deleted_document.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/domain/domain.json +#: frappe/core/doctype/domain_settings/domain_settings.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/file/file.json +#: frappe/core/doctype/installed_applications/installed_applications.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/log_settings/log_settings.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/module_profile/module_profile.json +#: frappe/core/doctype/navbar_settings/navbar_settings.json +#: frappe/core/doctype/package/package.json +#: frappe/core/doctype/package_import/package_import.json +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/patch_log/patch_log.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/role_replication/role_replication.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/scheduler_event/scheduler_event.json +#: frappe/core/doctype/session_default_settings/session_default_settings.json +#: frappe/core/doctype/sms_log/sms_log.json +#: frappe/core/doctype/sms_settings/sms_settings.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/success_action/success_action.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/version/version.json +#: frappe/core/doctype/view_log/view_log.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/desk/doctype/console_log/console_log.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/global_search_settings/global_search_settings.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/route_history/route_history.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/tag_link/tag_link.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_rule/email_rule.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/email/doctype/notification/notification.json +#: frappe/email/doctype/unhandled_email/unhandled_email.json +#: frappe/geo/doctype/country/country.json +#: frappe/geo/doctype/currency/currency.json +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/printing/doctype/print_heading/print_heading.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/website/doctype/discussion_reply/discussion_reply.json +#: frappe/website/doctype/discussion_topic/discussion_topic.json +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_route_meta/website_route_meta.json +#: frappe/workflow/doctype/workflow/workflow.json +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "System Manager" +msgstr "" + +#: frappe/desk/page/backups/backups.js:38 +msgid "System Manager privileges required." +msgstr "" + +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "System Notification" +msgstr "" + +#. Label of the system_page (Check) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "System Page" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/system_settings/system_settings.json +msgid "System Settings" +msgstr "" + +#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType +#. 'Module Onboarding' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "System managers are allowed by default" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:5 +msgctxt "Number system" +msgid "T" +msgstr "" + +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Tab Break" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:135 +msgid "Tab Label" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the table (Data) field in DocType 'Recorder Suggested Index' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the table (Data) field in DocType 'System Health Report Tables' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/data_export/exporter.py:23 +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:39 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Table" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Table Break" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:73 +msgid "Table Field" +msgstr "" + +#. Label of the table_fieldname (Data) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Table Fieldname" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1204 +msgid "Table Fieldname Missing" +msgstr "" + +#. Label of the table_html (HTML) field in DocType 'Version' +#: frappe/core/doctype/version/version.json +msgid "Table HTML" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Table MultiSelect" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:229 +msgid "Table Trimmed" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1171 +msgid "Table updated" +msgstr "" + +#: frappe/model/document.py:1578 +msgid "Table {0} cannot be empty" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Tabloid" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/tag/tag.json +msgid "Tag" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/tag_link/tag_link.json +msgid "Tag Link" +msgstr "" + +#: frappe/model/meta.py:59 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:81 +#: frappe/public/js/frappe/list/bulk_operations.js:430 +#: frappe/public/js/frappe/list/list_sidebar.html:48 +#: frappe/public/js/frappe/list/list_sidebar.html:60 +#: frappe/public/js/frappe/list/list_sidebar.js:253 +#: frappe/public/js/frappe/model/meta.js:207 +#: frappe/public/js/frappe/model/model.js:133 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:171 +msgid "Tags" +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:220 +msgid "Take Photo" +msgstr "" + +#. Label of the target (Data) field in DocType 'Portal Menu Item' +#. Label of the target (Small Text) field in DocType 'Website Route Redirect' +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +msgid "Target" +msgstr "" + +#. Label of the task (Select) field in DocType 'Workflow Transition Task' +#: frappe/desk/doctype/todo/todo_calendar.js:19 +#: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Task" +msgstr "" + +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "" + +#. Label of the sb1 (Section Break) field in DocType 'About Us Settings' +#. Label of the team_members (Table) field in DocType 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/www/about.html:45 +msgid "Team Members" +msgstr "" + +#. Label of the team_members_heading (Data) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Team Members Heading" +msgstr "" + +#. Label of the team_members_subtitle (Small Text) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Team Members Subtitle" +msgstr "" + +#. Label of the telemetry_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Telemetry" +msgstr "" + +#. Label of the template (Link) field in DocType 'Auto Repeat' +#. Label of the template (Code) field in DocType 'Address Template' +#. Label of the template (Code) field in DocType 'Print Format Field Template' +#. Label of the template (Code) field in DocType 'Web Template' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/website/doctype/web_template/web_template.json +msgid "Template" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:483 +#: frappe/core/doctype/data_import/importer.py:610 +msgid "Template Error" +msgstr "" + +#. Label of the template_file (Data) field in DocType 'Print Format Field +#. Template' +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +msgid "Template File" +msgstr "" + +#. Label of the template_options (Code) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Template Options" +msgstr "" + +#. Label of the template_warnings (Code) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Template Warnings" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:78 +msgid "Templates" +msgstr "" + +#: frappe/core/doctype/user/user.py:1042 +msgid "Temporarily Disabled" +msgstr "" + +#: frappe/core/doctype/translation/test_translation.py:47 +#: frappe/core/doctype/translation/test_translation.py:54 +msgid "Test Data" +msgstr "" + +#. Label of the test_job_id (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Test Job ID" +msgstr "" + +#: frappe/core/doctype/translation/test_translation.py:49 +#: frappe/core/doctype/translation/test_translation.py:57 +msgid "Test Spanish" +msgstr "" + +#: frappe/core/doctype/file/test_file.py:379 +msgid "Test_Folder" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Text" +msgstr "" + +#. Label of the text_align (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Text Align" +msgstr "" + +#. Label of the text_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Text Color" +msgstr "" + +#. Label of the text_content (Code) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Text Content" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Text Editor" +msgstr "" + +#: frappe/templates/emails/password_reset.html:5 +msgid "Thank you" +msgstr "" + +#: frappe/www/contact.py:39 +msgid "Thank you for reaching out to us. We will get back to you at the earliest.\n\n\n" +"Your query:\n\n" +"{0}" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:147 +msgid "Thank you for spending your valuable time to fill this form" +msgstr "" + +#: frappe/templates/emails/auto_reply.html:1 +msgid "Thank you for your email" +msgstr "" + +#: frappe/website/doctype/help_article/templates/help_article.html:27 +msgid "Thank you for your feedback!" +msgstr "" + +#: frappe/templates/includes/contact.js:36 +msgid "Thank you for your message" +msgstr "" + +#: frappe/templates/emails/new_user.html:16 +msgid "Thanks" +msgstr "" + +#: frappe/templates/emails/auto_repeat_fail.html:3 +msgid "The Auto Repeat for this document has been disabled." +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1194 +msgid "The CSV format is case sensitive" +msgstr "" + +#. Description of the 'Client ID' (Data) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "The Client ID obtained from the Google Cloud Console under \n" +"\"APIs & Services\" > \"Credentials\"\n" +"" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:219 +msgid "The Condition '{0}' is invalid" +msgstr "" + +#: frappe/core/doctype/file/file.py:220 +msgid "The File URL you've entered is incorrect" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 +msgid "The Next Scheduled Date cannot be later than the End Date." +msgstr "" + +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:29 +msgid "The Push Relay Server URL key (`push_relay_server_url`) is missing in your site config" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:367 +msgid "The User record for this request has been auto-deleted due to inactivity by system admins." +msgstr "" + +#: frappe/public/js/frappe/desk.js:162 +msgid "The application has been updated to a new version, please refresh this page" +msgstr "" + +#. Description of the 'Application Name' (Data) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "The application name will be used in the Login page." +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:323 +msgid "The attachments could not be correctly linked to the new document" +msgstr "" + +#. Description of the 'API Key' (Data) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "The browser API key obtained from the Google Cloud Console under \n" +"\"APIs & Services\" > \"Credentials\"\n" +"" +msgstr "" + +#: frappe/database/database.py:474 +msgid "The changes have been reverted." +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1009 +msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." +msgstr "" + +#: frappe/templates/includes/comments/comments.py:48 +msgid "The comment cannot be empty" +msgstr "" + +#: frappe/templates/emails/workflow_action.html:9 +msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone." +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:687 +msgid "The count shown is an estimated count. Click here to see the accurate count." +msgstr "" + +#. Description of the 'Code' (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "The country's ISO 3166 ALPHA-2 code." +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:301 +msgid "The document could not be correctly assigned" +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:295 +msgid "The document has been assigned to {0}" +msgstr "" + +#. Description of the 'Parent Document Type' (Link) field in DocType 'Dashboard +#. Chart' +#. Description of the 'Parent Document Type' (Link) field in DocType 'Number +#. Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "The document type selected is a child table, so the parent document type is required." +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:110 +msgid "The field {0} is mandatory" +msgstr "" + +#: frappe/core/doctype/file/file.py:157 +msgid "The fieldname you've specified in Attached To Field is invalid" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:62 +msgid "The following Assignment Days have been repeated: {0}" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1089 +msgid "The following values are invalid: {0}. Values must be one of {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1046 +msgid "The following values do not exist for {0}: {1}" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:89 +msgid "The limit has not set for the user type {0} in the site config file." +msgstr "" + +#: frappe/templates/emails/login_with_email_link.html:21 +msgid "The link will expire in {0} minutes" +msgstr "" + +#: frappe/www/login.py:194 +msgid "The link you trying to login is invalid or expired." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:125 +msgid "The meta description is an HTML attribute that provides a brief summary of a web page. Search engines such as Google often display the meta description in search results, which can influence click-through rates." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:132 +msgid "The meta image is unique image representing the content of the page. Images for this Card should be at least 280px in width, and at least 150px in height." +msgstr "" + +#. Description of the 'Calendar Name' (Data) field in DocType 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "The name that will appear in Google Calendar" +msgstr "" + +#. Description of the 'Track Steps' (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "The next tour will start from where the user left off." +msgstr "" + +#. Description of the 'Request Timeout' (Int) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "The number of seconds until the request expires" +msgstr "" + +#: frappe/www/update-password.html:101 +msgid "The password of your account has expired." +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:398 +msgid "The process for deletion of {0} data associated with {1} has been initiated." +msgstr "" + +#. Description of the 'App ID' (Data) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "The project number obtained from Google Cloud Console under \n" +"\"IAM & Admin\" > \"Settings\"\n" +"" +msgstr "" + +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

Click here to download:
{0}

This link will expire in {1} hours." +msgstr "" + +#: frappe/core/doctype/user/user.py:1000 +msgid "The reset password link has been expired" +msgstr "" + +#: frappe/core/doctype/user/user.py:1002 +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 +msgid "The resource you are looking for is not available" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:114 +msgid "The role {0} should be a custom role." +msgstr "" + +#: frappe/core/doctype/audit_trail/audit_trail.py:46 +msgid "The selected document {0} is not a {1}." +msgstr "" + +#: frappe/utils/response.py:336 +msgid "The system is being updated. Please refresh again after a few moments." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:9 +msgid "The system provides many pre-defined roles. You can add new roles to set finer permissions." +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:97 +msgid "The total number of user document types limit has been crossed." +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:25 +msgid "The value you pasted was {0} characters long. Max allowed characters is {1}." +msgstr "" + +#. Description of the 'Condition' (Small Text) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "The webhook will be triggered if this expression is true" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 +msgid "The {0} is already on auto repeat {1}" +msgstr "" + +#. Label of the section_break_6 (Section Break) field in DocType 'Website +#. Settings' +#. Label of the theme (Data) field in DocType 'Website Theme' +#. Label of the theme_scss (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Theme" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:130 +msgid "Theme Changed" +msgstr "" + +#. Label of the bootstrap_theme_section (Tab Break) field in DocType 'Website +#. Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Theme Configuration" +msgstr "" + +#. Label of the theme_url (Data) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Theme URL" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:125 +msgid "There are documents which have workflow states that do not exist in this Workflow. It is recommended that you add these states to the Workflow and change their states before removing these states." +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:442 +msgid "There are no upcoming events for you." +msgstr "" + +#: frappe/website/web_template/discussions/discussions.html:3 +msgid "There are no {0} for this {1}, why don't you start one!" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:973 +msgid "There are {0} with the same filters already in the queue:" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:81 +#: frappe/website/doctype/web_form/web_form.js:318 +msgid "There can be only 9 Page Break fields in a Web Form" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1444 +msgid "There can be only one Fold in a form" +msgstr "" + +#: frappe/contacts/doctype/address/address.py:183 +msgid "There is an error in your Address Template {0}" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:162 +msgid "There is no data to be exported" +msgstr "" + +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:492 +msgid "There is nothing new to show you right now." +msgstr "" + +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 +msgid "There is some problem with the file url: {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:970 +msgid "There is {0} with the same filters already in the queue:" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.py:156 +msgid "There must be atleast one permission rule." +msgstr "" + +#: frappe/www/error.py:17 +msgid "There was an error building this page" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 +msgid "There was an error saving filters" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/attachments.js:216 +msgid "There were errors" +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:277 +msgid "There were errors while creating the document. Please try again." +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:843 +msgid "There were errors while sending email. Please try again." +msgstr "" + +#: frappe/model/naming.py:502 +msgid "There were some errors setting the name, please contact the administrator" +msgstr "" + +#. Description of the 'Announcement Widget' (Text Editor) field in DocType +#. 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "These announcements will appear inside a dismissible alert below the Navbar." +msgstr "" + +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "" + +#. Description of the 'LDAP Custom Settings' (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "These settings are required if 'Custom' LDAP Directory is used" +msgstr "" + +#. Description of the 'Defaults' (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values." +msgstr "" + +#: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14 +msgid "Third Party Apps" +msgstr "" + +#. Label of the third_party_authentication (Section Break) field in DocType +#. 'User' +#: frappe/core/doctype/user/user.json +msgid "Third Party Authentication" +msgstr "" + +#: frappe/geo/doctype/currency/currency.js:8 +msgid "This Currency is disabled. Enable to use in transactions" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 +msgid "This Kanban Board will be private" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:666 +msgid "This Month" +msgstr "" + +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:670 +msgid "This Quarter" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:662 +msgid "This Week" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:674 +msgid "This Year" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:220 +msgid "This action is irreversible. Do you wish to continue?" +msgstr "" + +#: frappe/__init__.py:546 +msgid "This action is only allowed for {}" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:117 +#: frappe/public/js/frappe/model/model.js:706 +msgid "This cannot be undone" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +msgstr "" + +#. Description of the 'Is Public' (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "This card will be available to all Users if this is set" +msgstr "" + +#. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "This chart will be available to all Users if this is set" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:212 +msgid "This doctype has no orphan fields to trim" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1055 +msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." +msgstr "" + +#: frappe/model/delete_doc.py:153 +msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." +msgstr "" + +#: frappe/www/confirm_workflow_action.html:8 +msgid "This document has been modified after the email was sent." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1305 +msgid "This document has unsaved changes which might not appear in final PDF.
Consider saving the document before printing." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1102 +msgid "This document is already amended, you cannot ammend it again" +msgstr "" + +#: frappe/model/document.py:475 +msgid "This document is currently locked and queued for execution. Please try again after some time." +msgstr "" + +#: frappe/templates/emails/auto_repeat_fail.html:7 +msgid "This email is autogenerated" +msgstr "" + +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:30 +msgid "This feature can not be used as dependencies are missing.\n" +"\t\t\t\tPlease contact your system manager to enable this by installing pycups!" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:23 +msgid "This feature is brand new and still experimental" +msgstr "" + +#. Description of the 'Depends On' (Code) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "This field will appear only if the fieldname defined here has value OR the rules are true (examples):\n" +"myfield\n" +"eval:doc.myfield=='My Value'\n" +"eval:doc.age>18" +msgstr "" + +#: frappe/core/doctype/file/file.py:525 +msgid "This file is attached to a protected document and cannot be deleted." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:76 +msgid "This file is public and can be accessed by anyone, even without logging in. Mark it private to limit access." +msgstr "" + +#: frappe/core/doctype/file/file.js:20 +msgid "This file is public. It can be accessed without authentication." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1199 +msgid "This form has been modified after you have loaded it" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:2259 +msgid "This form is not editable due to a Workflow." +msgstr "" + +#. Description of the 'Is Default' (Check) field in DocType 'Address Template' +#: frappe/contacts/doctype/address_template/address_template.json +msgid "This format is used if country specific format is not found" +msgstr "" + +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.py:52 +msgid "This geolocation provider is not supported yet." +msgstr "" + +#. Description of the 'Header' (HTML Editor) field in DocType 'Website +#. Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "This goes above the slideshow." +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2197 +msgid "This is a background report. Please set the appropriate filters and then generate a new one." +msgstr "" + +#: frappe/utils/password_strength.py:158 +msgid "This is a top-10 common password." +msgstr "" + +#: frappe/utils/password_strength.py:160 +msgid "This is a top-100 common password." +msgstr "" + +#: frappe/utils/password_strength.py:162 +msgid "This is a very common password." +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.js:9 +msgid "This is a virtual doctype and data is cleared periodically." +msgstr "" + +#: frappe/templates/emails/auto_reply.html:5 +msgid "This is an automatically generated reply" +msgstr "" + +#: frappe/utils/password_strength.py:164 +msgid "This is similar to a commonly used password." +msgstr "" + +#. Description of the 'Current Value' (Int) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "This is the number of the last created transaction with this prefix" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407 +msgid "This link has already been activated for verification." +msgstr "" + +#: frappe/utils/verified_command.py:49 +msgid "This link is invalid or expired. Please make sure you have pasted correctly." +msgstr "" + +#: frappe/printing/page/print/print.js:431 +msgid "This may get printed on multiple pages" +msgstr "" + +#: frappe/utils/goal.py:109 +msgid "This month" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1045 +msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." +msgstr "" + +#: frappe/templates/emails/auto_email_report.html:57 +msgid "This report was generated on {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:861 +msgid "This report was generated {0}." +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:122 +msgid "This request has not yet been approved by the user." +msgstr "" + +#: frappe/templates/includes/navbar/navbar_items.html:95 +msgid "This site is in read only mode, full functionality will be restored soon." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.js:73 +msgid "This site is running in developer mode. Any change made here will be updated in code." +msgstr "" + +#: frappe/www/attribution.html:11 +msgid "This software is built on top of many open source packages." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:71 +msgid "This title will be used as the title of the webpage as well as in meta tags" +msgstr "" + +#: frappe/public/js/frappe/form/controls/base_input.js:129 +msgid "This value is fetched from {0}'s {1} field" +msgstr "" + +#. Description of the 'Max Report Rows' (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "This value specifies the max number of rows that can be rendered in report view." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:85 +msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish" +msgstr "" + +#. Description of the 'Callback Message' (Small Text) field in DocType +#. 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "This will be shown in a modal after routing" +msgstr "" + +#. Description of the 'Report Description' (Data) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "This will be shown to the user in a dialog after routing to the report" +msgstr "" + +#: frappe/www/third_party_apps.html:23 +msgid "This will log out {0} from all other devices" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:3 +msgid "This will permanently remove your data." +msgstr "" + +#: frappe/desk/doctype/form_tour/form_tour.js:103 +msgid "This will reset this tour and show it to all users. Are you sure?" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.js:15 +msgid "This will terminate the job immediately and might be dangerous, are you sure?" +msgstr "" + +#: frappe/core/doctype/user/user.py:1255 +msgid "Throttled" +msgstr "" + +#. Label of the thumbnail_url (Small Text) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Thumbnail URL" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the thursday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Thursday" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the time (Datetime) field in DocType 'Recorder' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Time" +msgstr "" + +#. Label of the time_format (Select) field in DocType 'Language' +#. Label of the time_format (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Time Format" +msgstr "" + +#. Label of the time_interval (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Time Interval" +msgstr "" + +#. Label of the timeseries (Check) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Time Series" +msgstr "" + +#. Label of the based_on (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Time Series Based On" +msgstr "" + +#. Label of the time_taken (Duration) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Time Taken" +msgstr "" + +#. Label of the rate_limit_seconds (Int) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Time Window (Seconds)" +msgstr "" + +#. Label of the time_zone (Select) field in DocType 'System Settings' +#. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#. Label of the time_zone (Data) field in DocType 'Web Page View' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:407 +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Time Zone" +msgstr "" + +#. Label of the time_zones (Text) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "Time Zones" +msgstr "" + +#. Label of the time_format (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "Time format" +msgstr "" + +#. Label of the time_in_queries (Float) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Time in Queries" +msgstr "" + +#. Description of the 'Expiry time of QR Code Image Page' (Int) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Time in seconds to retain QR code image on server. Min:240" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:413 +msgid "Time series based on is required to create a dashboard chart" +msgstr "" + +#: frappe/public/js/frappe/form/controls/time.js:124 +msgid "Time {0} must be in format: {1}" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Timed Out" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:64 +msgid "Timeless Night" +msgstr "" + +#. Label of the timeline (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Timeline" +msgstr "" + +#. Label of the timeline_doctype (Link) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Timeline DocType" +msgstr "" + +#. Label of the timeline_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Timeline Field" +msgstr "" + +#. Label of the timeline_links_sections (Section Break) field in DocType +#. 'Communication' +#. Label of the timeline_links (Table) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Timeline Links" +msgstr "" + +#. Label of the timeline_name (Dynamic Link) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Timeline Name" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1539 +msgid "Timeline field must be a Link or Dynamic Link" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1535 +msgid "Timeline field must be a valid fieldname" +msgstr "" + +#. Label of the timeout (Duration) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Timeout" +msgstr "" + +#. Label of the timeout (Int) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Timeout (In Seconds)" +msgstr "" + +#. Label of the timeseries (Check) field in DocType 'Dashboard Chart Source' +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgid "Timeseries" +msgstr "" + +#. Label of the timespan (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:28 +msgid "Timespan" +msgstr "" + +#. Label of the timestamp (Datetime) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Timestamp" +msgstr "" + +#: frappe/desk/doctype/system_console/system_console.js:41 +msgid "Tip: Try the new dropdown console using" +msgstr "" + +#. Label of the title (Data) field in DocType 'DocType State' +#. Label of the method (Data) field in DocType 'Error Log' +#. Label of the title (Data) field in DocType 'Page' +#. Label of the title (Data) field in DocType 'Changelog Feed' +#. Label of the title (Data) field in DocType 'Form Tour' +#. Label of the title (Data) field in DocType 'Form Tour Step' +#. Label of the title (Data) field in DocType 'Module Onboarding' +#. Label of the title (Data) field in DocType 'Note' +#. Label of the title (Data) field in DocType 'Onboarding Step' +#. Label of the title (Data) field in DocType 'System Health Report Errors' +#. Label of the title (Data) field in DocType 'Workspace' +#. Label of the title (Data) field in DocType 'Email Group' +#. Label of the title (Data) field in DocType 'Discussion Topic' +#. Label of the title (Data) field in DocType 'Help Article' +#. Label of the title (Data) field in DocType 'Portal Menu Item' +#. Label of the title (Data) field in DocType 'Web Form' +#. Label of the list_title (Data) field in DocType 'Web Form' +#. Label of the title (Data) field in DocType 'Web Page' +#. Label of the meta_title (Data) field in DocType 'Web Page' +#. Label of the title (Data) field in DocType 'Website Sidebar' +#. Label of the title (Data) field in DocType 'Website Sidebar Item' +#: frappe/core/doctype/doctype/boilerplate/controller_list.html:14 +#: frappe/core/doctype/doctype/boilerplate/controller_list.html:23 +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/page/page.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/email/doctype/email_group/email_group.json +#: frappe/public/js/frappe/views/workspace/workspace.js:393 +#: frappe/website/doctype/discussion_topic/discussion_topic.json +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_sidebar/website_sidebar.json +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Title" +msgstr "" + +#. Label of the title_field (Data) field in DocType 'DocType' +#. Label of the title_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Title Field" +msgstr "" + +#. Label of the title_prefix (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Title Prefix" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1476 +msgid "Title field must be a valid fieldname" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:70 +msgid "Title of the page" +msgstr "" + +#. Label of the recipients (Code) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/permission_log/permission_log.js:12 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:70 +msgid "To" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:53 +msgctxt "Email Recipients" +msgid "To" +msgstr "" + +#. Label of the to_date (Date) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/report/website_analytics/website_analytics.js:14 +msgid "To Date" +msgstr "" + +#. Label of the to_date_field (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "To Date Field" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/todo/todo_list.js:6 +msgid "To Do" +msgstr "" + +#. Description of the 'Subject' (Data) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "To add dynamic subject, use jinja tags like\n\n" +"
New {{ doc.doctype }} #{{ doc.name }}
" +msgstr "" + +#. Description of the 'Subject' (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "To add dynamic subject, use jinja tags like\n\n" +"
{{ doc.name }} Delivered
" +msgstr "" + +#. Description of the 'JSON Request Body' (Code) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "To add dynamic values from the document, use jinja tags like\n\n" +"
\n" +"
{ \"id\": \"{{ doc.name }}\" }\n"
+"
\n" +"
" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 +msgid "To allow more reports update limit in System Settings." +msgstr "" + +#. Label of the section_break_10 (Section Break) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "To and CC" +msgstr "" + +#. Description of the 'Use First Day of Period' (Check) field in DocType 'Auto +#. Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "To begin the date range at the start of the chosen period. For example, if 'Year' is selected as the period, the report will start from January 1st of the current year." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:35 +msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}." +msgstr "" + +#: frappe/www/login.html:76 +msgid "To enable it follow the instructions in the following link: {0}" +msgstr "" + +#: frappe/core/doctype/server_script/server_script.js:40 +msgid "To enable server scripts, read the {0}." +msgstr "" + +#: frappe/desk/doctype/onboarding_step/onboarding_step.js:18 +msgid "To export this step as JSON, link it in a Onboarding document and save the document." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:126 +msgid "To generate password click {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:862 +msgid "To get the updated report, click on {0}." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:139 +msgid "To know more click {0}" +msgstr "" + +#. Description of the 'Console' (Code) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "To print output use print(text)" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:291 +msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:8 +msgid "To use Google Calendar, enable {0}." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.js:8 +msgid "To use Google Contacts, enable {0}." +msgstr "" + +#. Description of the 'Enable Google indexing' (Check) field in DocType +#. 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "To use Google Indexing, enable Google Settings." +msgstr "" + +#. Description of the 'Slack Channel' (Link) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "To use Slack Channel, add a Slack Webhook URL." +msgstr "" + +#: frappe/public/js/frappe/utils/diffview.js:44 +msgid "To version" +msgstr "" + +#. Label of a shortcut in the Tools Workspace +#. Name of a DocType +#. Name of a report +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55 +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.json +msgid "ToDo" +msgstr "" + +#: frappe/public/js/frappe/form/controls/date.js:58 +#: frappe/public/js/frappe/ui/filters/filter.js:733 +#: frappe/public/js/frappe/views/calendar/calendar.js:274 +msgid "Today" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1572 +msgid "Toggle Chart" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +msgid "Toggle Full Width" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:33 +msgid "Toggle Grid View" +msgstr "" + +#: frappe/public/js/frappe/ui/page.js:201 +#: frappe/public/js/frappe/ui/page.js:203 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 +msgid "Toggle Sidebar" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1966 +msgctxt "Button in list view menu" +msgid "Toggle Sidebar" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +msgid "Toggle Theme" +msgstr "" + +#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Token Cache" +msgstr "" + +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "" + +#. Label of the token_type (Data) field in DocType 'Token Cache' +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Token Type" +msgstr "" + +#. Label of the token_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Token URI" +msgstr "" + +#: frappe/utils/oauth.py:184 +msgid "Token is missing" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:739 +msgid "Tomorrow" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:68 +#: frappe/model/workflow.py:310 +msgid "Too Many Documents" +msgstr "" + +#: frappe/rate_limiter.py:101 +msgid "Too Many Requests" +msgstr "" + +#: frappe/database/database.py:473 +msgid "Too many changes to database in single action." +msgstr "" + +#: frappe/utils/background_jobs.py:730 +msgid "Too many queued background jobs ({0}). Please retry after some time." +msgstr "" + +#: frappe/core/doctype/user/user.py:1043 +msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" +msgstr "" + +#. Name of a Workspace +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Tools" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:153 +msgid "Top" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13 +msgid "Top 10" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "Top Bar Item" +msgstr "" + +#. Label of the top_bar_items (Table) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Top Bar Items" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:245 +msgid "Top Center" +msgstr "" + +#. Label of the top_errors (Table) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Top Errors" +msgstr "" + +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:244 +msgid "Top Left" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:246 +msgid "Top Right" +msgstr "" + +#. Label of the topic (Link) field in DocType 'Discussion Reply' +#: frappe/website/doctype/discussion_reply/discussion_reply.json +msgid "Topic" +msgstr "" + +#: frappe/desk/query_report.py:587 +#: frappe/public/js/frappe/views/reports/print_grid.html:45 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 +msgid "Total" +msgstr "" + +#. Label of the total_background_workers (Int) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Background Workers" +msgstr "" + +#. Label of the total_errors (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Errors (last 1 day)" +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:259 +msgid "Total Images" +msgstr "" + +#. Label of the total_outgoing_emails (Int) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Outgoing Emails" +msgstr "" + +#. Label of the total_subscribers (Int) field in DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Total Subscribers" +msgstr "" + +#. Label of the total_users (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Users" +msgstr "" + +#. Label of the total_working_time (Duration) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Total Working Time" +msgstr "" + +#. Description of the 'Initial Sync Count' (Select) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Total number of emails to sync in initial sync process" +msgstr "" + +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 +msgid "Total:" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1258 +msgid "Totals" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1233 +msgid "Totals Row" +msgstr "" + +#. Label of the trace_id (Data) field in DocType 'Error Log' +#: frappe/core/doctype/error_log/error_log.json +msgid "Trace ID" +msgstr "" + +#. Label of the traceback (Code) field in DocType 'Patch Log' +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Traceback" +msgstr "" + +#. Label of the track_changes (Check) field in DocType 'DocType' +#. Label of the track_changes (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Track Changes" +msgstr "" + +#. Label of the track_email_status (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Track Email Status" +msgstr "" + +#. Label of the track_field (Data) field in DocType 'Milestone' +#: frappe/automation/doctype/milestone/milestone.json +msgid "Track Field" +msgstr "" + +#. Label of the track_seen (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Track Seen" +msgstr "" + +#. Label of the track_steps (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Track Steps" +msgstr "" + +#. Label of the track_views (Check) field in DocType 'DocType' +#. Label of the track_views (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Track Views" +msgstr "" + +#. Description of the 'Track Email Status' (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Track if your email has been opened by the recipient.\n" +"
\n" +"Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered \"Opened\"" +msgstr "" + +#. Description of a DocType +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Track milestones for any document" +msgstr "" + +#. Label of a Card Break in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "Tracking" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1821 +msgid "Tracking URL generated and copied to clipboard" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:31 +msgid "Transgender" +msgstr "" + +#: frappe/public/js/workflow_builder/components/Properties.vue:19 +msgid "Transition Properties" +msgstr "" + +#. Label of the transition_rules (Section Break) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Transition Rules" +msgstr "" + +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + +#. Label of the transitions (Table) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Transitions" +msgstr "" + +#. Label of the translatable (Check) field in DocType 'DocField' +#. Label of the translatable (Check) field in DocType 'Custom Field' +#. Label of the translatable (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Translatable" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2252 +msgid "Translate Data" +msgstr "" + +#. Label of the translated_doctype (Check) field in DocType 'DocType' +#. Label of the translated_doctype (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Translate Link Fields" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1658 +msgid "Translate values" +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:11 +msgid "Translate {0}" +msgstr "" + +#. Label of the translated_text (Code) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Translated Text" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/translation/translation.json +msgid "Translation" +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:46 +msgid "Translations" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "" + +#. Option for the 'Email Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Trash" +msgstr "" + +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Tree" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:210 +msgid "Tree View" +msgstr "" + +#. Description of the 'Is Tree' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Tree structures are implemented using Nested Set" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:19 +msgid "Tree view is not available for {0}" +msgstr "" + +#. Label of the method (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Trigger Method" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:196 +msgid "Trigger Primary Action" +msgstr "" + +#: frappe/tests/test_translate.py:55 +msgid "Trigger caching" +msgstr "" + +#. Description of the 'Trigger Method' (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Trigger on valid methods like \"before_insert\", \"after_update\", etc (will depend on the DocType selected)" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:144 +msgid "Trim Table" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:318 +msgid "Try Again" +msgstr "" + +#. Label of the try_naming_series (Data) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Try a Naming Series" +msgstr "" + +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 +msgid "Try the new Print Designer" +msgstr "" + +#: frappe/utils/password_strength.py:106 +msgid "Try to avoid repeated words and characters" +msgstr "" + +#: frappe/utils/password_strength.py:98 +msgid "Try to use a longer keyboard pattern with more turns" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the tuesday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Tuesday" +msgstr "" + +#. Label of the two_factor_auth (Check) field in DocType 'Role' +#. Label of the two_factor_authentication (Section Break) field in DocType +#. 'System Settings' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Two Factor Authentication" +msgstr "" + +#. Label of the two_factor_method (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Two Factor Authentication method" +msgstr "" + +#. Label of the communication_medium (Select) field in DocType 'Communication' +#. Label of the fieldtype (Select) field in DocType 'DocField' +#. Label of the fieldtype (Select) field in DocType 'Customize Form Field' +#. Label of the type (Data) field in DocType 'Console Log' +#. Label of the type (Select) field in DocType 'Dashboard Chart' +#. Label of the type (Select) field in DocType 'Desktop Icon' +#. Label of the type (Select) field in DocType 'Notification Log' +#. Label of the type (Select) field in DocType 'Number Card' +#. Label of the type (Select) field in DocType 'System Console' +#. Label of the type (Select) field in DocType 'Workspace' +#. Label of the type (Select) field in DocType 'Workspace Link' +#. Label of the type (Select) field in DocType 'Workspace Shortcut' +#. Label of the type (Select) field in DocType 'Web Template' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/console_log/console_log.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/views/file/file_view.js:370 +#: frappe/public/js/frappe/views/workspace/workspace.js:399 +#: frappe/public/js/frappe/widgets/widget_dialog.js:404 +#: frappe/website/doctype/web_template/web_template.json +#: frappe/www/attribution.html:35 +msgid "Type" +msgstr "" + +#: frappe/public/js/frappe/form/controls/comment.js:90 +msgid "Type a reply / comment" +msgstr "" + +#: frappe/templates/includes/search_template.html:51 +msgid "Type something in the search box to search" +msgstr "" + +#: frappe/templates/discussions/comment_box.html:8 +#: frappe/templates/discussions/reply_section.html:53 +#: frappe/templates/discussions/topic_modal.html:11 +msgid "Type title" +msgstr "" + +#: frappe/templates/discussions/discussions.js:341 +msgid "Type your reply here..." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:143 +msgid "Type:" +msgstr "" + +#. Label of the ui_tour (Check) field in DocType 'Form Tour' +#. Label of the ui_tour (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "UI Tour" +msgstr "" + +#. Label of the uid (Int) field in DocType 'Communication' +#. Label of the uid (Data) field in DocType 'Email Flag Queue' +#. Label of the uid (Data) field in DocType 'Unhandled Email' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "UID" +msgstr "" + +#. Label of the uidnext (Int) field in DocType 'Email Account' +#. Label of the uidnext (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "UIDNEXT" +msgstr "" + +#. Label of the uidvalidity (Data) field in DocType 'Email Account' +#. Label of the uidvalidity (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "UIDVALIDITY" +msgstr "" + +#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "UNSEEN" +msgstr "" + +#. Description of the 'Redirect URIs' (Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n" +"
e.g. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Workspace' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Label of the url (Data) field in DocType 'Workspace Shortcut' +#. Label of the url (Small Text) field in DocType 'Integration Request' +#. Label of the url (Text) field in DocType 'Webhook Request Log' +#. Label of the url (Data) field in DocType 'Top Bar Item' +#. Label of the url (Data) field in DocType 'Website Slideshow Item' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:471 +#: frappe/website/doctype/top_bar_item/top_bar_item.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "URL" +msgstr "" + +#. Description of the 'Documentation Link' (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "URL for documentation or help" +msgstr "" + +#: frappe/core/doctype/file/file.py:231 +msgid "URL must start with http:// or https://" +msgstr "" + +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:84 +msgid "URL of the page" +msgstr "" + +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "" + +#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "URL to go to on clicking the slideshow image" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/utm_campaign/utm_campaign.json +msgid "UTM Campaign" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/utm_medium/utm_medium.json +msgid "UTM Medium" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/utm_source/utm_source.json +msgid "UTM Source" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "UUID" +msgstr "" + +#: frappe/desk/form/document_follow.py:79 +msgid "Un-following document {0}" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:67 +msgid "Unable to find DocType {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:338 +msgid "Unable to load camera." +msgstr "" + +#: frappe/public/js/frappe/model/model.js:230 +msgid "Unable to load: {0}" +msgstr "" + +#: frappe/utils/csvutils.py:37 +msgid "Unable to open attached file. Did you export it as CSV?" +msgstr "" + +#: frappe/core/doctype/file/utils.py:98 frappe/core/doctype/file/utils.py:130 +msgid "Unable to read file format for {0}" +msgstr "" + +#: frappe/core/doctype/communication/email.py:180 +msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:450 +msgid "Unable to update event" +msgstr "" + +#: frappe/core/doctype/file/file.py:489 +msgid "Unable to write file format for {0}" +msgstr "" + +#. Label of the unassign_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Unassign Condition" +msgstr "" + +#: frappe/app.py:399 +msgid "Uncaught Exception" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:103 +msgid "Unchanged" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:518 +msgid "Undo" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:526 +msgid "Undo last action" +msgstr "" + +#: frappe/database/query.py:1497 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:109 +#: frappe/public/js/frappe/form/toolbar.js:879 +msgid "Unfollow" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Unhandled Email" +msgstr "" + +#. Label of the unhandled_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Unhandled Emails" +msgstr "" + +#. Label of the unique (Check) field in DocType 'DocField' +#. Label of the unique (Check) field in DocType 'Custom Field' +#. Label of the unique (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Unique" +msgstr "" + +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
\n" +"Should remain same across multiple versions or updates of the software." +msgstr "" + +#: frappe/website/report/website_analytics/website_analytics.js:60 +msgid "Unknown" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:209 +msgid "Unknown Column: {0}" +msgstr "" + +#: frappe/utils/data.py:1256 +msgid "Unknown Rounding Method: {}" +msgstr "" + +#: frappe/auth.py:319 +msgid "Unknown User" +msgstr "" + +#: frappe/utils/csvutils.py:54 +msgid "Unknown file encoding. Tried to use: {0}" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.js:7 +msgid "Unlock Reference Document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 +#: frappe/website/doctype/web_form/web_form.js:86 +msgid "Unpublish" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue' +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Unread" +msgstr "" + +#. Label of the unread_notification_sent (Check) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Unread Notification Sent" +msgstr "" + +#: frappe/utils/safe_exec.py:498 +msgid "Unsafe SQL query" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:159 +#: frappe/public/js/frappe/form/controls/multicheck.js:166 +msgid "Unselect All" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Unshared" +msgstr "" + +#: frappe/email/queue.py:67 +msgid "Unsubscribe" +msgstr "" + +#. Label of the unsubscribe_method (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Unsubscribe Method" +msgstr "" + +#. Label of the unsubscribe_params (Code) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Unsubscribe Params" +msgstr "" + +#. Label of the unsubscribed (Check) field in DocType 'Contact' +#. Label of the unsubscribed (Check) field in DocType 'User' +#. Label of the unsubscribed (Check) field in DocType 'Email Group Member' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/email_group_member/email_group_member.json +#: frappe/email/queue.py:123 +msgid "Unsubscribed" +msgstr "" + +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:72 +msgid "Untitled Column" +msgstr "" + +#: frappe/core/doctype/file/file.js:38 +msgid "Unzip" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:132 +msgid "Unzipped {0} files" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:125 +msgid "Unzipping files..." +msgstr "" + +#: frappe/desk/doctype/event/event.py:273 +msgid "Upcoming Events for Today" +msgstr "" + +#. Label of the update (Button) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/data_import/data_import_list.js:36 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:23 +#: frappe/custom/doctype/customize_form/customize_form.js:438 +#: frappe/desk/doctype/bulk_update/bulk_update.js:15 +#: frappe/printing/page/print_format_builder/print_format_builder.js:447 +#: frappe/printing/page/print_format_builder/print_format_builder.js:507 +#: frappe/printing/page/print_format_builder/print_format_builder.js:678 +#: frappe/printing/page/print_format_builder/print_format_builder.js:765 +#: frappe/public/js/frappe/form/grid_row.js:428 +msgid "Update" +msgstr "" + +#. Label of the update_amendment_naming (Button) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Update Amendment Naming" +msgstr "" + +#. Option for the 'Import Type' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Update Existing Records" +msgstr "" + +#. Label of the update_field (Select) field in DocType 'Workflow Document +#. State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Update Field" +msgstr "" + +#: frappe/core/doctype/installed_applications/installed_applications.js:6 +#: frappe/core/doctype/installed_applications/installed_applications.js:13 +msgid "Update Hooks Resolution Order" +msgstr "" + +#: frappe/core/doctype/installed_applications/installed_applications.js:45 +msgid "Update Order" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:494 +msgid "Update Password" +msgstr "" + +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + +#. Label of the update_series (Section Break) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Update Series Counter" +msgstr "" + +#. Label of the update_series_start (Button) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Update Series Number" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Update Settings" +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:13 +msgid "Update Translations" +msgstr "" + +#. Label of the update_value (Small Text) field in DocType 'Bulk Update' +#. Label of the update_value (Data) field in DocType 'Workflow Document State' +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Update Value" +msgstr "" + +#: frappe/utils/change_log.py:381 +msgid "Update from Frappe Cloud" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:375 +msgid "Update {0} records" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'Permission Log' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 +#: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 +#: frappe/public/js/frappe/web_form/web_form.js:451 +msgid "Updated" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.js:32 +msgid "Updated Successfully" +msgstr "" + +#: frappe/public/js/frappe/desk.js:446 +msgid "Updated To A New Version 🎉" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:372 +msgid "Updated successfully" +msgstr "" + +#: frappe/utils/response.py:335 +msgid "Updating" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:11 +msgctxt "Freeze message while updating a document" +msgid "Updating" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:49 +msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run." +msgstr "" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:17 +msgid "Updating counter may lead to document name conflicts if not done properly" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.py:23 +msgid "Updating global settings" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59 +msgid "Updating naming series options" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:136 +msgid "Updating related fields..." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:95 +msgid "Updating {0}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:36 +msgid "Updating {0} of {1}, {2}" +msgstr "" + +#: frappe/public/js/billing.bundle.js:131 +msgid "Upgrade plan" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.js:331 +msgid "Upgrade your support experience with Frappe Helpdesk" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 +#: frappe/public/js/frappe/form/grid.js:66 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:13 +msgid "Upload" +msgstr "" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:93 +msgid "Upload Image" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 +msgid "Upload file" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 +msgid "Upload {0} files" +msgstr "" + +#. Label of the uploaded_to_dropbox (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Uploaded To Dropbox" +msgstr "" + +#. Label of the uploaded_to_google_drive (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Uploaded To Google Drive" +msgstr "" + +#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#, python-format +msgid "Use % for any non empty value." +msgstr "" + +#. Label of the ascii_encode_password (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Use ASCII encoding for password" +msgstr "" + +#. Label of the use_first_day_of_period (Check) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Use First Day of Period" +msgstr "" + +#. Label of the use_html (Check) field in DocType 'Email Template' +#: frappe/email/doctype/email_template/email_template.json +msgid "Use HTML" +msgstr "" + +#. Label of the use_imap (Check) field in DocType 'Email Account' +#. Label of the use_imap (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Use IMAP" +msgstr "" + +#. Label of the use_number_format_from_currency (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Use Number Format from Currency" +msgstr "" + +#. Label of the use_post (Check) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Use POST" +msgstr "" + +#. Label of the use_report_chart (Check) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Use Report Chart" +msgstr "" + +#. Label of the use_ssl (Check) field in DocType 'Email Account' +#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Account' +#. Label of the use_ssl (Check) field in DocType 'Email Domain' +#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Use SSL" +msgstr "" + +#. Label of the use_starttls (Check) field in DocType 'Email Account' +#. Label of the use_starttls (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Use STARTTLS" +msgstr "" + +#. Label of the use_tls (Check) field in DocType 'Email Account' +#. Label of the use_tls (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Use TLS" +msgstr "" + +#: frappe/utils/password_strength.py:44 +msgid "Use a few words, avoid common phrases." +msgstr "" + +#. Label of the login_id_is_different (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Use different Email ID" +msgstr "" + +#. Description of the 'Detect CSV type' (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Use if the default settings don't seem to detect your data correctly" +msgstr "" + +#: frappe/model/db_query.py:411 +msgid "Use of sub-query or function is restricted" +msgstr "" + +#: frappe/printing/page/print/print.js:292 +msgid "Use the new Print Format Builder" +msgstr "" + +#. Description of the 'Title Field' (Data) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Use this fieldname to generate title" +msgstr "" + +#. Description of the 'Always BCC Address' (Data) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Use this, for example, if all sent emails should also be send to an archive." +msgstr "" + +#. Label of the used_oauth (Check) field in DocType 'User Email' +#: frappe/core/doctype/user_email/user_email.json +msgid "Used OAuth" +msgstr "" + +#. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' +#. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' +#. Label of the user (Link) field in DocType 'Activity Log' +#. Label of the user (Link) field in DocType 'API Request Log' +#. Label of the user (Link) field in DocType 'Communication' +#. Label of the user (Link) field in DocType 'DocShare' +#. Label of the user (Link) field in DocType 'Log Setting User' +#. Label of the user (Link) field in DocType 'Permission Inspector' +#. Name of a DocType +#. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 'Note Seen By' +#. Label of the user (Link) field in DocType 'Notification Settings' +#. Label of the user (Link) field in DocType 'Route History' +#. Label of the user (Link) field in DocType 'Document Follow' +#. Label of the user (Link) field in DocType 'Google Calendar' +#. Label of the user (Link) field in DocType 'OAuth Authorization Code' +#. Label of the user (Link) field in DocType 'OAuth Bearer Token' +#. Label of the user (Link) field in DocType 'OAuth Client' +#. Label of the user (Link) field in DocType 'Token Cache' +#. Label of the user (Link) field in DocType 'Webhook Request Log' +#. Label of the user (Link) field in DocType 'Personal Data Download Request' +#. Label of the user (Link) field in DocType 'Workflow Action' +#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/log_setting_user/log_setting_user.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 +#: frappe/core/workspace/users/users.json +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +#: frappe/desk/doctype/note_seen_by/note_seen_by.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/desk/doctype/route_history/route_history.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/form/templates/set_sharing.html:3 +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "User" +msgstr "" + +#: frappe/core/doctype/has_role/has_role.py:25 +msgid "User '{0}' already has the role '{1}'" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/report/user_activity_report.json +msgid "User Activity Report" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/report/user_activity_report_without_sort.json +msgid "User Activity Report Without Sort" +msgstr "" + +#. Label of the user_agent (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "User Agent" +msgstr "" + +#. Label of the in_create (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "User Cannot Create" +msgstr "" + +#. Label of the read_only (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "User Cannot Search" +msgstr "" + +#: frappe/public/js/frappe/desk.js:550 +msgid "User Changed" +msgstr "" + +#. Label of the defaults (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Defaults" +msgstr "" + +#. Label of the user_details_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Details" +msgstr "" + +#. Name of a report +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.json +msgid "User Doctype Permissions" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "User Document Type" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:98 +msgid "User Document Types Limit Exceeded" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_email/user_email.json +msgid "User Email" +msgstr "" + +#. Label of the user_emails (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Emails" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_group/user_group.json +msgid "User Group" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_group_member/user_group_member.json +msgid "User Group Member" +msgstr "" + +#. Label of the user_group_members (Table MultiSelect) field in DocType 'User +#. Group' +#: frappe/core/doctype/user_group/user_group.json +msgid "User Group Members" +msgstr "" + +#. Label of the userid (Data) field in DocType 'User Social Login' +#: frappe/core/doctype/user_social_login/user_social_login.json +msgid "User ID" +msgstr "" + +#. Label of the user_id_property (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "User ID Property" +msgstr "" + +#. Label of the user (Link) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "User Id" +msgstr "" + +#. Label of the user_id_field (Select) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "User Id Field" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:283 +msgid "User Id Field is mandatory in the user type {0}" +msgstr "" + +#. Label of the user_image (Attach Image) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Image" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:115 +msgid "User Menu" +msgstr "" + +#. Label of the user_name (Data) field in DocType 'Personal Data Download +#. Request' +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +msgid "User Name" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_permission/user_permission.json +msgid "User Permission" +msgstr "" + +#. Label of a Link in the Users Workspace +#: frappe/core/page/permission_manager/permission_manager_help.html:30 +#: frappe/core/workspace/users/users.json +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 +msgid "User Permissions" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1924 +msgctxt "Button in list view menu" +msgid "User Permissions" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:32 +msgid "User Permissions are used to limit users to specific records." +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:124 +msgid "User Permissions created successfully" +msgstr "" + +#. Name of a DocType +#. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgid "User Role" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_role_profile/user_role_profile.json +msgid "User Role Profile" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_select_document_type/user_select_document_type.json +msgid "User Select Document Type" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +msgid "User Settings" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_social_login/user_social_login.json +msgid "User Social Login" +msgstr "" + +#. Label of the _user_tags (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "User Tags" +msgstr "" + +#. Label of the user_type (Link) field in DocType 'User' +#. Name of a DocType +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type/user_type.py:83 +msgid "User Type" +msgstr "" + +#. Label of the user_type_modules (Table) field in DocType 'User Type' +#. Name of a DocType +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type_module/user_type_module.json +msgid "User Type Module" +msgstr "" + +#. Description of the 'Allow Login using Mobile Number' (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "User can login using Email id or Mobile number" +msgstr "" + +#. Description of the 'Allow Login using User Name' (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "User can login using Email id or User Name" +msgstr "" + +#: frappe/templates/includes/login/login.js:292 +msgid "User does not exist." +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:83 +msgid "User does not have permission to create the new {0}" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:56 +msgid "User is mandatory for Share" +msgstr "" + +#. Label of the user_must_always_select (Check) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "User must always select" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission.py:60 +msgid "User permission already exists" +msgstr "" + +#: frappe/www/login.py:171 +msgid "User with email address {0} does not exist" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:225 +msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." +msgstr "" + +#: frappe/core/doctype/user/user.py:538 +msgid "User {0} cannot be deleted" +msgstr "" + +#: frappe/core/doctype/user/user.py:328 +msgid "User {0} cannot be disabled" +msgstr "" + +#: frappe/core/doctype/user/user.py:611 +msgid "User {0} cannot be renamed" +msgstr "" + +#: frappe/permissions.py:139 +msgid "User {0} does not have access to this document" +msgstr "" + +#: frappe/permissions.py:162 +msgid "User {0} does not have doctype access via role permission for document {1}" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:275 +msgid "User {0} does not have the permission to create a Workspace." +msgstr "" + +#: frappe/templates/emails/data_deletion_approval.html:1 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:112 +msgid "User {0} has requested for data deletion" +msgstr "" + +#: frappe/core/doctype/user/user.py:1384 +msgid "User {0} impersonated as {1}" +msgstr "" + +#: frappe/utils/oauth.py:269 +msgid "User {0} is disabled" +msgstr "" + +#: frappe/sessions.py:243 +msgid "User {0} is disabled. Please contact your System Manager." +msgstr "" + +#: frappe/desk/form/assign_to.py:104 +msgid "User {0} is not permitted to access this document." +msgstr "" + +#. Label of the userinfo_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Userinfo URI" +msgstr "" + +#. Label of the username (Data) field in DocType 'User' +#. Label of the username (Data) field in DocType 'User Social Login' +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_social_login/user_social_login.json +#: frappe/www/login.py:110 +msgid "Username" +msgstr "" + +#: frappe/core/doctype/user/user.py:700 +msgid "Username {0} already exists" +msgstr "" + +#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule' +#. Name of a Workspace +#. Label of a Card Break in the Users Workspace +#. Label of the users_section (Section Break) field in DocType 'System Health +#. Report' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/core/workspace/users/users.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Users" +msgstr "" + +#. Description of the 'Protect Attached Files' (Check) field in DocType +#. 'DocType' +#. Description of the 'Protect Attached Files' (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Users are only able to delete attached files if the document is either in draft or if the document is canceled and they are also able to delete the document." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:355 +msgid "Users with role {0}:" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:70 +msgid "Uses system's theme to switch between light and dark mode" +msgstr "" + +#: frappe/public/js/frappe/desk.js:154 +msgid "Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand." +msgstr "" + +#. Label of the utilization (Percent) field in DocType 'System Health Report +#. Workers' +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "Utilization" +msgstr "" + +#. Label of the utilization_percent (Percent) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Utilization %" +msgstr "" + +#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization +#. Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Valid" +msgstr "" + +#: frappe/templates/includes/login/login.js:52 +#: frappe/templates/includes/login/login.js:65 +msgid "Valid Login id required." +msgstr "" + +#: frappe/templates/includes/login/login.js:39 +msgid "Valid email and name required" +msgstr "" + +#. Label of the validate_action (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Validate Field" +msgstr "" + +#. Label of the validate_frappe_mail_settings (Button) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Validate Frappe Mail Settings" +msgstr "" + +#. Label of the validate_ssl_certificate (Check) field in DocType 'Email +#. Account' +#. Label of the validate_ssl_certificate (Check) field in DocType 'Email +#. Domain' +#. Label of the validate_ssl_certificate_for_outgoing (Check) field in DocType +#. 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Validate SSL Certificate" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:384 +msgid "Validation Error" +msgstr "" + +#. Label of the validity (Select) field in DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Validity" +msgstr "" + +#. Label of the value (Data) field in DocType 'Milestone' +#. Label of the defvalue (Text) field in DocType 'DefaultValue' +#. Label of the value (Data) field in DocType 'Document Naming Rule Condition' +#. Label of the value (Data) field in DocType 'SMS Parameter' +#. Label of the value (Data) field in DocType 'Query Parameters' +#. Label of the value (Small Text) field in DocType 'Webhook Header' +#. Label of the value (Text) field in DocType 'Website Meta Tag' +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/core/doctype/defaultvalue/defaultvalue.json +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +#: frappe/core/doctype/prepared_report/prepared_report.js:8 +#: frappe/core/doctype/sms_parameter/sms_parameter.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:95 +#: frappe/integrations/doctype/query_parameters/query_parameters.json +#: frappe/integrations/doctype/webhook_header/webhook_header.json +#: frappe/public/js/frappe/list/bulk_operations.js:336 +#: frappe/public/js/frappe/list/bulk_operations.js:398 +#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4 +#: frappe/website/doctype/web_form/web_form.js:197 +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json +msgid "Value" +msgstr "" + +#. Label of the value_based_on (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Value Based On" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value Change" +msgstr "" + +#. Label of the value_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value Changed" +msgstr "" + +#. Label of the property_value (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value To Be Set" +msgstr "" + +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 +msgid "Value cannot be changed for {0}" +msgstr "" + +#: frappe/model/document.py:781 +msgid "Value cannot be negative for" +msgstr "" + +#: frappe/model/document.py:785 +msgid "Value cannot be negative for {0}: {1}" +msgstr "" + +#: frappe/custom/doctype/property_setter/property_setter.js:7 +msgid "Value for a check field can be either 0 or 1" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:616 +msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" +msgstr "" + +#: frappe/model/base_document.py:502 +msgid "Value for {0} cannot be a list" +msgstr "" + +#. Description of the 'Due Date Based On' (Select) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Value from this field will be set as the due date in the ToDo" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:714 +msgid "Value must be one of {0}" +msgstr "" + +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "" + +#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Value to Validate" +msgstr "" + +#: frappe/model/base_document.py:1185 +msgid "Value too big" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:727 +msgid "Value {0} missing for {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 +msgid "Value {0} must be in the valid duration format: d h m s" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:745 +#: frappe/core/doctype/data_import/importer.py:760 +msgid "Value {0} must in {1} format" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:9 +msgid "Values Changed" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Verdana" +msgstr "" + +#: frappe/templates/includes/login/login.js:333 +msgid "Verification" +msgstr "" + +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 +msgid "Verification Code" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:10 +msgid "Verification Link" +msgstr "" + +#: frappe/templates/includes/login/login.js:383 +msgid "Verification code email not sent. Please contact Administrator." +msgstr "" + +#: frappe/twofactor.py:248 +msgid "Verification code has been sent to your registered email address." +msgstr "" + +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Verified" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:359 +#: frappe/templates/includes/login/login.js:337 +msgid "Verify" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:358 +msgid "Verify Password" +msgstr "" + +#: frappe/templates/includes/login/login.js:171 +msgid "Verifying..." +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/version/version.json +msgid "Version" +msgstr "" + +#: frappe/public/js/frappe/desk.js:166 +msgid "Version Updated" +msgstr "" + +#. Label of the video_url (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Video URL" +msgstr "" + +#. Label of the view_name (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "View" +msgstr "" + +#: frappe/core/doctype/success_action/success_action.js:60 +#: frappe/public/js/frappe/form/success_action.js:89 +msgid "View All" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:580 +msgid "View Audit Trail" +msgstr "" + +#: frappe/core/doctype/user/user.js:144 +msgid "View Doctype Permissions" +msgstr "" + +#: frappe/core/doctype/file/file.js:4 +msgid "View File" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:220 +msgid "View Full Log" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:486 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:258 +msgid "View List" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/view_log/view_log.json +msgid "View Log" +msgstr "" + +#: frappe/core/doctype/user/user.js:135 +#: frappe/core/doctype/user_permission/user_permission.js:24 +msgid "View Permitted Documents" +msgstr "" + +#. Label of the view_properties (Button) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "View Properties (via Customize Form)" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "View Report" +msgstr "" + +#. Label of the view_settings (Section Break) field in DocType 'DocType' +#. Label of the view_settings_section (Section Break) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "View Settings" +msgstr "" + +#. Label of the view_switcher (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "View Switcher" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +#: frappe/website/doctype/website_settings/website_settings.js:16 +msgid "View Website" +msgstr "" + +#: frappe/www/confirm_workflow_action.html:12 +msgid "View document" +msgstr "" + +#: frappe/templates/emails/auto_email_report.html:60 +msgid "View report in your browser" +msgstr "" + +#: frappe/templates/emails/print_link.html:2 +msgid "View this in your browser" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:478 +msgctxt "Button in web form" +msgid "View your response" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:43 +#: frappe/desk/doctype/calendar_view/calendar_view_list.js:10 +#: frappe/desk/doctype/dashboard/dashboard_list.js:10 +msgid "View {0}" +msgstr "" + +#. Label of the viewed_by (Data) field in DocType 'View Log' +#: frappe/core/doctype/view_log/view_log.json +msgid "Viewed By" +msgstr "" + +#. Group in DocType's connections +#. Label of a Card Break in the Build Workspace +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/workspace/build/build.json +msgid "Views" +msgstr "" + +#. Label of the is_virtual (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Virtual" +msgstr "" + +#: frappe/model/virtual_doctype.py:76 +msgid "Virtual DocType {} requires a static method called {} found {}" +msgstr "" + +#: frappe/model/virtual_doctype.py:89 +msgid "Virtual DocType {} requires overriding an instance method called {} found {}" +msgstr "" + +#. Label of the visibility_section (Section Break) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Visibility" +msgstr "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:41 +msgid "Visible to website/portal users." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Visit" +msgstr "" + +#: frappe/website/doctype/website_route_meta/website_route_meta.js:7 +msgid "Visit Web Page" +msgstr "" + +#. Label of the visitor_id (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Visitor ID" +msgstr "" + +#: frappe/templates/discussions/reply_section.html:39 +msgid "Want to discuss?" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Warehouse" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Warning" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:217 +msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1126 +msgid "Warning: Naming is not set" +msgstr "" + +#: frappe/public/js/frappe/model/meta.js:182 +msgid "Warning: Unable to find {0} in any table related to {1}" +msgstr "" + +#. Description of the 'Counter' (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Warning: Updating counter may lead to document name conflicts if not done properly" +msgstr "" + +#: frappe/website/doctype/help_article/templates/help_article.html:24 +msgid "Was this article helpful?" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:127 +msgid "Watch Tutorial" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Watch Video" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.js:34 +msgid "We do not allow editing of this document. Simply click the Edit button on the workspace page to make your workspace editable and customize it as you wish" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:2 +msgid "We have received a request for deletion of {0} data associated with: {1}" +msgstr "" + +#: frappe/templates/emails/download_data.html:2 +msgid "We have received a request from you to download your {0} data associated with: {1}" +msgstr "" + +#: frappe/www/attribution.html:12 +msgid "We would like to thank the authors of these packages for their contribution." +msgstr "" + +#: frappe/www/contact.py:50 +msgid "We've received your query!" +msgstr "" + +#: frappe/public/js/frappe/form/controls/password.js:87 +msgid "Weak" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/workspace/website/website.json +msgid "Web Form" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Web Form Field" +msgstr "" + +#. Label of the web_form_fields (Table) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Web Form Fields" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +msgid "Web Form List Column" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/workspace/website/website.json +msgid "Web Page" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Web Page Block" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1749 +msgid "Web Page URL" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Web Page View" +msgstr "" + +#. Label of a Card Break in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "Web Site" +msgstr "" + +#. Label of the web_template (Link) field in DocType 'Web Page Block' +#. Name of a DocType +#: frappe/website/doctype/web_page_block/web_page_block.json +#: frappe/website/doctype/web_template/web_template.json +msgid "Web Template" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Web Template Field" +msgstr "" + +#. Label of the web_template_values (Code) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Web Template Values" +msgstr "" + +#: frappe/utils/jinja_globals.py:48 +msgid "Web Template is not specified" +msgstr "" + +#. Label of the web_view (Tab Break) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Web View" +msgstr "" + +#. Name of a DocType +#. Label of the webhook (Link) field in DocType 'Webhook Request Log' +#. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Webhook" +msgstr "" + +#. Label of the sb_webhook_data (Section Break) field in DocType 'Webhook' +#. Name of a DocType +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_data/webhook_data.json +msgid "Webhook Data" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/webhook_header/webhook_header.json +msgid "Webhook Header" +msgstr "" + +#. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Headers" +msgstr "" + +#. Label of the sb_webhook (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Request" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Webhook Request Log" +msgstr "" + +#. Label of the webhook_secret (Password) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Secret" +msgstr "" + +#. Label of the sb_security (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Security" +msgstr "" + +#. Label of the sb_condition (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Trigger" +msgstr "" + +#. Label of the webhook_url (Data) field in DocType 'Slack Webhook URL' +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +msgid "Webhook URL" +msgstr "" + +#. Group in Module Def's connections +#. Name of a Workspace +#: frappe/core/doctype/module_def/module_def.json +#: frappe/public/js/frappe/ui/apps_switcher.js:125 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +#: frappe/website/workspace/website/website.json +msgid "Website" +msgstr "" + +#. Name of a report +#: frappe/website/report/website_analytics/website_analytics.json +msgid "Website Analytics" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/comment/comment.json +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/website/doctype/color/color.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/doctype/portal_settings/portal_settings.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_script/website_script.json +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/doctype/website_sidebar/website_sidebar.json +#: frappe/website/doctype/website_slideshow/website_slideshow.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Website Manager" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json +msgid "Website Meta Tag" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_route_meta/website_route_meta.json +#: frappe/website/workspace/website/website.json +msgid "Website Route Meta" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +msgid "Website Route Redirect" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_script/website_script.json +#: frappe/website/workspace/website/website.json +msgid "Website Script" +msgstr "" + +#. Label of the website_search_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Website Search Field" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1523 +msgid "Website Search Field must be a valid fieldname" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/workspace/website/website.json +msgid "Website Settings" +msgstr "" + +#. Label of the website_sidebar (Link) field in DocType 'Web Form' +#. Label of the website_sidebar (Link) field in DocType 'Web Page' +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_sidebar/website_sidebar.json +#: frappe/website/workspace/website/website.json +msgid "Website Sidebar" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Website Sidebar Item" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_slideshow/website_slideshow.json +#: frappe/website/workspace/website/website.json +msgid "Website Slideshow" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "Website Slideshow Item" +msgstr "" + +#. Label of the website_theme (Link) field in DocType 'Website Settings' +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/doctype/website_theme/website_theme.json +#: frappe/website/workspace/website/website.json +msgid "Website Theme" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json +msgid "Website Theme Ignore App" +msgstr "" + +#. Label of the website_theme_image (Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Website Theme Image" +msgstr "" + +#. Label of the website_theme_image_link (Code) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Website Theme image link" +msgstr "" + +#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Websocket" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the wednesday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Wednesday" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:276 +msgid "Week" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Weekdays" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Frequency' (Select) field in DocType 'User' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:399 +#: frappe/website/report/website_analytics/website_analytics.js:24 +msgid "Weekly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Weekly Long" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:384 +msgid "Welcome" +msgstr "" + +#. Label of the welcome_email_template (Link) field in DocType 'System +#. Settings' +#. Label of the welcome_email_template (Link) field in DocType 'Email Group' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/email/doctype/email_group/email_group.json +msgid "Welcome Email Template" +msgstr "" + +#. Label of the welcome_url (Data) field in DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Welcome URL" +msgstr "" + +#. Name of a Workspace +#: frappe/core/workspace/welcome_workspace/welcome_workspace.json +msgid "Welcome Workspace" +msgstr "" + +#: frappe/core/doctype/user/user.py:416 +msgid "Welcome email sent" +msgstr "" + +#: frappe/core/doctype/user/user.py:477 +msgid "Welcome to {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:62 +msgid "What's New" +msgstr "" + +#. Description of the 'Allow Guests to Upload Files' (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "When enabled this will allow guests to upload files to your application, You can enable this if you wish to collect files from user without having them to log in, for example in job applications web form." +msgstr "" + +#. Description of the 'Store Attached PDF Document' (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "When sending document using email, store the PDF on Communication. Warning: This can increase your storage usage." +msgstr "" + +#. Description of the 'Force Web Capture Mode for Uploads' (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:18 +msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number." +msgstr "" + +#. Description of the 'DocType View' (Select) field in DocType 'Workspace +#. Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:481 +msgid "Which view of the associated DocType should this shortcut take you to?" +msgstr "" + +#. Label of the width (Data) field in DocType 'DocField' +#. Label of the width (Int) field in DocType 'Report Column' +#. Label of the width (Data) field in DocType 'Custom Field' +#. Label of the width (Data) field in DocType 'Customize Form Field' +#. Label of the width (Select) field in DocType 'Dashboard Chart Link' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8 +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11 +msgid "Width" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:2 +msgid "Widths can be set in px or %." +msgstr "" + +#. Label of the wildcard_filter (Check) field in DocType 'Report Filter' +#: frappe/core/doctype/report_filter/report_filter.json +msgid "Wildcard Filter" +msgstr "" + +#. Description of the 'Wildcard Filter' (Check) field in DocType 'Report +#. Filter' +#: frappe/core/doctype/report_filter/report_filter.json +msgid "Will add \"%\" before and after the query" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:485 +msgid "Will be your login ID" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:424 +msgid "Will only be shown if section headings are enabled" +msgstr "" + +#. Description of the 'Run Jobs only Daily if Inactive For (Days)' (Int) field +#. in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:45 +msgid "With Letter head" +msgstr "" + +#. Label of the worker_information_section (Section Break) field in DocType 'RQ +#. Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Worker Information" +msgstr "" + +#. Label of the worker_name (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Worker Name" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Group in DocType's connections +#. Name of a DocType +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/public/js/workflow_builder/store.js:129 +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_action/workflow_action.json +#: frappe/workflow/doctype/workflow_action/workflow_action.py:444 +msgid "Workflow Action" +msgstr "" + +#. Name of a DocType +#. Description of a DocType +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json +msgid "Workflow Action Master" +msgstr "" + +#. Label of the workflow_action_name (Data) field in DocType 'Workflow Action +#. Master' +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json +msgid "Workflow Action Name" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json +msgid "Workflow Action Permitted Role" +msgstr "" + +#. Description of the 'Is Optional State' (Check) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Workflow Action is not created for optional states" +msgstr "" + +#: frappe/public/js/workflow_builder/store.js:129 +#: frappe/workflow/doctype/workflow/workflow.js:25 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:4 +msgid "Workflow Builder" +msgstr "" + +#. Label of the workflow_builder_id (Data) field in DocType 'Workflow Document +#. State' +#. Label of the workflow_builder_id (Data) field in DocType 'Workflow +#. Transition' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Workflow Builder ID" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:11 +msgid "Workflow Builder allows you to create workflows visually. You can drag and drop states and link them to create transitions. Also you can update thieir properties from the sidebar." +msgstr "" + +#. Label of the workflow_data (JSON) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow Data" +msgstr "" + +#: frappe/public/js/workflow_builder/components/Properties.vue:44 +msgid "Workflow Details" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Workflow Document State" +msgstr "" + +#. Label of the workflow_name (Data) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow Name" +msgstr "" + +#. Label of the workflow_state (Data) field in DocType 'Workflow Action' +#. Name of a DocType +#: frappe/workflow/doctype/workflow_action/workflow_action.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow State" +msgstr "" + +#. Label of the workflow_state_field (Data) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow State Field" +msgstr "" + +#: frappe/model/workflow.py:64 +msgid "Workflow State not set" +msgstr "" + +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 +msgid "Workflow State transition not allowed from {0} to {1}" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:140 +msgid "Workflow States Don't Exist" +msgstr "" + +#: frappe/model/workflow.py:384 +msgid "Workflow Status" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Workflow Transition" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + +#. Description of a DocType +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow state represents the current state of a document." +msgstr "" + +#: frappe/public/js/workflow_builder/store.js:83 +msgid "Workflow updated successfully" +msgstr "" + +#. Label of the workspace_section (Section Break) field in DocType 'User' +#. Label of a Link in the Build Workspace +#. Name of a DocType +#. Option for the 'Type' (Select) field in DocType 'Workspace' +#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 +#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/views/workspace/workspace.js:10 +msgid "Workspace" +msgstr "" + +#: frappe/public/js/frappe/router.js:180 +msgid "Workspace {0} does not exist" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_chart/workspace_chart.json +msgid "Workspace Chart" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json +msgid "Workspace Custom Block" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Workspace Link" +msgstr "" + +#. Name of a role +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Manager" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json +msgid "Workspace Number Card" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +msgid "Workspace Quick List" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#. Name of a DocType +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +#: frappe/hooks.py +msgid "Workspace Settings" +msgstr "" + +#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace +#. Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Setup Completed" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Workspace Shortcut" +msgstr "" + +#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace +#. Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Visibility" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:538 +msgid "Workspace {0} created" +msgstr "" + +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Workspaces" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:757 +msgid "Would you like to publish this comment? This means it will become visible to website/portal users." +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 +msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.py:41 +msgid "Wrapping up" +msgstr "" + +#. Label of the write (Check) field in DocType 'Custom DocPerm' +#. Label of the write (Check) field in DocType 'DocPerm' +#. Label of the write (Check) field in DocType 'DocShare' +#. Label of the write (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "Write" +msgstr "" + +#: frappe/model/base_document.py:1011 +msgid "Wrong Fetch From value" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:495 +msgid "X Axis Field" +msgstr "" + +#. Label of the x_field (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "X Field" +msgstr "" + +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "XLSX" +msgstr "" + +#. Label of the y_axis (Table) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Y Axis" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:502 +msgid "Y Axis Fields" +msgstr "" + +#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' +#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json +#: frappe/public/js/frappe/views/reports/query_report.js:1233 +msgid "Y Field" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Yahoo Mail" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Yandex.Mail" +msgstr "" + +#. Label of the heatmap_year (Select) field in DocType 'Dashboard Chart' +#. Label of the year (Data) field in DocType 'Company History' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/doctype/company_history/company_history.json +msgid "Year" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:403 +msgid "Yearly" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Yellow" +msgstr "" + +#. Option for the 'Standard' (Select) field in DocType 'Page' +#. Option for the 'Is Standard' (Select) field in DocType 'Report' +#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP +#. Settings' +#. Option for the 'Standard' (Select) field in DocType 'Print Format' +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:498 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 +#: frappe/website/doctype/help_article/templates/help_article.html:25 +msgid "Yes" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:32 +msgctxt "Approve confirmation dialog" +msgid "Yes" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:545 +msgctxt "Checkbox is checked" +msgid "Yes" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:727 +msgid "Yesterday" +msgstr "" + +#: frappe/public/js/frappe/utils/user.js:33 +msgctxt "Name of the current user. For example: You edited this 5 hours ago." +msgid "You" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:463 +msgid "You Liked" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + +#: frappe/public/js/frappe/dom.js:438 +msgid "You are connected to internet." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:20 +msgid "You are impersonating as another user." +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:28 +msgid "You are not allowed to access this resource" +msgstr "" + +#: frappe/permissions.py:431 +msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" +msgstr "" + +#: frappe/permissions.py:420 +msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:68 +msgid "You are not allowed to create columns" +msgstr "" + +#: frappe/core/doctype/report/report.py:97 +msgid "You are not allowed to delete Standard Report" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.py:73 +msgid "You are not allowed to delete a standard Website Theme" +msgstr "" + +#: frappe/core/doctype/report/report.py:391 +msgid "You are not allowed to edit the report." +msgstr "" + +#: frappe/core/doctype/data_import/exporter.py:121 +#: frappe/core/doctype/data_import/exporter.py:125 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 +#: frappe/permissions.py:626 +msgid "You are not allowed to export {} doctype" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:450 +msgid "You are not allowed to print this report" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:787 +msgid "You are not allowed to send emails related to this document" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:632 +msgid "You are not allowed to update this Web Form Document" +msgstr "" + +#: frappe/public/js/frappe/request.js:37 +msgid "You are not connected to Internet. Retry after sometime." +msgstr "" + +#: frappe/public/js/frappe/web_form/webform_script.js:22 +msgid "You are not permitted to access this page without login." +msgstr "" + +#: frappe/www/app.py:27 +msgid "You are not permitted to access this page." +msgstr "" + +#: frappe/__init__.py:465 +msgid "You are not permitted to access this resource. Login to access" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/document_follow.js:131 +msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." +msgstr "" + +#: frappe/core/doctype/installed_applications/installed_applications.py:117 +msgid "You are only allowed to update order, do not remove or add apps." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:284 +msgid "You are selecting Sync Option as ALL, It will resync all read as well as unread message from server. This may also cause the duplication of Communication (emails)." +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:414 +msgctxt "Form timeline" +msgid "You attached {0}" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:749 +msgid "You can add dynamic properties from the document by using Jinja templating." +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:32 +msgid "You can also access wkhtmltopdf variables (valid only in PDF print):" +msgstr "" + +#: frappe/templates/emails/new_user.html:22 +msgid "You can also copy-paste following link in your browser" +msgstr "" + +#: frappe/templates/emails/download_data.html:9 +msgid "You can also copy-paste this" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:11 +msgid "You can also copy-paste this {0} to your browser" +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:8 +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 "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:194 +msgid "You can continue with the onboarding after exploring this page" +msgstr "" + +#: frappe/model/delete_doc.py:177 +msgid "You can disable this {0} instead of deleting it." +msgstr "" + +#: frappe/core/doctype/file/file.py:761 +msgid "You can increase the limit from System Settings." +msgstr "" + +#: frappe/utils/synchronization.py:48 +msgid "You can manually remove the lock if you think it's safe: {}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/markdown_editor.js:75 +msgid "You can only insert images in Markdown fields" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:42 +msgid "You can only print upto {0} documents at a time" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:104 +msgid "You can only set the 3 custom doctypes in the Document Types table." +msgstr "" + +#: frappe/handler.py:183 +msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:199 +msgid "You can only upload upto 5000 records in one go. (may be less in some cases)" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "You can select one from the following," +msgstr "" + +#. Description of the 'Rate limit for email link login' (Int) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "You can set a high value here if multiple users will be logging in from the same network." +msgstr "" + +#: frappe/desk/query_report.py:382 +msgid "You can try changing the filters of your report." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:27 +msgid "You can use Customize Form to set levels on fields." +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:30 +msgid "You can use wildcard %" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:394 +msgid "You can't set 'Options' for field {0}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:398 +msgid "You can't set 'Translatable' for field {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:74 +msgctxt "Form timeline" +msgid "You cancelled this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:61 +msgctxt "Form timeline" +msgid "You cancelled this document {1}" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:417 +msgid "You cannot create a dashboard chart from single DocTypes" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:390 +msgid "You cannot unset 'Read Only' for field {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125 +msgid "You changed the value of {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114 +msgid "You changed the value of {0} {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:191 +msgid "You changed the values for {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:180 +msgid "You changed the values for {0} {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:443 +msgctxt "Form timeline" +msgid "You changed {0} to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:140 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:94 +msgid "You created this" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 +msgctxt "Form timeline" +msgid "You created this document {0}" +msgstr "" + +#: frappe/client.py:417 +msgid "You do not have Read or Select Permissions for {}" +msgstr "" + +#: frappe/public/js/frappe/request.js:177 +msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." +msgstr "" + +#: frappe/app.py:384 +msgid "You do not have enough permissions to complete the action" +msgstr "" + +#: frappe/database/query.py:531 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:923 +msgid "You do not have permission to access {0}: {1}." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:960 +msgid "You do not have permissions to cancel all linked documents." +msgstr "" + +#: frappe/desk/query_report.py:43 +msgid "You don't have access to Report: {0}" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:835 +msgid "You don't have permission to access the {0} DocType." +msgstr "" + +#: frappe/utils/response.py:289 frappe/utils/response.py:293 +msgid "You don't have permission to access this file" +msgstr "" + +#: frappe/desk/query_report.py:49 +msgid "You don't have permission to get a report on: {0}" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:175 +msgid "You don't have the permissions to access this document" +msgstr "" + +#: frappe/templates/emails/new_message.html:1 +msgid "You have a new message from:" +msgstr "" + +#: frappe/handler.py:119 +msgid "You have been successfully logged out" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:247 +msgid "You have hit the row size limit on database table: {0}" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:412 +msgid "You have not entered a value. The field will be set to empty." +msgstr "" + +#: frappe/twofactor.py:437 +msgid "You have to enable Two Factor Auth from System Settings." +msgstr "" + +#: frappe/public/js/frappe/model/create_new.js:328 +msgid "You have unsaved changes in this form. Please save before you continue." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:50 +msgid "You have unseen notifications" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:125 +msgid "You have unseen {0}" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:192 +msgid "You haven't added any Dashboard Charts or Number Cards yet." +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:503 +msgid "You haven't created a {0} yet" +msgstr "" + +#: frappe/rate_limiter.py:166 +msgid "You hit the rate limit because of too many requests. Please try after sometime." +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:151 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105 +msgid "You last edited this" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:352 +msgid "You must add atleast one link." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:831 +msgid "You must be logged in to use this form." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:672 +msgid "You must login to submit this form" +msgstr "" + +#: frappe/model/document.py:358 +msgid "You need the '{0}' permission on {1} {2} to perform this action." +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:127 +msgid "You need to be Workspace Manager to delete a public workspace." +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:76 +msgid "You need to be Workspace Manager to edit this document" +msgstr "" + +#: frappe/www/attribution.py:16 +msgid "You need to be a system user to access this page." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:91 +msgid "You need to be in developer mode to edit a Standard Web Form" +msgstr "" + +#: frappe/utils/response.py:278 +msgid "You need to be logged in and have System Manager Role to be able to access backups." +msgstr "" + +#: frappe/www/me.py:13 frappe/www/third_party_apps.py:10 +msgid "You need to be logged in to access this page" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:164 +msgid "You need to be logged in to access this {0}." +msgstr "" + +#: frappe/public/js/frappe/widgets/links_widget.js:63 +msgid "You need to create these first:" +msgstr "" + +#: frappe/www/login.html:76 +msgid "You need to enable JavaScript for your app to work." +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:62 +msgid "You need to have \"Share\" permission" +msgstr "" + +#: frappe/utils/print_format.py:268 +msgid "You need to install pycups to use this feature!" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.js:38 +msgid "You need to select indexes you want to add first." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:160 +msgid "You need to set one IMAP folder for {0}" +msgstr "" + +#: frappe/model/rename_doc.py:391 +msgid "You need write permission on {0} {1} to merge" +msgstr "" + +#: frappe/model/rename_doc.py:386 +msgid "You need write permission on {0} {1} to rename" +msgstr "" + +#: frappe/client.py:449 +msgid "You need {0} permission to fetch values from {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:419 +msgctxt "Form timeline" +msgid "You removed attachment {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:520 +msgid "You seem good to go!" +msgstr "" + +#: frappe/templates/includes/contact.js:20 +msgid "You seem to have written your name instead of your email. Please enter a valid email address so that we can get back." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:31 +msgid "You selected Draft or Cancelled documents" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:48 +msgctxt "Form timeline" +msgid "You submitted this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:35 +msgctxt "Form timeline" +msgid "You submitted this document {0}" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/document_follow.js:144 +msgid "You unfollowed this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:183 +msgid "You viewed this" +msgstr "" + +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 +msgid "You've logged in as another user from another tab. Refresh this page to continue using system." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.js:57 +msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:397 +msgid "Your Country" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:389 +msgid "Your Language" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:21 +msgid "Your Name" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:132 +msgid "Your PDF is ready for download" +msgstr "" + +#: frappe/patches/v14_0/update_workspace2.py:34 +msgid "Your Shortcuts" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:145 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:151 +msgid "Your account has been deleted" +msgstr "" + +#: frappe/auth.py:517 +msgid "Your account has been locked and will resume after {0} seconds" +msgstr "" + +#: frappe/desk/form/assign_to.py:279 +msgid "Your assignment on {0} {1} has been removed by {2}" +msgstr "" + +#: frappe/core/doctype/file/file.js:74 +msgid "Your browser does not support the audio element." +msgstr "" + +#: frappe/core/doctype/file/file.js:56 +msgid "Your browser does not support the video element." +msgstr "" + +#: frappe/templates/pages/integrations/gcalendar-success.html:11 +msgid "Your connection request to Google Calendar was successfully accepted" +msgstr "" + +#: frappe/www/contact.html:35 +msgid "Your email address" +msgstr "" + +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 +msgid "Your form has been successfully updated" +msgstr "" + +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + +#: frappe/templates/emails/new_user.html:6 +msgid "Your login id is" +msgstr "" + +#: frappe/www/update-password.html:192 +msgid "Your new password has been set successfully." +msgstr "" + +#: frappe/www/update-password.html:172 +msgid "Your old password is incorrect." +msgstr "" + +#. Description of the 'Email Footer Address' (Small Text) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Your organization name and address for the email footer." +msgstr "" + +#: frappe/templates/emails/auto_reply.html:2 +msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." +msgstr "" + +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 +msgid "Your session has expired, please login again to continue." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:15 +msgid "Your site is undergoing maintenance or being updated." +msgstr "" + +#: frappe/templates/emails/verification_code.html:1 +msgid "Your verification code is {0}" +msgstr "" + +#: frappe/utils/data.py:1558 +msgid "Zero" +msgstr "" + +#. Description of the 'Only Send Records Updated in Last X Hours' (Int) field +#. in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Zero means send records updated at anytime" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 +msgid "[Action taken by {0}]" +msgstr "" + +#. Label of the _doctype (Link) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "_doctype" +msgstr "" + +#. Label of the _report (Link) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "_report" +msgstr "" + +#: frappe/database/database.py:360 +msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" +msgstr "" + +#: frappe/utils/background_jobs.py:120 +msgid "`job_id` paramater is required for deduplication." +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "after_insert" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "amend" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 +msgid "and" +msgstr "" + +#: frappe/public/js/frappe/ui/sort_selector.html:5 +#: frappe/public/js/frappe/ui/sort_selector.js:48 +msgid "ascending" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "blue" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:35 +msgid "by Role" +msgstr "" + +#. Label of the profile (Code) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "cProfile Output" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 +msgid "calendar" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "cancel" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "canceled" +msgstr "" + +#: frappe/templates/includes/list/filters.html:19 +msgid "clear" +msgstr "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:34 +msgid "commented" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "create" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "cyan" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 +msgctxt "Days (Field: Duration)" +msgid "d" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "darkgrey" +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:65 +msgid "dashboard" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "dd-mm-yyyy" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "dd.mm.yyyy" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "dd/mm/yyyy" +msgstr "" + +#. Option for the 'Queue' (Select) field in DocType 'RQ Job' +#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "default" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "deferred" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "delete" +msgstr "" + +#: frappe/public/js/frappe/ui/sort_selector.html:5 +#: frappe/public/js/frappe/ui/sort_selector.js:48 +msgid "descending" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163 +msgid "document type..., e.g. customer" +msgstr "" + +#. Description of the 'Email Account Name' (Data) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\"" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:183 +msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..." +msgstr "" + +#. Description of the 'Incoming Server' (Data) field in DocType 'Email Account' +#. Description of the 'Incoming Server' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "e.g. pop.gmail.com / imap.gmail.com" +msgstr "" + +#. Description of the 'Default Incoming' (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "e.g. replies@yourcomany.com. All replies will come to this inbox." +msgstr "" + +#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Account' +#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "e.g. smtp.gmail.com" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:98 +msgid "e.g.:" +msgstr "" + +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "emacs" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "email" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 +msgid "email inbox" +msgstr "" + +#: frappe/permissions.py:425 frappe/permissions.py:436 +#: frappe/public/js/frappe/form/controls/link.js:507 +msgid "empty" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "export" +msgstr "" + +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "facebook" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "failed" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "fairlogin" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "finished" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "gray" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "green" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "grey" +msgstr "" + +#: frappe/utils/backups.py:399 +msgid "gzip not found in PATH! This is required to take a backup." +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 +msgctxt "Hours (Field: Duration)" +msgid "h" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +msgid "hub" +msgstr "" + +#. Label of the icon (Data) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "icon" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "import" +msgstr "" + +#: frappe/templates/signup.html:11 frappe/www/login.html:11 +msgid "jane@example.com" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:46 +msgid "just now" +msgstr "" + +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 +msgid "label" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "light-blue" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "link" +msgstr "" + +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "linkedin" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "list" +msgstr "" + +#: frappe/www/third_party_apps.html:43 +msgid "logged in" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:363 +msgid "login_required" +msgstr "" + +#. Option for the 'Queue' (Select) field in DocType 'RQ Job' +#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "long" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 +msgctxt "Minutes (Field: Duration)" +msgid "m" +msgstr "" + +#: frappe/model/rename_doc.py:215 +msgid "merged {0} into {1}" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "mm-dd-yyyy" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "mm/dd/yyyy" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "module" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:178 +msgid "module name..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 +msgid "new" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:158 +msgid "new type of document" +msgstr "" + +#. Label of the no_failed (Int) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "no failed attempts" +msgstr "" + +#. Label of the nonce (Data) field in DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "nonce" +msgstr "" + +#. Label of the notified (Check) field in DocType 'Reminder' +#: frappe/automation/doctype/reminder/reminder.json +msgid "notified" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:25 +msgid "now" +msgstr "" + +#: frappe/public/js/frappe/form/grid_pagination.js:116 +msgid "of" +msgstr "" + +#. Label of the old_parent (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "old_parent" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_cancel" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_change" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_submit" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_trash" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_update" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_update_after_submit" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90 +#: frappe/www/login.py:112 +msgid "or" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "orange" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "page" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "pink" +msgstr "" + +#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth +#. Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "plain" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "print" +msgstr "" + +#. Label of the processlist (HTML) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "processlist" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "purple" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "query-report" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "queued" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "read" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "red" +msgstr "" + +#: frappe/model/rename_doc.py:217 +msgid "renamed from {0} to {1}" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "report" +msgstr "" + +#. Label of the response (HTML) field in DocType 'Custom Role' +#: frappe/core/doctype/custom_role/custom_role.json +msgid "response" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:61 +msgid "restored {0} as {1}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 +msgctxt "Seconds (Field: Duration)" +msgid "s" +msgstr "" + +#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth +#. Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "s256" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "scheduled" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "select" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "share" +msgstr "" + +#. Option for the 'Queue' (Select) field in DocType 'RQ Job' +#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "short" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 +msgid "since last month" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 +msgid "since last week" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 +msgid "since last year" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 +msgid "since yesterday" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "started" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:201 +msgid "starting the setup..." +msgstr "" + +#. Description of the 'Group Object Class' (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "string value, i.e. group" +msgstr "" + +#. Description of the 'LDAP Group Member attribute' (Data) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "string value, i.e. member" +msgstr "" + +#. Description of the 'Custom Group Search' (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "string value, i.e. {0} or uid={0},ou=users,dc=example,dc=com" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "submit" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:173 +msgid "tag name..., e.g. #tag" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:168 +msgid "text in document type" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:36 +msgid "this form" +msgstr "" + +#: frappe/tests/test_translate.py:174 +msgid "this shouldn't break" +msgstr "" + +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "til din browser" + +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "twitter" +msgstr "" + +#: frappe/public/js/frappe/change_log.html:7 +msgid "updated to {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:361 +msgid "use % as wildcard" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:360 +msgid "values separated by commas" +msgstr "" + +#. Label of the version_table (HTML) field in DocType 'Audit Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json +msgid "version_table" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:382 +msgid "via Assignment Rule" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 +msgid "via Auto Repeat" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:271 +#: frappe/core/doctype/data_import/importer.py:292 +msgid "via Data Import" +msgstr "" + +#. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "via Google Meet" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:405 +msgid "via Notification" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:17 +msgid "via {0}" +msgstr "" + +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "vim" +msgstr "" + +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "vscode" +msgstr "" + +#: frappe/templates/includes/oauth_confirmation.html:5 +msgid "wants to access the following details from your account" +msgstr "" + +#. Description of the 'Popover Element' (Check) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "when clicked on element it will focus popover if present." +msgstr "" + +#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "wkhtmltopdf" +msgstr "" + +#: frappe/printing/page/print/print.js:662 +msgid "wkhtmltopdf 0.12.x (with patched qt)." +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "write" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "yellow" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:58 +msgid "yesterday" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "yyyy-mm-dd" +msgstr "" + +#: frappe/desk/doctype/event/event.js:87 +#: frappe/public/js/frappe/form/footer/form_timeline.js:547 +msgid "{0}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 +msgid "{0} ${skip_list ? \"\" : type}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 +msgid "{0} ${type}" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:80 +#: frappe/public/js/frappe/views/gantt/gantt_view.js:54 +msgid "{0} ({1})" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:77 +msgid "{0} ({1}) (1 row mandatory)" +msgstr "" + +#: frappe/public/js/frappe/views/gantt/gantt_view.js:53 +msgid "{0} ({1}) - {2}%" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:377 +msgid "{0} = {1}" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:30 +msgid "{0} Calendar" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:575 +msgid "{0} Chart" +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:67 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 +msgid "{0} Dashboard" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 +msgid "{0} Fields" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:376 +msgid "{0} Google Calendar Events synced." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:193 +msgid "{0} Google Contacts synced." +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:464 +msgid "{0} Liked" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:83 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:84 +#: frappe/public/js/frappe/widgets/chart_widget.js:358 frappe/www/list.html:4 +#: frappe/www/list.html:8 +msgid "{0} List" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:37 +msgid "{0} M" +msgstr "" + +#: frappe/public/js/frappe/views/map/map_view.js:14 +msgid "{0} Map" +msgstr "" + +#: frappe/public/js/frappe/form/quick_entry.js:122 +msgid "{0} Name" +msgstr "" + +#: frappe/model/base_document.py:1215 +msgid "{0} Not allowed to change {1} after submission from {2} to {3}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96 +#: frappe/public/js/frappe/widgets/chart_widget.js:366 +msgid "{0} Report" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:964 +msgid "{0} Reports" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 +msgid "{0} Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:87 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:88 +#: frappe/public/js/frappe/views/treeview.js:152 +msgid "{0} Tree" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:128 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:73 +msgid "{0} Web page views" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:91 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92 +msgid "{0} Workspace" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:225 +msgid "{0} added" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 +msgid "{0} already exists. Select another name" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:36 +msgid "{0} already unsubscribed" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49 +msgid "{0} already unsubscribed for {1} {2}" +msgstr "" + +#: frappe/utils/data.py:1765 +msgid "{0} and {1}" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:72 +msgid "{0} are currently {1}" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.py:98 +msgid "{0} are required" +msgstr "" + +#: frappe/desk/form/assign_to.py:286 +msgid "{0} assigned a new task {1} {2} to you" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:48 +msgid "{0} assigned {1}: {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:415 +msgctxt "Form timeline" +msgid "{0} attached {1}" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:153 +msgid "{0} can not be more than {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:77 +msgid "{0} cancelled this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:68 +msgctxt "Form timeline" +msgid "{0} cancelled this document {1}" +msgstr "" + +#: frappe/model/document.py:548 +msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." +msgstr "" + +#: frappe/public/js/form_builder/store.js:190 +msgid "{0} cannot be hidden and mandatory without any default value" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128 +msgid "{0} changed the value of {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:119 +msgid "{0} changed the value of {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:194 +msgid "{0} changed the values for {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:185 +msgid "{0} changed the values for {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:444 +msgctxt "Form timeline" +msgid "{0} changed {1} to {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1606 +msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:261 +msgid "{0} created successfully" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:141 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:95 +msgid "{0} created this" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 +msgctxt "Form timeline" +msgid "{0} created this document {1}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:33 +msgid "{0} d" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:60 +msgid "{0} days ago" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.py:96 +#: frappe/website/doctype/website_settings/website_settings.py:116 +msgid "{0} does not exist in row {1}" +msgstr "" + +#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:184 +msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" +msgstr "" + +#: frappe/database/query.py:710 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1071 +msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101 +msgid "{0} from {1} to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:165 +msgid "{0} from {1} to {2} in row #{3}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:29 +msgid "{0} h" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission.py:77 +msgid "{0} has already assigned default value for {1}." +msgstr "" + +#: frappe/email/queue.py:124 +msgid "{0} has left the conversation in {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:54 +msgid "{0} hours ago" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:155 +msgid "{0} if you are not redirected within {1} seconds" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.py:102 +#: frappe/website/doctype/website_settings/website_settings.py:122 +msgid "{0} in row {1} cannot have both URL and child items" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:935 +msgid "{0} is a mandatory field" +msgstr "" + +#: frappe/core/doctype/file/file.py:569 +msgid "{0} is a not a valid zip file" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1619 +msgid "{0} is an invalid Data field." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 +msgid "{0} is an invalid email address in 'Recipients'" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1470 +msgid "{0} is between {1} and {2}" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:41 +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:69 +msgid "{0} is currently {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1439 +msgid "{0} is equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1459 +msgid "{0} is greater than or equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1449 +msgid "{0} is greater than {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1464 +msgid "{0} is less than or equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1454 +msgid "{0} is less than {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1489 +msgid "{0} is like {1}" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:193 +msgid "{0} is mandatory" +msgstr "" + +#: frappe/database/query.py:487 +msgid "{0} is not a child table of {1}" +msgstr "" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 +msgid "{0} is not a field of doctype {1}" +msgstr "" + +#: frappe/www/printview.py:384 +msgid "{0} is not a raw printing format." +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:82 +msgid "{0} is not a valid Calendar. Redirecting to default Calendar." +msgstr "" + +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67 +msgid "{0} is not a valid Cron expression." +msgstr "" + +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 +msgid "{0} is not a valid DocType for Dynamic Link" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 +msgid "{0} is not a valid Email Address" +msgstr "" + +#: frappe/geo/doctype/country/country.py:30 +msgid "{0} is not a valid ISO 3166 ALPHA-2 code." +msgstr "" + +#: frappe/utils/__init__.py:176 +msgid "{0} is not a valid Name" +msgstr "" + +#: frappe/utils/__init__.py:155 +msgid "{0} is not a valid Phone Number" +msgstr "" + +#: frappe/model/workflow.py:245 +msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." +msgstr "" + +#: frappe/permissions.py:809 +msgid "{0} is not a valid parent DocType for {1}" +msgstr "" + +#: frappe/permissions.py:829 +msgid "{0} is not a valid parentfield for {1}" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 +msgid "{0} is not a valid report format. Report format should one of the following {1}" +msgstr "" + +#: frappe/core/doctype/file/file.py:549 +msgid "{0} is not a zip file" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 +msgid "{0} is not equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1491 +msgid "{0} is not like {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1485 +msgid "{0} is not one of {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1495 +msgid "{0} is not set" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.py:176 +msgid "{0} is now default print format for {1} doctype" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1478 +msgid "{0} is one of {1}" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:304 +#: frappe/model/naming.py:226 +#: 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/views/reports/report_view.js:1494 +msgid "{0} is set" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1473 +msgid "{0} is within {1}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1841 +msgid "{0} items selected" +msgstr "" + +#: frappe/core/doctype/user/user.py:1393 +msgid "{0} just impersonated as you. They gave this reason: {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:152 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106 +msgid "{0} last edited this" +msgstr "" + +#: frappe/core/doctype/activity_log/feed.py:13 +msgid "{0} logged in" +msgstr "" + +#: frappe/core/doctype/activity_log/feed.py:19 +msgid "{0} logged out: {1}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:27 +msgid "{0} m" +msgstr "" + +#: frappe/desk/notifications.py:408 +msgid "{0} mentioned you in a comment in {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:50 +msgid "{0} minutes ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:68 +msgid "{0} months ago" +msgstr "" + +#: frappe/model/document.py:1808 +msgid "{0} must be after {1}" +msgstr "" + +#: frappe/model/document.py:1564 +msgid "{0} must be beginning with '{1}'" +msgstr "" + +#: frappe/model/document.py:1566 +msgid "{0} must be equal to '{1}'" +msgstr "" + +#: frappe/model/document.py:1562 +msgid "{0} must be none of {1}" +msgstr "" + +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 +msgid "{0} must be one of {1}" +msgstr "" + +#: frappe/model/base_document.py:933 +msgid "{0} must be set first" +msgstr "" + +#: frappe/model/base_document.py:786 +msgid "{0} must be unique" +msgstr "" + +#: frappe/model/document.py:1568 +msgid "{0} must be {1} {2}" +msgstr "" + +#: frappe/core/doctype/language/language.py:79 +msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:91 +msgid "{0} not a valid State" +msgstr "" + +#: frappe/model/rename_doc.py:394 +msgid "{0} not allowed to be renamed" +msgstr "" + +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:365 +msgid "{0} not found" +msgstr "" + +#: frappe/core/doctype/report/report.py:427 +#: frappe/public/js/frappe/list/list_view.js:1213 +msgid "{0} of {1}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1215 +msgid "{0} of {1} ({2} rows with children)" +msgstr "" + +#: frappe/utils/data.py:1566 +msgctxt "Money in words" +msgid "{0} only." +msgstr "" + +#: frappe/utils/data.py:1747 +msgid "{0} or {1}" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:177 +msgid "{0} record deleted" +msgstr "" + +#: frappe/public/js/frappe/logtypes.js:22 +msgid "{0} records are not automatically deleted." +msgstr "" + +#: frappe/public/js/frappe/logtypes.js:29 +msgid "{0} records are retained for {1} days." +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:179 +msgid "{0} records deleted" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:229 +msgid "{0} records will be exported" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:420 +msgctxt "Form timeline" +msgid "{0} removed attachment {1}" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:58 +msgid "{0} removed their assignment." +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 +msgid "{0} role does not have permission on any doctype" +msgstr "" + +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 +msgid "{0} saved successfully" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:44 +msgid "{0} self assigned this task: {1}" +msgstr "" + +#: frappe/share.py:233 +msgid "{0} shared a document {1} {2} with you" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:77 +msgid "{0} shared this document with everyone" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:80 +msgid "{0} shared this document with {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:317 +msgid "{0} should be indexed because it's referred in dashboard connections" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 +msgid "{0} should not be same as {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:51 +msgid "{0} submitted this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:42 +msgctxt "Form timeline" +msgid "{0} submitted this document {1}" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 +msgid "{0} subscribers added" +msgstr "" + +#: frappe/email/queue.py:69 +msgid "{0} to stop receiving emails of this type" +msgstr "" + +#: frappe/public/js/frappe/form/controls/date_range.js:48 +#: frappe/public/js/frappe/form/controls/date_range.js:64 +#: frappe/public/js/frappe/form/formatters.js:238 +msgid "{0} to {1}" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:89 +msgid "{0} un-shared this document with {1}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:256 +msgid "{0} updated" +msgstr "" + +#: frappe/public/js/frappe/form/controls/multiselect_list.js:198 +msgid "{0} values selected" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:184 +msgid "{0} viewed this" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:35 +msgid "{0} w" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:64 +msgid "{0} weeks ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:39 +msgid "{0} y" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:72 +msgid "{0} years ago" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:219 +msgid "{0} {1} added" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:270 +msgid "{0} {1} added to Dashboard {2}" +msgstr "" + +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 +msgid "{0} {1} already exists" +msgstr "" + +#: frappe/model/base_document.py:1044 +msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" +msgstr "" + +#: frappe/utils/nestedset.py:353 +msgid "{0} {1} cannot be a leaf node as it has children" +msgstr "" + +#: frappe/model/rename_doc.py:376 +msgid "{0} {1} does not exist, select a new target to merge" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:951 +msgid "{0} {1} is linked with the following submitted documents: {2}" +msgstr "" + +#: frappe/model/document.py:258 frappe/permissions.py:580 +msgid "{0} {1} not found" +msgstr "" + +#: frappe/model/delete_doc.py:288 +msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." +msgstr "" + +#: frappe/model/base_document.py:1176 +msgid "{0}, Row {1}" +msgstr "" + +#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192 +msgid "{0}/{1} complete | Please leave this tab open until completion." +msgstr "" + +#: frappe/model/base_document.py:1181 +msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1814 +msgid "{0}: Cannot set Amend without Cancel" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1832 +msgid "{0}: Cannot set Assign Amend if not Submittable" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1830 +msgid "{0}: Cannot set Assign Submit if not Submittable" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1809 +msgid "{0}: Cannot set Cancel without Submit" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1816 +msgid "{0}: Cannot set Import without Create" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1812 +msgid "{0}: Cannot set Submit, Cancel, Amend without Write" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1836 +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:1427 +msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1335 +msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1294 +msgid "{0}: Field {1} of type {2} cannot be mandatory" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1282 +msgid "{0}: Fieldname {1} appears multiple times in rows {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1414 +msgid "{0}: Fieldtype {1} for {2} cannot be unique" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1769 +msgid "{0}: No basic permissions set" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1783 +msgid "{0}: Only one rule allowed with the same Role, Level and {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1316 +msgid "{0}: Options must be a valid DocType for field {1} in row {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1305 +msgid "{0}: Options required for Link or Table type field {1} in row {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1323 +msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "{0}: Other permission rules may also apply" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1798 +msgid "{0}: Permission at level 0 must be set before higher levels are set" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:51 +msgid "{0}: You can increase the limit for the field if required via {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1269 +msgid "{0}: fieldname cannot be set to reserved keyword {1}" +msgstr "" + +#: frappe/contacts/doctype/address/address.js:35 +#: frappe/contacts/doctype/contact/contact.js:88 +msgid "{0}: {1}" +msgstr "" + +#: frappe/workflow/doctype/workflow_action/workflow_action.py:172 +msgid "{0}: {1} is set to state {2}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1291 +msgid "{0}: {1} vs {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1435 +msgid "{0}:Fieldtype {1} for {2} cannot be indexed" +msgstr "" + +#: frappe/public/js/frappe/form/quick_entry.js:195 +msgid "{1} saved" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:12 +msgid "{count} cell copied" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:13 +msgid "{count} cells copied" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:16 +msgid "{count} row selected" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:17 +msgid "{count} rows selected" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1489 +msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:521 +msgid "{} Complete" +msgstr "" + +#: frappe/utils/data.py:2567 +msgid "{} Invalid python code on line {}" +msgstr "" + +#: frappe/utils/data.py:2576 +msgid "{} Possibly invalid python code.
{}" +msgstr "" + +#. Count format of shortcut in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "{} Published" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:54 +msgid "{} does not support automated log clearing." +msgstr "" + +#: frappe/core/doctype/audit_trail/audit_trail.py:41 +msgid "{} field cannot be empty." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:223 +#: frappe/email/doctype/email_account/email_account.py:231 +msgid "{} has been disabled. It can only be enabled if {} is checked." +msgstr "" + +#: frappe/utils/data.py:145 +msgid "{} is not a valid date string." +msgstr "" + +#: frappe/commands/utils.py:561 +msgid "{} not found in PATH! This is required to access the console." +msgstr "" + +#: frappe/database/db_manager.py:99 +msgid "{} not found in PATH! This is required to restore the database." +msgstr "" + +#: frappe/utils/backups.py:466 +msgid "{} not found in PATH! This is required to take a backup." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:5 +#: frappe/public/js/frappe/file_uploader/WebLink.vue:4 +msgid "← Back to upload files" +msgstr "" + diff --git a/frappe/locale/de.po b/frappe/locale/de.po index 46a78c3b74..1511bfbf3b 100644 --- a/frappe/locale/de.po +++ b/frappe/locale/de.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-22 21:45\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: German\n" "MIME-Version: 1.0\n" @@ -18,10 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: de_DE\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr "zu Ihrem Browser" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json @@ -61,7 +57,7 @@ msgstr "#{0}" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "${values.doctype_name} wurde zur Warteschlange für die Optimierung hinzugefügt" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" msgstr "© Frappe Technologies Pvt. Ltd. und Mitwirkende" @@ -74,7 +70,7 @@ msgstr "<head> HTML" msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "'In der globalen Suche' ist für Feld {0} des Typs {1} nicht erlaubt" -#: frappe/core/doctype/doctype/doctype.py:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "'In Globaler Suche' nicht zulässig für Typ {0} in Zeile {1}" @@ -82,19 +78,23 @@ msgstr "'In Globaler Suche' nicht zulässig für Typ {0} in Zeile {1}" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "'In Listenansicht' ist für Feld {0} des Typs {1} nicht erlaubt" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "\"In der Listenansicht\" nicht erlaubt für den Typ {0} in Zeile {1}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" msgstr "Keine \"Empfänger\" angegeben" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" msgstr "'{0} ist keine gültige URL" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "'{0}' ist für Typ {1} in Zeile {2} nicht zulässig" @@ -102,11 +102,11 @@ msgstr "'{0}' ist für Typ {1} in Zeile {2} nicht zulässig" msgid "(Mandatory)" msgstr "(Pflichtfeld)" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "** Fehlgeschlagen: {0} um {1}: {2}" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" msgstr "+ Felder hinzufügen / entfernen" @@ -122,7 +122,7 @@ msgstr "0 - Entwurf; 1 - Gebucht; 2 - Storniert" msgid "0 is highest" msgstr "0 ist am höchsten" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = Wahr & 0 = Falsch" @@ -141,15 +141,11 @@ msgstr "1 Tag" msgid "1 Google Calendar Event synced." msgstr "1 Google Kalender-Ereignis synchronisiert" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 Bericht" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "1 Kommentar" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "vor 1 Tag" @@ -158,17 +154,17 @@ msgid "1 hour" msgstr "1 Stunde" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "vor einer Stunde" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "vor einer Minute" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "vor 1 Monat" @@ -180,37 +176,47 @@ msgstr "1 von 2" msgid "1 record will be exported" msgstr "1 Datensatz wird exportiert" -#: frappe/tests/test_utils.py:711 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "" + +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "vor 1 Sekunde" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "vor einer Woche" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "vor einem Jahr" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "vor 2 Stunden" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "vor 2 Monaten" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "vor 2 Wochen" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "vor 2 Jahren" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "vor 3 Minuten" @@ -226,7 +232,7 @@ msgstr "4 Stunden" msgid "5 Records" msgstr "5 Datensätze" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "vor 5 Tagen" @@ -246,6 +252,13 @@ msgstr "<" msgid "<=" msgstr "<=" +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "{0} ist keine gültige URL" @@ -255,6 +268,16 @@ msgstr "{0} ist keine gültige URL" msgid "
Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
" msgstr "
Bitte nicht direkt bearbeiten, da es Ihr Formular durcheinander bringen kann. Benutzen Sie die Formularansicht und benutzerdefinierte Felder, um Eigenschaften zu setzen!
" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -525,7 +548,7 @@ msgstr "

Standardvorlage

\n" "{% if address_line2 %}{{ address_line2 }}<br>{% endif -%}\n" "{{ city }}<br>\n" "{% if state %}{{ state }}<br>{% endif -%}\n" -"{% if pincode %} PIN: {{ pincode }}<br>{% endif -%}\n" +"{% if pincode %} PLZ: {{ pincode }}<br>{% endif -%}\n" "{{ country }}<br>\n" "{% if phone %}Telefon: {{ phone }}<br>{% endif -%}\n" "{% if fax %}Fax: {{ fax }}<br>{% endif -%}\n" @@ -597,8 +620,8 @@ msgstr "
Nachrichtenbeispiel
\n\n" msgid "

Condition Examples:

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

Bedingungsbeispiele:

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

Beispiel für eine Bedingung:

\n" +"
doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n\n" "
" #. Content of the 'html_7' (HTML) field in DocType 'Notification' @@ -606,8 +629,8 @@ msgstr "

Bedingungsbeispiele:

\n" msgid "

Condition Examples:

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

Bedingungsbeispiele:

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

Beispiel für eine Bedingung:

\n" +"
doc.status==\"Open\"
doc.due_date==nowdate()
doc.total > 40000\n" "
\n" #. Content of the 'Condition description' (HTML) field in DocType 'Web Form' @@ -615,9 +638,8 @@ msgstr "

Bedingungsbeispiele:

\n" msgid "

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

For Example:

\n" "

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

\n" -msgstr "

Mehrere Webformulare können für ein einzelnes Doctyle erstellt werden. Fügen Sie Filter für dieses Webformular hinzu, um den korrekten Datensatz nach dem Einreichen anzuzeigen.

Zum Beispiel:

\n" -"

Wenn Sie jedes Jahr ein separates Webformular erstellen, um Feedback von Mitarbeitern zu erfassen, fügen Sie ein \n" -" Feld mit dem Namen Jahr in Doctype hinzu und fügen Sie einen Filter Jahr = 2023

\n" +msgstr "

Mehrere Webformulare können für einen einzelnen Doctype erstellt werden. Fügen Sie Filter speziel für dieses Webformular hinzu, um den korrekten Datensatz nach der Buchung anzuzeigen.

Zum Beispiel:

\n" +"

Wenn Sie jedes Jahr ein separates Webformular erstellen, um Feedback von Mitarbeitern zu erfassen, fügen Sie ein Feld mit dem Namen Jahr im Doctype Sie einen Filter jahr = 2023 hinzu.

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

Um mit dem oben genannten HTML zu interagieren, müssen Sie „root_e "some_class_element.textContent = \"Neuer Inhalt\";\n" "

" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

" msgstr "

Ihr OTP-Geheimnis auf {0} wurde zurückgesetzt. Wenn Sie diese Rücksetzung nicht durchgeführt und nicht angefordert haben, wenden Sie sich bitte umgehend an Ihren Systemadministrator.

" @@ -731,7 +753,7 @@ msgstr ">" msgid ">=" msgstr ">=" -#: frappe/core/doctype/doctype/doctype.py:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "Der Name eines DocTypes sollte mit einem Buchstaben beginnen und darf nur aus Buchstaben, Zahlen, Leerzeichen, Unterstrichen und Bindestrichen bestehen" @@ -740,15 +762,16 @@ msgstr "Der Name eines DocTypes sollte mit einem Buchstaben beginnen und darf nu msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" -msgstr "Ein vorgestellter Beitrag muss ein Titelbild haben" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "Ein Feld mit dem Namen {0} existiert bereits in {1}" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "Eine Datei mit dem gleichen Namen {} existiert bereits" @@ -761,7 +784,7 @@ msgstr "Eine Liste von Ressourcen, auf die die Client App zugreifen kann, nachde msgid "A new account has been created for you at {0}" msgstr "Ein neues Konto wurde für Sie erstellt auf {0}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "Über Auto Repeat {2} wurde für Sie eine wiederkehrende {0} {1} erstellt." @@ -860,13 +883,17 @@ msgstr "API-Endpunkt" msgid "API Endpoint Args" msgstr "API-Endpunkt-Argumente" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -885,6 +912,10 @@ msgstr "API-Schlüssel und Geheimnis für die Interaktion mit dem Relay-Server. msgid "API Key cannot be regenerated" msgstr "API-Schlüssel kann nicht neu generiert werden" +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -905,7 +936,7 @@ msgstr "API-Anfrage-Protokoll" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -952,6 +983,20 @@ msgstr "Noch ungefähr {0} Minuten" msgid "About {0} seconds remaining" msgstr "Noch ungefähr {0} Sekunden" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "Einladung annehmen" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "Akzeptiert" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "Angenommen am" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -977,7 +1022,7 @@ msgstr "Zugriffstoken" msgid "Access Token URL" msgstr "Zugriffstoken-URL" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Der Zugriff von dieser IP-Adresse aus ist nicht zulässig" @@ -1041,7 +1086,7 @@ msgstr "Aktion / Route" msgid "Action Complete" msgstr "Aktion abgeschlossen" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "Aktion fehlgeschlagen" @@ -1093,7 +1138,7 @@ msgstr "Aktion {0} fehlgeschlagen auf {1} {2}. {3} ansehen." #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Aktionen" @@ -1150,7 +1195,7 @@ msgstr "Aktivitätsprotokoll" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -1161,7 +1206,7 @@ msgstr "Aktivitätsprotokoll" msgid "Add" msgstr "Hinzufügen" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "Spalten hinzufügen / entfernen" @@ -1173,7 +1218,7 @@ msgstr "Hinzufügen / Aktualisieren" msgid "Add A New Rule" msgstr "Neue Regel hinzufügen" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Anhang hinzufügen" @@ -1193,7 +1238,7 @@ msgstr "Rand unten hinzufügen" msgid "Add Border at Top" msgstr "Rand oben hinzufügen" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "Karte zum Dashboard hinzufügen" @@ -1206,10 +1251,10 @@ msgid "Add Child" msgstr "Unterpunkt hinzufügen" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "Spalte hinzufügen" @@ -1268,7 +1313,7 @@ msgstr "Teilnehmer hinzufügen" msgid "Add Query Parameters" msgstr "Abfrageparameter hinzufügen" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "Rollen hinzufügen" @@ -1301,12 +1346,12 @@ msgstr "Abonnenten hinzufügen" msgid "Add Tags" msgstr "Schlagworte hinzufügen" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Schlagworte hinzufügen" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "Vorlage hinzufügen" @@ -1395,7 +1440,7 @@ msgstr "Neue Registerkarte hinzufügen" msgid "Add page break" msgstr "Seitenumbruch hinzufügen" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "Skript für Child Table hinzufügen" @@ -1433,7 +1478,7 @@ msgstr "Senden Sie eine E-Mail an {0}, damit sie hier erscheint" msgid "Add {0}" msgstr "{0} hinzufügen" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" msgstr "{0} hinzufügen" @@ -1476,6 +1521,7 @@ msgstr "Zusätzliche Berechtigungen" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1484,6 +1530,7 @@ msgstr "Adresse" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "Adresse Zeile 1" @@ -1491,6 +1538,7 @@ msgstr "Adresse Zeile 1" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "Adresse Zeile 2" @@ -1541,7 +1589,7 @@ msgstr "Fügt ein benutzerdefiniertes Client-Skript zu einem DocType hinzu" msgid "Adds a custom field to a DocType" msgstr "Fügt einem DocType ein benutzerdefiniertes Feld hinzu" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "Verwaltung" @@ -1555,7 +1603,6 @@ msgstr "Verwaltung" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1568,11 +1615,11 @@ msgstr "Verwaltung" msgid "Administrator" msgstr "Administrator" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "Administrator hat sich angemeldet" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Administrator hat auf {0} über {1} zugegriffen mit IP-Adresse {2}." @@ -1593,8 +1640,8 @@ msgstr "Fortgeschritten" msgid "Advanced Control" msgstr "Erweiterte Kontrolle" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" msgstr "Erweiterte Suche" @@ -1653,7 +1700,7 @@ msgstr "Nach der Einreichung" msgid "After Submit" msgstr "Nach Buchen" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "Das Feld Aggregatfunktion wird benötigt, um eine Nummernkarte zu erstellen" @@ -1680,11 +1727,11 @@ msgstr "Hinweis" msgid "Alerts and Notifications" msgstr "Warnungen und Benachrichtigungen" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "Alias darf kein SQL-Schlüsselwort sein: {0}" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "Alias muss ein String sein" @@ -1749,7 +1796,7 @@ msgstr "Alle Bilder, die an die Website-Slideshow angehängt werden, sollten öf msgid "All Records" msgstr "Alle Datensätze" -#: frappe/public/js/frappe/form/form.js:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "Alle Einsendungen" @@ -1809,8 +1856,8 @@ msgstr "Stapelberarbeitung zulassen" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " -msgstr "Aufeinanderfolgende Anmeldeversuche zulassen " +msgid "Allow Consecutive Login Attempts" +msgstr "Aufeinanderfolgende Anmeldeversuche zulassen" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 msgid "Allow Google Calendar Access" @@ -1830,11 +1877,6 @@ msgstr "Ist öffentlich" msgid "Allow Guest to View" msgstr "Ansicht für Gäste zulassen" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "Gäste dürfen kommentieren" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1883,7 +1925,7 @@ msgid "Allow Print for Cancelled" msgstr "Drucken von stornierten Dokumenten zulassen" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "Drucken von Entwürfen erlauben" @@ -2116,7 +2158,7 @@ msgstr "" msgid "Allows skipping authorization if a user has active tokens." msgstr "" -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "Bereits registriert" @@ -2124,11 +2166,11 @@ msgstr "Bereits registriert" msgid "Already in the following Users ToDo list:{0}" msgstr "Bereits in der folgenden Benutzer-ToDo-Liste: {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "Außerdem wird das abhängige Währungsfeld {0} hinzugefügt." -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "Hinzufügen des Statusabhängigkeitsfelds {0}" @@ -2137,6 +2179,12 @@ msgstr "Hinzufügen des Statusabhängigkeitsfelds {0}" msgid "Alternative Email ID" msgstr "Alternative E-Mail-ID" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2188,10 +2236,8 @@ msgstr "Einstellungen für berichtigte Benennung von Dokumenten" msgid "Amended Documents" msgstr "Berichtigte Dokumente" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "Berichtigung von" @@ -2215,6 +2261,11 @@ msgstr "Berichtigung nicht erlaubt" msgid "Amendment naming rules updated." msgstr "Benennungsregeln für Berichtigungen aktualisiert." +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 msgid "An error occurred while setting Session Defaults" msgstr "Beim Festlegen der Sitzungsstandards ist ein Fehler aufgetreten" @@ -2308,10 +2359,12 @@ msgid "App Logo" msgstr "Anwendungslogo" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2382,6 +2435,10 @@ msgstr "Anwendungsname" msgid "Application Version" msgstr "Anwendungsversion" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2391,7 +2448,7 @@ msgstr "Angewandt auf" msgid "Apply" msgstr "Anwenden" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Zuweisungsregel anwenden" @@ -2439,7 +2496,7 @@ msgstr "Diese Regel anwenden, wenn der Benutzer gleich dem Besitzer ist" msgid "Apply to all Documents Types" msgstr "Auf alle Dokumenttypen anwenden" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "Bewerbung: {0}" @@ -2472,7 +2529,11 @@ msgstr "Archiviert" msgid "Archived Columns" msgstr "Archivierte Spalten" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "Sind Sie sicher, dass Sie die Zuweisungen löschen möchten?" @@ -2500,11 +2561,15 @@ msgctxt "Confirmation dialog message" msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." msgstr "Sind Sie sicher, dass Sie die Registerkarte löschen möchten? Alle Abschnitte und Felder der Registerkarte werden auf die vorherige Registerkarte verschoben." -#: frappe/public/js/frappe/web_form/web_form.js:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:191 msgid "Are you sure you want to discard the changes?" msgstr "Sind Sie sicher, dass Sie die Änderungen verwerfen möchten?" -#: frappe/public/js/frappe/views/reports/query_report.js:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "Sind Sie sicher, dass Sie einen neuen Bericht erstellen möchten?" @@ -2512,7 +2577,7 @@ msgstr "Sind Sie sicher, dass Sie einen neuen Bericht erstellen möchten?" msgid "Are you sure you want to merge {0} with {1}?" msgstr "Möchten Sie {0} wirklich mit {1} zusammenführen?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "Sind Sie sicher, dass Sie fortfahren möchten?" @@ -2567,6 +2632,12 @@ msgstr "Da die Freigabe von Dokumenten deaktiviert ist, erteilen Sie ihnen vor d msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "Wie von Ihnen gewünscht, wurden Ihr Konto und die Daten auf {0}, die mit der E-Mail {1} verbunden sind, endgültig gelöscht" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2576,7 +2647,7 @@ msgstr "Zuweisungsbedingung" msgid "Assign To" msgstr "Zuweisen an" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Zuweisen an" @@ -2639,6 +2710,11 @@ msgstr "Zugewiesen zu" msgid "Assigned To/Owner" msgstr "Zuständig / Inhaber" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "Zuweisen..." @@ -2708,7 +2784,13 @@ msgstr "Zuordnung von {0} entfernt von {1}" msgid "Assignments" msgstr "Zuordnungen" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "Asynchron" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "Mindestens eine Spalte muss im Raster angezeigt werden." @@ -2788,7 +2870,7 @@ msgstr "Angehängt an Feld" msgid "Attached To Name" msgstr "Angehängt an Dokument" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "Angehängt an Name muss eine Zeichenfolge oder eine Ganzzahl sein" @@ -2804,7 +2886,7 @@ msgstr "Anhang" msgid "Attachment Limit (MB)" msgstr "Anhangslimit (MB)" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "Limit für Anhänge erreicht" @@ -2822,15 +2904,15 @@ msgstr "Anlage entfernt" #. Label of the attachments (Code) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "Anhänge" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "Es wird versucht, eine Verbindung zum QZ-Fach herzustellen ..." -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "Es wird versucht, QZ Tray zu starten ..." @@ -2853,6 +2935,10 @@ msgstr "Prüfprotokoll" msgid "Auth URL Data" msgstr "Authentifizierungs-URL-Daten" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "" + #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authenticate as Service Principal" @@ -2870,8 +2956,8 @@ msgid "Authentication" msgstr "Authentifizierung" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " -msgstr "Verfügbare Authentifizierungs-Apps:" +msgid "Authentication Apps you can use are:" +msgstr "" #: frappe/email/doctype/email_account/email_account.py:339 msgid "Authentication failed while receiving emails from Email Account: {0}." @@ -2885,7 +2971,7 @@ msgstr "Autor" #. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Authorization" -msgstr "" +msgstr "Autorisierung" #. Label of the authorization_code (Password) field in DocType 'Google #. Calendar' @@ -2984,11 +3070,11 @@ msgstr "Automatische Wiederholung" msgid "Auto Repeat Day" msgstr "Tag mit automatischer Wiederholung" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "Auto-Wiederholung Tag{0} {1} wurde wiederholt." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "Automatische Wiederholung der Dokumentenerstellung fehlgeschlagen" @@ -2996,11 +3082,16 @@ msgstr "Automatische Wiederholung der Dokumentenerstellung fehlgeschlagen" msgid "Auto Repeat Schedule" msgstr "Zeitplan automatisch wiederholen" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "Für dieses Dokument erstellte automatische Wiederholung" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "Automatische Wiederholung fehlgeschlagen für {0}" @@ -3044,7 +3135,7 @@ msgstr "Dokumenten, die Sie kommentiert haben, automatisch folgen" msgid "Auto follow documents that you create" msgstr "Dokumenten, die Sie erstellen, automatisch folgen" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "Automatische Wiederholung fehlgeschlagen. Bitte aktivieren Sie die automatische Wiederholung, nachdem Sie die Probleme behoben haben." @@ -3092,7 +3183,7 @@ msgstr "Die automatische Verknüpfung kann nur aktiviert werden, wenn Eingehend msgid "Automatically Assign Documents to Users" msgstr "Dokumente automatisch Benutzern zuweisen" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "Wendet automatisch einen Filter für aktuelle Daten an. Sie können dieses Verhalten in den Einstellungen der Listenansicht deaktivieren." @@ -3106,11 +3197,6 @@ msgstr "Konto automatisch löschen innerhalb von (Stunden)" msgid "Automation" msgstr "Automatisierung" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "Avatar" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3371,7 +3457,7 @@ msgstr "Barcode" #. 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 "kennzeichnender Name (DN)" +msgstr "Base Distinguished Name (DN)" #. Label of the base_url (Data) field in DocType 'Geolocation Settings' #. Label of the base_url (Data) field in DocType 'Social Login Key' @@ -3382,8 +3468,8 @@ msgstr "Basis-URL" #. Label of the based_on (Link) field in DocType 'Language' #: frappe/core/doctype/language/language.json -#: frappe/printing/page/print/print.js:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "Basiert auf" @@ -3500,10 +3586,8 @@ msgstr "Binäre Protokollierung" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "Lebenslauf" @@ -3533,64 +3617,6 @@ msgstr "Module sperren" msgid "Blocked" msgstr "Gesperrt" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "Blog" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "Blog-Kategorie" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "Blog-Einleitung" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "Blog-Einleitung" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "Blog-Eintrag" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "Blog-Einstellungen" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "Blog Titel" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "Blogger" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3688,13 +3714,6 @@ msgstr "Die Marke ist das, was oben links in der Symbolleiste erscheint. Wenn es msgid "Breadcrumbs" msgstr "Breadcrumbs" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "Nach Kategorie suchen" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3752,15 +3771,15 @@ msgstr "Stapel löschen" msgid "Bulk Edit" msgstr "Stapel bearbeiten" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "Stapel-Bearbeitung {0}" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" msgstr "Stapelverarbeitung fehlgeschlagen" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "Stapelverarbeitung erfolgreich" @@ -3775,7 +3794,7 @@ msgstr "Stapel-PDF-Export" msgid "Bulk Update" msgstr "Stapeländerung" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "Stapelgenehmigung unterstützt nur bis zu 500 Dokumente." @@ -3787,7 +3806,7 @@ msgstr "Stapelverarbeitung wird im Hintergrund eingereiht." msgid "Bulk operations only support up to 500 documents." msgstr "Stapelverarbeitung unterstützt nur bis zu 500 Dokumente." -#: frappe/model/workflow.py:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "Stapel-{0} ist im Hintergrund eingereiht." @@ -3851,7 +3870,7 @@ msgstr "Überprüfung der eingeschränkten IP-Adresse umgehen, wenn Zwei-Faktor- #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Bypass Two Factor Auth for users who login from restricted IP Address" -msgstr "Zwei Faktor Autorisierung für Benutzer aus eingeschränktem IP-Adressraum übergehen." +msgstr "Zwei-Faktor-Authentifizierung für Benutzer, die sich von einer eingeschränkten IP-Adresse anmelden, umgehen" #. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in #. DocType 'System Settings' @@ -3917,16 +3936,6 @@ msgstr "CSS-Selektor für das Element, das Sie hervorheben möchten." msgid "CSV" msgstr "CSV" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "Aufruf zum Handeln: Label" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "Aufruf zum Handeln: URL" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3977,11 +3986,6 @@ msgstr "Aufruf zum Handeln" msgid "Call To Action URL" msgstr "Aufruf zum Handeln: URL" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "Aufruf zum Handeln" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -3999,7 +4003,7 @@ msgid "Camera" msgstr "Kamera" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -4035,7 +4039,7 @@ msgstr "Kann schreiben" msgid "Can not rename as column {0} is already present on DocType." msgstr "Kann nicht umbenannt werden, da Spalte {0} bereits im DocType vorhanden ist." -#: frappe/core/doctype/doctype/doctype.py:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "Kann nur zu/von der Benennungsregel Autoincrement wechseln, wenn keine Daten im Doctype vorhanden sind" @@ -4059,14 +4063,15 @@ msgstr "Kann {0} nicht in {1} umbenennen, da {0} nicht existiert." #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "Abbrechen" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Stornieren" @@ -4084,16 +4089,18 @@ msgstr "Alle stornieren" msgid "Cancel All Documents" msgstr "Alle Dokumente abbrechen" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Abbrechen von {0} Dokumenten?" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -4131,11 +4138,11 @@ msgstr "Werte können nicht abgerufen werden" msgid "Cannot Remove" msgstr "Kann nicht entfernt werden." -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "Kann nach dem Buchen nicht mehr geändert werden" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "Zugriff auf Dateipfad {0} nicht möglich" @@ -4143,7 +4150,7 @@ msgstr "Zugriff auf Dateipfad {0} nicht möglich" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "Beim Übergang vom Zustand {0} zum Zustand {1}kann der Vorgang nicht vor dem Buchen abgebrochen werden" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "Stornierung vor Übertragen nicht möglich. Vorgang {0} beachten" @@ -4151,11 +4158,11 @@ msgstr "Stornierung vor Übertragen nicht möglich. Vorgang {0} beachten" msgid "Cannot cancel {0}." msgstr "{0} kann nicht storniert werden." -#: frappe/model/document.py:1013 +#: frappe/model/document.py:1017 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "Status kann nicht von 0 (Entwurf) zu 2 (Abgebrochen) geändert werden" -#: frappe/model/document.py:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "Der Dokumentstatus kann nicht von 1 (Gebucht) auf 0 (Entwurf) geändert werden" @@ -4163,11 +4170,11 @@ msgstr "Der Dokumentstatus kann nicht von 1 (Gebucht) auf 0 (Entwurf) geändert msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "Der Status des abgebrochenen Dokuments kann nicht geändert werden (Status {0})" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "Zustand des aufgehobenen Dokumentes kann nicht geändert werden. Übergangszeile {0}" -#: frappe/core/doctype/doctype/doctype.py:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "In „Formular anpassen“ kann nicht von/zu Benennungsschema „Autoinkrementierung“ gewechselt werden" @@ -4179,11 +4186,11 @@ msgstr "Kann {0} nicht gegen ein Kind Dokument erstellen: {1}" msgid "Cannot create private workspace of other users" msgstr "Privater Arbeitsbereich für andere Benutzer kann nicht erstellt werden" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "Die Ordner \"Startseite\" und \"Anlagen\" können nicht gelöscht werden" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "Kann nicht gelöscht oder abgebrochen werden, weil {0} {1} mit {2} {3} {4} verknüpft ist" @@ -4218,7 +4225,7 @@ msgstr "Das vom System generierte Feld {0}kann nicht gelöscht msgid "Cannot delete {0}" msgstr "Kann {0} nicht löschen" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" msgstr "{0} kann nicht gelöscht werden, da es Unterknoten gibt" @@ -4226,7 +4233,7 @@ msgstr "{0} kann nicht gelöscht werden, da es Unterknoten gibt" msgid "Cannot edit Standard Dashboards" msgstr "Standard-Dashboards können nicht bearbeitet werden" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "Standardbenachrichtigung kann nicht bearbeitet werden. Um es zu bearbeiten, deaktivieren Sie das bitte und duplizieren Sie es" @@ -4238,7 +4245,7 @@ msgstr "Standarddiagramme können nicht bearbeitet werden" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "Der Standard-Report kann nicht bearbeitet werden. Bitte kopieren und einen neuen Bericht erstellen" -#: frappe/model/document.py:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "Aufgehobenes Dokument kann nicht bearbeitet werden" @@ -4246,8 +4253,8 @@ msgstr "Aufgehobenes Dokument kann nicht bearbeitet werden" msgid "Cannot edit filters for standard charts" msgstr "Filter für Standarddiagramme können nicht bearbeitet werden" -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "Filter für Standardnummernkarten können nicht bearbeitet werden" @@ -4255,27 +4262,27 @@ msgstr "Filter für Standardnummernkarten können nicht bearbeitet werden" msgid "Cannot edit standard fields" msgstr "Standardfelder können nicht bearbeitet werden" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "{0} kann nicht für einen nicht buchbaren Doctype aktiviert werden" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "Kann Datei {} auf der Festplatte nicht finden" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "Dateiinhalt eines Ordners kann nicht abgerufen werden" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:884 msgid "Cannot have multiple printers mapped to a single print format." msgstr "Es können nicht mehrere Drucker einem Druckformat zugeordnet werden." -#: frappe/public/js/frappe/form/grid.js:1132 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "Tabelle mit mehr als 5000 Zeilen kann nicht importiert werden." -#: frappe/model/document.py:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "Aufgehobenes Dokument kann nicht verknüpft werden: {0}" @@ -4287,11 +4294,11 @@ msgstr "Zuordnung nicht möglich, da folgende Bedingung nicht erfüllt ist:" msgid "Cannot match column {0} with any field" msgstr "Die Spalte {0} kann keinem Feld zugeordnet werden" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "Zeile kann nicht verschoben werden" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "ID-Feld kann nicht entfernt werden" @@ -4299,7 +4306,7 @@ msgstr "ID-Feld kann nicht entfernt werden" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "Das Recht 'Bericht' kann nicht gesetzt werden, wenn das Recht 'Nur wenn Ersteller' gesetzt ist" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "Benachrichtigung mit Ereignis {0} im Dokumententyp {1} nicht möglich" @@ -4316,11 +4323,11 @@ msgstr "Kann {0} nicht buchen." msgid "Cannot update {0}" msgstr "Kann {0} nicht aktualisieren" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" -msgstr "Kann in \"sortieren nach\" keine Unterabfrage verwenden." +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." +msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "{0} kann für die Sortierung oder Gruppierung verwendet werden" @@ -4388,15 +4395,6 @@ msgstr "Mittig" msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." msgstr "Bestimmte Dokumente, wie z. B. eine Rechnung, sollten nach ihrer Fertigstellung nicht mehr geändert werden. Der endgültige Status für solche Dokumente wird als Gebucht bezeichnet. Sie können einschränken, welche Rollen buchen können." -#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "Kettenintegrität" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "Kettenhash" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4434,9 +4432,9 @@ msgstr "Druckformat ändern" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
\n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " +"Warning: Incorrectly updating counters can prevent documents from getting created." msgstr "Ändern Sie die initiale bzw. aktuelle Sequenznummer eines bestehenden Nummernkreises.
\n\n" -"Warnung: Eine fehlerhafte Aktualisierung der Zähler kann dazu führen, dass keine neuen Dokumente erstellt werden können. " +"Warnung: Eine fehlerhafte Aktualisierung der Zähler kann dazu führen, dass keine neuen Dokumente erstellt werden können." #. Label of the changed_at (Datetime) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -4505,7 +4503,7 @@ msgstr "Diagrammquelle" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "Diagramm Typ" @@ -4538,7 +4536,7 @@ msgstr "Unterhaltung" msgid "Check" msgstr "Kontrollkästchen" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "Anfrage-URL prüfen" @@ -4546,7 +4544,7 @@ msgstr "Anfrage-URL prüfen" msgid "Check columns to select, drag to set order." msgstr "Markieren Sie Spalten, um sie auszuwählen, ziehen Sie sie, um die Reihenfolge festzulegen." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "Überprüfen Sie das Fehlerprotokoll auf weitere Informationen: {0}" @@ -4587,11 +4585,6 @@ msgstr "Wenn Sie dies aktivieren, wird die Seite auf Ihrer Website veröffentlic msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "Wenn Sie dies aktivieren, wird ein Textbereich angezeigt, in dem Sie benutzerdefiniertes Javascript schreiben können, das auf dieser Seite ausgeführt wird." -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "Version Prüfsumme" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "Untergeordnete DocTypes sind nicht erlaubt" @@ -4601,17 +4594,17 @@ msgstr "Untergeordnete DocTypes sind nicht erlaubt" msgid "Child Doctype" msgstr "Untergeordneter DocType" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "Untertabelle {0} für Feld {1}" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Untergeordnete Tabellen werden in anderen DocTypes als Raster angezeigt" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4640,6 +4633,7 @@ msgid "Choose authentication method to be used by all users" msgstr "Wählen Sie die Authentifizierungsmethode, die von allen Benutzern verwendet werden soll" #. 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 msgid "City" msgstr "Ort" @@ -4654,7 +4648,7 @@ msgstr "Ort/Stadt" msgid "Clear" msgstr "Löschen" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "Leeren und Vorlage einfügen" @@ -4666,7 +4660,7 @@ msgstr "Leeren und Vorlage einfügen" msgid "Clear All" msgstr "Alles leeren" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Zuweisung löschen" @@ -4692,7 +4686,7 @@ msgstr "Protokolle löschen nach (in Tagen)" msgid "Clear User Permissions" msgstr "Benutzerrechte löschen" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "Email-Feld leeren und Vorlage einfügen" @@ -4704,11 +4698,15 @@ msgstr "Löschen des Enddatums, da es für veröffentlichte Seiten nicht in der msgid "Click On Customize to add your first widget" msgstr "Klicken Sie auf „Anpassen“, um Ihr erstes Widget hinzuzufügen" -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "Klicken Sie unten, um zu beginnen:" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "Klicken Sie hier" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "Klicken Sie auf eine Datei, um sie auszuwählen." @@ -4739,24 +4737,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "Klicken Sie auf {0}, um das Refresh Token zu generieren." #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "Klicken Sie auf Tabelle bearbeiten" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "Klicken Sie hier, um dynamische Filter einzustellen" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "Klicken Sie, um Filter einzustellen" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "Klicken, um nach {0} zu sortieren" @@ -4934,7 +4932,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Zuklappen" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Alle zuklappen" @@ -4989,7 +4987,7 @@ msgstr "Zusammenklappbar hängt ab von (JS)" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5045,11 +5043,11 @@ msgstr "Spaltenname" msgid "Column Name cannot be empty" msgstr "Spaltenname darf nicht leer sein" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "Spaltenbreite" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "Spaltenbreite darf nicht null sein." @@ -5076,7 +5074,7 @@ msgstr "Spalten" msgid "Columns / Fields" msgstr "Spalten / Felder" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "Spalten basierend auf" @@ -5118,16 +5116,6 @@ msgstr "Kommentarart" msgid "Comment can only be edited by the owner" msgstr "Kommentar kann nur vom Eigentümer bearbeitet werden" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "Kommentarlimit" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "Kommentarlimit pro Stunde" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "Die Öffentlichkeit von Kommentaren kann nur vom ursprünglichen Autor oder einem Systemmanager geändert werden." @@ -5135,7 +5123,7 @@ msgstr "Die Öffentlichkeit von Kommentaren kann nur vom ursprünglichen Autor o #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "Kommentare" @@ -5144,7 +5132,7 @@ msgstr "Kommentare" msgid "Comments and Communications will be associated with this linked document" msgstr "Kommentare und Kommunikation werden diesem verknüpfte Dokument zugeordnet." -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "Kommentare dürfen keine Links oder E-Mail-Adressen enthalten" @@ -5216,12 +5204,12 @@ msgid "Company Name" msgstr "Firma" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "Versionen vergleichen" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "Kompilierungswarnung" @@ -5301,8 +5289,8 @@ msgstr "Komprimiert" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5316,6 +5304,11 @@ msgstr "Bedingung" msgid "Condition JSON" msgstr "Bedingung JSON" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5333,7 +5326,7 @@ msgstr "Bedingungen" #. Settings' #: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Config" -msgstr "" +msgstr "Konfiguration" #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' @@ -5341,11 +5334,11 @@ msgstr "" msgid "Configuration" msgstr "Konfiguration" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "Diagramm konfigurieren" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "Spalten konfigurieren" @@ -5372,7 +5365,7 @@ msgstr "Legen Sie fest, wie berichtigte Dokumente benannt werden sollen.
\n\n msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "Konfigurieren Sie verschiedene Aspekte der Funktionsweise der Dokumentbenennung, z. B. die Nummernkreise und den aktuellen Zähler." -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Bestätigen" @@ -5391,7 +5384,7 @@ msgstr "Zugang bestätigen" msgid "Confirm Deletion of Account" msgstr "Löschen des Kontos bestätigen" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "Bestätige neues Passwort" @@ -5418,7 +5411,7 @@ msgstr "Bestätigt" msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "Herzlichen Glückwunsch zum Abschluss der Modul-Setup. Wenn Sie mehr erfahren möchten, können Sie sich die Dokumentation hier ansehen." -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "Mit {} verbinden" @@ -5436,8 +5429,8 @@ msgstr "Verbundene Anwendung" msgid "Connected User" msgstr "Verbundener Benutzer" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "Verbunden mit QZ Tray!" @@ -5488,6 +5481,10 @@ msgstr "Einschränkungen" msgid "Contact" msgstr "Kontakt" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
{0}" +msgstr "" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5545,15 +5542,13 @@ msgstr "Enthält {0} Sicherheitsfixes" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5561,24 +5556,12 @@ msgstr "Enthält {0} Sicherheitsfixes" msgid "Content" msgstr "Inhalt" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "Inhalt (HTML)" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "Inhalt (Markdown)" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "Inhalts-Hash" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "Inhaltstyp" @@ -5646,7 +5629,7 @@ msgstr "Link kopieren" msgid "Copy embed code" msgstr "Einbettungscode kopieren" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "Fehler in die Zwischenablage kopieren" @@ -5654,12 +5637,16 @@ msgstr "Fehler in die Zwischenablage kopieren" msgid "Copy to Clipboard" msgstr "In die Zwischenablage kopieren" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "" + #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" msgstr "Copyright" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "Core DocTypes können nicht angepasst werden." @@ -5667,7 +5654,7 @@ msgstr "Core DocTypes können nicht angepasst werden." msgid "Core Modules {0} cannot be searched in Global Search." msgstr "Kernmodule {0} können in der globalen Suche nicht durchsucht werden." -#: frappe/printing/page/print/print.js:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "Korrekte Version :" @@ -5675,7 +5662,7 @@ msgstr "Korrekte Version :" msgid "Could not connect to outgoing email server" msgstr "Konnte keine Verbindung zum Postausgangsserver herstellen" -#: frappe/model/document.py:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "{0} konnte nicht gefunden werden" @@ -5683,15 +5670,15 @@ msgstr "{0} konnte nicht gefunden werden" msgid "Could not map column {0} to field {1}" msgstr "Die Spalte {0} konnte dem Feld {1} nicht zugeordnet werden." -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" -msgstr "" +msgstr "Feld konnte nicht geparst werden: {0}" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " -msgstr "Konnte nicht gestartet werden: " +msgid "Could not start up:" +msgstr "Konnte nicht gestartet werden:" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "Konnte nicht speichern, überprüfen Sie bitte die eingegebenen Daten" @@ -5722,7 +5709,7 @@ msgstr "Filter zählen" #: frappe/public/js/frappe/form/dashboard.js:509 msgid "Count of linked documents" -msgstr "" +msgstr "Anzahl der verknüpften Dokumente" #. Label of the counter (Int) field in DocType 'Document Naming Rule' #: frappe/core/doctype/document_naming_rule/document_naming_rule.json @@ -5736,13 +5723,14 @@ msgstr "Zähler" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "Land" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "Landesvorwahl erforderlich" @@ -5774,13 +5762,13 @@ msgstr "H" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Erstellen" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "Erstellen & Fortfahren" @@ -5794,7 +5782,7 @@ msgid "Create Card" msgstr "Karte erstellen" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "Diagramm erstellen" @@ -5828,12 +5816,12 @@ msgstr "Protokoll erstellen" msgid "Create New" msgstr "Neuen Eintrag erstellen" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Neuen Eintrag erstellen" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "Neuen DocType erstellen" @@ -5841,7 +5829,7 @@ msgstr "Neuen DocType erstellen" msgid "Create New Kanban Board" msgstr "Neue Kanban-Tafel erstellen" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "Benutzer E-Mail erstellen" @@ -5853,7 +5841,7 @@ msgstr "Ein neues Format erstellen" msgid "Create a Reminder" msgstr "Erinnerung erstellen" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "Neuen Eintrag erstellen ..." @@ -5861,11 +5849,11 @@ msgstr "Neuen Eintrag erstellen ..." msgid "Create a new record" msgstr "Erstellen Sie einen neuen Datensatz" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "Neu erstellen: {0}" @@ -5881,7 +5869,7 @@ msgstr "Druckformat erstellen oder bearbeiten" msgid "Create or Edit Workflow" msgstr "Workflow erstellen oder bearbeiten" -#: frappe/public/js/frappe/list/list_view.js:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "Erstelle deine erste {0}" @@ -5891,7 +5879,7 @@ msgstr "Erstellen Sie Ihren Workflow visuell mit Hilfe des Workflow-Builders." #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "Erstellt" @@ -5907,7 +5895,7 @@ msgstr "Erstellt am" msgid "Created By" msgstr "Erstellt von" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "benutzerdefiniertes Feld {0} in {1} erstellt" @@ -5919,7 +5907,7 @@ msgstr "benutzerdefiniertes Feld {0} in {1} erstellt" msgid "Created On" msgstr "Erstellt am" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "Erstellen von {0}" @@ -6223,12 +6211,12 @@ msgstr "Benutzerdefiniertes Feld erfolgreich in {0} umbenannt." #: frappe/api/v2.py:148 msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" -msgstr "" +msgstr "Benutzerdefinierte get_list-Methode für {0} muss ein QueryBuilder-Objekt oder None zurückgeben. Es erhielt {1}" #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "Benutzerdefiniert?" @@ -6256,14 +6244,14 @@ msgstr "Anpassungen Zurücksetzen" msgid "Customizations for {0} exported to:
{1}" msgstr "Anpassungen für {0} exportiert nach:
{1}" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "Anpassen" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "Anpassen" @@ -6282,7 +6270,7 @@ msgstr "Dashboard anpassen" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "Formular anpassen" @@ -6360,7 +6348,7 @@ msgstr "Täglich" msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "Ein täglicher Ereignisbericht wird für alle Kalenderereignisse gesendet, bei denen Erinnerungen aktiviert sind." -#: frappe/desk/doctype/event/event.py:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "Tägliche Ereignisse sollten am selben Tag enden." @@ -6407,7 +6395,7 @@ msgstr "Dunkles Design" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "Dashboard" @@ -6466,7 +6454,6 @@ msgstr "Dashboards" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6479,7 +6466,6 @@ msgstr "Dashboards" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6515,7 +6501,7 @@ msgstr "Datenimportprotokoll" msgid "Data Import Template" msgstr "Vorlage für Datenimport" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "Daten zu lang" @@ -6546,7 +6532,7 @@ msgstr "Auslastung der Datenbankzeilengröße" msgid "Database Storage Usage By Tables" msgstr "Datenbankspeichernutzung nach Tabellen" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "Begrenzung der Zeilengröße von Datenbanktabellen" @@ -6684,11 +6670,11 @@ msgstr "Sehr geehrte {0}" msgid "Debug Log" msgstr "Debug-Protokoll" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "Das Dezimaltrennzeichen muss „.“ sein, wenn Anführungszeichen auf „Nicht numerisch“ eingestellt sind." -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "Das Dezimaltrennzeichen muss ein einzelnes Zeichen sein" @@ -6850,11 +6836,11 @@ msgstr "Standardarbeitsbereich" msgid "Default display currency" msgstr "Standard-Display-Währung" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "Die Standardeinstellung für den Feldtyp 'Check' {0} muss entweder '0' oder '1' sein." -#: frappe/core/doctype/doctype/doctype.py:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 msgid "Default value for {0} must be in the list of options." msgstr "Der Standardwert für {0} muss in der Liste der Optionen enthalten sein." @@ -6888,6 +6874,12 @@ msgstr "Standardeinstellungen aktualisiert" msgid "Defines actions on states and the next step and allowed roles." msgstr "Definiert Aktionen für Zustände und den nächsten Schritt sowie erlaubte Rollen." +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6905,22 +6897,27 @@ msgstr "Verzögert" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_permission/user_permission_list.js:189 -#: frappe/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Löschen" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Löschen" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "Löschen" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "Konto löschen" @@ -6929,6 +6926,12 @@ msgstr "Konto löschen" msgid "Delete All" msgstr "Alle löschen" +#. Label of the delete_background_exported_reports_after (Int) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Delete Background Exported Reports After (Hours)" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6938,7 +6941,7 @@ msgstr "Spalte löschen" msgid "Delete Data" msgstr "Daten löschen" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "Kanban-Board löschen" @@ -6952,7 +6955,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Registerkarte löschen" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "Löschen und neu generieren" @@ -6961,7 +6964,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "Spalte löschen" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "Kommentar löschen?" @@ -6994,12 +6997,12 @@ msgstr "Registerkarte löschen" msgid "Delete this record to allow sending to this email address" msgstr "Löschen Sie diesen Datensatz, um das Senden an diese E-Mail Adresse zu ermöglichen" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "Element {0} endgültig löschen?" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "{0} Elemente dauerhaft löschen?" @@ -7035,11 +7038,15 @@ msgstr "Gelöschte Dokumente" msgid "Deleted Name" msgstr "Gelöschte Namen" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "Alle Dokumente erfolgreich gelöscht" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Gelöscht!" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "Löscht {0}" @@ -7054,8 +7061,8 @@ msgstr "Lösche {0}..." #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " -msgstr "Schritte zur Löschung " +msgid "Deletion Steps" +msgstr "Schritte zur Löschung" #: frappe/core/doctype/page/page.py:110 #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 @@ -7071,7 +7078,7 @@ msgstr "Trennzeichenoptionen" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "Erkennung von Begrenzungszeichen fehlgeschlagen. Versuchen Sie, benutzerdefinierte Trennzeichen zu aktivieren und passen Sie die Trennzeichenoptionen entsprechend Ihren Daten an." -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "Trennzeichen muss ein einzelnes Zeichen sein" @@ -7098,7 +7105,7 @@ msgstr "Abteilung" msgid "Dependencies" msgstr "Abhängigkeiten" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "Abhängigkeiten & Lizenzen" @@ -7133,7 +7140,6 @@ msgstr "Nachkommen von (einschließlich)" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -7154,7 +7160,6 @@ msgstr "Nachkommen von (einschließlich)" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -7164,11 +7169,6 @@ msgstr "Nachkommen von (einschließlich)" msgid "Description" msgstr "Beschreibung" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "Beschreibung für Auflistungsseite, im Klartext, nur ein paar Zeilen. (max 200 Zeichen)" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -7252,7 +7252,7 @@ msgstr "Verknüpfung ist bereits auf dem Schreibtisch platziert" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "Details" @@ -7313,11 +7313,6 @@ msgstr "Änderungsprotokoll-Benachrichtigung deaktivieren" msgid "Disable Comment Count" msgstr "Kommentarzähler deaktivieren" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "Kommentare deaktivieren" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7335,11 +7330,6 @@ msgstr "Zählung deaktivieren" msgid "Disable Document Sharing" msgstr "Dokumentenfreigabe deaktivieren" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "Likes deaktivieren" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "Bericht deaktivieren" @@ -7349,6 +7339,11 @@ msgstr "Bericht deaktivieren" msgid "Disable SMTP server authentication" msgstr "SMTP-Server-Authentifizierung deaktivieren" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7394,7 +7389,6 @@ msgstr "Registrierung neuer Benutzer deaktivieren" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7409,7 +7403,6 @@ msgstr "Registrierung neuer Benutzer deaktivieren" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "Deaktiviert" @@ -7420,7 +7413,7 @@ msgstr "Automatische Antwort deaktiviert" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "Verwerfen" @@ -7438,7 +7431,7 @@ msgstr "Verwerfen" msgid "Discard {0}" msgstr "{0} verwerfen" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "Verwerfen?" @@ -7461,7 +7454,7 @@ msgstr "Unterhaltungsantwort" msgid "Discussion Topic" msgstr "Unterhaltungsthema" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7497,19 +7490,23 @@ msgstr "Trenner" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " -msgstr "Keinen neuen Benutzer erstellen" +msgid "Do Not Create New User" +msgstr "" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "Keinen neuen Benutzer anlegen, wenn der Benutzer mit E-Mail nicht im System vorhanden ist" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "Bearbeiten Sie keine Header, die in der Vorlage voreingestellt sind" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "Wollen Sie trotzdem fortfahren?" @@ -7602,7 +7599,7 @@ msgstr "Der DocStatus der folgenden Zustände hat sich geändert:
{0} msgid "DocType" msgstr "DocType" -#: frappe/core/doctype/doctype/doctype.py:1577 +#: frappe/core/doctype/doctype/doctype.py:1578 msgid "DocType {0} provided for the field {1} must have atleast one Link field" msgstr "Der für das Feld {1} angegebene DocType {0} muss mindestens ein Link-Feld enthalten" @@ -7649,11 +7646,11 @@ msgstr "DocType-Status" msgid "DocType View" msgstr "DocType-Ansicht" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "DocType kann nicht zusammengeführt werden" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "DocType darf nur vom Administrator umbenannt werden" @@ -7662,7 +7659,7 @@ msgstr "DocType darf nur vom Administrator umbenannt werden" msgid "DocType is a Table / Form in the application." msgstr "DocType ist eine Tabelle / ein Formular in der Anwendung." -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "DocType muss für das ausgewählte Doc-Ereignis übermittelt werden" @@ -7695,7 +7692,7 @@ msgstr "DocType {0} existiert nicht." msgid "DocType {} not found" msgstr "DocType {} nicht gefunden" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "Der Name von DocType sollte nicht mit Leerzeichen beginnen oder enden" @@ -7709,7 +7706,7 @@ msgstr "DocTypes können nicht geändert werden, bitte verwenden Sie stattdessen msgid "Doctype" msgstr "DocType" -#: frappe/core/doctype/doctype/doctype.py:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "Der DocType-Name ist auf {0} Zeichen begrenzt ({1})" @@ -7771,31 +7768,29 @@ msgstr "Dokumenten-Verknüpfung" msgid "Document Links" msgstr "Dokumentverknüpfungen" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "Dokumentenverknüpfungen Zeile #{0}: Feld {1} konnte nicht in DocType {2} gefunden werden" -#: frappe/core/doctype/doctype/doctype.py:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "Dokumentenverknüpfungen Zeile #{0}: Ungültiger DocType oder Feldname." -#: frappe/core/doctype/doctype/doctype.py:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "Dokumentenverknüpfungen Zeile #{0}: Übergeordneter DocType ist obligatorisch für interne Links" -#: frappe/core/doctype/doctype/doctype.py:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "Dokumentverknüpfungen Zeile #{0}: Tabellenfeldname ist obligatorisch für interne Links" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7937,13 +7932,13 @@ msgstr "Dokumenttitel" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "Dokumententyp" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 msgid "Document Type and Function are required to create a number card" msgstr "Dokumententyp und Funktion werden benötigt, um eine Nummernkarte zu erstellen" @@ -7980,7 +7975,7 @@ msgid "Document Types and Permissions" msgstr "Dokumenttypen und Berechtigungen" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "Dokument entsperrt" @@ -7988,15 +7983,15 @@ msgstr "Dokument entsperrt" msgid "Document follow is not enabled for this user." msgstr "Folgen von Dokumenten ist für diesen Benutzer nicht aktiviert." -#: frappe/public/js/frappe/list/list_view.js:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "Dokument wurde storniert" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "Dokument wurde gebucht" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "Das Dokument befindet sich im Entwurfsstatus" @@ -8138,13 +8133,13 @@ msgstr "Donut" msgid "Double click to edit label" msgstr "Doppelklick zum Bearbeiten der Beschriftung" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "Herunterladen" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "Herunterladen" @@ -8171,7 +8166,7 @@ msgstr "Download-Link" msgid "Download PDF" msgstr "PDF Herunterladen" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "Bericht herunterladen" @@ -8234,7 +8229,7 @@ msgstr "Ziehen Sie Elemente aus der Seitenleiste, um sie hinzuzufügen. Ziehen S msgid "Drag to add state" msgstr "Ziehen, um Zustand hinzuzufügen" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "Dateien hier ablegen" @@ -8267,7 +8262,7 @@ msgstr "Duplizierter Eintrag" msgid "Duplicate Filter Name" msgstr "Doppelter Filtername" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "Doppelter Name" @@ -8366,17 +8361,17 @@ msgstr "ESC" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8384,7 +8379,7 @@ msgstr "ESC" msgid "Edit" msgstr "Bearbeiten" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Bearbeiten" @@ -8394,7 +8389,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Bearbeiten" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "Bearbeiten" @@ -8423,7 +8418,7 @@ msgstr "Benutzerdefiniertes HTML bearbeiten" msgid "Edit DocType" msgstr "DocType bearbeiten" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "DocType bearbeiten" @@ -8441,7 +8436,7 @@ msgstr "Filter bearbeiten" msgid "Edit Footer" msgstr "Fußzeile bearbeiten" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "Format bearbeiten" @@ -8526,7 +8521,7 @@ msgstr "DocType {0} bearbeiten" msgid "Edit to add content" msgstr "Bearbeiten um Inhalte hinzuzufügen" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "Antwort bearbeiten" @@ -8535,7 +8530,7 @@ msgstr "Antwort bearbeiten" msgid "Edit your workflow visually using the Workflow Builder." msgstr "Bearbeiten Sie Ihren Workflow visuell mit Hilfe des Workflow-Builders." -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "Bearbeiten {0}" @@ -8543,7 +8538,7 @@ msgstr "Bearbeiten {0}" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "Editierbares Raster" @@ -8582,11 +8577,14 @@ msgstr "Element Selektor" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8595,6 +8593,7 @@ msgstr "Element Selektor" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8604,6 +8603,8 @@ msgstr "Element Selektor" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "E-Mail" @@ -8635,7 +8636,7 @@ msgstr "E-Mail-Konto deaktiviert." msgid "Email Account Name" msgstr "E-Mail-Konten-Name" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "E-Mail-Konto wurde mehrmals hinzugefügt" @@ -8723,6 +8724,7 @@ msgid "Email IDs" msgstr "E-Mail-Adressen" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "E-Mail-Adresse" @@ -8766,10 +8768,10 @@ msgstr "E-Mail-Wiederholungslimit" msgid "Email Rule" msgstr "E-Mail-Regel" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" -msgstr "E-Mail gesendet" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" +msgstr "E-Mail gesendet am" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType @@ -8834,11 +8836,11 @@ msgstr "E-Mail wurde als Spam markiert" msgid "Email has been moved to trash" msgstr "E-Mail wurde in den Papierkorb geworfen" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "E-Mail ist obligatorisch, um Benutzer-E-Mails zu erstellen" -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "E-Mail wurde nicht an {0} gesendet (abbestellt / deaktiviert)" @@ -8877,7 +8879,7 @@ msgstr "E-Mails werden mit den nächsten möglichen Workflow-Aktionen gesendet" msgid "Embed code copied" msgstr "Einbettungscode kopiert" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "Leerer Alias ist nicht erlaubt" @@ -8885,9 +8887,9 @@ msgstr "Leerer Alias ist nicht erlaubt" msgid "Empty column" msgstr "Leere Spalte" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" -msgstr "" +msgstr "Leere String-Argumente sind nicht zulässig" #. Label of the enable (Check) field in DocType 'Google Calendar' #. Label of the enable (Check) field in DocType 'Google Contacts' @@ -8904,7 +8906,7 @@ msgstr "Aktivieren" msgid "Enable Address Autocompletion" msgstr "Automatische Adressvervollständigung aktivieren" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "Aktivieren Sie "Automatische Wiederholung zulassen" für den Doctype {0} in "Formular anpassen"" @@ -8930,11 +8932,6 @@ msgstr "Kommentare aktivieren" msgid "Enable Dynamic Client Registration" msgstr "" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "E-Mail-Benachrichtigung aktivieren" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -9028,11 +9025,6 @@ msgstr "Sicherheit aktivieren" msgid "Enable Social Login" msgstr "Social Logins aktivieren" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "Social Sharing aktivieren" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "Protokollierung von Seitenaufrufen aktivieren" @@ -9040,7 +9032,7 @@ msgstr "Protokollierung von Seitenaufrufen aktivieren" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "Aktivieren Sie zwei Faktor Auth" @@ -9052,12 +9044,6 @@ msgstr "Aktivieren Sie den Entwicklermodus, um eine Standard-Druckvorlage zu ers msgid "Enable developer mode to create a standard Web Template" msgstr "Aktivieren Sie den Entwicklermodus, um eine Standard-Webvorlage zu erstellen" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "E-Mail-Benachrichtigung für Kommentare oder Likes zu Ihren Blog-Beiträgen aktivieren." - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -9081,6 +9067,7 @@ msgstr "In-App-Website-Tracking aktivieren" #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -9093,6 +9080,7 @@ msgstr "In-App-Website-Tracking aktivieren" #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "Aktiviert" @@ -9118,15 +9106,11 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "Wenn Sie die automatische Beantwortung für ein eingehendes E-Mail-Konto aktivieren, werden automatische Antworten an alle synchronisierten E-Mails gesendet. Möchten Sie fortfahren?" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "Falls aktiviert, wird Ihre Website auf einem zentralen Relay-Server registriert, um Push-Benachrichtigungen für alle installierten Apps über Firebase Cloud Messaging zu senden. Dieser Server speichert nur Benutzer-Tokens und Fehlerprotokolle, und es werden keine Nachrichten gespeichert." - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " -msgstr "Falls aktiviert, wird Ihre Website auf einem zentralen Relay-Server registriert, um Push-Benachrichtigungen für alle installierten Apps über Firebase Cloud Messaging zu senden. Dieser Server speichert nur Benutzer-Tokens und Fehlerprotokolle, und es werden keine Nachrichten gespeichert. " +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "Falls aktiviert, wird Ihre Website auf einem zentralen Relay-Server registriert, um Push-Benachrichtigungen für alle installierten Apps über Firebase Cloud Messaging zu senden. Dieser Server speichert nur Benutzer-Tokens und Fehlerprotokolle, und es werden keine Nachrichten gespeichert." #. Description of the 'Queue in Background (BETA)' (Check) field in DocType #. 'DocType' @@ -9142,11 +9126,11 @@ msgstr "Wenn Sie dies aktivieren, werden die Dokumente im Hintergrund gebucht" msgid "Encrypt Backups" msgstr "Backups verschlüsseln" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "Der Verschlüsselungsschlüssel hat ein ungültiges Format!" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "Verschlüsselungsschlüssel ist ungültig! Bitte überprüfen Sie die Datei site_config.json" @@ -9158,7 +9142,7 @@ msgstr "Ende" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -9174,6 +9158,10 @@ msgstr "Enddatumsfeld" msgid "End Date cannot be before Start Date!" msgstr "Das Enddatum darf nicht vor dem Startdatum liegen!" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9218,7 +9206,7 @@ msgstr "Geben Sie in den Google-Einstellungen die Client ID und das Client Secre msgid "Enter Code displayed in OTP App." msgstr "Geben Sie den in der OTP-App angezeigten Code ein." -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "Geben Sie den/die E-Mail-Empfänger an" @@ -9288,10 +9276,17 @@ msgstr "ist gleich" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9301,7 +9296,7 @@ msgstr "ist gleich" msgid "Error" msgstr "Fehler" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "Fehler" @@ -9321,7 +9316,7 @@ msgstr "Fehlerprotokolle" msgid "Error Message" msgstr "Fehlermeldung" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 msgid "Error connecting to QZ Tray Application...

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

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

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

Klicken Sie hier, um QZ Tray herunterzuladen und zu installieren .
Klicken Sie hier, um mehr über den Rohdruck zu erfahren ." @@ -9349,9 +9344,9 @@ msgstr "Fehler im Client-Skript." msgid "Error in Header/Footer Script" msgstr "Fehler im Kopf-/Fußzeilenskript" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "Fehler in der Benachrichtigung" @@ -9361,29 +9356,29 @@ msgstr "Fehler im Druckformat in Zeile {0}: {1}" #: frappe/api/v2.py:156 msgid "Error in {0}.get_list: {1}" -msgstr "" +msgstr "Fehler in {0}.get_list: {1}" #: frappe/database/query.py:231 msgid "Error parsing nested filters: {0}" -msgstr "" +msgstr "Fehler beim Parsen verschachtelter Filter: {0}" #: frappe/email/doctype/email_account/email_account.py:670 msgid "Error while connecting to email account {0}" msgstr "Fehler beim Verbinden mit dem E-Mail-Konto {0}" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Fehler beim Auswerten der Benachrichtigung {0}. Bitte reparieren Sie Ihre Vorlage." -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "Fehler: Daten fehlen in Tabelle {0}" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "Fehler: Wert fehlt für {0}: {1}" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "Fehler: {0} Zeile {1}: Wert fehlt für: {2}" @@ -9440,7 +9435,7 @@ msgstr "Ereignistyp" msgid "Events" msgstr "Ereignisse" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "Ereignisse im heutigen Kalender" @@ -9524,7 +9519,7 @@ msgstr "Ausführen" msgid "Execute Console script" msgstr "Führen Sie das Konsolenskript aus" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "Code wird ausgeführt" @@ -9532,7 +9527,7 @@ msgstr "Code wird ausgeführt" msgid "Executing..." msgstr "Wird ausgeführt..." -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "Ausführungszeit: {0} Sek" @@ -9558,14 +9553,14 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Erweitern" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Alle ausklappen" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" -msgstr "" +msgstr "Erwartet 'and' oder 'or' Operator, gefunden: {0}" #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "Experimental" @@ -9591,7 +9586,9 @@ msgid "Expire Notification On" msgstr "Mitteilung läuft. ab am" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "Abgelaufen" @@ -9619,13 +9616,13 @@ msgstr "Ablaufzeit der QR-Code-Bildseite" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Exportieren" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Exportieren" @@ -9662,20 +9659,20 @@ msgstr "Export von" msgid "Export Import Log" msgstr "Import-Log exportieren" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" -msgstr "Exportbericht: {0}" +msgstr "Bericht exportieren: {0}" #: frappe/public/js/frappe/data_import/data_exporter.js:26 msgid "Export Type" msgstr "Exporttyp" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "Alle übereinstimmenden Zeilen exportieren?" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "Alle {0} Zeilen exportieren?" @@ -9683,6 +9680,10 @@ msgstr "Alle {0} Zeilen exportieren?" msgid "Export as zip" msgstr "Als Zip-Datei exportieren" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "Export nicht erlaubt. Rolle {0} wird gebraucht zum exportieren." @@ -9788,7 +9789,7 @@ msgstr "Fehlgeschlagene Aufträge" msgid "Failed Logins (Last 30 days)" msgstr "Fehlgeschlagene Anmeldungen (Letzte 30 Tage)" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "Fehlgeschlagene Transaktionen" @@ -9805,7 +9806,7 @@ msgstr "Passwort konnte nicht geändert werden." msgid "Failed to complete setup" msgstr "Der Abschluss des Setup ist fehlgeschlagen." -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "Fehler beim Berechnen des Anfragekörpers: {}" @@ -9814,15 +9815,15 @@ msgstr "Fehler beim Berechnen des Anfragekörpers: {}" msgid "Failed to connect to server" msgstr "Verbindung zum Server fehlgeschlagen" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "Fehler beim Dekodieren des Tokens. Bitte geben Sie ein gültiges Base64-codiertes Token an." -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "Schlüssel {0} konnte nicht entschlüsselt werden" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "Löschen von {0} Dokumenten fehlgeschlagen: {1}" @@ -9830,8 +9831,8 @@ msgstr "Löschen von {0} Dokumenten fehlgeschlagen: {1}" msgid "Failed to enable scheduler: {0}" msgstr "Konnte Zeitplaner nicht aktivieren: {0}" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "Die Bedingungen konnten nicht ausgewertet werden: {}" @@ -9847,7 +9848,7 @@ msgstr "Fehler beim Generieren von Namen aus dem Nummernkreis" msgid "Failed to generate preview of series" msgstr "Vorschau des Nummernkreises konnte nicht erstellt werden" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "Methode für den Befehl {0} mit {1} konnte nicht abgerufen werden" @@ -9867,11 +9868,11 @@ msgstr "Fehler beim Importieren des virtuellen Doctype {}, ist die Controller-Da msgid "Failed to optimize image: {0}" msgstr "Fehler beim Optimieren des Bilds: {0}" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "Nachricht konnte nicht dargestellt werden: {}" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "Betreff konnte nicht dargestellt werden: {}" @@ -9921,12 +9922,6 @@ msgstr "FavIcon" msgid "Fax" msgstr "Fax" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "Vorgestellt" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "Rückmeldung" @@ -9984,17 +9979,17 @@ msgstr "Abrufen von Standarddokumenten der globalen Suche." #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "Feld" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" msgstr "Das Feld "Route" ist für Web-Ansichten obligatorisch" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "Das Feld \"Titel\" ist obligatorisch, wenn \"Website-Suchfeld\" eingestellt ist." @@ -10007,7 +10002,7 @@ msgstr "Das Feld "Wert" ist obligatorisch. Bitte geben Sie Wert aktual msgid "Field Description" msgstr "Feldbeschreibung" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "Feld fehlt" @@ -10037,7 +10032,7 @@ msgstr "Feldvorlage" msgid "Field Type" msgstr "Feldtyp" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "Feld in der Abfrage nicht erlaubt" @@ -10063,11 +10058,11 @@ msgstr "Das Feld {0} existiert nicht auf {1}" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "Das Feld {0} bezieht sich auf einen nicht existierenden Doctype {1}." -#: frappe/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "Feld {0} nicht gefunden" -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "Feld {0} im Dokument {1} ist weder ein Feld für eine Handynummer noch ein Kunden- oder Benutzerverknüpfung" @@ -10085,20 +10080,20 @@ msgstr "Feld {0} im Dokument {1} ist weder ein Feld für eine Handynummer noch e #: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json #: frappe/desk/doctype/form_tour_step/form_tour_step.json #: frappe/integrations/doctype/webhook_data/webhook_data.json -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "Feldname" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "Feldname '{0}' im Konflikt mit einem {1} mit dem Namen {2} in {3}" -#: frappe/core/doctype/doctype/doctype.py:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "Der Feldname {0} muss existieren, um die automatische Benennung zu ermöglichen" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "Feldname ist auf 64 Zeichen ({0})" @@ -10114,15 +10109,15 @@ msgstr "Feldname, der der DocType für dieses Verknüpfungsfeld sein wird." msgid "Fieldname {0} appears multiple times" msgstr "Feldname {0} erscheint mehrfach" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "Feldname {0} kann nicht Sonderzeichen wie {1} beinhalten" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "Feldname {0} im Konflikt mit Meta-Objekt" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "Der Feldname {0} ist eingeschränkt" @@ -10145,7 +10140,7 @@ msgstr "Der Feldname {0} ist eingeschränkt" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -10158,7 +10153,7 @@ msgstr "Felder" msgid "Fields Multicheck" msgstr "Felder Multicheck" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "Felder `file_name` oder `file_url` müssen für die Datei gesetzt sein" @@ -10166,7 +10161,7 @@ msgstr "Felder `file_name` oder `file_url` müssen für die Datei gesetzt sein" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "Felder müssen eine Liste oder ein Tupel sein, wenn as_list aktiviert ist" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10194,7 +10189,7 @@ msgstr "Feldtyp" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "Feldtyp kann nicht von {0} auf {1} geändert werden" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "Feldtyp kann nicht von {0} nach {1} in Zeile {2} geändert werden" @@ -10207,7 +10202,7 @@ msgstr "Feldtyp kann nicht von {0} nach {1} in Zeile {2} geändert werden" msgid "File" msgstr "Datei" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "Datei \"{0}\" wurde wegen ungültigem Dateityp übersprungen" @@ -10260,7 +10255,7 @@ msgstr "Datei-URL" msgid "File backup is ready" msgstr "Dateisicherung ist bereit" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "Der Dateiname darf nicht {0} haben" @@ -10268,7 +10263,7 @@ msgstr "Der Dateiname darf nicht {0} haben" msgid "File not attached" msgstr "Datei nicht angehängt" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "Dateigröße hat die maximal zulässige Größe von {0} MB überschritten" @@ -10277,11 +10272,11 @@ msgstr "Dateigröße hat die maximal zulässige Größe von {0} MB überschritte msgid "File too big" msgstr "Datei zu groß" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "Der Dateityp {0} ist nicht zulässig" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "Datei {0} ist nicht vorhanden" @@ -10295,10 +10290,10 @@ msgstr "Dateien" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10335,11 +10330,11 @@ msgstr "Name des Filters" msgid "Filter Values" msgstr "Werte filtern" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10357,7 +10352,6 @@ msgstr "Gefiltert nach" msgid "Filtered Records" msgstr "Gefilterte Datensätze" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "Gefiltert nach \"{0}\"" @@ -10372,7 +10366,9 @@ msgstr "Gefiltert nach \"{0}\"" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10394,6 +10390,11 @@ msgstr "Filterkonfiguration" msgid "Filters Display" msgstr "Filter anzeigen" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10406,11 +10407,11 @@ msgstr "Filter JSON" msgid "Filters Section" msgstr "Filterbereich" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "Filter angewendet für {0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "Filter gespeichert" @@ -10423,18 +10424,18 @@ msgstr "Filter sind über filters zugänglich.

Ausgabe als msgid "Filters {0}" msgstr "Filter {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:1427 +#: frappe/public/js/frappe/views/reports/report_view.js:1429 msgid "Filters:" msgstr "Filter:" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 msgid "Find '{0}' in ..." msgstr "Finde '{0}' in ..." #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 msgid "Find {0} in {1}" msgstr "{0} in {1} finden" @@ -10458,8 +10459,12 @@ msgstr "Erster Wochentag" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "Vorname" @@ -10468,10 +10473,6 @@ msgstr "Vorname" msgid "First Success Message" msgstr "Erste Erfolgsmeldung" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:49 -msgid "First Transaction" -msgstr "Erste Transaktion" - #: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." msgstr "Erste Datenspalte muss leer sein." @@ -10522,11 +10523,11 @@ msgstr "Gleitkommapräzision" msgid "Fold" msgstr "Falz" -#: frappe/core/doctype/doctype/doctype.py:1450 +#: frappe/core/doctype/doctype/doctype.py:1451 msgid "Fold can not be at the end of the form" msgstr "Falz kann nicht am Ende eines Formulars sein" -#: frappe/core/doctype/doctype/doctype.py:1448 +#: frappe/core/doctype/doctype/doctype.py:1449 msgid "Fold must come before a Section Break" msgstr "Falz muss vor einem Bereichsumbruch kommen" @@ -10544,7 +10545,7 @@ msgstr "Ordnername" msgid "Folder name should not include '/' (slash)" msgstr "Ordnername sollte nicht '/' (Schrägstrich) enthalten" -#: frappe/core/doctype/file/file.py:472 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "Ordner {0} ist nicht leer" @@ -10651,7 +10652,7 @@ msgstr "Fußzeile Details" msgid "Footer HTML" msgstr "Fußzeile HTML" -#: frappe/printing/doctype/letter_head/letter_head.py:75 +#: frappe/printing/doctype/letter_head/letter_head.py:81 msgid "Footer HTML set from attachment {0}" msgstr "Fußzeilen-HTML aus Anhang {0} festgelegt" @@ -10688,7 +10689,7 @@ msgstr "Fußzeilenvorlage" msgid "Footer Template Values" msgstr "Werte der Fußzeilenvorlage" -#: frappe/printing/page/print/print.js:116 +#: frappe/printing/page/print/print.js:129 msgid "Footer might not be visible as {0} option is disabled" msgstr "Die Fußzeile ist möglicherweise nicht sichtbar, da die Option {0} deaktiviert ist" @@ -10747,8 +10748,8 @@ msgstr "Für Benutzer" msgid "For Value" msgstr "Für Wert" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "Verwenden Sie zum Vergleich> 5, <10 oder = 324. Verwenden Sie für Bereiche 5:10 (für Werte zwischen 5 und 10)." @@ -10767,19 +10768,13 @@ msgstr "Beispiel: Wenn Sie die Dokumenten-ID mit einschliessen möchten, verwend #. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut' #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "For example: {} Open" -msgstr "Zum Beispiel: {} Öffnen" +msgstr "Zum Beispiel: {} Offen" #. 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 "Hilfe finden Sie unter Client-Skript-API und Beispiele" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "Weitere Informationen finden Sie hier ." - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "Weitere Informationen erhalten Sie bei {0}." @@ -10794,7 +10789,7 @@ msgstr "Bei mehreren Adressen geben Sie bitte jede Adresse in einer neuen Zeile msgid "For updating, you can update only selective columns." msgstr "Nur ausgewählte Spalten können aktualisiert werden" -#: frappe/core/doctype/doctype/doctype.py:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "Für {0} auf der Ebene {1} in {2} in Zeile {3}" @@ -10849,7 +10844,7 @@ msgstr "Passwort vergessen?" #: frappe/custom/doctype/client_script/client_script.json #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/desk/doctype/form_tour/form_tour.json -#: frappe/printing/page/print/print.js:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "Formular" @@ -10909,6 +10904,11 @@ msgstr "Formatierung" msgid "Format Data" msgstr "Daten formatieren" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "vierzehntägig" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "Nach vorne" @@ -10936,7 +10936,15 @@ msgstr "Teileinheiten" msgid "Frappe" msgstr "Frappé" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "Frappe Blog" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "Frappe Forum" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "Frappe-Framework" @@ -10956,7 +10964,7 @@ msgstr "Frappe Mail OAuth-Fehler" #. Label of the frappe_mail_site (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Frappe Mail Site" -msgstr "" +msgstr "Frappe Mail Seite" #. Label of a standard help item #. Type: Route @@ -11025,7 +11033,7 @@ msgstr "Von-Datum" msgid "From Date Field" msgstr "Von-Datum-Feld" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "Vom Dokumenttyp" @@ -11052,18 +11060,16 @@ msgstr "Voll" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "Vollständiger Name" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "Ganze Seite" @@ -11089,13 +11095,13 @@ msgstr "Funktion basiert auf" msgid "Function {0} is not whitelisted." msgstr "Funktion {0} ist nicht freigegeben." -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" -msgstr "Weitere Knoten können nur unter Knoten vom Typ \"Gruppe\" erstellt werden" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -11154,7 +11160,7 @@ msgstr "Allgemein" msgid "Generate Keys" msgstr "Schlüssel generieren" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "Neuen Bericht erstellen" @@ -11162,8 +11168,14 @@ msgstr "Neuen Bericht erstellen" msgid "Generate Random Password" msgstr "Zufälliges Passwort generieren" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "Tracking-URL generieren" @@ -11186,7 +11198,7 @@ msgstr "Geolokalisierung" msgid "Geolocation Settings" msgstr "Geolokalisierungseinstellungen" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "Alarme für heute" @@ -11322,7 +11334,7 @@ msgid "Go to this URL after completing the form" msgstr "Nach dem Ausfüllen des Formulars diese URL aufrufen" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "Gehe zu {0}" @@ -11370,10 +11382,6 @@ msgstr "Anonymisiere IP-Adressen für Google Analytics" msgid "Google Calendar" msgstr "Google-Kalender" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}" -msgstr "Google Kalender - Kontakt / E-Mail nicht gefunden. Teilnehmer wurde nicht hinzugefügt für -
{0}" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "Google Kalender - Kalender für {0}, Fehlercode {1} konnte nicht erstellt werden." @@ -11492,11 +11500,6 @@ msgstr "Die Google Sheets-URL ist ungültig oder nicht öffentlich zugänglich." msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "Die URL von Google Sheets muss mit "gid = {number}" enden. Kopieren Sie die URL aus der Adressleiste des Browsers, fügen Sie sie ein und versuchen Sie es erneut." -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "Google Snippet-Vorschau" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11573,14 +11576,10 @@ msgstr "Nach Typ gruppieren" msgid "Group By field is required to create a dashboard chart" msgstr "Das Feld Gruppieren nach ist erforderlich, um ein Dashboard-Diagramm zu erstellen" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "Gruppen-Knoten" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11630,7 +11629,6 @@ msgstr "HH: mm: ss" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11641,9 +11639,8 @@ msgstr "HH: mm: ss" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11747,7 +11744,7 @@ msgstr "Kopfzeile" msgid "Header HTML" msgstr "HTML-Header" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "Header-HTML-Satz aus Anhang {0}" @@ -11805,6 +11802,12 @@ msgstr "Heatmap" msgid "Hello" msgstr "Hallo" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "Hallo," + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11870,7 +11873,7 @@ msgstr "Helvetica" msgid "Helvetica Neue" msgstr "Helvetica Neue" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "Hier ist Ihre Tracking-URL" @@ -11906,9 +11909,9 @@ msgstr "Versteckt" msgid "Hidden Fields" msgstr "Versteckte Felder" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" -msgstr "" +msgstr "Versteckte Spalten enthalten: {0}" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json @@ -11939,11 +11942,6 @@ msgstr "Rand ausblenden" msgid "Hide Buttons" msgstr "Buttons ausblenden" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "Aufruf zum Handeln ausblenden" - #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json @@ -12023,7 +12021,7 @@ msgstr "Seitenleiste, Menü und Kommentare ausblenden" msgid "Hide Standard Menu" msgstr "Standardmenü ausblenden" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "Schlagworte ausblenden" @@ -12037,7 +12035,7 @@ msgstr "Wochenenden ausblenden" msgid "Hide descendant records of For Value." msgstr "Untergeordnete Datensätze von Für Wert ausblenden." -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "Details ausblenden" @@ -12086,11 +12084,8 @@ msgstr "Hinweis: Geben Sie Symbole, Zahlen und Großbuchstaben in das Passwort e #: frappe/public/js/frappe/file_uploader/FileBrowser.vue:38 #: frappe/public/js/frappe/views/file/file_view.js:67 #: frappe/public/js/frappe/views/file/file_view.js:88 -#: frappe/public/js/frappe/views/pageview.js:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -12178,16 +12173,16 @@ msgstr "Vermutlich haben Sie noch keinen Zugang zu einem Arbeitsbereich, aber Si #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "ID" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "ID" @@ -12283,9 +12278,9 @@ msgstr "Wenn eine strikte Benutzerberechtigung aktiviert ist und die Benutzerber msgid "If Checked workflow status will not override status in list view" msgstr "Falls diese Option aktiviert ist, wird der Workflow-Status nicht den Status in der Listenansicht überschreiben" -#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "Wenn Inhaber" @@ -12413,6 +12408,10 @@ msgstr "Wenn der Benutzer eine Rolle aktiviert hat, wird er zum „Systembenutze msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "Wenn diese Anweisungen nicht hilfreich waren, fügen Sie bitte Ihre Vorschläge als Issue auf GitHub hinzu." +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12444,7 +12443,11 @@ msgstr "Wenn neue Datensätze hochgeladen werden, ist - falls vorhanden - \"Beze msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "Wenn neue Datensätze hochgeladen werden, bitte die Spalte \"Bezeichnung\" (ID) leer lassen." -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "Wenn Sie die Instanz kürzlich wiederhergestellt haben, müssen Sie möglicherweise die Datei site_config.json kopieren, die den ursprünglichen Verschlüsselungsschlüssel enthält." @@ -12501,12 +12504,12 @@ msgstr "Anhänge mit einer Größe über diesem Wert ignorieren" msgid "Ignored Apps" msgstr "Ignorierte Apps" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "Illegaler Dokumentstatus für {0}" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "Ungültige SQL-Abfrage" @@ -12567,11 +12570,11 @@ msgstr "Bildansicht" msgid "Image Width" msgstr "Bildbreite" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 msgid "Image field must be a valid fieldname" msgstr "Bildfeld muss ein gültiger Feldname sein" -#: frappe/core/doctype/doctype/doctype.py:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "Bildfeld muss Typ anhängen Bild" @@ -12593,15 +12596,15 @@ msgstr "Bilder" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "Imitieren" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "{0} imitieren" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "Imitiert von {0}" @@ -12627,7 +12630,7 @@ msgstr "Implizit" msgid "Import" msgstr "Importieren" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "Importieren" @@ -12855,15 +12858,16 @@ msgstr "Thema aus Apps einschließen" msgid "Include Web View Link in Email" msgstr "Dokument Web View Link per E-Mail senden" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "Filter einbeziehen" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" -msgstr "" +msgstr "Versteckte Spalten einbeziehen" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "Einrückung einschließen" @@ -12910,7 +12914,7 @@ msgstr "Falsches Konto für eingehende E-Mails" msgid "Incomplete Virtual Doctype Implementation" msgstr "Unvollständige Implementierung des virtuellen DocTypes" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "Unvollständige Anmeldedaten" @@ -12922,7 +12926,7 @@ msgstr "Falsche Konfiguration" msgid "Incorrect URL" msgstr "Falsche URL" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "Falscher Benutzer oder Passwort" @@ -12930,11 +12934,11 @@ msgstr "Falscher Benutzer oder Passwort" msgid "Incorrect Verification code" msgstr "Falscher Bestätigungscode" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "Falscher Wert in Zeile {0}:" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "Falscher Wert:" @@ -12946,7 +12950,7 @@ msgstr "Falscher Wert:" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "Pos" @@ -13021,7 +13025,7 @@ msgstr "Darüber einfügen" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "Einfügen nach" @@ -13037,7 +13041,7 @@ msgstr "Dahinter einfügen Feld '{0}' in benutzerdefinierten Feld erwäh msgid "Insert Below" msgstr "Darunter einfügen" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "Spalte vor {0} einfügen" @@ -13055,8 +13059,12 @@ msgstr "Neue Datensätze einfügen" msgid "Insert Style" msgstr "Stil einfügen" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "Instagram" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "{0} aus Marketplace installieren" @@ -13073,7 +13081,7 @@ msgid "Installed Applications" msgstr "Installierte Anwendungen" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "Installierte Anwendungen" @@ -13090,19 +13098,19 @@ msgstr "Anweisungen per E-Mail gesendet" msgid "Insufficient Permission Level for {0}" msgstr "Unzureichende Berechtigungsstufe für {0}" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "Unzureichende Berechtigung für {0}" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" msgstr "Unzureichende Berechtigungen um Bericht zu löschen" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" msgstr "Unzureichende Berechtigungen um Bericht zu bearbeiten" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "Unzureichende Begrenzung für Anhänge" @@ -13206,9 +13214,9 @@ msgid "Invalid" msgstr "Ungültig" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "Ungültiger \"depends_on\" Ausdruck" @@ -13216,7 +13224,7 @@ msgstr "Ungültiger \"depends_on\" Ausdruck" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "Ungültiger "abhängiger_on" -Ausdruck im Filter {0}" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "Ungültiger Ausdruck in Bedingung für Pflichtfeld" @@ -13232,7 +13240,7 @@ msgstr "Ungültige CSV-Format" msgid "Invalid Code. Please try again." msgstr "Ungültiger Code. Bitte versuchen Sie es erneut." -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "Ungültige Bedingung: {}" @@ -13252,18 +13260,22 @@ msgstr "Ungültiger DocType" msgid "Invalid DocType: {0}" msgstr "Ungültiger DocType: {0}" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "Ungültiger DocType" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "Ungültiger Feldname" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "Ungültige Datei-URL" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" -msgstr "" +msgstr "Ungültiger Filter" #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" @@ -13293,7 +13305,7 @@ msgstr "Ungültiger Login. Versuchen Sie es erneut." msgid "Invalid Mail Server. Please rectify and try again." msgstr "Ungültiger E-Mail-Server. Bitte Angaben korrigieren und erneut versuchen." -#: frappe/model/naming.py:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "Ungültiger Nummernkreis: {}" @@ -13302,8 +13314,8 @@ msgstr "Ungültiger Nummernkreis: {}" msgid "Invalid Operation" msgstr "Ungültige Operation" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "Ungültige Option" @@ -13315,25 +13327,25 @@ msgstr "Ungültiger Postausgang Server oder Port: {0}" msgid "Invalid Output Format" msgstr "Ungültige Ausgabeformat" -#: frappe/model/base_document.py:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "Ungültige Überschreibung" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "Ungültige Parameter." -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "Ungültiges Passwort" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "Ungültige Telefonnummer" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "ungültige Anfrage" @@ -13342,7 +13354,7 @@ msgstr "ungültige Anfrage" msgid "Invalid Search Field {0}" msgstr "Ungültiges Suchfeld {0}" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "Ungültiger Tabellenfeldname" @@ -13350,8 +13362,8 @@ msgstr "Ungültiger Tabellenfeldname" msgid "Invalid Transition" msgstr "Ungültiger Übergang" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13365,47 +13377,51 @@ msgstr "Ungültiger Benutzername oder fehlendes Passwort. Bitte Angaben korrigie msgid "Invalid Values" msgstr "Ungültige Werte" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "Ungültiges Webhook Geheimnis" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "Ungültige Aggregatfunktion" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "Ungültiges Alias-Format: {0}. Alias muss ein einfacher Bezeichner sein." -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "Ungültige App" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." -msgstr "" +msgstr "Ungültiges Argumentformat: {0}. Nur in Anführungszeichen gesetzte Zeichenfolgenliterale oder einfache Feldnamen sind zulässig." -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." -msgstr "" +msgstr "Ungültiger Argumenttyp: {0}. Nur Zeichenfolgen, Zahlen und None sind zulässig." -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." -msgstr "" +msgstr "Ungültige Zeichen im Feldnamen: {0}. Nur Buchstaben, Zahlen und Unterstriche sind zulässig." -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" -msgstr "" +msgstr "Ungültige Zeichen im Tabellenname: {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "Ungültige Spalte" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" -msgstr "" +msgstr "Ungültiger Bedingungstyp in verschachtelten Filtern: {0}" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." -msgstr "" +msgstr "Ungültige Richtung in „Sortieren nach“: {0}. Muss „ASC“ oder „DESC“ sein." -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "Ungültiger Status" @@ -13417,31 +13433,27 @@ msgstr "Ungültiger Ausdruck in Filter {0} festgelegt" msgid "Invalid expression set in filter {0} ({1})" msgstr "Ungültiger Ausdruck im Filter {0} ({1}) gesetzt" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "Ungültiges Feldformat für SELECT: {0}. Feldnamen müssen einfach, mit ` (backtick), tabellenqualifiziert, mit Alias oder '*' sein." -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." -msgstr "" +msgstr "Ungültiges Feldformat in {0}: {1}. Verwenden Sie 'field', 'link_field.field', oder 'child_table.field'." -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "Ungültiger Feldname {0}" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" -msgstr "" +msgstr "Ungültiger Feldtyp: {0}" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "Ungültige Feldname '{0}' in auton" @@ -13449,11 +13461,11 @@ msgstr "Ungültige Feldname '{0}' in auton" msgid "Invalid file path: {0}" msgstr "Ungültiger Dateipfad: {0}" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13461,20 +13473,28 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "Ungültiger Filter: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "Ungültiger JSON in den benutzerdefinierten Optionen hinzugefügt: {0}" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "Ungültiger Namenstyp (Ganzzahl) für die Varchar-Namensspalte" @@ -13482,6 +13502,10 @@ msgstr "Ungültiger Namenstyp (Ganzzahl) für die Varchar-Namensspalte" msgid "Invalid naming series {}: dot (.) missing" msgstr "Ungültiger Nummernkreis {}: Punkt (.) fehlt" +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "Ungültiger oder beschädigter Inhalt für den Import" @@ -13490,19 +13514,27 @@ msgstr "Ungültiger oder beschädigter Inhalt für den Import" msgid "Invalid redirect regex in row #{}: {}" msgstr "Ungültige Weiterleitungs-Regex in Zeile #{}: {}" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "Ungültige Anfrageargumente" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13510,7 +13542,7 @@ msgstr "" msgid "Invalid template file for import" msgstr "Ungültige Vorlagendatei für den Import" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "Ungültiger Tokenstatus! Überprüfen Sie, ob das Token vom OAuth-Benutzer erstellt wurde." @@ -13519,20 +13551,20 @@ msgstr "Ungültiger Tokenstatus! Überprüfen Sie, ob das Token vom OAuth-Benutz msgid "Invalid username or password" msgstr "ungültiger Benutzername oder Passwort" -#: frappe/model/naming.py:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "Ungültiger Wert für UUID angegeben: {}" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "Ungültige Werte für Felder:" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "Ungültige wkhtmltopdf-Version" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "Ungültige {0} Bedingung" @@ -13541,10 +13573,47 @@ msgstr "Ungültige {0} Bedingung" msgid "Inverse" msgstr "Umgekehrt" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "Als Benutzer einladen" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "Eingeladen von" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "Ist" @@ -13569,7 +13638,7 @@ msgstr "Hat Kalender und Gantt" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "Ist Untertabelle" @@ -13622,6 +13691,10 @@ msgstr "Ist Ordner" msgid "Is Global" msgstr "Ist global" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Ist Gruppe" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13630,7 +13703,7 @@ msgstr "Ist versteckt" #. Label of the is_home_folder (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Is Home Folder" -msgstr "Ist Ordner für Startseite" +msgstr "Ist Home-Verzeichnis" #. Label of the reqd (Check) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json @@ -13648,8 +13721,13 @@ msgstr "Ist optionaler Status" msgid "Is Primary" msgstr "Ist primär" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 msgid "Is Primary Contact" msgstr "Ist Hauptkontakt" @@ -13680,7 +13758,7 @@ msgstr "Ist öffentlich" msgid "Is Published Field" msgstr "Ist Veröffentlicht Feld" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "Ist Veröffentlicht Feld muss ein gültiger Feldname sein" @@ -13694,18 +13772,18 @@ msgstr "Ist Abfragebericht" #. Request' #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Is Remote Request?" -msgstr "Ist dies eine Remote-Anfrage?" +msgstr "Ist Remote-Anfrage?" #. Label of the is_setup_complete (Check) field in DocType 'Installed #. Application' #: frappe/core/doctype/installed_application/installed_application.json msgid "Is Setup Complete?" -msgstr "" +msgstr "Ist die Einrichtung abgeschlossen?" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "Ist einzeln" @@ -13713,12 +13791,12 @@ msgstr "Ist einzeln" #. Label of the is_skipped (Check) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Skipped" -msgstr "Wird übersprungen" +msgstr "Ist übersprungen" #. Label of the is_spam (Check) field in DocType 'Email Rule' #: frappe/email/doctype/email_rule/email_rule.json msgid "Is Spam" -msgstr "ist Spam" +msgstr "Ist Spam" #. Label of the is_standard (Check) field in DocType 'Navbar Item' #. Label of the is_standard (Select) field in DocType 'Report' @@ -13741,7 +13819,7 @@ msgstr "Ist Standard" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "Ist übertragbar" @@ -13753,7 +13831,7 @@ msgstr "Ist übertragbar" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/custom/doctype/property_setter/property_setter.json msgid "Is System Generated" -msgstr "Wurde vom System generiert" +msgstr "Ist Systemgeneriert" #. Label of the istable (Check) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json @@ -13903,7 +13981,7 @@ msgstr "Job erfolgreich beendet" #: frappe/core/doctype/rq_job/rq_job.py:121 msgid "Job is in {0} state and can't be cancelled" -msgstr "" +msgstr "Job ist im Status {0} und kann nicht storniert werden" #: frappe/core/doctype/rq_job/rq_job.py:113 msgid "Job is not running." @@ -13947,11 +14025,11 @@ msgstr "Kanban-Tafel Spalte" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "Kanban-Tafel Name" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Kanban-Einstellungen" @@ -13972,12 +14050,14 @@ msgstr "Bewahrt den Überblick über alle Kommunikation" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -14239,7 +14319,7 @@ msgstr "Bezeichnung ist zwingend erforderlich" msgid "Landing Page" msgstr "Landing Page" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "Querformat" @@ -14247,10 +14327,13 @@ msgstr "Querformat" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Sprache" @@ -14334,12 +14417,16 @@ msgstr "Zuletzt geändert am" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/public/js/frappe/ui/filters/filter.js:644 msgid "Last Month" -msgstr "Vergangener Monat" +msgstr "Letzter Monat" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "Nachname" @@ -14352,7 +14439,12 @@ msgstr "Datum der letzten Kennwortrücksetzung" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/public/js/frappe/ui/filters/filter.js:648 msgid "Last Quarter" -msgstr "Vergangenes Quartal" +msgstr "Letztes Quartal" + +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' @@ -14363,18 +14455,13 @@ msgstr "Letzter Schlüssel zum Zurücksetzen des Passworts Erzeugt am" #. Label of the datetime_last_run (Datetime) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Last Run" -msgstr "" +msgstr "Letzter Lauf" #. 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 "Zuletzt synchronisiert am" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "Zuletzt synchronisiert am" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14485,7 +14572,7 @@ msgstr "Länge" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "Die Länge des übergebenen Datenarrays ist größer als der Wert der maximal erlaubten Beschriftungspunkte!" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "Länge von {0} sollte zwischen 1 und 1000 sein" @@ -14534,8 +14621,8 @@ 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:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14563,7 +14650,7 @@ msgstr "Briefkopf Name" msgid "Letter Head Scripts" msgstr "Briefkopf-Skripte" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "Briefkopf kann nicht gleichzeitig deaktiviert und Standard sein" @@ -14580,7 +14667,7 @@ msgstr "Briefkopf in HTML" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "Ebene" @@ -14630,20 +14717,6 @@ msgstr "Helles Design" msgid "Like" msgstr "Wie" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "Gefällt mir Limit" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "Gefällt mir Limit pro Stunde" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "„Gefällt mir“ für {0}: {1}" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "Geliked" @@ -14684,6 +14757,7 @@ msgstr "Linie" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14697,6 +14771,7 @@ msgstr "Linie" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "Verknüpfung" @@ -14827,10 +14902,15 @@ msgstr "Verknüpft" msgid "Linked With" msgstr "Verknüpft mit" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +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 (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14838,6 +14918,7 @@ msgstr "Verknüpft mit" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "Verknüpfungen" @@ -14879,7 +14960,7 @@ msgstr "Listenfilter" msgid "List Settings" msgstr "Listeneinstellungen" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Listeneinstellungen" @@ -14920,7 +15001,7 @@ msgstr "Liste der ausgeführten Patches" msgid "List setting message" msgstr "Meldung zur Listeneinstellung" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "Listen" @@ -14929,9 +15010,8 @@ msgstr "Listen" msgid "Load Balancing" msgstr "Lastverteilung" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Mehr laden" @@ -14948,10 +15028,10 @@ msgstr "Mehr laden" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "Laden" @@ -14963,7 +15043,7 @@ msgstr "Lade Filter..." msgid "Loading import file..." msgstr "Importdatei wird geladen ..." -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "Versionen laden..." @@ -14973,7 +15053,7 @@ msgstr "Versionen laden..." #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "Laden ..." @@ -15034,7 +15114,7 @@ msgstr "Melden Sie sich an, um auf diese Seite zuzugreifen." msgid "Log out" msgstr "Abmelden" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "Abgemeldet" @@ -15094,7 +15174,7 @@ msgstr "Login-Bestätigungscode von {}" msgid "Login and view in Browser" msgstr "Anmelden und im Browser anzeigen" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "Um die Listenansicht des Webformulars zu sehen, ist eine Anmeldung erforderlich. Aktivieren Sie {0}, um die Listeneinstellungen zu sehen" @@ -15102,7 +15182,7 @@ msgstr "Um die Listenansicht des Webformulars zu sehen, ist eine Anmeldung erfor msgid "Login link sent to your email" msgstr "Ein Anmeldelink wurde an Ihre E-Mail-Adresse gesendet" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "Anmelden zurzeit nicht erlaubt" @@ -15155,7 +15235,7 @@ msgstr "Mit E-Mail-Link anmelden" msgid "Login with email link expiry (in minutes)" msgstr "Gültigkeitsdauer des E-Mail-Links (in Minuten)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "Login mit Benutzername und Passwort ist nicht erlaubt." @@ -15174,7 +15254,7 @@ msgstr "" msgid "Logout" msgstr "Abmelden" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "Alle Sitzungen abmelden" @@ -15278,7 +15358,10 @@ msgid "Major" msgstr "Major" #. 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 +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "Name in der globalen Suche durchsuchbar machen" @@ -15354,7 +15437,7 @@ msgstr "Bedingung für Pflichtfeld" msgid "Mandatory Depends On (JS)" msgstr "Bedingung für Pflichtfeld (JS)" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "Pflichtangaben fehlen:" @@ -15366,15 +15449,15 @@ msgstr "Pflichtfeld: Rolle anwenden auf" msgid "Mandatory field: {0}" msgstr "Pflichtfeld: {0}" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "Pflichtfelder in der Tabelle erforderlich {0}, Reihe {1}" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "Für {0} benötigte Pflichtfelder:" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "Pflichtfelder erforderlich:" @@ -15455,10 +15538,8 @@ msgid "Mark as Unread" msgstr "Als ungelesen markieren" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15539,7 +15620,13 @@ msgstr "Maximale Größe für Anhänge" msgid "Max auto email report per user" msgstr "Höchstzahl automatischer E-Mail-Berichte pro Benutzer" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "Max Breite für Typ Währung ist 100px in Zeile {0}" @@ -15548,20 +15635,15 @@ msgstr "Max Breite für Typ Währung ist 100px in Zeile {0}" msgid "Maximum" msgstr "Maximal" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "Die Höchstgrenze für Anhänge von {0} wurde für {1} {2} erreicht." -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "Maximale Anzahl von Feldern" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "Die Höchstgrenze für Anhänge von {0} wurde erreicht." -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "Maximum von {0} Zeilen erlaubt" @@ -15577,7 +15659,7 @@ msgstr "Bedeutung von Buchen, Stornieren, Berichtigen" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15590,7 +15672,7 @@ msgstr "Mittel" msgid "Meeting" msgstr "Treffen" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "Bedingung erfüllt?" @@ -15631,7 +15713,7 @@ msgstr "Menü" msgid "Merge with existing" msgstr "Mit Existierenden zusammenführen" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "Zusammenführung ist nur möglich zwischen Gruppen oder Knoten" @@ -15657,7 +15739,7 @@ msgstr "Zusammenführung ist nur möglich zwischen Gruppen oder Knoten" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15697,7 +15779,7 @@ msgstr "Nachricht gesendet" msgid "Message Type" msgstr "Nachrichtentyp" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "Nachricht abgeschnitten" @@ -15729,29 +15811,21 @@ msgstr "Nachrichten" msgid "Meta" msgstr "Meta" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "Meta Beschreibung" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "Meta-Bild" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "Meta-Tags" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "Meta-Titel" @@ -15804,7 +15878,7 @@ msgstr "Methode" msgid "Method Not Allowed" msgstr "Methode nicht erlaubt" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "Methode wird benötigt, um eine Nummernkarte zu erstellen" @@ -15820,6 +15894,11 @@ msgstr "Mittig" msgid "Middle Name" msgstr "Zweiter Vorname" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15886,11 +15965,11 @@ msgstr "Frau" msgid "Missing DocType" msgstr "Fehlender DocType" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "Fehlendes Feld" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "Nicht ausgefüllte Felder" @@ -15926,15 +16005,16 @@ msgstr "Mobiltelefon" msgid "Mobile No" msgstr "Mobilfunknummer" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "Mobilfunknummer" + #. 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 "Modal-Auslöser" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "Geändert von" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15955,7 +16035,7 @@ msgstr "Geändert von" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -16131,10 +16211,12 @@ msgstr "Weitere Info" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Mehr Informationen" @@ -16153,7 +16235,7 @@ msgstr "Zusätzlicher Inhalt für den unteren Teil der Seite." msgid "Most Used" msgstr "Am Meisten verwendet" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "Wahrscheinlich ist Ihr Passwort zu lang." @@ -16164,7 +16246,7 @@ msgstr "Wahrscheinlich ist Ihr Passwort zu lang." msgid "Move" msgstr "Verschieben" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "Bewegen nach" @@ -16200,7 +16282,7 @@ msgstr "Abschnitte in neue Registerkarte verschieben" msgid "Move the current field and the following fields to a new column" msgstr "Aktuelles und folgende Felder in eine neue Spalte verschieben" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "Gehe zu Zeilennummer" @@ -16227,7 +16309,7 @@ msgstr "Frau" msgid "Ms" msgstr "Fr." -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "Mehrere Rootknoten sind nicht zulässig." @@ -16250,7 +16332,7 @@ msgstr "Muss in '()' eingeschlossen sein und '{0}' enthalten, was ein Platzhalte msgid "Must be of type \"Attach Image\"" msgstr "Muss vom Typ „Bild anhängen“ sein" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "Um auf diesen Bericht zuzugreifen, muss eine Berichtsberechtigung vorliegen." @@ -16268,7 +16350,7 @@ msgid "Mx" msgstr "Divers" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16306,9 +16388,9 @@ msgstr "HINWEIS: Dieses Feld ist veraltet. Bitte richten Sie LDAP neu ein, um mi #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16318,11 +16400,11 @@ msgstr "Name" msgid "Name (Doc Name)" msgstr "Name (Dokumentname)" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "Name bereits vergeben, bitte einen neuen Namen festlegen" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "Der Name darf keine Sonderzeichen wie {0} enthalten" @@ -16334,7 +16416,7 @@ msgstr "Name des Dokumenttyps (DocType) mit dem dieses Feld verknüpft sein soll msgid "Name of the new Print Format" msgstr "Name des neuen Druckformats" -#: frappe/model/naming.py:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "Name von {0} kann nicht {1} sein" @@ -16375,7 +16457,7 @@ msgstr "Benennungsregel" msgid "Naming Series" msgstr "Nummernkreis" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "Nummernkreis zwingend erforderlich" @@ -16412,12 +16494,12 @@ msgstr "Vorlage für Navigationsleiste" msgid "Navbar Template Values" msgstr "Navigationsleiste-Vorlagenwerte" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Liste nach unten navigieren" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Liste nach oben navigieren" @@ -16432,7 +16514,11 @@ msgstr "Zum Hauptinhalt navigieren" msgid "Navigation Settings" msgstr "Navigationseinstellungen" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "Sie benötigen die Rolle des Workspace Managers, um den privaten Arbeitsbereich anderer Benutzer zu bearbeiten" @@ -16440,9 +16526,9 @@ msgstr "Sie benötigen die Rolle des Workspace Managers, um den privaten Arbeits msgid "Negative Value" msgstr "Negativer Wert" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." -msgstr "" +msgstr "Verschachtelte Filter müssen als Liste oder Tupel angegeben werden." #: frappe/utils/nestedset.py:94 msgid "Nested set error. Please contact the Administrator." @@ -16453,6 +16539,12 @@ msgstr "Schachtelfehler. Bitte den Administrator kontaktieren." msgid "Network Printer Settings" msgstr "Netzwerkdrucker-Einstellungen" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +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 @@ -16461,7 +16553,7 @@ msgstr "Netzwerkdrucker-Einstellungen" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16482,10 +16574,6 @@ msgstr "Neue Adresse" msgid "New Chart" msgstr "Neues Diagramm" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "Neuer Kommentar zu {0}: {1}" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "Neuer Kontakt" @@ -16494,8 +16582,8 @@ msgstr "Neuer Kontakt" msgid "New Custom Block" msgstr "Neuer benutzerdefinierter Block" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" msgstr "Neues benutzerdefiniertes Druckformat" @@ -16526,7 +16614,7 @@ msgstr "Neues Ereignis" msgid "New Folder" msgstr "Neuer Ordner" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "Neue Kanban-Tafel" @@ -16561,12 +16649,12 @@ msgstr "Neue Zahlenkarte" msgid "New Onboarding" msgstr "Neues Onboarding" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "Neues Passwort" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "Name des neuen Druckformats" @@ -16575,7 +16663,7 @@ msgstr "Name des neuen Druckformats" msgid "New Quick List" msgstr "Neue Schnellliste" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "Neuer Berichtsname" @@ -16593,8 +16681,8 @@ msgstr "Neue Verknüpfung" msgid "New Users (Last 30 days)" msgstr "Neue Benutzer (Letzte 30 Tage)" -#: frappe/core/doctype/version/version_view.html:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "Neuer Wert" @@ -16651,13 +16739,13 @@ msgstr "Neuer Wert muss gesetzt werden" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "Neu {0}" @@ -16673,7 +16761,7 @@ msgstr "Neues {0} {1} zum Dashboard hinzugefügt {2}" msgid "New {0} {1} created" msgstr "Neue {0} {1} erstellt" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "Neu {0}: {1}" @@ -16681,7 +16769,7 @@ msgstr "Neu {0}: {1}" msgid "New {} releases for the following apps are available" msgstr "Neue {} Versionen für die folgenden Apps sind verfügbar" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "Der neu erstellte Benutzer {0} hat keine aktivierten Rollen." @@ -16694,7 +16782,7 @@ msgstr "Newsletter-Manager" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16784,7 +16872,7 @@ msgstr "Nächste Woche" #: frappe/public/js/frappe/ui/filters/filter.js:708 msgid "Next Year" -msgstr "" +msgstr "Nächstes Jahr" #: frappe/public/js/frappe/form/workflow.js:45 msgid "Next actions" @@ -16801,14 +16889,15 @@ msgstr "Weiter bei Klick" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Nein" @@ -16858,6 +16947,10 @@ msgstr "Kein E-Mail-Konto" msgid "No Email Accounts Assigned" msgstr "Keine E-Mail-Konten zugewiesen" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "Kein E-Mail-Feld in {0} gefunden" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "Keine E-Mails" @@ -16893,15 +16986,15 @@ msgstr "Kein LDAP-Benutzer für E-Mail gefunden: {0}" msgid "No Label" msgstr "Keine Bezeichnung" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: frappe/public/js/frappe/list/bulk_operations.js:98 #: frappe/public/js/frappe/list/bulk_operations.js:170 #: frappe/utils/weasyprint.py:52 msgid "No Letterhead" msgstr "Kein Briefkopf" -#: frappe/model/naming.py:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "Kein Name für {0} angegeben" @@ -16909,7 +17002,7 @@ msgstr "Kein Name für {0} angegeben" msgid "No New notifications" msgstr "Keine neuen Benachrichtigungen" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "Keine Berechtigungen angegeben" @@ -16929,11 +17022,11 @@ msgstr "Keine zulässigen Diagramme in diesem Dashboard" msgid "No Preview" msgstr "Keine Vorschau" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "Keine Vorschau verfügbar" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "Es ist kein Drucker verfügbar." @@ -16949,11 +17042,11 @@ msgstr "Keine Ergebnisse" msgid "No Results found" msgstr "Keine Ergebnisse gefunden" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "Keine Rollen festgelegt" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "Kein Auswahlfeld gefunden" @@ -16961,7 +17054,7 @@ msgstr "Kein Auswahlfeld gefunden" msgid "No Suggestions" msgstr "Keine Vorschläge" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "Keine Schlagworte" @@ -16973,7 +17066,7 @@ msgstr "Keine anstehenden Termine" msgid "No address added yet." msgstr "Noch keine Adresse hinzugefügt." -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "Keine Warnungen für heute" @@ -17001,23 +17094,19 @@ msgstr "Keine Änderungen zu synchronisieren" msgid "No changes to update" msgstr "Keine Änderungen zu aktualisieren" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "Noch keine Kommentare" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " -msgstr "Noch keine Kommentare. " +msgid "No comments yet." +msgstr "Noch keine Kommentare." #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." msgstr "Noch keine Kontakte hinzugefügt." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "Keine Kontakte mit dem Dokument verknüpft" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "Keine zu exportierenden Daten" @@ -17033,11 +17122,15 @@ msgstr "Keine mit {0} getaggten Dokumente gefunden" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "Dem Benutzer ist kein E-Mail-Konto zugeordnet. Bitte fügen Sie unter Benutzer> E-Mail-Posteingang ein Konto hinzu." +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "Keine fehlgeschlagenen Protokolle" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "Keine Felder gefunden, die als Kanban-Spalte verwendet werden können. Verwenden Sie „Formular anpassen“, um ein benutzerdefiniertes Feld vom Typ \"Auswählen\" hinzuzufügen." @@ -17061,7 +17154,7 @@ msgstr "Keine weiteren Datensätze" msgid "No matching records. Search something new" msgstr "Keine Bilder gefunden. Suchen Sie etwas Neues" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "Keine weiteren Elemente zum Anzeigen" @@ -17105,7 +17198,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "Keine Berechtigung um '{0}' {1}" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "Keine Berechtigung zum Lesen {0}" @@ -17117,7 +17210,7 @@ msgstr "Keine Berechtigung um {0} {1} {2}" msgid "No records deleted" msgstr "Keine Datensätze gelöscht" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "Keine Datensätze in {0} vorhanden" @@ -17133,7 +17226,7 @@ msgstr "Es werden keine Datensätze exportiert" msgid "No rows" msgstr "Keine Zeilen" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "Kein Betreff" @@ -17153,11 +17246,11 @@ msgstr "Keine {0}" msgid "No {0} Found" msgstr "Kein {0} gefunden" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "Kein {0} gefunden" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "Keine {0} mit passenden Filtern gefunden. Löschen Sie Filter, um alle {0} -Einträge zu sehen." @@ -17166,7 +17259,7 @@ msgid "No {0} mail" msgstr "Nein {0} mail" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "Nr." @@ -17209,7 +17302,7 @@ msgstr "Normalisierte Kopien" msgid "Normalized Query" msgstr "Normalisierte Abfrage" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "Nicht Erlaubt" @@ -17230,7 +17323,7 @@ msgstr "Nicht Nachkommen von" msgid "Not Equals" msgstr "Ungleich" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "Nicht gefunden" @@ -17256,20 +17349,19 @@ msgstr "Nicht mit jedem Datensatz verknüpft" msgid "Not Nullable" msgstr "Nicht nullbar" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "Nicht zulässig" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "Keine Berechtigung zum Lesen von {0}" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17278,10 +17370,10 @@ msgstr "Nicht veröffentlicht" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "Nicht gespeichert" @@ -17313,7 +17405,7 @@ msgstr "Keine gültige .csv-Datei" msgid "Not a valid User Image." msgstr "Kein gültiges Benutzerbild." -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "Keine gültige Workflow-Aktion" @@ -17329,11 +17421,11 @@ msgstr "Nicht aktiv" msgid "Not allowed for {0}: {1}" msgstr "Nicht zulässig für {0}: {1}" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "Das {0} -Dokument darf nicht angehängt werden. Aktivieren Sie in den Druckeinstellungen die Option "Druck für {0} zulassen"" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "Das Erstellen eines benutzerdefinierten virtuellen DocTypes ist nicht zulässig." @@ -17357,27 +17449,27 @@ msgstr "Nicht gefunden" msgid "Not in Developer Mode" msgstr "Nicht im Entwicklungsmodus" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "Nicht im Entwicklungsmodus! In site_config.json erstellen oder \"Benutzerdefiniertes\" DocType erstellen." -#: frappe/core/doctype/system_settings/system_settings.py:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Nicht gestattet" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "{0} darf nicht angezeigt werden" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17412,7 +17504,7 @@ msgstr "Hinweis: Um optimale Ergebnisse zu erzielen, müssen die Bilder dieselbe msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "Hinweis: Mehrere Sitzungen wird im Falle einer mobilen Gerät erlaubt sein" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "Hinweis: Dies wird dem Benutzer mitgeteilt." @@ -17436,10 +17528,9 @@ msgstr "Nichts mehr zu wiederholen" msgid "Nothing left to undo" msgstr "Nichts mehr rückgängig zu machen" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "Nichts anzuzeigen" @@ -17485,15 +17576,15 @@ msgstr "Benachrichtigungsdokument abonniert" msgid "Notification sent to" msgstr "Benachrichtigung gesendet an" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "Benachrichtigung: Kunde {0} hat keine Mobiltelefonnummer festgelegt" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "Benachrichtigung: Dokument {0} hat keine {1} Nummer gesetzt (Feld: {2})" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "Benachrichtigung: Benutzer {0} hat keine Mobiltelefonnummer festgelegt" @@ -17544,7 +17635,7 @@ msgstr "Benachrichtigen, wenn unbeantwortet für (in Minuten)" msgid "Notify users with a popup when they log in" msgstr "Benutzer mit einem Popup benachrichtigen, wenn sie sich anmelden" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "Jetzt" @@ -17602,12 +17693,12 @@ msgstr "Anzahl der Gruppen" msgid "Number of Queries" msgstr "Anzahl der Abfragen" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "Anzahl der Anhangsfelder ist größer als {}, Limit auf {} aktualisiert." -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "Anzahl der Backups muss größer als Null sein." @@ -17716,11 +17807,11 @@ msgstr "OTP-App" msgid "OTP Issuer Name" msgstr "Name des OTP-Ausstellers" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "OTP Geheimnis zurücksetzen - {0}" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "OTP Secret wurde zurückgesetzt. Bei der Anmeldung ist eine erneute Anmeldung erforderlich." @@ -17839,7 +17930,7 @@ msgstr "Am oder nach" msgid "On or Before" msgstr "Am oder vor" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "Am {0}, schrieb {1}:" @@ -17879,7 +17970,7 @@ msgstr "Onboarding abgeschlossen" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "Einmal eingereichte Dokumente können nicht mehr geändert werden. Sie können nur storniert und geändert werden." @@ -17924,7 +18015,7 @@ msgstr "Nur der Administrator darf den Recorder verwenden" msgid "Only Allow Edit For" msgstr "Änderungen nur zulassen für" -#: frappe/core/doctype/doctype/doctype.py:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "Für das Datenfeld sind nur folgende Optionen zulässig:" @@ -17941,7 +18032,7 @@ msgstr "Nur der Workspace Manager kann öffentliche Arbeitsbereiche bearbeiten" msgid "Only allowed to export customizations in developer mode" msgstr "Anpassungen können nur im Entwicklermodus exportiert werden" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "Nur Dokumente im Entwurfsstatus können verworfen werden" @@ -17960,19 +18051,19 @@ msgstr "Für neue Datensätze sind nur Pflichtfelder zwingend erforderlich. Nich msgid "Only one {0} can be set as primary." msgstr "Es kann nur eine {0} als primäre festgelegt werden." -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "Nur Berichte aus dem Berichterstellungswerkzeug können gelöscht werden" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "Nur Berichte aus dem Berichterstellungswerkzeug können bearbeitet werden" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Nur Standard-DocTypes dürfen über Formular anpassen angepasst werden." -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "Nur der Administrator kann einen Standard-DocType löschen." @@ -18042,7 +18133,7 @@ msgstr "Referenzdokument öffnen" msgid "Open Settings" msgstr "Einstellungen öffnen" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "Open-Source-Anwendungen für das Web" @@ -18060,7 +18151,7 @@ msgstr "Öffnen Sie ein Dialogfeld mit Pflichtfeldern, um schnell einen neuen Da msgid "Open a module or tool" msgstr "Modul oder Werkzeug öffnen" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "Konsole öffnen" @@ -18068,7 +18159,7 @@ msgstr "Konsole öffnen" msgid "Open in a new tab" msgstr "In einer neuen Registerkarte öffnen" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Listenelement öffnen" @@ -18083,13 +18174,13 @@ msgstr "Öffnen Sie Ihre Authentifizierungs-App auf Ihrem Mobiltelefon." #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "{0} öffnen" @@ -18098,6 +18189,10 @@ msgstr "{0} öffnen" msgid "OpenID Configuration" msgstr "OpenID-Konfiguration" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" @@ -18113,7 +18208,7 @@ msgstr "Geöffnet" msgid "Operation" msgstr "Arbeitsgang" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "Betreiber muss einer von {0}" @@ -18139,7 +18234,7 @@ msgstr "Option 2" msgid "Option 3" msgstr "Option 3" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "Option {0} für Feld {1} ist keine untergeordnete Tabelle" @@ -18159,6 +18254,7 @@ msgstr "Optional: Der Alarm wird gesendet, wenn dieser Ausdruck wahr ist" #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -18167,11 +18263,12 @@ msgstr "Optional: Der Alarm wird gesendet, wenn dieser Ausdruck wahr ist" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "Optionen" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "\"Dynamic Link\"-Feldtyp aus \"Optionen\" muss auf ein anderes Verknüpfungsfeld mit Optionen wie \"DocType\" zeigen" @@ -18180,7 +18277,7 @@ msgstr "\"Dynamic Link\"-Feldtyp aus \"Optionen\" muss auf ein anderes Verknüpf msgid "Options Help" msgstr "Hilfe zu Optionen" -#: frappe/core/doctype/doctype/doctype.py:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "Optionen für Bewertungsfeld können zwischen 3 und 10 liegen" @@ -18188,7 +18285,7 @@ msgstr "Optionen für Bewertungsfeld können zwischen 3 und 10 liegen" msgid "Options for select. Each option on a new line." msgstr "Optionen zum Auswählen. Jede Option in einer neuen Zeile." -#: frappe/core/doctype/doctype/doctype.py:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 msgid "Options for {0} must be set before setting the default value." msgstr "Optionen für {0} müssen festgelegt werden, bevor der Standardwert festgelegt wird." @@ -18196,7 +18293,7 @@ msgstr "Optionen für {0} müssen festgelegt werden, bevor der Standardwert fest msgid "Options is required for field {0} of type {1}" msgstr "Optionen sind erforderlich für Feld {0} des Typs {1}" -#: frappe/model/base_document.py:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "Optionen nicht für das Verknüpfungs-Feld {0} gesetzt" @@ -18212,7 +18309,7 @@ msgstr "Orange" msgid "Order" msgstr "Auftrag" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18228,12 +18325,12 @@ msgstr "Unternehmensgeschichte" msgid "Org History Heading" msgstr "Überschrift zur Unternehmensgeschichte" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "Ausrichtung" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "Ursprünglicher Wert" @@ -18301,10 +18398,6 @@ msgstr "Ausgabe" msgid "Overview" msgstr "Übersicht" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "Eigentümer" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" @@ -18312,9 +18405,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:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "PDF" @@ -18355,11 +18448,11 @@ msgstr "Die PDF-Erstellung ist fehlgeschlagen" msgid "PDF generation failed because of broken image links" msgstr "PDF-Generierung ist aufgrund fehlerhafter Verknüpfungen für Bilddateien fehlgeschlagen" -#: frappe/printing/page/print/print.js:616 +#: frappe/printing/page/print/print.js:656 msgid "PDF generation may not work as expected." msgstr "Die PDF-Erstellung funktioniert möglicherweise nicht wie erwartet." -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:574 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "Der PDF-Druck über „Raw Print“ wird nicht unterstützt." @@ -18531,7 +18624,7 @@ msgstr "Auf der Website anzuzeigende Seite\n" #: frappe/public/html/print_template.html:25 #: frappe/public/js/frappe/views/reports/print_tree.html:89 -#: frappe/public/js/frappe/web_form/web_form.js:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "Seite {0} von {1}" @@ -18558,7 +18651,7 @@ msgstr "Übergeordneter DocType" msgid "Parent Document Type" msgstr "Übergeordneter DocType" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "Übergeordneter DocType wird benötigt, um Zahlenkarte zu erstellen" @@ -18575,11 +18668,11 @@ msgstr "Übergeordnetes Feld" #. Label of the nsm_parent_field (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype.py:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "Übergeordnetes Feld (Baum)" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "Das übergeordnete Feld muss ein gültiger Feldname sein" @@ -18588,7 +18681,7 @@ msgstr "Das übergeordnete Feld muss ein gültiger Feldname sein" msgid "Parent Label" msgstr "Übergeordnete Bezeichnung" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 msgid "Parent Missing" msgstr "Stammeintrag fehlt" @@ -18662,8 +18755,8 @@ msgstr "Passiv" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18673,7 +18766,7 @@ msgstr "Passiv" msgid "Password" msgstr "Passwort" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "Passwort E-Mail gesendet" @@ -18686,7 +18779,7 @@ msgstr "Passwort zurücksetzen" msgid "Password Reset Link Generation Limit" msgstr "Limit zum Generieren von Kennwort-Reset-Links" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "Passwort kann nicht gefiltert werden" @@ -18703,6 +18796,10 @@ msgstr "Kennwort für Basis-DN" msgid "Password is required or select Awaiting Password" msgstr "Das Passwort ist erforderlich, oder wählen Sie Warten Passwort" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "Passwort fehlt im E-Mail-Konto" @@ -18711,7 +18808,7 @@ msgstr "Passwort fehlt im E-Mail-Konto" msgid "Password not found for {0} {1} {2}" msgstr "Passwort für {0} {1} {2} nicht gefunden" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "Anweisungen zum Zurücksetzen des Passworts wurden an die E-Mail von {} gesendet" @@ -18719,11 +18816,11 @@ msgstr "Anweisungen zum Zurücksetzen des Passworts wurden an die E-Mail von {} msgid "Password set" msgstr "Passwort gesetzt" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "Passwort überschreitet die maximal zulässige Länge" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." msgstr "Passwort überschreitet die maximal zulässige Länge." @@ -18731,7 +18828,7 @@ msgstr "Passwort überschreitet die maximal zulässige Länge." msgid "Passwords do not match" msgstr "Passwörter stimmen nicht überein" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "Passwörter stimmen nicht überein!" @@ -18801,10 +18898,12 @@ msgstr "Maximale Speicherauslastung" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "Ausstehend" @@ -18880,7 +18979,7 @@ msgstr "{0} endgültig übertragen?" msgid "Permanently delete {0}?" msgstr "{0} endgültig löschen?" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "Berechtigungsfehler" @@ -18940,16 +19039,16 @@ msgstr "Berechtigungsart" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: frappe/core/page/permission_manager/permission_manager.js:221 #: frappe/core/workspace/users/users.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Permissions" msgstr "Berechtigungen" -#: frappe/core/doctype/doctype/doctype.py:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "Berechtigungsfehler" @@ -19011,15 +19110,18 @@ msgstr "Download-Anfrage für personenbezogene Daten" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -19032,13 +19134,13 @@ msgstr "Telefon" msgid "Phone No." msgstr "Telefonnr." -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 msgid "Phone Number {0} set in field {1} is not valid." msgstr "Telefonnummer {0} im Feld {1} ist ungültig." -#: frappe/public/js/frappe/form/print_utils.js:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "Spalten auswählen" @@ -19098,11 +19200,11 @@ msgstr "Bitte installieren Sie die ldap3-Bibliothek via Pip, um die ldap-Funktio msgid "Please Set Chart" msgstr "Bitte Diagramm einstellen" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "Bitte SMS-Einstellungen aktualisieren" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "Bitte füge einen Betreff zu deiner E-Mail hinzu" @@ -19110,7 +19212,7 @@ msgstr "Bitte füge einen Betreff zu deiner E-Mail hinzu" msgid "Please add a valid comment." msgstr "Bitte fügen Sie einen gültigen Kommentar hinzu." -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "Bitte fragen Sie Ihren Administrator Ihre Anmeldung bis zum überprüfen" @@ -19118,11 +19220,11 @@ msgstr "Bitte fragen Sie Ihren Administrator Ihre Anmeldung bis zum überprüfen msgid "Please attach a file first." msgstr "Bitte zuerst eine Datei anhängen." -#: frappe/printing/doctype/letter_head/letter_head.py:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 msgid "Please attach an image file to set HTML for Footer." msgstr "Bitte fügen Sie eine Bilddatei an, um HTML für die Fußzeile festzulegen." -#: frappe/printing/doctype/letter_head/letter_head.py:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "Bitte fügen Sie eine Bilddatei an, um HTML für den Briefkopf festzulegen." @@ -19130,19 +19232,15 @@ msgstr "Bitte fügen Sie eine Bilddatei an, um HTML für den Briefkopf festzuleg msgid "Please attach the package" msgstr "Bitte das Paket anhängen" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "Bitte überprüfen Sie die OpenID-Konfigurations-URL" - #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "Bitte überprüfen Sie die für das Dashboard-Diagramm festgelegten Filterwerte: {}" -#: frappe/model/base_document.py:951 +#: frappe/model/base_document.py:1008 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Bitte überprüfen Sie den Wert von "Abrufen von" für Feld {0}" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "Bitte überprüfen Sie Ihren Posteingang. Wir haben Ihnen eine E-Mail mit einer Bitte um Bestätigung geschickt." @@ -19174,11 +19272,11 @@ msgstr "Bitte auf die folgende Verknüpfung klicken um ein neues Passwort zu set msgid "Please confirm your action to {0} this document." msgstr "Bitte bestätigen Sie Ihre Aktion für {0} dieses Dokument." -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "Bitte wenden Sie sich an Ihren Systemmanager, um die richtige Version zu installieren." -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "Bitte erstellen Sie zuerst die Karte" @@ -19194,20 +19292,20 @@ msgstr "Bitte löschen Sie das Feld von {0} oder fügen Sie den erforderlichen D msgid "Please do not change the template headings." msgstr "Bitte nicht die Vorlagenköpfe ändern." -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" msgstr "Bitte kopieren um Änderungen vorzunehmen" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "Bitte aktivieren Sie mindestens eines der Anmeldeverfahren Social Login Key, LDAP oder Anmeldung per E-Mail-Link, bevor Sie die Anmeldung per Benutzernamen und Passwort deaktivieren." #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "Bitte Pop-ups aktivieren" @@ -19244,7 +19342,7 @@ msgstr "Bitte geben Sie die Client ID ein, bevor der Social Login aktiviert wird msgid "Please enter Client Secret before social login is enabled" msgstr "Bitte geben Sie das Client Secret ein, bevor Social Login aktiviert wird" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "Bitte geben Sie die OpenID Konfigurations-URL ein" @@ -19281,11 +19379,12 @@ msgstr "Bitte geben Sie Ihr neues Passwort ein." msgid "Please enter your old password." msgstr "Bitte geben Sie Ihr altes Passwort ein." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "Im Anhang finden Sie {0}: {1}" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "Bitte melden Sie sich an, um einen Kommentar zu schreiben." @@ -19293,11 +19392,11 @@ msgstr "Bitte melden Sie sich an, um einen Kommentar zu schreiben." msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "Bitte stellen Sie sicher, dass die Referenzkommunikationsdokumente nicht zirkulär verknüpft sind." -#: frappe/model/document.py:988 +#: frappe/model/document.py:992 msgid "Please refresh to get the latest document." msgstr "Bitte aktualisieren, um das neueste Dokument zu erhalten." -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:575 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "Bitte entfernen Sie die Druckerzuordnung in den Druckereinstellungen und versuchen Sie es erneut." @@ -19313,7 +19412,7 @@ msgstr "Bitte das Dokument vor der Zuweisung abspeichern" msgid "Please save the document before removing assignment" msgstr "Bitte das Dokument vor dem Entfernen einer Zuordnung abspeichern" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "Bitte speichern Sie den Bericht zuerst" @@ -19321,7 +19420,7 @@ msgstr "Bitte speichern Sie den Bericht zuerst" msgid "Please save to edit the template." msgstr "Bitte speichern Sie, um die Vorlage zu bearbeiten." -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "Bitte zuerst DocType auswählen" @@ -19329,19 +19428,19 @@ msgstr "Bitte zuerst DocType auswählen" msgid "Please select Entity Type first" msgstr "Bitte wählen Sie zunächst Entitätstyp" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "Bitte wählen Sie Minimum Password Score" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "Bitte wählen Sie X- und Y-Felder aus" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "Bitte wählen Sie einen Ländercode für das Feld {1} aus." -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "Bitte wählen Sie zuerst eine Datei aus." @@ -19349,7 +19448,7 @@ msgstr "Bitte wählen Sie zuerst eine Datei aus." msgid "Please select a file or url" msgstr "Bitte eine Datei oder URL auswählen" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" msgstr "Bitte eine gültige CSV-Datei mit Daten auswählen" @@ -19361,7 +19460,7 @@ msgstr "Bitte wählen Sie einen gültigen Datumsfilter" msgid "Please select applicable Doctypes" msgstr "Bitte zutreffende Doctypes auswählen" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Bitte wählen Sie atleast 1 Spalte von {0} sortieren / Gruppe" @@ -19387,11 +19486,11 @@ msgstr "Bitte {0} auswählen" msgid "Please set Email Address" msgstr "Bitte setzen Sie E-Mail-Adresse" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:589 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "Bitte legen Sie in den Druckereinstellungen eine Druckerzuordnung für dieses Druckformat fest" -#: frappe/public/js/frappe/views/reports/query_report.js:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "Bitte Filter einstellen" @@ -19399,7 +19498,7 @@ msgstr "Bitte Filter einstellen" msgid "Please set filters value in Report Filter table." msgstr "Bitte setzen Sie Filter Wert in Berichtsfiltertabelle." -#: frappe/model/naming.py:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "Bitte geben Sie den Dokumentnamen ein" @@ -19411,7 +19510,7 @@ msgstr "Bitte legen Sie zuerst die folgenden Dokumente in diesem Dashboard als S msgid "Please set the series to be used." msgstr "Bitte legen Sie die zu verwendende Serie fest." -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "Bitte richten Sie SMS ein, bevor Sie es als Authentifizierungsmethode über SMS-Einstellungen festlegen" @@ -19435,23 +19534,23 @@ msgstr "Bitte angeben" msgid "Please specify a valid parent DocType for {0}" msgstr "Bitte geben Sie einen gültigen übergeordneten DocType für {0} an" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "Bitte angeben welches Datumsfeld überprüft werden muss" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "Bitte angeben, welches Wertefeld überprüft werden muss" @@ -19472,7 +19571,7 @@ msgstr "Bitte verwenden Sie einen gültigen LDAP-Suchfilter" msgid "Please use following links to download file backup." msgstr "" -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "Bitte besuchen Sie https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key für weitere Informationen." @@ -19526,7 +19625,7 @@ msgstr "Portal Menüpunkt" msgid "Portal Settings" msgstr "Portaleinstellungen" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "Hochformat" @@ -19554,6 +19653,7 @@ msgstr "Post" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "Postleitzahl" @@ -19562,15 +19662,7 @@ msgstr "Postleitzahl" msgid "Posting Timestamp" msgstr "Zeitstempel der Buchung" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "Beiträge von {0}" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "Beiträge abgelegt unter {0}" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19585,7 +19677,11 @@ msgstr "" msgid "Precision" msgstr "Genauigkeit" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "Genauigkeit sollte zwischen 1 und 6 liegen" @@ -19633,7 +19729,7 @@ msgstr "Vorbereitete Berichtsanalytik" msgid "Prepared Report User" msgstr "Vorbereiteter Berichtsbenutzer" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "Das Rendern des vorbereiteten Berichts ist fehlgeschlagen" @@ -19641,7 +19737,7 @@ msgstr "Das Rendern des vorbereiteten Berichts ist fehlgeschlagen" msgid "Preparing Report" msgstr "Bericht vorbereiten" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "Vorlage oberhalb der Email-Nachricht einfügen" @@ -19662,7 +19758,7 @@ msgstr "Drücken Sie zum Speichern die Eingabetaste" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19676,13 +19772,6 @@ msgstr "Vorschau" msgid "Preview HTML" msgstr "HTML-Vorschau" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "Vorschaubild" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19711,7 +19800,7 @@ msgid "Preview:" msgstr "Vorschau:" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19723,12 +19812,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "Vorhergehende" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "Vorheriger Hash" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "Vorherige Buchungen" @@ -19774,19 +19858,19 @@ msgstr "Der Primärschlüssel von doctype {0} kann nicht geändert werden, da es #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/success_action/success_action.js:58 #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/printing/page/print/print.js:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "Drucken" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Drucken" @@ -19804,8 +19888,8 @@ msgstr "Dokumente drucken" #: frappe/core/workspace/build/build.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/page/print/print.js:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19856,7 +19940,7 @@ msgstr "Hilfe zu Druckformaten" msgid "Print Format Type" msgstr "Druckformattyp" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19895,7 +19979,7 @@ msgstr "Drucken ausblenden wenn kein Wert" msgid "Print Language" msgstr "Drucksprache" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "Drucken An den Drucker gesendet!" @@ -19912,8 +19996,8 @@ msgstr "Druck Server" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "Druckeinstellungen" @@ -19961,11 +20045,11 @@ msgstr "Dokument ausdrucken" msgid "Print with letterhead" msgstr "Drucken mit Briefkopf" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "Drucker" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "Druckerzuordnung" @@ -19975,11 +20059,11 @@ msgstr "Druckerzuordnung" msgid "Printer Name" msgstr "Druckername" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "Druckereinstellungen" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "Druckerzuordnung nicht gesetzt." @@ -20037,7 +20121,7 @@ msgstr "Tipp: Fügen Sie Referenz: {{ reference_doctype }} {{ reference_na msgid "Proceed" msgstr "Fortfahren" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "Fahre dennoch fort" @@ -20058,18 +20142,28 @@ msgstr "Prof." msgid "Profile" msgstr "Profil" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Profil erfolgreich aktualisiert." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "Fortschritt" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "Projekt" #. Label of the property (Data) field in DocType 'Property Setter' -#: frappe/core/doctype/version/version_view.html:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: frappe/core/doctype/version/version_view.html:13 +#: frappe/core/doctype/version/version_view.html:38 +#: frappe/core/doctype/version/version_view.html:75 #: frappe/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "Eigenschaft" @@ -20106,7 +20200,7 @@ msgstr "Eigenschaftstyp" msgid "Protect Attached Files" msgstr "Angehängte Dateien schützen" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "Geschützte Datei" @@ -20155,24 +20249,18 @@ msgstr "" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "Veröffentlichen" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -20182,15 +20270,6 @@ msgstr "Veröffentlichen" msgid "Published" msgstr "Veröffentlicht" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "Veröffentlicht am" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "Veröffentlicht auf" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json @@ -20280,7 +20359,9 @@ msgid "Put on Hold" msgstr "Zurückstellen" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "Python" @@ -20292,9 +20373,9 @@ msgstr "QR-Code" msgid "QR Code for Login Verification" msgstr "QR-Code für Zwei-Faktor-Authentifizierung" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " -msgstr "QZ-Fach fehlgeschlagen:" +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" +msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' @@ -20343,7 +20424,7 @@ msgstr "Abfragebericht" msgid "Query analysis complete. Check suggested indexes." msgstr "Analyse der Abfrage abgeschlossen. Prüfen Sie die vorgeschlagenen Indizes." -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "Die Abfrage muss vom Typ SELECT oder Read-Only WITH sein." @@ -20443,7 +20524,7 @@ msgstr "Schnelllisten-Filter" msgid "Quick Lists" msgstr "Schnelllisten" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "Einstellung für CSV-Anführungszeichen muss zwischen 0 und 3 liegen" @@ -20480,12 +20561,6 @@ msgstr "Bandbreite" msgid "Rate Limiting" msgstr "Anfragen begrenzen" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "Anfragen begrenzen" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20505,7 +20580,7 @@ msgstr "Bewertung" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "Raw-Befehle" @@ -20522,7 +20597,7 @@ msgstr "Rohe E-Mail" msgid "Raw Printing" msgstr "Rohdruck" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "Einstellung für Rohdruck" @@ -20539,8 +20614,8 @@ msgid "Re:" msgstr "AW:" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "AW: {0}" @@ -20596,11 +20671,6 @@ msgstr "Bedingungen für Schreibschutz (JS)" msgid "Read Only Mode" msgstr "Nur Lese-Modus" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "Lesezeit" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20616,7 +20686,7 @@ msgstr "Vom Empfänger gelesen am" msgid "Read mode" msgstr "Lesemodus" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "Lesen Sie die Dokumentation, um mehr zu erfahren" @@ -20636,11 +20706,11 @@ msgstr "Echtzeit (SocketIO)" msgid "Reason" msgstr "Grund" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "Wiederaufbau" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "Baum neu aufbauen" @@ -20678,7 +20748,7 @@ msgstr "Empfängerparameter" msgid "Recent years are easy to guess." msgstr "Die letzten Jahre sind leicht zu erraten." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "Kürzlich aufgerufen" @@ -20689,6 +20759,14 @@ msgstr "Kürzlich aufgerufen" msgid "Recipient" msgstr "Empfänger" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20721,7 +20799,7 @@ msgstr "Empfohlener Index für Rekorder" msgid "Records for following doctypes will be filtered" msgstr "Datensätze für folgende Dokumenttypen werden gefiltert" -#: frappe/core/doctype/doctype/doctype.py:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "Rekursives Abrufen von" @@ -20738,6 +20816,11 @@ msgstr "Rot" msgid "Redirect HTTP Status" msgstr "HTTP-Status bei Umleitung" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20832,6 +20915,11 @@ msgstr "Referenzdatum" msgid "Reference Datetime" msgstr "Referenz Datum und Uhrzeit" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "Referenzdokument" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20859,7 +20947,6 @@ msgstr "Referenz DocName" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20900,9 +20987,9 @@ msgstr "Name des Referenzdokuments" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20920,9 +21007,9 @@ msgstr "Name des Referenzdokuments" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20952,7 +21039,6 @@ msgstr "Referenz-Dokumententyp" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -21000,15 +21086,15 @@ msgstr "Referenz: {0} {1}" msgid "Referrer" msgstr "Referrer" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Aktualisieren" @@ -21022,6 +21108,10 @@ msgstr "Alle erfrischen" msgid "Refresh Google Sheet" msgstr "Google Sheet aktualisieren" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -21033,18 +21123,18 @@ msgstr "Google Sheet aktualisieren" msgid "Refresh Token" msgstr "Aktualisierungstoken" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "Aktualisiere" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "Aktualisiere..." -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "Registrierte aber deaktiviert" @@ -21083,7 +21173,7 @@ msgstr "Neu verknüpfen" #: frappe/core/doctype/communication/communication.js:138 msgid "Relink Communication" -msgstr "Relink Kommunikation" +msgstr "Kommunikation neu verknüpfen" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json @@ -21221,7 +21311,7 @@ msgstr "Feldname umbenennen" msgid "Rename {0}" msgstr "{0} umbenennen" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "Umbenannte Dateien und ersetzter Code in Controllern, bitte überprüfen!" @@ -21352,9 +21442,9 @@ msgstr "Allen antworten" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "Bericht" @@ -21424,11 +21514,11 @@ msgstr "Berichts-Manager" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "Berichtsname" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "Zum Erstellen einer Nummernkarte sind Berichtsname, Berichtsfeld und Funktion erforderlich" @@ -21462,21 +21552,21 @@ msgstr "Berichtsansicht" msgid "Report bug" msgstr "Fehler melden" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 msgid "Report cannot be set for Single types" msgstr "Bericht kann nicht für Einzel-Typen festgelegt werden" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 -#: frappe/desk/doctype/number_card/number_card.js:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "Der Bericht enthält keine Daten. Ändern Sie die Filter oder den Berichtsnamen" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 msgid "Report has no numeric fields, please change the Report Name" msgstr "Der Bericht enthält keine numerischen Felder. Bitte ändern Sie den Berichtsnamen" -#: frappe/public/js/frappe/views/reports/query_report.js:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "Bericht initiiert. Klicken Sie hier, um den Status anzuzeigen" @@ -21488,24 +21578,24 @@ msgstr "Berichtsgrenze erreicht" msgid "Report timed out." msgstr "Zeitüberschreitung des Berichts." -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "Bericht erfolgreich aktualisiert" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 msgid "Report was not saved (there were errors)" msgstr "Bericht wurde nicht gespeichert (es gab Fehler)" -#: frappe/public/js/frappe/views/reports/query_report.js:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "Berichte mit mehr als 10 Spalten sehen im Querformat besser aus." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "Bericht {0}" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "Bericht {0} gelöscht" @@ -21513,7 +21603,7 @@ msgstr "Bericht {0} gelöscht" msgid "Report {0} is disabled" msgstr "Bericht {0} ist deaktiviert" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "Bericht {0} gespeichert" @@ -21524,7 +21614,7 @@ msgstr "Bericht:" #. Label of the prepared_report_section (Section Break) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "Berichte" @@ -21532,7 +21622,7 @@ msgstr "Berichte" msgid "Reports & Masters" msgstr "Berichte & Stammdaten" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "Berichtet bereits in der Warteschlange" @@ -21551,7 +21641,10 @@ msgid "Request Body" msgstr "Anfragekörper" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "Anfragedaten" @@ -21603,6 +21696,11 @@ msgstr "Zeitüberschreitung der Anfrage" msgid "Request URL" msgstr "Anfrage-URL" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21654,11 +21752,11 @@ msgstr "Diagramm zurücksetzen" msgid "Reset Dashboard Customizations" msgstr "Dashboard-Anpassungen zurücksetzen" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "Felder zurücksetzen" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "LDAP-Passwort zurücksetzen" @@ -21666,11 +21764,11 @@ msgstr "LDAP-Passwort zurücksetzen" msgid "Reset Layout" msgstr "Layout zurücksetzen" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "OTP-Geheimnis zurücksetzen" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21705,7 +21803,7 @@ msgstr "Auf Standardwerte zurücksetzen" msgid "Reset sorting" msgstr "Sortierung zurücksetzen" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "Auf Standard zurücksetzen" @@ -21743,6 +21841,7 @@ msgid "Resource TOS URI" msgstr "" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21752,11 +21851,6 @@ msgstr "" msgid "Response" msgstr "Antwort" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "Antwort " - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21815,7 +21909,7 @@ msgstr "Auf Domain beschränken" 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 "Beschränkt den Benutzerzugriff ausschließlich auf diese IP-Adresse. Mehrere IP-Adressen können durch Kommas getrennt hinzugefügt werden. Auch Teiladressen wie (111.111.111) sind zulässig" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "Beschränkungen" @@ -21849,7 +21943,7 @@ msgstr "Kehren Sie zum Bestätigungsbildschirm zurück und geben Sie den von Ihr msgid "Reverse Icon Color" msgstr "Symbolfarbe umkehren" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "Zurücksetzen der Länge auf {0} für '{1}' in '{2}'. Wenn Sie die Länge auf {3} setzen, werden die Daten abgeschnitten." @@ -21867,9 +21961,7 @@ msgstr "Widerrufen" msgid "Revoked" msgstr "Widerrufen" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21910,6 +22002,7 @@ msgstr "Robots.txt" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21923,6 +22016,7 @@ msgstr "Robots.txt" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21961,7 +22055,7 @@ msgstr "Rollengenehmigung Seite und Bericht" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "Rollenberechtigungen" @@ -21971,7 +22065,7 @@ msgstr "Rollenberechtigungen" msgid "Role Permissions Manager" msgstr "Rollenberechtigungen-Manager" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Rollenberechtigungen-Manager" @@ -22014,6 +22108,7 @@ msgstr "Die Rolle wurde gemäß Benutzertyp {0} festgelegt" #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -22023,6 +22118,7 @@ msgstr "Die Rolle wurde gemäß Benutzertyp {0} festgelegt" #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -22059,7 +22155,7 @@ msgstr "Rollen Html" msgid "Roles can be set for users from their User page." msgstr "Rollen können für Benutzer auf ihrer Benutzerseite festgelegt werden." -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "Root {0} kann nicht gelöscht werden" @@ -22079,8 +22175,6 @@ msgstr "Rundungsmethode" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -22092,8 +22186,6 @@ msgstr "Rundungsmethode" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -22118,24 +22210,24 @@ msgstr "Routenumleitungen" msgid "Route: Example \"/app\"" msgstr "Route: Beispiel \"/app\"" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "Zeile" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "Zeile #" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "Zeile # {0}: Nicht-Administrator-Benutzer können die Rolle {1} nicht auf den benutzerdefinierten Doctype einstellen" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "Zeile #{0}:" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "Zeile #{}: Feldname ist erforderlich" @@ -22144,11 +22236,6 @@ msgstr "Zeile #{}: Feldname ist erforderlich" msgid "Row Format" msgstr "Zeilenformat" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "Zeilenindex" - #. 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" @@ -22163,7 +22250,7 @@ msgstr "Zeilenname" msgid "Row Number" msgstr "Zeilennummer" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "Zeilenwerte geändert" @@ -22171,30 +22258,33 @@ msgstr "Zeilenwerte geändert" msgid "Row {0}" msgstr "Zeile {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "Zeile {0}: Nicht zulässig zum Deaktivieren für Standardfelder" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "Zeile {0}: Keine Berechtigung die Option \"Beim Übertragen erlauben\" für Standardfelder zu aktivieren" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Added" msgstr "Zeilen hinzugefügt" #. Label of the rows_removed_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "Zeilen entfernt" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22285,7 +22375,7 @@ msgstr "SMS-Parameter" msgid "SMS Settings" msgstr "SMS-Einstellungen" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "SMS erfolgreich versendet" @@ -22363,7 +22453,7 @@ msgstr "Salesforce" msgid "Salutation" msgstr "Anrede" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "Gleiches Feld wird mehrmals eingegeben" @@ -22391,20 +22481,20 @@ msgstr "Samstag" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22413,16 +22503,12 @@ msgstr "Samstag" msgid "Save" msgstr "Speichern" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "API-Geheimnis speichern: {0}" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "Auf jeden Fall speichern" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "Speichern als" @@ -22430,11 +22516,11 @@ msgstr "Speichern als" msgid "Save Customizations" msgstr "Anpassungen speichern" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "Bericht speichern" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "Filter speichern" @@ -22459,7 +22545,7 @@ msgstr "Gespeichert" msgid "Saved Filters" msgstr "Gespeicherte Filter" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22538,7 +22624,7 @@ msgstr "Geplanter Auftragstyp" msgid "Scheduled Jobs Logs" msgstr "Protokolle geplanter Jobs" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "Die geplante Ausführung für Skript {0} wurde aktualisiert" @@ -22561,7 +22647,7 @@ msgstr "Planer" msgid "Scheduler Event" msgstr "Scheduler-Ereignis" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "Scheduler Inaktiv" @@ -22574,7 +22660,7 @@ msgstr "Planer-Status" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "Scheduler kann nicht wieder aktiviert werden, wenn der Wartungsmodus aktiv ist." -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "Scheduler ist inaktiv. Daten können nicht importiert werden." @@ -22706,7 +22792,7 @@ msgstr "Suchergebnisse" msgid "Search by filename or extension" msgstr "Nach Dateiname oder Endung suchen" -#: frappe/core/doctype/doctype/doctype.py:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "Suchfeld {0} ist nicht gültig" @@ -22806,7 +22892,7 @@ msgstr "Sicherheitseinstellungen" msgid "See all Activity" msgstr "Alle Aktivitäten anzeigen" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "Alle früheren Berichte anzeigen." @@ -22815,7 +22901,7 @@ msgstr "Alle früheren Berichte anzeigen." msgid "See on Website" msgstr "Auf der Webseite ansehen" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "Vorherige Antworten anzeigen" @@ -22862,7 +22948,7 @@ msgstr "Gesehen von Tabelle" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22870,28 +22956,28 @@ msgstr "Auswählen" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "Alle auswählen" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "Anhänge auswählen" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "Untergeordnete Tabelle auswählen" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 msgid "Select Column" msgstr "Wählen Sie Spalte" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "Spalten auswählen" @@ -22950,12 +23036,15 @@ msgstr "Feld auswählen" msgid "Select Field..." msgstr "Feld auswählen..." -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "Felder auswählen" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "Wählen Sie die einzufügenden Felder aus" @@ -22968,7 +23057,7 @@ msgstr "Wählen Sie zu aktualisierende Felder aus" msgid "Select Filters" msgstr "Wählen Sie Filter" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "Wählen Sie Google Kalender aus, mit dem das Ereignis synchronisiert werden soll." @@ -23001,8 +23090,8 @@ msgstr "Verpflichtende auswählen" msgid "Select Module" msgstr "Modul auswählen" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "Netzwerkdrucker auswählen" @@ -23067,14 +23156,14 @@ msgid "Select a field to edit its properties." msgstr "Wählen Sie ein Feld aus, um seine Eigenschaften zu bearbeiten." #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "Zuerst einen Gruppenknoten wählen." +msgid "Select a group {0} first." +msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" msgstr "Wählen Sie ein gültiges Absenderfeld zum Erstellen von Dokumenten aus E-Mail" -#: frappe/core/doctype/doctype/doctype.py:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 msgid "Select a valid Subject field for creating documents from Email" msgstr "Wählen Sie ein gültiges Betrefffeld zum Erstellen von Dokumenten aus E-Mail" @@ -23104,13 +23193,13 @@ msgstr "Wählen Sie mindestens einen Datensatz für den Druck" msgid "Select atleast 2 actions" msgstr "Wählen Sie mindestens 2 Aktionen aus" -#: frappe/public/js/frappe/list/list_view.js:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Listenelement auswählen" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Wählen Sie mehrere Listenelemente aus" @@ -23144,7 +23233,7 @@ msgstr "Wählen Sie zwei Versionen aus, um den Unterschied anzuzeigen." msgid "Select {0}" msgstr "{0} auswählen" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "Selbstgenehmigung ist nicht erlaubt" @@ -23328,7 +23417,7 @@ msgstr "Absender E-Mail" msgid "Sender Email Field" msgstr "Absender-E-Mail-Feld" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "Das Absenderfeld sollte E-Mail-Optionen enthalten" @@ -23422,7 +23511,7 @@ msgstr "Nummernkreis aktualisiert für {}" msgid "Series counter for {} updated to {} successfully" msgstr "Nummernkreis-Zähler für {} erfolgreich auf {} aktualisiert" -#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "Serie {0} bereits verwendet in {1}" @@ -23432,7 +23521,7 @@ msgstr "Serie {0} bereits verwendet in {1}" msgid "Server Action" msgstr "Serveraktion" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Serverfehler" @@ -23451,7 +23540,7 @@ msgstr "Server-IP-Adresse" msgid "Server Script" msgstr "Serverskript" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "Serverskripte sind deaktiviert. Bitte aktivieren Sie Server-Skripte in der Bankkonfiguration." @@ -23498,7 +23587,7 @@ msgstr "Sitzungsstandards" msgid "Session Defaults Saved" msgstr "Sitzungsstandards gespeichert" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "Sitzung abgelaufen" @@ -23507,14 +23596,14 @@ msgstr "Sitzung abgelaufen" msgid "Session Expiry (idle timeout)" msgstr "Ablauf der Sitzung (Leerlaufzeit)" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "Sitzungsablauf muss im Format {0} sein" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "Eingetragen" @@ -23540,12 +23629,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\" msgstr "Legen Sie die Standardoptionen für alle Diagramme in diesem Dashboard fest (z.B.: \"colors\": [\"#d1d8dd\", \"#ff5858\"])" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "Dynamische Filter einstellen" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23556,7 +23645,7 @@ msgstr "Filter setzen" msgid "Set Filters for {0}" msgstr "Setze Filter für {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "Ebenen einstellen" @@ -23610,7 +23699,7 @@ msgstr "Anzahl festlegen" msgid "Set Role For" msgstr "Rolle festlegen für" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Nutzer-Berechtigungen setzen" @@ -23620,16 +23709,16 @@ msgstr "Nutzer-Berechtigungen setzen" msgid "Set Value" msgstr "Wert festlegen" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "Alle als privat setzen" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "Alle als öffentlich setzen" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "Als Standard festlegen" @@ -23648,18 +23737,21 @@ msgstr "Von Benutzer festgelegt" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "Hier können Sie dynamische Filterwerte in JavaScript für die erforderlichen Felder festlegen." -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "Festlegen einer Nicht-Standardpräzision für ein Gleitkomma- oder Währungsfeld" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23775,14 +23867,9 @@ msgstr "Einstellungen für die „Kontakt“-Seite" msgid "Settings for the About Us Page" msgstr "Einstellungen für die „Über uns“-Seite" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "Einstellungen zur Steuerung von Blog-Kategorien und Interaktionen wie Kommentare und Likes" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "Einrichtung" @@ -23798,8 +23885,8 @@ msgstr "Einrichtung > Benutzer" msgid "Setup > User Permissions" msgstr "Einrichtung > Benutzerberechtigungen" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "Einstellungen Auto E-Mail" @@ -23868,11 +23955,6 @@ msgstr "Lieferadresse" msgid "Shop" msgstr "Laden" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "Kürzel" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "Kurze Tastatur-Muster sind leicht zu erraten" @@ -23892,11 +23974,6 @@ msgstr "Tastenkombinationen" msgid "Show" msgstr "Anzeigen" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "„Aufruf zum Handeln\" im Blog anzeigen" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23949,7 +24026,13 @@ msgstr "Dokument anzeigen" msgid "Show Error" msgstr "Fehler anzeigen" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "Feldname anzeigen (klicken um in Zwischenablage zu kopieren)" @@ -24077,7 +24160,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "Schlagworte anzeigen" @@ -24094,7 +24177,7 @@ msgstr "Titel anzeigen" msgid "Show Title in Link Fields" msgstr "Titel in Verknüpfungsfeld anzeigen" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "Summen anzeigen" @@ -24134,10 +24217,6 @@ msgstr "Alle Versionen" msgid "Show all activity" msgstr "Alle Aktivitäten anzeigen" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "Alle Blogs anzeigen" - #. 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" @@ -24186,8 +24265,8 @@ msgstr "Link zum Dokument anzeigen" msgid "Show list" msgstr "Liste anzeigen" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "Weiteres" @@ -24216,7 +24295,7 @@ msgstr "Diesen Eintrag im Browser-Fenster als \"Präfix - Titel\" anzeigen" msgid "Show {0} List" msgstr "{0} Liste anzeigen" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "Nur numerische Felder aus Bericht anzeigen" @@ -24251,7 +24330,7 @@ msgstr "Sidebar und Kommentare" msgid "Sign Up and Confirmation" msgstr "Registrierung und Bestätigung" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "Die Registrierung ist deaktiviert" @@ -24288,36 +24367,36 @@ msgstr "Anmeldung deaktiviert" msgid "Signups have been disabled for this website." msgstr "Anmeldungen für diese Website wurden deaktiviert." -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "Einfacher Python-Ausdruck, Beispiel: status in (\"Closed\", \"Cancelled\")" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" -msgstr "Einfacher Python-Ausdruck, Beispiel: status in (\"Invalid\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" -msgstr "Einfacher Python-Ausdruck, Beispiel: status == 'Open' and type == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" +msgstr "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "Gleichzeitige Sitzungen" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "Einzelne DocTypes können nicht angepasst werden." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Einzelne Typen haben nur einen Datensatz, keine Tabellen zugeordnet. Die Werte werden in tabSingles gespeichert" @@ -24325,7 +24404,7 @@ msgstr "Einzelne Typen haben nur einen Datensatz, keine Tabellen zugeordnet. Die msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "Diese Instanz läuft im schreibgeschützten Modus für Wartungsarbeiten und Aktualisierungen. Diese Aktion kann daher momentan nicht ausgeführt werden. Bitte versuchen Sie es später erneut." -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "Größe" @@ -24544,11 +24623,11 @@ msgstr "Während der Token-Generierung ist ein Fehler aufgetreten. Klicken Sie a msgid "Something went wrong." msgstr "Etwas ist schief gelaufen." -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 msgid "Sorry! I could not find what you were looking for." msgstr "Verzeihung! Suche konnte nicht gefunden werden." -#: frappe/public/js/frappe/views/pageview.js:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "Verzeihung! Sie sind nicht berechtigt, diese Seite zu sehen." @@ -24579,20 +24658,23 @@ msgstr "Optionen sortieren" msgid "Sort Order" msgstr "Sortierung" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 msgid "Sort field {0} must be a valid fieldname" msgstr "Sortierfeld {0} muss ein gültiger Feldname sein" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' -#: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "Quelle" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24619,6 +24701,12 @@ msgstr "Spam" msgid "SparkPost" msgstr "SparkPost" +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "Sonderzeichen sind nicht erlaubt" @@ -24643,8 +24731,8 @@ msgstr "Geben Sie die Domänen oder Ursprünge an, die dieses Formular einbetten msgid "Splash Image" msgstr "Splash-Bild" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "Pos" @@ -24676,11 +24764,11 @@ msgstr "Stack Trace" msgid "Standard" msgstr "Standard" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "Standard DocType kann nicht gelöscht werden." -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "Standard DocType kann kein Standard-Druckformat haben, verwenden Sie Formular anpassen" @@ -24692,7 +24780,7 @@ msgstr "Standard nicht festgelegt" msgid "Standard Permissions" msgstr "Standardberechtigungen" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "Standard-Druckformat kann nicht aktualisiert werden" @@ -24700,11 +24788,11 @@ msgstr "Standard-Druckformat kann nicht aktualisiert werden" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "Standard Print Style kann nicht geändert werden. Bitte duplizieren, um zu bearbeiten." -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "Standardberichte können nicht gelöscht werden" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "Standard-Berichte können nicht bearbeitet werden" @@ -24736,8 +24824,8 @@ msgstr "Standard-Benutzertyp {0} kann nicht gelöscht werden." #: frappe/core/doctype/recorder/recorder_list.js:87 #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45 -#: frappe/printing/page/print/print.js:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "Starten" @@ -24745,7 +24833,7 @@ msgstr "Starten" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24810,6 +24898,7 @@ msgstr "Beginnt am" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24818,7 +24907,7 @@ msgstr "Beginnt am" msgid "State" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "Statuseigenschaften" @@ -24874,6 +24963,7 @@ msgstr "Statistik Zeitintervall" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24898,6 +24988,7 @@ msgstr "Statistik Zeitintervall" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24905,8 +24996,8 @@ msgstr "Statistik Zeitintervall" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24943,7 +25034,7 @@ msgstr "Schritte, um Ihre Anmeldung zu überprüfen" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "Fixiert" @@ -24973,6 +25064,10 @@ msgstr "Speichernutzung nach Tabelle" msgid "Store Attached PDF Document" msgstr "Angehängtes PDF-Dokument speichern" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +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." @@ -25051,7 +25146,7 @@ msgstr "Unterdomäne" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -25067,7 +25162,7 @@ msgstr "Betreff" msgid "Subject Field" msgstr "Themenfeld" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "Betreff Der Feldtyp sollte Daten, Text, Langtext, Kleiner Text, Texteditor sein" @@ -25081,6 +25176,7 @@ msgstr "Buchungs-Warteschlange" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -25089,10 +25185,11 @@ msgstr "Buchungs-Warteschlange" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "Buchen" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Buchen" @@ -25102,7 +25199,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Senden" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Buchen" @@ -25126,7 +25223,7 @@ msgstr "Nach dem Import buchen" msgid "Submit an Issue" msgstr "Ein Problem melden" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "Eine weitere Antwort senden" @@ -25138,7 +25235,7 @@ msgstr "Beschriftung der Schaltfläche „Senden“" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "Nach Erstellung buchen" @@ -25150,7 +25247,7 @@ msgstr "Senden Sie dieses Dokument, um diesen Schritt abzuschließen." msgid "Submit this document to confirm" msgstr "Buchen Sie dieses Dokument, um zu bestätigen" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "{0} Dokumente einreichen?" @@ -25159,11 +25256,11 @@ msgstr "{0} Dokumente einreichen?" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "Gebucht" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "Buchung kann nicht in Entwurf umgewandelt werden. Zeile {0}" @@ -25186,9 +25283,7 @@ msgid "Subsidiary" msgstr "Tochtergesellschaft" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "Untertitel" @@ -25202,7 +25297,7 @@ msgstr "Untertitel" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25244,20 +25339,16 @@ msgstr "Erfolgsmeldung" msgid "Success title" msgstr "Erfolgstitel" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "Erfolg! Du kannst nun durchstarten 👍" - #. 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 "Anzahl erfolgreich" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "Erfolgreiche Transaktionen" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "Erfolgreich: {0} um {1}" @@ -25299,7 +25390,7 @@ msgstr "Optimierungen vorschlagen" msgid "Suggested Indexes" msgstr "Vorgeschlagene Indizes" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "Empfohlener Benutzername: {0}" @@ -25421,7 +25512,7 @@ msgstr "Synchronisiert" msgid "Syncing {0} of {1}" msgstr "{0} von {1} synchronisieren" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "Syntaxfehler" @@ -25544,6 +25635,7 @@ msgstr "Systemprotokolle" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25626,6 +25718,7 @@ msgstr "Systemprotokolle" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" msgstr "System-Manager" @@ -25699,7 +25792,7 @@ msgstr "Tabelle" msgid "Table Break" msgstr "Tabellenumbruch" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "Tabellenfeld" @@ -25708,7 +25801,7 @@ msgstr "Tabellenfeld" msgid "Table Fieldname" msgstr "Tabellenfeldname" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "Tabellenfeldname fehlt" @@ -25730,11 +25823,11 @@ msgstr "Tabelle MultiSelect" msgid "Table Trimmed" msgstr "Tabelle gekürzt" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "Tabelle aktualisiert" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 msgid "Table {0} cannot be empty" msgstr "Tabelle {0} darf nicht leer sein" @@ -25776,11 +25869,18 @@ msgstr "Foto machen" msgid "Target" msgstr "Ziel" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "Vorgang" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "Aufgaben" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25842,7 +25942,7 @@ msgstr "Vorlagenwarnungen" msgid "Templates" msgstr "Vorlagen" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "Zeitweise nicht verfügbar" @@ -25916,7 +26016,7 @@ msgstr "Vielen Dank, dass Sie sich mit uns in Verbindung setzen. Wir werden uns "Ihre Anfrage:\n\n" "{0}" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "Vielen Dank, dass Sie sich die Zeit genommen haben, dieses Formular auszufüllen" @@ -25940,7 +26040,7 @@ msgstr "Danke" msgid "The Auto Repeat for this document has been disabled." msgstr "Die automatische Wiederholung für dieses Dokument wurde deaktiviert." -#: frappe/public/js/frappe/form/grid.js:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "Das CSV-Format unterscheidet zwischen Groß- und Kleinschreibung" @@ -25953,15 +26053,15 @@ msgstr "Die Client-ID, die Sie in der Google Cloud Console unter erhalten" -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "Die Bedingung '{0}' ist ungültig" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "Die eingegebene Datei-URL ist falsch" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." msgstr "Das nächste geplante Datum kann nicht später sein als das Enddatum." @@ -26004,7 +26104,7 @@ msgstr "Die Änderungen wurden rückgängig gemacht." msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "Die Spalte {0} hat {1} verschiedene Datumsformate. Automatisches Festlegen von {2} als Standardformat, da dies am häufigsten vorkommt. Bitte ändern Sie andere Werte in dieser Spalte in dieses Format." -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "Der Kommentar darf nicht leer sein" @@ -26012,7 +26112,7 @@ msgstr "Der Kommentar darf nicht leer sein" msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone." msgstr "Der Inhalt dieser E-Mail ist streng vertraulich. Bitte leiten Sie diese E-Mail nicht an Dritte weiter." -#: frappe/public/js/frappe/list/list_view.js:658 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "Die angezeigte Anzahl ist eine Schätzung. Klicken Sie hier, um die genaue Anzahl anzuzeigen." @@ -26042,7 +26142,7 @@ msgstr "Der ausgewählte Dokumenttyp ist eine untergeordnete Tabelle, daher ist msgid "The field {0} is mandatory" msgstr "Das Feld {0} ist ein Pflichtfeld" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "Der Feldname, den Sie im Angehängten Feld angegeben haben, ist ungültig" @@ -26114,15 +26214,19 @@ msgstr "Die Projektnummer aus der Google Cloud Console unter " -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

Click here to download:
{0}

This link will expire in {1} hours." +msgstr "" + +#: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" msgstr "Der Link zum Zurücksetzen des Passworts ist abgelaufen" -#: frappe/core/doctype/user/user.py:995 +#: frappe/core/doctype/user/user.py:1002 msgid "The reset password link has either been used before or is invalid" msgstr "Der Link zum Zurücksetzen des Passworts wurde bereits verwendet oder ist ungültig" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "Die von Ihnen gesuchte Ressource ist nicht verfügbar" @@ -26134,7 +26238,7 @@ msgstr "Die Rolle {0} sollte eine benutzerdefinierte Rolle sein." msgid "The selected document {0} is not a {1}." msgstr "Das ausgewählte Dokument {0} ist nicht vom Typ {1}." -#: frappe/utils/response.py:338 +#: frappe/utils/response.py:336 msgid "The system is being updated. Please refresh again after a few moments." msgstr "Das System wird gerade aktualisiert. Bitte probieren Sie es nach einigen Augenblicken erneut." @@ -26155,7 +26259,7 @@ msgstr "Der Wert, den Sie eingefügt haben, war {0} Zeichen lang. Die maximal er msgid "The webhook will be triggered if this expression is true" msgstr "Der Webhook wird ausgelöst, wenn dieser Ausdruck wahr ist" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "Die {0} ist bereits in der automatischen Wiederholung {1}." @@ -26195,16 +26299,16 @@ msgstr "Für Sie stehen keine Veranstaltungen an." msgid "There are no {0} for this {1}, why don't you start one!" msgstr "Es gibt keine {0} für diese {1}, warum starten Sie nicht eine!" -#: frappe/public/js/frappe/views/reports/query_report.js:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "Es gibt bereits {0} mit denselben Filtern in der Warteschlange:" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "Es dürfen höchstens 9 Seitenumbrüche in einem Webformular vorkommen" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "Es darf nur einen Falz in einem Formular geben" @@ -26216,15 +26320,19 @@ msgstr "Es befindet sich ein Fehler in der Adressvorlage {0}" msgid "There is no data to be exported" msgstr "Es gibt keine zu exportierenden Daten" +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "Es gibt im Moment nichts Neues zu sehen." -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "Es gibt irgend ein Problem mit der Datei-URL: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "In der Warteschlange befindet sich bereits {0} mit denselben Filtern:" @@ -26236,7 +26344,7 @@ msgstr "Es muss atleast eine Erlaubnis Regel sein." msgid "There was an error building this page" msgstr "Beim Erstellen dieser Seite ist ein Fehler aufgetreten" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "Beim Speichern der Filter ist ein Fehler aufgetreten" @@ -26248,11 +26356,11 @@ msgstr "Es gab Fehler" msgid "There were errors while creating the document. Please try again." msgstr "Beim Erstellen des Dokuments sind Fehler aufgetreten. Bitte versuche es erneut." -#: frappe/public/js/frappe/views/communication.js:840 +#: frappe/public/js/frappe/views/communication.js:843 msgid "There were errors while sending email. Please try again." msgstr "Beim Versand der E-Mail ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut." -#: frappe/model/naming.py:494 +#: frappe/model/naming.py:502 msgid "There were some errors setting the name, please contact the administrator" msgstr "Beim Setzen des Namens hat es einige Fehler gegeben. Kontaktieren Sie bitte Ihren Administrator" @@ -26293,7 +26401,7 @@ msgstr "Drittpartei-Authentifizierung" msgid "This Currency is disabled. Enable to use in transactions" msgstr "Diese Währung ist deaktiviert. Aktivieren, um in Transaktionen zu verwenden" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "Dieser Kanbantafel wird privat" @@ -26301,6 +26409,10 @@ msgstr "Dieser Kanbantafel wird privat" msgid "This Month" msgstr "" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "" @@ -26326,6 +26438,11 @@ msgstr "Diese Aktion ist nur für {} zulässig" msgid "This cannot be undone" msgstr "Das kann nicht rückgängig gemacht werden" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +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" @@ -26340,11 +26457,11 @@ msgstr "Dieses Diagramm steht allen Benutzern zur Verfügung, wenn diese Option msgid "This doctype has no orphan fields to trim" msgstr "Dieser Doctype hat keine verwaisten Felder zum Kürzen" -#: frappe/core/doctype/doctype/doctype.py:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "Dieser Doctype hat anstehende Migrationen. Führen Sie 'bench migrate' aus, bevor Sie den Doctype ändern, damit die Änderungen nicht verloren gehen." -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "Dieses Dokument kann im Moment nicht gelöscht werden, da es von einem anderen Benutzer geändert wird. Bitte versuchen Sie es nach einiger Zeit erneut." @@ -26390,7 +26507,7 @@ msgstr "Dieses Feld wird nur angezeigt, wenn der hier definierte Feldname einen "eval:doc.myfield=='Mein Wert'\n" "eval:doc.age>18" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "Diese Datei ist an ein geschütztes Dokument angehängt und kann nicht gelöscht werden." @@ -26406,7 +26523,7 @@ msgstr "Diese Datei ist öffentlich. Sie kann ohne Authentifizierung aufgerufen msgid "This form has been modified after you have loaded it" msgstr "Dieses Formular wurde geändert, nachdem Sie es geladen haben" -#: frappe/public/js/frappe/form/form.js:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "Dieses Formular kann in diesem Workflow-Status nicht bearbeitet werden." @@ -26425,7 +26542,7 @@ msgstr "Dieser Geolokalisierungsanbieter wird noch nicht unterstützt." msgid "This goes above the slideshow." msgstr "Dies erscheint oberhalb der Diaschau." -#: frappe/public/js/frappe/views/reports/query_report.js:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "Dies ist ein Hintergrundbericht. Bitte setzen Sie die entsprechenden Filter und generieren Sie dann einen neuen." @@ -26449,12 +26566,6 @@ msgstr "Dies ist ein virtueller Dokumenttyp und die Daten werden regelmäßig ge msgid "This is an automatically generated reply" msgstr "Dies ist eine automatisch generierte Antwort" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "Dies ist ein Beispiel für die Google SERP-Vorschau." - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "Dies ist ähnlich wie bei einem häufig verwendeten Passwort." @@ -26473,7 +26584,7 @@ msgstr "Dieser Link wurde bereits zur Überprüfung aktiviert." msgid "This link is invalid or expired. Please make sure you have pasted correctly." msgstr "Diese Verknüpfung ist ungültig oder abgelaufen. Bitte sicher stellen, dass die Verknüpfung korrekt eingefügt wurde." -#: frappe/printing/page/print/print.js:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "Dies kann auf mehreren Seiten ausgedruckt werden" @@ -26481,7 +26592,7 @@ msgstr "Dies kann auf mehreren Seiten ausgedruckt werden" msgid "This month" msgstr "Diesen Monat" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "Dieser Bericht enthält {0} Zeilen und ist zu groß, um im Browser angezeigt zu werden. Sie können diesen Bericht stattdessen unter {1} aufrufen." @@ -26489,7 +26600,7 @@ msgstr "Dieser Bericht enthält {0} Zeilen und ist zu groß, um im Browser angez msgid "This report was generated on {0}" msgstr "Dieser Bericht wurde am {0} erstellt." -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "Dieser Bericht wurde {0} generiert." @@ -26520,8 +26631,8 @@ msgstr "Dieser Wert ergibt sich aus dem Feld {1} von {0}" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " -msgstr "Dieser Wert gibt die maximale Anzahl von Zeilen an, die in der Berichtsansicht dargestellt werden können. " +msgid "This value specifies the max number of rows that can be rendered in report view." +msgstr "Dieser Wert gibt die maximale Anzahl von Zeilen an, die in der Berichtsansicht dargestellt werden können." #: frappe/website/doctype/web_page/web_page.js:85 msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish" @@ -26552,10 +26663,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "Dadurch wird diese Tour zurückgesetzt und für alle Benutzer sichtbar. Sind Sie sicher?" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " -msgstr "Das wird den Auftrag sofort beenden und könnte gefährlich sein, sind Sie sicher? " +msgid "This will terminate the job immediately and might be dangerous, are you sure?" +msgstr "Das wird den Auftrag sofort beenden und könnte gefährlich sein, sind Sie sicher?" -#: frappe/core/doctype/user/user.py:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "Gedrosselt" @@ -26631,9 +26742,11 @@ msgstr "Zeitfenster (Sekunden)" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26704,11 +26817,11 @@ msgstr "Zeitleiste Verknüpfungen" msgid "Timeline Name" msgstr "Zeitleiste Name" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 msgid "Timeline field must be a Link or Dynamic Link" msgstr "Timeline-Bereich muss einen Link oder Dynamic Link sein" -#: frappe/core/doctype/doctype/doctype.py:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "Timeline-Feld muss eine gültige Feldname sein" @@ -26734,10 +26847,7 @@ msgid "Timespan" msgstr "Zeitspanne" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "Zeitstempel" @@ -26757,9 +26867,6 @@ msgstr "Tipp: Probieren Sie die neue Dropdown-Konsole mit" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26784,9 +26891,6 @@ msgstr "Tipp: Probieren Sie die neue Dropdown-Konsole mit" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26809,7 +26913,7 @@ msgstr "Titel-Feld" msgid "Title Prefix" msgstr "Titel-Präfix" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "Bezeichnungsfeld muss ein gültiger Feldname sein" @@ -26909,7 +27013,7 @@ msgstr "Um diesen Schritt als JSON zu exportieren, verknüpfen Sie ihn in einem msgid "To generate password click {0}" msgstr "Um ein Passwort zu generieren, klicken Sie auf {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "Klicken Sie auf {0}, um den aktualisierten Bericht abzurufen." @@ -26964,7 +27068,7 @@ msgstr "Aufgabe" msgid "Today" msgstr "Heute" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "Diagramm/Grafik(?) umschalten\\nplease verify context!" @@ -26980,11 +27084,11 @@ msgstr "Rasteransicht wechseln" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "Seitenleiste umschalten" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Seitenleiste ein-/ausblenden" @@ -27030,7 +27134,7 @@ msgid "Tomorrow" msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "Zu viele Dokumente" @@ -27046,7 +27150,7 @@ msgstr "Zu viele Änderungen an der Datenbank in einer einzelnen Aktion." msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "Zu viele Hintergrundjobs in der Warteschlange ({0}). Bitte versuchen Sie es später erneut." -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "Zu viele Benutzer unterzeichnete vor kurzem, also die Registrierung ist deaktiviert. Bitte versuchen Sie es in einer Stunde zurück" @@ -27108,10 +27212,10 @@ msgstr "Oben rechts" msgid "Topic" msgstr "Thema" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "Summe" @@ -27154,18 +27258,18 @@ msgstr "Gesamtarbeitszeit" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " -msgstr "Gesamtzahl der im ersten Synchronisierungsprozess zu synchronisierenden E-Mails " +msgid "Total number of emails to sync in initial sync process" +msgstr "Gesamtzahl der im ersten Synchronisierungsprozess zu synchronisierenden E-Mails" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "Summe:" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "Summen" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "Summenzeile" @@ -27233,26 +27337,10 @@ msgstr "Verfolgen Sie Meilensteine für jedes Dokument" msgid "Tracking" msgstr "Nachverfolgung" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "Tracking URL generiert und in die Zwischenablage kopiert" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "Transaktions-Hash" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "Transaktionsprotokoll" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "Transaktionsprotokollbericht" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "Transgender" @@ -27266,6 +27354,11 @@ msgstr "Übergangseigenschaften" msgid "Transition Rules" msgstr "Übergangsregeln" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" @@ -27280,7 +27373,7 @@ msgstr "Übergänge" msgid "Translatable" msgstr "Übersetzbar" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "Daten übersetzen" @@ -27291,7 +27384,7 @@ msgstr "Daten übersetzen" msgid "Translate Link Fields" msgstr "Verknünpfungsfelder übersetzen" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "Werte übersetzen" @@ -27375,8 +27468,8 @@ msgstr "Erneut versuchen" msgid "Try a Naming Series" msgstr "Nummernkreis ausprobieren" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "Probieren Sie den neuen Print-Designer" @@ -27442,7 +27535,7 @@ msgstr "Zwei Faktor-Authentifizierungsmethode" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27536,7 +27629,7 @@ msgstr "URL" msgid "URL for documentation or help" msgstr "URL für Dokumentation oder Hilfe" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "URL muss mit http:// oder https:// beginnen" @@ -27639,7 +27732,7 @@ msgstr "Sie können keine E-Mail senden, weil ein E-Mail-Konto fehlt. Bitte rich msgid "Unable to update event" msgstr "Ereignis kann nicht aktualisiert werden" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "Das Dateiformat für {0} kann nicht geschrieben werden." @@ -27648,7 +27741,7 @@ msgstr "Das Dateiformat für {0} kann nicht geschrieben werden." msgid "Unassign Condition" msgstr "Bedingung für das Aufheben der Zuweisung" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "Nicht abgefangene Ausnahme" @@ -27664,7 +27757,7 @@ msgstr "Rückgängig machen" msgid "Undo last action" msgstr "Letzte Aktion rückgängig machen" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27711,7 +27804,7 @@ msgstr "Unbekannte Spalte: {0}" msgid "Unknown Rounding Method: {}" msgstr "Unbekannte Rundungsmethode: {}" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "Unbekannter Benutzer" @@ -27723,8 +27816,7 @@ msgstr "Unbekannte Dateikodierung. Versucht, Folgende zu verwenden: {0}" msgid "Unlock Reference Document" msgstr "Referenzdokument entsperren" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "Zurückziehen" @@ -27740,7 +27832,7 @@ msgstr "Ungelesen" msgid "Unread Notification Sent" msgstr "Ungelesene Benachrichtigung gesendet" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "Unsichere SQL-Abfrage" @@ -27778,8 +27870,8 @@ msgstr "Abmeldeparameter" msgid "Unsubscribed" msgstr "Abgemeldet" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27799,7 +27891,7 @@ msgstr "Entpackte {0} Dateien" msgid "Unzipping files..." msgstr "Dateien werden entpackt ..." -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "Bevorstehenden Veranstaltungen für heute" @@ -27813,7 +27905,7 @@ msgstr "Bevorstehenden Veranstaltungen für heute" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Aktualisieren" @@ -27847,6 +27939,11 @@ msgstr "Reihenfolge aktualisieren" msgid "Update Password" msgstr "Passwort ändern" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27889,7 +27986,7 @@ msgstr "{0} Datensätze aktualisieren" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "Aktualisiert" @@ -27897,7 +27994,7 @@ msgstr "Aktualisiert" msgid "Updated Successfully" msgstr "Erfolgreich geupdated" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "Auf eine neue Version aktualisiert 🎉" @@ -27905,7 +28002,7 @@ msgstr "Auf eine neue Version aktualisiert 🎉" msgid "Updated successfully" msgstr "Erfolgreich geupdated" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "Aktualisierung läuft" @@ -27950,8 +28047,8 @@ msgstr "Plan hochstufen" msgid "Upgrade your support experience with Frappe Helpdesk" msgstr "Verbessern Sie Ihr Support-Erlebnis mit Frappe Helpdesk" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27961,11 +28058,11 @@ msgstr "Hochladen" msgid "Upload Image" msgstr "Bild hochladen" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "Datei hochladen" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "{0} Dateien hochladen" @@ -28062,15 +28159,11 @@ msgstr "Andere E-Mail-Adresse verwenden" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "Verwenden Sie diese Option, wenn die Standardeinstellungen Ihre Daten nicht richtig zu erkennen scheinen" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "Die Verwendung der Funktion {0} im Feld ist eingeschränkt" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "Die Verwendung von Teilabfragen oder Funktionen ist eingeschränkt." -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "Den neuen Druckformat-Editor verwenden" @@ -28091,7 +28184,9 @@ msgid "Used OAuth" msgstr "OAuh verwendet" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -28100,6 +28195,7 @@ msgstr "OAuh verwendet" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -28114,11 +28210,12 @@ msgstr "OAuh verwendet" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -28127,6 +28224,7 @@ msgstr "OAuh verwendet" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -28143,17 +28241,11 @@ msgstr "OAuh verwendet" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "Benutzer" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "Benutzer" - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "Benutzer '{0}' hat bereits die Rolle '{1}'" @@ -28183,7 +28275,7 @@ msgstr "Kann nicht von einem Benutzer erstellt werden" msgid "User Cannot Search" msgstr "Kann nicht von einem Benutzer gesucht werden" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "Benutzer geändert" @@ -28247,11 +28339,6 @@ msgstr "Benutzer-ID" msgid "User ID Property" msgstr "Benutzer-ID-Eigenschaft" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "Benutzer-ID eines Bloggers" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28271,6 +28358,11 @@ msgstr "Benutzer-Id Feld ist obligatorisch in der Benutzerart {0}" msgid "User Image" msgstr "Benutzerbild" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "Benutzermenü" @@ -28289,12 +28381,12 @@ msgstr "Benutzerberechtigung" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "Benutzerberechtigungen" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Benutzerberechtigungen" @@ -28307,7 +28399,9 @@ msgstr "Benutzerberechtigungen werden verwendet, um Benutzer auf bestimmte Daten msgid "User Permissions created successfully" msgstr "Benutzerberechtigungen erfolgreich erstellt" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "Benutzerrolle" @@ -28373,6 +28467,10 @@ msgstr "Benutzer existiert nicht." msgid "User does not have permission to create the new {0}" msgstr "Der Benutzer hat keine Berechtigung zum Erstellen der neuen {0}" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "Benutzer für Freigabe zwingend erforderlich" @@ -28403,7 +28501,7 @@ msgstr "Benutzer {0} kann nicht gelöscht werden" msgid "User {0} cannot be disabled" msgstr "Benutzer {0} kann nicht deaktiviert werden" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "Benutzer {0} kann nicht umbenannt werden" @@ -28424,7 +28522,7 @@ msgstr "Der Benutzer {0} hat nicht die Berechtigung, einen Arbeitsbereich zu ers msgid "User {0} has requested for data deletion" msgstr "Benutzer {0} hat das Löschen von Daten angefordert" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "Benutzer {0} hat sich als {1} ausgegeben" @@ -28432,7 +28530,7 @@ msgstr "Benutzer {0} hat sich als {1} ausgegeben" msgid "User {0} is disabled" msgstr "Benutzerkonto {0} ist deaktiviert" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "Benutzer {0} ist deaktiviert. Bitte wenden Sie sich an Ihren Systemmanager." @@ -28453,7 +28551,7 @@ msgstr "Benutzerinfo URI" msgid "Username" msgstr "Benutzername" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "Benutzername {0} ist bereits vorhanden" @@ -28537,7 +28635,7 @@ msgstr "Frappe Mail Einstellungen überprüfen" msgid "Validate SSL Certificate" msgstr "SSL-Zertifikat validieren" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "Validierungsfehler" @@ -28560,8 +28658,8 @@ msgstr "Gültigkeit" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28593,7 +28691,7 @@ msgstr "Wert geändert" msgid "Value To Be Set" msgstr "Wert, der gesetzt werden soll" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "Wert kann für {0} nicht geändert werden" @@ -28609,11 +28707,11 @@ msgstr "Der Wert kann für {0} nicht negativ sein: {1}" msgid "Value for a check field can be either 0 or 1" msgstr "Wert für ein Ankreuz-Feld kann entweder 0 oder 1 sein" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "Der Wert für das Feld {0} ist in {1} zu lang. Die Länge sollte kleiner als {2} Zeichen sein" -#: frappe/model/base_document.py:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "Wert für {0} kann keine Liste sein" @@ -28638,7 +28736,7 @@ msgstr "" msgid "Value to Validate" msgstr "Zu validierender Wert" -#: frappe/model/base_document.py:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "Wert zu groß" @@ -28655,7 +28753,7 @@ msgstr "Der Wert {0} muss das gültige Dauerformat haben: dhms" msgid "Value {0} must in {1} format" msgstr "Der Wert {0} muss im Format {1} vorliegen" -#: frappe/core/doctype/version/version_view.html:8 +#: frappe/core/doctype/version/version_view.html:9 msgid "Values Changed" msgstr "Werte geändert" @@ -28668,7 +28766,7 @@ msgstr "Verdana" msgid "Verification" msgstr "Verifizierung" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "Verifizierungscode" @@ -28730,15 +28828,7 @@ msgstr "Alle ansehen" msgid "View Audit Trail" msgstr "Prüfprotokoll anzeigen" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "Blogbeitrag anzeigen" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "Kommentar anzeigen" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "DocType-Berechtigungen anzeigen" @@ -28750,7 +28840,7 @@ msgstr "Datei anzeigen" msgid "View Full Log" msgstr "Vollständiges Protokoll anzeigen" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "Liste anzeigen" @@ -28760,7 +28850,7 @@ msgstr "Liste anzeigen" msgid "View Log" msgstr "Protokoll anzeigen" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Anzeigen von zulässigen Dokumenten" @@ -28807,7 +28897,7 @@ msgstr "Bericht in Ihrem Browser anzeigen" msgid "View this in your browser" msgstr "Inhalt im Browser anzeigen" -#: frappe/public/js/frappe/web_form/web_form.js:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "Ihre Antwort anzeigen" @@ -28876,6 +28966,7 @@ msgid "Warehouse" msgstr "Lager" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Warnung" @@ -28884,7 +28975,7 @@ msgstr "Warnung" msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" msgstr "Warnung: DROHENDER DATENVERLUST! Wenn Sie fortfahren, werden die folgenden Datenbankspalten von DocType {0} dauerhaft gelöscht:" -#: frappe/core/doctype/doctype/doctype.py:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "Warnung: Benennungsschema wurde nicht festgelegt" @@ -28970,7 +29061,7 @@ msgstr "Webseite" msgid "Web Page Block" msgstr "Webseitenblock" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "URL der Webseite" @@ -29073,7 +29164,7 @@ msgstr "Webhook-URL" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "Webseite" @@ -29086,10 +29177,6 @@ msgstr "Website-Analysen" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -29133,7 +29220,7 @@ msgstr "Webseiten-Skript" msgid "Website Search Field" msgstr "Webseiten-Suchfeld" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "Website-Suchfeld muss ein gültiger Feldname sein" @@ -29350,11 +29437,6 @@ msgstr "Platzhalterfilter" msgid "Will add \"%\" before and after the query" msgstr "Fügt „%“ vor und nach der Abfrage hinzu" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "Wird in URL verwendet (in der Regel Vorname)." - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "Wird Ihre Login-ID sein" @@ -29369,7 +29451,7 @@ msgstr "Wird nur dann angezeigt wenn Überschriften aktiviert sind" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "Führt geplante Prozesse für inaktive Instanzen nur einmal pro Tag aus. Setzen Sie den Wert auf 0, um die automatische Deaktivierung des Planers zu vermeiden." -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "Mit Briefkopf" @@ -29447,7 +29529,7 @@ msgstr "Mit dem Workflow-Generator können Sie Arbeitsabläufe visuell erstellen msgid "Workflow Data" msgstr "Workflow-Daten" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "Workflow-Details" @@ -29473,11 +29555,11 @@ msgstr "Workflow-Status" msgid "Workflow State Field" msgstr "Workflow-Status-Feld" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "Workflow-Status nicht festgelegt" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "Eine Veränderung des Workflow-Status von {0} nach {1} ist nicht zulässig" @@ -29485,15 +29567,30 @@ msgstr "Eine Veränderung des Workflow-Status von {0} nach {1} ist nicht zuläss msgid "Workflow States Don't Exist" msgstr "Workflow-Zustände existieren nicht" -#: frappe/model/workflow.py:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "Workflow-Status" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "Workflow-Übergang" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29509,13 +29606,13 @@ msgstr "Workflow erfolgreich aktualisiert" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "Arbeitsbereich" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "Arbeitsbereich {0} existiert nicht" @@ -29585,11 +29682,11 @@ msgstr "Arbeitsbereich {0} erstellt" msgid "Workspaces" msgstr "Arbeitsbereiche" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "Möchten Sie diesen Kommentar veröffentlichen? Das bedeutet, dass er für die Benutzer der Website/des Portals sichtbar wird." -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "Möchten Sie die Veröffentlichung dieses Kommentars aufheben? Dann ist er für die Benutzer der Website/des Portals nicht mehr sichtbar." @@ -29608,11 +29705,11 @@ msgstr "Aufwickeln" msgid "Write" msgstr "Schreiben" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "Falscher Abruf vom Wert" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "X-Achsenfeld" @@ -29631,13 +29728,13 @@ msgstr "XLSX" msgid "Y Axis" msgstr "Y-Achse" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" msgstr "Y-Achsenfelder" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "Y-Feld" @@ -29689,16 +29786,17 @@ msgstr "Gelb" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Ja" @@ -29726,6 +29824,18 @@ msgstr "Sie" msgid "You Liked" msgstr "Ihnen gefällt" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "Sie sind mit dem Internet verbunden." @@ -29764,20 +29874,20 @@ msgstr "Sie sind nicht berechtigt, den Bericht zu bearbeiten." #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "Sie dürfen keinen {} Doctype exportieren" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "Sie sind nicht berechtigt diesen Bericht zu drucken" -#: frappe/public/js/frappe/views/communication.js:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "Sie sind nicht berechtigt E-Mails, die sich auf dieses Dokument beziehen, zu versenden" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "Sie sind nicht berechtigt, dieses Web Form-Dokument zu aktualisieren" @@ -29801,7 +29911,7 @@ msgstr "Sie haben keinen Zugriff auf diese Ressource. Melden Sie sich an, um dar msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "Sie folgen nun diesem Dokument. Sie erhalten tägliche Updates per E-Mail. Sie können dies in den Benutzereinstellungen ändern." -#: frappe/core/doctype/installed_applications/installed_applications.py:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 msgid "You are only allowed to update order, do not remove or add apps." msgstr "Sie können nur die Reihenfolge verändern, keine Anwendungen entfernen oder hinzufügen." @@ -29827,13 +29937,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "Sie können auch den folgenden Link in Ihren Browser kopieren und einfügen" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " -msgstr "Sie können dies auch kopieren und einfügen" +msgid "You can also copy-paste this" +msgstr "" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "Sie können diese {0} auch kopieren und in Ihren Browser einfügen" +#: frappe/templates/emails/user_invitation_expired.html:8 +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 "Sie können gebuchte Dokumente ändern, indem Sie sie stornieren und anschließend berichtigen." @@ -29846,11 +29960,11 @@ msgstr "Sie können die Aufbewahrungsrichtlinie unter {0} ändern." msgid "You can continue with the onboarding after exploring this page" msgstr "Sie können nach Erkundung dieser Seite mit dem Onboarding fortfahren" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "Du kannst diese(n) {0} deaktivieren, anstatt es zu löschen." -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "Sie können das Limit in den Systemeinstellungen erhöhen." @@ -29870,7 +29984,7 @@ msgstr "Sie können nur bis zu {0} Dokumente auf einmal drucken" msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "Sie können nur die 3 benutzerdefinierten DocTypes in der Tabelle Document Types einstellen." -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "Sie können nur JPG, PNG, PDF, TXT, CSV oder Microsoft-Dokumente hochladen." @@ -29888,7 +30002,7 @@ msgstr "Sie können eine der folgenden Optionen auswählen," msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "Sie können hier einen hohen Wert einstellen, wenn sich mehrere Benutzer über dasselbe Netzwerk anmelden." -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "Sie können versuchen, die Filter Ihres Berichts zu ändern." @@ -29900,11 +30014,11 @@ msgstr "Sie können „Formular anpassen“ verwenden, um Berechtigungsebenen f msgid "You can use wildcard %" msgstr "Sie können % als Platzhalter verwenden" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "Sie können 'Optionen' nicht für das Feld {0} setzen" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "Sie können 'Übersetzbar' für Feld {0} nicht festlegen" @@ -29922,7 +30036,7 @@ msgstr "Sie haben dieses Dokument {1} storniert" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "Sie können kein Dashboard-Diagramm aus einzelnen DocTypes erstellen" -#: frappe/custom/doctype/customize_form/customize_form.py:385 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "\"Nur lesen\" kann für das Feld {0} nicht rückgängig gemacht werden" @@ -29952,7 +30066,7 @@ msgstr "Sie haben {0} zu {1} geändert" msgid "You created this" msgstr "Von Ihnen erstellt" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "Sie haben dieses Dokument {0} erstellt" @@ -29965,15 +30079,15 @@ msgstr "Sie haben keine Lese- oder Auswahlberechtigung für {}" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "Sie haben nicht genügend Rechte, um auf diese Ressource zuzugreifen. Bitte kontaktieren Sie Ihren Manager um Zugang zu erhalten." -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "Sie verfügen nicht über genügend Berechtigungen, um die Aktion durchzuführen" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "Sie haben keine Zugriffsberechtigung für {0}: {1}." @@ -29985,11 +30099,11 @@ msgstr "Sie haben keine Berechtigung, alle verknüpften Dokumente zu stornieren. msgid "You don't have access to Report: {0}" msgstr "Sie haben keine Zugriffsrechte für den Bericht: {0}" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "Sie haben keine Berechtigung, auf den DocType {0} zuzugreifen." -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "Keine Berechtigung für den Zugriff auf diese Datei vorhanden" @@ -29997,19 +30111,19 @@ msgstr "Keine Berechtigung für den Zugriff auf diese Datei vorhanden" msgid "You don't have permission to get a report on: {0}" msgstr "Sie haben keine ausreichenden Benutzerrechte um einen Bericht über: {0} zu erhalten" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "Sie verfügen nicht über die Berechtigungen, um auf dieses Dokument zuzugreifen" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " -msgstr "Sie haben eine neue Nachricht von:" +msgid "You have a new message from:" +msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "Sie haben sich erfolgreich abgemeldet" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "Sie haben das Limit für die Zeilengröße in der Datenbanktabelle erreicht: {0}" @@ -30017,11 +30131,7 @@ msgstr "Sie haben das Limit für die Zeilengröße in der Datenbanktabelle errei msgid "You have not entered a value. The field will be set to empty." msgstr "Sie haben keinen Wert eingegeben. Das Feld wird auf leer gesetzt." -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "Sie haben ein ❤️ like für Ihren Blogbeitrag erhalten" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "Sie müssen die Zwei-Faktor-Authentifizierung in den Systemeinstellungen aktivieren." @@ -30041,7 +30151,7 @@ msgstr "Du hast {0} nicht gesehen" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "Sie haben noch keine Dashboard-Diagramme oder Zahlenkarten hinzugefügt." -#: frappe/public/js/frappe/list/list_view.js:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "Sie haben noch kein(en) {0} erstellt" @@ -30058,11 +30168,11 @@ msgstr "Zuletzt von Ihnen bearbeitet" msgid "You must add atleast one link." msgstr "Sie müssen mindestens einen Link hinzufügen." -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "Sie müssen angemeldet sein, um dieses Formular zu nutzen." -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "Anmeldung erforderlich, um dieses Formular zu übermitteln" @@ -30086,7 +30196,7 @@ msgstr "Sie müssen ein Systembenutzer sein, um auf diese Seite zugreifen zu kö msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "Sie müssen sich im Entwicklermodus befinden, um ein Standard-Webformular zu bearbeiten" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "Sie müssen eingeloggt sein und die Systemmanager-Rolle haben um auf Datensicherungen zuzugreifen." @@ -30094,13 +30204,13 @@ msgstr "Sie müssen eingeloggt sein und die Systemmanager-Rolle haben um auf Dat msgid "You need to be logged in to access this page" msgstr "Sie müssen angemeldet sein um auf diese Seite zuzugreifen" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "Sie müssen angemeldet sein, um auf {0} zugreifen zu können." #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " -msgstr "Sie müssen diese zuerst erstellen: " +msgid "You need to create these first:" +msgstr "Sie müssen diese zuerst erstellen:" #: frappe/www/login.html:76 msgid "You need to enable JavaScript for your app to work." @@ -30134,11 +30244,19 @@ msgstr "Sie benötigen Schreibberechtigung für {0} {1} zum Umbenennen" msgid "You need {0} permission to fetch values from {1} {2}" msgstr "Sie benötigen eine {0}-Berechtigung, um die Werte von {1} {2} abzurufen" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "Sie haben den Anhang {0} entfernt" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "Du scheinst gut zu gehen!" @@ -30169,10 +30287,26 @@ msgstr "Sie haben dieses Dokument nicht mehr verfolgt" msgid "You viewed this" msgstr "Von Ihnen angesehen" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "Sie haben sich als ein anderer Benutzer über eine andere Registerkarte angemeldet. Aktualisieren Sie diese Seite, um das System weiter zu nutzen." +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "Youtube" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "Ihre CSV-Datei wird generiert und erscheint im Bereich „Anhänge“, sobald sie fertig ist. Sie werden außerdem benachrichtigt, sobald die Datei zum Download bereitsteht." @@ -30202,7 +30336,7 @@ msgstr "Ihre Schnellzugriffe" msgid "Your account has been deleted" msgstr "Ihr Konto wurde gelöscht" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "Ihre Anmeldung wurde gesperrt und ist wieder verfügbar in {0} Sekunden" @@ -30226,10 +30360,22 @@ msgstr "Ihre Verbindungsanfrage an Google Kalender wurde erfolgreich angenommen" msgid "Your email address" msgstr "deine Emailadresse" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "Ihr Formular wurde erfolgreich aktualisiert" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "Ihre Login-ID ist" @@ -30252,7 +30398,11 @@ msgstr "Name und Anschrift Ihrer Firma für die Fußzeile der E-Mail." msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "Ihre Anfrage ist eingegangen. Wir werden in Kürze antworten. Wenn Sie zusätzliche Informationen haben, antworten Sie bitte auf diese E-Mail." -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "Ihre Sitzung ist abgelaufen, bitte melden Sie sich erneut an, um fortzufahren." @@ -30274,7 +30424,7 @@ msgstr "Null" msgid "Zero means send records updated at anytime" msgstr "Null bedeutet, dass Sendeaufzeichnungen jederzeit aktualisiert werden" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" msgstr "[Aktion ausgeführt von {0}]" @@ -30296,10 +30446,6 @@ msgstr "`as_iterator` funktioniert nur mit `as_list=True` oder `as_dict=True`" msgid "`job_id` paramater is required for deduplication." msgstr "Der Parameter `job_id` ist für die Deduplizierung erforderlich." -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "hat Zeilen für {0} hinzugefügt" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30334,7 +30480,7 @@ msgstr "nach Rolle" msgid "cProfile Output" msgstr "cProfile Ausgabe" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "Kalender" @@ -30479,12 +30625,12 @@ msgstr "emacs" msgid "email" msgstr "E-Mail" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "E-Mail-Eingang" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "leeren" @@ -30541,7 +30687,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "Std" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "Hub" @@ -30556,11 +30702,6 @@ msgstr "Symbol" msgid "import" msgstr "importieren" -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "in Minuten" - #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "beate@beispiel.de" @@ -30569,7 +30710,7 @@ msgstr "beate@beispiel.de" msgid "just now" msgstr "gerade eben" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "bezeichnung" @@ -30598,7 +30739,7 @@ msgstr "Liste" msgid "logged in" msgstr "Angemeldet" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "login_required" @@ -30619,11 +30760,6 @@ msgstr "m" msgid "merged {0} into {1}" msgstr "fusionierte {0} in {1}" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "Minuten Lesezeit" - #. 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 @@ -30647,7 +30783,7 @@ msgstr "Modul" msgid "module name..." msgstr "Modulname ..." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "Neu" @@ -30776,10 +30912,6 @@ msgstr "lesen" msgid "red" msgstr "rot" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "hat Zeilen von {0} entfernt" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "umbenannt von {0} {1}" @@ -30835,19 +30967,19 @@ msgstr "teilen" msgid "short" msgstr "kurz" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "seit letztem Monat" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "seit letzter Woche" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "seit letztem Jahr" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "seit gestern" @@ -30900,6 +31032,10 @@ msgstr "dieses Formular" msgid "this shouldn't break" msgstr "das sollte nicht kaputt gehen" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30927,7 +31063,7 @@ msgstr "version_table" msgid "via Assignment Rule" msgstr "über Zuweisungsregel" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "über automatische Wiederholung" @@ -30941,7 +31077,7 @@ msgstr "über Datenimport" msgid "via Google Meet" msgstr "über Google Meet" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "über Benachrichtigung" @@ -30974,10 +31110,15 @@ msgstr "wenn Sie auf ein Element klicken, wird das Popover aktiviert, falls vorh msgid "wkhtmltopdf" msgstr "wkhtmltopdf" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "wkhtmltopdf 0.12.x (mit gepatchtem qt)." +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json @@ -31005,11 +31146,11 @@ msgstr "JJJJ-MM-TT" msgid "{0}" msgstr "{0}" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "{0} ${skip_list ? \"\" : type}" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "{0} ${type}" @@ -31035,19 +31176,19 @@ msgstr "{0} = {1}" msgid "{0} Calendar" msgstr "{0} Kalender" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "{0} Diagramm" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "{0}-Dashboard" -#: frappe/public/js/frappe/form/grid_row.js:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "{0} Felder" @@ -31071,6 +31212,10 @@ msgstr "{0} Gefällt mir" msgid "{0} List" msgstr "{0} Liste" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "{0} M" @@ -31083,7 +31228,7 @@ msgstr "{0} Karte" msgid "{0} Name" msgstr "{0} ID" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "{0} Es ist nicht erlaubt, {1} nach dem Buchen von {2} auf {3} zu ändern" @@ -31093,11 +31238,10 @@ msgstr "{0} Es ist nicht erlaubt, {1} nach dem Buchen von {2} auf {3} zu ändern msgid "{0} Report" msgstr "{0} Bericht(e)" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "{0} Berichte" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "{0} Einstellungen" @@ -31122,7 +31266,15 @@ msgstr "Arbeitsbereich {0}" msgid "{0} added" msgstr "{0} hinzugefügt" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0} existiert bereits. Wählen Sie einen anderen Namen" @@ -31134,7 +31286,7 @@ msgstr "{0} bereits abgemeldet" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0} bereits abgemeldet für {1} {2}" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "{0} und {1}" @@ -31142,7 +31294,7 @@ msgstr "{0} und {1}" msgid "{0} are currently {1}" msgstr "{0} sind derzeit {1}" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "{0} sind erforderlich" @@ -31159,7 +31311,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0} hat {1} angehängt" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "{0} darf nicht größer als {1} sein" @@ -31201,11 +31353,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "{0} wurde von {1} zu {2} geändert" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "{0} Kommentare" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." msgstr "{0} enthält einen ungültigen Fetch From-Ausdruck. Fetch From kann nicht selbstreferenziell sein." @@ -31218,7 +31366,7 @@ msgstr "{0} erfolgreich erstellt" msgid "{0} created this" msgstr "Von {0} erstellt" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "{0} hat dieses Dokument {1} erstellt" @@ -31240,7 +31388,7 @@ msgstr "{0} existiert nicht in Zeile {1}" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "Feld {0} kann in {1} nicht als einzigartig gesetzt werden, da es nicht-eindeutige Werte gibt" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31272,7 +31420,7 @@ msgstr "{0} wurde von E-Mail-Benachrichtigungen zu {1} {2} abgemeldet" msgid "{0} hours ago" msgstr "vor {0} Stunden" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "{0}, falls Sie nicht innerhalb von {1} Sekunden weitergeleitet werden" @@ -31281,23 +31429,23 @@ msgstr "{0}, falls Sie nicht innerhalb von {1} Sekunden weitergeleitet werden" msgid "{0} in row {1} cannot have both URL and child items" msgstr "{0} in Zeile {1} kann nicht sowohl die URL als auch Unterpunkte haben" -#: frappe/core/doctype/doctype/doctype.py:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "{0} ist ein Pflichtfeld" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "{0} ist keine gültige Zip-Datei" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "{0} ist ein ungültiges Datenfeld." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "{0} ist eine ungültige E-Mail-Adresse in \"Empfänger\"" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "{0} ist zwischen {1} und {2}" @@ -31306,27 +31454,27 @@ msgstr "{0} ist zwischen {1} und {2}" msgid "{0} is currently {1}" msgstr "{0} ist derzeit {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "{0} ist gleich {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "{0} ist größer oder gleich {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "{0} ist größer als {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "{0} ist kleiner oder gleich {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "{0} ist kleiner als {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "{0} ist wie {1}" @@ -31334,7 +31482,7 @@ msgstr "{0} ist wie {1}" msgid "{0} is mandatory" msgstr "{0} ist erforderlich" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31354,12 +31502,12 @@ msgstr "{0} ist kein gültiger Kalender. Weiterleitung zum Standard-Kalender." msgid "{0} is not a valid Cron expression." msgstr "{0} ist kein gültiger Cron-Ausdruck." -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} ist kein gültiger DocType für Dynamic Link" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "{0} ist keine gültige E-Mail-Adresse" @@ -31367,15 +31515,15 @@ msgstr "{0} ist keine gültige E-Mail-Adresse" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "{0} ist kein gültiger ISO 3166 ALPHA-2-Code." -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "{0} ist kein gültiger Name" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "{0} ist keine gültige Telefonnummer" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "{0} ist kein gültiger Workflow-Status. Bitte aktualisieren Sie Ihren Workflow und versuchen Sie es erneut." @@ -31391,55 +31539,59 @@ msgstr "{0} ist kein gültiges übergeordnetes Feld für {1}" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} ist kein gültiges Berichtsformat. Berichtsformat sollte eines der folgenden {1} sein" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "{0} ist keine Zip-Datei" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "{0} ist ungleich {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "{0} ist nicht wie {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "{0} ist keine von {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "{0} ist nicht eingetragen" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "{0} ist jetzt das Standard-Druckformat für den DocType {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" msgstr "{0} ist eine von {1}" #: frappe/email/doctype/email_account/email_account.py:304 -#: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/printing/doctype/print_format/print_format.py:104 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} ist erforderlich" -#: frappe/public/js/frappe/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "{0} ist eingetragen" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "{0} ist innerhalb von {1}" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} Elemente ausgewählt" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} hat sich gerade als Sie ausgegeben und gab dafür diesen Grund an: {1}" @@ -31472,35 +31624,35 @@ msgstr "vor {0} Minuten" msgid "{0} months ago" msgstr "vor {0} Monaten" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "{0} muss nach {1} liegen" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "{0} muss mit '{1}' beginnen" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "{0} muss gleich '{1}' sein" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "{0} darf nichts von {1} sein" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} muss aus {1} sein" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "{0} muss als erstes gesetzt sein" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "{0} muss einmalig sein" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "{0} muss {1} {2} sein" @@ -31508,7 +31660,7 @@ msgstr "{0} muss {1} {2} sein" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "{0} muss mit einem Buchstaben beginnen und enden und darf nur Buchstaben, Bindestriche oder Unterstriche enthalten." -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "{0} kein gültiger Zustand" @@ -31521,11 +31673,11 @@ msgid "{0} not found" msgstr "{0} nicht gefunden" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} von {1}" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} von {1} ({2} Zeilen mit untergeordneten Elementen)" @@ -31534,7 +31686,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "{0}." -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "{0} oder {1}" @@ -31558,6 +31710,10 @@ msgstr "{0} Datensätze gelöscht" msgid "{0} records will be exported" msgstr "{0} Datensätze werden exportiert" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31567,15 +31723,29 @@ msgstr "{0} hat den Anhang {1} entfernt" msgid "{0} removed their assignment." msgstr "{0} hat seine Zuordnung entfernt." -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "{0} Die Rolle hat keine Berechtigung für einen Doctype" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " -msgstr "{0} Zeile #{1}: " +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" +msgstr "{0} Zeile #{1}:" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "{0} wurde erfolgreich gespeichert" @@ -31595,11 +31765,11 @@ msgstr "{0} teilten dieses Dokument mit allen" msgid "{0} shared this document with {1}" msgstr "{0} teilte dieses Dokument mit {1}" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "{0} sollte indiziert werden, da es in Dashboard-Verknüpfungen verwendet wird" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "{0} sollte nicht mit {1} identisch sein" @@ -31612,8 +31782,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "{0} hat das Dokument {1} eingereicht" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "{0} Empfänger hinzugefügt" @@ -31623,7 +31793,7 @@ msgstr "{0}, E-Mails dieses Typs nicht mehr annehmen." #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "{0} bis {1}" @@ -31631,7 +31801,7 @@ msgstr "{0} bis {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} teilt dieses Dokument nicht mehr mit {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} aktualisiert" @@ -31667,15 +31837,15 @@ msgstr "{0} {1} hinzugefügt" msgid "{0} {1} added to Dashboard {2}" msgstr "{0} {1} zum Dashboard hinzugefügt {2}" -#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "{0} {1} existiert bereits" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "{0} {1} kann nicht \"{2}\" sein . Es sollte aus \"{3}\" sein." -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "{0} {1} kann kein Knotenpunkt sein, da Unterpunkte vorhanden sind" @@ -31691,11 +31861,11 @@ msgstr "{0} {1} ist mit den folgenden eingereichten Dokumenten verknüpft: {2}" msgid "{0} {1} not found" msgstr "{0} {1} nicht gefunden" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: Übermittelter Datensatz kann nicht gelöscht werden. Sie müssen {2} zuerst {3} abbrechen." -#: frappe/model/base_document.py:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "{0}, Zeile {1}" @@ -31703,79 +31873,79 @@ msgstr "{0}, Zeile {1}" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "{0}/{1} abgeschlossen | Bitte lassen Sie diese Registerkarte bis zum Abschluss geöffnet." -#: frappe/model/base_document.py:1120 +#: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "{0}: '{1}' ({3}) wird abgeschnitten werden, da maximal {2} Zeichen erlaubt sind" -#: frappe/core/doctype/doctype/doctype.py:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "{0}: \"Geändert\" kann nicht eingestellt werden ohne \"Abbruch\"" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "{0}: Kann nicht als \"als geändert markieren\" eingestellt werden, wenn nicht übertragbar" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "{0}: Kann nicht als \"als übertragen markieren\" eingestellt werden, wenn nicht übertragbar" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "{0}: \"Abbruch\" kann nicht ohne \"Übertragen\" eingestellt werden" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "{0}: Kann nicht auf \"Import\" eingestellt werden ohne \"Erstellen\"" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "{0}: Kann nicht auf \"Übertragen\", \"Stornieren\", \"Ändern\" eingestellt werden ohne \"Schreiben\"" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 msgid "{0}: Cannot set import as {1} is not importable" msgstr "{0}: Kann nicht auf \"Import\" eingestellt werden, da {1} nicht importierbar ist" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436 msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings" msgstr "{0}: Neues wiederkehrendes Dokument konnte nicht angehängt werden. Aktivieren Sie {1} in den Druckeinstellungen, um das Anhängen eines Dokuments in der E-Mail für die automatische Wiederholungsbenachrichtigung zu aktivieren" -#: frappe/core/doctype/doctype/doctype.py:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "{0}: Feld '{1}' kann nicht als eindeutig festgelegt werden, da es nicht eindeutige Werte enthält" -#: frappe/core/doctype/doctype/doctype.py:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "{0}: Das Feld {1} in Zeile {2} kann ohne Vorgabe nicht ausgeblendet und obligatorisch sein" -#: frappe/core/doctype/doctype/doctype.py:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "{0}: Feld {1} vom Typ {2} kann nicht obligatorisch sein" -#: frappe/core/doctype/doctype/doctype.py:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "{0}: Der Feldname {1} wird mehrmals in Zeilen {2} angezeigt." -#: frappe/core/doctype/doctype/doctype.py:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "{0}: Der Feldtyp {1} für {2} kann nicht eindeutig sein" -#: frappe/core/doctype/doctype/doctype.py:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "{0}: Keine Grundberechtigungen festgelegt" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "{0}: Nur eine Regel mit der gleichen Rolle, Ebene und {1} erlaubt" -#: frappe/core/doctype/doctype/doctype.py:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" msgstr "{0}: Optionen müssen ein gültiger DocType für Feld {1} in Zeile {2} sein" -#: frappe/core/doctype/doctype/doctype.py:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "{0}: Erforderliche Optionen für das Feld für den Link- oder Tabellentyp {1} in Zeile {2}" -#: frappe/core/doctype/doctype/doctype.py:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "{0}: Die Optionen {1} müssen mit dem Doctype-Namen {2} für das Feld {3} identisch sein." @@ -31783,7 +31953,7 @@ msgstr "{0}: Die Optionen {1} müssen mit dem Doctype-Namen {2} für das Feld {3 msgid "{0}: Other permission rules may also apply" msgstr "{0}: Andere Genehmigungsregeln können ebenfalls gelten" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "{0} : Die Erlaubnis für Ebene 0 muss gesetzt werden bevor höhere Ebenen eingestellt werden können" @@ -31791,7 +31961,7 @@ msgstr "{0} : Die Erlaubnis für Ebene 0 muss gesetzt werden bevor höhere Ebene msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "{0}: Sie können das Limit für das Feld bei Bedarf über {1} erhöhen" -#: frappe/core/doctype/doctype/doctype.py:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "{0}: Feldname kann nicht auf reserviertes Schlüsselwort {1} gesetzt werden" @@ -31804,11 +31974,11 @@ msgstr "{0}: {1}" msgid "{0}: {1} is set to state {2}" msgstr "{0}: {1} ist auf Status {2} festgelegt" -#: frappe/public/js/frappe/views/reports/query_report.js:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} vs {2}" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "{0}: Der Feldtyp {1} für {2} kann nicht indiziert werden" @@ -31832,7 +32002,7 @@ msgstr "{count} Zeile ausgewählt" msgid "{count} rows selected" msgstr "{count} Zeilen ausgewählt" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "{{{0}}} ist kein gültiges Format für Feldnamen. Es sollte sein {{field_name}}." @@ -31840,11 +32010,11 @@ msgstr "{{{0}}} ist kein gültiges Format für Feldnamen. Es sollte sein {{field msgid "{} Complete" msgstr "{} Komplett" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "{} Ungültiger Python-Code in Zeile {}" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "{} Possibly invalid python code.
{}" @@ -31870,7 +32040,7 @@ msgstr "{} wurde deaktiviert. Es kann nur aktiviert werden, wenn {} aktiviert is msgid "{} is not a valid date string." msgstr "{} ist keine gültige Datumszeichenfolge." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "{} in PATH nicht gefunden! Dies ist erforderlich, um auf die Konsole zuzugreifen." diff --git a/frappe/locale/eo.po b/frappe/locale/eo.po index 9a9890b8aa..f8c71827b6 100644 --- a/frappe/locale/eo.po +++ b/frappe/locale/eo.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-21 21:50\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Esperanto\n" "MIME-Version: 1.0\n" @@ -18,10 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: eo_UY\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr "crwdns90464:0crwdne90464:0" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json @@ -61,7 +57,7 @@ msgstr "crwdns90518:0#{0}crwdne90518:0" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "crwdns127566:0${values.doctype_name}crwdne127566:0" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" msgstr "crwdns110774:0crwdne110774:0" @@ -74,7 +70,7 @@ msgstr "crwdns127910:0crwdne127910:0" msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "crwdns90522:0{0}crwdnd90522:0{1}crwdne90522:0" -#: frappe/core/doctype/doctype/doctype.py:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "crwdns90524:0{0}crwdnd90524:0{1}crwdne90524:0" @@ -82,19 +78,23 @@ msgstr "crwdns90524:0{0}crwdnd90524:0{1}crwdne90524:0" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "crwdns90526:0{0}crwdnd90526:0{1}crwdne90526:0" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "crwdns90528:0{0}crwdnd90528:0{1}crwdne90528:0" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" msgstr "crwdns90530:0crwdne90530:0" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "crwdns158966:0{0}crwdne158966:0" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" msgstr "crwdns90532:0{0}crwdne90532:0" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "crwdns90534:0{0}crwdnd90534:0{1}crwdnd90534:0{2}crwdne90534:0" @@ -102,11 +102,11 @@ msgstr "crwdns90534:0{0}crwdnd90534:0{1}crwdnd90534:0{2}crwdne90534:0" msgid "(Mandatory)" msgstr "crwdns110776:0crwdne110776:0" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "crwdns90536:0{0}crwdnd90536:0{1}crwdnd90536:0{2}crwdne90536:0" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" msgstr "crwdns110778:0crwdne110778:0" @@ -122,7 +122,7 @@ msgstr "crwdns127912:0crwdne127912:0" msgid "0 is highest" msgstr "crwdns127914:0crwdne127914:0" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "crwdns90542:0crwdne90542:0" @@ -140,15 +140,11 @@ msgstr "crwdns90546:0crwdne90546:0" msgid "1 Google Calendar Event synced." msgstr "crwdns90548:0crwdne90548:0" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "crwdns110780:0crwdne110780:0" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "crwdns90550:0crwdne90550:0" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "crwdns90552:0crwdne90552:0" @@ -157,17 +153,17 @@ msgid "1 hour" msgstr "crwdns90554:0crwdne90554:0" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "crwdns90556:0crwdne90556:0" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "crwdns90558:0crwdne90558:0" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "crwdns90560:0crwdne90560:0" @@ -179,37 +175,47 @@ msgstr "crwdns142972:0crwdne142972:0" msgid "1 record will be exported" msgstr "crwdns90562:0crwdne90562:0" -#: frappe/tests/test_utils.py:711 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "crwdns158968:0{0}crwdne158968:0" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "crwdns158970:0{0}crwdne158970:0" + +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "crwdns90564:0crwdne90564:0" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "crwdns90566:0crwdne90566:0" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "crwdns90568:0crwdne90568:0" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "crwdns90570:0crwdne90570:0" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "crwdns90572:0crwdne90572:0" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "crwdns90574:0crwdne90574:0" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "crwdns90576:0crwdne90576:0" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "crwdns90578:0crwdne90578:0" @@ -225,7 +231,7 @@ msgstr "crwdns90582:0crwdne90582:0" msgid "5 Records" msgstr "crwdns90584:0crwdne90584:0" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "crwdns90586:0crwdne90586:0" @@ -245,6 +251,13 @@ msgstr "crwdns127918:0crwdne127918:0" msgid "<=" msgstr "crwdns127920:0crwdne127920:0" +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "crwdns157434:0crwdne157434:0" + #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "crwdns90594:0{0}crwdne90594:0" @@ -254,6 +267,16 @@ msgstr "crwdns90594:0{0}crwdne90594:0" msgid "
Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
" msgstr "crwdns127922:0crwdne127922:0" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "crwdns160156:0crwdne160156:0" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "crwdns160158:0crwdne160158:0" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -481,7 +504,7 @@ msgid "

To interact with above HTML you will have to use `root_element` as a p "

" msgstr "crwdns127946:0crwdne127946:0" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

" msgstr "crwdns90622:0{0}crwdne90622:0" @@ -548,7 +571,7 @@ msgstr "crwdns127954:0crwdne127954:0" msgid ">=" msgstr "crwdns127956:0crwdne127956:0" -#: frappe/core/doctype/doctype/doctype.py:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "crwdns90640:0crwdne90640:0" @@ -557,15 +580,16 @@ msgstr "crwdns90640:0crwdne90640:0" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "crwdns155934:0crwdne155934:0" -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" -msgstr "crwdns90642:0crwdne90642:0" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "crwdns160160:0crwdne160160:0" #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "crwdns90644:0{0}crwdnd90644:0{1}crwdne90644:0" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "crwdns90646:0crwdne90646:0" @@ -578,7 +602,7 @@ msgstr "crwdns127958:0crwdne127958:0" msgid "A new account has been created for you at {0}" msgstr "crwdns90650:0{0}crwdne90650:0" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "crwdns90652:0{0}crwdnd90652:0{1}crwdnd90652:0{2}crwdne90652:0" @@ -677,13 +701,17 @@ msgstr "crwdns127988:0crwdne127988:0" msgid "API Endpoint Args" msgstr "crwdns127990:0crwdne127990:0" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "crwdns158368:0crwdne158368:0" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -702,6 +730,10 @@ msgstr "crwdns127994:0crwdne127994:0" msgid "API Key cannot be regenerated" msgstr "crwdns127996:0crwdne127996:0" +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "crwdns157436:0crwdne157436:0" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -722,7 +754,7 @@ msgstr "crwdns155318:0crwdne155318:0" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -769,6 +801,20 @@ msgstr "crwdns90718:0{0}crwdne90718:0" msgid "About {0} seconds remaining" msgstr "crwdns90720:0{0}crwdne90720:0" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "crwdns157288:0crwdne157288:0" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "crwdns157290:0crwdne157290:0" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "crwdns157292:0crwdne157292:0" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -794,7 +840,7 @@ msgstr "crwdns128008:0crwdne128008:0" msgid "Access Token URL" msgstr "crwdns128010:0crwdne128010:0" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "crwdns90738:0crwdne90738:0" @@ -858,7 +904,7 @@ msgstr "crwdns128016:0crwdne128016:0" msgid "Action Complete" msgstr "crwdns90762:0crwdne90762:0" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "crwdns90764:0crwdne90764:0" @@ -910,7 +956,7 @@ msgstr "crwdns90774:0{0}crwdnd90774:0{1}crwdnd90774:0{2}crwdnd90774:0{3}crwdne90 #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "crwdns90776:0crwdne90776:0" @@ -967,7 +1013,7 @@ msgstr "crwdns90802:0crwdne90802:0" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -978,7 +1024,7 @@ msgstr "crwdns90802:0crwdne90802:0" msgid "Add" msgstr "crwdns90808:0crwdne90808:0" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "crwdns110786:0crwdne110786:0" @@ -990,7 +1036,7 @@ msgstr "crwdns90810:0crwdne90810:0" msgid "Add A New Rule" msgstr "crwdns90812:0crwdne90812:0" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "crwdns90814:0crwdne90814:0" @@ -1010,7 +1056,7 @@ msgstr "crwdns128032:0crwdne128032:0" msgid "Add Border at Top" msgstr "crwdns128034:0crwdne128034:0" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "crwdns142868:0crwdne142868:0" @@ -1023,10 +1069,10 @@ msgid "Add Child" msgstr "crwdns90826:0crwdne90826:0" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "crwdns90828:0crwdne90828:0" @@ -1085,7 +1131,7 @@ msgstr "crwdns90846:0crwdne90846:0" msgid "Add Query Parameters" msgstr "crwdns128042:0crwdne128042:0" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "crwdns90852:0crwdne90852:0" @@ -1118,12 +1164,12 @@ msgstr "crwdns90862:0crwdne90862:0" msgid "Add Tags" msgstr "crwdns90864:0crwdne90864:0" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "crwdns90866:0crwdne90866:0" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "crwdns90868:0crwdne90868:0" @@ -1212,7 +1258,7 @@ msgstr "crwdns142978:0crwdne142978:0" msgid "Add page break" msgstr "crwdns142980:0crwdne142980:0" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "crwdns90892:0crwdne90892:0" @@ -1250,7 +1296,7 @@ msgstr "crwdns90900:0{0}crwdne90900:0" msgid "Add {0}" msgstr "crwdns110798:0{0}crwdne110798:0" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" msgstr "crwdns142870:0{0}crwdne142870:0" @@ -1293,6 +1339,7 @@ msgstr "crwdns128056:0crwdne128056:0" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1301,6 +1348,7 @@ msgstr "crwdns90916:0crwdne90916:0" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "crwdns128058:0crwdne128058:0" @@ -1308,6 +1356,7 @@ msgstr "crwdns128058:0crwdne128058:0" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "crwdns128060:0crwdne128060:0" @@ -1358,7 +1407,7 @@ msgstr "crwdns111484:0crwdne111484:0" msgid "Adds a custom field to a DocType" msgstr "crwdns111486:0crwdne111486:0" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "crwdns90948:0crwdne90948:0" @@ -1372,7 +1421,6 @@ msgstr "crwdns90948:0crwdne90948:0" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1385,11 +1433,11 @@ msgstr "crwdns90948:0crwdne90948:0" msgid "Administrator" msgstr "crwdns90950:0crwdne90950:0" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "crwdns90952:0crwdne90952:0" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "crwdns90954:0{0}crwdnd90954:0{1}crwdnd90954:0{2}crwdne90954:0" @@ -1410,8 +1458,8 @@ msgstr "crwdns128068:0crwdne128068:0" msgid "Advanced Control" msgstr "crwdns128070:0crwdne128070:0" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" msgstr "crwdns90962:0crwdne90962:0" @@ -1470,7 +1518,7 @@ msgstr "crwdns128088:0crwdne128088:0" msgid "After Submit" msgstr "crwdns128090:0crwdne128090:0" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "crwdns90980:0crwdne90980:0" @@ -1497,11 +1545,11 @@ msgstr "crwdns128094:0crwdne128094:0" msgid "Alerts and Notifications" msgstr "crwdns90990:0crwdne90990:0" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "crwdns155510:0{0}crwdne155510:0" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "crwdns155512:0crwdne155512:0" @@ -1566,7 +1614,7 @@ msgstr "crwdns91012:0crwdne91012:0" msgid "All Records" msgstr "crwdns91014:0crwdne91014:0" -#: frappe/public/js/frappe/form/form.js:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "crwdns110800:0crwdne110800:0" @@ -1626,8 +1674,8 @@ msgstr "crwdns151412:0crwdne151412:0" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " -msgstr "crwdns128114:0crwdne128114:0" +msgid "Allow Consecutive Login Attempts" +msgstr "crwdns158702:0crwdne158702:0" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 msgid "Allow Google Calendar Access" @@ -1647,11 +1695,6 @@ msgstr "crwdns128122:0crwdne128122:0" msgid "Allow Guest to View" msgstr "crwdns128124:0crwdne128124:0" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "crwdns128126:0crwdne128126:0" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1700,7 +1743,7 @@ msgid "Allow Print for Cancelled" msgstr "crwdns128148:0crwdne128148:0" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "crwdns91090:0crwdne91090:0" @@ -1932,7 +1975,7 @@ msgstr "crwdns155948:0crwdne155948:0" msgid "Allows skipping authorization if a user has active tokens." msgstr "crwdns155950:0crwdne155950:0" -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "crwdns91152:0crwdne91152:0" @@ -1940,11 +1983,11 @@ msgstr "crwdns91152:0crwdne91152:0" msgid "Already in the following Users ToDo list:{0}" msgstr "crwdns91154:0{0}crwdne91154:0" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "crwdns91156:0{0}crwdne91156:0" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "crwdns91158:0{0}crwdne91158:0" @@ -1953,6 +1996,12 @@ msgstr "crwdns91158:0{0}crwdne91158:0" msgid "Alternative Email ID" msgstr "crwdns128192:0crwdne128192:0" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "crwdns159970:0crwdne159970:0" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2004,10 +2053,8 @@ msgstr "crwdns91178:0crwdne91178:0" msgid "Amended Documents" msgstr "crwdns128204:0crwdne128204:0" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "crwdns128206:0crwdne128206:0" @@ -2031,6 +2078,11 @@ msgstr "crwdns151842:0crwdne151842:0" msgid "Amendment naming rules updated." msgstr "crwdns91190:0crwdne91190:0" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "crwdns160162:0crwdne160162:0" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "crwdns91192:0crwdne91192:0" @@ -2124,10 +2176,12 @@ msgid "App Logo" msgstr "crwdns110804:0crwdne110804:0" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2198,6 +2252,10 @@ msgstr "crwdns128248:0crwdne128248:0" msgid "Application Version" msgstr "crwdns128250:0crwdne128250:0" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "crwdns158704:0crwdne158704:0" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2207,7 +2265,7 @@ msgstr "crwdns128252:0crwdne128252:0" msgid "Apply" msgstr "crwdns142988:0crwdne142988:0" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "crwdns91270:0crwdne91270:0" @@ -2255,7 +2313,7 @@ msgstr "crwdns128266:0crwdne128266:0" msgid "Apply to all Documents Types" msgstr "crwdns91292:0crwdne91292:0" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "crwdns91294:0{0}crwdne91294:0" @@ -2288,7 +2346,11 @@ msgstr "crwdns128272:0crwdne128272:0" msgid "Archived Columns" msgstr "crwdns91306:0crwdne91306:0" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "crwdns157294:0crwdne157294:0" + +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "crwdns104470:0crwdne104470:0" @@ -2316,11 +2378,15 @@ msgctxt "Confirmation dialog message" msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." msgstr "crwdns142994:0crwdne142994:0" -#: frappe/public/js/frappe/web_form/web_form.js:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "crwdns158706:0crwdne158706:0" + +#: frappe/public/js/frappe/web_form/web_form.js:191 msgid "Are you sure you want to discard the changes?" msgstr "crwdns91314:0crwdne91314:0" -#: frappe/public/js/frappe/views/reports/query_report.js:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "crwdns110808:0crwdne110808:0" @@ -2328,7 +2394,7 @@ msgstr "crwdns110808:0crwdne110808:0" msgid "Are you sure you want to merge {0} with {1}?" msgstr "crwdns91316:0{0}crwdnd91316:0{1}crwdne91316:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "crwdns91318:0crwdne91318:0" @@ -2383,6 +2449,12 @@ msgstr "crwdns91338:0crwdne91338:0" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "crwdns91340:0{0}crwdnd91340:0{1}crwdne91340:0" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "crwdns159972:0crwdne159972:0" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2392,7 +2464,7 @@ msgstr "crwdns128278:0crwdne128278:0" msgid "Assign To" msgstr "crwdns91344:0crwdne91344:0" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "crwdns91346:0crwdne91346:0" @@ -2455,6 +2527,11 @@ msgstr "crwdns91372:0crwdne91372:0" msgid "Assigned To/Owner" msgstr "crwdns91374:0crwdne91374:0" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "crwdns157296:0crwdne157296:0" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "crwdns91376:0crwdne91376:0" @@ -2524,7 +2601,13 @@ msgstr "crwdns91408:0{0}crwdnd91408:0{1}crwdne91408:0" msgid "Assignments" msgstr "crwdns91410:0crwdne91410:0" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "crwdns157298:0crwdne157298:0" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "crwdns91414:0crwdne91414:0" @@ -2604,7 +2687,7 @@ msgstr "crwdns128304:0crwdne128304:0" msgid "Attached To Name" msgstr "crwdns128306:0crwdne128306:0" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "crwdns91456:0crwdne91456:0" @@ -2620,7 +2703,7 @@ msgstr "crwdns128308:0crwdne128308:0" msgid "Attachment Limit (MB)" msgstr "crwdns128310:0crwdne128310:0" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "crwdns91468:0crwdne91468:0" @@ -2638,15 +2721,15 @@ msgstr "crwdns128314:0crwdne128314:0" #. Label of the attachments (Code) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "crwdns91476:0crwdne91476:0" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "crwdns91482:0crwdne91482:0" -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "crwdns91484:0crwdne91484:0" @@ -2669,6 +2752,10 @@ msgstr "crwdns91490:0crwdne91490:0" msgid "Auth URL Data" msgstr "crwdns128318:0crwdne128318:0" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "crwdns158370:0crwdne158370:0" + #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authenticate as Service Principal" @@ -2686,8 +2773,8 @@ msgid "Authentication" msgstr "crwdns91494:0crwdne91494:0" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " -msgstr "crwdns91498:0crwdne91498:0" +msgid "Authentication Apps you can use are:" +msgstr "crwdns158708:0crwdne158708:0" #: frappe/email/doctype/email_account/email_account.py:339 msgid "Authentication failed while receiving emails from Email Account: {0}." @@ -2800,11 +2887,11 @@ msgstr "crwdns91544:0crwdne91544:0" msgid "Auto Repeat Day" msgstr "crwdns91550:0crwdne91550:0" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "crwdns91552:0{0}crwdnd91552:0{1}crwdne91552:0" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "crwdns91554:0crwdne91554:0" @@ -2812,11 +2899,16 @@ msgstr "crwdns91554:0crwdne91554:0" msgid "Auto Repeat Schedule" msgstr "crwdns91556:0crwdne91556:0" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "crwdns157300:0crwdne157300:0" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "crwdns91558:0crwdne91558:0" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "crwdns91560:0{0}crwdne91560:0" @@ -2860,7 +2952,7 @@ msgstr "crwdns128354:0crwdne128354:0" msgid "Auto follow documents that you create" msgstr "crwdns128356:0crwdne128356:0" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "crwdns152533:0crwdne152533:0" @@ -2908,7 +3000,7 @@ msgstr "crwdns91594:0crwdne91594:0" msgid "Automatically Assign Documents to Users" msgstr "crwdns111488:0crwdne111488:0" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "crwdns154292:0crwdne154292:0" @@ -2922,11 +3014,6 @@ msgstr "crwdns128364:0crwdne128364:0" msgid "Automation" msgstr "crwdns91598:0crwdne91598:0" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "crwdns128366:0crwdne128366:0" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3198,8 +3285,8 @@ msgstr "crwdns128438:0crwdne128438:0" #. Label of the based_on (Link) field in DocType 'Language' #: frappe/core/doctype/language/language.json -#: frappe/printing/page/print/print.js:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "crwdns91724:0crwdne91724:0" @@ -3316,10 +3403,8 @@ msgstr "crwdns128474:0crwdne128474:0" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "crwdns128476:0crwdne128476:0" @@ -3349,64 +3434,6 @@ msgstr "crwdns128480:0crwdne128480:0" msgid "Blocked" msgstr "crwdns128482:0crwdne128482:0" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "crwdns91780:0crwdne91780:0" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "crwdns91782:0crwdne91782:0" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "crwdns128484:0crwdne128484:0" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "crwdns128486:0crwdne128486:0" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "crwdns91792:0crwdne91792:0" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "crwdns91800:0crwdne91800:0" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "crwdns128488:0crwdne128488:0" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "crwdns91804:0crwdne91804:0" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3503,13 +3530,6 @@ msgstr "crwdns128514:0crwdne128514:0" msgid "Breadcrumbs" msgstr "crwdns128516:0crwdne128516:0" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "crwdns91856:0crwdne91856:0" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3567,15 +3587,15 @@ msgstr "crwdns91880:0crwdne91880:0" msgid "Bulk Edit" msgstr "crwdns91882:0crwdne91882:0" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "crwdns91884:0{0}crwdne91884:0" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" msgstr "crwdns127594:0crwdne127594:0" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "crwdns127596:0crwdne127596:0" @@ -3590,7 +3610,7 @@ msgstr "crwdns111450:0crwdne111450:0" msgid "Bulk Update" msgstr "crwdns91886:0crwdne91886:0" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "crwdns91890:0crwdne91890:0" @@ -3602,7 +3622,7 @@ msgstr "crwdns91892:0crwdne91892:0" msgid "Bulk operations only support up to 500 documents." msgstr "crwdns91894:0crwdne91894:0" -#: frappe/model/workflow.py:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "crwdns91896:0{0}crwdne91896:0" @@ -3732,16 +3752,6 @@ msgstr "crwdns128558:0crwdne128558:0" msgid "CSV" msgstr "crwdns128560:0crwdne128560:0" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "crwdns128562:0crwdne128562:0" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "crwdns128564:0crwdne128564:0" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3792,11 +3802,6 @@ msgstr "crwdns128572:0crwdne128572:0" msgid "Call To Action URL" msgstr "crwdns128574:0crwdne128574:0" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "crwdns128576:0crwdne128576:0" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -3814,7 +3819,7 @@ msgid "Camera" msgstr "crwdns91992:0crwdne91992:0" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3850,7 +3855,7 @@ msgstr "crwdns110828:0crwdne110828:0" msgid "Can not rename as column {0} is already present on DocType." msgstr "crwdns92002:0{0}crwdne92002:0" -#: frappe/core/doctype/doctype/doctype.py:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "crwdns92004:0crwdne92004:0" @@ -3874,14 +3879,15 @@ msgstr "crwdns92008:0{0}crwdnd92008:0{1}crwdnd92008:0{0}crwdne92008:0" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "crwdns92010:0crwdne92010:0" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "crwdns92012:0crwdne92012:0" @@ -3899,16 +3905,18 @@ msgstr "crwdns92026:0crwdne92026:0" msgid "Cancel All Documents" msgstr "crwdns92028:0crwdne92028:0" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "crwdns92032:0{0}crwdne92032:0" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -3946,11 +3954,11 @@ msgstr "crwdns92056:0crwdne92056:0" msgid "Cannot Remove" msgstr "crwdns92058:0crwdne92058:0" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "crwdns92060:0crwdne92060:0" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "crwdns92062:0{0}crwdne92062:0" @@ -3958,7 +3966,7 @@ msgstr "crwdns92062:0{0}crwdne92062:0" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "crwdns92064:0{0}crwdnd92064:0{1}crwdne92064:0" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "crwdns92066:0{0}crwdne92066:0" @@ -3966,11 +3974,11 @@ msgstr "crwdns92066:0{0}crwdne92066:0" msgid "Cannot cancel {0}." msgstr "crwdns92068:0{0}crwdne92068:0" -#: frappe/model/document.py:1013 +#: frappe/model/document.py:1017 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "crwdns92070:0crwdne92070:0" -#: frappe/model/document.py:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "crwdns92072:0crwdne92072:0" @@ -3978,11 +3986,11 @@ msgstr "crwdns92072:0crwdne92072:0" msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "crwdns92074:0{0}crwdne92074:0" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "crwdns92076:0{0}crwdne92076:0" -#: frappe/core/doctype/doctype/doctype.py:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "crwdns92078:0crwdne92078:0" @@ -3994,11 +4002,11 @@ msgstr "crwdns92080:0{0}crwdnd92080:0{1}crwdne92080:0" msgid "Cannot create private workspace of other users" msgstr "crwdns92082:0crwdne92082:0" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "crwdns92084:0crwdne92084:0" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "crwdns92086:0{0}crwdnd92086:0{1}crwdnd92086:0{2}crwdnd92086:0{3}crwdnd92086:0{4}crwdne92086:0" @@ -4033,7 +4041,7 @@ msgstr "crwdns92100:0{0}crwdne92100:0" msgid "Cannot delete {0}" msgstr "crwdns92102:0{0}crwdne92102:0" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" msgstr "crwdns92104:0{0}crwdne92104:0" @@ -4041,7 +4049,7 @@ msgstr "crwdns92104:0{0}crwdne92104:0" msgid "Cannot edit Standard Dashboards" msgstr "crwdns92106:0crwdne92106:0" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "crwdns92108:0crwdne92108:0" @@ -4053,7 +4061,7 @@ msgstr "crwdns92110:0crwdne92110:0" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "crwdns92112:0crwdne92112:0" -#: frappe/model/document.py:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "crwdns92114:0crwdne92114:0" @@ -4061,8 +4069,8 @@ msgstr "crwdns92114:0crwdne92114:0" msgid "Cannot edit filters for standard charts" msgstr "crwdns92116:0crwdne92116:0" -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "crwdns127894:0crwdne127894:0" @@ -4070,27 +4078,27 @@ msgstr "crwdns127894:0crwdne127894:0" msgid "Cannot edit standard fields" msgstr "crwdns92118:0crwdne92118:0" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "crwdns92120:0{0}crwdne92120:0" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "crwdns92122:0crwdne92122:0" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "crwdns92124:0crwdne92124:0" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:884 msgid "Cannot have multiple printers mapped to a single print format." msgstr "crwdns92126:0crwdne92126:0" -#: frappe/public/js/frappe/form/grid.js:1132 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "crwdns154588:0crwdne154588:0" -#: frappe/model/document.py:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "crwdns92128:0{0}crwdne92128:0" @@ -4102,11 +4110,11 @@ msgstr "crwdns92130:0crwdne92130:0" msgid "Cannot match column {0} with any field" msgstr "crwdns92132:0{0}crwdne92132:0" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "crwdns92134:0crwdne92134:0" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "crwdns92136:0crwdne92136:0" @@ -4114,7 +4122,7 @@ msgstr "crwdns92136:0crwdne92136:0" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "crwdns110830:0crwdne110830:0" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "crwdns142876:0{0}crwdnd142876:0{1}crwdne142876:0" @@ -4131,11 +4139,11 @@ msgstr "crwdns92142:0{0}crwdne92142:0" msgid "Cannot update {0}" msgstr "crwdns92146:0{0}crwdne92146:0" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" -msgstr "crwdns92148:0crwdne92148:0" +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." +msgstr "crwdns157190:0crwdne157190:0" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "crwdns92150:0{0}crwdne92150:0" @@ -4203,15 +4211,6 @@ msgstr "crwdns128596:0crwdne128596:0" msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." msgstr "crwdns110832:0crwdne110832:0" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "crwdns92184:0crwdne92184:0" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "crwdns128598:0crwdne128598:0" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4249,8 +4248,8 @@ msgstr "crwdns92196:0crwdne92196:0" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
\n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " -msgstr "crwdns128604:0crwdne128604:0" +"Warning: Incorrectly updating counters can prevent documents from getting created." +msgstr "crwdns158710:0crwdne158710:0" #. Label of the changed_at (Datetime) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -4319,7 +4318,7 @@ msgstr "crwdns128616:0crwdne128616:0" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "crwdns92222:0crwdne92222:0" @@ -4352,7 +4351,7 @@ msgstr "crwdns128620:0crwdne128620:0" msgid "Check" msgstr "crwdns128622:0crwdne128622:0" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "crwdns92246:0crwdne92246:0" @@ -4360,7 +4359,7 @@ msgstr "crwdns92246:0crwdne92246:0" msgid "Check columns to select, drag to set order." msgstr "crwdns110834:0crwdne110834:0" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "crwdns92250:0{0}crwdne92250:0" @@ -4401,11 +4400,6 @@ msgstr "crwdns92264:0crwdne92264:0" msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "crwdns92266:0crwdne92266:0" -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "crwdns128628:0crwdne128628:0" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "crwdns92270:0crwdne92270:0" @@ -4415,17 +4409,17 @@ msgstr "crwdns92270:0crwdne92270:0" msgid "Child Doctype" msgstr "crwdns128630:0crwdne128630:0" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "crwdns92274:0{0}crwdnd92274:0{1}crwdne92274:0" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "crwdns92276:0crwdne92276:0" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "crwdns155514:0{0}crwdne155514:0" @@ -4454,6 +4448,7 @@ msgid "Choose authentication method to be used by all users" msgstr "crwdns128632:0crwdne128632:0" #. Label of the city (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "City" msgstr "crwdns128634:0crwdne128634:0" @@ -4468,7 +4463,7 @@ msgstr "crwdns128636:0crwdne128636:0" msgid "Clear" msgstr "crwdns92294:0crwdne92294:0" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "crwdns92296:0crwdne92296:0" @@ -4480,7 +4475,7 @@ msgstr "crwdns92298:0crwdne92298:0" msgid "Clear All" msgstr "crwdns155956:0crwdne155956:0" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "crwdns104478:0crwdne104478:0" @@ -4506,7 +4501,7 @@ msgstr "crwdns128638:0crwdne128638:0" msgid "Clear User Permissions" msgstr "crwdns92306:0crwdne92306:0" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "crwdns92308:0crwdne92308:0" @@ -4518,11 +4513,15 @@ msgstr "crwdns92310:0crwdne92310:0" msgid "Click On Customize to add your first widget" msgstr "crwdns110838:0crwdne110838:0" -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "crwdns157302:0crwdne157302:0" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "crwdns92312:0crwdne92312:0" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "crwdns143008:0crwdne143008:0" @@ -4553,24 +4552,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "crwdns92328:0{0}crwdne92328:0" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "crwdns92330:0crwdne92330:0" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "crwdns110842:0crwdne110842:0" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "crwdns110844:0crwdne110844:0" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "crwdns110846:0{0}crwdne110846:0" @@ -4748,7 +4747,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "crwdns92402:0crwdne92402:0" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "crwdns92404:0crwdne92404:0" @@ -4803,7 +4802,7 @@ msgstr "crwdns128674:0crwdne128674:0" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4859,11 +4858,11 @@ msgstr "crwdns92464:0crwdne92464:0" msgid "Column Name cannot be empty" msgstr "crwdns92468:0crwdne92468:0" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "crwdns110850:0crwdne110850:0" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "crwdns92470:0crwdne92470:0" @@ -4890,7 +4889,7 @@ msgstr "crwdns128678:0crwdne128678:0" msgid "Columns / Fields" msgstr "crwdns128680:0crwdne128680:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "crwdns92484:0crwdne92484:0" @@ -4932,16 +4931,6 @@ msgstr "crwdns128688:0crwdne128688:0" msgid "Comment can only be edited by the owner" msgstr "crwdns92504:0crwdne92504:0" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "crwdns128690:0crwdne128690:0" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "crwdns128692:0crwdne128692:0" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "crwdns154728:0crwdne154728:0" @@ -4949,7 +4938,7 @@ msgstr "crwdns154728:0crwdne154728:0" #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "crwdns92510:0crwdne92510:0" @@ -4958,7 +4947,7 @@ msgstr "crwdns92510:0crwdne92510:0" msgid "Comments and Communications will be associated with this linked document" msgstr "crwdns128694:0crwdne128694:0" -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "crwdns92514:0crwdne92514:0" @@ -5030,12 +5019,12 @@ msgid "Company Name" msgstr "crwdns128706:0crwdne128706:0" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "crwdns92548:0crwdne92548:0" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "crwdns92550:0crwdne92550:0" @@ -5115,8 +5104,8 @@ msgstr "crwdns152535:0crwdne152535:0" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5130,6 +5119,11 @@ msgstr "crwdns110856:0crwdne110856:0" msgid "Condition JSON" msgstr "crwdns128716:0crwdne128716:0" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "crwdns157304:0crwdne157304:0" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5155,11 +5149,11 @@ msgstr "crwdns155966:0crwdne155966:0" msgid "Configuration" msgstr "crwdns128720:0crwdne128720:0" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "crwdns92606:0crwdne92606:0" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "crwdns92608:0crwdne92608:0" @@ -5184,7 +5178,7 @@ msgstr "crwdns128722:0crwdne128722:0" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "crwdns111490:0crwdne111490:0" -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "crwdns92612:0crwdne92612:0" @@ -5203,7 +5197,7 @@ msgstr "crwdns151116:0crwdne151116:0" msgid "Confirm Deletion of Account" msgstr "crwdns92616:0crwdne92616:0" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "crwdns92618:0crwdne92618:0" @@ -5230,7 +5224,7 @@ msgstr "crwdns92628:0crwdne92628:0" msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "crwdns92630:0{0}crwdne92630:0" -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "crwdns92632:0crwdne92632:0" @@ -5248,8 +5242,8 @@ msgstr "crwdns92634:0crwdne92634:0" msgid "Connected User" msgstr "crwdns128726:0crwdne128726:0" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "crwdns92642:0crwdne92642:0" @@ -5300,6 +5294,10 @@ msgstr "crwdns128730:0crwdne128730:0" msgid "Contact" msgstr "crwdns92664:0crwdne92664:0" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
{0}" +msgstr "crwdns159204:0{0}crwdne159204:0" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5357,15 +5355,13 @@ msgstr "crwdns127604:0{0}crwdne127604:0" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5373,24 +5369,12 @@ msgstr "crwdns127604:0{0}crwdne127604:0" msgid "Content" msgstr "crwdns110860:0crwdne110860:0" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "crwdns128738:0crwdne128738:0" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "crwdns128740:0crwdne128740:0" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "crwdns128742:0crwdne128742:0" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "crwdns128744:0crwdne128744:0" @@ -5458,7 +5442,7 @@ msgstr "crwdns110864:0crwdne110864:0" msgid "Copy embed code" msgstr "crwdns148980:0crwdne148980:0" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "crwdns92732:0crwdne92732:0" @@ -5466,12 +5450,16 @@ msgstr "crwdns92732:0crwdne92732:0" msgid "Copy to Clipboard" msgstr "crwdns148722:0crwdne148722:0" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "crwdns157438:0crwdne157438:0" + #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" msgstr "crwdns128758:0crwdne128758:0" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "crwdns92738:0crwdne92738:0" @@ -5479,7 +5467,7 @@ msgstr "crwdns92738:0crwdne92738:0" msgid "Core Modules {0} cannot be searched in Global Search." msgstr "crwdns92740:0{0}crwdne92740:0" -#: frappe/printing/page/print/print.js:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "crwdns127608:0crwdne127608:0" @@ -5487,7 +5475,7 @@ msgstr "crwdns127608:0crwdne127608:0" msgid "Could not connect to outgoing email server" msgstr "crwdns92742:0crwdne92742:0" -#: frappe/model/document.py:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "crwdns92744:0{0}crwdne92744:0" @@ -5495,15 +5483,15 @@ msgstr "crwdns92744:0{0}crwdne92744:0" msgid "Could not map column {0} to field {1}" msgstr "crwdns92746:0{0}crwdnd92746:0{1}crwdne92746:0" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "crwdns155516:0{0}crwdne155516:0" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " -msgstr "crwdns152054:0crwdne152054:0" +msgid "Could not start up:" +msgstr "crwdns158712:0crwdne158712:0" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "crwdns92748:0crwdne92748:0" @@ -5548,13 +5536,14 @@ msgstr "crwdns128760:0crwdne128760:0" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "crwdns92764:0crwdne92764:0" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "crwdns92774:0crwdne92774:0" @@ -5586,13 +5575,13 @@ msgstr "crwdns92780:0crwdne92780:0" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "crwdns92782:0crwdne92782:0" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "crwdns92790:0crwdne92790:0" @@ -5606,7 +5595,7 @@ msgid "Create Card" msgstr "crwdns92794:0crwdne92794:0" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "crwdns92796:0crwdne92796:0" @@ -5640,12 +5629,12 @@ msgstr "crwdns128770:0crwdne128770:0" msgid "Create New" msgstr "crwdns92808:0crwdne92808:0" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "crwdns110866:0crwdne110866:0" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "crwdns92810:0crwdne92810:0" @@ -5653,7 +5642,7 @@ msgstr "crwdns92810:0crwdne92810:0" msgid "Create New Kanban Board" msgstr "crwdns92812:0crwdne92812:0" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "crwdns92814:0crwdne92814:0" @@ -5665,7 +5654,7 @@ msgstr "crwdns110868:0crwdne110868:0" msgid "Create a Reminder" msgstr "crwdns92818:0crwdne92818:0" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "crwdns92820:0crwdne92820:0" @@ -5673,11 +5662,11 @@ msgstr "crwdns92820:0crwdne92820:0" msgid "Create a new record" msgstr "crwdns92822:0crwdne92822:0" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "crwdns92824:0{0}crwdne92824:0" @@ -5693,7 +5682,7 @@ msgstr "crwdns92828:0crwdne92828:0" msgid "Create or Edit Workflow" msgstr "crwdns92830:0crwdne92830:0" -#: frappe/public/js/frappe/list/list_view.js:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "crwdns92832:0{0}crwdne92832:0" @@ -5703,7 +5692,7 @@ msgstr "crwdns92834:0crwdne92834:0" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "crwdns110870:0crwdne110870:0" @@ -5719,7 +5708,7 @@ msgstr "crwdns128772:0crwdne128772:0" msgid "Created By" msgstr "crwdns92842:0crwdne92842:0" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "crwdns92844:0{0}crwdnd92844:0{1}crwdne92844:0" @@ -5731,7 +5720,7 @@ msgstr "crwdns92844:0{0}crwdnd92844:0{1}crwdne92844:0" msgid "Created On" msgstr "crwdns92846:0crwdne92846:0" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "crwdns92848:0{0}crwdne92848:0" @@ -6040,7 +6029,7 @@ msgstr "crwdns155518:0{0}crwdnd155518:0{1}crwdne155518:0" #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "crwdns92994:0crwdne92994:0" @@ -6068,14 +6057,14 @@ msgstr "crwdns93012:0crwdne93012:0" msgid "Customizations for {0} exported to:
{1}" msgstr "crwdns93014:0{0}crwdnd93014:0{1}crwdne93014:0" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "crwdns93016:0crwdne93016:0" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "crwdns93018:0crwdne93018:0" @@ -6094,7 +6083,7 @@ msgstr "crwdns93022:0crwdne93022:0" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "crwdns93024:0crwdne93024:0" @@ -6172,7 +6161,7 @@ msgstr "crwdns93052:0crwdne93052:0" msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "crwdns93078:0crwdne93078:0" -#: frappe/desk/doctype/event/event.py:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "crwdns93080:0crwdne93080:0" @@ -6219,7 +6208,7 @@ msgstr "crwdns93092:0crwdne93092:0" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "crwdns93094:0crwdne93094:0" @@ -6278,7 +6267,6 @@ msgstr "crwdns128844:0crwdne128844:0" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6291,7 +6279,6 @@ msgstr "crwdns128844:0crwdne128844:0" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6327,7 +6314,7 @@ msgstr "crwdns93156:0crwdne93156:0" msgid "Data Import Template" msgstr "crwdns93158:0crwdne93158:0" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "crwdns93160:0crwdne93160:0" @@ -6358,7 +6345,7 @@ msgstr "crwdns93168:0crwdne93168:0" msgid "Database Storage Usage By Tables" msgstr "crwdns93170:0crwdne93170:0" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "crwdns93172:0crwdne93172:0" @@ -6496,11 +6483,11 @@ msgstr "crwdns93242:0{0}crwdne93242:0" msgid "Debug Log" msgstr "crwdns128868:0crwdne128868:0" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "crwdns127620:0crwdne127620:0" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "crwdns127622:0crwdne127622:0" @@ -6662,11 +6649,11 @@ msgstr "crwdns128902:0crwdne128902:0" msgid "Default display currency" msgstr "crwdns151576:0crwdne151576:0" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "crwdns93318:0{0}crwdne93318:0" -#: frappe/core/doctype/doctype/doctype.py:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 msgid "Default value for {0} must be in the list of options." msgstr "crwdns93320:0{0}crwdne93320:0" @@ -6700,6 +6687,12 @@ msgstr "crwdns93332:0crwdne93332:0" msgid "Defines actions on states and the next step and allowed roles." msgstr "crwdns111502:0crwdne111502:0" +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "crwdns158972:0crwdne158972:0" + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6717,22 +6710,27 @@ msgstr "crwdns128908:0crwdne128908:0" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_permission/user_permission_list.js:189 -#: frappe/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "crwdns93336:0crwdne93336:0" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "crwdns93338:0crwdne93338:0" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "crwdns158714:0crwdne158714:0" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "crwdns93346:0crwdne93346:0" @@ -6741,6 +6739,12 @@ msgstr "crwdns93346:0crwdne93346:0" msgid "Delete All" msgstr "crwdns110880:0crwdne110880:0" +#. Label of the delete_background_exported_reports_after (Int) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Delete Background Exported Reports After (Hours)" +msgstr "crwdns158974:0crwdne158974:0" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6750,7 +6754,7 @@ msgstr "crwdns143022:0crwdne143022:0" msgid "Delete Data" msgstr "crwdns93348:0crwdne93348:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "crwdns93350:0crwdne93350:0" @@ -6764,7 +6768,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "crwdns143026:0crwdne143026:0" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "crwdns110882:0crwdne110882:0" @@ -6773,7 +6777,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "crwdns143028:0crwdne143028:0" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "crwdns93354:0crwdne93354:0" @@ -6806,12 +6810,12 @@ msgstr "crwdns143038:0crwdne143038:0" msgid "Delete this record to allow sending to this email address" msgstr "crwdns93356:0crwdne93356:0" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "crwdns93358:0{0}crwdne93358:0" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "crwdns93360:0{0}crwdne93360:0" @@ -6847,11 +6851,15 @@ msgstr "crwdns143306:0crwdne143306:0" msgid "Deleted Name" msgstr "crwdns128914:0crwdne128914:0" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "crwdns127624:0crwdne127624:0" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "crwdns158716:0crwdne158716:0" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "crwdns93378:0{0}crwdne93378:0" @@ -6866,8 +6874,8 @@ msgstr "crwdns93382:0{0}crwdne93382:0" #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " -msgstr "crwdns128916:0crwdne128916:0" +msgid "Deletion Steps" +msgstr "crwdns158718:0crwdne158718:0" #: frappe/core/doctype/page/page.py:110 #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 @@ -6883,7 +6891,7 @@ msgstr "crwdns128918:0crwdne128918:0" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "crwdns127866:0crwdne127866:0" -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "crwdns93388:0crwdne93388:0" @@ -6910,7 +6918,7 @@ msgstr "crwdns128922:0crwdne128922:0" msgid "Dependencies" msgstr "crwdns112688:0crwdne112688:0" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "crwdns112690:0crwdne112690:0" @@ -6945,7 +6953,6 @@ msgstr "crwdns93406:0crwdne93406:0" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -6966,7 +6973,6 @@ msgstr "crwdns93406:0crwdne93406:0" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -6976,11 +6982,6 @@ msgstr "crwdns93406:0crwdne93406:0" msgid "Description" msgstr "crwdns93408:0crwdne93408:0" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "crwdns128926:0crwdne128926:0" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -7064,7 +7065,7 @@ msgstr "crwdns93458:0crwdne93458:0" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "crwdns93460:0crwdne93460:0" @@ -7125,11 +7126,6 @@ msgstr "crwdns128946:0crwdne128946:0" msgid "Disable Comment Count" msgstr "crwdns128948:0crwdne128948:0" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "crwdns128950:0crwdne128950:0" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7147,11 +7143,6 @@ msgstr "crwdns128954:0crwdne128954:0" msgid "Disable Document Sharing" msgstr "crwdns128956:0crwdne128956:0" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "crwdns128958:0crwdne128958:0" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "crwdns93494:0crwdne93494:0" @@ -7161,6 +7152,11 @@ msgstr "crwdns93494:0crwdne93494:0" msgid "Disable SMTP server authentication" msgstr "crwdns128960:0crwdne128960:0" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "crwdns158376:0crwdne158376:0" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7206,7 +7202,6 @@ msgstr "crwdns128970:0crwdne128970:0" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7221,7 +7216,6 @@ msgstr "crwdns128970:0crwdne128970:0" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "crwdns93510:0crwdne93510:0" @@ -7232,7 +7226,7 @@ msgstr "crwdns93536:0crwdne93536:0" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "crwdns93538:0crwdne93538:0" @@ -7250,7 +7244,7 @@ msgstr "crwdns154399:0crwdne154399:0" msgid "Discard {0}" msgstr "crwdns127626:0{0}crwdne127626:0" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "crwdns93540:0crwdne93540:0" @@ -7273,7 +7267,7 @@ msgstr "crwdns93542:0crwdne93542:0" msgid "Discussion Topic" msgstr "crwdns93544:0crwdne93544:0" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7309,19 +7303,23 @@ msgstr "crwdns143040:0crwdne143040:0" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " -msgstr "crwdns128980:0crwdne128980:0" +msgid "Do Not Create New User" +msgstr "crwdns158720:0crwdne158720:0" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "crwdns128982:0crwdne128982:0" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "crwdns93560:0crwdne93560:0" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "crwdns159974:0{0}crwdne159974:0" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "crwdns93564:0crwdne93564:0" @@ -7412,7 +7410,7 @@ msgstr "crwdns93582:0{0}crwdne93582:0" msgid "DocType" msgstr "crwdns93584:0crwdne93584:0" -#: frappe/core/doctype/doctype/doctype.py:1577 +#: frappe/core/doctype/doctype/doctype.py:1578 msgid "DocType {0} provided for the field {1} must have atleast one Link field" msgstr "crwdns93614:0{0}crwdnd93614:0{1}crwdne93614:0" @@ -7459,11 +7457,11 @@ msgstr "crwdns93632:0crwdne93632:0" msgid "DocType View" msgstr "crwdns128992:0crwdne128992:0" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "crwdns93638:0crwdne93638:0" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "crwdns93640:0crwdne93640:0" @@ -7472,7 +7470,7 @@ msgstr "crwdns93640:0crwdne93640:0" msgid "DocType is a Table / Form in the application." msgstr "crwdns111506:0crwdne111506:0" -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "crwdns93642:0crwdne93642:0" @@ -7505,7 +7503,7 @@ msgstr "crwdns93654:0{0}crwdne93654:0" msgid "DocType {} not found" msgstr "crwdns93656:0crwdne93656:0" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "crwdns93658:0crwdne93658:0" @@ -7519,7 +7517,7 @@ msgstr "crwdns148296:0{0}crwdne148296:0" msgid "Doctype" msgstr "crwdns93662:0crwdne93662:0" -#: frappe/core/doctype/doctype/doctype.py:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "crwdns93666:0{0}crwdnd93666:0{1}crwdne93666:0" @@ -7581,31 +7579,29 @@ msgstr "crwdns129002:0crwdne129002:0" msgid "Document Links" msgstr "crwdns129004:0crwdne129004:0" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "crwdns93696:0#{0}crwdnd93696:0{1}crwdnd93696:0{2}crwdne93696:0" -#: frappe/core/doctype/doctype/doctype.py:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "crwdns93698:0#{0}crwdne93698:0" -#: frappe/core/doctype/doctype/doctype.py:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "crwdns93700:0#{0}crwdne93700:0" -#: frappe/core/doctype/doctype/doctype.py:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "crwdns93702:0#{0}crwdne93702:0" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7747,13 +7743,13 @@ msgstr "crwdns129014:0crwdne129014:0" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "crwdns93754:0crwdne93754:0" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 msgid "Document Type and Function are required to create a number card" msgstr "crwdns93796:0crwdne93796:0" @@ -7790,7 +7786,7 @@ msgid "Document Types and Permissions" msgstr "crwdns129022:0crwdne129022:0" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "crwdns93812:0crwdne93812:0" @@ -7798,15 +7794,15 @@ msgstr "crwdns93812:0crwdne93812:0" msgid "Document follow is not enabled for this user." msgstr "crwdns148644:0crwdne148644:0" -#: frappe/public/js/frappe/list/list_view.js:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "crwdns93814:0crwdne93814:0" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "crwdns93816:0crwdne93816:0" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "crwdns93818:0crwdne93818:0" @@ -7948,13 +7944,13 @@ msgstr "crwdns129040:0crwdne129040:0" msgid "Double click to edit label" msgstr "crwdns143042:0crwdne143042:0" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "crwdns93880:0crwdne93880:0" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "crwdns93882:0crwdne93882:0" @@ -7981,7 +7977,7 @@ msgstr "crwdns93890:0crwdne93890:0" msgid "Download PDF" msgstr "crwdns111456:0crwdne111456:0" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "crwdns93892:0crwdne93892:0" @@ -8044,7 +8040,7 @@ msgstr "crwdns110892:0crwdne110892:0" msgid "Drag to add state" msgstr "crwdns143050:0crwdne143050:0" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "crwdns143052:0crwdne143052:0" @@ -8077,7 +8073,7 @@ msgstr "crwdns93920:0crwdne93920:0" msgid "Duplicate Filter Name" msgstr "crwdns93922:0crwdne93922:0" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "crwdns93924:0crwdne93924:0" @@ -8176,17 +8172,17 @@ msgstr "crwdns110894:0crwdne110894:0" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8194,7 +8190,7 @@ msgstr "crwdns110894:0crwdne110894:0" msgid "Edit" msgstr "crwdns93974:0crwdne93974:0" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "crwdns93976:0crwdne93976:0" @@ -8204,7 +8200,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "crwdns148726:0crwdne148726:0" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "crwdns110896:0crwdne110896:0" @@ -8233,7 +8229,7 @@ msgstr "crwdns93982:0crwdne93982:0" msgid "Edit DocType" msgstr "crwdns93984:0crwdne93984:0" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "crwdns93986:0crwdne93986:0" @@ -8251,7 +8247,7 @@ msgstr "crwdns110902:0crwdne110902:0" msgid "Edit Footer" msgstr "crwdns143056:0crwdne143056:0" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "crwdns93990:0crwdne93990:0" @@ -8336,7 +8332,7 @@ msgstr "crwdns143064:0{0}crwdne143064:0" msgid "Edit to add content" msgstr "crwdns94014:0crwdne94014:0" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "crwdns110918:0crwdne110918:0" @@ -8345,7 +8341,7 @@ msgstr "crwdns110918:0crwdne110918:0" msgid "Edit your workflow visually using the Workflow Builder." msgstr "crwdns94016:0crwdne94016:0" -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "crwdns94018:0{0}crwdne94018:0" @@ -8353,7 +8349,7 @@ msgstr "crwdns94018:0{0}crwdne94018:0" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "crwdns94020:0crwdne94020:0" @@ -8392,11 +8388,14 @@ msgstr "crwdns129070:0crwdne129070:0" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8405,6 +8404,7 @@ msgstr "crwdns129070:0crwdne129070:0" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8414,6 +8414,8 @@ msgstr "crwdns129070:0crwdne129070:0" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "crwdns94034:0crwdne94034:0" @@ -8445,7 +8447,7 @@ msgstr "crwdns94072:0crwdne94072:0" msgid "Email Account Name" msgstr "crwdns129072:0crwdne129072:0" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "crwdns94076:0crwdne94076:0" @@ -8533,6 +8535,7 @@ msgid "Email IDs" msgstr "crwdns129080:0crwdne129080:0" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "crwdns129082:0crwdne129082:0" @@ -8576,10 +8579,10 @@ msgstr "crwdns129088:0crwdne129088:0" msgid "Email Rule" msgstr "crwdns94138:0crwdne94138:0" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" -msgstr "crwdns129090:0crwdne129090:0" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" +msgstr "crwdns157306:0crwdne157306:0" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType @@ -8644,11 +8647,11 @@ msgstr "crwdns94172:0crwdne94172:0" msgid "Email has been moved to trash" msgstr "crwdns94174:0crwdne94174:0" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "crwdns151610:0crwdne151610:0" -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "crwdns94176:0{0}crwdne94176:0" @@ -8687,7 +8690,7 @@ msgstr "crwdns129108:0crwdne129108:0" msgid "Embed code copied" msgstr "crwdns111510:0crwdne111510:0" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "crwdns155522:0crwdne155522:0" @@ -8695,7 +8698,7 @@ msgstr "crwdns155522:0crwdne155522:0" msgid "Empty column" msgstr "crwdns143066:0crwdne143066:0" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "crwdns155524:0crwdne155524:0" @@ -8714,7 +8717,7 @@ msgstr "crwdns129110:0crwdne129110:0" msgid "Enable Address Autocompletion" msgstr "crwdns148730:0crwdne148730:0" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "crwdns94192:0{0}crwdne94192:0" @@ -8740,11 +8743,6 @@ msgstr "crwdns129118:0crwdne129118:0" msgid "Enable Dynamic Client Registration" msgstr "crwdns155970:0crwdne155970:0" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "crwdns129120:0crwdne129120:0" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -8838,11 +8836,6 @@ msgstr "crwdns129142:0crwdne129142:0" msgid "Enable Social Login" msgstr "crwdns129144:0crwdne129144:0" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "crwdns129146:0crwdne129146:0" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "crwdns94244:0crwdne94244:0" @@ -8850,7 +8843,7 @@ msgstr "crwdns94244:0crwdne94244:0" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "crwdns94246:0crwdne94246:0" @@ -8862,12 +8855,6 @@ msgstr "crwdns94252:0crwdne94252:0" msgid "Enable developer mode to create a standard Web Template" msgstr "crwdns94254:0crwdne94254:0" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "crwdns129148:0crwdne129148:0" - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -8890,6 +8877,7 @@ msgstr "crwdns129152:0crwdne129152:0" #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -8902,6 +8890,7 @@ msgstr "crwdns129152:0crwdne129152:0" #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "crwdns94262:0crwdne94262:0" @@ -8927,15 +8916,11 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "crwdns94300:0crwdne94300:0" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "crwdns111512:0crwdne111512:0" - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " -msgstr "crwdns129156:0crwdne129156:0" +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "crwdns111512:0crwdne111512:0" #. Description of the 'Queue in Background (BETA)' (Check) field in DocType #. 'DocType' @@ -8951,11 +8936,11 @@ msgstr "crwdns129158:0crwdne129158:0" msgid "Encrypt Backups" msgstr "crwdns129160:0crwdne129160:0" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "crwdns94308:0crwdne94308:0" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "crwdns94310:0crwdne94310:0" @@ -8967,7 +8952,7 @@ msgstr "crwdns154296:0crwdne154296:0" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -8983,6 +8968,10 @@ msgstr "crwdns129162:0crwdne129162:0" msgid "End Date cannot be before Start Date!" msgstr "crwdns94322:0crwdne94322:0" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "crwdns158378:0crwdne158378:0" + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9027,7 +9016,7 @@ msgstr "crwdns94356:0crwdne94356:0" msgid "Enter Code displayed in OTP App." msgstr "crwdns110922:0crwdne110922:0" -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "crwdns94358:0crwdne94358:0" @@ -9097,10 +9086,17 @@ msgstr "crwdns94382:0crwdne94382:0" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9110,7 +9106,7 @@ msgstr "crwdns94382:0crwdne94382:0" msgid "Error" msgstr "crwdns94384:0crwdne94384:0" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "crwdns94400:0crwdne94400:0" @@ -9130,7 +9126,7 @@ msgstr "crwdns143308:0crwdne143308:0" msgid "Error Message" msgstr "crwdns129186:0crwdne129186:0" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 msgid "Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing." msgstr "crwdns94412:0crwdne94412:0" @@ -9158,9 +9154,9 @@ msgstr "crwdns94422:0crwdne94422:0" msgid "Error in Header/Footer Script" msgstr "crwdns110924:0crwdne110924:0" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "crwdns94424:0crwdne94424:0" @@ -9180,19 +9176,19 @@ msgstr "crwdns155528:0{0}crwdne155528:0" msgid "Error while connecting to email account {0}" msgstr "crwdns94428:0{0}crwdne94428:0" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "crwdns94430:0{0}crwdne94430:0" -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "crwdns149060:0{0}crwdne149060:0" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "crwdns94434:0{0}crwdnd94434:0{1}crwdne94434:0" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "crwdns149064:0{0}crwdnd149064:0#{1}crwdnd149064:0{2}crwdne149064:0" @@ -9249,7 +9245,7 @@ msgstr "crwdns129196:0crwdne129196:0" msgid "Events" msgstr "crwdns112732:0crwdne112732:0" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "crwdns94458:0crwdne94458:0" @@ -9333,7 +9329,7 @@ msgstr "crwdns94490:0crwdne94490:0" msgid "Execute Console script" msgstr "crwdns94494:0crwdne94494:0" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "crwdns155330:0crwdne155330:0" @@ -9341,7 +9337,7 @@ msgstr "crwdns155330:0crwdne155330:0" msgid "Executing..." msgstr "crwdns94496:0crwdne94496:0" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "crwdns94498:0{0}crwdne94498:0" @@ -9367,12 +9363,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "crwdns94504:0crwdne94504:0" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "crwdns94506:0crwdne94506:0" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "crwdns155530:0{0}crwdne155530:0" @@ -9400,7 +9396,9 @@ msgid "Expire Notification On" msgstr "crwdns129224:0crwdne129224:0" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "crwdns129226:0crwdne129226:0" @@ -9428,13 +9426,13 @@ msgstr "crwdns129232:0crwdne129232:0" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "crwdns94526:0crwdne94526:0" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "crwdns94528:0crwdne94528:0" @@ -9471,7 +9469,7 @@ msgstr "crwdns129234:0crwdne129234:0" msgid "Export Import Log" msgstr "crwdns94550:0crwdne94550:0" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "crwdns94552:0{0}crwdne94552:0" @@ -9480,11 +9478,11 @@ msgstr "crwdns94552:0{0}crwdne94552:0" msgid "Export Type" msgstr "crwdns94554:0crwdne94554:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "crwdns127634:0crwdne127634:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "crwdns127636:0{0}crwdne127636:0" @@ -9492,6 +9490,10 @@ msgstr "crwdns127636:0{0}crwdne127636:0" msgid "Export as zip" msgstr "crwdns94556:0crwdne94556:0" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "crwdns158976:0crwdne158976:0" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "crwdns94558:0{0}crwdne94558:0" @@ -9597,7 +9599,7 @@ msgstr "crwdns129260:0crwdne129260:0" msgid "Failed Logins (Last 30 days)" msgstr "crwdns129262:0crwdne129262:0" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "crwdns94592:0crwdne94592:0" @@ -9614,7 +9616,7 @@ msgstr "crwdns94596:0crwdne94596:0" msgid "Failed to complete setup" msgstr "crwdns94598:0crwdne94598:0" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "crwdns94600:0crwdne94600:0" @@ -9623,15 +9625,15 @@ msgstr "crwdns94600:0crwdne94600:0" msgid "Failed to connect to server" msgstr "crwdns94602:0crwdne94602:0" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "crwdns94604:0crwdne94604:0" -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "crwdns148982:0{0}crwdne148982:0" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "crwdns127646:0{0}crwdnd127646:0{1}crwdne127646:0" @@ -9639,8 +9641,8 @@ msgstr "crwdns127646:0{0}crwdnd127646:0{1}crwdne127646:0" msgid "Failed to enable scheduler: {0}" msgstr "crwdns94606:0{0}crwdne94606:0" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "crwdns94608:0crwdne94608:0" @@ -9656,7 +9658,7 @@ msgstr "crwdns94612:0crwdne94612:0" msgid "Failed to generate preview of series" msgstr "crwdns94614:0crwdne94614:0" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "crwdns94616:0{0}crwdnd94616:0{1}crwdne94616:0" @@ -9676,11 +9678,11 @@ msgstr "crwdns94620:0crwdne94620:0" msgid "Failed to optimize image: {0}" msgstr "crwdns94622:0{0}crwdne94622:0" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "crwdns143068:0crwdne143068:0" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "crwdns143070:0crwdne143070:0" @@ -9730,12 +9732,6 @@ msgstr "crwdns129268:0crwdne129268:0" msgid "Fax" msgstr "crwdns129270:0crwdne129270:0" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "crwdns94636:0crwdne94636:0" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "crwdns110930:0crwdne110930:0" @@ -9793,17 +9789,17 @@ msgstr "crwdns94660:0crwdne94660:0" #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "crwdns94662:0crwdne94662:0" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" msgstr "crwdns94678:0crwdne94678:0" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "crwdns94680:0crwdne94680:0" @@ -9816,7 +9812,7 @@ msgstr "crwdns94682:0crwdne94682:0" msgid "Field Description" msgstr "crwdns129278:0crwdne129278:0" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "crwdns94686:0crwdne94686:0" @@ -9846,7 +9842,7 @@ msgstr "crwdns110932:0crwdne110932:0" msgid "Field Type" msgstr "crwdns110934:0crwdne110934:0" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "crwdns94696:0crwdne94696:0" @@ -9872,11 +9868,11 @@ msgstr "crwdns94704:0{0}crwdnd94704:0{1}crwdne94704:0" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "crwdns94706:0{0}crwdnd94706:0{1}crwdne94706:0" -#: frappe/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "crwdns94708:0{0}crwdne94708:0" -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "crwdns142910:0{0}crwdnd142910:0{1}crwdne142910:0" @@ -9894,20 +9890,20 @@ msgstr "crwdns142910:0{0}crwdnd142910:0{1}crwdne142910:0" #: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json #: frappe/desk/doctype/form_tour_step/form_tour_step.json #: frappe/integrations/doctype/webhook_data/webhook_data.json -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "crwdns94710:0crwdne94710:0" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "crwdns94726:0{0}crwdnd94726:0{1}crwdnd94726:0{2}crwdnd94726:0{3}crwdne94726:0" -#: frappe/core/doctype/doctype/doctype.py:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "crwdns94728:0{0}crwdne94728:0" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "crwdns94730:0{0}crwdne94730:0" @@ -9923,15 +9919,15 @@ msgstr "crwdns94734:0crwdne94734:0" msgid "Fieldname {0} appears multiple times" msgstr "crwdns94736:0{0}crwdne94736:0" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "crwdns94738:0{0}crwdnd94738:0{1}crwdne94738:0" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "crwdns94740:0{0}crwdne94740:0" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "crwdns94742:0{0}crwdne94742:0" @@ -9954,7 +9950,7 @@ msgstr "crwdns94742:0{0}crwdne94742:0" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -9967,7 +9963,7 @@ msgstr "crwdns110936:0crwdne110936:0" msgid "Fields Multicheck" msgstr "crwdns129288:0crwdne129288:0" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "crwdns94760:0crwdne94760:0" @@ -9975,7 +9971,7 @@ msgstr "crwdns94760:0crwdne94760:0" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "crwdns112694:0crwdne112694:0" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "crwdns155532:0crwdne155532:0" @@ -10003,7 +9999,7 @@ msgstr "crwdns129292:0crwdne129292:0" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "crwdns94776:0{0}crwdnd94776:0{1}crwdne94776:0" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "crwdns94778:0{0}crwdnd94778:0{1}crwdnd94778:0{2}crwdne94778:0" @@ -10016,7 +10012,7 @@ msgstr "crwdns94778:0{0}crwdnd94778:0{1}crwdnd94778:0{2}crwdne94778:0" msgid "File" msgstr "crwdns94780:0crwdne94780:0" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "crwdns143076:0{0}crwdne143076:0" @@ -10069,7 +10065,7 @@ msgstr "crwdns129304:0crwdne129304:0" msgid "File backup is ready" msgstr "crwdns94810:0crwdne94810:0" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "crwdns94812:0{0}crwdne94812:0" @@ -10077,7 +10073,7 @@ msgstr "crwdns94812:0{0}crwdne94812:0" msgid "File not attached" msgstr "crwdns94814:0crwdne94814:0" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "crwdns94816:0{0}crwdne94816:0" @@ -10086,11 +10082,11 @@ msgstr "crwdns94816:0{0}crwdne94816:0" msgid "File too big" msgstr "crwdns94818:0crwdne94818:0" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "crwdns94820:0{0}crwdne94820:0" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "crwdns94822:0{0}crwdne94822:0" @@ -10104,10 +10100,10 @@ msgstr "crwdns129306:0crwdne129306:0" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10144,11 +10140,11 @@ msgstr "crwdns94836:0crwdne94836:0" msgid "Filter Values" msgstr "crwdns129314:0crwdne129314:0" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "crwdns155534:0{0}crwdne155534:0" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "crwdns155536:0crwdne155536:0" @@ -10166,7 +10162,6 @@ msgstr "crwdns129316:0crwdne129316:0" msgid "Filtered Records" msgstr "crwdns94848:0crwdne94848:0" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "crwdns94850:0{0}crwdne94850:0" @@ -10181,7 +10176,9 @@ msgstr "crwdns94850:0{0}crwdne94850:0" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10203,6 +10200,11 @@ msgstr "crwdns129320:0crwdne129320:0" msgid "Filters Display" msgstr "crwdns129322:0crwdne129322:0" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "crwdns157308:0crwdne157308:0" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10215,11 +10217,11 @@ msgstr "crwdns129324:0crwdne129324:0" msgid "Filters Section" msgstr "crwdns129326:0crwdne129326:0" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "crwdns94880:0{0}crwdne94880:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "crwdns94882:0crwdne94882:0" @@ -10232,18 +10234,18 @@ msgstr "crwdns129328:0crwdne129328:0" msgid "Filters {0}" msgstr "crwdns127654:0{0}crwdne127654:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1427 +#: frappe/public/js/frappe/views/reports/report_view.js:1429 msgid "Filters:" msgstr "crwdns110942:0crwdne110942:0" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 msgid "Find '{0}' in ..." msgstr "crwdns94886:0{0}crwdne94886:0" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 msgid "Find {0} in {1}" msgstr "crwdns94888:0{0}crwdnd94888:0{1}crwdne94888:0" @@ -10267,8 +10269,12 @@ msgstr "crwdns129334:0crwdne129334:0" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "crwdns94896:0crwdne94896:0" @@ -10277,10 +10283,6 @@ msgstr "crwdns94896:0crwdne94896:0" msgid "First Success Message" msgstr "crwdns129336:0crwdne129336:0" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:49 -msgid "First Transaction" -msgstr "crwdns94904:0crwdne94904:0" - #: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." msgstr "crwdns94906:0crwdne94906:0" @@ -10331,11 +10333,11 @@ msgstr "crwdns129342:0crwdne129342:0" msgid "Fold" msgstr "crwdns129344:0crwdne129344:0" -#: frappe/core/doctype/doctype/doctype.py:1450 +#: frappe/core/doctype/doctype/doctype.py:1451 msgid "Fold can not be at the end of the form" msgstr "crwdns94936:0crwdne94936:0" -#: frappe/core/doctype/doctype/doctype.py:1448 +#: frappe/core/doctype/doctype/doctype.py:1449 msgid "Fold must come before a Section Break" msgstr "crwdns94938:0crwdne94938:0" @@ -10353,7 +10355,7 @@ msgstr "crwdns129348:0crwdne129348:0" msgid "Folder name should not include '/' (slash)" msgstr "crwdns94944:0crwdne94944:0" -#: frappe/core/doctype/file/file.py:472 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "crwdns94946:0{0}crwdne94946:0" @@ -10460,7 +10462,7 @@ msgstr "crwdns129368:0crwdne129368:0" msgid "Footer HTML" msgstr "crwdns129370:0crwdne129370:0" -#: frappe/printing/doctype/letter_head/letter_head.py:75 +#: frappe/printing/doctype/letter_head/letter_head.py:81 msgid "Footer HTML set from attachment {0}" msgstr "crwdns94996:0{0}crwdne94996:0" @@ -10497,7 +10499,7 @@ msgstr "crwdns129380:0crwdne129380:0" msgid "Footer Template Values" msgstr "crwdns129382:0crwdne129382:0" -#: frappe/printing/page/print/print.js:116 +#: frappe/printing/page/print/print.js:129 msgid "Footer might not be visible as {0} option is disabled" msgstr "crwdns95008:0{0}crwdne95008:0" @@ -10555,8 +10557,8 @@ msgstr "crwdns95024:0crwdne95024:0" msgid "For Value" msgstr "crwdns129392:0crwdne129392:0" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "crwdns95034:0crwdne95034:0" @@ -10582,12 +10584,6 @@ msgstr "crwdns129394:0crwdne129394:0" msgid "For help see Client Script API and Examples" msgstr "crwdns129396:0crwdne129396:0" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "crwdns129398:0crwdne129398:0" - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "crwdns95044:0{0}crwdne95044:0" @@ -10602,7 +10598,7 @@ msgstr "crwdns129400:0crwdne129400:0" msgid "For updating, you can update only selective columns." msgstr "crwdns95048:0crwdne95048:0" -#: frappe/core/doctype/doctype/doctype.py:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "crwdns95050:0{0}crwdnd95050:0{1}crwdnd95050:0{2}crwdnd95050:0{3}crwdne95050:0" @@ -10657,7 +10653,7 @@ msgstr "crwdns95068:0crwdne95068:0" #: frappe/custom/doctype/client_script/client_script.json #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/desk/doctype/form_tour/form_tour.json -#: frappe/printing/page/print/print.js:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "crwdns95070:0crwdne95070:0" @@ -10717,6 +10713,11 @@ msgstr "crwdns95102:0crwdne95102:0" msgid "Format Data" msgstr "crwdns129420:0crwdne129420:0" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "crwdns157310:0crwdne157310:0" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "crwdns95110:0crwdne95110:0" @@ -10744,7 +10745,15 @@ msgstr "crwdns129426:0crwdne129426:0" msgid "Frappe" msgstr "crwdns95118:0crwdne95118:0" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "crwdns157312:0crwdne157312:0" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "crwdns157314:0crwdne157314:0" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "crwdns95122:0crwdne95122:0" @@ -10833,7 +10842,7 @@ msgstr "crwdns95156:0crwdne95156:0" msgid "From Date Field" msgstr "crwdns129430:0crwdne129430:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "crwdns95162:0crwdne95162:0" @@ -10860,18 +10869,16 @@ msgstr "crwdns129436:0crwdne129436:0" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "crwdns95172:0crwdne95172:0" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "crwdns95184:0crwdne95184:0" @@ -10897,13 +10904,13 @@ msgstr "crwdns95192:0crwdne95192:0" msgid "Function {0} is not whitelisted." msgstr "crwdns95194:0{0}crwdne95194:0" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "crwdns155538:0{0}crwdne155538:0" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" -msgstr "crwdns95196:0crwdne95196:0" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "crwdns160164:0crwdne160164:0" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -10962,7 +10969,7 @@ msgstr "crwdns111514:0crwdne111514:0" msgid "Generate Keys" msgstr "crwdns129448:0crwdne129448:0" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "crwdns95224:0crwdne95224:0" @@ -10970,8 +10977,14 @@ msgstr "crwdns95224:0crwdne95224:0" msgid "Generate Random Password" msgstr "crwdns95226:0crwdne95226:0" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "crwdns157316:0crwdne157316:0" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "crwdns95228:0crwdne95228:0" @@ -10994,7 +11007,7 @@ msgstr "crwdns129450:0crwdne129450:0" msgid "Geolocation Settings" msgstr "crwdns148734:0crwdne148734:0" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "crwdns95236:0crwdne95236:0" @@ -11130,7 +11143,7 @@ msgid "Go to this URL after completing the form" msgstr "crwdns129468:0crwdne129468:0" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "crwdns95292:0{0}crwdne95292:0" @@ -11178,10 +11191,6 @@ msgstr "crwdns129474:0crwdne129474:0" msgid "Google Calendar" msgstr "crwdns95306:0crwdne95306:0" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}" -msgstr "crwdns95312:0{0}crwdne95312:0" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "crwdns95314:0{0}crwdnd95314:0{1}crwdne95314:0" @@ -11300,11 +11309,6 @@ msgstr "crwdns95374:0crwdne95374:0" msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "crwdns95376:0{number}crwdne95376:0" -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "crwdns129490:0crwdne129490:0" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11381,14 +11385,10 @@ msgstr "crwdns129502:0crwdne129502:0" msgid "Group By field is required to create a dashboard chart" msgstr "crwdns95408:0crwdne95408:0" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "crwdns155540:0crwdne155540:0" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "crwdns95410:0crwdne95410:0" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11438,7 +11438,6 @@ msgstr "crwdns129510:0crwdne129510:0" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11449,9 +11448,8 @@ msgstr "crwdns129510:0crwdne129510:0" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11555,7 +11553,7 @@ msgstr "crwdns129530:0crwdne129530:0" msgid "Header HTML" msgstr "crwdns129532:0crwdne129532:0" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "crwdns95488:0{0}crwdne95488:0" @@ -11613,6 +11611,12 @@ msgstr "crwdns129542:0crwdne129542:0" msgid "Hello" msgstr "crwdns95512:0crwdne95512:0" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "crwdns157318:0crwdne157318:0" + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11678,7 +11682,7 @@ msgstr "crwdns129552:0crwdne129552:0" msgid "Helvetica Neue" msgstr "crwdns129554:0crwdne129554:0" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "crwdns95544:0crwdne95544:0" @@ -11714,7 +11718,7 @@ msgstr "crwdns110964:0crwdne110964:0" msgid "Hidden Fields" msgstr "crwdns129556:0crwdne129556:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "crwdns156080:0{0}crwdne156080:0" @@ -11747,11 +11751,6 @@ msgstr "crwdns129560:0crwdne129560:0" msgid "Hide Buttons" msgstr "crwdns129562:0crwdne129562:0" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "crwdns129564:0crwdne129564:0" - #. 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 @@ -11831,7 +11830,7 @@ msgstr "crwdns129578:0crwdne129578:0" msgid "Hide Standard Menu" msgstr "crwdns129580:0crwdne129580:0" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "crwdns95620:0crwdne95620:0" @@ -11845,7 +11844,7 @@ msgstr "crwdns95622:0crwdne95622:0" msgid "Hide descendant records of For Value." msgstr "crwdns129582:0crwdne129582:0" -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "crwdns95628:0crwdne95628:0" @@ -11894,11 +11893,8 @@ msgstr "crwdns95642:0crwdne95642:0" #: frappe/public/js/frappe/file_uploader/FileBrowser.vue:38 #: frappe/public/js/frappe/views/file/file_view.js:67 #: frappe/public/js/frappe/views/file/file_view.js:88 -#: frappe/public/js/frappe/views/pageview.js:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -11986,16 +11982,16 @@ msgstr "crwdns148656:0crwdne148656:0" #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "crwdns95674:0crwdne95674:0" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "crwdns95676:0crwdne95676:0" @@ -12091,9 +12087,9 @@ msgstr "crwdns129618:0crwdne129618:0" msgid "If Checked workflow status will not override status in list view" msgstr "crwdns129620:0crwdne129620:0" -#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "crwdns95728:0crwdne95728:0" @@ -12221,6 +12217,10 @@ msgstr "crwdns129662:0crwdne129662:0" msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "crwdns110968:0crwdne110968:0" +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "crwdns157320:0crwdne157320:0" + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12252,7 +12252,11 @@ msgstr "crwdns95784:0crwdne95784:0" msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "crwdns95786:0crwdne95786:0" -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "crwdns157322:0crwdne157322:0" + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "crwdns152056:0crwdne152056:0" @@ -12309,12 +12313,12 @@ msgstr "crwdns129678:0crwdne129678:0" msgid "Ignored Apps" msgstr "crwdns129680:0crwdne129680:0" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "crwdns95818:0{0}crwdne95818:0" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "crwdns95820:0crwdne95820:0" @@ -12375,11 +12379,11 @@ msgstr "crwdns142848:0crwdne142848:0" msgid "Image Width" msgstr "crwdns129690:0crwdne129690:0" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 msgid "Image field must be a valid fieldname" msgstr "crwdns95852:0crwdne95852:0" -#: frappe/core/doctype/doctype/doctype.py:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "crwdns95854:0crwdne95854:0" @@ -12401,15 +12405,15 @@ msgstr "crwdns95860:0crwdne95860:0" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "crwdns111408:0crwdne111408:0" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "crwdns111412:0{0}crwdne111412:0" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "crwdns111414:0{0}crwdne111414:0" @@ -12435,7 +12439,7 @@ msgstr "crwdns129692:0crwdne129692:0" msgid "Import" msgstr "crwdns95866:0crwdne95866:0" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "crwdns95868:0crwdne95868:0" @@ -12663,15 +12667,16 @@ msgstr "crwdns95976:0crwdne95976:0" msgid "Include Web View Link in Email" msgstr "crwdns129732:0crwdne129732:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "crwdns95980:0crwdne95980:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "crwdns156082:0crwdne156082:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "crwdns95982:0crwdne95982:0" @@ -12718,7 +12723,7 @@ msgstr "crwdns95994:0crwdne95994:0" msgid "Incomplete Virtual Doctype Implementation" msgstr "crwdns95996:0crwdne95996:0" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "crwdns95998:0crwdne95998:0" @@ -12730,7 +12735,7 @@ msgstr "crwdns96000:0crwdne96000:0" msgid "Incorrect URL" msgstr "crwdns96002:0crwdne96002:0" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "crwdns96004:0crwdne96004:0" @@ -12738,11 +12743,11 @@ msgstr "crwdns96004:0crwdne96004:0" msgid "Incorrect Verification code" msgstr "crwdns96006:0crwdne96006:0" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "crwdns148658:0{0}crwdne148658:0" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "crwdns148660:0crwdne148660:0" @@ -12754,7 +12759,7 @@ msgstr "crwdns148660:0crwdne148660:0" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "crwdns96012:0crwdne96012:0" @@ -12829,7 +12834,7 @@ msgstr "crwdns110970:0crwdne110970:0" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "crwdns96046:0crwdne96046:0" @@ -12845,7 +12850,7 @@ msgstr "crwdns96052:0{0}crwdnd96052:0{1}crwdnd96052:0{2}crwdne96052:0" msgid "Insert Below" msgstr "crwdns110972:0crwdne110972:0" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "crwdns96054:0{0}crwdne96054:0" @@ -12863,8 +12868,12 @@ msgstr "crwdns129760:0crwdne129760:0" msgid "Insert Style" msgstr "crwdns129762:0crwdne129762:0" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "crwdns157324:0crwdne157324:0" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "crwdns96062:0{0}crwdne96062:0" @@ -12881,7 +12890,7 @@ msgid "Installed Applications" msgstr "crwdns96066:0crwdne96066:0" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "crwdns96070:0crwdne96070:0" @@ -12898,19 +12907,19 @@ msgstr "crwdns110976:0crwdne110976:0" msgid "Insufficient Permission Level for {0}" msgstr "crwdns96072:0{0}crwdne96072:0" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "crwdns96074:0{0}crwdne96074:0" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" msgstr "crwdns96076:0crwdne96076:0" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" msgstr "crwdns96078:0crwdne96078:0" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "crwdns96080:0crwdne96080:0" @@ -13014,9 +13023,9 @@ msgid "Invalid" msgstr "crwdns129784:0crwdne129784:0" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "crwdns96130:0crwdne96130:0" @@ -13024,7 +13033,7 @@ msgstr "crwdns96130:0crwdne96130:0" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "crwdns96132:0{0}crwdne96132:0" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "crwdns96134:0crwdne96134:0" @@ -13040,7 +13049,7 @@ msgstr "crwdns96138:0crwdne96138:0" msgid "Invalid Code. Please try again." msgstr "crwdns151806:0crwdne151806:0" -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "crwdns96140:0crwdne96140:0" @@ -13060,16 +13069,20 @@ msgstr "crwdns96146:0crwdne96146:0" msgid "Invalid DocType: {0}" msgstr "crwdns96148:0{0}crwdne96148:0" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "crwdns157326:0crwdne157326:0" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "crwdns96150:0crwdne96150:0" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "crwdns96152:0crwdne96152:0" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "crwdns155544:0crwdne155544:0" @@ -13101,7 +13114,7 @@ msgstr "crwdns110982:0crwdne110982:0" msgid "Invalid Mail Server. Please rectify and try again." msgstr "crwdns96164:0crwdne96164:0" -#: frappe/model/naming.py:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "crwdns96166:0crwdne96166:0" @@ -13110,8 +13123,8 @@ msgstr "crwdns96166:0crwdne96166:0" msgid "Invalid Operation" msgstr "crwdns96168:0crwdne96168:0" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "crwdns96170:0crwdne96170:0" @@ -13123,25 +13136,25 @@ msgstr "crwdns96172:0{0}crwdne96172:0" msgid "Invalid Output Format" msgstr "crwdns96174:0crwdne96174:0" -#: frappe/model/base_document.py:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "crwdns127664:0crwdne127664:0" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "crwdns96176:0crwdne96176:0" -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "crwdns96178:0crwdne96178:0" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "crwdns96180:0crwdne96180:0" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "crwdns96182:0crwdne96182:0" @@ -13150,7 +13163,7 @@ msgstr "crwdns96182:0crwdne96182:0" msgid "Invalid Search Field {0}" msgstr "crwdns96184:0{0}crwdne96184:0" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "crwdns96186:0crwdne96186:0" @@ -13158,8 +13171,8 @@ msgstr "crwdns96186:0crwdne96186:0" msgid "Invalid Transition" msgstr "crwdns96188:0crwdne96188:0" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13173,47 +13186,51 @@ msgstr "crwdns96192:0crwdne96192:0" msgid "Invalid Values" msgstr "crwdns152058:0crwdne152058:0" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "crwdns96194:0crwdne96194:0" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "crwdns96196:0crwdne96196:0" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "crwdns155546:0{0}crwdne155546:0" -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "crwdns157328:0crwdne157328:0" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "crwdns155548:0{0}crwdne155548:0" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "crwdns155550:0{0}crwdne155550:0" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "crwdns155552:0{0}crwdne155552:0" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "crwdns155554:0{0}crwdne155554:0" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "crwdns96198:0crwdne96198:0" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "crwdns155556:0{0}crwdne155556:0" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "crwdns155558:0{0}crwdne155558:0" -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "crwdns96200:0crwdne96200:0" @@ -13225,31 +13242,27 @@ msgstr "crwdns96202:0{0}crwdne96202:0" msgid "Invalid expression set in filter {0} ({1})" msgstr "crwdns96204:0{0}crwdnd96204:0{1}crwdne96204:0" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "crwdns155560:0{0}crwdne155560:0" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "crwdns155562:0{0}crwdnd155562:0{1}crwdne155562:0" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "crwdns155564:0{0}crwdne155564:0" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "crwdns96206:0{0}crwdne96206:0" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "crwdns155974:0{0}crwdne155974:0" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "crwdns155566:0{0}crwdne155566:0" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "crwdns96208:0{0}crwdne96208:0" @@ -13257,11 +13270,11 @@ msgstr "crwdns96208:0{0}crwdne96208:0" msgid "Invalid file path: {0}" msgstr "crwdns96210:0{0}crwdne96210:0" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "crwdns155568:0{0}crwdne155568:0" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "crwdns155570:0{0}crwdne155570:0" @@ -13269,20 +13282,28 @@ msgstr "crwdns155570:0{0}crwdne155570:0" msgid "Invalid filter: {0}" msgstr "crwdns96212:0{0}crwdne96212:0" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "crwdns155572:0{0}crwdne155572:0" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "crwdns155574:0crwdne155574:0" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "crwdns157330:0crwdne157330:0" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "crwdns96216:0{0}crwdne96216:0" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "crwdns157332:0crwdne157332:0" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "crwdns96218:0crwdne96218:0" @@ -13290,6 +13311,10 @@ msgstr "crwdns96218:0crwdne96218:0" msgid "Invalid naming series {}: dot (.) missing" msgstr "crwdns96220:0crwdne96220:0" +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "crwdns158722:0crwdne158722:0" + #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "crwdns96222:0crwdne96222:0" @@ -13298,19 +13323,27 @@ msgstr "crwdns96222:0crwdne96222:0" msgid "Invalid redirect regex in row #{}: {}" msgstr "crwdns96224:0crwdne96224:0" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "crwdns96226:0crwdne96226:0" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "crwdns160166:0crwdne160166:0" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "crwdns157334:0crwdne157334:0" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "crwdns155576:0{0}crwdne155576:0" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "crwdns155578:0{0}crwdne155578:0" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "crwdns155580:0{0}crwdne155580:0" @@ -13318,7 +13351,7 @@ msgstr "crwdns155580:0{0}crwdne155580:0" msgid "Invalid template file for import" msgstr "crwdns96230:0crwdne96230:0" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "crwdns148738:0crwdne148738:0" @@ -13327,20 +13360,20 @@ msgstr "crwdns148738:0crwdne148738:0" msgid "Invalid username or password" msgstr "crwdns96232:0crwdne96232:0" -#: frappe/model/naming.py:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "crwdns112698:0crwdne112698:0" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "crwdns96234:0crwdne96234:0" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "crwdns127666:0crwdne127666:0" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "crwdns96236:0{0}crwdne96236:0" @@ -13349,10 +13382,47 @@ msgstr "crwdns96236:0{0}crwdne96236:0" msgid "Inverse" msgstr "crwdns129786:0crwdne129786:0" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "crwdns158724:0crwdne158724:0" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "crwdns158726:0crwdne158726:0" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "crwdns157336:0crwdne157336:0" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "crwdns157338:0crwdne157338:0" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "crwdns157340:0crwdne157340:0" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "crwdns157342:0crwdne157342:0" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "crwdns157344:0{0}crwdne157344:0" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "crwdns157346:0{0}crwdne157346:0" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "crwdns96240:0crwdne96240:0" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "crwdns157348:0crwdne157348:0" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "crwdns96242:0crwdne96242:0" @@ -13377,7 +13447,7 @@ msgstr "crwdns129792:0crwdne129792:0" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "crwdns96252:0crwdne96252:0" @@ -13430,6 +13500,10 @@ msgstr "crwdns129804:0crwdne129804:0" msgid "Is Global" msgstr "crwdns96282:0crwdne96282:0" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "crwdns160168:0crwdne160168:0" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13456,8 +13530,13 @@ msgstr "crwdns129812:0crwdne129812:0" msgid "Is Primary" msgstr "crwdns129814:0crwdne129814:0" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "crwdns159206:0crwdne159206:0" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 msgid "Is Primary Contact" msgstr "crwdns129816:0crwdne129816:0" @@ -13488,7 +13567,7 @@ msgstr "crwdns129824:0crwdne129824:0" msgid "Is Published Field" msgstr "crwdns129826:0crwdne129826:0" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "crwdns96308:0crwdne96308:0" @@ -13513,7 +13592,7 @@ msgstr "crwdns155334:0crwdne155334:0" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "crwdns96314:0crwdne96314:0" @@ -13549,7 +13628,7 @@ msgstr "crwdns129836:0crwdne129836:0" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "crwdns96342:0crwdne96342:0" @@ -13755,11 +13834,11 @@ msgstr "crwdns96438:0crwdne96438:0" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "crwdns96440:0crwdne96440:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "crwdns96444:0crwdne96444:0" @@ -13780,12 +13859,14 @@ msgstr "crwdns111522:0crwdne111522:0" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -14047,7 +14128,7 @@ msgstr "crwdns96572:0crwdne96572:0" msgid "Landing Page" msgstr "crwdns129930:0crwdne129930:0" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "crwdns96576:0crwdne96576:0" @@ -14055,10 +14136,13 @@ msgstr "crwdns96576:0crwdne96576:0" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "crwdns96578:0crwdne96578:0" @@ -14146,8 +14230,12 @@ msgstr "crwdns129952:0crwdne129952:0" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "crwdns96608:0crwdne96608:0" @@ -14162,6 +14250,11 @@ msgstr "crwdns129954:0crwdne129954:0" msgid "Last Quarter" msgstr "crwdns129958:0crwdne129958:0" +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "crwdns158380:0crwdne158380:0" + #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json @@ -14178,11 +14271,6 @@ msgstr "crwdns148928:0crwdne148928:0" msgid "Last Sync On" msgstr "crwdns129962:0crwdne129962:0" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "crwdns142888:0crwdne142888:0" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14293,7 +14381,7 @@ msgstr "crwdns129984:0crwdne129984:0" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "crwdns96684:0crwdne96684:0" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "crwdns96686:0{0}crwdne96686:0" @@ -14342,8 +14430,8 @@ msgstr "crwdns129986:0crwdne129986:0" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14371,7 +14459,7 @@ msgstr "crwdns129992:0crwdne129992:0" msgid "Letter Head Scripts" msgstr "crwdns110988:0crwdne110988:0" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "crwdns96712:0crwdne96712:0" @@ -14388,7 +14476,7 @@ msgstr "crwdns129994:0crwdne129994:0" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "crwdns96716:0crwdne96716:0" @@ -14438,20 +14526,6 @@ msgstr "crwdns96740:0crwdne96740:0" msgid "Like" msgstr "crwdns96742:0crwdne96742:0" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "crwdns130006:0crwdne130006:0" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "crwdns130008:0crwdne130008:0" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "crwdns96752:0{0}crwdnd96752:0{1}crwdne96752:0" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "crwdns96754:0crwdne96754:0" @@ -14492,6 +14566,7 @@ msgstr "crwdns130016:0crwdne130016:0" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14505,6 +14580,7 @@ msgstr "crwdns130016:0crwdne130016:0" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "crwdns130018:0crwdne130018:0" @@ -14635,10 +14711,15 @@ msgstr "crwdns130048:0crwdne130048:0" msgid "Linked With" msgstr "crwdns96840:0crwdne96840:0" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +msgstr "crwdns157350:0crwdne157350:0" + #. 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 (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14646,6 +14727,7 @@ msgstr "crwdns96840:0crwdne96840:0" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "crwdns96842:0crwdne96842:0" @@ -14687,7 +14769,7 @@ msgstr "crwdns96864:0crwdne96864:0" msgid "List Settings" msgstr "crwdns130060:0crwdne130060:0" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "crwdns96868:0crwdne96868:0" @@ -14728,7 +14810,7 @@ msgstr "crwdns111524:0crwdne111524:0" msgid "List setting message" msgstr "crwdns151426:0crwdne151426:0" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "crwdns96884:0crwdne96884:0" @@ -14737,9 +14819,8 @@ msgstr "crwdns96884:0crwdne96884:0" msgid "Load Balancing" msgstr "crwdns130066:0crwdne130066:0" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "crwdns96888:0crwdne96888:0" @@ -14756,10 +14837,10 @@ msgstr "crwdns143088:0crwdne143088:0" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "crwdns96892:0crwdne96892:0" @@ -14771,7 +14852,7 @@ msgstr "crwdns110994:0crwdne110994:0" msgid "Loading import file..." msgstr "crwdns96894:0crwdne96894:0" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "crwdns110996:0crwdne110996:0" @@ -14781,7 +14862,7 @@ msgstr "crwdns110996:0crwdne110996:0" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "crwdns96898:0crwdne96898:0" @@ -14842,7 +14923,7 @@ msgstr "crwdns96916:0crwdne96916:0" msgid "Log out" msgstr "crwdns96918:0crwdne96918:0" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "crwdns96920:0crwdne96920:0" @@ -14902,7 +14983,7 @@ msgstr "crwdns96944:0crwdne96944:0" msgid "Login and view in Browser" msgstr "crwdns96948:0crwdne96948:0" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "crwdns96950:0{0}crwdne96950:0" @@ -14910,7 +14991,7 @@ msgstr "crwdns96950:0{0}crwdne96950:0" msgid "Login link sent to your email" msgstr "crwdns110998:0crwdne110998:0" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "crwdns96952:0crwdne96952:0" @@ -14963,7 +15044,7 @@ msgstr "crwdns130088:0crwdne130088:0" msgid "Login with email link expiry (in minutes)" msgstr "crwdns130090:0crwdne130090:0" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "crwdns96970:0crwdne96970:0" @@ -14982,7 +15063,7 @@ msgstr "crwdns155976:0crwdne155976:0" msgid "Logout" msgstr "crwdns130092:0crwdne130092:0" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "crwdns96976:0crwdne96976:0" @@ -15086,7 +15167,10 @@ msgid "Major" msgstr "crwdns130110:0crwdne130110:0" #. 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 +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "crwdns130112:0crwdne130112:0" @@ -15162,7 +15246,7 @@ msgstr "crwdns130120:0crwdne130120:0" msgid "Mandatory Depends On (JS)" msgstr "crwdns130122:0crwdne130122:0" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "crwdns97056:0crwdne97056:0" @@ -15174,15 +15258,15 @@ msgstr "crwdns97058:0crwdne97058:0" msgid "Mandatory field: {0}" msgstr "crwdns97060:0{0}crwdne97060:0" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "crwdns97062:0{0}crwdnd97062:0{1}crwdne97062:0" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "crwdns97064:0{0}crwdne97064:0" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "crwdns97066:0crwdne97066:0" @@ -15263,10 +15347,8 @@ msgid "Mark as Unread" msgstr "crwdns97092:0crwdne97092:0" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15347,7 +15429,13 @@ msgstr "crwdns151428:0crwdne151428:0" msgid "Max auto email report per user" msgstr "crwdns130156:0crwdne130156:0" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "crwdns158978:0crwdne158978:0" + +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "crwdns97132:0{0}crwdne97132:0" @@ -15356,20 +15444,15 @@ msgstr "crwdns97132:0{0}crwdne97132:0" msgid "Maximum" msgstr "crwdns130158:0crwdne130158:0" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "crwdns97136:0{0}crwdnd97136:0{1}crwdnd97136:0{2}crwdne97136:0" -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "crwdns130160:0crwdne130160:0" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "crwdns97142:0{0}crwdne97142:0" -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "crwdns97146:0{0}crwdne97146:0" @@ -15385,7 +15468,7 @@ msgstr "crwdns111006:0crwdne111006:0" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15398,7 +15481,7 @@ msgstr "crwdns97150:0crwdne97150:0" msgid "Meeting" msgstr "crwdns130166:0crwdne130166:0" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "crwdns130168:0crwdne130168:0" @@ -15439,7 +15522,7 @@ msgstr "crwdns97168:0crwdne97168:0" msgid "Merge with existing" msgstr "crwdns97170:0crwdne97170:0" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "crwdns97172:0crwdne97172:0" @@ -15465,7 +15548,7 @@ msgstr "crwdns97172:0crwdne97172:0" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15505,7 +15588,7 @@ msgstr "crwdns148312:0crwdne148312:0" msgid "Message Type" msgstr "crwdns130188:0crwdne130188:0" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "crwdns97214:0crwdne97214:0" @@ -15537,29 +15620,21 @@ msgstr "crwdns130194:0crwdne130194:0" msgid "Meta" msgstr "crwdns130196:0crwdne130196:0" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "crwdns97228:0crwdne97228:0" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "crwdns97234:0crwdne97234:0" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "crwdns130198:0crwdne130198:0" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "crwdns97246:0crwdne97246:0" @@ -15612,7 +15687,7 @@ msgstr "crwdns130200:0crwdne130200:0" msgid "Method Not Allowed" msgstr "crwdns142858:0crwdne142858:0" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "crwdns97266:0crwdne97266:0" @@ -15628,6 +15703,11 @@ msgstr "crwdns130202:0crwdne130202:0" msgid "Middle Name" msgstr "crwdns130204:0crwdne130204:0" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "crwdns160170:0crwdne160170:0" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15694,11 +15774,11 @@ msgstr "crwdns148670:0crwdne148670:0" msgid "Missing DocType" msgstr "crwdns97290:0crwdne97290:0" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "crwdns97292:0crwdne97292:0" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "crwdns97294:0crwdne97294:0" @@ -15734,15 +15814,16 @@ msgstr "crwdns97304:0crwdne97304:0" msgid "Mobile No" msgstr "crwdns97306:0crwdne97306:0" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "crwdns160172:0crwdne160172:0" + #. 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 "crwdns130212:0crwdne130212:0" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "crwdns97316:0crwdne97316:0" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15763,7 +15844,7 @@ msgstr "crwdns97316:0crwdne97316:0" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -15939,10 +16020,12 @@ msgstr "crwdns149126:0crwdne149126:0" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "crwdns130230:0crwdne130230:0" @@ -15961,7 +16044,7 @@ msgstr "crwdns130232:0crwdne130232:0" msgid "Most Used" msgstr "crwdns97454:0crwdne97454:0" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "crwdns97456:0crwdne97456:0" @@ -15972,7 +16055,7 @@ msgstr "crwdns97456:0crwdne97456:0" msgid "Move" msgstr "crwdns97458:0crwdne97458:0" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "crwdns97460:0crwdne97460:0" @@ -16008,7 +16091,7 @@ msgstr "crwdns143092:0crwdne143092:0" msgid "Move the current field and the following fields to a new column" msgstr "crwdns143094:0crwdne143094:0" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "crwdns97472:0crwdne97472:0" @@ -16035,7 +16118,7 @@ msgstr "crwdns148674:0crwdne148674:0" msgid "Ms" msgstr "crwdns148676:0crwdne148676:0" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "crwdns97478:0crwdne97478:0" @@ -16058,7 +16141,7 @@ msgstr "crwdns130242:0{0}crwdnd130242:0{0}crwdne130242:0" msgid "Must be of type \"Attach Image\"" msgstr "crwdns130244:0crwdne130244:0" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "crwdns97490:0crwdne97490:0" @@ -16076,7 +16159,7 @@ msgid "Mx" msgstr "crwdns148678:0crwdne148678:0" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16114,9 +16197,9 @@ msgstr "crwdns130250:0crwdne130250:0" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16126,11 +16209,11 @@ msgstr "crwdns97508:0crwdne97508:0" msgid "Name (Doc Name)" msgstr "crwdns111010:0crwdne111010:0" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "crwdns97518:0crwdne97518:0" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "crwdns97520:0{0}crwdne97520:0" @@ -16142,7 +16225,7 @@ msgstr "crwdns97522:0crwdne97522:0" msgid "Name of the new Print Format" msgstr "crwdns97524:0crwdne97524:0" -#: frappe/model/naming.py:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "crwdns97526:0{0}crwdnd97526:0{1}crwdne97526:0" @@ -16181,7 +16264,7 @@ msgstr "crwdns130258:0crwdne130258:0" msgid "Naming Series" msgstr "crwdns130260:0crwdne130260:0" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "crwdns97546:0crwdne97546:0" @@ -16218,12 +16301,12 @@ msgstr "crwdns130264:0crwdne130264:0" msgid "Navbar Template Values" msgstr "crwdns130266:0crwdne130266:0" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "crwdns97564:0crwdne97564:0" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "crwdns97566:0crwdne97566:0" @@ -16238,7 +16321,11 @@ msgstr "crwdns97568:0crwdne97568:0" msgid "Navigation Settings" msgstr "crwdns130268:0crwdne130268:0" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "crwdns159976:0crwdne159976:0" + +#: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "crwdns97572:0crwdne97572:0" @@ -16246,7 +16333,7 @@ msgstr "crwdns97572:0crwdne97572:0" msgid "Negative Value" msgstr "crwdns97576:0crwdne97576:0" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "crwdns155586:0crwdne155586:0" @@ -16259,6 +16346,12 @@ msgstr "crwdns97578:0crwdne97578:0" msgid "Network Printer Settings" msgstr "crwdns97580:0crwdne97580:0" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "crwdns159978:0crwdne159978:0" + #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/success_action/success_action.js:57 @@ -16267,7 +16360,7 @@ msgstr "crwdns97580:0crwdne97580:0" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16288,10 +16381,6 @@ msgstr "crwdns111012:0crwdne111012:0" msgid "New Chart" msgstr "crwdns111014:0crwdne111014:0" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "crwdns97592:0{0}crwdnd97592:0{1}crwdne97592:0" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "crwdns111016:0crwdne111016:0" @@ -16300,8 +16389,8 @@ msgstr "crwdns111016:0crwdne111016:0" msgid "New Custom Block" msgstr "crwdns111018:0crwdne111018:0" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" msgstr "crwdns97594:0crwdne97594:0" @@ -16332,7 +16421,7 @@ msgstr "crwdns97604:0crwdne97604:0" msgid "New Folder" msgstr "crwdns97606:0crwdne97606:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "crwdns97608:0crwdne97608:0" @@ -16367,12 +16456,12 @@ msgstr "crwdns111022:0crwdne111022:0" msgid "New Onboarding" msgstr "crwdns111024:0crwdne111024:0" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "crwdns97622:0crwdne97622:0" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "crwdns97624:0crwdne97624:0" @@ -16381,7 +16470,7 @@ msgstr "crwdns97624:0crwdne97624:0" msgid "New Quick List" msgstr "crwdns111026:0crwdne111026:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "crwdns97626:0crwdne97626:0" @@ -16399,8 +16488,8 @@ msgstr "crwdns111028:0crwdne111028:0" msgid "New Users (Last 30 days)" msgstr "crwdns130272:0crwdne130272:0" -#: frappe/core/doctype/version/version_view.html:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "crwdns111030:0crwdne111030:0" @@ -16457,13 +16546,13 @@ msgstr "crwdns130276:0crwdne130276:0" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "crwdns97640:0{0}crwdne97640:0" @@ -16479,7 +16568,7 @@ msgstr "crwdns97644:0{0}crwdnd97644:0{1}crwdnd97644:0{2}crwdne97644:0" msgid "New {0} {1} created" msgstr "crwdns97646:0{0}crwdnd97646:0{1}crwdne97646:0" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "crwdns97648:0{0}crwdnd97648:0{1}crwdne97648:0" @@ -16487,7 +16576,7 @@ msgstr "crwdns97648:0{0}crwdnd97648:0{1}crwdne97648:0" msgid "New {} releases for the following apps are available" msgstr "crwdns97650:0crwdne97650:0" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "crwdns97652:0{0}crwdne97652:0" @@ -16500,7 +16589,7 @@ msgstr "crwdns97662:0crwdne97662:0" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16607,14 +16696,15 @@ msgstr "crwdns130294:0crwdne130294:0" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "crwdns97696:0crwdne97696:0" @@ -16664,6 +16754,10 @@ msgstr "crwdns97720:0crwdne97720:0" msgid "No Email Accounts Assigned" msgstr "crwdns111042:0crwdne111042:0" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "crwdns157352:0{0}crwdne157352:0" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "crwdns97722:0crwdne97722:0" @@ -16699,15 +16793,15 @@ msgstr "crwdns97734:0{0}crwdne97734:0" msgid "No Label" msgstr "crwdns111044:0crwdne111044:0" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: frappe/public/js/frappe/list/bulk_operations.js:98 #: frappe/public/js/frappe/list/bulk_operations.js:170 #: frappe/utils/weasyprint.py:52 msgid "No Letterhead" msgstr "crwdns97736:0crwdne97736:0" -#: frappe/model/naming.py:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "crwdns97738:0{0}crwdne97738:0" @@ -16715,7 +16809,7 @@ msgstr "crwdns97738:0{0}crwdne97738:0" msgid "No New notifications" msgstr "crwdns111046:0crwdne111046:0" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "crwdns97740:0crwdne97740:0" @@ -16735,11 +16829,11 @@ msgstr "crwdns97746:0crwdne97746:0" msgid "No Preview" msgstr "crwdns111048:0crwdne111048:0" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "crwdns111050:0crwdne111050:0" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "crwdns97748:0crwdne97748:0" @@ -16755,11 +16849,11 @@ msgstr "crwdns97750:0crwdne97750:0" msgid "No Results found" msgstr "crwdns97752:0crwdne97752:0" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "crwdns97754:0crwdne97754:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "crwdns97756:0crwdne97756:0" @@ -16767,7 +16861,7 @@ msgstr "crwdns97756:0crwdne97756:0" msgid "No Suggestions" msgstr "crwdns127876:0crwdne127876:0" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "crwdns97758:0crwdne97758:0" @@ -16779,7 +16873,7 @@ msgstr "crwdns111054:0crwdne111054:0" msgid "No address added yet." msgstr "crwdns111058:0crwdne111058:0" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "crwdns97760:0crwdne97760:0" @@ -16807,23 +16901,19 @@ msgstr "crwdns97770:0crwdne97770:0" msgid "No changes to update" msgstr "crwdns97772:0crwdne97772:0" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "crwdns97774:0crwdne97774:0" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " -msgstr "crwdns97776:0crwdne97776:0" +msgid "No comments yet." +msgstr "crwdns158728:0crwdne158728:0" #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." msgstr "crwdns111060:0crwdne111060:0" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "crwdns97778:0crwdne97778:0" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "crwdns97780:0crwdne97780:0" @@ -16839,11 +16929,15 @@ msgstr "crwdns97784:0{0}crwdne97784:0" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "crwdns97786:0crwdne97786:0" +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "crwdns157354:0crwdne157354:0" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "crwdns111062:0crwdne111062:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "crwdns111064:0crwdne111064:0" @@ -16867,7 +16961,7 @@ msgstr "crwdns97790:0crwdne97790:0" msgid "No matching records. Search something new" msgstr "crwdns97792:0crwdne97792:0" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "crwdns97794:0crwdne97794:0" @@ -16911,7 +17005,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "crwdns97810:0{0}crwdnd97810:0{1}crwdne97810:0" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "crwdns97812:0{0}crwdne97812:0" @@ -16923,7 +17017,7 @@ msgstr "crwdns97814:0{0}crwdnd97814:0{1}crwdnd97814:0{2}crwdne97814:0" msgid "No records deleted" msgstr "crwdns97816:0crwdne97816:0" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "crwdns97818:0{0}crwdne97818:0" @@ -16939,7 +17033,7 @@ msgstr "crwdns97820:0crwdne97820:0" msgid "No rows" msgstr "crwdns148314:0crwdne148314:0" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "crwdns143098:0crwdne143098:0" @@ -16959,11 +17053,11 @@ msgstr "crwdns97824:0{0}crwdne97824:0" msgid "No {0} Found" msgstr "crwdns111076:0{0}crwdne111076:0" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "crwdns111078:0{0}crwdne111078:0" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "crwdns97826:0{0}crwdnd97826:0{0}crwdne97826:0" @@ -16972,7 +17066,7 @@ msgid "No {0} mail" msgstr "crwdns97828:0{0}crwdne97828:0" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "crwdns111418:0crwdne111418:0" @@ -17015,7 +17109,7 @@ msgstr "crwdns130308:0crwdne130308:0" msgid "Normalized Query" msgstr "crwdns130310:0crwdne130310:0" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "crwdns97846:0crwdne97846:0" @@ -17036,7 +17130,7 @@ msgstr "crwdns97850:0crwdne97850:0" msgid "Not Equals" msgstr "crwdns97852:0crwdne97852:0" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "crwdns97854:0crwdne97854:0" @@ -17062,20 +17156,19 @@ msgstr "crwdns97862:0crwdne97862:0" msgid "Not Nullable" msgstr "crwdns130314:0crwdne130314:0" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "crwdns97866:0crwdne97866:0" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "crwdns97868:0{0}crwdne97868:0" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17084,10 +17177,10 @@ msgstr "crwdns97870:0crwdne97870:0" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "crwdns97872:0crwdne97872:0" @@ -17119,7 +17212,7 @@ msgstr "crwdns97886:0crwdne97886:0" msgid "Not a valid User Image." msgstr "crwdns97888:0crwdne97888:0" -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "crwdns97890:0crwdne97890:0" @@ -17135,11 +17228,11 @@ msgstr "crwdns97892:0crwdne97892:0" msgid "Not allowed for {0}: {1}" msgstr "crwdns97894:0{0}crwdnd97894:0{1}crwdne97894:0" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "crwdns97896:0{0}crwdnd97896:0{0}crwdne97896:0" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "crwdns97898:0crwdne97898:0" @@ -17163,27 +17256,27 @@ msgstr "crwdns97906:0crwdne97906:0" msgid "Not in Developer Mode" msgstr "crwdns97908:0crwdne97908:0" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "crwdns97910:0crwdne97910:0" -#: frappe/core/doctype/system_settings/system_settings.py:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "crwdns97912:0crwdne97912:0" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "crwdns97914:0{0}crwdne97914:0" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17218,7 +17311,7 @@ msgstr "crwdns130318:0crwdne130318:0" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "crwdns130320:0crwdne130320:0" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "crwdns111420:0crwdne111420:0" @@ -17242,10 +17335,9 @@ msgstr "crwdns97940:0crwdne97940:0" msgid "Nothing left to undo" msgstr "crwdns97942:0crwdne97942:0" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "crwdns97944:0crwdne97944:0" @@ -17291,15 +17383,15 @@ msgstr "crwdns97970:0crwdne97970:0" msgid "Notification sent to" msgstr "crwdns111084:0crwdne111084:0" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "crwdns142914:0{0}crwdne142914:0" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "crwdns142916:0{0}crwdnd142916:0{1}crwdnd142916:0{2}crwdne142916:0" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "crwdns142918:0{0}crwdne142918:0" @@ -17350,7 +17442,7 @@ msgstr "crwdns130332:0crwdne130332:0" msgid "Notify users with a popup when they log in" msgstr "crwdns130334:0crwdne130334:0" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "crwdns97990:0crwdne97990:0" @@ -17408,12 +17500,12 @@ msgstr "crwdns130346:0crwdne130346:0" msgid "Number of Queries" msgstr "crwdns130348:0crwdne130348:0" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "crwdns98018:0crwdne98018:0" -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "crwdns98020:0crwdne98020:0" @@ -17522,11 +17614,11 @@ msgstr "crwdns130366:0crwdne130366:0" msgid "OTP Issuer Name" msgstr "crwdns130368:0crwdne130368:0" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "crwdns98060:0{0}crwdne98060:0" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "crwdns98062:0crwdne98062:0" @@ -17645,7 +17737,7 @@ msgstr "crwdns149004:0crwdne149004:0" msgid "On or Before" msgstr "crwdns149006:0crwdne149006:0" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "crwdns111096:0{0}crwdnd111096:0{1}crwdne111096:0" @@ -17685,7 +17777,7 @@ msgstr "crwdns98098:0crwdne98098:0" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "crwdns98100:0crwdne98100:0" @@ -17730,7 +17822,7 @@ msgstr "crwdns98120:0crwdne98120:0" msgid "Only Allow Edit For" msgstr "crwdns130406:0crwdne130406:0" -#: frappe/core/doctype/doctype/doctype.py:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "crwdns98124:0crwdne98124:0" @@ -17747,7 +17839,7 @@ msgstr "crwdns98128:0crwdne98128:0" msgid "Only allowed to export customizations in developer mode" msgstr "crwdns98132:0crwdne98132:0" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "crwdns127690:0crwdne127690:0" @@ -17766,19 +17858,19 @@ msgstr "crwdns98138:0crwdne98138:0" msgid "Only one {0} can be set as primary." msgstr "crwdns98140:0{0}crwdne98140:0" -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "crwdns98142:0crwdne98142:0" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "crwdns98144:0crwdne98144:0" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "crwdns98146:0crwdne98146:0" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "crwdns151810:0crwdne151810:0" @@ -17848,7 +17940,7 @@ msgstr "crwdns130416:0crwdne130416:0" msgid "Open Settings" msgstr "crwdns98178:0crwdne98178:0" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "crwdns111104:0crwdne111104:0" @@ -17866,7 +17958,7 @@ msgstr "crwdns148316:0crwdne148316:0" msgid "Open a module or tool" msgstr "crwdns98184:0crwdne98184:0" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "crwdns155340:0crwdne155340:0" @@ -17874,7 +17966,7 @@ msgstr "crwdns155340:0crwdne155340:0" msgid "Open in a new tab" msgstr "crwdns143102:0crwdne143102:0" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "crwdns98186:0crwdne98186:0" @@ -17889,13 +17981,13 @@ msgstr "crwdns98188:0crwdne98188:0" #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "crwdns98190:0{0}crwdne98190:0" @@ -17904,6 +17996,10 @@ msgstr "crwdns98190:0{0}crwdne98190:0" msgid "OpenID Configuration" msgstr "crwdns130422:0crwdne130422:0" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "crwdns158372:0crwdne158372:0" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" @@ -17919,7 +18015,7 @@ msgstr "crwdns130426:0crwdne130426:0" msgid "Operation" msgstr "crwdns130428:0crwdne130428:0" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "crwdns98200:0{0}crwdne98200:0" @@ -17945,7 +18041,7 @@ msgstr "crwdns98208:0crwdne98208:0" msgid "Option 3" msgstr "crwdns98210:0crwdne98210:0" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "crwdns98212:0{0}crwdnd98212:0{1}crwdne98212:0" @@ -17965,6 +18061,7 @@ msgstr "crwdns130432:0crwdne130432:0" #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -17973,11 +18070,12 @@ msgstr "crwdns130432:0crwdne130432:0" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "crwdns111106:0crwdne111106:0" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "crwdns98232:0crwdne98232:0" @@ -17986,7 +18084,7 @@ msgstr "crwdns98232:0crwdne98232:0" msgid "Options Help" msgstr "crwdns130434:0crwdne130434:0" -#: frappe/core/doctype/doctype/doctype.py:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "crwdns98236:0crwdne98236:0" @@ -17994,7 +18092,7 @@ msgstr "crwdns98236:0crwdne98236:0" msgid "Options for select. Each option on a new line." msgstr "crwdns98238:0crwdne98238:0" -#: frappe/core/doctype/doctype/doctype.py:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 msgid "Options for {0} must be set before setting the default value." msgstr "crwdns98240:0{0}crwdne98240:0" @@ -18002,7 +18100,7 @@ msgstr "crwdns98240:0{0}crwdne98240:0" msgid "Options is required for field {0} of type {1}" msgstr "crwdns98242:0{0}crwdnd98242:0{1}crwdne98242:0" -#: frappe/model/base_document.py:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "crwdns98244:0{0}crwdne98244:0" @@ -18018,7 +18116,7 @@ msgstr "crwdns130436:0crwdne130436:0" msgid "Order" msgstr "crwdns130438:0crwdne130438:0" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "crwdns155590:0crwdne155590:0" @@ -18034,12 +18132,12 @@ msgstr "crwdns130440:0crwdne130440:0" msgid "Org History Heading" msgstr "crwdns130442:0crwdne130442:0" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "crwdns98256:0crwdne98256:0" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "crwdns111108:0crwdne111108:0" @@ -18107,10 +18205,6 @@ msgstr "crwdns130458:0crwdne130458:0" msgid "Overview" msgstr "crwdns111110:0crwdne111110:0" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "crwdns98284:0crwdne98284:0" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" @@ -18118,9 +18212,9 @@ msgstr "crwdns130460:0crwdne130460:0" #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/printing/page/print/print.js:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "crwdns98288:0crwdne98288:0" @@ -18161,11 +18255,11 @@ msgstr "crwdns98298:0crwdne98298:0" msgid "PDF generation failed because of broken image links" msgstr "crwdns98300:0crwdne98300:0" -#: frappe/printing/page/print/print.js:616 +#: frappe/printing/page/print/print.js:656 msgid "PDF generation may not work as expected." msgstr "crwdns127696:0crwdne127696:0" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:574 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "crwdns98302:0crwdne98302:0" @@ -18337,7 +18431,7 @@ msgstr "crwdns111526:0crwdne111526:0" #: frappe/public/html/print_template.html:25 #: frappe/public/js/frappe/views/reports/print_tree.html:89 -#: frappe/public/js/frappe/web_form/web_form.js:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "crwdns98382:0{0}crwdnd98382:0{1}crwdne98382:0" @@ -18364,7 +18458,7 @@ msgstr "crwdns130496:0crwdne130496:0" msgid "Parent Document Type" msgstr "crwdns130498:0crwdne130498:0" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "crwdns98394:0crwdne98394:0" @@ -18381,11 +18475,11 @@ msgstr "crwdns130502:0crwdne130502:0" #. Label of the nsm_parent_field (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype.py:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "crwdns98400:0crwdne98400:0" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "crwdns98404:0crwdne98404:0" @@ -18394,7 +18488,7 @@ msgstr "crwdns98404:0crwdne98404:0" msgid "Parent Label" msgstr "crwdns130504:0crwdne130504:0" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 msgid "Parent Missing" msgstr "crwdns98408:0crwdne98408:0" @@ -18468,8 +18562,8 @@ msgstr "crwdns130516:0crwdne130516:0" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18479,7 +18573,7 @@ msgstr "crwdns130516:0crwdne130516:0" msgid "Password" msgstr "crwdns98434:0crwdne98434:0" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "crwdns98448:0crwdne98448:0" @@ -18492,7 +18586,7 @@ msgstr "crwdns98450:0crwdne98450:0" msgid "Password Reset Link Generation Limit" msgstr "crwdns130518:0crwdne130518:0" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "crwdns98454:0crwdne98454:0" @@ -18509,6 +18603,10 @@ msgstr "crwdns130520:0crwdne130520:0" msgid "Password is required or select Awaiting Password" msgstr "crwdns98460:0crwdne98460:0" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "crwdns158382:0crwdne158382:0" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "crwdns98462:0crwdne98462:0" @@ -18517,7 +18615,7 @@ msgstr "crwdns98462:0crwdne98462:0" msgid "Password not found for {0} {1} {2}" msgstr "crwdns98464:0{0}crwdnd98464:0{1}crwdnd98464:0{2}crwdne98464:0" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "crwdns142862:0crwdne142862:0" @@ -18525,11 +18623,11 @@ msgstr "crwdns142862:0crwdne142862:0" msgid "Password set" msgstr "crwdns98468:0crwdne98468:0" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "crwdns98470:0crwdne98470:0" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." msgstr "crwdns98472:0crwdne98472:0" @@ -18537,7 +18635,7 @@ msgstr "crwdns98472:0crwdne98472:0" msgid "Passwords do not match" msgstr "crwdns98474:0crwdne98474:0" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "crwdns98476:0crwdne98476:0" @@ -18607,10 +18705,12 @@ msgstr "crwdns152010:0crwdne152010:0" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "crwdns130532:0crwdne130532:0" @@ -18686,7 +18786,7 @@ msgstr "crwdns98536:0{0}crwdne98536:0" msgid "Permanently delete {0}?" msgstr "crwdns98538:0{0}crwdne98538:0" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "crwdns98540:0crwdne98540:0" @@ -18746,16 +18846,16 @@ msgstr "crwdns130556:0crwdne130556:0" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: frappe/core/page/permission_manager/permission_manager.js:221 #: frappe/core/workspace/users/users.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Permissions" msgstr "crwdns98558:0crwdne98558:0" -#: frappe/core/doctype/doctype/doctype.py:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "crwdns98572:0crwdne98572:0" @@ -18817,15 +18917,18 @@ msgstr "crwdns98584:0crwdne98584:0" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -18838,13 +18941,13 @@ msgstr "crwdns130562:0crwdne130562:0" msgid "Phone No." msgstr "crwdns130564:0crwdne130564:0" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 msgid "Phone Number {0} set in field {1} is not valid." msgstr "crwdns98606:0{0}crwdnd98606:0{1}crwdne98606:0" -#: frappe/public/js/frappe/form/print_utils.js:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "crwdns98608:0crwdne98608:0" @@ -18904,11 +19007,11 @@ msgstr "crwdns98626:0crwdne98626:0" msgid "Please Set Chart" msgstr "crwdns98628:0crwdne98628:0" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "crwdns98630:0crwdne98630:0" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "crwdns98632:0crwdne98632:0" @@ -18916,7 +19019,7 @@ msgstr "crwdns98632:0crwdne98632:0" msgid "Please add a valid comment." msgstr "crwdns98634:0crwdne98634:0" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "crwdns98636:0crwdne98636:0" @@ -18924,11 +19027,11 @@ msgstr "crwdns98636:0crwdne98636:0" msgid "Please attach a file first." msgstr "crwdns98638:0crwdne98638:0" -#: frappe/printing/doctype/letter_head/letter_head.py:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 msgid "Please attach an image file to set HTML for Footer." msgstr "crwdns98640:0crwdne98640:0" -#: frappe/printing/doctype/letter_head/letter_head.py:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "crwdns98642:0crwdne98642:0" @@ -18936,19 +19039,15 @@ msgstr "crwdns98642:0crwdne98642:0" msgid "Please attach the package" msgstr "crwdns98644:0crwdne98644:0" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "crwdns98646:0crwdne98646:0" - #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "crwdns98648:0crwdne98648:0" -#: frappe/model/base_document.py:951 +#: frappe/model/base_document.py:1008 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "crwdns98650:0{0}crwdne98650:0" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "crwdns98652:0crwdne98652:0" @@ -18980,11 +19079,11 @@ msgstr "crwdns98660:0crwdne98660:0" msgid "Please confirm your action to {0} this document." msgstr "crwdns98664:0{0}crwdne98664:0" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "crwdns127708:0crwdne127708:0" -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "crwdns98668:0crwdne98668:0" @@ -19000,20 +19099,20 @@ msgstr "crwdns98672:0{0}crwdne98672:0" msgid "Please do not change the template headings." msgstr "crwdns98674:0crwdne98674:0" -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" msgstr "crwdns98676:0crwdne98676:0" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "crwdns98678:0crwdne98678:0" #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "crwdns98680:0crwdne98680:0" @@ -19050,7 +19149,7 @@ msgstr "crwdns98694:0crwdne98694:0" msgid "Please enter Client Secret before social login is enabled" msgstr "crwdns98696:0crwdne98696:0" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "crwdns98698:0crwdne98698:0" @@ -19087,11 +19186,12 @@ msgstr "crwdns98710:0crwdne98710:0" msgid "Please enter your old password." msgstr "crwdns98712:0crwdne98712:0" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "crwdns98714:0{0}crwdnd98714:0{1}crwdne98714:0" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "crwdns98718:0crwdne98718:0" @@ -19099,11 +19199,11 @@ msgstr "crwdns98718:0crwdne98718:0" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "crwdns98720:0crwdne98720:0" -#: frappe/model/document.py:988 +#: frappe/model/document.py:992 msgid "Please refresh to get the latest document." msgstr "crwdns98722:0crwdne98722:0" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:575 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "crwdns98724:0crwdne98724:0" @@ -19119,7 +19219,7 @@ msgstr "crwdns98730:0crwdne98730:0" msgid "Please save the document before removing assignment" msgstr "crwdns98732:0crwdne98732:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "crwdns98734:0crwdne98734:0" @@ -19127,7 +19227,7 @@ msgstr "crwdns98734:0crwdne98734:0" msgid "Please save to edit the template." msgstr "crwdns98736:0crwdne98736:0" -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "crwdns98740:0crwdne98740:0" @@ -19135,19 +19235,19 @@ msgstr "crwdns98740:0crwdne98740:0" msgid "Please select Entity Type first" msgstr "crwdns98742:0crwdne98742:0" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "crwdns98744:0crwdne98744:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "crwdns111128:0crwdne111128:0" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "crwdns98746:0{1}crwdne98746:0" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "crwdns143106:0crwdne143106:0" @@ -19155,7 +19255,7 @@ msgstr "crwdns143106:0crwdne143106:0" msgid "Please select a file or url" msgstr "crwdns98748:0crwdne98748:0" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" msgstr "crwdns98750:0crwdne98750:0" @@ -19167,7 +19267,7 @@ msgstr "crwdns98752:0crwdne98752:0" msgid "Please select applicable Doctypes" msgstr "crwdns98754:0crwdne98754:0" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "crwdns98756:0{0}crwdne98756:0" @@ -19193,11 +19293,11 @@ msgstr "crwdns98764:0{0}crwdne98764:0" msgid "Please set Email Address" msgstr "crwdns98768:0crwdne98768:0" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:589 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "crwdns98770:0crwdne98770:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "crwdns98772:0crwdne98772:0" @@ -19205,7 +19305,7 @@ msgstr "crwdns98772:0crwdne98772:0" msgid "Please set filters value in Report Filter table." msgstr "crwdns98774:0crwdne98774:0" -#: frappe/model/naming.py:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "crwdns98776:0crwdne98776:0" @@ -19217,7 +19317,7 @@ msgstr "crwdns98778:0crwdne98778:0" msgid "Please set the series to be used." msgstr "crwdns98780:0crwdne98780:0" -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "crwdns98782:0crwdne98782:0" @@ -19241,23 +19341,23 @@ msgstr "crwdns98790:0crwdne98790:0" msgid "Please specify a valid parent DocType for {0}" msgstr "crwdns98792:0{0}crwdne98792:0" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "crwdns148938:0crwdne148938:0" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "crwdns148940:0crwdne148940:0" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "crwdns98794:0crwdne98794:0" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "crwdns148942:0crwdne148942:0" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "crwdns98796:0crwdne98796:0" @@ -19278,7 +19378,7 @@ msgstr "crwdns98802:0crwdne98802:0" msgid "Please use following links to download file backup." msgstr "crwdns155992:0crwdne155992:0" -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "crwdns111462:0crwdne111462:0" @@ -19332,7 +19432,7 @@ msgstr "crwdns98830:0crwdne98830:0" msgid "Portal Settings" msgstr "crwdns98832:0crwdne98832:0" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "crwdns98836:0crwdne98836:0" @@ -19360,6 +19460,7 @@ msgstr "crwdns130592:0crwdne130592:0" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "crwdns130594:0crwdne130594:0" @@ -19368,15 +19469,7 @@ msgstr "crwdns130594:0crwdne130594:0" msgid "Posting Timestamp" msgstr "crwdns130596:0crwdne130596:0" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "crwdns98850:0{0}crwdne98850:0" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "crwdns98852:0{0}crwdne98852:0" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "crwdns155592:0{0}crwdne155592:0" @@ -19391,7 +19484,11 @@ msgstr "crwdns155592:0{0}crwdne155592:0" msgid "Precision" msgstr "crwdns130600:0crwdne130600:0" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "crwdns159238:0{0}crwdnd159238:0{1}crwdnd159238:0{2}crwdne159238:0" + +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "crwdns98862:0crwdne98862:0" @@ -19439,7 +19536,7 @@ msgstr "crwdns154308:0crwdne154308:0" msgid "Prepared Report User" msgstr "crwdns98878:0crwdne98878:0" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "crwdns98880:0crwdne98880:0" @@ -19447,7 +19544,7 @@ msgstr "crwdns98880:0crwdne98880:0" msgid "Preparing Report" msgstr "crwdns98882:0crwdne98882:0" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "crwdns98884:0crwdne98884:0" @@ -19468,7 +19565,7 @@ msgstr "crwdns98886:0crwdne98886:0" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19482,13 +19579,6 @@ msgstr "crwdns98888:0crwdne98888:0" msgid "Preview HTML" msgstr "crwdns130608:0crwdne130608:0" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "crwdns130610:0crwdne130610:0" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19517,7 +19607,7 @@ msgid "Preview:" msgstr "crwdns111132:0crwdne111132:0" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19529,12 +19619,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "crwdns111134:0crwdne111134:0" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "crwdns130616:0crwdne130616:0" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "crwdns98918:0crwdne98918:0" @@ -19580,19 +19665,19 @@ msgstr "crwdns112704:0{0}crwdne112704:0" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/success_action/success_action.js:58 #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/printing/page/print/print.js:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "crwdns98924:0crwdne98924:0" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "crwdns98926:0crwdne98926:0" @@ -19610,8 +19695,8 @@ msgstr "crwdns98932:0crwdne98932:0" #: frappe/core/workspace/build/build.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/page/print/print.js:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19662,7 +19747,7 @@ msgstr "crwdns130624:0crwdne130624:0" msgid "Print Format Type" msgstr "crwdns130626:0crwdne130626:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "crwdns155998:0crwdne155998:0" @@ -19701,7 +19786,7 @@ msgstr "crwdns130630:0crwdne130630:0" msgid "Print Language" msgstr "crwdns111422:0crwdne111422:0" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "crwdns98984:0crwdne98984:0" @@ -19718,8 +19803,8 @@ msgstr "crwdns130632:0crwdne130632:0" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "crwdns98988:0crwdne98988:0" @@ -19767,11 +19852,11 @@ msgstr "crwdns99010:0crwdne99010:0" msgid "Print with letterhead" msgstr "crwdns130642:0crwdne130642:0" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "crwdns99014:0crwdne99014:0" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "crwdns99016:0crwdne99016:0" @@ -19781,11 +19866,11 @@ msgstr "crwdns99016:0crwdne99016:0" msgid "Printer Name" msgstr "crwdns130644:0crwdne130644:0" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "crwdns99020:0crwdne99020:0" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "crwdns99022:0crwdne99022:0" @@ -19843,7 +19928,7 @@ msgstr "crwdns130648:0{{ reference_doctype }}crwdnd130648:0{{ reference_name }}c msgid "Proceed" msgstr "crwdns99050:0crwdne99050:0" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "crwdns99052:0crwdne99052:0" @@ -19864,18 +19949,28 @@ msgstr "crwdns148692:0crwdne148692:0" msgid "Profile" msgstr "crwdns130650:0crwdne130650:0" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "crwdns160174:0crwdne160174:0" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "crwdns160176:0crwdne160176:0" + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "crwdns99060:0crwdne99060:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "crwdns99062:0crwdne99062:0" #. Label of the property (Data) field in DocType 'Property Setter' -#: frappe/core/doctype/version/version_view.html:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: frappe/core/doctype/version/version_view.html:13 +#: frappe/core/doctype/version/version_view.html:38 +#: frappe/core/doctype/version/version_view.html:75 #: frappe/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "crwdns111146:0crwdne111146:0" @@ -19912,7 +20007,7 @@ msgstr "crwdns130654:0crwdne130654:0" msgid "Protect Attached Files" msgstr "crwdns154485:0crwdne154485:0" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "crwdns154487:0crwdne154487:0" @@ -19961,24 +20056,18 @@ msgstr "crwdns156002:0crwdne156002:0" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "crwdns99094:0crwdne99094:0" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -19988,15 +20077,6 @@ msgstr "crwdns99094:0crwdne99094:0" msgid "Published" msgstr "crwdns99100:0crwdne99100:0" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "crwdns130666:0crwdne130666:0" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "crwdns99120:0crwdne99120:0" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json @@ -20086,7 +20166,9 @@ msgid "Put on Hold" msgstr "crwdns99148:0crwdne99148:0" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "crwdns130684:0crwdne130684:0" @@ -20098,9 +20180,9 @@ msgstr "crwdns99152:0crwdne99152:0" msgid "QR Code for Login Verification" msgstr "crwdns99154:0crwdne99154:0" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " -msgstr "crwdns99156:0crwdne99156:0" +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" +msgstr "crwdns158730:0crwdne158730:0" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' @@ -20149,7 +20231,7 @@ msgstr "crwdns99178:0crwdne99178:0" msgid "Query analysis complete. Check suggested indexes." msgstr "crwdns127880:0crwdne127880:0" -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "crwdns99182:0crwdne99182:0" @@ -20249,7 +20331,7 @@ msgstr "crwdns130710:0crwdne130710:0" msgid "Quick Lists" msgstr "crwdns130712:0crwdne130712:0" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "crwdns99228:0crwdne99228:0" @@ -20286,12 +20368,6 @@ msgstr "crwdns99240:0crwdne99240:0" msgid "Rate Limiting" msgstr "crwdns130718:0crwdne130718:0" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "crwdns130720:0crwdne130720:0" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20311,7 +20387,7 @@ msgstr "crwdns130722:0crwdne130722:0" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "crwdns99256:0crwdne99256:0" @@ -20328,7 +20404,7 @@ msgstr "crwdns130724:0crwdne130724:0" msgid "Raw Printing" msgstr "crwdns130726:0crwdne130726:0" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "crwdns99266:0crwdne99266:0" @@ -20345,8 +20421,8 @@ msgid "Re:" msgstr "crwdns99270:0crwdne99270:0" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "crwdns99272:0{0}crwdne99272:0" @@ -20402,11 +20478,6 @@ msgstr "crwdns130730:0crwdne130730:0" msgid "Read Only Mode" msgstr "crwdns99308:0crwdne99308:0" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "crwdns130732:0crwdne130732:0" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20422,7 +20493,7 @@ msgstr "crwdns130736:0crwdne130736:0" msgid "Read mode" msgstr "crwdns99316:0crwdne99316:0" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "crwdns99318:0crwdne99318:0" @@ -20442,11 +20513,11 @@ msgstr "crwdns130740:0crwdne130740:0" msgid "Reason" msgstr "crwdns99322:0crwdne99322:0" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "crwdns99328:0crwdne99328:0" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "crwdns99330:0crwdne99330:0" @@ -20484,7 +20555,7 @@ msgstr "crwdns130750:0crwdne130750:0" msgid "Recent years are easy to guess." msgstr "crwdns99346:0crwdne99346:0" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "crwdns99348:0crwdne99348:0" @@ -20495,6 +20566,14 @@ msgstr "crwdns99348:0crwdne99348:0" msgid "Recipient" msgstr "crwdns130752:0crwdne130752:0" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "crwdns157356:0crwdne157356:0" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20527,7 +20606,7 @@ msgstr "crwdns127882:0crwdne127882:0" msgid "Records for following doctypes will be filtered" msgstr "crwdns111156:0crwdne111156:0" -#: frappe/core/doctype/doctype/doctype.py:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "crwdns127896:0crwdne127896:0" @@ -20544,6 +20623,11 @@ msgstr "crwdns130758:0crwdne130758:0" msgid "Redirect HTTP Status" msgstr "crwdns130760:0crwdne130760:0" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "crwdns157358:0crwdne157358:0" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20638,6 +20722,11 @@ msgstr "crwdns130776:0crwdne130776:0" msgid "Reference Datetime" msgstr "crwdns148944:0crwdne148944:0" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "crwdns158982:0crwdne158982:0" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20665,7 +20754,6 @@ msgstr "crwdns130782:0crwdne130782:0" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20706,9 +20794,9 @@ msgstr "crwdns130784:0crwdne130784:0" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20726,9 +20814,9 @@ msgstr "crwdns130784:0crwdne130784:0" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20758,7 +20846,6 @@ msgstr "crwdns130786:0crwdne130786:0" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -20806,15 +20893,15 @@ msgstr "crwdns99524:0{0}crwdnd99524:0{1}crwdne99524:0" msgid "Referrer" msgstr "crwdns99526:0crwdne99526:0" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "crwdns99530:0crwdne99530:0" @@ -20828,6 +20915,10 @@ msgstr "crwdns99532:0crwdne99532:0" msgid "Refresh Google Sheet" msgstr "crwdns130796:0crwdne130796:0" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "crwdns158984:0crwdne158984:0" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -20839,18 +20930,18 @@ msgstr "crwdns130796:0crwdne130796:0" msgid "Refresh Token" msgstr "crwdns130798:0crwdne130798:0" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "crwdns111160:0crwdne111160:0" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "crwdns99546:0crwdne99546:0" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "crwdns99548:0crwdne99548:0" @@ -21027,7 +21118,7 @@ msgstr "crwdns99604:0crwdne99604:0" msgid "Rename {0}" msgstr "crwdns99606:0{0}crwdne99606:0" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "crwdns99608:0crwdne99608:0" @@ -21158,9 +21249,9 @@ msgstr "crwdns99642:0crwdne99642:0" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "crwdns99644:0crwdne99644:0" @@ -21230,11 +21321,11 @@ msgstr "crwdns99694:0crwdne99694:0" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "crwdns99696:0crwdne99696:0" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "crwdns99708:0crwdne99708:0" @@ -21268,21 +21359,21 @@ msgstr "crwdns142864:0crwdne142864:0" msgid "Report bug" msgstr "crwdns148700:0crwdne148700:0" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 msgid "Report cannot be set for Single types" msgstr "crwdns99718:0crwdne99718:0" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 -#: frappe/desk/doctype/number_card/number_card.js:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "crwdns99720:0crwdne99720:0" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 msgid "Report has no numeric fields, please change the Report Name" msgstr "crwdns99722:0crwdne99722:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "crwdns99724:0crwdne99724:0" @@ -21294,24 +21385,24 @@ msgstr "crwdns99726:0crwdne99726:0" msgid "Report timed out." msgstr "crwdns99728:0crwdne99728:0" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "crwdns99730:0crwdne99730:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 msgid "Report was not saved (there were errors)" msgstr "crwdns99732:0crwdne99732:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "crwdns99734:0crwdne99734:0" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "crwdns99736:0{0}crwdne99736:0" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "crwdns99738:0{0}crwdne99738:0" @@ -21319,7 +21410,7 @@ msgstr "crwdns99738:0{0}crwdne99738:0" msgid "Report {0} is disabled" msgstr "crwdns99740:0{0}crwdne99740:0" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "crwdns99742:0{0}crwdne99742:0" @@ -21330,7 +21421,7 @@ msgstr "crwdns99744:0crwdne99744:0" #. Label of the prepared_report_section (Section Break) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "crwdns99746:0crwdne99746:0" @@ -21338,7 +21429,7 @@ msgstr "crwdns99746:0crwdne99746:0" msgid "Reports & Masters" msgstr "crwdns99750:0crwdne99750:0" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "crwdns99752:0crwdne99752:0" @@ -21357,7 +21448,10 @@ msgid "Request Body" msgstr "crwdns130840:0crwdne130840:0" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "crwdns130842:0crwdne130842:0" @@ -21409,6 +21503,11 @@ msgstr "crwdns99776:0crwdne99776:0" msgid "Request URL" msgstr "crwdns130856:0crwdne130856:0" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "crwdns160178:0crwdne160178:0" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21460,11 +21559,11 @@ msgstr "crwdns99798:0crwdne99798:0" msgid "Reset Dashboard Customizations" msgstr "crwdns99800:0crwdne99800:0" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "crwdns99802:0crwdne99802:0" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "crwdns99804:0crwdne99804:0" @@ -21472,11 +21571,11 @@ msgstr "crwdns99804:0crwdne99804:0" msgid "Reset Layout" msgstr "crwdns99806:0crwdne99806:0" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "crwdns99808:0crwdne99808:0" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21511,7 +21610,7 @@ msgstr "crwdns143128:0crwdne143128:0" msgid "Reset sorting" msgstr "crwdns99820:0crwdne99820:0" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "crwdns99824:0crwdne99824:0" @@ -21549,6 +21648,7 @@ msgid "Resource TOS URI" msgstr "crwdns156012:0crwdne156012:0" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21558,11 +21658,6 @@ msgstr "crwdns156012:0crwdne156012:0" msgid "Response" msgstr "crwdns130872:0crwdne130872:0" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "crwdns130874:0crwdne130874:0" - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21621,7 +21716,7 @@ msgstr "crwdns130884:0crwdne130884:0" 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 "crwdns130886:0crwdne130886:0" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "crwdns99868:0crwdne99868:0" @@ -21655,7 +21750,7 @@ msgstr "crwdns99880:0crwdne99880:0" msgid "Reverse Icon Color" msgstr "crwdns130888:0crwdne130888:0" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "crwdns99892:0{0}crwdnd99892:0{1}crwdnd99892:0{2}crwdnd99892:0{3}crwdne99892:0" @@ -21673,9 +21768,7 @@ msgstr "crwdns99904:0crwdne99904:0" msgid "Revoked" msgstr "crwdns130900:0crwdne130900:0" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21716,6 +21809,7 @@ msgstr "crwdns130908:0crwdne130908:0" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21729,6 +21823,7 @@ msgstr "crwdns130908:0crwdne130908:0" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21767,7 +21862,7 @@ msgstr "crwdns99960:0crwdne99960:0" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "crwdns99964:0crwdne99964:0" @@ -21777,7 +21872,7 @@ msgstr "crwdns99964:0crwdne99964:0" msgid "Role Permissions Manager" msgstr "crwdns99968:0crwdne99968:0" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "crwdns99970:0crwdne99970:0" @@ -21820,6 +21915,7 @@ msgstr "crwdns99982:0{0}crwdne99982:0" #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -21829,6 +21925,7 @@ msgstr "crwdns99982:0{0}crwdne99982:0" #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -21865,7 +21962,7 @@ msgstr "crwdns130922:0crwdne130922:0" msgid "Roles can be set for users from their User page." msgstr "crwdns111176:0crwdne111176:0" -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "crwdns100012:0{0}crwdne100012:0" @@ -21885,8 +21982,6 @@ msgstr "crwdns130926:0crwdne130926:0" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -21898,8 +21993,6 @@ msgstr "crwdns130926:0crwdne130926:0" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -21924,24 +22017,24 @@ msgstr "crwdns130930:0crwdne130930:0" msgid "Route: Example \"/app\"" msgstr "crwdns130932:0crwdne130932:0" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "crwdns100054:0crwdne100054:0" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "crwdns111178:0crwdne111178:0" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "crwdns100056:0{0}crwdnd100056:0{1}crwdne100056:0" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "crwdns100058:0#{0}crwdne100058:0" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "crwdns100060:0crwdne100060:0" @@ -21950,11 +22043,6 @@ msgstr "crwdns100060:0crwdne100060:0" msgid "Row Format" msgstr "crwdns152541:0crwdne152541:0" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "crwdns130934:0crwdne130934:0" - #. 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" @@ -21969,7 +22057,7 @@ msgstr "crwdns130938:0crwdne130938:0" msgid "Row Number" msgstr "crwdns111180:0crwdne111180:0" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "crwdns111182:0crwdne111182:0" @@ -21977,30 +22065,33 @@ msgstr "crwdns111182:0crwdne111182:0" msgid "Row {0}" msgstr "crwdns111184:0{0}crwdne111184:0" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "crwdns100068:0{0}crwdne100068:0" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "crwdns100070:0{0}crwdne100070:0" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Added" msgstr "crwdns111186:0crwdne111186:0" #. Label of the rows_removed_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "crwdns111188:0crwdne111188:0" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "crwdns155342:0crwdne155342:0" @@ -22091,7 +22182,7 @@ msgstr "crwdns100116:0crwdne100116:0" msgid "SMS Settings" msgstr "crwdns100118:0crwdne100118:0" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "crwdns151436:0crwdne151436:0" @@ -22169,7 +22260,7 @@ msgstr "crwdns130974:0crwdne130974:0" msgid "Salutation" msgstr "crwdns100150:0crwdne100150:0" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "crwdns100156:0crwdne100156:0" @@ -22197,20 +22288,20 @@ msgstr "crwdns130978:0crwdne130978:0" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22219,16 +22310,12 @@ msgstr "crwdns130978:0crwdne130978:0" msgid "Save" msgstr "crwdns100170:0crwdne100170:0" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "crwdns100174:0{0}crwdne100174:0" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "crwdns100176:0crwdne100176:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "crwdns100178:0crwdne100178:0" @@ -22236,11 +22323,11 @@ msgstr "crwdns100178:0crwdne100178:0" msgid "Save Customizations" msgstr "crwdns100180:0crwdne100180:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "crwdns100182:0crwdne100182:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "crwdns100184:0crwdne100184:0" @@ -22265,7 +22352,7 @@ msgstr "crwdns100190:0crwdne100190:0" msgid "Saved Filters" msgstr "crwdns148326:0crwdne148326:0" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22344,7 +22431,7 @@ msgstr "crwdns100228:0crwdne100228:0" msgid "Scheduled Jobs Logs" msgstr "crwdns143312:0crwdne143312:0" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "crwdns100240:0{0}crwdne100240:0" @@ -22367,7 +22454,7 @@ msgstr "crwdns130990:0crwdne130990:0" msgid "Scheduler Event" msgstr "crwdns130992:0crwdne130992:0" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "crwdns100246:0crwdne100246:0" @@ -22380,7 +22467,7 @@ msgstr "crwdns130994:0crwdne130994:0" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "crwdns100248:0crwdne100248:0" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "crwdns100250:0crwdne100250:0" @@ -22512,7 +22599,7 @@ msgstr "crwdns143130:0crwdne143130:0" msgid "Search by filename or extension" msgstr "crwdns143132:0crwdne143132:0" -#: frappe/core/doctype/doctype/doctype.py:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "crwdns100306:0{0}crwdne100306:0" @@ -22612,7 +22699,7 @@ msgstr "crwdns131022:0crwdne131022:0" msgid "See all Activity" msgstr "crwdns111200:0crwdne111200:0" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "crwdns100338:0crwdne100338:0" @@ -22621,7 +22708,7 @@ msgstr "crwdns100338:0crwdne100338:0" msgid "See on Website" msgstr "crwdns100340:0crwdne100340:0" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "crwdns111202:0crwdne111202:0" @@ -22668,7 +22755,7 @@ msgstr "crwdns131026:0crwdne131026:0" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22676,28 +22763,28 @@ msgstr "crwdns100362:0crwdne100362:0" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "crwdns111204:0crwdne111204:0" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "crwdns100382:0crwdne100382:0" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "crwdns100384:0crwdne100384:0" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 msgid "Select Column" msgstr "crwdns100386:0crwdne100386:0" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "crwdns100388:0crwdne100388:0" @@ -22756,12 +22843,15 @@ msgstr "crwdns100412:0crwdne100412:0" msgid "Select Field..." msgstr "crwdns111208:0crwdne111208:0" -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "crwdns100414:0crwdne100414:0" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "crwdns158732:0{0}crwdne158732:0" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "crwdns100416:0crwdne100416:0" @@ -22774,7 +22864,7 @@ msgstr "crwdns100418:0crwdne100418:0" msgid "Select Filters" msgstr "crwdns100420:0crwdne100420:0" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "crwdns100422:0crwdne100422:0" @@ -22807,8 +22897,8 @@ msgstr "crwdns100432:0crwdne100432:0" msgid "Select Module" msgstr "crwdns100434:0crwdne100434:0" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "crwdns100436:0crwdne100436:0" @@ -22873,14 +22963,14 @@ msgid "Select a field to edit its properties." msgstr "crwdns143144:0crwdne143144:0" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "crwdns100464:0crwdne100464:0" +msgid "Select a group {0} first." +msgstr "crwdns160180:0{0}crwdne160180:0" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" msgstr "crwdns100466:0crwdne100466:0" -#: frappe/core/doctype/doctype/doctype.py:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 msgid "Select a valid Subject field for creating documents from Email" msgstr "crwdns100468:0crwdne100468:0" @@ -22910,13 +23000,13 @@ msgstr "crwdns100474:0crwdne100474:0" msgid "Select atleast 2 actions" msgstr "crwdns100476:0crwdne100476:0" -#: frappe/public/js/frappe/list/list_view.js:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "crwdns100478:0crwdne100478:0" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "crwdns100480:0crwdne100480:0" @@ -22950,7 +23040,7 @@ msgstr "crwdns100488:0crwdne100488:0" msgid "Select {0}" msgstr "crwdns100490:0{0}crwdne100490:0" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "crwdns100492:0crwdne100492:0" @@ -23134,7 +23224,7 @@ msgstr "crwdns131102:0crwdne131102:0" msgid "Sender Email Field" msgstr "crwdns131104:0crwdne131104:0" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "crwdns100592:0crwdne100592:0" @@ -23228,7 +23318,7 @@ msgstr "crwdns100638:0crwdne100638:0" msgid "Series counter for {} updated to {} successfully" msgstr "crwdns100640:0crwdne100640:0" -#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "crwdns100642:0{0}crwdnd100642:0{1}crwdne100642:0" @@ -23238,7 +23328,7 @@ msgstr "crwdns100642:0{0}crwdnd100642:0{1}crwdne100642:0" msgid "Server Action" msgstr "crwdns131128:0crwdne131128:0" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "crwdns100646:0crwdne100646:0" @@ -23257,7 +23347,7 @@ msgstr "crwdns131130:0crwdne131130:0" msgid "Server Script" msgstr "crwdns100650:0crwdne100650:0" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "crwdns100660:0crwdne100660:0" @@ -23304,7 +23394,7 @@ msgstr "crwdns100674:0crwdne100674:0" msgid "Session Defaults Saved" msgstr "crwdns100678:0crwdne100678:0" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "crwdns100680:0crwdne100680:0" @@ -23313,14 +23403,14 @@ msgstr "crwdns100680:0crwdne100680:0" msgid "Session Expiry (idle timeout)" msgstr "crwdns131134:0crwdne131134:0" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "crwdns100684:0{0}crwdne100684:0" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "crwdns142894:0crwdne142894:0" @@ -23346,12 +23436,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\" msgstr "crwdns131138:0crwdne131138:0" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "crwdns100694:0crwdne100694:0" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23362,7 +23452,7 @@ msgstr "crwdns100696:0crwdne100696:0" msgid "Set Filters for {0}" msgstr "crwdns100698:0{0}crwdne100698:0" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "crwdns148706:0crwdne148706:0" @@ -23416,7 +23506,7 @@ msgstr "crwdns100716:0crwdne100716:0" msgid "Set Role For" msgstr "crwdns131146:0crwdne131146:0" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "crwdns100720:0crwdne100720:0" @@ -23426,16 +23516,16 @@ msgstr "crwdns100720:0crwdne100720:0" msgid "Set Value" msgstr "crwdns131148:0crwdne131148:0" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "crwdns100724:0crwdne100724:0" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "crwdns100726:0crwdne100726:0" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "crwdns100728:0crwdne100728:0" @@ -23454,18 +23544,21 @@ msgstr "crwdns131150:0crwdne131150:0" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "crwdns142896:0crwdne142896:0" -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "crwdns131152:0crwdne131152:0" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "crwdns159240:0crwdne159240:0" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23557,14 +23650,9 @@ msgstr "crwdns111538:0crwdne111538:0" msgid "Settings for the About Us Page" msgstr "crwdns111540:0crwdne111540:0" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "crwdns111542:0crwdne111542:0" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "crwdns100768:0crwdne100768:0" @@ -23580,8 +23668,8 @@ msgstr "crwdns111216:0crwdne111216:0" msgid "Setup > User Permissions" msgstr "crwdns111218:0crwdne111218:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "crwdns100774:0crwdne100774:0" @@ -23650,11 +23738,6 @@ msgstr "crwdns111224:0crwdne111224:0" msgid "Shop" msgstr "crwdns131168:0crwdne131168:0" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "crwdns131170:0crwdne131170:0" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "crwdns100810:0crwdne100810:0" @@ -23674,11 +23757,6 @@ msgstr "crwdns111226:0crwdne111226:0" msgid "Show" msgstr "crwdns100814:0crwdne100814:0" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "crwdns131172:0crwdne131172:0" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23731,7 +23809,13 @@ msgstr "crwdns131180:0crwdne131180:0" msgid "Show Error" msgstr "crwdns100834:0crwdne100834:0" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "crwdns159980:0crwdne159980:0" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "crwdns100838:0crwdne100838:0" @@ -23859,7 +23943,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "crwdns156020:0crwdne156020:0" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "crwdns100886:0crwdne100886:0" @@ -23876,7 +23960,7 @@ msgstr "crwdns131208:0crwdne131208:0" msgid "Show Title in Link Fields" msgstr "crwdns131210:0crwdne131210:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "crwdns100894:0crwdne100894:0" @@ -23916,10 +24000,6 @@ msgstr "crwdns100904:0crwdne100904:0" msgid "Show all activity" msgstr "crwdns111236:0crwdne111236:0" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "crwdns100906:0crwdne100906:0" - #. 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" @@ -23968,8 +24048,8 @@ msgstr "crwdns131224:0crwdne131224:0" msgid "Show list" msgstr "crwdns149010:0crwdne149010:0" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "crwdns100920:0crwdne100920:0" @@ -23998,7 +24078,7 @@ msgstr "crwdns131228:0crwdne131228:0" msgid "Show {0} List" msgstr "crwdns111238:0{0}crwdne111238:0" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "crwdns100926:0crwdne100926:0" @@ -24033,7 +24113,7 @@ msgstr "crwdns131236:0crwdne131236:0" msgid "Sign Up and Confirmation" msgstr "crwdns131238:0crwdne131238:0" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "crwdns100938:0crwdne100938:0" @@ -24070,36 +24150,36 @@ msgstr "crwdns100954:0crwdne100954:0" msgid "Signups have been disabled for this website." msgstr "crwdns100956:0crwdne100956:0" -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "crwdns131244:0crwdne131244:0" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" -msgstr "crwdns131246:0crwdne131246:0" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "crwdns159982:0crwdne159982:0" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" -msgstr "crwdns131248:0crwdne131248:0" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "crwdns159984:0crwdne159984:0" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" +msgstr "crwdns159986:0crwdne159986:0" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "crwdns131250:0crwdne131250:0" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "crwdns100966:0crwdne100966:0" #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "crwdns100968:0crwdne100968:0" @@ -24107,7 +24187,7 @@ msgstr "crwdns100968:0crwdne100968:0" msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "crwdns100972:0crwdne100972:0" -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "crwdns111242:0crwdne111242:0" @@ -24326,11 +24406,11 @@ msgstr "crwdns101044:0{0}crwdne101044:0" msgid "Something went wrong." msgstr "crwdns111248:0crwdne111248:0" -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 msgid "Sorry! I could not find what you were looking for." msgstr "crwdns101046:0crwdne101046:0" -#: frappe/public/js/frappe/views/pageview.js:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "crwdns101048:0crwdne101048:0" @@ -24361,20 +24441,23 @@ msgstr "crwdns131290:0crwdne131290:0" msgid "Sort Order" msgstr "crwdns131292:0crwdne131292:0" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 msgid "Sort field {0} must be a valid fieldname" msgstr "crwdns101064:0{0}crwdne101064:0" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' -#: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "crwdns101066:0crwdne101066:0" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "crwdns157360:0crwdne157360:0" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24401,6 +24484,12 @@ msgstr "crwdns131296:0crwdne131296:0" msgid "SparkPost" msgstr "crwdns131298:0crwdne131298:0" +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "crwdns157362:0crwdne157362:0" + #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "crwdns101082:0crwdne101082:0" @@ -24425,8 +24514,8 @@ msgstr "crwdns151440:0crwdne151440:0" msgid "Splash Image" msgstr "crwdns131300:0crwdne131300:0" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "crwdns101088:0crwdne101088:0" @@ -24458,11 +24547,11 @@ msgstr "crwdns101090:0crwdne101090:0" msgid "Standard" msgstr "crwdns101094:0crwdne101094:0" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "crwdns101108:0crwdne101108:0" -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "crwdns101110:0crwdne101110:0" @@ -24474,7 +24563,7 @@ msgstr "crwdns101112:0crwdne101112:0" msgid "Standard Permissions" msgstr "crwdns142898:0crwdne142898:0" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "crwdns101114:0crwdne101114:0" @@ -24482,11 +24571,11 @@ msgstr "crwdns101114:0crwdne101114:0" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "crwdns101116:0crwdne101116:0" -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "crwdns101118:0crwdne101118:0" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "crwdns101120:0crwdne101120:0" @@ -24518,8 +24607,8 @@ msgstr "crwdns101128:0{0}crwdne101128:0" #: frappe/core/doctype/recorder/recorder_list.js:87 #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45 -#: frappe/printing/page/print/print.js:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "crwdns101132:0crwdne101132:0" @@ -24527,7 +24616,7 @@ msgstr "crwdns101132:0crwdne101132:0" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24592,6 +24681,7 @@ msgstr "crwdns131314:0crwdne131314:0" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24600,7 +24690,7 @@ msgstr "crwdns131314:0crwdne131314:0" msgid "State" msgstr "crwdns111256:0crwdne111256:0" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "crwdns143148:0crwdne143148:0" @@ -24656,6 +24746,7 @@ msgstr "crwdns131324:0crwdne131324:0" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24680,6 +24771,7 @@ msgstr "crwdns131324:0crwdne131324:0" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24687,8 +24779,8 @@ msgstr "crwdns131324:0crwdne131324:0" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24725,7 +24817,7 @@ msgstr "crwdns101252:0crwdne101252:0" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "crwdns152394:0crwdne152394:0" @@ -24755,6 +24847,10 @@ msgstr "crwdns131334:0crwdne131334:0" msgid "Store Attached PDF Document" msgstr "crwdns131336:0crwdne131336:0" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +msgstr "crwdns157442:0crwdne157442:0" + #. 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." @@ -24833,7 +24929,7 @@ msgstr "crwdns131356:0crwdne131356:0" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -24849,7 +24945,7 @@ msgstr "crwdns101284:0crwdne101284:0" msgid "Subject Field" msgstr "crwdns131358:0crwdne131358:0" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "crwdns101310:0crwdne101310:0" @@ -24863,6 +24959,7 @@ msgstr "crwdns101312:0crwdne101312:0" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24871,10 +24968,11 @@ msgstr "crwdns101312:0crwdne101312:0" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "crwdns101314:0crwdne101314:0" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "crwdns101316:0crwdne101316:0" @@ -24884,7 +24982,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "crwdns111258:0crwdne111258:0" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "crwdns101328:0crwdne101328:0" @@ -24908,7 +25006,7 @@ msgstr "crwdns131360:0crwdne131360:0" msgid "Submit an Issue" msgstr "crwdns111260:0crwdne111260:0" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "crwdns111262:0crwdne111262:0" @@ -24920,7 +25018,7 @@ msgstr "crwdns151442:0crwdne151442:0" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "crwdns131364:0crwdne131364:0" @@ -24932,7 +25030,7 @@ msgstr "crwdns101344:0crwdne101344:0" msgid "Submit this document to confirm" msgstr "crwdns101346:0crwdne101346:0" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "crwdns101348:0{0}crwdne101348:0" @@ -24941,11 +25039,11 @@ msgstr "crwdns101348:0{0}crwdne101348:0" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "crwdns101350:0crwdne101350:0" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "crwdns101356:0{0}crwdne101356:0" @@ -24968,9 +25066,7 @@ msgid "Subsidiary" msgstr "crwdns131366:0crwdne131366:0" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "crwdns131368:0crwdne131368:0" @@ -24984,7 +25080,7 @@ msgstr "crwdns131368:0crwdne131368:0" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25026,20 +25122,16 @@ msgstr "crwdns151444:0crwdne151444:0" msgid "Success title" msgstr "crwdns151446:0crwdne151446:0" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "crwdns101392:0crwdne101392:0" - #. 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 "crwdns131378:0crwdne131378:0" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "crwdns101396:0crwdne101396:0" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "crwdns101398:0{0}crwdnd101398:0{1}crwdne101398:0" @@ -25081,7 +25173,7 @@ msgstr "crwdns127884:0crwdne127884:0" msgid "Suggested Indexes" msgstr "crwdns131380:0crwdne131380:0" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "crwdns101420:0{0}crwdne101420:0" @@ -25203,7 +25295,7 @@ msgstr "crwdns101474:0crwdne101474:0" msgid "Syncing {0} of {1}" msgstr "crwdns101476:0{0}crwdnd101476:0{1}crwdne101476:0" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "crwdns101478:0crwdne101478:0" @@ -25326,6 +25418,7 @@ msgstr "crwdns101486:0crwdne101486:0" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25408,6 +25501,7 @@ msgstr "crwdns101486:0crwdne101486:0" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" msgstr "crwdns101488:0crwdne101488:0" @@ -25481,7 +25575,7 @@ msgstr "crwdns101512:0crwdne101512:0" msgid "Table Break" msgstr "crwdns131404:0crwdne131404:0" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "crwdns111268:0crwdne111268:0" @@ -25490,7 +25584,7 @@ msgstr "crwdns111268:0crwdne111268:0" msgid "Table Fieldname" msgstr "crwdns131406:0crwdne131406:0" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "crwdns101526:0crwdne101526:0" @@ -25512,11 +25606,11 @@ msgstr "crwdns131410:0crwdne131410:0" msgid "Table Trimmed" msgstr "crwdns112742:0crwdne112742:0" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "crwdns101536:0crwdne101536:0" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 msgid "Table {0} cannot be empty" msgstr "crwdns101538:0{0}crwdne101538:0" @@ -25558,11 +25652,18 @@ msgstr "crwdns101552:0crwdne101552:0" msgid "Target" msgstr "crwdns131414:0crwdne131414:0" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "crwdns101558:0crwdne101558:0" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "crwdns157364:0crwdne157364:0" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25624,7 +25725,7 @@ msgstr "crwdns131428:0crwdne131428:0" msgid "Templates" msgstr "crwdns101586:0crwdne101586:0" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "crwdns101588:0crwdne101588:0" @@ -25696,7 +25797,7 @@ msgid "Thank you for reaching out to us. We will get back to you at the earliest "{0}" msgstr "crwdns111546:0{0}crwdne111546:0" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "crwdns101620:0crwdne101620:0" @@ -25720,7 +25821,7 @@ msgstr "crwdns101628:0crwdne101628:0" msgid "The Auto Repeat for this document has been disabled." msgstr "crwdns101630:0crwdne101630:0" -#: frappe/public/js/frappe/form/grid.js:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "crwdns101632:0crwdne101632:0" @@ -25731,15 +25832,15 @@ msgid "The Client ID obtained from the Google Cloud Console under " msgstr "crwdns131442:0crwdne131442:0" -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "crwdns101636:0{0}crwdne101636:0" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "crwdns101638:0crwdne101638:0" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." msgstr "crwdns152543:0crwdne152543:0" @@ -25780,7 +25881,7 @@ msgstr "crwdns101650:0crwdne101650:0" msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "crwdns101652:0{0}crwdnd101652:0{1}crwdnd101652:0{2}crwdne101652:0" -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "crwdns101654:0crwdne101654:0" @@ -25788,7 +25889,7 @@ msgstr "crwdns101654:0crwdne101654:0" msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone." msgstr "crwdns142920:0crwdne142920:0" -#: frappe/public/js/frappe/list/list_view.js:658 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "crwdns111470:0crwdne111470:0" @@ -25818,7 +25919,7 @@ msgstr "crwdns131448:0crwdne131448:0" msgid "The field {0} is mandatory" msgstr "crwdns101664:0{0}crwdne101664:0" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "crwdns101666:0crwdne101666:0" @@ -25888,15 +25989,19 @@ msgid "The project number obtained from Google Cloud Console under " msgstr "crwdns131456:0crwdne131456:0" -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

Click here to download:
{0}

This link will expire in {1} hours." +msgstr "crwdns159242:0{0}crwdnd159242:0{0}crwdnd159242:0{1}crwdne159242:0" + +#: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" msgstr "crwdns101696:0crwdne101696:0" -#: frappe/core/doctype/user/user.py:995 +#: frappe/core/doctype/user/user.py:1002 msgid "The reset password link has either been used before or is invalid" msgstr "crwdns101698:0crwdne101698:0" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "crwdns101700:0crwdne101700:0" @@ -25908,7 +26013,7 @@ msgstr "crwdns101702:0{0}crwdne101702:0" msgid "The selected document {0} is not a {1}." msgstr "crwdns101704:0{0}crwdnd101704:0{1}crwdne101704:0" -#: frappe/utils/response.py:338 +#: frappe/utils/response.py:336 msgid "The system is being updated. Please refresh again after a few moments." msgstr "crwdns101706:0crwdne101706:0" @@ -25929,7 +26034,7 @@ msgstr "crwdns101714:0{0}crwdnd101714:0{1}crwdne101714:0" msgid "The webhook will be triggered if this expression is true" msgstr "crwdns131460:0crwdne131460:0" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "crwdns101718:0{0}crwdnd101718:0{1}crwdne101718:0" @@ -25969,16 +26074,16 @@ msgstr "crwdns111276:0crwdne111276:0" msgid "There are no {0} for this {1}, why don't you start one!" msgstr "crwdns101730:0{0}crwdnd101730:0{1}crwdne101730:0" -#: frappe/public/js/frappe/views/reports/query_report.js:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "crwdns111278:0{0}crwdne111278:0" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "crwdns101732:0crwdne101732:0" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "crwdns101734:0crwdne101734:0" @@ -25990,15 +26095,19 @@ msgstr "crwdns101736:0{0}crwdne101736:0" msgid "There is no data to be exported" msgstr "crwdns101738:0crwdne101738:0" +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "crwdns157366:0crwdne157366:0" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "crwdns112744:0crwdne112744:0" -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "crwdns101740:0{0}crwdne101740:0" -#: frappe/public/js/frappe/views/reports/query_report.js:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "crwdns111280:0{0}crwdne111280:0" @@ -26010,7 +26119,7 @@ msgstr "crwdns101742:0crwdne101742:0" msgid "There was an error building this page" msgstr "crwdns101746:0crwdne101746:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "crwdns101748:0crwdne101748:0" @@ -26022,11 +26131,11 @@ msgstr "crwdns101750:0crwdne101750:0" msgid "There were errors while creating the document. Please try again." msgstr "crwdns101752:0crwdne101752:0" -#: frappe/public/js/frappe/views/communication.js:840 +#: frappe/public/js/frappe/views/communication.js:843 msgid "There were errors while sending email. Please try again." msgstr "crwdns101754:0crwdne101754:0" -#: frappe/model/naming.py:494 +#: frappe/model/naming.py:502 msgid "There were some errors setting the name, please contact the administrator" msgstr "crwdns101756:0crwdne101756:0" @@ -26067,7 +26176,7 @@ msgstr "crwdns131474:0crwdne131474:0" msgid "This Currency is disabled. Enable to use in transactions" msgstr "crwdns101768:0crwdne101768:0" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "crwdns101774:0crwdne101774:0" @@ -26075,6 +26184,10 @@ msgstr "crwdns101774:0crwdne101774:0" msgid "This Month" msgstr "crwdns155052:0crwdne155052:0" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "crwdns159208:0crwdne159208:0" + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "crwdns155054:0crwdne155054:0" @@ -26100,6 +26213,11 @@ msgstr "crwdns101776:0crwdne101776:0" msgid "This cannot be undone" msgstr "crwdns101778:0crwdne101778:0" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +msgstr "crwdns159244:0crwdne159244:0" + #. 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" @@ -26114,11 +26232,11 @@ msgstr "crwdns131478:0crwdne131478:0" msgid "This doctype has no orphan fields to trim" msgstr "crwdns112748:0crwdne112748:0" -#: frappe/core/doctype/doctype/doctype.py:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "crwdns112750:0crwdne112750:0" -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "crwdns111472:0crwdne111472:0" @@ -26160,7 +26278,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "crwdns131480:0crwdne131480:0" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "crwdns154489:0crwdne154489:0" @@ -26176,7 +26294,7 @@ msgstr "crwdns101802:0crwdne101802:0" msgid "This form has been modified after you have loaded it" msgstr "crwdns101804:0crwdne101804:0" -#: frappe/public/js/frappe/form/form.js:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "crwdns101806:0crwdne101806:0" @@ -26195,7 +26313,7 @@ msgstr "crwdns148744:0crwdne148744:0" msgid "This goes above the slideshow." msgstr "crwdns131484:0crwdne131484:0" -#: frappe/public/js/frappe/views/reports/query_report.js:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "crwdns101812:0crwdne101812:0" @@ -26219,12 +26337,6 @@ msgstr "crwdns101820:0crwdne101820:0" msgid "This is an automatically generated reply" msgstr "crwdns101822:0crwdne101822:0" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "crwdns131486:0crwdne131486:0" - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "crwdns101826:0crwdne101826:0" @@ -26243,7 +26355,7 @@ msgstr "crwdns101830:0crwdne101830:0" msgid "This link is invalid or expired. Please make sure you have pasted correctly." msgstr "crwdns101832:0crwdne101832:0" -#: frappe/printing/page/print/print.js:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "crwdns101834:0crwdne101834:0" @@ -26251,7 +26363,7 @@ msgstr "crwdns101834:0crwdne101834:0" msgid "This month" msgstr "crwdns101836:0crwdne101836:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "crwdns111474:0{0}crwdnd111474:0{1}crwdne111474:0" @@ -26259,7 +26371,7 @@ msgstr "crwdns111474:0{0}crwdnd111474:0{1}crwdne111474:0" msgid "This report was generated on {0}" msgstr "crwdns101842:0{0}crwdne101842:0" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "crwdns101844:0{0}crwdne101844:0" @@ -26290,8 +26402,8 @@ msgstr "crwdns101854:0{0}crwdnd101854:0{1}crwdne101854:0" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " -msgstr "crwdns155346:0crwdne155346:0" +msgid "This value specifies the max number of rows that can be rendered in report view." +msgstr "crwdns158734:0crwdne158734:0" #: frappe/website/doctype/web_page/web_page.js:85 msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish" @@ -26322,10 +26434,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "crwdns101866:0crwdne101866:0" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " -msgstr "crwdns101868:0crwdne101868:0" +msgid "This will terminate the job immediately and might be dangerous, are you sure?" +msgstr "crwdns158736:0crwdne158736:0" -#: frappe/core/doctype/user/user.py:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "crwdns101870:0crwdne101870:0" @@ -26401,9 +26513,11 @@ msgstr "crwdns131508:0crwdne131508:0" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26474,11 +26588,11 @@ msgstr "crwdns131526:0crwdne131526:0" msgid "Timeline Name" msgstr "crwdns131528:0crwdne131528:0" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 msgid "Timeline field must be a Link or Dynamic Link" msgstr "crwdns101946:0crwdne101946:0" -#: frappe/core/doctype/doctype/doctype.py:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "crwdns101948:0crwdne101948:0" @@ -26504,10 +26618,7 @@ msgid "Timespan" msgstr "crwdns101954:0crwdne101954:0" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "crwdns101958:0crwdne101958:0" @@ -26527,9 +26638,6 @@ msgstr "crwdns155348:0crwdne155348:0" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26554,9 +26662,6 @@ msgstr "crwdns155348:0crwdne155348:0" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26579,7 +26684,7 @@ msgstr "crwdns131534:0crwdne131534:0" msgid "Title Prefix" msgstr "crwdns131536:0crwdne131536:0" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "crwdns102012:0crwdne102012:0" @@ -26673,7 +26778,7 @@ msgstr "crwdns102048:0crwdne102048:0" msgid "To generate password click {0}" msgstr "crwdns155060:0{0}crwdne155060:0" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "crwdns102050:0{0}crwdne102050:0" @@ -26728,7 +26833,7 @@ msgstr "crwdns102070:0crwdne102070:0" msgid "Today" msgstr "crwdns102076:0crwdne102076:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "crwdns102080:0crwdne102080:0" @@ -26744,11 +26849,11 @@ msgstr "crwdns102084:0crwdne102084:0" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "crwdns102086:0crwdne102086:0" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "crwdns102088:0crwdne102088:0" @@ -26794,7 +26899,7 @@ msgid "Tomorrow" msgstr "crwdns155064:0crwdne155064:0" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "crwdns102106:0crwdne102106:0" @@ -26810,7 +26915,7 @@ msgstr "crwdns102110:0crwdne102110:0" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "crwdns154316:0{0}crwdne154316:0" -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "crwdns102112:0crwdne102112:0" @@ -26872,10 +26977,10 @@ msgstr "crwdns131572:0crwdne131572:0" msgid "Topic" msgstr "crwdns131574:0crwdne131574:0" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "crwdns102140:0crwdne102140:0" @@ -26918,18 +27023,18 @@ msgstr "crwdns131590:0crwdne131590:0" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " -msgstr "crwdns131592:0crwdne131592:0" +msgid "Total number of emails to sync in initial sync process" +msgstr "crwdns158738:0crwdne158738:0" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "crwdns143152:0crwdne143152:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "crwdns102154:0crwdne102154:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "crwdns102156:0crwdne102156:0" @@ -26995,26 +27100,10 @@ msgstr "crwdns111548:0crwdne111548:0" msgid "Tracking" msgstr "crwdns148952:0crwdne148952:0" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "crwdns102180:0crwdne102180:0" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "crwdns131612:0crwdne131612:0" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "crwdns102184:0crwdne102184:0" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "crwdns102186:0crwdne102186:0" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "crwdns148710:0crwdne148710:0" @@ -27028,6 +27117,11 @@ msgstr "crwdns143154:0crwdne143154:0" msgid "Transition Rules" msgstr "crwdns131614:0crwdne131614:0" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "crwdns157368:0crwdne157368:0" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" @@ -27042,7 +27136,7 @@ msgstr "crwdns131616:0crwdne131616:0" msgid "Translatable" msgstr "crwdns131618:0crwdne131618:0" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "crwdns154320:0crwdne154320:0" @@ -27053,7 +27147,7 @@ msgstr "crwdns154320:0crwdne154320:0" msgid "Translate Link Fields" msgstr "crwdns131620:0crwdne131620:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "crwdns148954:0crwdne148954:0" @@ -27137,8 +27231,8 @@ msgstr "crwdns102228:0crwdne102228:0" msgid "Try a Naming Series" msgstr "crwdns131634:0crwdne131634:0" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "crwdns111440:0crwdne111440:0" @@ -27204,7 +27298,7 @@ msgstr "crwdns131640:0crwdne131640:0" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27297,7 +27391,7 @@ msgstr "crwdns131654:0crwdne131654:0" msgid "URL for documentation or help" msgstr "crwdns131656:0crwdne131656:0" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "crwdns102322:0crwdne102322:0" @@ -27400,7 +27494,7 @@ msgstr "crwdns102338:0crwdne102338:0" msgid "Unable to update event" msgstr "crwdns102340:0crwdne102340:0" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "crwdns102342:0{0}crwdne102342:0" @@ -27409,7 +27503,7 @@ msgstr "crwdns102342:0{0}crwdne102342:0" msgid "Unassign Condition" msgstr "crwdns131662:0crwdne131662:0" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "crwdns151458:0crwdne151458:0" @@ -27425,7 +27519,7 @@ msgstr "crwdns102350:0crwdne102350:0" msgid "Undo last action" msgstr "crwdns102352:0crwdne102352:0" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "crwdns155596:0{0}crwdne155596:0" @@ -27472,7 +27566,7 @@ msgstr "crwdns102366:0{0}crwdne102366:0" msgid "Unknown Rounding Method: {}" msgstr "crwdns102368:0crwdne102368:0" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "crwdns102370:0crwdne102370:0" @@ -27484,8 +27578,7 @@ msgstr "crwdns127890:0{0}crwdne127890:0" msgid "Unlock Reference Document" msgstr "crwdns102374:0crwdne102374:0" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "crwdns102376:0crwdne102376:0" @@ -27501,7 +27594,7 @@ msgstr "crwdns131668:0crwdne131668:0" msgid "Unread Notification Sent" msgstr "crwdns131670:0crwdne131670:0" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "crwdns102382:0crwdne102382:0" @@ -27539,8 +27632,8 @@ msgstr "crwdns154322:0crwdne154322:0" msgid "Unsubscribed" msgstr "crwdns102394:0crwdne102394:0" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "crwdns155598:0{0}crwdne155598:0" @@ -27560,7 +27653,7 @@ msgstr "crwdns102406:0{0}crwdne102406:0" msgid "Unzipping files..." msgstr "crwdns102408:0crwdne102408:0" -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "crwdns102410:0crwdne102410:0" @@ -27574,7 +27667,7 @@ msgstr "crwdns102410:0crwdne102410:0" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "crwdns102412:0crwdne102412:0" @@ -27608,6 +27701,11 @@ msgstr "crwdns102426:0crwdne102426:0" msgid "Update Password" msgstr "crwdns149018:0crwdne149018:0" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "crwdns160182:0crwdne160182:0" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27650,7 +27748,7 @@ msgstr "crwdns102440:0{0}crwdne102440:0" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "crwdns102442:0crwdne102442:0" @@ -27658,7 +27756,7 @@ msgstr "crwdns102442:0crwdne102442:0" msgid "Updated Successfully" msgstr "crwdns102448:0crwdne102448:0" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "crwdns102450:0crwdne102450:0" @@ -27666,7 +27764,7 @@ msgstr "crwdns102450:0crwdne102450:0" msgid "Updated successfully" msgstr "crwdns102452:0crwdne102452:0" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "crwdns102456:0crwdne102456:0" @@ -27711,8 +27809,8 @@ msgstr "crwdns151812:0crwdne151812:0" msgid "Upgrade your support experience with Frappe Helpdesk" msgstr "crwdns154373:0crwdne154373:0" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27722,11 +27820,11 @@ msgstr "crwdns102474:0crwdne102474:0" msgid "Upload Image" msgstr "crwdns143156:0crwdne143156:0" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "crwdns143158:0crwdne143158:0" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "crwdns143160:0{0}crwdne143160:0" @@ -27823,15 +27921,11 @@ msgstr "crwdns131718:0crwdne131718:0" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "crwdns152254:0crwdne152254:0" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "crwdns102510:0{0}crwdne102510:0" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "crwdns102512:0crwdne102512:0" -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "crwdns102514:0crwdne102514:0" @@ -27852,7 +27946,9 @@ msgid "Used OAuth" msgstr "crwdns131722:0crwdne131722:0" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -27861,6 +27957,7 @@ msgstr "crwdns131722:0crwdne131722:0" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -27875,11 +27972,12 @@ msgstr "crwdns131722:0crwdne131722:0" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -27888,6 +27986,7 @@ msgstr "crwdns131722:0crwdne131722:0" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -27904,17 +28003,11 @@ msgstr "crwdns131722:0crwdne131722:0" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "crwdns102520:0crwdne102520:0" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "crwdns131724:0crwdne131724:0" - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "crwdns102578:0{0}crwdnd102578:0{1}crwdne102578:0" @@ -27944,7 +28037,7 @@ msgstr "crwdns131728:0crwdne131728:0" msgid "User Cannot Search" msgstr "crwdns131730:0crwdne131730:0" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "crwdns127780:0crwdne127780:0" @@ -28008,11 +28101,6 @@ msgstr "crwdns131742:0crwdne131742:0" msgid "User ID Property" msgstr "crwdns131744:0crwdne131744:0" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "crwdns111550:0crwdne111550:0" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28032,6 +28120,11 @@ msgstr "crwdns102618:0{0}crwdne102618:0" msgid "User Image" msgstr "crwdns131750:0crwdne131750:0" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "crwdns157370:0crwdne157370:0" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "crwdns111304:0crwdne111304:0" @@ -28050,12 +28143,12 @@ msgstr "crwdns102624:0crwdne102624:0" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "crwdns102628:0crwdne102628:0" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "crwdns102630:0crwdne102630:0" @@ -28068,7 +28161,9 @@ msgstr "crwdns111306:0crwdne111306:0" msgid "User Permissions created successfully" msgstr "crwdns104500:0crwdne104500:0" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "crwdns131754:0crwdne131754:0" @@ -28134,6 +28229,10 @@ msgstr "crwdns111312:0crwdne111312:0" msgid "User does not have permission to create the new {0}" msgstr "crwdns102662:0{0}crwdne102662:0" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "crwdns158374:0crwdne158374:0" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "crwdns102664:0crwdne102664:0" @@ -28164,7 +28263,7 @@ msgstr "crwdns102676:0{0}crwdne102676:0" msgid "User {0} cannot be disabled" msgstr "crwdns102678:0{0}crwdne102678:0" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "crwdns102680:0{0}crwdne102680:0" @@ -28185,7 +28284,7 @@ msgstr "crwdns127898:0{0}crwdne127898:0" msgid "User {0} has requested for data deletion" msgstr "crwdns102686:0{0}crwdne102686:0" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "crwdns111442:0{0}crwdnd111442:0{1}crwdne111442:0" @@ -28193,7 +28292,7 @@ msgstr "crwdns111442:0{0}crwdnd111442:0{1}crwdne111442:0" msgid "User {0} is disabled" msgstr "crwdns102688:0{0}crwdne102688:0" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "crwdns127782:0{0}crwdne127782:0" @@ -28214,7 +28313,7 @@ msgstr "crwdns131764:0crwdne131764:0" msgid "Username" msgstr "crwdns102694:0crwdne102694:0" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "crwdns102700:0{0}crwdne102700:0" @@ -28298,7 +28397,7 @@ msgstr "crwdns142900:0crwdne142900:0" msgid "Validate SSL Certificate" msgstr "crwdns131776:0crwdne131776:0" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "crwdns102720:0crwdne102720:0" @@ -28321,8 +28420,8 @@ msgstr "crwdns131778:0crwdne131778:0" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28354,7 +28453,7 @@ msgstr "crwdns131784:0crwdne131784:0" msgid "Value To Be Set" msgstr "crwdns131786:0crwdne131786:0" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "crwdns102750:0{0}crwdne102750:0" @@ -28370,11 +28469,11 @@ msgstr "crwdns102754:0{0}crwdnd102754:0{1}crwdne102754:0" msgid "Value for a check field can be either 0 or 1" msgstr "crwdns102756:0crwdne102756:0" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "crwdns102758:0{0}crwdnd102758:0{1}crwdnd102758:0{2}crwdne102758:0" -#: frappe/model/base_document.py:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "crwdns102760:0{0}crwdne102760:0" @@ -28399,7 +28498,7 @@ msgstr "crwdns156052:0crwdne156052:0" msgid "Value to Validate" msgstr "crwdns131790:0crwdne131790:0" -#: frappe/model/base_document.py:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "crwdns102770:0crwdne102770:0" @@ -28416,7 +28515,7 @@ msgstr "crwdns102774:0{0}crwdne102774:0" msgid "Value {0} must in {1} format" msgstr "crwdns102776:0{0}crwdnd102776:0{1}crwdne102776:0" -#: frappe/core/doctype/version/version_view.html:8 +#: frappe/core/doctype/version/version_view.html:9 msgid "Values Changed" msgstr "crwdns111318:0crwdne111318:0" @@ -28429,7 +28528,7 @@ msgstr "crwdns131792:0crwdne131792:0" msgid "Verification" msgstr "crwdns148342:0crwdne148342:0" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "crwdns143162:0crwdne143162:0" @@ -28491,15 +28590,7 @@ msgstr "crwdns102800:0crwdne102800:0" msgid "View Audit Trail" msgstr "crwdns102802:0crwdne102802:0" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "crwdns102804:0crwdne102804:0" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "crwdns102806:0crwdne102806:0" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "crwdns148750:0crwdne148750:0" @@ -28511,7 +28602,7 @@ msgstr "crwdns152398:0crwdne152398:0" msgid "View Full Log" msgstr "crwdns111324:0crwdne111324:0" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "crwdns102808:0crwdne102808:0" @@ -28521,7 +28612,7 @@ msgstr "crwdns102808:0crwdne102808:0" msgid "View Log" msgstr "crwdns102810:0crwdne102810:0" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "crwdns102812:0crwdne102812:0" @@ -28568,7 +28659,7 @@ msgstr "crwdns102832:0crwdne102832:0" msgid "View this in your browser" msgstr "crwdns102834:0crwdne102834:0" -#: frappe/public/js/frappe/web_form/web_form.js:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "crwdns111326:0crwdne111326:0" @@ -28637,6 +28728,7 @@ msgid "Warehouse" msgstr "crwdns131818:0crwdne131818:0" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "crwdns131820:0crwdne131820:0" @@ -28645,7 +28737,7 @@ msgstr "crwdns131820:0crwdne131820:0" msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" msgstr "crwdns112756:0{0}crwdne112756:0" -#: frappe/core/doctype/doctype/doctype.py:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "crwdns148344:0crwdne148344:0" @@ -28731,7 +28823,7 @@ msgstr "crwdns102894:0crwdne102894:0" msgid "Web Page Block" msgstr "crwdns102900:0crwdne102900:0" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "crwdns102902:0crwdne102902:0" @@ -28834,7 +28926,7 @@ msgstr "crwdns131842:0crwdne131842:0" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "crwdns102952:0crwdne102952:0" @@ -28847,10 +28939,6 @@ msgstr "crwdns102956:0crwdne102956:0" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -28894,7 +28982,7 @@ msgstr "crwdns102968:0crwdne102968:0" msgid "Website Search Field" msgstr "crwdns131844:0crwdne131844:0" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "crwdns102974:0crwdne102974:0" @@ -29111,11 +29199,6 @@ msgstr "crwdns131868:0crwdne131868:0" msgid "Will add \"%\" before and after the query" msgstr "crwdns131870:0crwdne131870:0" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "crwdns131872:0crwdne131872:0" - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "crwdns103092:0crwdne103092:0" @@ -29130,7 +29213,7 @@ msgstr "crwdns103094:0crwdne103094:0" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "crwdns152665:0crwdne152665:0" -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "crwdns103098:0crwdne103098:0" @@ -29208,7 +29291,7 @@ msgstr "crwdns103132:0crwdne103132:0" msgid "Workflow Data" msgstr "crwdns131886:0crwdne131886:0" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "crwdns143164:0crwdne143164:0" @@ -29234,11 +29317,11 @@ msgstr "crwdns103140:0crwdne103140:0" msgid "Workflow State Field" msgstr "crwdns131890:0crwdne131890:0" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "crwdns103146:0crwdne103146:0" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "crwdns103148:0{0}crwdnd103148:0{1}crwdne103148:0" @@ -29246,15 +29329,30 @@ msgstr "crwdns103148:0{0}crwdnd103148:0{1}crwdne103148:0" msgid "Workflow States Don't Exist" msgstr "crwdns149020:0crwdne149020:0" -#: frappe/model/workflow.py:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "crwdns103150:0crwdne103150:0" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "crwdns157372:0crwdne157372:0" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "crwdns103152:0crwdne103152:0" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "crwdns157374:0crwdne157374:0" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "crwdns157376:0crwdne157376:0" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29270,13 +29368,13 @@ msgstr "crwdns112760:0crwdne112760:0" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "crwdns103156:0crwdne103156:0" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "crwdns103162:0{0}crwdne103162:0" @@ -29346,11 +29444,11 @@ msgstr "crwdns148712:0{0}crwdne148712:0" msgid "Workspaces" msgstr "crwdns131892:0crwdne131892:0" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "crwdns154738:0crwdne154738:0" -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "crwdns154740:0crwdne154740:0" @@ -29369,11 +29467,11 @@ msgstr "crwdns127790:0crwdne127790:0" msgid "Write" msgstr "crwdns131894:0crwdne131894:0" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "crwdns103194:0crwdne103194:0" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "crwdns103196:0crwdne103196:0" @@ -29392,13 +29490,13 @@ msgstr "crwdns131898:0crwdne131898:0" msgid "Y Axis" msgstr "crwdns131900:0crwdne131900:0" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" msgstr "crwdns103204:0crwdne103204:0" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "crwdns103206:0crwdne103206:0" @@ -29450,16 +29548,17 @@ msgstr "crwdns131908:0crwdne131908:0" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "crwdns103238:0crwdne103238:0" @@ -29487,6 +29586,18 @@ msgstr "crwdns103252:0crwdne103252:0" msgid "You Liked" msgstr "crwdns103254:0crwdne103254:0" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "crwdns158988:0{0}crwdne158988:0" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "crwdns158990:0{0}crwdnd158990:0{1}crwdne158990:0" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "crwdns159988:0crwdne159988:0" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "crwdns103256:0crwdne103256:0" @@ -29525,20 +29636,20 @@ msgstr "crwdns103268:0crwdne103268:0" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "crwdns103270:0crwdne103270:0" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "crwdns103272:0crwdne103272:0" -#: frappe/public/js/frappe/views/communication.js:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "crwdns103274:0crwdne103274:0" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "crwdns103276:0crwdne103276:0" @@ -29562,7 +29673,7 @@ msgstr "crwdns155350:0crwdne155350:0" msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "crwdns103286:0crwdne103286:0" -#: frappe/core/doctype/installed_applications/installed_applications.py:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 msgid "You are only allowed to update order, do not remove or add apps." msgstr "crwdns103288:0crwdne103288:0" @@ -29588,13 +29699,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "crwdns103296:0crwdne103296:0" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " -msgstr "crwdns103298:0crwdne103298:0" +msgid "You can also copy-paste this" +msgstr "crwdns158740:0crwdne158740:0" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "crwdns103300:0{0}crwdne103300:0" +#: frappe/templates/emails/user_invitation_expired.html:8 +msgid "You can ask your team to resend the invitation if you'd still like to join." +msgstr "crwdns157378:0crwdne157378:0" + #: frappe/core/page/permission_manager/permission_manager_help.html:17 msgid "You can change Submitted documents by cancelling them and then, amending them." msgstr "crwdns111338:0crwdne111338:0" @@ -29607,11 +29722,11 @@ msgstr "crwdns103302:0{0}crwdne103302:0" msgid "You can continue with the onboarding after exploring this page" msgstr "crwdns103304:0crwdne103304:0" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "crwdns142902:0{0}crwdne142902:0" -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "crwdns103306:0crwdne103306:0" @@ -29631,7 +29746,7 @@ msgstr "crwdns111480:0{0}crwdne111480:0" msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "crwdns103312:0crwdne103312:0" -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "crwdns152016:0crwdne152016:0" @@ -29649,7 +29764,7 @@ msgstr "crwdns111340:0crwdne111340:0" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "crwdns148354:0crwdne148354:0" -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "crwdns103318:0crwdne103318:0" @@ -29661,11 +29776,11 @@ msgstr "crwdns111342:0crwdne111342:0" msgid "You can use wildcard %" msgstr "crwdns103320:0crwdne103320:0" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "crwdns103322:0{0}crwdne103322:0" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "crwdns103324:0{0}crwdne103324:0" @@ -29683,7 +29798,7 @@ msgstr "crwdns103328:0{1}crwdne103328:0" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "crwdns103330:0crwdne103330:0" -#: frappe/custom/doctype/customize_form/customize_form.py:385 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "crwdns103334:0{0}crwdne103334:0" @@ -29713,7 +29828,7 @@ msgstr "crwdns103344:0{0}crwdnd103344:0{1}crwdne103344:0" msgid "You created this" msgstr "crwdns103346:0crwdne103346:0" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "crwdns155352:0{0}crwdne155352:0" @@ -29726,15 +29841,15 @@ msgstr "crwdns103348:0crwdne103348:0" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "crwdns103350:0crwdne103350:0" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "crwdns103352:0crwdne103352:0" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "crwdns155600:0{0}crwdne155600:0" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "crwdns149134:0{0}crwdnd149134:0{1}crwdne149134:0" @@ -29746,11 +29861,11 @@ msgstr "crwdns103360:0crwdne103360:0" msgid "You don't have access to Report: {0}" msgstr "crwdns103362:0{0}crwdne103362:0" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "crwdns103364:0{0}crwdne103364:0" -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "crwdns103366:0crwdne103366:0" @@ -29758,19 +29873,19 @@ msgstr "crwdns103366:0crwdne103366:0" msgid "You don't have permission to get a report on: {0}" msgstr "crwdns103368:0{0}crwdne103368:0" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "crwdns103370:0crwdne103370:0" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " -msgstr "crwdns103376:0crwdne103376:0" +msgid "You have a new message from:" +msgstr "crwdns158742:0crwdne158742:0" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "crwdns103378:0crwdne103378:0" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "crwdns103380:0{0}crwdne103380:0" @@ -29778,11 +29893,7 @@ msgstr "crwdns103380:0{0}crwdne103380:0" msgid "You have not entered a value. The field will be set to empty." msgstr "crwdns103382:0crwdne103382:0" -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "crwdns103384:0crwdne103384:0" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "crwdns103386:0crwdne103386:0" @@ -29802,7 +29913,7 @@ msgstr "crwdns103390:0{0}crwdne103390:0" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "crwdns111346:0crwdne111346:0" -#: frappe/public/js/frappe/list/list_view.js:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "crwdns103392:0{0}crwdne103392:0" @@ -29819,11 +29930,11 @@ msgstr "crwdns103396:0crwdne103396:0" msgid "You must add atleast one link." msgstr "crwdns103398:0crwdne103398:0" -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "crwdns103400:0crwdne103400:0" -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "crwdns103402:0crwdne103402:0" @@ -29847,7 +29958,7 @@ msgstr "crwdns112716:0crwdne112716:0" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "crwdns103406:0crwdne103406:0" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "crwdns103408:0crwdne103408:0" @@ -29855,13 +29966,13 @@ msgstr "crwdns103408:0crwdne103408:0" msgid "You need to be logged in to access this page" msgstr "crwdns103410:0crwdne103410:0" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "crwdns103412:0{0}crwdne103412:0" #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " -msgstr "crwdns111348:0crwdne111348:0" +msgid "You need to create these first:" +msgstr "crwdns158744:0crwdne158744:0" #: frappe/www/login.html:76 msgid "You need to enable JavaScript for your app to work." @@ -29895,11 +30006,19 @@ msgstr "crwdns151846:0{0}crwdnd151846:0{1}crwdne151846:0" msgid "You need {0} permission to fetch values from {1} {2}" msgstr "crwdns103424:0{0}crwdnd103424:0{1}crwdnd103424:0{2}crwdne103424:0" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "crwdns158992:0{0}crwdne158992:0" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "crwdns103426:0{0}crwdne103426:0" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "crwdns158994:0{0}crwdnd158994:0{1}crwdne158994:0" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "crwdns103428:0crwdne103428:0" @@ -29930,10 +30049,26 @@ msgstr "crwdns103436:0crwdne103436:0" msgid "You viewed this" msgstr "crwdns103438:0crwdne103438:0" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "crwdns159990:0crwdne159990:0" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "crwdns157380:0{0}crwdne157380:0" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "crwdns157382:0{0}crwdne157382:0" + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "crwdns127792:0crwdne127792:0" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "crwdns157384:0crwdne157384:0" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "crwdns155354:0crwdne155354:0" @@ -29963,7 +30098,7 @@ msgstr "crwdns103446:0crwdne103446:0" msgid "Your account has been deleted" msgstr "crwdns103448:0crwdne103448:0" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "crwdns103450:0{0}crwdne103450:0" @@ -29987,10 +30122,22 @@ msgstr "crwdns103454:0crwdne103454:0" msgid "Your email address" msgstr "crwdns103456:0crwdne103456:0" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "crwdns158996:0{0}crwdne158996:0" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "crwdns103458:0crwdne103458:0" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "crwdns157386:0{0}crwdne157386:0" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "crwdns157388:0{0}crwdne157388:0" + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "crwdns103460:0crwdne103460:0" @@ -30013,7 +30160,11 @@ msgstr "crwdns131910:0crwdne131910:0" msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "crwdns103468:0crwdne103468:0" -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "crwdns159246:0{0}crwdne159246:0" + +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "crwdns103470:0crwdne103470:0" @@ -30035,7 +30186,7 @@ msgstr "crwdns103476:0crwdne103476:0" msgid "Zero means send records updated at anytime" msgstr "crwdns131912:0crwdne131912:0" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" msgstr "crwdns152382:0{0}crwdne152382:0" @@ -30057,10 +30208,6 @@ msgstr "crwdns104504:0crwdne104504:0" msgid "`job_id` paramater is required for deduplication." msgstr "crwdns103484:0crwdne103484:0" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "crwdns103486:0{0}crwdne103486:0" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30095,7 +30242,7 @@ msgstr "crwdns111356:0crwdne111356:0" msgid "cProfile Output" msgstr "crwdns131924:0crwdne131924:0" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "crwdns103538:0crwdne103538:0" @@ -30240,12 +30387,12 @@ msgstr "crwdns131956:0crwdne131956:0" msgid "email" msgstr "crwdns131958:0crwdne131958:0" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "crwdns103630:0crwdne103630:0" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "crwdns103632:0crwdne103632:0" @@ -30302,7 +30449,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "crwdns103694:0crwdne103694:0" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "crwdns103712:0crwdne103712:0" @@ -30317,11 +30464,6 @@ msgstr "crwdns131976:0crwdne131976:0" msgid "import" msgstr "crwdns131978:0crwdne131978:0" -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "crwdns131980:0crwdne131980:0" - #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "crwdns103730:0crwdne103730:0" @@ -30330,7 +30472,7 @@ msgstr "crwdns103730:0crwdne103730:0" msgid "just now" msgstr "crwdns103732:0crwdne103732:0" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "crwdns103734:0crwdne103734:0" @@ -30359,7 +30501,7 @@ msgstr "crwdns131988:0crwdne131988:0" msgid "logged in" msgstr "crwdns103752:0crwdne103752:0" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "crwdns111362:0crwdne111362:0" @@ -30380,11 +30522,6 @@ msgstr "crwdns103758:0crwdne103758:0" msgid "merged {0} into {1}" msgstr "crwdns103764:0{0}crwdnd103764:0{1}crwdne103764:0" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "crwdns103766:0crwdne103766:0" - #. 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 @@ -30408,7 +30545,7 @@ msgstr "crwdns131996:0crwdne131996:0" msgid "module name..." msgstr "crwdns103778:0crwdne103778:0" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "crwdns103784:0crwdne103784:0" @@ -30537,10 +30674,6 @@ msgstr "crwdns132036:0crwdne132036:0" msgid "red" msgstr "crwdns132038:0crwdne132038:0" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "crwdns103880:0{0}crwdne103880:0" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "crwdns103882:0{0}crwdnd103882:0{1}crwdne103882:0" @@ -30596,19 +30729,19 @@ msgstr "crwdns132050:0crwdne132050:0" msgid "short" msgstr "crwdns132052:0crwdne132052:0" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "crwdns103930:0crwdne103930:0" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "crwdns103932:0crwdne103932:0" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "crwdns103934:0crwdne103934:0" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "crwdns103936:0crwdne103936:0" @@ -30661,6 +30794,10 @@ msgstr "crwdns103980:0crwdne103980:0" msgid "this shouldn't break" msgstr "crwdns103982:0crwdne103982:0" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "crwdns158746:0crwdne158746:0" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30688,7 +30825,7 @@ msgstr "crwdns132066:0crwdne132066:0" msgid "via Assignment Rule" msgstr "crwdns104006:0crwdne104006:0" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "crwdns155356:0crwdne155356:0" @@ -30702,7 +30839,7 @@ msgstr "crwdns104008:0crwdne104008:0" msgid "via Google Meet" msgstr "crwdns132068:0crwdne132068:0" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "crwdns104012:0crwdne104012:0" @@ -30735,10 +30872,15 @@ msgstr "crwdns132074:0crwdne132074:0" msgid "wkhtmltopdf" msgstr "crwdns154324:0crwdne154324:0" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "crwdns127800:0crwdne127800:0" +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "crwdns157396:0crwdne157396:0" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json @@ -30766,11 +30908,11 @@ msgstr "crwdns132080:0crwdne132080:0" msgid "{0}" msgstr "crwdns104044:0{0}crwdne104044:0" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "crwdns104048:0{0}crwdne104048:0" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "crwdns104050:0{0}crwdnd104050:0${type}crwdne104050:0" @@ -30796,19 +30938,19 @@ msgstr "crwdns104058:0{0}crwdnd104058:0{1}crwdne104058:0" msgid "{0} Calendar" msgstr "crwdns104060:0{0}crwdne104060:0" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "crwdns104062:0{0}crwdne104062:0" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "crwdns104064:0{0}crwdne104064:0" -#: frappe/public/js/frappe/form/grid_row.js:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "crwdns104066:0{0}crwdne104066:0" @@ -30832,6 +30974,10 @@ msgstr "crwdns104072:0{0}crwdne104072:0" msgid "{0} List" msgstr "crwdns104074:0{0}crwdne104074:0" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "crwdns158748:0{0}crwdne158748:0" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "crwdns104076:0{0}crwdne104076:0" @@ -30844,7 +30990,7 @@ msgstr "crwdns104078:0{0}crwdne104078:0" msgid "{0} Name" msgstr "crwdns104082:0{0}crwdne104082:0" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "crwdns104084:0{0}crwdnd104084:0{1}crwdnd104084:0{2}crwdnd104084:0{3}crwdne104084:0" @@ -30854,11 +31000,10 @@ msgstr "crwdns104084:0{0}crwdnd104084:0{1}crwdnd104084:0{2}crwdnd104084:0{3}crwd msgid "{0} Report" msgstr "crwdns104086:0{0}crwdne104086:0" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "crwdns111368:0{0}crwdne111368:0" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "crwdns104088:0{0}crwdne104088:0" @@ -30883,7 +31028,15 @@ msgstr "crwdns104506:0{0}crwdne104506:0" msgid "{0} added" msgstr "crwdns104096:0{0}crwdne104096:0" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "crwdns159000:0{0}crwdnd159000:0{1}crwdne159000:0" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "crwdns159002:0{0}crwdnd159002:0{1}crwdnd159002:0{2}crwdne159002:0" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "crwdns104098:0{0}crwdne104098:0" @@ -30895,7 +31048,7 @@ msgstr "crwdns104100:0{0}crwdne104100:0" msgid "{0} already unsubscribed for {1} {2}" msgstr "crwdns104102:0{0}crwdnd104102:0{1}crwdnd104102:0{2}crwdne104102:0" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "crwdns104104:0{0}crwdnd104104:0{1}crwdne104104:0" @@ -30903,7 +31056,7 @@ msgstr "crwdns104104:0{0}crwdnd104104:0{1}crwdne104104:0" msgid "{0} are currently {1}" msgstr "crwdns104118:0{0}crwdnd104118:0{1}crwdne104118:0" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "crwdns104120:0{0}crwdne104120:0" @@ -30920,7 +31073,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "crwdns104126:0{0}crwdnd104126:0{1}crwdne104126:0" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "crwdns104508:0{0}crwdnd104508:0{1}crwdne104508:0" @@ -30962,11 +31115,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "crwdns104142:0{0}crwdnd104142:0{1}crwdnd104142:0{2}crwdne104142:0" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "crwdns104144:0{0}crwdne104144:0" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." msgstr "crwdns127900:0{0}crwdne127900:0" @@ -30979,7 +31128,7 @@ msgstr "crwdns104146:0{0}crwdne104146:0" msgid "{0} created this" msgstr "crwdns104148:0{0}crwdne104148:0" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "crwdns155358:0{0}crwdnd155358:0{1}crwdne155358:0" @@ -31001,7 +31150,7 @@ msgstr "crwdns104166:0{0}crwdnd104166:0{1}crwdne104166:0" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "crwdns104168:0{0}crwdnd104168:0{1}crwdne104168:0" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "crwdns155602:0{0}crwdnd155602:0{1}crwdne155602:0" @@ -31033,7 +31182,7 @@ msgstr "crwdns104190:0{0}crwdnd104190:0{1}crwdnd104190:0{2}crwdne104190:0" msgid "{0} hours ago" msgstr "crwdns104194:0{0}crwdne104194:0" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "crwdns104196:0{0}crwdnd104196:0{1}crwdne104196:0" @@ -31042,23 +31191,23 @@ msgstr "crwdns104196:0{0}crwdnd104196:0{1}crwdne104196:0" msgid "{0} in row {1} cannot have both URL and child items" msgstr "crwdns104198:0{0}crwdnd104198:0{1}crwdne104198:0" -#: frappe/core/doctype/doctype/doctype.py:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "crwdns104200:0{0}crwdne104200:0" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "crwdns104202:0{0}crwdne104202:0" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "crwdns104204:0{0}crwdne104204:0" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "crwdns104206:0{0}crwdne104206:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "crwdns104208:0{0}crwdnd104208:0{1}crwdnd104208:0{2}crwdne104208:0" @@ -31067,27 +31216,27 @@ msgstr "crwdns104208:0{0}crwdnd104208:0{1}crwdnd104208:0{2}crwdne104208:0" msgid "{0} is currently {1}" msgstr "crwdns104210:0{0}crwdnd104210:0{1}crwdne104210:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "crwdns104212:0{0}crwdnd104212:0{1}crwdne104212:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "crwdns104214:0{0}crwdnd104214:0{1}crwdne104214:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "crwdns104216:0{0}crwdnd104216:0{1}crwdne104216:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "crwdns104218:0{0}crwdnd104218:0{1}crwdne104218:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "crwdns104220:0{0}crwdnd104220:0{1}crwdne104220:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "crwdns104222:0{0}crwdnd104222:0{1}crwdne104222:0" @@ -31095,7 +31244,7 @@ msgstr "crwdns104222:0{0}crwdnd104222:0{1}crwdne104222:0" msgid "{0} is mandatory" msgstr "crwdns104224:0{0}crwdne104224:0" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "crwdns155604:0{0}crwdnd155604:0{1}crwdne155604:0" @@ -31115,12 +31264,12 @@ msgstr "crwdns104230:0{0}crwdne104230:0" msgid "{0} is not a valid Cron expression." msgstr "crwdns111446:0{0}crwdne111446:0" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "crwdns104232:0{0}crwdne104232:0" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "crwdns104234:0{0}crwdne104234:0" @@ -31128,15 +31277,15 @@ msgstr "crwdns104234:0{0}crwdne104234:0" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "crwdns152102:0{0}crwdne152102:0" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "crwdns104236:0{0}crwdne104236:0" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "crwdns104238:0{0}crwdne104238:0" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "crwdns104240:0{0}crwdne104240:0" @@ -31152,55 +31301,59 @@ msgstr "crwdns104244:0{0}crwdnd104244:0{1}crwdne104244:0" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "crwdns104246:0{0}crwdnd104246:0{1}crwdne104246:0" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "crwdns104248:0{0}crwdne104248:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "crwdns157398:0{0}crwdnd157398:0{1}crwdne157398:0" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "crwdns104250:0{0}crwdnd104250:0{1}crwdne104250:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "crwdns104252:0{0}crwdnd104252:0{1}crwdne104252:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "crwdns104254:0{0}crwdnd104254:0{1}crwdne104254:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "crwdns104256:0{0}crwdne104256:0" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "crwdns104258:0{0}crwdnd104258:0{1}crwdne104258:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" msgstr "crwdns104260:0{0}crwdnd104260:0{1}crwdne104260:0" #: frappe/email/doctype/email_account/email_account.py:304 -#: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/printing/doctype/print_format/print_format.py:104 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "crwdns104262:0{0}crwdne104262:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "crwdns104264:0{0}crwdne104264:0" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "crwdns104266:0{0}crwdnd104266:0{1}crwdne104266:0" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "crwdns104268:0{0}crwdne104268:0" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "crwdns111448:0{0}crwdnd111448:0{1}crwdne111448:0" @@ -31233,35 +31386,35 @@ msgstr "crwdns104280:0{0}crwdne104280:0" msgid "{0} months ago" msgstr "crwdns104282:0{0}crwdne104282:0" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "crwdns104284:0{0}crwdnd104284:0{1}crwdne104284:0" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "crwdns148714:0{0}crwdnd148714:0{1}crwdne148714:0" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "crwdns148716:0{0}crwdnd148716:0{1}crwdne148716:0" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "crwdns148718:0{0}crwdnd148718:0{1}crwdne148718:0" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "crwdns104286:0{0}crwdnd104286:0{1}crwdne104286:0" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "crwdns104288:0{0}crwdne104288:0" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "crwdns104290:0{0}crwdne104290:0" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "crwdns148720:0{0}crwdnd148720:0{1}crwdnd148720:0{2}crwdne148720:0" @@ -31269,7 +31422,7 @@ msgstr "crwdns148720:0{0}crwdnd148720:0{1}crwdnd148720:0{2}crwdne148720:0" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "crwdns149022:0{0}crwdne149022:0" -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "crwdns104294:0{0}crwdne104294:0" @@ -31282,11 +31435,11 @@ msgid "{0} not found" msgstr "crwdns104298:0{0}crwdne104298:0" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "crwdns104300:0{0}crwdnd104300:0{1}crwdne104300:0" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "crwdns104302:0{0}crwdnd104302:0{1}crwdnd104302:0{2}crwdne104302:0" @@ -31295,7 +31448,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "crwdns104510:0{0}crwdne104510:0" -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "crwdns104306:0{0}crwdnd104306:0{1}crwdne104306:0" @@ -31319,6 +31472,10 @@ msgstr "crwdns104314:0{0}crwdne104314:0" msgid "{0} records will be exported" msgstr "crwdns104316:0{0}crwdne104316:0" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "crwdns159004:0{0}crwdnd159004:0{1}crwdne159004:0" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31328,15 +31485,29 @@ msgstr "crwdns104318:0{0}crwdnd104318:0{1}crwdne104318:0" msgid "{0} removed their assignment." msgstr "crwdns104320:0{0}crwdne104320:0" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "crwdns159006:0{0}crwdnd159006:0{1}crwdnd159006:0{2}crwdne159006:0" + +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "crwdns111370:0{0}crwdne111370:0" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " -msgstr "crwdns152018:0{0}crwdnd152018:0#{1}crwdne152018:0" +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" +msgstr "crwdns158750:0{0}crwdnd158750:0#{1}crwdne158750:0" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "crwdns159008:0{0}crwdnd159008:0{1}crwdne159008:0" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "crwdns159010:0{0}crwdnd159010:0{1}crwdne159010:0" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "crwdns104328:0{0}crwdne104328:0" @@ -31356,11 +31527,11 @@ msgstr "crwdns104334:0{0}crwdne104334:0" msgid "{0} shared this document with {1}" msgstr "crwdns104336:0{0}crwdnd104336:0{1}crwdne104336:0" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "crwdns104338:0{0}crwdne104338:0" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "crwdns104340:0{0}crwdnd104340:0{1}crwdne104340:0" @@ -31373,8 +31544,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "crwdns104344:0{0}crwdnd104344:0{1}crwdne104344:0" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "crwdns104346:0{0}crwdne104346:0" @@ -31384,7 +31555,7 @@ msgstr "crwdns104348:0{0}crwdne104348:0" #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "crwdns104350:0{0}crwdnd104350:0{1}crwdne104350:0" @@ -31392,7 +31563,7 @@ msgstr "crwdns104350:0{0}crwdnd104350:0{1}crwdne104350:0" msgid "{0} un-shared this document with {1}" msgstr "crwdns104352:0{0}crwdnd104352:0{1}crwdne104352:0" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "crwdns104354:0{0}crwdne104354:0" @@ -31428,15 +31599,15 @@ msgstr "crwdns104368:0{0}crwdnd104368:0{1}crwdne104368:0" msgid "{0} {1} added to Dashboard {2}" msgstr "crwdns104370:0{0}crwdnd104370:0{1}crwdnd104370:0{2}crwdne104370:0" -#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "crwdns104372:0{0}crwdnd104372:0{1}crwdne104372:0" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "crwdns104374:0{0}crwdnd104374:0{1}crwdnd104374:0{2}crwdnd104374:0{3}crwdne104374:0" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "crwdns104376:0{0}crwdnd104376:0{1}crwdne104376:0" @@ -31452,11 +31623,11 @@ msgstr "crwdns104380:0{0}crwdnd104380:0{1}crwdnd104380:0{2}crwdne104380:0" msgid "{0} {1} not found" msgstr "crwdns104382:0{0}crwdnd104382:0{1}crwdne104382:0" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "crwdns104384:0{0}crwdnd104384:0{1}crwdnd104384:0{2}crwdnd104384:0{3}crwdne104384:0" -#: frappe/model/base_document.py:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "crwdns104386:0{0}crwdnd104386:0{1}crwdne104386:0" @@ -31464,79 +31635,79 @@ msgstr "crwdns104386:0{0}crwdnd104386:0{1}crwdne104386:0" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "crwdns151120:0{0}crwdnd151120:0{1}crwdne151120:0" -#: frappe/model/base_document.py:1120 +#: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "crwdns104388:0{0}crwdnd104388:0{1}crwdnd104388:0{3}crwdnd104388:0{2}crwdne104388:0" -#: frappe/core/doctype/doctype/doctype.py:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "crwdns104390:0{0}crwdne104390:0" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "crwdns104392:0{0}crwdne104392:0" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "crwdns104394:0{0}crwdne104394:0" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "crwdns104396:0{0}crwdne104396:0" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "crwdns104398:0{0}crwdne104398:0" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "crwdns104400:0{0}crwdne104400:0" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 msgid "{0}: Cannot set import as {1} is not importable" msgstr "crwdns104402:0{0}crwdnd104402:0{1}crwdne104402:0" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436 msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings" msgstr "crwdns104404:0{0}crwdnd104404:0{1}crwdne104404:0" -#: frappe/core/doctype/doctype/doctype.py:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "crwdns104406:0{0}crwdnd104406:0{1}crwdne104406:0" -#: frappe/core/doctype/doctype/doctype.py:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "crwdns104408:0{0}crwdnd104408:0{1}crwdnd104408:0{2}crwdne104408:0" -#: frappe/core/doctype/doctype/doctype.py:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "crwdns104410:0{0}crwdnd104410:0{1}crwdnd104410:0{2}crwdne104410:0" -#: frappe/core/doctype/doctype/doctype.py:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "crwdns104412:0{0}crwdnd104412:0{1}crwdnd104412:0{2}crwdne104412:0" -#: frappe/core/doctype/doctype/doctype.py:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "crwdns104414:0{0}crwdnd104414:0{1}crwdnd104414:0{2}crwdne104414:0" -#: frappe/core/doctype/doctype/doctype.py:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "crwdns104416:0{0}crwdne104416:0" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "crwdns104418:0{0}crwdnd104418:0{1}crwdne104418:0" -#: frappe/core/doctype/doctype/doctype.py:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" msgstr "crwdns104420:0{0}crwdnd104420:0{1}crwdnd104420:0{2}crwdne104420:0" -#: frappe/core/doctype/doctype/doctype.py:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "crwdns104422:0{0}crwdnd104422:0{1}crwdnd104422:0{2}crwdne104422:0" -#: frappe/core/doctype/doctype/doctype.py:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "crwdns104424:0{0}crwdnd104424:0{1}crwdnd104424:0{2}crwdnd104424:0{3}crwdne104424:0" @@ -31544,7 +31715,7 @@ msgstr "crwdns104424:0{0}crwdnd104424:0{1}crwdnd104424:0{2}crwdnd104424:0{3}crwd msgid "{0}: Other permission rules may also apply" msgstr "crwdns111372:0{0}crwdne111372:0" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "crwdns104426:0{0}crwdne104426:0" @@ -31552,7 +31723,7 @@ msgstr "crwdns104426:0{0}crwdne104426:0" msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "crwdns104428:0{0}crwdnd104428:0{1}crwdne104428:0" -#: frappe/core/doctype/doctype/doctype.py:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "crwdns104430:0{0}crwdnd104430:0{1}crwdne104430:0" @@ -31565,11 +31736,11 @@ msgstr "crwdns104432:0{0}crwdnd104432:0{1}crwdne104432:0" msgid "{0}: {1} is set to state {2}" msgstr "crwdns104434:0{0}crwdnd104434:0{1}crwdnd104434:0{2}crwdne104434:0" -#: frappe/public/js/frappe/views/reports/query_report.js:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "crwdns104436:0{0}crwdnd104436:0{1}crwdnd104436:0{2}crwdne104436:0" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "crwdns104438:0{0}crwdnd104438:0{1}crwdnd104438:0{2}crwdne104438:0" @@ -31593,7 +31764,7 @@ msgstr "crwdns104444:0{count}crwdne104444:0" msgid "{count} rows selected" msgstr "crwdns104446:0{count}crwdne104446:0" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "crwdns104448:0{{{0}}}crwdnd104448:0{{field_name}}crwdne104448:0" @@ -31601,11 +31772,11 @@ msgstr "crwdns104448:0{{{0}}}crwdnd104448:0{{field_name}}crwdne104448:0" msgid "{} Complete" msgstr "crwdns104450:0crwdne104450:0" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "crwdns104452:0crwdne104452:0" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "crwdns104454:0crwdne104454:0" @@ -31631,7 +31802,7 @@ msgstr "crwdns104460:0crwdne104460:0" msgid "{} is not a valid date string." msgstr "crwdns104462:0crwdne104462:0" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "crwdns104464:0crwdne104464:0" diff --git a/frappe/locale/es.po b/frappe/locale/es.po index 3e75fcf7a4..c7a42409da 100644 --- a/frappe/locale/es.po +++ b/frappe/locale/es.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-21 21:49\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" @@ -18,10 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: es_ES\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr " a tu navegador" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json @@ -61,7 +57,7 @@ msgstr "#{0}" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "${values.doctype_name} se ha agregado a la cola para optimización" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" msgstr "© Frappe Technologies Pvt. Ltd. y colaboradores" @@ -74,7 +70,7 @@ msgstr "<head> HTML" msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "'En Búsqueda Global' no está permitido para el campo {0} del tipo {1}" -#: frappe/core/doctype/doctype/doctype.py:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "'En Búsqueda Global' no está permitido para el tipo {0} en la fila {1}" @@ -82,19 +78,23 @@ msgstr "'En Búsqueda Global' no está permitido para el tipo {0} en la fila {1} msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "'En vista de lista' no está permitido para el campo {0} del tipo {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "'En vista de lista' no está permitido para el tipo {0} en el renglón {1}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" msgstr "'Destinatarios' no especificados" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" msgstr "'{0}' no es una URL válida" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "'{0}' no permitido para el tipo {1} en la fila {2}" @@ -102,11 +102,11 @@ msgstr "'{0}' no permitido para el tipo {1} en la fila {2}" msgid "(Mandatory)" msgstr "(Obligatorio)" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "** Fallido: {0} a {1}: {2}" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" msgstr "+ Añadir / Eliminar campos" @@ -122,7 +122,7 @@ msgstr "0 - Borrador; 1 - Validado; 2 - Cancelado" msgid "0 is highest" msgstr "0 es más alto" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = Verdadero y 0 = Falso" @@ -141,15 +141,11 @@ msgstr "1 Día" msgid "1 Google Calendar Event synced." msgstr "1 evento de Google Calendar sincronizado." -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 Informe" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "1 comentario" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "Hace 1 día" @@ -158,17 +154,17 @@ msgid "1 hour" msgstr "1 hora" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "Hace una hora" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "Hace un minuto" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "Hace 1 mes" @@ -180,37 +176,47 @@ msgstr "1 de 2" msgid "1 record will be exported" msgstr "Se exportará 1 registro" -#: frappe/tests/test_utils.py:711 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "" + +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "Hace 1 segundo" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "Hace 1 semana" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "Hace 1 año" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "Hace 2 horas" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "Hace 2 meses" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "Hace 2 semanas" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "Hace 2 años" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "Hace 3 minutos" @@ -226,7 +232,7 @@ msgstr "4 horas" msgid "5 Records" msgstr "5 registros" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "Hace 5 días" @@ -246,6 +252,13 @@ msgstr "<" msgid "<=" msgstr "<=" +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "{0} no es una URL válida" @@ -255,6 +268,16 @@ msgstr "{0} no es una URL válida" msgid "
Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
" msgstr "
Por favor, no lo actualice, ya que puede estropear su formulario. Utilice la opción Personalizar vista de formulario y campos personalizados para establecer las propiedades.
" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -592,7 +615,7 @@ msgstr "

Para interactuar con el HTML anterior, deberá utilizar `root_element "some_class_element.textContent = \"Nuevo contenido\";\n" "

" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

" msgstr "

Se ha restablecido su clave OTP en {0}. Si no realizó este restablecimiento ni lo solicitó, comuníquese con su administrador del sistema de inmediato.

" @@ -682,7 +705,7 @@ msgstr ">" msgid ">=" msgstr ">=" -#: frappe/core/doctype/doctype/doctype.py:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "El nombre de un DocType debe empezar por una letra y sólo puede estar formado por letras, números, espacios, guiones bajos y guiones" @@ -691,15 +714,16 @@ msgstr "El nombre de un DocType debe empezar por una letra y sólo puede estar f msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" -msgstr "Una publicación destacada debe tener una imagen de portada" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "Ya existe un campo con el nombre {0} en {1}" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "Ya existe un archivo con el mismo nombre {}" @@ -712,7 +736,7 @@ msgstr "Una lista de los recursos que el cliente de aplicación tendrá acceso a msgid "A new account has been created for you at {0}" msgstr "Una nueva cuenta ha sido creada para usted en {0}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "Se ha creado un {0} {1} recurrente para usted mediante la repetición automática {2}." @@ -811,13 +835,17 @@ msgstr "Endpoint de la API" msgid "API Endpoint Args" msgstr "Argumentos del endpoint de la API" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -836,6 +864,10 @@ msgstr "Clave API y secreto para interactuar con el servidor de retransmisión. msgid "API Key cannot be regenerated" msgstr "No se puede regenerar la clave API" +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -856,7 +888,7 @@ msgstr "" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -903,6 +935,20 @@ msgstr "Quedan aproximadamente {0} minutos" msgid "About {0} seconds remaining" msgstr "Quedan aproximadamente {0} segundos" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "Aceptado" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -928,7 +974,7 @@ msgstr "Token de Acceso" msgid "Access Token URL" msgstr "URL de Token de Acceso" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Acceso no permitido desde esta dirección IP" @@ -992,7 +1038,7 @@ msgstr "Acción / Ruta" msgid "Action Complete" msgstr "Acción completada" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "Acción Fallida" @@ -1044,7 +1090,7 @@ msgstr "La acción {0} falló en {1} {2}. Véalo en {3}" #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Acciones" @@ -1101,7 +1147,7 @@ msgstr "Registro de Actividad" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -1112,7 +1158,7 @@ msgstr "Registro de Actividad" msgid "Add" msgstr "Agregar" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "Añadir / Eliminar Columnas" @@ -1124,7 +1170,7 @@ msgstr "Agregar / Actualizar" msgid "Add A New Rule" msgstr "Añadir una nueva regla" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Añadir un adjunto" @@ -1144,7 +1190,7 @@ msgstr "Añadir borde al final" msgid "Add Border at Top" msgstr "Añadir borde al principio" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "Agregar Tarjeta al tablero" @@ -1157,10 +1203,10 @@ msgid "Add Child" msgstr "Crear subcategoría" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "Añadir Columna" @@ -1219,7 +1265,7 @@ msgstr "Agregar Participantes" msgid "Add Query Parameters" msgstr "Agregar parámetros de consulta" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "Añadir Roles" @@ -1252,12 +1298,12 @@ msgstr "Añadir Suscriptores" msgid "Add Tags" msgstr "Añadir etiquetas" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Añadir etiquetas" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "Añadir plantilla" @@ -1346,7 +1392,7 @@ msgstr "Agregar nueva pestaña" msgid "Add page break" msgstr "Añadir salto de página" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "Agregar script para tabla secundaria" @@ -1384,7 +1430,7 @@ msgstr "Añadir a esta actividad enviando un correo a {0}" msgid "Add {0}" msgstr "Agregar {0}" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" msgstr "Agregar {0}" @@ -1427,6 +1473,7 @@ msgstr "Permisos Adicionales" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1435,6 +1482,7 @@ msgstr "Dirección" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "Dirección línea 1" @@ -1442,6 +1490,7 @@ msgstr "Dirección línea 1" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "Dirección línea 2" @@ -1492,7 +1541,7 @@ msgstr "Agrega un script de cliente personalizado a un DocType" msgid "Adds a custom field to a DocType" msgstr "Agrega un campo personalizado a un DocType" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "Administración" @@ -1506,7 +1555,6 @@ msgstr "Administración" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1519,11 +1567,11 @@ msgstr "Administración" msgid "Administrator" msgstr "Administrador" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "Administrador logeado" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Acceso de Administrador {0} en {1} a través de la dirección IP {2}." @@ -1544,8 +1592,8 @@ msgstr "Anticipado" msgid "Advanced Control" msgstr "Control Avanzado" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" msgstr "Búsqueda Avanzada" @@ -1604,7 +1652,7 @@ msgstr "Después de validar" msgid "After Submit" msgstr "Después de validar" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "El campo Agregado es necesario para crear una Widget numérico" @@ -1631,11 +1679,11 @@ msgstr "Alerta" msgid "Alerts and Notifications" msgstr "Alertas y Notificaciones" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1700,7 +1748,7 @@ msgstr "Todas las imágenes adjuntas a la Presentación del Sitio Web deben ser msgid "All Records" msgstr "Todos los registros" -#: frappe/public/js/frappe/form/form.js:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "Todas las entregas" @@ -1760,8 +1808,8 @@ msgstr "Permitir edición masiva" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " -msgstr "Permitir intentos de inicio de sesión consecutivos " +msgid "Allow Consecutive Login Attempts" +msgstr "Permitir intentos de inicio de sesión consecutivos" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 msgid "Allow Google Calendar Access" @@ -1781,11 +1829,6 @@ msgstr "Permitir Invitado" msgid "Allow Guest to View" msgstr "Permitir ver al invitado" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "Permitir a los invitados comentar" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1834,7 +1877,7 @@ msgid "Allow Print for Cancelled" msgstr "Permitir impresión para Cancelado" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "Permitir Impresión para Borrador" @@ -2067,7 +2110,7 @@ msgstr "" msgid "Allows skipping authorization if a user has active tokens." msgstr "" -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "Ya está Registrado" @@ -2075,11 +2118,11 @@ msgstr "Ya está Registrado" msgid "Already in the following Users ToDo list:{0}" msgstr "Ya en la siguiente lista de tareas pendientes de los usuarios: {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "También se agrega el campo de moneda dependiente {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "También se agrega el campo de dependencia de estado {0}" @@ -2088,6 +2131,12 @@ msgstr "También se agrega el campo de dependencia de estado {0}" msgid "Alternative Email ID" msgstr "Correo electrónico alternativo" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2139,10 +2188,8 @@ msgstr "Modificación de la Configuración de los Nombres de los Documentos" msgid "Amended Documents" msgstr "Documentos Modificados" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "Modificado Desde" @@ -2166,6 +2213,11 @@ msgstr "Enmienda no permitida" msgid "Amendment naming rules updated." msgstr "Reglas de nomenclatura rectificada actualizadas." +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 msgid "An error occurred while setting Session Defaults" msgstr "Se produjo un error al configurar los valores predeterminados de la sesión" @@ -2259,10 +2311,12 @@ msgid "App Logo" msgstr "Logo de la App" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2333,6 +2387,10 @@ msgstr "Nombre de la aplicación" msgid "Application Version" msgstr "Versión de la aplicación" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2342,7 +2400,7 @@ msgstr "Aplicado en" msgid "Apply" msgstr "Aplicar" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Aplicar regla de asignación" @@ -2390,7 +2448,7 @@ msgstr "Aplicar esta regla, si el usuario es el propietario" msgid "Apply to all Documents Types" msgstr "Aplicar a todos los tipos de documentos" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "Aplicando: {0}" @@ -2423,7 +2481,11 @@ msgstr "Archivado" msgid "Archived Columns" msgstr "Columnas archivados" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "¿Está seguro de que desea borrar las asignaciones?" @@ -2451,11 +2513,15 @@ msgctxt "Confirmation dialog message" msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." msgstr "¿Está seguro de que desea eliminar la sección? Todas las columnas y los campos de la sección se moverán a la sección anterior." -#: frappe/public/js/frappe/web_form/web_form.js:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:191 msgid "Are you sure you want to discard the changes?" msgstr "¿Realmente quieres descartar los cambios?" -#: frappe/public/js/frappe/views/reports/query_report.js:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "¿Está seguro de que desea generar un nuevo informe?" @@ -2463,7 +2529,7 @@ msgstr "¿Está seguro de que desea generar un nuevo informe?" msgid "Are you sure you want to merge {0} with {1}?" msgstr "¿Seguro que quieres fusionar {0} con {1}?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "¿Está seguro de que desea continuar?" @@ -2518,6 +2584,12 @@ msgstr "Como el uso compartido de documentos está deshabilitado, otórgueles lo msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "De acuerdo con su solicitud, su cuenta y los datos de {0} asociados al correo electrónico {1} se han eliminado de forma permanente." +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2527,7 +2599,7 @@ msgstr "Asignar condición" msgid "Assign To" msgstr "Asignar a" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Asignar a" @@ -2590,6 +2662,11 @@ msgstr "Asignado a" msgid "Assigned To/Owner" msgstr "Asignado a / Propietario" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "Asignando..." @@ -2659,7 +2736,13 @@ msgstr "Asignación de {0} eliminada por {1}" msgid "Assignments" msgstr "Asignaciones" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "Se requiere al menos una columna para mostrar en la cuadrícula." @@ -2739,7 +2822,7 @@ msgstr "Adjuntar al Campo" msgid "Attached To Name" msgstr "Asociado A Nombre" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "El nombre \"Adjuntado a\" debe ser una cadena o un entero" @@ -2755,7 +2838,7 @@ msgstr "Adjunto" msgid "Attachment Limit (MB)" msgstr "Límite Adjunto (MB)" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "Límite de adjuntos alcanzado" @@ -2773,15 +2856,15 @@ msgstr "Adjunto Eliminado" #. Label of the attachments (Code) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "Adjuntos" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "Intentando conectarse a la bandeja QZ..." -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "Intentando iniciar QZ Tray..." @@ -2804,6 +2887,10 @@ msgstr "Registro de auditoría" msgid "Auth URL Data" msgstr "Datos de URL de autenticación" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "" + #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authenticate as Service Principal" @@ -2821,8 +2908,8 @@ msgid "Authentication" msgstr "Autenticación" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " -msgstr "Las aplicaciones de autenticación que puede utilizar son: " +msgid "Authentication Apps you can use are:" +msgstr "Las aplicaciones de autenticación que puede utilizar son:" #: frappe/email/doctype/email_account/email_account.py:339 msgid "Authentication failed while receiving emails from Email Account: {0}." @@ -2935,11 +3022,11 @@ msgstr "Repetición Automática" msgid "Auto Repeat Day" msgstr "Repetición automática del día" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "Repetición automática del día {0} {1} ha sido repetida." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "Repetición automática de creación de documento fallida" @@ -2947,11 +3034,16 @@ msgstr "Repetición automática de creación de documento fallida" msgid "Auto Repeat Schedule" msgstr "Programación de repetición automática" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "Repetición automática creada para este documento" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "La repetición automática falló para {0}" @@ -2995,7 +3087,7 @@ msgstr "Seguir automáticamente los documentos sobre los que comenta" msgid "Auto follow documents that you create" msgstr "Seguimiento automático de los documentos que cree" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "" @@ -3043,7 +3135,7 @@ msgstr "La vinculación automática solo se puede activar si está entrante habi msgid "Automatically Assign Documents to Users" msgstr "Asignar automáticamente documentos a los usuarios" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "" @@ -3057,11 +3149,6 @@ msgstr "Eliminar cuenta automáticamente en (horas)" msgid "Automation" msgstr "Automatización" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "Avatar" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3333,8 +3420,8 @@ msgstr "URL Base" #. Label of the based_on (Link) field in DocType 'Language' #: frappe/core/doctype/language/language.json -#: frappe/printing/page/print/print.js:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "Basado en" @@ -3451,10 +3538,8 @@ msgstr "Registro binario" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "Biografía" @@ -3484,64 +3569,6 @@ msgstr "Módulos de Bloque" msgid "Blocked" msgstr "Obstruido" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "Blog" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "Categoría de Blog" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "Intro. del Blog" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "Introducción del Blog" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "Entrada en el Blog" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "Configuración del Blog" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "Título del Blog" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "Bloguero" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3639,13 +3666,6 @@ msgstr "Marca es lo que aparece en la parte superior izquierda de la barra de he msgid "Breadcrumbs" msgstr "Migas" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "Buscar por categoría" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3703,15 +3723,15 @@ msgstr "Eliminar a granel" msgid "Bulk Edit" msgstr "Edición masiva" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "Editar en masa {0}" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" msgstr "Operación masiva fallida" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "Operación masiva exitosa" @@ -3726,7 +3746,7 @@ msgstr "Exportación masiva de PDF" msgid "Bulk Update" msgstr "Actualización masiva" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "La aprobación masiva solo admite hasta 500 documentos." @@ -3738,7 +3758,7 @@ msgstr "La operación masiva está en cola en segundo plano." msgid "Bulk operations only support up to 500 documents." msgstr "Las operaciones masivas solo admiten hasta 500 documentos." -#: frappe/model/workflow.py:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "La {0} masiva está en cola en segundo plano." @@ -3868,16 +3888,6 @@ msgstr "Selector CSS para el elemento que desea resaltar." msgid "CSV" msgstr "CSV" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "Etiqueta de CTA" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "URL de CTA" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3928,11 +3938,6 @@ msgstr "Llamada a la acción" msgid "Call To Action URL" msgstr "URL de llamada a la acción" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "Llamada a la acción" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -3950,7 +3955,7 @@ msgid "Camera" msgstr "Cámara" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3986,7 +3991,7 @@ msgstr "Puede Escribir" msgid "Can not rename as column {0} is already present on DocType." msgstr "No se puede renombrar porque la columna {0} ya está presente en DocType." -#: frappe/core/doctype/doctype/doctype.py:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "Solo puede cambiar a/desde la regla de nomenclatura Autoincremento cuando no hay datos en el Doctype" @@ -4010,14 +4015,15 @@ msgstr "No se puede renombrar {0} a {1} porque {0} no existe." #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "Cancelar" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Cancelar" @@ -4035,16 +4041,18 @@ msgstr "Cancelar todo" msgid "Cancel All Documents" msgstr "Cancelar todos los documentos" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "¿Cancelar {0} documentos?" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -4082,11 +4090,11 @@ msgstr "No se pueden recuperar valores" msgid "Cannot Remove" msgstr "No se puede quitar" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "No se puede Actualizar Después de Validar" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "No se puede acceder a la ruta del archivo {0}" @@ -4094,7 +4102,7 @@ msgstr "No se puede acceder a la ruta del archivo {0}" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "No se puede cancelar antes de validar durante la transición del estado {0} al estado {1}" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "No se puede cancelar antes de validar. Ver Transición {0}" @@ -4102,11 +4110,11 @@ msgstr "No se puede cancelar antes de validar. Ver Transición {0}" msgid "Cannot cancel {0}." msgstr "No se puede cancelar {0}." -#: frappe/model/document.py:1013 +#: frappe/model/document.py:1017 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "No se puede cambiar el estado del documento de 0 (Borrador) a 2 (Cancelado)" -#: frappe/model/document.py:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "No se puede cambiar el estado del documento de 1 (Validado) a 0 (Borrador)" @@ -4114,11 +4122,11 @@ msgstr "No se puede cambiar el estado del documento de 1 (Validado) a 0 (Borrado msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "No se puede cambiar el estado del documento cancelado (Estado{0})" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "No se puede cambiar el estado de un documento cancelado, Transition row {0}" -#: frappe/core/doctype/doctype/doctype.py:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "No se puede cambiar a/desde autoincremento autonombre en Personalizar formulario" @@ -4130,11 +4138,11 @@ msgstr "No se puede crear un {0} en contra de un documento secundario: {1}" msgid "Cannot create private workspace of other users" msgstr "No se puede crear un Área de Trabajo privado para otros usuarios" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "No se puede eliminar la carpeta principal y sus carpetas adjuntas" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "No se puede eliminar o cancelar porque {0} {1} está vinculado con {2} {3} {4}" @@ -4169,7 +4177,7 @@ msgstr "No se puede eliminar el campo generado por el sistema {0}\n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " +"Warning: Incorrectly updating counters can prevent documents from getting created." msgstr "Cambiar el número de secuencia inicial/actual de una serie existente.
\n\n" -"Advertencia: La actualización incorrecta de los contadores puede impedir la creación de documentos. " +"Advertencia: La actualización incorrecta de los contadores puede impedir la creación de documentos." #. Label of the changed_at (Datetime) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -4456,7 +4455,7 @@ msgstr "Fuente del gráfico" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "Tipo de Gráfico" @@ -4489,7 +4488,7 @@ msgstr "Chat" msgid "Check" msgstr "Marcar" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "Verificar URL de Solicitud" @@ -4497,7 +4496,7 @@ msgstr "Verificar URL de Solicitud" msgid "Check columns to select, drag to set order." msgstr "Marque las columnas para seleccionar, arrastrar para establecer el orden." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "Consulte el registro de errores para obtener más información: {0}" @@ -4538,11 +4537,6 @@ msgstr "Al marcar esto, se publicará la página en su sitio web y será visible msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "Al marcar esto, se mostrará un área de texto donde puede escribir JavaScript personalizado que se ejecutará en esta página." -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "Versión Checksum" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "No se permiten DocTypes hijos" @@ -4552,17 +4546,17 @@ msgstr "No se permiten DocTypes hijos" msgid "Child Doctype" msgstr "DocTypo hijo" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "Tabla secundaria {0} para el campo {1}" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Las tablas secundarias se muestran como una cuadrícula en otros DocTypes" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4591,6 +4585,7 @@ msgid "Choose authentication method to be used by all users" msgstr "Elegir el método de autenticación que deben utilizar todos los usuarios" #. 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 msgid "City" msgstr "Ciudad" @@ -4605,7 +4600,7 @@ msgstr "Ciudad" msgid "Clear" msgstr "Quitar" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "Borrar y Agregar Plantilla" @@ -4617,7 +4612,7 @@ msgstr "Borrar y Agregar plantilla" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Borrar Asignación" @@ -4643,7 +4638,7 @@ msgstr "Borrar registros después (días)" msgid "Clear User Permissions" msgstr "Borrar permisos de usuario" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "Borre el mensaje de correo electrónico y añada la plantilla" @@ -4655,11 +4650,15 @@ msgstr "Borrando la fecha de finalización, ya que no puede ser en el pasado par msgid "Click On Customize to add your first widget" msgstr "Haga clic en Personalizar para agregar su primer widget" -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "Click aquí" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "Haga clic en un archivo para seleccionarlo." @@ -4690,24 +4689,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "Haga clic en {0} para generar el token de actualización." #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "Haga clic en la tabla para editar" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "Haga clic para establecer Filtros Dinámicos" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "Clic para establecer filtros" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "Clic para ordenar por {0}" @@ -4885,7 +4884,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Colapso" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Desplegar todo" @@ -4940,7 +4939,7 @@ msgstr "Plegable depende de (JS)" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4996,11 +4995,11 @@ msgstr "Nombre de columna" msgid "Column Name cannot be empty" msgstr "Nombre de la columna no puede estar vacío" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "Ancho de Columna" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "El ancho de la columna no puede ser cero." @@ -5027,7 +5026,7 @@ msgstr "Columnas" msgid "Columns / Fields" msgstr "Columnas / Campos" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "Columnas basadas en" @@ -5069,16 +5068,6 @@ msgstr "Comentario tipo" msgid "Comment can only be edited by the owner" msgstr "El comentario solo puede ser editado por el propietario" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "Límite de Comentarios" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "Límite de Comentarios por hora" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "" @@ -5086,7 +5075,7 @@ msgstr "" #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "Comentarios" @@ -5095,7 +5084,7 @@ msgstr "Comentarios" msgid "Comments and Communications will be associated with this linked document" msgstr "Comentarios y Comunicaciones estarán asociados con este documento vinculado" -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "Los comentarios no pueden tener enlaces o direcciones de correo electrónico" @@ -5167,12 +5156,12 @@ msgid "Company Name" msgstr "Nombre de compañía" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "Comparar Versiones" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "Advertencia de compilación" @@ -5252,8 +5241,8 @@ msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5267,6 +5256,11 @@ msgstr "Condición" msgid "Condition JSON" msgstr "Condición JSON" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5292,11 +5286,11 @@ msgstr "" msgid "Configuration" msgstr "Configuración" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "Configurar el Gráfico" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "Configurar columnas" @@ -5323,7 +5317,7 @@ msgstr "Configura cómo se nombrarán los documentos corregidos.
\n\n" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "Configura varios aspectos de cómo funciona la nomenclatura de documentos, como las series de nombres y el contador actual." -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Confirmar" @@ -5342,7 +5336,7 @@ msgstr "Confirmar acceso" msgid "Confirm Deletion of Account" msgstr "Confirmar la eliminación de la cuenta" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "Confirmar nueva contraseña" @@ -5369,7 +5363,7 @@ msgstr "Confirmado" msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "Enhorabuena por haber completado la configuración del módulo. Si desea obtener más información, puede consultar la documentación aquí." -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "Conectar a {}" @@ -5387,8 +5381,8 @@ msgstr "Aplicación conectada" msgid "Connected User" msgstr "Usuario conectado" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "Conectado a la bandeja QZ!" @@ -5439,6 +5433,10 @@ msgstr "Restricciones" msgid "Contact" msgstr "Contacto" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
{0}" +msgstr "" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5496,15 +5494,13 @@ msgstr "Contiene {0} correcciones de seguridad" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5512,24 +5508,12 @@ msgstr "Contiene {0} correcciones de seguridad" msgid "Content" msgstr "Contenido" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "Contenido (HTML)" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "Contenido (descuento)" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "Contenido Hash" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "Tipo de contenido" @@ -5597,7 +5581,7 @@ msgstr "Copiar Enlace" msgid "Copy embed code" msgstr "Copiar código incrustado" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "Copiar error al Portapapeles" @@ -5605,12 +5589,16 @@ msgstr "Copiar error al Portapapeles" msgid "Copy to Clipboard" msgstr "Copiar al Portapapeles" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "" + #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" msgstr "Derechos de Autor" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "Core DocTypes no se puede personalizar." @@ -5618,7 +5606,7 @@ msgstr "Core DocTypes no se puede personalizar." msgid "Core Modules {0} cannot be searched in Global Search." msgstr "Los módulos principales {0} no se pueden buscar en la búsqueda global." -#: frappe/printing/page/print/print.js:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "Versión correcta:" @@ -5626,7 +5614,7 @@ msgstr "Versión correcta:" msgid "Could not connect to outgoing email server" msgstr "No se pudo conectar con el servidor de correo electrónico saliente" -#: frappe/model/document.py:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "No se pudo encontrar {0}" @@ -5634,15 +5622,15 @@ msgstr "No se pudo encontrar {0}" msgid "Could not map column {0} to field {1}" msgstr "No se pudo asignar la columna {0} al campo {1}" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " -msgstr "No se pudo iniciar: " +msgid "Could not start up:" +msgstr "No se pudo iniciar:" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "No se pudo guardar, verifique los datos que ingresó" @@ -5687,13 +5675,14 @@ msgstr "Mostrador" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "País" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "Código de País requerido" @@ -5725,13 +5714,13 @@ msgstr "Cr" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Crear" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "Crear y Continuar" @@ -5745,7 +5734,7 @@ msgid "Create Card" msgstr "Crear tarjeta" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "Crear gráfico" @@ -5779,12 +5768,12 @@ msgstr "Crear registro" msgid "Create New" msgstr "Crear" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Crear" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "Crear nuevo DocType" @@ -5792,7 +5781,7 @@ msgstr "Crear nuevo DocType" msgid "Create New Kanban Board" msgstr "Crear un nuevo Tablero Kanban" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "Crear correo electrónico de usuario" @@ -5804,7 +5793,7 @@ msgstr "Crear un Nuevo Formato" msgid "Create a Reminder" msgstr "Crear un Recordatorio" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "Crear un nuevo..." @@ -5812,11 +5801,11 @@ msgstr "Crear un nuevo..." msgid "Create a new record" msgstr "Crea un nuevo registro" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "Crear: {0}" @@ -5832,7 +5821,7 @@ msgstr "Crear o Editar Formato Impresión" msgid "Create or Edit Workflow" msgstr "Crear o editar Flujo de Trabajo" -#: frappe/public/js/frappe/list/list_view.js:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "Crea tu primer {0}" @@ -5842,7 +5831,7 @@ msgstr "Cree su flujo de trabajo visualmente utilizando el Constructor de Flujo #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "Creado" @@ -5858,7 +5847,7 @@ msgstr "Creado el" msgid "Created By" msgstr "Creado por" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "Creado campo personalizado {0} en {1}" @@ -5870,7 +5859,7 @@ msgstr "Creado campo personalizado {0} en {1}" msgid "Created On" msgstr "Creado el" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "Creando {0}" @@ -6179,7 +6168,7 @@ msgstr "" #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "¿Es personalizado? (Solo para esta web)" @@ -6207,14 +6196,14 @@ msgstr "Restablecimiento de Personalizaciones" msgid "Customizations for {0} exported to:
{1}" msgstr "Personalizaciones para {0} exportadas a:
{1}" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "Personalización" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "Personalización" @@ -6233,7 +6222,7 @@ msgstr "Personalizar el Tablero" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "Personalizar Formulario" @@ -6311,7 +6300,7 @@ msgstr "Diario" msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "Resumen Diario de Eventos se envía para Eventos en el Calendario cuando se han agregado recordatorios." -#: frappe/desk/doctype/event/event.py:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "Los eventos diarios deben finalizar el mismo día." @@ -6358,7 +6347,7 @@ msgstr "Tema Oscuro" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "Tablero" @@ -6417,7 +6406,6 @@ msgstr "Tableros" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6430,7 +6418,6 @@ msgstr "Tableros" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6466,7 +6453,7 @@ msgstr "Registro de Importación de Datos" msgid "Data Import Template" msgstr "Plantilla para importar datos" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "Datos demasiado largos" @@ -6497,7 +6484,7 @@ msgstr "Uso de tamaño de fila de base de datos" msgid "Database Storage Usage By Tables" msgstr "Uso de almacenamiento de bases de datos por Tablas" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "Limite de tamaño de la tabla de la base de datos" @@ -6635,11 +6622,11 @@ msgstr "Estimado {0}" msgid "Debug Log" msgstr "Registro de depuración" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "El separador decimal debe ser '.' cuando las comillas están configuradas como no numéricas" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "El separador decimal debe ser un solo carácter" @@ -6801,11 +6788,11 @@ msgstr "Espacio de trabajo predeterminado" msgid "Default display currency" msgstr "Moneda de visualización por defecto" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "El valor predeterminado para el tipo 'Verificar' del campo {0} debe ser '0' o '1'" -#: frappe/core/doctype/doctype/doctype.py:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 msgid "Default value for {0} must be in the list of options." msgstr "El valor predeterminado para {0} debe estar en la lista de opciones." @@ -6839,6 +6826,12 @@ msgstr "Valores predeterminados actualizados" msgid "Defines actions on states and the next step and allowed roles." msgstr "Define las acciones en cada estado, los siguientes pasos y roles permitidos." +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6856,22 +6849,27 @@ msgstr "Retrasado" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_permission/user_permission_list.js:189 -#: frappe/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Eliminar" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Eliminar" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "Eliminar" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "Eliminar Cuenta" @@ -6880,6 +6878,12 @@ msgstr "Eliminar Cuenta" msgid "Delete All" msgstr "Borrar Todo" +#. Label of the delete_background_exported_reports_after (Int) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Delete Background Exported Reports After (Hours)" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6889,7 +6893,7 @@ msgstr "Eliminar columna" msgid "Delete Data" msgstr "Borrar datos" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "Eliminar Tablero Kanban" @@ -6903,7 +6907,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Eliminar pestaña" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "Eliminar y Generar Nuevo" @@ -6912,7 +6916,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "Eliminar columna" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "¿Eliminar comentario?" @@ -6945,12 +6949,12 @@ msgstr "Eliminar pestaña" msgid "Delete this record to allow sending to this email address" msgstr "Eliminar este registro para permitir el envío a esta dirección de correo electrónico" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "¿Eliminar {0} elemento de forma permanente?" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "¿Eliminar {0} artículos de forma permanente?" @@ -6986,11 +6990,15 @@ msgstr "Documentos Eliminados" msgid "Deleted Name" msgstr "Nombre borrado" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "Todos los documentos eliminados con éxito" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Eliminado!" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "Eliminando {0}" @@ -7005,8 +7013,8 @@ msgstr "Eliminando {0}..." #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " -msgstr "Pasos de eliminación " +msgid "Deletion Steps" +msgstr "Pasos de eliminación" #: frappe/core/doctype/page/page.py:110 #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 @@ -7022,7 +7030,7 @@ msgstr "Opciones de delimitador" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "Error en la detección del delimitador. Intente habilitar delimitadores personalizados y ajuste las opciones de delimitador según sus datos." -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "El delimitador debe ser un solo carácter" @@ -7049,7 +7057,7 @@ msgstr "Departamento" msgid "Dependencies" msgstr "Dependencias" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "Dependencias y Licencias" @@ -7084,7 +7092,6 @@ msgstr "Descendientes de (inclusive)" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -7105,7 +7112,6 @@ msgstr "Descendientes de (inclusive)" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -7115,11 +7121,6 @@ msgstr "Descendientes de (inclusive)" msgid "Description" msgstr "Descripción" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "Descripción de la página de listado, en texto plano, solo un par de líneas. (máximo 200 caracteres)" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -7203,7 +7204,7 @@ msgstr "Ícono de Escritorio ya existe" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "Detalles" @@ -7264,11 +7265,6 @@ msgstr "Deshabilitar la notificación del Registro de Cambios" msgid "Disable Comment Count" msgstr "Desactivar recuento de comentarios" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "Deshabilitar comentarios" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7286,11 +7282,6 @@ msgstr "Desactivar recuento" msgid "Disable Document Sharing" msgstr "Deshabilitar Compartir Documentos" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "Desactivar Me Gusta" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "Desactivar reporte" @@ -7300,6 +7291,11 @@ msgstr "Desactivar reporte" msgid "Disable SMTP server authentication" msgstr "Deshabilitar la autenticación del servidor SMTP" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7345,7 +7341,6 @@ msgstr "Deshabilitar registros" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7360,7 +7355,6 @@ msgstr "Deshabilitar registros" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "Deshabilitado" @@ -7371,7 +7365,7 @@ msgstr "Respuesta automática deshabilitada" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "Descartar" @@ -7389,7 +7383,7 @@ msgstr "Descartar" msgid "Discard {0}" msgstr "Descartar {0}" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "¿Descartar?" @@ -7412,7 +7406,7 @@ msgstr "Respuesta del debate" msgid "Discussion Topic" msgstr "Tema del debate" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7448,19 +7442,23 @@ msgstr "Divisor" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " -msgstr "No crear nuevo usuario " +msgid "Do Not Create New User" +msgstr "No crear nuevo usuario" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "No crear nuevo usuario si el usuario con correo electrónico no existe en el sistema" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "No edite los encabezados que están preestablecidos en la plantilla" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "¿Aún quiere continuar?" @@ -7554,7 +7552,7 @@ msgstr "El DocStatus de los siguientes estados ha cambiado:
{0}{0} provided for the field {1} must have atleast one Link field" msgstr "El tipo de documento {0} proporcionado para el campo {1} debe tener al menos un campo de enlace" @@ -7601,11 +7599,11 @@ msgstr "DocType Estado" msgid "DocType View" msgstr "Vista DocType" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "El 'DocType' no se puede fusionar" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "DocType sólo puede ser renombrado por Administrator" @@ -7614,7 +7612,7 @@ msgstr "DocType sólo puede ser renombrado por Administrator" msgid "DocType is a Table / Form in the application." msgstr "DocType es una Tabla/ Formulario en la aplicación." -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "El tipo de documento se debe poder Validar para el evento de Documento Seleccionado" @@ -7647,7 +7645,7 @@ msgstr "DocType {0} no existe." msgid "DocType {} not found" msgstr "DocType {} no encontrado" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "El nombre de DocType no debe comenzar ni terminar con espacios en blanco" @@ -7661,7 +7659,7 @@ msgstr "Los DocTypes no se pueden modificar, utilice {0} en su lugar" msgid "Doctype" msgstr "Doctype" -#: frappe/core/doctype/doctype/doctype.py:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "El nombre de los Doctype está limitado a {0} caracteres ({1})" @@ -7723,31 +7721,29 @@ msgstr "Vinculación de documentos" msgid "Document Links" msgstr "Enlaces de documentos" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "Fila de enlaces de documento #{0}: no se pudo encontrar el campo {1} en {2} DocType" -#: frappe/core/doctype/doctype/doctype.py:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "Fila de enlaces de documento #{0}: doctype o nombre de campo no válido." -#: frappe/core/doctype/doctype/doctype.py:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "Documento Links Row #{0}: El DocType padre es obligatorio para los enlaces internos" -#: frappe/core/doctype/doctype/doctype.py:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "Documento Links Row #{0}: El nombre del campo de tabla es obligatorio para los enlaces internos" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7889,13 +7885,13 @@ msgstr "Titulo del documento" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "Tipo de Documento" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 msgid "Document Type and Function are required to create a number card" msgstr "El tipo de documento y la función son necesarios para crear un Widget numérico" @@ -7932,7 +7928,7 @@ msgid "Document Types and Permissions" msgstr "Tipos de documentos y permisos" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "Documento desbloqueado" @@ -7940,15 +7936,15 @@ msgstr "Documento desbloqueado" msgid "Document follow is not enabled for this user." msgstr "El seguimiento de documentos no está habilitado para este usuario." -#: frappe/public/js/frappe/list/list_view.js:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "El documento ha sido cancelado" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "El documento ha sido validado" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "El documento está en estado de borrador" @@ -8090,13 +8086,13 @@ msgstr "Dona" msgid "Double click to edit label" msgstr "Doble clic para editar etiqueta" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "Descargar" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "Descargar" @@ -8123,7 +8119,7 @@ msgstr "Enlace de descarga" msgid "Download PDF" msgstr "Descargar PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "Descargar Informe" @@ -8186,7 +8182,7 @@ msgstr "Arrastra elementos desde la barra lateral para añadirlos. Arrástralos msgid "Drag to add state" msgstr "Arrastrar para añadir estado" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "Soltar archivos aquí" @@ -8219,7 +8215,7 @@ msgstr "Entrada duplicada" msgid "Duplicate Filter Name" msgstr "Nombre de Fltro Duplicado" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "Nombre duplicado" @@ -8318,17 +8314,17 @@ msgstr "ESC" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8336,7 +8332,7 @@ msgstr "ESC" msgid "Edit" msgstr "Editar" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Editar" @@ -8346,7 +8342,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Editar" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "Editar" @@ -8375,7 +8371,7 @@ msgstr "Editar HTML personalizado" msgid "Edit DocType" msgstr "Editar DocType" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Editar DocType" @@ -8393,7 +8389,7 @@ msgstr "Editar filtros" msgid "Edit Footer" msgstr "Editar pie de página" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "Editar formato" @@ -8478,7 +8474,7 @@ msgstr "Editar el doctype {0}" msgid "Edit to add content" msgstr "Editar para agregar contenido" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "Editar su respuesta" @@ -8487,7 +8483,7 @@ msgstr "Editar su respuesta" msgid "Edit your workflow visually using the Workflow Builder." msgstr "Cree su flujo de trabajo visualmente utilizando el Constructor de Flujo de Trabajo." -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "Editar {0}" @@ -8495,7 +8491,7 @@ msgstr "Editar {0}" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "Cruadicula Editable" @@ -8534,11 +8530,14 @@ msgstr "Selector de elementos" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8547,6 +8546,7 @@ msgstr "Selector de elementos" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8556,6 +8556,8 @@ msgstr "Selector de elementos" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "Correo electrónico" @@ -8587,7 +8589,7 @@ msgstr "Cuenta de correo desactivada." msgid "Email Account Name" msgstr "Cuenta de correo electrónico" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "Cuenta de correo electrónico añadida varias veces" @@ -8675,6 +8677,7 @@ msgid "Email IDs" msgstr "Correo Electrónico" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "Correo Electrónico" @@ -8718,10 +8721,10 @@ msgstr "Límite de reintentos de correo electrónico" msgid "Email Rule" msgstr "Regla de correo electrónico" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" -msgstr "Correo Electrónico Enviado" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" +msgstr "Correo enviado el" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType @@ -8786,11 +8789,11 @@ msgstr "El correo electrónico se ha marcado como spam" msgid "Email has been moved to trash" msgstr "El correo electrónico se ha movido a la papelera" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "El correo electrónico es obligatorio para crear el correo electrónico del usuario." -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "Correo electrónico no enviado a {0} (dado de baja / desactivado)" @@ -8829,7 +8832,7 @@ msgstr "Los Correos Electrónicos se enviarán con las próximas acciones de flu msgid "Embed code copied" msgstr "Código integrado copiado" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8837,7 +8840,7 @@ msgstr "" msgid "Empty column" msgstr "Columna vacía" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -8856,7 +8859,7 @@ msgstr "Habilitar" msgid "Enable Address Autocompletion" msgstr "Activar el autocompletado de direcciones" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "Habilite Permitir repetición automática para el doctype {0} en Personalizar formulario" @@ -8882,11 +8885,6 @@ msgstr "Habilitar Comentarios" msgid "Enable Dynamic Client Registration" msgstr "" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "Habilitar notificaciones por correo electrónico" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -8980,11 +8978,6 @@ msgstr "Habilitar seguridad" msgid "Enable Social Login" msgstr "Habilitar Sesión Social" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "Habilitar compartir en redes sociales" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "Habilitar vistas de página de seguimiento" @@ -8992,7 +8985,7 @@ msgstr "Habilitar vistas de página de seguimiento" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "Habilitar Autenticación de dos Factores" @@ -9004,12 +8997,6 @@ msgstr "Habilite el modo desarrollador para crear una plantilla de impresión es msgid "Enable developer mode to create a standard Web Template" msgstr "Habilite el modo de desarrollador para crear una plantilla web estándar" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "Habilite la notificación por correo electrónico de cualquier comentario o \"me gusta\" recibido en la entrada de su blog." - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -9033,6 +9020,7 @@ msgstr "Activar seguimiento de sitios web en la aplicación" #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -9045,6 +9033,7 @@ msgstr "Activar seguimiento de sitios web en la aplicación" #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "Habilitado" @@ -9070,15 +9059,11 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "Si activa la respuesta automática en una cuenta de correo electrónico entrante, se enviarán respuestas automáticas a todos los correos electrónicos sincronizados. ¿Desea continuar?" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "Habilitando esto registrará su sitio en un servidor central de retransmisión para enviar notificaciones push para todas las apps instaladas a través de Firebase Cloud Messaging. Este servidor sólo almacena tokens de usuario y registros de errores, y no se guarda ningún mensaje." - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " -msgstr "Habilitando esto registrará su sitio en un servidor central de retransmisión para enviar notificaciones push para todas las apps instaladas a través de Firebase Cloud Messaging. Este servidor sólo almacena tokens de usuario y registros de errores, y no se guarda ningún mensaje. " +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "Habilitando esto registrará su sitio en un servidor central de retransmisión para enviar notificaciones push para todas las apps instaladas a través de Firebase Cloud Messaging. Este servidor sólo almacena tokens de usuario y registros de errores, y no se guarda ningún mensaje." #. Description of the 'Queue in Background (BETA)' (Check) field in DocType #. 'DocType' @@ -9094,11 +9079,11 @@ msgstr "Al habilitar esta opción se validarán los documentos en segundo plano" msgid "Encrypt Backups" msgstr "Cifrar Copias de Seguridad" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "¡La clave de encriptación está en un formato no válido!" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "¡La clave de encriptación no es válida! Por favor, compruebe el archivo site_config.json" @@ -9110,7 +9095,7 @@ msgstr "" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -9126,6 +9111,10 @@ msgstr "Campo de Fecha de Finalización" msgid "End Date cannot be before Start Date!" msgstr "¡La Fecha de Finalización no puede ser anterior a la Fecha de Inicio!" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9170,7 +9159,7 @@ msgstr "Ingrese el ID del cliente y el secreto del cliente en la configuración msgid "Enter Code displayed in OTP App." msgstr "Ingrese el código que se muestra en la aplicación OTP." -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "Ingrese Destinatario(s) de Correo Electrónico" @@ -9240,10 +9229,17 @@ msgstr "Iguales" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9253,7 +9249,7 @@ msgstr "Iguales" msgid "Error" msgstr "Error" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "Error" @@ -9273,7 +9269,7 @@ msgstr "Registros de errores" msgid "Error Message" msgstr "Mensaje de error" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 msgid "Error connecting to QZ Tray Application...

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

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

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

Haga clic aquí para descargar e instalar la bandeja QZ.
Haga clic aquí para obtener más información sobre la impresión sin procesar." @@ -9301,9 +9297,9 @@ msgstr "Error en el script del cliente." msgid "Error in Header/Footer Script" msgstr "Error en el script de encabezado/pie de página" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "Error en la Notificación" @@ -9323,19 +9319,19 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "Error al conectarte a la cuenta de correo electrónico {0}" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Error al evaluar Notificación {0}. Por favor arregla tu plantilla." -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "Error: Faltan datos en la tabla {0}" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "Error: falta el valor para {0}: {1}" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "Error: {0} Fila #{1}: Valor faltante para: {2}" @@ -9392,7 +9388,7 @@ msgstr "Tipo de Evento" msgid "Events" msgstr "Eventos" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "Eventos en el calendario de hoy" @@ -9476,7 +9472,7 @@ msgstr "Ejecutar" msgid "Execute Console script" msgstr "Ejecutar el script de la consola" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "" @@ -9484,7 +9480,7 @@ msgstr "" msgid "Executing..." msgstr "Ejecutando..." -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "Tiempo de ejecución: {0} segundos" @@ -9510,12 +9506,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Expandir" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Expandir todo" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9543,7 +9539,9 @@ msgid "Expire Notification On" msgstr "Notificación Expirará en" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "Expirado" @@ -9571,13 +9569,13 @@ msgstr "Tiempo de expiración de Pagina de Código QR" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Exportar" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Exportar" @@ -9614,7 +9612,7 @@ msgstr "Exportar desde" msgid "Export Import Log" msgstr "Exportar registro de importación" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "Exportar Reporte: {0}" @@ -9623,11 +9621,11 @@ msgstr "Exportar Reporte: {0}" msgid "Export Type" msgstr "Tipo de Exportación" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "¿Exportar todas las filas coincidentes?" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "¿Exportar todas las {0} filas?" @@ -9635,6 +9633,10 @@ msgstr "¿Exportar todas las {0} filas?" msgid "Export as zip" msgstr "Exportar como zip" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "Exportación no permitida. Se necesita el rol {0} para exportar." @@ -9740,7 +9742,7 @@ msgstr "Trabajos fallidos" msgid "Failed Logins (Last 30 days)" msgstr "Inicios de sesión fallidos (últimos 30 días)" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "Transacciones fallidas" @@ -9757,7 +9759,7 @@ msgstr "No se pudo cambiar la contraseña." msgid "Failed to complete setup" msgstr "Error al completar la instalación" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "Fallo al calcular el cuerpo de la solicitud: {}" @@ -9766,15 +9768,15 @@ msgstr "Fallo al calcular el cuerpo de la solicitud: {}" msgid "Failed to connect to server" msgstr "Error al conectar con el servidor" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "No se pudo decodificar el token, proporcione un token codificado en base64 válido." -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "Fallo al descifrar la clave {0}" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "Error al eliminar documentos {0} : {1}" @@ -9782,8 +9784,8 @@ msgstr "Error al eliminar documentos {0} : {1}" msgid "Failed to enable scheduler: {0}" msgstr "No se pudo habilitar el Programador: {0}" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "Fallo al evaluar las condiciones: {}" @@ -9799,7 +9801,7 @@ msgstr "Fallo al generar los Nombres de las Series" msgid "Failed to generate preview of series" msgstr "No se pudo generar la vista previa de la serie" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "Fallo al obtener el método para el comando {0} con {1}" @@ -9819,11 +9821,11 @@ msgstr "Fallo al importar doctype virtual {}, ¿está presente el archivo contro msgid "Failed to optimize image: {0}" msgstr "Fallo en la optimización de la imagen: {0}" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "Fallo al renderizar el mensaje: {}" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "Fallo al procesar el asunto: {}" @@ -9873,12 +9875,6 @@ msgstr "Favicon" msgid "Fax" msgstr "Fax" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "Destacados" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "Retroalimentación" @@ -9936,17 +9932,17 @@ msgstr "Obteniendo documentos predeterminados de Global Search." #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "Campo" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" msgstr "El campo \"ruta\" es obligatoria para las vistas web" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "El campo \"título\" es obligatorio si se establece \"Campo de búsqueda en el sitio web\"." @@ -9959,7 +9955,7 @@ msgstr "El campo \"valor\" es obligatorio. Por favor, especifique un valor a ser msgid "Field Description" msgstr "Descripción de Campo" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "Falta campo" @@ -9989,7 +9985,7 @@ msgstr "Plantilla de Campo" msgid "Field Type" msgstr "Tipo de campo" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "Campo no permitido en consulta" @@ -10015,11 +10011,11 @@ msgstr "El campo {0} no existe en {1}" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "El campo {0} se refiere a un doctype inexistente {1}." -#: frappe/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "Campo {0} no encontrado." -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "El campo {0} del documento {1} no es ni un campo de número de móvil ni un enlace de cliente o usuario" @@ -10037,20 +10033,20 @@ msgstr "El campo {0} del documento {1} no es ni un campo de número de móvil ni #: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json #: frappe/desk/doctype/form_tour_step/form_tour_step.json #: frappe/integrations/doctype/webhook_data/webhook_data.json -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "Nombre del campo" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "Nombre de campo '{0}' en conflicto con un {1} del nombre {2} en {3}" -#: frappe/core/doctype/doctype/doctype.py:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "El nombre de campo llamado {0} debe existir para habilitar el nombre automático" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "Nombre de campo está limitado a 64 caracteres ({0})" @@ -10066,15 +10062,15 @@ msgstr "Nombre de campo por el cual el 'DocType' enlazará el campo." msgid "Fieldname {0} appears multiple times" msgstr "El nombre de campo {0} aparece varias veces" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "El nombre del campo {0} no puede tener caracteres especiales como {1}" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "Nombre de campo {0} en conflicto con el metaobjeto" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "El nombre de campo {0} está restringido" @@ -10097,7 +10093,7 @@ msgstr "El nombre de campo {0} está restringido" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -10110,7 +10106,7 @@ msgstr "Campos" msgid "Fields Multicheck" msgstr "Campos Multicheck" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "Los campos `file_name` o `file_url` deben establecerse para Archivo" @@ -10118,7 +10114,7 @@ msgstr "Los campos `file_name` o `file_url` deben establecerse para Archivo" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "Los campos deben ser una lista o tupla cuando as_list está activado" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10146,7 +10142,7 @@ msgstr "FieldType" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "Tipo de campo no se puede cambiar de {0} a {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "El tipo de campo de {0} no puede ser cambiado a {1} en la línea {2}" @@ -10159,7 +10155,7 @@ msgstr "El tipo de campo de {0} no puede ser cambiado a {1} en la línea {2}" msgid "File" msgstr "Archivo" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "Se ha omitido el archivo \"{0}\" debido a un tipo de archivo no válido" @@ -10212,7 +10208,7 @@ msgstr "URL del archivo" msgid "File backup is ready" msgstr "La copia de seguridad de archivos está lista" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "El nombre de archivo no puede tener {0}" @@ -10220,7 +10216,7 @@ msgstr "El nombre de archivo no puede tener {0}" msgid "File not attached" msgstr "Archivo no adjuntado" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "El tamaño del archivo supera el tamaño máximo permitido de {0} MB" @@ -10229,11 +10225,11 @@ msgstr "El tamaño del archivo supera el tamaño máximo permitido de {0} MB" msgid "File too big" msgstr "El archivo es demasiado grande" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "El tipo de archivo {0} no está permitido" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "Archivo {0} no existe" @@ -10247,10 +10243,10 @@ msgstr "Archivos" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10287,11 +10283,11 @@ msgstr "Nombre del Filtro" msgid "Filter Values" msgstr "Valores del Filtro" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10309,7 +10305,6 @@ msgstr "Filtrado por" msgid "Filtered Records" msgstr "Registros filtrados" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "Filtrado por \"{0}\"" @@ -10324,7 +10319,9 @@ msgstr "Filtrado por \"{0}\"" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10346,6 +10343,11 @@ msgstr "Configuración de filtros" msgid "Filters Display" msgstr "Visualización de Filtros" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10358,11 +10360,11 @@ msgstr "Filtros JSON" msgid "Filters Section" msgstr "Sección de filtros" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "Filtros aplicados para {0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "Filtros guardados" @@ -10375,18 +10377,18 @@ msgstr "Los filtros serán accesibles a través de filters.

" msgstr "Es posible que el pie de página no sea visible porque la opción {0} está desactivada." @@ -10699,8 +10701,8 @@ msgstr "Por Usuario" msgid "For Value" msgstr "Por valor" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "Para la comparación, utilice >5, <10 o =324. Para rangos, utilice 5:10 (para valores entre 5 y 10)." @@ -10726,12 +10728,6 @@ msgstr "Por ejemplo: {} Abrir" msgid "For help see Client Script API and Examples" msgstr "Para obtener ayuda, consulte Ejemplos y API de script de cliente" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "Para más información, haga clic aquí ." - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "Para más información, {0}." @@ -10746,7 +10742,7 @@ msgstr "Para varias direcciones, introduzca la dirección en una línea diferent msgid "For updating, you can update only selective columns." msgstr "Para actualizar datos, puedes editar sólo las columnas que necesites" -#: frappe/core/doctype/doctype/doctype.py:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "Para {0} en el nivel {1} en {2} de la línea {3}" @@ -10801,7 +10797,7 @@ msgstr "¿Se te olvidó tu contraseña?" #: frappe/custom/doctype/client_script/client_script.json #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/desk/doctype/form_tour/form_tour.json -#: frappe/printing/page/print/print.js:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "Formulario" @@ -10861,6 +10857,11 @@ msgstr "Formato" msgid "Format Data" msgstr "Formato de datos" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "Quincenal" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "Adelante" @@ -10888,7 +10889,15 @@ msgstr "Fracción de unidades" msgid "Frappe" msgstr "Frapé" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "Frappe Framework" @@ -10977,7 +10986,7 @@ msgstr "Desde la fecha" msgid "From Date Field" msgstr "Desde campo de fecha" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "Desde tipo de documento" @@ -11004,18 +11013,16 @@ msgstr "Completo" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "Nombre completo" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "Página completa" @@ -11041,13 +11048,13 @@ msgstr "Función basada en" msgid "Function {0} is not whitelisted." msgstr "La función {0} no está en la lista blanca." -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" -msgstr "Sólo se pueden crear más nodos bajo nodos de tipo 'Grupo'" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -11106,7 +11113,7 @@ msgstr "General" msgid "Generate Keys" msgstr "Generar Llaves" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "Generar Nuevo Informe" @@ -11114,8 +11121,14 @@ msgstr "Generar Nuevo Informe" msgid "Generate Random Password" msgstr "Generar Contraseña Aleatoria" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "Generar URL de seguimiento" @@ -11138,7 +11151,7 @@ msgstr "Geolocalización" msgid "Geolocation Settings" msgstr "Ajustes de geolocalización" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "Recibe alertas para Hoy" @@ -11274,7 +11287,7 @@ msgid "Go to this URL after completing the form" msgstr "Ir a esta dirección después de completar el formulario." #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "Ir a {0}" @@ -11322,10 +11335,6 @@ msgstr "Anonimato IP de Google Analytics." msgid "Google Calendar" msgstr "Calendario de Google" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}" -msgstr "Google Calendar - Contacto / correo electrónico no encontrado. No se ha añadido el asistente para -
{0}" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "Google Calendar: no se pudo crear el calendario para {0}, código de error {1}." @@ -11340,7 +11349,7 @@ msgstr "Google Calendar: no se pudo recuperar el evento de Google Calendar, cód #: frappe/integrations/doctype/google_calendar/google_calendar.py:252 msgid "Google Calendar - Could not find Calendar for {0}, error code {1}." -msgstr "" +msgstr "Google Calendar - No se ha podido encontrar el calendario para {0}, código de error {1}." #: frappe/integrations/doctype/google_contacts/google_contacts.py:232 msgid "Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}." @@ -11444,11 +11453,6 @@ msgstr "La URL de Google Sheets no es válida o no es de acceso público." msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "La URL de Google Sheets debe terminar con \"gid={number}\". Copie y pegue la URL de la barra de direcciones del navegador e inténtelo de nuevo." -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "Vista previa de fragmentos de Google" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11525,14 +11529,10 @@ msgstr "Agrupar por tipo" msgid "Group By field is required to create a dashboard chart" msgstr "El campo agrupar por, es obligatorio para crear un gráfico del tablero" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "Agrupar por nota" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11582,7 +11582,6 @@ msgstr "HH: mm: ss" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11593,9 +11592,8 @@ msgstr "HH: mm: ss" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11699,7 +11697,7 @@ msgstr "Encabezado" msgid "Header HTML" msgstr "HTML de encabezado" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "Encabezado HTML establecido desde el archivo adjunto {0}" @@ -11757,6 +11755,12 @@ msgstr "Mapa de calor" msgid "Hello" msgstr "Hola" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "Hola," + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11822,7 +11826,7 @@ msgstr "Helvética" msgid "Helvetica Neue" msgstr "Helvetica Neue" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "Esta es tu URL de seguimiento" @@ -11858,7 +11862,7 @@ msgstr "Oculto" msgid "Hidden Fields" msgstr "Campos ocultos" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11891,11 +11895,6 @@ msgstr "Ocultar borde" msgid "Hide Buttons" msgstr "Ocultar botones" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "Ocultar CTA" - #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json @@ -11975,7 +11974,7 @@ msgstr "Ocultar Barra Lateral, Menú y Comentarios" msgid "Hide Standard Menu" msgstr "Ocultar Menú Estándar" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "Ocultar etiquetas" @@ -11989,7 +11988,7 @@ msgstr "Ocultar Fines de Semana" msgid "Hide descendant records of For Value." msgstr "Ocultar registros descendientes de Por valor." -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "Ocultar detalles" @@ -12038,11 +12037,8 @@ msgstr "Sugerencia: Incluya símbolos, números y letras mayúsculas en la contr #: frappe/public/js/frappe/file_uploader/FileBrowser.vue:38 #: frappe/public/js/frappe/views/file/file_view.js:67 #: frappe/public/js/frappe/views/file/file_view.js:88 -#: frappe/public/js/frappe/views/pageview.js:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -12130,16 +12126,16 @@ msgstr "Supongo que aún no tiene acceso a ningún espacio de trabajo, pero pued #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "Identificador" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "Identificador" @@ -12235,9 +12231,9 @@ msgstr "Si Aplicar Permisos de Usuario Estricto esta seleccionado y se ha defini msgid "If Checked workflow status will not override status in list view" msgstr "Si el estado de flujo de trabajo facturado no anulará el estado en la vista de lista" -#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "Si es dueño" @@ -12365,6 +12361,10 @@ msgstr "Si el usuario tiene algún rol asignado, entonces el usuario se conviert msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "Si estas instrucciones no le resultan útiles, añada sus sugerencias en GitHub Issues." +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12396,7 +12396,11 @@ msgstr "Si va a cargar nuevos registros, y existen \"Secuencias e identificadore msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "Si desea cargar nuevos registros, deje en blanco la columna \"name\" (ID)" -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "" @@ -12453,12 +12457,12 @@ msgstr "Ignorar los adjuntos mayores que este tamaño" msgid "Ignored Apps" msgstr "Aplicaciones ignoradas" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "Estado del Documento ilegal para {0}" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "Consulta SQL ilegal" @@ -12519,11 +12523,11 @@ msgstr "Vista de Imagen" msgid "Image Width" msgstr "Ancho de la imagen" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 msgid "Image field must be a valid fieldname" msgstr "Campo de imagen debe ser un nombre de campo válido" -#: frappe/core/doctype/doctype/doctype.py:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "Campo de imagen debe ser de tipo Adjuntar imagen" @@ -12545,15 +12549,15 @@ msgstr "Imágenes" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "Suplantar" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "Suplantando a {0}" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "Suplantado por {0}" @@ -12579,7 +12583,7 @@ msgstr "Implícito" msgid "Import" msgstr "Importar / Exportar" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "Importar / Exportar" @@ -12807,15 +12811,16 @@ msgstr "Incluir tema de aplicaciones" msgid "Include Web View Link in Email" msgstr "Enviar el enlace de la vista web del documento por correo electrónico" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "Incluir filtros" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "Incluir sangría" @@ -12862,7 +12867,7 @@ msgstr "Cuenta de Correo Electrónico entrante no es correcta" msgid "Incomplete Virtual Doctype Implementation" msgstr "Implementación incompleta del DocType virtual" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "Detalles de inicio de sesión incompletos" @@ -12874,7 +12879,7 @@ msgstr "Configuración incorrecta" msgid "Incorrect URL" msgstr "URL incorrecta" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "Usuario o Contraseña Incorrecta" @@ -12882,11 +12887,11 @@ msgstr "Usuario o Contraseña Incorrecta" msgid "Incorrect Verification code" msgstr "Código de Verificación incorrecto" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "Valor incorrecto en la fila {0}:" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "Valor incorrecto:" @@ -12898,7 +12903,7 @@ msgstr "Valor incorrecto:" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "Índice" @@ -12973,7 +12978,7 @@ msgstr "Insertar Arriba" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "Insertar Después" @@ -12989,7 +12994,7 @@ msgstr "Inserción luego del campo '{0}' mencionado en el campo personalizado '{ msgid "Insert Below" msgstr "Insertar Debajo" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "Insertar Columna Antes de {0}" @@ -13007,8 +13012,12 @@ msgstr "Insertar nuevos registros" msgid "Insert Style" msgstr "Insertar estilo" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "Instale {0} desde Marketplace" @@ -13025,7 +13034,7 @@ msgid "Installed Applications" msgstr "Aplicaciones instaladas" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "Aplicaciones instaladas" @@ -13042,19 +13051,19 @@ msgstr "Instrucciones enviadas por correo electrónico" msgid "Insufficient Permission Level for {0}" msgstr "Nivel de permiso insuficiente para {0}" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "Permiso insuficiente para {0}" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" msgstr "Permisos insuficientes para eliminar el informe" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" msgstr "Permisos insuficientes para eliminar el informe" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "Límite de archivos adjuntos insuficiente" @@ -13158,9 +13167,9 @@ msgid "Invalid" msgstr "Inválido" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "Expresión \"depende_on\" no válida" @@ -13168,7 +13177,7 @@ msgstr "Expresión \"depende_on\" no válida" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "Expresión \"depende_on\" no válida establecida en el filtro {0}" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "Expresión \"obligory_depends_on\" inválida" @@ -13184,7 +13193,7 @@ msgstr "Formato CSV no válido" msgid "Invalid Code. Please try again." msgstr "Código inválido. Por favor vuelve a intentar." -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "Condición inválida: {}" @@ -13204,16 +13213,20 @@ msgstr "DocType inválido" msgid "Invalid DocType: {0}" msgstr "DocType no válido: {0}" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "Nombre de campo no válido" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "URL de archivo inválida" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13245,7 +13258,7 @@ msgstr "Ingreso inválido. Intentar otra vez." msgid "Invalid Mail Server. Please rectify and try again." msgstr "Servidor de correo no válido. Por favor verifique la configuración y vuelva a intentarlo." -#: frappe/model/naming.py:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "Serie de nombres no válida: {}" @@ -13254,8 +13267,8 @@ msgstr "Serie de nombres no válida: {}" msgid "Invalid Operation" msgstr "Operación inválida" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "Opción inválida" @@ -13267,25 +13280,25 @@ msgstr "Servidor o puerto de correo saliente no válido: {0}" msgid "Invalid Output Format" msgstr "Formato de salida no válido" -#: frappe/model/base_document.py:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "Anulación no válida" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "Parámetros Inválidos." -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "Contraseña invalida" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "Numero de telefono invalido" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "Solicitud inválida" @@ -13294,7 +13307,7 @@ msgstr "Solicitud inválida" msgid "Invalid Search Field {0}" msgstr "Campo de búsqueda no válido {0}" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "Nombre del Campo de Tabla Inválido" @@ -13302,8 +13315,8 @@ msgstr "Nombre del Campo de Tabla Inválido" msgid "Invalid Transition" msgstr "Transición inválida" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13317,47 +13330,51 @@ msgstr "Nombre de usuario o contraseña de soporte inválido, por favor verifiqu msgid "Invalid Values" msgstr "Valores inválidos" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "Secreto de Webhook inválido" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "Función de agregación inválida" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "Columna inválida" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "Estado del documento no válido" @@ -13369,31 +13386,27 @@ msgstr "Conjunto de expresión no válida en el filtro {0}" msgid "Invalid expression set in filter {0} ({1})" msgstr "Conjunto de expresión no válida en el filtro {0} ({1})" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "Nombre de campo inválido {0}" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "Nombre de campo no válido '{0}' en nombre automático" @@ -13401,11 +13414,11 @@ msgstr "Nombre de campo no válido '{0}' en nombre automático" msgid "Invalid file path: {0}" msgstr "Ruta no válida archivo: {0}" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13413,20 +13426,28 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "Filtro no válido: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "JSON no válido agregado en las opciones personalizadas: {0}" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "Tipo de nombre no válido (entero) para la columna de nombre varchar" @@ -13434,6 +13455,10 @@ msgstr "Tipo de nombre no válido (entero) para la columna de nombre varchar" msgid "Invalid naming series {}: dot (.) missing" msgstr "Serie de nombres {} no válida: falta el punto (.)" +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "Contenido no válido o dañado para importar" @@ -13442,19 +13467,27 @@ msgstr "Contenido no válido o dañado para importar" msgid "Invalid redirect regex in row #{}: {}" msgstr "Regex de redirección no válida en la fila #{}: {}" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "Argumentos de solicitud inválidos" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13462,7 +13495,7 @@ msgstr "" msgid "Invalid template file for import" msgstr "Archivo de plantilla no válido para importar" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "¡Estado de token no válido! Compruebe si el token ha sido creado por el usuario OAuth." @@ -13471,20 +13504,20 @@ msgstr "¡Estado de token no válido! Compruebe si el token ha sido creado por e msgid "Invalid username or password" msgstr "Nombre de usuario o contraseña inválidos" -#: frappe/model/naming.py:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "Valor no válido para UUID: {}" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "Valores inválidos para los campos:" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "Versión wkhtmltopdf no válida" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "Condición {0} no válida" @@ -13493,10 +13526,47 @@ msgstr "Condición {0} no válida" msgid "Inverse" msgstr "inverso" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "Invitar como usuario" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "Es" @@ -13521,7 +13591,7 @@ msgstr "Es Calendario y Gantt" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "Es una tabla secundaria" @@ -13574,6 +13644,10 @@ msgstr "Es Carpeta" msgid "Is Global" msgstr "Es Global" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Es un grupo" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13600,8 +13674,13 @@ msgstr "Es un estado opcional" msgid "Is Primary" msgstr "Es primaria" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 msgid "Is Primary Contact" msgstr "Es el contacto principal" @@ -13632,7 +13711,7 @@ msgstr "Es público" msgid "Is Published Field" msgstr "Es campo publicable" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "Es Campo Publicable debe ser un nombre de campo válido" @@ -13657,7 +13736,7 @@ msgstr "" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "Es individual" @@ -13693,7 +13772,7 @@ msgstr "Es estándar" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "Se puede validar" @@ -13899,11 +13978,11 @@ msgstr "Columna de Tablero Kanban" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "Nombre del Tablero Kanban" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Configuración de Kanban" @@ -13924,12 +14003,14 @@ msgstr "Seguimiento de todas las comunicaciones" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -14191,7 +14272,7 @@ msgstr "La etiqueta es obligatoria" msgid "Landing Page" msgstr "Pagina de inicio" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "Paisaje" @@ -14199,10 +14280,13 @@ msgstr "Paisaje" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Idioma" @@ -14290,8 +14374,12 @@ msgstr "El mes pasado" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "Apellido" @@ -14306,6 +14394,11 @@ msgstr "Fecha de restablecimiento de la última contraseña" msgid "Last Quarter" msgstr "Último cuarto" +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" + #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json @@ -14322,11 +14415,6 @@ msgstr "Última ejecución" msgid "Last Sync On" msgstr "Última Sincronización Activada" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "Última sincronización a las" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14437,7 +14525,7 @@ msgstr "Largo" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "¡La longitud del array de datos introducidos es superior al valor de los puntos de etiqueta máximos permitidos!" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "Longitud de {0} debe estar entre 1 y 1000" @@ -14486,8 +14574,8 @@ msgstr "Carta" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14515,7 +14603,7 @@ msgstr "Nombre del Encabezado" msgid "Letter Head Scripts" msgstr "Scripts del membrete" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "El Membrete no puede estar deshabilitado y ser predeterminado al mismo tiempo" @@ -14532,7 +14620,7 @@ msgstr "Membrete en HTML" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "Nivel" @@ -14582,20 +14670,6 @@ msgstr "Tema Claro" msgid "Like" msgstr "Como" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "Límite \"Me gusta\"" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "Límite de \"Me gusta\" por hora" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "Me gusta en {0}: {1}" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "Gustó" @@ -14636,6 +14710,7 @@ msgstr "Línea" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14649,6 +14724,7 @@ msgstr "Línea" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "Enlace" @@ -14779,10 +14855,15 @@ msgstr "Vinculado" msgid "Linked With" msgstr "Vinculado Con" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +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 (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14790,6 +14871,7 @@ msgstr "Vinculado Con" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "Enlaces" @@ -14831,7 +14913,7 @@ msgstr "Filtro de Lista" msgid "List Settings" msgstr "Configuración de lista" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Configuración de lista" @@ -14872,7 +14954,7 @@ msgstr "Lista de parches ejecutados" msgid "List setting message" msgstr "Mensaje de configuración de lista" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "Listas" @@ -14881,9 +14963,8 @@ msgstr "Listas" msgid "Load Balancing" msgstr "Balanceo de carga" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Carga más" @@ -14900,10 +14981,10 @@ msgstr "Cargar más" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "Cargando" @@ -14915,7 +14996,7 @@ msgstr "Cargando filtros..." msgid "Loading import file..." msgstr "Cargando archivo de importación..." -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "Cargando versiones..." @@ -14925,7 +15006,7 @@ msgstr "Cargando versiones..." #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "Cargando..." @@ -14986,7 +15067,7 @@ msgstr "Inicia sesión para acceder a esta página." msgid "Log out" msgstr "Cerrar sesión" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "Desconectado" @@ -15046,7 +15127,7 @@ msgstr "Código de verificación de inicio de sesión de {}" msgid "Login and view in Browser" msgstr "Iniciar Sesión y ver en el Navegador" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "Es necesario iniciar sesión para ver la vista de lista del formulario web. Habilite {0} para ver la configuración de la lista" @@ -15054,7 +15135,7 @@ msgstr "Es necesario iniciar sesión para ver la vista de lista del formulario w msgid "Login link sent to your email" msgstr "Enlace de inicio de sesión enviado a su correo electrónico" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "No se permite iniciar sesión en este momento" @@ -15089,7 +15170,7 @@ msgstr "Iniciar sesión con enlace de correo" #: frappe/www/login.html:116 msgid "Login with Frappe Cloud" -msgstr "" +msgstr "Iniciar sesión con Frappe Cloud" #: frappe/www/login.html:49 msgid "Login with LDAP" @@ -15107,7 +15188,7 @@ msgstr "Iniciar sesión con enlace de correo" msgid "Login with email link expiry (in minutes)" msgstr "Caducidad del inicio de sesión con enlace de correo electrónico (en minutos)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "Inicio de sesión con nombre de usuario y contraseña no está permitido." @@ -15126,7 +15207,7 @@ msgstr "" msgid "Logout" msgstr "Salir" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "Cerrar sesión en todas las sesiones" @@ -15230,7 +15311,10 @@ msgid "Major" msgstr "Mayor" #. 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 +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "Hacer el \"nombre\" buscable en la búsqueda global" @@ -15306,7 +15390,7 @@ msgstr "Obligatorio depende de" msgid "Mandatory Depends On (JS)" msgstr "Obligatorio Depende de (JS)" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "Información obligatoria faltante:" @@ -15318,15 +15402,15 @@ msgstr "Campo obligatorio: establecer rol para" msgid "Mandatory field: {0}" msgstr "Campo obligatorio: {0}" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "Campos obligatorios requeridos en la tabla {0}, Fila {1}" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "Los siguientes campos son obligatorios en {0}" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "Campos obligatorios requeridos:" @@ -15407,10 +15491,8 @@ msgid "Mark as Unread" msgstr "Marcar como no Leído" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15491,7 +15573,13 @@ msgstr "Tamaño máximo de archivo adjunto" msgid "Max auto email report per user" msgstr "Informes de correo electrónico automático máximos por usuario" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "El ancho máximo para el tipo de divisa es 100px en la línea {0}" @@ -15500,20 +15588,15 @@ msgstr "El ancho máximo para el tipo de divisa es 100px en la línea {0}" msgid "Maximum" msgstr "Máximo" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "Límite máximo de adjunto de {0} ha sido alcanzado por {1} {2}." -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "Número máximo de campos" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "Límite máximo de adjuntos de {0} ha sido alcanzado." -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "Máximo: {0} lineas permitidas" @@ -15529,7 +15612,7 @@ msgstr "Significado de Validar, Cancelar, Rectificar" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15542,7 +15625,7 @@ msgstr "Medio" msgid "Meeting" msgstr "Reunión" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "¿Cumple las condiciones?" @@ -15560,7 +15643,7 @@ msgstr "Uso de Memoria" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63 msgid "Memory Usage in MB" -msgstr "" +msgstr "Uso de memoria en MB" #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json @@ -15583,7 +15666,7 @@ msgstr "Menú" msgid "Merge with existing" msgstr "Combinar con existente" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "La fusión sólo es posible de Grupo -a- Grupo o de Nodo -a- Nodo en la hoja" @@ -15609,7 +15692,7 @@ msgstr "La fusión sólo es posible de Grupo -a- Grupo o de Nodo -a- Nodo en la #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15649,7 +15732,7 @@ msgstr "Mensaje enviado" msgid "Message Type" msgstr "Tipo de mensaje" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "Mensaje marcado" @@ -15681,29 +15764,21 @@ msgstr "Mensajes" msgid "Meta" msgstr "Meta" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "Metadescripción" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "Meta imagen" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "Metaetiquetas" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "Meta título" @@ -15756,7 +15831,7 @@ msgstr "Método" msgid "Method Not Allowed" msgstr "Método no permitido" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "Método necesario para crear una Tarjeta Numérica" @@ -15772,6 +15847,11 @@ msgstr "Centro medio" msgid "Middle Name" msgstr "Segundo Nombre" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15838,11 +15918,11 @@ msgstr "Srta." msgid "Missing DocType" msgstr "Falta DocType" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "Campo faltante" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "Campos Faltantes" @@ -15878,15 +15958,16 @@ msgstr "Móvil" msgid "Mobile No" msgstr "Nº Móvil" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "Número de teléfono móvil" + #. 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 "Función del modal" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "Modificado por" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15907,7 +15988,7 @@ msgstr "Modificado por" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -16083,10 +16164,12 @@ msgstr "Más información" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Más información" @@ -16105,7 +16188,7 @@ msgstr "Más contenido de la parte inferior de la página." msgid "Most Used" msgstr "Más usado" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "Probablemente su contraseña es demasiado larga." @@ -16116,7 +16199,7 @@ msgstr "Probablemente su contraseña es demasiado larga." msgid "Move" msgstr "Mover" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "Mover a" @@ -16152,7 +16235,7 @@ msgstr "Mover secciones a una nueva pestaña" msgid "Move the current field and the following fields to a new column" msgstr "Mover el campo actual y los siguientes campos a una nueva columna" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "Mover al número de fila" @@ -16179,7 +16262,7 @@ msgstr "Sra." msgid "Ms" msgstr "Sra." -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "Múltiples nodos raíz no permitidos." @@ -16202,7 +16285,7 @@ msgstr "Debe ir encerrado entre '()' e incluir '{0}', que es un marcador de posi msgid "Must be of type \"Attach Image\"" msgstr "Debe ser del tipo \"Adjuntar Imagen\"" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "Debe tener permisos de reporte para ver este documento." @@ -16220,7 +16303,7 @@ msgid "Mx" msgstr "Mx" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16258,9 +16341,9 @@ msgstr "NOTA: Esta configuración está próxima a su depreciación. Por favor, #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16270,11 +16353,11 @@ msgstr "Nombre" msgid "Name (Doc Name)" msgstr "Nombre (Doc Name)" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "Nombre ya usado, por favor establezca un nuevo nombre" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "El nombre no puede contener caracteres especiales como {0}" @@ -16286,7 +16369,7 @@ msgstr "Nombre del tipo de documento (DocType) al que quieres que se vincule est msgid "Name of the new Print Format" msgstr "Nombre del nuevo formato de impresión" -#: frappe/model/naming.py:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "Nombre de {0} no puede ser {1}" @@ -16327,7 +16410,7 @@ msgstr "Regla de Nomenclatura" msgid "Naming Series" msgstr "Secuencias e identificadores" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "Las secuencias e identificadores son obligatorios" @@ -16364,12 +16447,12 @@ msgstr "Plantilla de barra de navegación" msgid "Navbar Template Values" msgstr "Valores de la plantilla de la barra de navegación" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Navegar por la lista hacia abajo" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Navegar lista arriba" @@ -16384,7 +16467,11 @@ msgstr "Ir al contenido principal" msgid "Navigation Settings" msgstr "Configuración de Navegación" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "Necesita el rol de Administrador del Área de Trabajo para editar el área de trabajo privada de otros usuarios" @@ -16392,7 +16479,7 @@ msgstr "Necesita el rol de Administrador del Área de Trabajo para editar el ár msgid "Negative Value" msgstr "Valor negativo" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16405,6 +16492,12 @@ msgstr "Error de conjunto anidado. Contacta con el administrador." msgid "Network Printer Settings" msgstr "Configuración de la Impresora de Red" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +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 @@ -16413,7 +16506,7 @@ msgstr "Configuración de la Impresora de Red" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16434,10 +16527,6 @@ msgstr "Nueva Dirección" msgid "New Chart" msgstr "Nuevo gráfico" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "Nuevo comentario en {0}: {1}" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "Nuevo Contacto" @@ -16446,8 +16535,8 @@ msgstr "Nuevo Contacto" msgid "New Custom Block" msgstr "Nuevo Bloque personalizado" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" msgstr "Nuevo formato de impresión personalizado" @@ -16478,7 +16567,7 @@ msgstr "Nuevo Evento" msgid "New Folder" msgstr "Nueva carpeta" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "Nuevo Tablero Kanban" @@ -16513,12 +16602,12 @@ msgstr "Nueva tarjeta numérica" msgid "New Onboarding" msgstr "Nuevo módulo de incorporación" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "Nueva Contraseña" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "Nuevo nombre de formato de impresión" @@ -16527,7 +16616,7 @@ msgstr "Nuevo nombre de formato de impresión" msgid "New Quick List" msgstr "Nueva Lista Rápida" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "Nuevo nombre de Informe" @@ -16545,8 +16634,8 @@ msgstr "Nuevo Atajo" msgid "New Users (Last 30 days)" msgstr "Usuarios nuevos (últimos 30 días)" -#: frappe/core/doctype/version/version_view.html:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "Nuevo Valor" @@ -16603,13 +16692,13 @@ msgstr "Nuevo valor a establecer" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "Nuevo/a: {0}" @@ -16625,7 +16714,7 @@ msgstr "Nuevo {0} {1} agregado al panel {2}" msgid "New {0} {1} created" msgstr "Nuevo {0} {1} creado" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "Nuevo {0}: {1}" @@ -16633,7 +16722,7 @@ msgstr "Nuevo {0}: {1}" msgid "New {} releases for the following apps are available" msgstr "Las nuevas {} versiones para las siguientes aplicaciones están disponibles" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "El usuario recién creado {0} no tiene ningún rol habilitado." @@ -16646,7 +16735,7 @@ msgstr "Administrador de boletínes" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16753,14 +16842,15 @@ msgstr "Siguiente al hacer clic" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "No" @@ -16810,6 +16900,10 @@ msgstr "No se cuenta de correo electrónico" msgid "No Email Accounts Assigned" msgstr "No hay cuentas de correo electrónico asignadas" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "No hay mensajes de correo electrónico" @@ -16845,15 +16939,15 @@ msgstr "No se encontró ningún usuario LDAP para el correo electrónico: {0}" msgid "No Label" msgstr "Sin Etiqueta" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: frappe/public/js/frappe/list/bulk_operations.js:98 #: frappe/public/js/frappe/list/bulk_operations.js:170 #: frappe/utils/weasyprint.py:52 msgid "No Letterhead" msgstr "Sin Membrete" -#: frappe/model/naming.py:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "Sin nombre especificado para {0}" @@ -16861,7 +16955,7 @@ msgstr "Sin nombre especificado para {0}" msgid "No New notifications" msgstr "No hay nuevas notificaciones" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "No hay Permisos Especificados" @@ -16881,11 +16975,11 @@ msgstr "No hay gráficos permitidos en este Tablero" msgid "No Preview" msgstr "Sin vista previa" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "Vista previa no disponible" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "No hay impresora disponible." @@ -16901,11 +16995,11 @@ msgstr "No hay resultados" msgid "No Results found" msgstr "No se encontraron resultados" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "No hay Roles especificados" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "No se ha encontrado ningún campo de selección" @@ -16913,7 +17007,7 @@ msgstr "No se ha encontrado ningún campo de selección" msgid "No Suggestions" msgstr "No hay sugerencias" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "Sin Etiquetas" @@ -16925,7 +17019,7 @@ msgstr "No hay próximos eventos" msgid "No address added yet." msgstr "Ninguna dirección añadida aún." -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "No hay alertas para hoy" @@ -16953,23 +17047,19 @@ msgstr "No hay cambios para sincronizar" msgid "No changes to update" msgstr "No hay cambios para actualizar" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "No hay comentarios todavía" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " -msgstr "No hay comentarios todavía. " +msgid "No comments yet." +msgstr "No hay comentarios todavía." #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." msgstr "Ningún contacto agregado todavía." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "No hay contactos vinculados al documento" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "No hay datos para exportar" @@ -16985,11 +17075,15 @@ msgstr "No se encontraron documentos etiquetados con {0}" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "No hay una cuenta de correo electrónico asociada con el usuario. Por favor, añade una cuenta en Usuario > Correo electrónico." +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "No hay registros fallidos" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "No se han encontrado campos que puedan utilizarse como Columna Kanban. Utilice el formulario de personalización para añadir un campo personalizado de tipo \"Seleccionar\"." @@ -17013,7 +17107,7 @@ msgstr "No existen registros nuevos" msgid "No matching records. Search something new" msgstr "No hay registros coincidentes. Buscar algo nuevo" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "No hay más elementos para mostrar" @@ -17057,7 +17151,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "No tiene permiso para '{0} ' {1}" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "No tiene permiso para leer {0}" @@ -17069,7 +17163,7 @@ msgstr "No tiene permiso para {0} {1} {2}" msgid "No records deleted" msgstr "No hay registros eliminados" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "No hay registros presentes en {0}" @@ -17085,7 +17179,7 @@ msgstr "No se exportarán registros" msgid "No rows" msgstr "Sin filas" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "Sin asunto" @@ -17105,11 +17199,11 @@ msgstr "No {0}" msgid "No {0} Found" msgstr "Ningún {0} encontrado" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "Ningún {0} encontrado" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "No se ha encontrado ningún {0} que coincida con filtros. Borre los filtros para ver todos los {0}." @@ -17118,7 +17212,7 @@ msgid "No {0} mail" msgstr "No {0} electrónico" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "Nº" @@ -17161,7 +17255,7 @@ msgstr "Copias normalizadas" msgid "Normalized Query" msgstr "Consulta normalizada" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "No permitido" @@ -17182,7 +17276,7 @@ msgstr "No son Descendientes de" msgid "Not Equals" msgstr "No es igual" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "No encontrado" @@ -17208,20 +17302,19 @@ msgstr "No está vinculado a ningún registro" msgid "Not Nullable" msgstr "No nulo" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "No permitido" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "No permitido leer {0}" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17230,10 +17323,10 @@ msgstr "No publicado" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "No guardado" @@ -17265,7 +17358,7 @@ msgstr "No es un archivo separado por comas válido (archivo CSV)" msgid "Not a valid User Image." msgstr "No es una Imagen de Usuario Válida." -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "No es una acción de flujo de trabajo válida" @@ -17281,11 +17374,11 @@ msgstr "No activo" msgid "Not allowed for {0}: {1}" msgstr "No permitido para {0}: {1}" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "No se permite adjuntar {0} documento, habilite Permitir impresión para {0} en Configuración de impresión." -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "No se permite crear DocType virtual personalizado." @@ -17309,27 +17402,27 @@ msgstr "Extraviado" msgid "Not in Developer Mode" msgstr "No se encuentra en modo desarrollador" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "No se encuentra en modo desarrollador! Debe establecerlo en el archivo site_config.json o crear un 'DocType' personalizado." -#: frappe/core/doctype/system_settings/system_settings.py:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "No permitido" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "No se permite ver {0}" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17364,7 +17457,7 @@ msgstr "Nota: Para obtener mejores resultados, las imágenes deben ser del mismo msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "Nota: Varias sesiones serán permitidas en el caso de los dispositivos móviles" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "Nota: Se compartirá con el usuario." @@ -17388,10 +17481,9 @@ msgstr "No queda nada que rehacer" msgid "Nothing left to undo" msgstr "Nada que deshacer" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "Nada para mostrar" @@ -17437,15 +17529,15 @@ msgstr "Notificación de documento suscrito" msgid "Notification sent to" msgstr "Notificación enviada a" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "Notificación: el cliente {0} no tiene establecido un número de móvil" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "Notificación: el documento {0} no tiene establecido el número {1} (campo: {2})" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "Notificación: el usuario {0} no tiene número de móvil establecido" @@ -17496,7 +17588,7 @@ msgstr "Notificarme si no tiene respuesta durante (en minutos)" msgid "Notify users with a popup when they log in" msgstr "Notificar a los usuarios con un mensaje emergente cuando se conectan" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "Ahora" @@ -17554,12 +17646,12 @@ msgstr "Numero de grupos" msgid "Number of Queries" msgstr "Número de consultas" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "El número de campos adjuntos es superior a {}, límite actualizado a {}." -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "El número de copias de seguridad debe ser superior a cero." @@ -17668,11 +17760,11 @@ msgstr "Aplicación OTP" msgid "OTP Issuer Name" msgstr "Nombre del Emisor de OTP" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "Restablecer secreto OTP - {0}" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "OTP Secret ha sido restablecido. Re-registro será necesario en el próximo inicio de sesión." @@ -17791,7 +17883,7 @@ msgstr "Con fecha de o después del" msgid "On or Before" msgstr "Con fecha de o antes del" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "El {0}, {1} escribió:" @@ -17831,7 +17923,7 @@ msgstr "Incorporación completada" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "Una vez validados, los documentos que se pueden validar no se pueden cambiar. Solo pueden cancelarse y rectificarse." @@ -17876,7 +17968,7 @@ msgstr "Solo el administrador puede usar la grabadora" msgid "Only Allow Edit For" msgstr "Permitir editar para" -#: frappe/core/doctype/doctype/doctype.py:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "Solo las opciones permitidas para el campo de datos son:" @@ -17893,7 +17985,7 @@ msgstr "Solo el Administrador del Área de Trabajo puede editar Áreas de Trabaj msgid "Only allowed to export customizations in developer mode" msgstr "Solo se permite exportar personalizaciones en modo desarrollador" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "Solo pueden descartarse los borradores de documentos" @@ -17912,19 +18004,19 @@ msgstr "Sólo los campos obligatorios son necesarios para los nuevos registros. msgid "Only one {0} can be set as primary." msgstr "Solo uno {0} se puede establecer como primario." -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "Solo se pueden eliminar informes del tipo Generador de Informes" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "Solo se pueden editar informes del tipo Generador de Informes" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Solo los DocTypes estándar pueden personalizarse desde el formulario Personalizar." -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17994,7 +18086,7 @@ msgstr "Abrir documento de referencia" msgid "Open Settings" msgstr "Configuración abierta" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "Aplicaciones de Código Abierto para la web" @@ -18012,7 +18104,7 @@ msgstr "Abre un diálogo con campos obligatorios para crear un nuevo registro r msgid "Open a module or tool" msgstr "Abrir un módulo o herramienta" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "" @@ -18020,7 +18112,7 @@ msgstr "" msgid "Open in a new tab" msgstr "Abrir en una nueva pestaña" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Abrir elemento de lista" @@ -18035,13 +18127,13 @@ msgstr "Abre tu aplicación de autenticación en tu teléfono móvil." #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "Abrir {0}" @@ -18050,6 +18142,10 @@ msgstr "Abrir {0}" msgid "OpenID Configuration" msgstr "Configuración de OpenID" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" @@ -18065,7 +18161,7 @@ msgstr "Abierto" msgid "Operation" msgstr "Operación" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "El Operador debe ser uno de {0}" @@ -18091,7 +18187,7 @@ msgstr "Opción 2" msgid "Option 3" msgstr "Opción 3" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "La opción {0} para el campo {1} no es una tabla secundaria" @@ -18111,6 +18207,7 @@ msgstr "Opcional: La alerta será enviada si esta expresión es verdadera" #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -18119,11 +18216,12 @@ msgstr "Opcional: La alerta será enviada si esta expresión es verdadera" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "Opciones" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "Las opciones de campo de tipo 'Vinculo Dinámico' debe apuntar a otro campo con propiedades 'DocType'" @@ -18132,7 +18230,7 @@ msgstr "Las opciones de campo de tipo 'Vinculo Dinámico' debe apuntar a otro ca msgid "Options Help" msgstr "Opciones de ayuda" -#: frappe/core/doctype/doctype/doctype.py:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "Las opciones para el campo Calificación pueden ir de 3 a 10" @@ -18140,7 +18238,7 @@ msgstr "Las opciones para el campo Calificación pueden ir de 3 a 10" msgid "Options for select. Each option on a new line." msgstr "Opciones para seleccionar. Cada opción en una nueva línea." -#: frappe/core/doctype/doctype/doctype.py:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 msgid "Options for {0} must be set before setting the default value." msgstr "Las opciones para {0} deben configurarse antes de configurar el valor predeterminado." @@ -18148,7 +18246,7 @@ msgstr "Las opciones para {0} deben configurarse antes de configurar el valor pr msgid "Options is required for field {0} of type {1}" msgstr "Se requieren opciones para el campo {0} de tipo {1}" -#: frappe/model/base_document.py:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "Las opciones no establecidas para el campo enlazado {0}" @@ -18164,7 +18262,7 @@ msgstr "Naranja" msgid "Order" msgstr "Orden" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18180,12 +18278,12 @@ msgstr "Historia de la organización" msgid "Org History Heading" msgstr "Encabezado de la historia de la organización" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "Orientación" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "Valor Original" @@ -18253,10 +18351,6 @@ msgstr "Salida" msgid "Overview" msgstr "Resumen" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "Propietario" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" @@ -18264,9 +18358,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:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "PDF" @@ -18307,11 +18401,11 @@ msgstr "La generación de PDF falló" msgid "PDF generation failed because of broken image links" msgstr "Error en la generación del archivo PDF debido a problema con los enlaces de las imágenes" -#: frappe/printing/page/print/print.js:616 +#: frappe/printing/page/print/print.js:656 msgid "PDF generation may not work as expected." msgstr "Es posible que la generación de PDF no funcione como se esperaba." -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:574 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "La impresión en PDF a través de \"Impresión sin formato\" no está soportada." @@ -18483,7 +18577,7 @@ msgstr "Página para mostrar en el sitio web\n" #: frappe/public/html/print_template.html:25 #: frappe/public/js/frappe/views/reports/print_tree.html:89 -#: frappe/public/js/frappe/web_form/web_form.js:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "Página {0} de {1}" @@ -18510,7 +18604,7 @@ msgstr "DocType padre" msgid "Parent Document Type" msgstr "Tipo de documento padre" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "Se requiere el tipo de documento padre para crear un Widget numérico" @@ -18527,11 +18621,11 @@ msgstr "Campo padre" #. Label of the nsm_parent_field (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype.py:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "Campo principal (árbol)" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "El campo principal debe ser un nombre de campo válido" @@ -18540,7 +18634,7 @@ msgstr "El campo principal debe ser un nombre de campo válido" msgid "Parent Label" msgstr "Etiqueta Principal" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 msgid "Parent Missing" msgstr "Falta padre" @@ -18614,8 +18708,8 @@ msgstr "Pasivo" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18625,7 +18719,7 @@ msgstr "Pasivo" msgid "Password" msgstr "Contraseña" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "Correo de Contraseña enviado" @@ -18638,7 +18732,7 @@ msgstr "Restablecer contraseña" msgid "Password Reset Link Generation Limit" msgstr "Límite de generación de enlaces de restablecimiento de contraseña" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "No se puede filtrar por contraseña" @@ -18655,6 +18749,10 @@ msgstr "Contraseña para la base DN" msgid "Password is required or select Awaiting Password" msgstr "Se requiere contraseña o seleccione En espera de la contraseña" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "Falta contraseña en la cuenta de correo" @@ -18663,7 +18761,7 @@ msgstr "Falta contraseña en la cuenta de correo" msgid "Password not found for {0} {1} {2}" msgstr "Contraseña no encontrada para {0} {1} {2}" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "Se han enviado instrucciones para restablecer la contraseña al correo electrónico de {}." @@ -18671,11 +18769,11 @@ msgstr "Se han enviado instrucciones para restablecer la contraseña al correo e msgid "Password set" msgstr "Contraseña establecida" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "El tamaño de la contraseña excedió el tamaño máximo permitido" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." msgstr "El tamaño de la contraseña superó el tamaño máximo permitido." @@ -18683,7 +18781,7 @@ msgstr "El tamaño de la contraseña superó el tamaño máximo permitido." msgid "Passwords do not match" msgstr "Las contraseñas no coinciden" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "¡Las contraseñas no coinciden!" @@ -18749,14 +18847,16 @@ msgstr "Recuento de datos" #. Label of the peak_memory_usage (Int) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Peak Memory Usage" -msgstr "" +msgstr "Pico de uso de memoria" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "Pendiente" @@ -18832,7 +18932,7 @@ msgstr "¿Validar permanentemente {0}?" msgid "Permanently delete {0}?" msgstr "¿Eliminar permanentemente \"{0}\"?" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "Error de Permiso" @@ -18892,16 +18992,16 @@ msgstr "Tipo de Permiso" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: frappe/core/page/permission_manager/permission_manager.js:221 #: frappe/core/workspace/users/users.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Permissions" msgstr "Permisos" -#: frappe/core/doctype/doctype/doctype.py:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "Error de Permisos" @@ -18963,15 +19063,18 @@ msgstr "Solicitud de descarga de datos personales" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -18984,13 +19087,13 @@ msgstr "Teléfono" msgid "Phone No." msgstr "No. de teléfono" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 msgid "Phone Number {0} set in field {1} is not valid." msgstr "Número de teléfono {0} establecido en el campo {1} no es válido." -#: frappe/public/js/frappe/form/print_utils.js:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "Seleccionar columnas" @@ -19050,11 +19153,11 @@ msgstr "Instale la biblioteca ldap3 a través de pip para usar la funcionalidad msgid "Please Set Chart" msgstr "Por favor, establezca el gráfico" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "Por favor, actualizar la configuración SMS" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "Por favor agregue un asunto a su correo electrónico" @@ -19062,7 +19165,7 @@ msgstr "Por favor agregue un asunto a su correo electrónico" msgid "Please add a valid comment." msgstr "Agregue un comentario válido." -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "Por favor, consulte a su administrador para verificar su registro" @@ -19070,11 +19173,11 @@ msgstr "Por favor, consulte a su administrador para verificar su registro" msgid "Please attach a file first." msgstr "Por favor, adjunte un archivo" -#: frappe/printing/doctype/letter_head/letter_head.py:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 msgid "Please attach an image file to set HTML for Footer." msgstr "Por favor, adjunte un archivo de imagen para establecer el HTML para el pie de página." -#: frappe/printing/doctype/letter_head/letter_head.py:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "Por favor, adjunte un archivo de imagen para establecer el HTML para el membrete." @@ -19082,19 +19185,15 @@ msgstr "Por favor, adjunte un archivo de imagen para establecer el HTML para el msgid "Please attach the package" msgstr "Por favor adjunte el paquete" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "Por favor verifique la URL de configuración de OpenID" - #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "Compruebe los valores de filtro establecidos para el gráfico del tablero: {}" -#: frappe/model/base_document.py:951 +#: frappe/model/base_document.py:1008 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Por favor, compruebe el valor de \"Obtener desde\" establecido para el campo {0}" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "Por favor, consultar su correo electrónico para la verificación" @@ -19126,11 +19225,11 @@ msgstr "Por favor, haga clic en el siguiente enlace para configurar su nueva con msgid "Please confirm your action to {0} this document." msgstr "Confirma tu acción a {0} este documento." -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "Póngase en contacto con el responsable de su sistema para instalar la versión correcta." -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "Primero crea la tarjeta" @@ -19146,20 +19245,20 @@ msgstr "Por favor, elimine el campo de {0} o añada el doctype requerido." msgid "Please do not change the template headings." msgstr "Por favor, no cambie los encabezados de la plantilla." -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" msgstr "Por favor, duplicar esto para realizar los cambios" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "Por favor, habilite al menos una Clave de Inicio de Sesión Social o LDAP o Inicio de Sesión con Enlace de Correo Electrónico antes de deshabilitar el inicio de sesión basado en nombre de usuario/contraseña." #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "Por favor, active los pop-ups" @@ -19196,7 +19295,7 @@ msgstr "Ingrese ID de Cliente antes de que se active el inicio de sesión social msgid "Please enter Client Secret before social login is enabled" msgstr "Ingrese Client Secret antes de que el inicio de sesión social esté habilitado" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "Por favor, introduzca la URL de configuración de OpenID" @@ -19233,11 +19332,12 @@ msgstr "Por favor, ingrese su nueva contraseña." msgid "Please enter your old password." msgstr "Por favor, introduzca su antigua contraseña." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "Encuentra adjunto {0}: {1}" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "Por favor, inicie sesión para enviar un comentario." @@ -19245,11 +19345,11 @@ msgstr "Por favor, inicie sesión para enviar un comentario." msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "Asegúrese de que los documentos de comunicación de referencia no estén vinculados circularmente." -#: frappe/model/document.py:988 +#: frappe/model/document.py:992 msgid "Please refresh to get the latest document." msgstr "Por favor, actualice para obtener el último documento." -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:575 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "Por favor, elimine la asignación de la impresora en Configuración de la impresora e inténtelo de nuevo." @@ -19265,7 +19365,7 @@ msgstr "Por favor, guarde el documento antes de la asignación" msgid "Please save the document before removing assignment" msgstr "Por favor, guarde el documento antes de remover la asignación" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "Por favor, guarde el informe primero" @@ -19273,7 +19373,7 @@ msgstr "Por favor, guarde el informe primero" msgid "Please save to edit the template." msgstr "Guarde para editar la plantilla." -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "Por favor, seleccione 'DocType' primero" @@ -19281,19 +19381,19 @@ msgstr "Por favor, seleccione 'DocType' primero" msgid "Please select Entity Type first" msgstr "Por favor, seleccione Tipo de entidad primero" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "Seleccione el valor mínimo de la contraseña" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "Por favor, seleccione campos X e Y" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "Por favor, seleccione un código de país para el campo {1}." -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "Por favor, seleccione un archivo primero" @@ -19301,7 +19401,7 @@ msgstr "Por favor, seleccione un archivo primero" msgid "Please select a file or url" msgstr "Por favor, seleccione un archivo o url" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" msgstr "Por favor, seleccione un archivo csv con datos válidos" @@ -19313,7 +19413,7 @@ msgstr "Seleccione un filtro de fecha válido" msgid "Please select applicable Doctypes" msgstr "Por favor seleccione Doctypes aplicables" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Por favor, seleccione al menos 1 columna de {0} para ordenar / agrupar" @@ -19339,11 +19439,11 @@ msgstr "Por favor, seleccione {0}" msgid "Please set Email Address" msgstr "Por favor, establece Dirección de correo electrónico" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:589 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "Configure una asignación de impresora para este formato de impresión en la Configuración de la impresora" -#: frappe/public/js/frappe/views/reports/query_report.js:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "Por favor, defina los filtros" @@ -19351,7 +19451,7 @@ msgstr "Por favor, defina los filtros" msgid "Please set filters value in Report Filter table." msgstr "Defina el valor de los filtros en la tabla Filtro de informes." -#: frappe/model/naming.py:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "Por favor, establezca el nombre del documento" @@ -19363,7 +19463,7 @@ msgstr "Primero configure los siguientes documentos en este Panel como estándar msgid "Please set the series to be used." msgstr "Por favor, configure la serie que se utilizará." -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "Configure SMS antes de configurarlo como un método de autenticación, a través de Configuración de SMS" @@ -19387,23 +19487,23 @@ msgstr "Por favor, especifique" msgid "Please specify a valid parent DocType for {0}" msgstr "Por favor, especifique un DocType padre válido para {0}" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "Especifique al menos 10 minutos debido a la cadencia de activación del programador." -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "Especifique el desfase de minutos" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "Por favor especifique la fecha que debe ser verificada" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "Por favor especifique la fecha que debe ser verificada" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "Por favor, especifique qué campo debe ser revisado" @@ -19424,7 +19524,7 @@ msgstr "Por favor, utilice un filtro de búsqueda LDAP válido" msgid "Please use following links to download file backup." msgstr "" -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "Por favor, visite https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key para más información." @@ -19478,7 +19578,7 @@ msgstr "Elemento del Menú del Portal" msgid "Portal Settings" msgstr "Configuración del portal" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "Retrato" @@ -19506,6 +19606,7 @@ msgstr "Postal" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "Codigo postal" @@ -19514,15 +19615,7 @@ msgstr "Codigo postal" msgid "Posting Timestamp" msgstr "Marca de tiempo de la publicación" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "Entradas por {0}" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "Publicar bajo {0}" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19537,7 +19630,11 @@ msgstr "" msgid "Precision" msgstr "Precisión" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "Precisión debe estar entre 1 y 6" @@ -19585,7 +19682,7 @@ msgstr "" msgid "Prepared Report User" msgstr "Usuario de informe preparado" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "Error en la representación del informe preparado" @@ -19593,7 +19690,7 @@ msgstr "Error en la representación del informe preparado" msgid "Preparing Report" msgstr "Preparando Informe" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "Anexar la plantilla al mensaje de correo electrónico" @@ -19614,7 +19711,7 @@ msgstr "Presione Enter para guardar" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19628,13 +19725,6 @@ msgstr "Vista Previa" msgid "Preview HTML" msgstr "Vista Previa HTML" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "Previsualizar imagen" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19663,7 +19753,7 @@ msgid "Preview:" msgstr "Vista Previa:" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19675,12 +19765,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "Anterior" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "Hash Anterior" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "Envío anterior" @@ -19726,19 +19811,19 @@ msgstr "La clave primaria del doctype {0} no puede modificarse, ya que existen v #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/success_action/success_action.js:58 #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/printing/page/print/print.js:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "Impresión" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Impresión" @@ -19756,8 +19841,8 @@ msgstr "Imprimir Documentos" #: frappe/core/workspace/build/build.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/page/print/print.js:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19808,7 +19893,7 @@ msgstr "Ayuda de formato de impresión" msgid "Print Format Type" msgstr "Tipo de formato de impresión" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19847,7 +19932,7 @@ msgstr "Impresión Oculta si no hay Valor" msgid "Print Language" msgstr "Lenguaje de impresión" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "¡La impresión ha sido enviada a la impresora!" @@ -19864,8 +19949,8 @@ msgstr "Servidor de Impresión" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "Ajustes de Impresión" @@ -19913,11 +19998,11 @@ msgstr "Imprimir Documento" msgid "Print with letterhead" msgstr "Imprimir con membrete" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "Impresora" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "Mapeo de impresora" @@ -19927,11 +20012,11 @@ msgstr "Mapeo de impresora" msgid "Printer Name" msgstr "Nombre de la Impresora" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "Configuración de la impresora" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "El mapeo de impresora no está establecido." @@ -19989,7 +20074,7 @@ msgstr "Protip: Agregar Reference: {{ reference_doctype }} {{ reference_na msgid "Proceed" msgstr "Proceder" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "Procede de todas maneras" @@ -20010,18 +20095,28 @@ msgstr "Prof" msgid "Profile" msgstr "Perfil" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Perfil actualizado con éxito." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "Progreso" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "Proyecto" #. Label of the property (Data) field in DocType 'Property Setter' -#: frappe/core/doctype/version/version_view.html:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: frappe/core/doctype/version/version_view.html:13 +#: frappe/core/doctype/version/version_view.html:38 +#: frappe/core/doctype/version/version_view.html:75 #: frappe/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "Propiedad" @@ -20058,7 +20153,7 @@ msgstr "Tipo de Inmueble" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -20107,24 +20202,18 @@ msgstr "" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "Publicar" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -20134,15 +20223,6 @@ msgstr "Publicar" msgid "Published" msgstr "Publicado" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "Publicado el" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "Publicado en" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json @@ -20232,7 +20312,9 @@ msgid "Put on Hold" msgstr "Poner en espera" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "Python" @@ -20244,9 +20326,9 @@ msgstr "Código QR" msgid "QR Code for Login Verification" msgstr "Código QR para la verificación de inicio de Sesión" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " -msgstr "Bandeja QZ fallida: " +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" +msgstr "Bandeja QZ fallida:" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' @@ -20295,7 +20377,7 @@ msgstr "Informe de Consultas" msgid "Query analysis complete. Check suggested indexes." msgstr "Análisis de consultas finalizado. Compruebe los índices sugeridos." -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "La consulta debe ser de tipo SELECT o WITH de sólo lectura." @@ -20395,7 +20477,7 @@ msgstr "Filtro de lista rápida" msgid "Quick Lists" msgstr "Listas rápidas" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "La Cotización debe estar entre 0 y 3" @@ -20432,12 +20514,6 @@ msgstr "Rango" msgid "Rate Limiting" msgstr "Limitando tasa" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "Límites de tasa" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20457,7 +20533,7 @@ msgstr "Clasificación" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "Comandos sin formato" @@ -20474,7 +20550,7 @@ msgstr "Correo electrónico sin procesar" msgid "Raw Printing" msgstr "Impresión en bruto" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "Configuración de Impresión sin formato" @@ -20491,8 +20567,8 @@ msgid "Re:" msgstr "Re:" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "Re: {0}" @@ -20548,11 +20624,6 @@ msgstr "Solo lectura Depende de (JS)" msgid "Read Only Mode" msgstr "Modo de solo lectura" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "Tiempo de lectura" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20568,7 +20639,7 @@ msgstr "Leído por el Destinatario en" msgid "Read mode" msgstr "Modo de lectura" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "Lea la documentación para saber más" @@ -20588,11 +20659,11 @@ msgstr "Tiempo real (SocketIO)" msgid "Reason" msgstr "Razón" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "Reconstruir" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "Reconstruir el árbol" @@ -20630,7 +20701,7 @@ msgstr "Parámetro del receptor" msgid "Recent years are easy to guess." msgstr "Años recientes son fáciles de adivinar." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "Recientes" @@ -20641,6 +20712,14 @@ msgstr "Recientes" msgid "Recipient" msgstr "Beneficiario" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20673,7 +20752,7 @@ msgstr "Registro del Índice sugerido" msgid "Records for following doctypes will be filtered" msgstr "Se filtrarán los registros de los siguientes doctypes" -#: frappe/core/doctype/doctype/doctype.py:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "Obtención recursiva desde" @@ -20690,6 +20769,11 @@ msgstr "Rojo" msgid "Redirect HTTP Status" msgstr "Estado de la redirección HTTP" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20784,6 +20868,11 @@ msgstr "Fecha de referencia" msgid "Reference Datetime" msgstr "Fecha de referencia" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20811,7 +20900,6 @@ msgstr "Referencia DocName" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20852,9 +20940,9 @@ msgstr "Referencia Nombre del documento" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20872,9 +20960,9 @@ msgstr "Referencia Nombre del documento" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20904,7 +20992,6 @@ msgstr "Tipo de Documento de Referencia" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -20952,15 +21039,15 @@ msgstr "Referencia: {0} {1}" msgid "Referrer" msgstr "Referente" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Actualizar" @@ -20974,6 +21061,10 @@ msgstr "Refrescar todo" msgid "Refresh Google Sheet" msgstr "Actualizar hoja de Google" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -20985,18 +21076,18 @@ msgstr "Actualizar hoja de Google" msgid "Refresh Token" msgstr "Actualizar Token" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "Refrescando" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "Refrescando..." -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "Registrado pero discapacitados" @@ -21173,7 +21264,7 @@ msgstr "Renombrar Nombre de Campo" msgid "Rename {0}" msgstr "Cambiar el nombre {0}" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "Archivos renombrados y código reemplazado en los controladores, por favor verifique!" @@ -21304,9 +21395,9 @@ msgstr "Responder a todos" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "Reporte" @@ -21376,11 +21467,11 @@ msgstr "Administrador de reportes" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "Nombre del reporte" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "Nombre del informe, Campo del informe y Fucnión son necesarios para crear un Widget numérico" @@ -21414,21 +21505,21 @@ msgstr "Vista de Reporte" msgid "Report bug" msgstr "Reportar error" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 msgid "Report cannot be set for Single types" msgstr "El reporte no se puede definir para un solo tipo" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 -#: frappe/desk/doctype/number_card/number_card.js:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "El informe no tiene datos, modifique los filtros o cambie el Nombre del informe" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 msgid "Report has no numeric fields, please change the Report Name" msgstr "El informe no tiene campos numéricos, cambie el nombre del informe" -#: frappe/public/js/frappe/views/reports/query_report.js:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "Informe iniciado, haga clic para ver el estado" @@ -21440,24 +21531,24 @@ msgstr "Límite de reportes alcanzado" msgid "Report timed out." msgstr "Se agotó el tiempo de espera para reportar." -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "Informe actualizado con éxito" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 msgid "Report was not saved (there were errors)" msgstr "El reporte no se pudo guardar (contiene errores)" -#: frappe/public/js/frappe/views/reports/query_report.js:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "El informe con más de 10 columnas se ve mejor en modo horizontal." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "Informe {0}" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "Informe {0} eliminado" @@ -21465,7 +21556,7 @@ msgstr "Informe {0} eliminado" msgid "Report {0} is disabled" msgstr "El reporte {0} está deshabilitado" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "Informe {0} guardado" @@ -21476,7 +21567,7 @@ msgstr "Informe:" #. Label of the prepared_report_section (Section Break) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "Informes" @@ -21484,7 +21575,7 @@ msgstr "Informes" msgid "Reports & Masters" msgstr "Informes y Maestros" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "Informes ya en cola" @@ -21503,7 +21594,10 @@ msgid "Request Body" msgstr "Body de la solicitud" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "Datos de Solicitud" @@ -21555,6 +21649,11 @@ msgstr "Tiempo de espera de la solicitud" msgid "Request URL" msgstr "URL de Solicitud" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21606,11 +21705,11 @@ msgstr "Restablecer gráfico" msgid "Reset Dashboard Customizations" msgstr "Restablecer personalizaciones del Tablero" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "Reestablecer campos" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "Restablecer la contraseña LDAP" @@ -21618,11 +21717,11 @@ msgstr "Restablecer la contraseña LDAP" msgid "Reset Layout" msgstr "Restablecer Disposición" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "Restablecer OTP Secret" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21657,7 +21756,7 @@ msgstr "Restablecer a valores por defecto" msgid "Reset sorting" msgstr "Restaurar orden" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "Restaurar valores" @@ -21695,6 +21794,7 @@ msgid "Resource TOS URI" msgstr "" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21704,11 +21804,6 @@ msgstr "" msgid "Response" msgstr "Respuesta" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "Respuesta " - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21767,7 +21862,7 @@ msgstr "Restringir a Domiñio" msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)" msgstr "Restringir el usuario a esta dirección IP. Todas las direcciones IP se pueden agregar separadas con comas, también se aceptan direcciones IP parciales como ( 111.111.111 )" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "Restricciones" @@ -21801,7 +21896,7 @@ msgstr "Vuelva a la pantalla Verificación e introduzca el código que muestra s msgid "Reverse Icon Color" msgstr "Revertir Color de Icono" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "Revertir la longitud a {0} para '{1}' en '{2}'. Establecer la longitud como {3} provocará el truncamiento de los datos." @@ -21819,9 +21914,7 @@ msgstr "Revocar" msgid "Revoked" msgstr "Revocado" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21862,6 +21955,7 @@ msgstr "Robots.txt" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21875,6 +21969,7 @@ msgstr "Robots.txt" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21913,7 +22008,7 @@ msgstr "Permiso para la función Página e Informe" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "Permisos de Rol" @@ -21923,7 +22018,7 @@ msgstr "Permisos de Rol" msgid "Role Permissions Manager" msgstr "Administrar permisos" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Administrar permisos" @@ -21966,6 +22061,7 @@ msgstr "Se ha establecido el rol según el tipo de usuario {0}" #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -21975,6 +22071,7 @@ msgstr "Se ha establecido el rol según el tipo de usuario {0}" #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -22011,7 +22108,7 @@ msgstr "Roles HTML" msgid "Roles can be set for users from their User page." msgstr "Los Roles pueden ser establecidos para los usuarios desde su página de Usuario." -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "Root {0} no se puede eliminar" @@ -22031,8 +22128,6 @@ msgstr "Método de Redondeo" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -22044,8 +22139,6 @@ msgstr "Método de Redondeo" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -22070,24 +22163,24 @@ msgstr "Redirecciones de ruta" msgid "Route: Example \"/app\"" msgstr "Ruta: Ejemplo \"/app\"" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "Línea" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "Fila #" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "Fila # {0}: El usuario no administrador no puede establecer el rol {1} al doctype personalizado" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "Fila #{0}:" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "Fila #{}: Nombre del campo es obligatorio" @@ -22096,11 +22189,6 @@ msgstr "Fila #{}: Nombre del campo es obligatorio" msgid "Row Format" msgstr "" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "Índice de Fila" - #. 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" @@ -22115,7 +22203,7 @@ msgstr "Nombre de fila" msgid "Row Number" msgstr "Número de fila" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "Valores de la Fila Cambiaron" @@ -22123,30 +22211,33 @@ msgstr "Valores de la Fila Cambiaron" msgid "Row {0}" msgstr "Fila {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "Fila {0}: No se permite deshabilitar Obligatorio para Campos Estándar" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "Fila {0}: No se permite activar 'Permitir al validar' para los campos estándar" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Added" msgstr "Filas Añadidas" #. Label of the rows_removed_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "Filas Eliminadas" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22237,7 +22328,7 @@ msgstr "Parámetros SMS" msgid "SMS Settings" msgstr "Ajustes de SMS" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "SMS enviado correctamente" @@ -22315,7 +22406,7 @@ msgstr "Fuerza de Ventas" msgid "Salutation" msgstr "Saludo." -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "El mismo Campo se ingresa más de una vez" @@ -22343,20 +22434,20 @@ msgstr "Sábado" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22365,16 +22456,12 @@ msgstr "Sábado" msgid "Save" msgstr "Guardar" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "Guardar secreto de API: {0}" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "Guardar de todos modos" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "Guardar como" @@ -22382,11 +22469,11 @@ msgstr "Guardar como" msgid "Save Customizations" msgstr "Guardar Personalización" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "Guardar reporte" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "Guardar Filtro" @@ -22411,7 +22498,7 @@ msgstr "Guardado" msgid "Saved Filters" msgstr "Filtros Guardados" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22490,7 +22577,7 @@ msgstr "Tipo de trabajo programado" msgid "Scheduled Jobs Logs" msgstr "Registro de Trabajos Programados" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "Se actualizó la ejecución programada de la secuencia de comandos {0}" @@ -22513,7 +22600,7 @@ msgstr "Programador" msgid "Scheduler Event" msgstr "Evento del programador" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "Programador inactivo" @@ -22526,7 +22613,7 @@ msgstr "Estado del planificador" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "El programador no puede ser reactivado cuando el modo de mantenimiento está activo." -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "El programador está inactivo. No se pueden importar datos." @@ -22658,7 +22745,7 @@ msgstr "Resultados de la búsqueda" msgid "Search by filename or extension" msgstr "Búsqueda por nombre de archivo o extensión" -#: frappe/core/doctype/doctype/doctype.py:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "campo de búsqueda {0} no es válido" @@ -22758,7 +22845,7 @@ msgstr "Configuración de seguridad" msgid "See all Activity" msgstr "Ver todas las actividades" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "Ver todos los reportes pasados." @@ -22767,7 +22854,7 @@ msgstr "Ver todos los reportes pasados." msgid "See on Website" msgstr "Ver en el sitio web" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "Ver respuestas anteriores" @@ -22814,7 +22901,7 @@ msgstr "Visto por la tabla" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22822,28 +22909,28 @@ msgstr "Seleccionar" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "Seleccionar Todo" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "Seleccione adjuntos" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "Seleccionar tabla secundaria" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 msgid "Select Column" msgstr "Seleccionar Columna" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "Seleccione columnas" @@ -22902,12 +22989,15 @@ msgstr "Seleccionar campo" msgid "Select Field..." msgstr "Seleccionar campo..." -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "Seleccionar campos" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "Seleccionar campos para insertar" @@ -22920,7 +23010,7 @@ msgstr "Seleccionar campos para actualizar" msgid "Select Filters" msgstr "Seleccionar filtros" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "Seleccione Google Calendar con el que se debe sincronizar el evento." @@ -22953,8 +23043,8 @@ msgstr "Selección Obligatoria" msgid "Select Module" msgstr "Seleccione Módulo" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "Seleccione Impresora de red" @@ -23019,14 +23109,14 @@ msgid "Select a field to edit its properties." msgstr "Seleccione un campo para editar sus propiedades." #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "Seleccione primero un nodo de grupo" +msgid "Select a group {0} first." +msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" msgstr "Seleccione un campo de remitente válido para crear documentos desde el correo electrónico" -#: frappe/core/doctype/doctype/doctype.py:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 msgid "Select a valid Subject field for creating documents from Email" msgstr "Seleccione un campo de asunto válido para crear documentos desde el correo electrónico" @@ -23056,13 +23146,13 @@ msgstr "Seleccionar al menos 1 registro para la impresión" msgid "Select atleast 2 actions" msgstr "Seleccione al menos 2 acciones" -#: frappe/public/js/frappe/list/list_view.js:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Seleccionar elemento de la lista" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Seleccionar múltiples elementos de la lista" @@ -23096,7 +23186,7 @@ msgstr "Seleccione dos versiones para ver la diferencia." msgid "Select {0}" msgstr "Seleccionar {0}" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "La auto aprobación no está permitida" @@ -23280,7 +23370,7 @@ msgstr "Correo electrónico del Remitente" msgid "Sender Email Field" msgstr "Campo Nombre del remitente" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "El campo del remitente debe tener opciones de correo electrónico" @@ -23374,7 +23464,7 @@ msgstr "Serie actualizada para {}" msgid "Series counter for {} updated to {} successfully" msgstr "Contador de Series para {} actualizado a {} exitosamente" -#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "Secuencia {0} ya utilizada en {1}" @@ -23384,7 +23474,7 @@ msgstr "Secuencia {0} ya utilizada en {1}" msgid "Server Action" msgstr "Acción del servidor" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Error del Servidor" @@ -23403,7 +23493,7 @@ msgstr "Servidor IP" msgid "Server Script" msgstr "Script del servidor" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "Los scripts de servidor están desactivados. Por favor, habilite los scripts de servidor desde la configuración de bench." @@ -23450,7 +23540,7 @@ msgstr "Valores predeterminados de sesión" msgid "Session Defaults Saved" msgstr "Valores predeterminados de sesión guardados" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "Sesión expirada" @@ -23459,14 +23549,14 @@ msgstr "Sesión expirada" msgid "Session Expiry (idle timeout)" msgstr "Expiración de la sesión (tiempo de inactivad)" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "El vencimiento de sesión debe estar en formato {0}" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "Establecer" @@ -23492,12 +23582,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\" msgstr "Establezca opciones predeterminadas para todos los gráficos en este Tablero (Ej.: \"colores\": [\"#d1d8dd\", \"#ff5858\"])" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "Establecer filtros dinámicos" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23508,7 +23598,7 @@ msgstr "Establecer filtros" msgid "Set Filters for {0}" msgstr "Establecer filtros para {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "Establecer Nivel" @@ -23562,7 +23652,7 @@ msgstr "Establecer cantidad" msgid "Set Role For" msgstr "Establecer Rol Para" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Establecer permisos de usuario" @@ -23572,16 +23662,16 @@ msgstr "Establecer permisos de usuario" msgid "Set Value" msgstr "Valor seleccionado." -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "Establecer todo privado" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "Establecer todo público" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "Establecer como Predeterminado" @@ -23600,18 +23690,21 @@ msgstr "Establecido por el usuario" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "Establezca aquí valores de filtro dinámicos en JavaScript para los campos obligatorios." -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "Ajuste de precisión no-estándar para los decimales o las monedas" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23727,14 +23820,9 @@ msgstr "Configuración de la Página Contáctenos" msgid "Settings for the About Us Page" msgstr "Configuración para la Página Acerca de Nosotros" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "Ajustes para controlar las categorías del blog y las interacciones como comentarios y me gusta" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "Configuración" @@ -23750,8 +23838,8 @@ msgstr "Configuración > Usuario" msgid "Setup > User Permissions" msgstr "Configurar > Permisos del Usuario" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "Configuración automática de correo electrónico" @@ -23820,11 +23908,6 @@ msgstr "Dirección de Envío" msgid "Shop" msgstr "Tienda" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "Nombre corto" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "patrones de teclado cortos son fáciles de adivinar" @@ -23844,11 +23927,6 @@ msgstr "Atajos" msgid "Show" msgstr "Mostrar" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "Mostrar \"Llamada a la acción\" en el blog" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23901,7 +23979,13 @@ msgstr "Mostrar documento" msgid "Show Error" msgstr "Mostrar error" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "Mostrar nombre de campo (clic para copiar en el portapapeles)" @@ -24029,7 +24113,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "Mostrar etiquetas" @@ -24046,7 +24130,7 @@ msgstr "Mostrar título" msgid "Show Title in Link Fields" msgstr "Mostrar Título en Campos de Enlace" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "Mostrar totales" @@ -24086,10 +24170,6 @@ msgstr "Mostrar todas las versiones" msgid "Show all activity" msgstr "Mostrar toda la actividad" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "Mostrar todos los blogs" - #. 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" @@ -24138,8 +24218,8 @@ msgstr "Mostrar enlace al documento" msgid "Show list" msgstr "Mostrar lista" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "Mostrar más detalles" @@ -24168,7 +24248,7 @@ msgstr "Mostrar título en la ventana del navegador como \"Prefijo - título\"" msgid "Show {0} List" msgstr "Mostrar Lista {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "Mostrando solo Campos Numéricos del Informe" @@ -24203,7 +24283,7 @@ msgstr "Barra lateral y Comentarios" msgid "Sign Up and Confirmation" msgstr "Registro y confirmación" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "El registro está desactivado" @@ -24240,36 +24320,36 @@ msgstr "Registro deshabilitado" msgid "Signups have been disabled for this website." msgstr "Se han desactivado las suscripciones para este sitio web." -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "Expresión simple de Python, ejemplo: estado en (\"Cerrado\", \"Cancelado\")" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" -msgstr "Expresión simple de Python, ejemplo: estado en (\"No válido\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" -msgstr "Expresión Python simple, Ejemplo: estado == 'Abierto' y tipo == 'Error'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" +msgstr "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "Sesiones simultáneas" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "Los DocTypes individuales no se pueden personalizar." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Los campos únicos, solo tienen un registro y no tienen tablas asociadas, los valores serán guardados en una columna aislada." @@ -24277,7 +24357,7 @@ msgstr "Los campos únicos, solo tienen un registro y no tienen tablas asociadas msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "El sitio está funcionando en modo de sólo lectura por mantenimiento o actualización del sitio, esta acción no puede realizarse en este momento. Por favor, inténtelo de nuevo más tarde." -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "Tamaño" @@ -24496,11 +24576,11 @@ msgstr "Algo salió mal durante la generación de tokens. Haga clic en {0} para msgid "Something went wrong." msgstr "Algo salió mal." -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 msgid "Sorry! I could not find what you were looking for." msgstr "Lamentablemente, no se puede encontrar lo que estaba buscando." -#: frappe/public/js/frappe/views/pageview.js:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "Lamentablemente, usted no está autorizado para ver esta página." @@ -24531,20 +24611,23 @@ msgstr "Opciones de clasificación" msgid "Sort Order" msgstr "Ordenar por" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 msgid "Sort field {0} must be a valid fieldname" msgstr "Campo de orden {0} debe ser un nombre de campo válido" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' -#: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "Referencia" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24571,6 +24654,12 @@ msgstr "Correo no deseado" msgid "SparkPost" msgstr "SparkPost" +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "Caracteres especiales no están permitidos" @@ -24595,8 +24684,8 @@ msgstr "Especifique los dominios u orígenes que tienen permiso para insertar es msgid "Splash Image" msgstr "Imagen de bienvenida" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "Sr" @@ -24628,11 +24717,11 @@ msgstr "Stack Trace" msgid "Standard" msgstr "Estándar" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "No se puede eliminar DocType estándar." -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "Standard DocType no puede tener el formato de impresión predeterminado, use Customize Form" @@ -24644,7 +24733,7 @@ msgstr "Estándar no establecido" msgid "Standard Permissions" msgstr "Permisos estándares" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "El formato de impresión estándar no se puede actualizar" @@ -24652,11 +24741,11 @@ msgstr "El formato de impresión estándar no se puede actualizar" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "El estilo de impresión estándar no se puede cambiar. Duplicar por favor para corregir." -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "Los informes estándar no se pueden eliminar" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "Los informes estándar no se pueden editar" @@ -24688,8 +24777,8 @@ msgstr "El tipo de usuario estándar {0} no puede borrarse." #: frappe/core/doctype/recorder/recorder_list.js:87 #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45 -#: frappe/printing/page/print/print.js:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "Iniciar" @@ -24697,7 +24786,7 @@ msgstr "Iniciar" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24762,6 +24851,7 @@ msgstr "Iniciar el" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24770,7 +24860,7 @@ msgstr "Iniciar el" msgid "State" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "Propiedades de Estado" @@ -24826,6 +24916,7 @@ msgstr "Intervalo de tiempo de estadísticas" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24850,6 +24941,7 @@ msgstr "Intervalo de tiempo de estadísticas" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24857,8 +24949,8 @@ msgstr "Intervalo de tiempo de estadísticas" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24895,7 +24987,7 @@ msgstr "Pasos para verificar su inicio de sesión" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24925,6 +25017,10 @@ msgstr "Uso de almacenamiento por tabla" msgid "Store Attached PDF Document" msgstr "Almacenar documento PDF adjunto" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +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." @@ -25003,7 +25099,7 @@ msgstr "Sub-dominio" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -25019,7 +25115,7 @@ msgstr "Asunto" msgid "Subject Field" msgstr "Campo de Asunto" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "El tipo de campo de asunto debe ser Datos, Texto, Texto largo, Texto pequeño, Editor de texto" @@ -25033,6 +25129,7 @@ msgstr "Cola de envío" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -25041,10 +25138,11 @@ msgstr "Cola de envío" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "Validar" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Validar" @@ -25054,7 +25152,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Validar" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Validar" @@ -25078,7 +25176,7 @@ msgstr "Validar después de importar" msgid "Submit an Issue" msgstr "Enviar un Problema" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "Enviar otra respuesta" @@ -25090,7 +25188,7 @@ msgstr "Etiqueta del botón Validar" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "Validar al crear" @@ -25102,7 +25200,7 @@ msgstr "Valide este documento para completar este paso." msgid "Submit this document to confirm" msgstr "Valide este documento para confirmar" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "¿Validar {0} documentos?" @@ -25111,11 +25209,11 @@ msgstr "¿Validar {0} documentos?" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "Validado" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "El documento validado no puede convertirse de nuevo en borrador. Línea de transición {0}" @@ -25138,9 +25236,7 @@ msgid "Subsidiary" msgstr "Subsidiaria" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "Subtitular" @@ -25154,7 +25250,7 @@ msgstr "Subtitular" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25196,20 +25292,16 @@ msgstr "Mensaje de \"éxito\"" msgid "Success title" msgstr "Título de \"éxito\"" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "¡Éxito! La nueva contraseña es correcta 👍" - #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" msgstr "Recuento de trabajos exitosos" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "Transacciones exitosas" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "Terminado: {0} a {1}" @@ -25251,7 +25343,7 @@ msgstr "Sugerir optimizaciones" msgid "Suggested Indexes" msgstr "Índices sugeridos" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "Nombre de usuario sugerido: {0}" @@ -25373,7 +25465,7 @@ msgstr "Sincronización" msgid "Syncing {0} of {1}" msgstr "Sincronizando {0} de {1}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "Error de sintaxis" @@ -25496,6 +25588,7 @@ msgstr "Registros del sistema" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25578,6 +25671,7 @@ msgstr "Registros del sistema" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" msgstr "Administrador del sistema" @@ -25651,7 +25745,7 @@ msgstr "Tabla" msgid "Table Break" msgstr "Salto de Tabla" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "Campo de Tabla" @@ -25660,7 +25754,7 @@ msgstr "Campo de Tabla" msgid "Table Fieldname" msgstr "Nombre del Campo de Tabla" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "Falta Nombre del Campo de Tabla" @@ -25682,11 +25776,11 @@ msgstr "Tabla Multi-selección" msgid "Table Trimmed" msgstr "Tabla recortada" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "Tabla actualiza" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 msgid "Table {0} cannot be empty" msgstr "La tabla {0} no puede estar vacía" @@ -25728,11 +25822,18 @@ msgstr "Tomar Foto" msgid "Target" msgstr "Objetivo" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "Tarea" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "Tareas" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25794,7 +25895,7 @@ msgstr "Advertencias de plantilla" msgid "Templates" msgstr "Plantillas" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "Desactivado temporalmente" @@ -25868,7 +25969,7 @@ msgstr "Gracias por ponerse en contacto con nosotros. Nos pondremos en contacto "Su consulta:\n\n" "{0}" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "Gracias por tomarse el tiempo para llenar este formulario" @@ -25892,7 +25993,7 @@ msgstr "Gracias" msgid "The Auto Repeat for this document has been disabled." msgstr "La repetición automática para este documento ha sido deshabilitada." -#: frappe/public/js/frappe/form/grid.js:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "El formato CSV es sensible a mayúsculas y minúsculas" @@ -25905,15 +26006,15 @@ msgstr "El ID de cliente obtenido de la Consola de Google Cloud en " -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "La Condición '{0}' no es válida" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "La URL del archivo que ha introducido es incorrecta" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." msgstr "" @@ -25956,7 +26057,7 @@ msgstr "Los cambios han sido revertidos." msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "La columna {0} tiene {1} diferentes formatos de fecha. Configuración automática de {2} como formato predeterminado, ya que es el más común. Cambie otros valores en esta columna a este formato." -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "El comentario no puede estar vacío" @@ -25964,7 +26065,7 @@ msgstr "El comentario no puede estar vacío" msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone." msgstr "El contenido de este correo electrónico es estrictamente confidencial. Por favor, no reenvíe este correo electrónico a nadie." -#: frappe/public/js/frappe/list/list_view.js:658 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "El recuento mostrado es un recuento estimado. Pulse aquí para ver el recuento exacto." @@ -25994,7 +26095,7 @@ msgstr "El tipo de documento seleccionado es una tabla hija, por lo que se requi msgid "The field {0} is mandatory" msgstr "El campo {0} es obligatorio" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "El nombre de campo que ha especificado en Attached To Field no es válido" @@ -26066,15 +26167,19 @@ msgstr "El número de proyecto obtenido de Google Cloud Console en " -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

Click here to download:
{0}

This link will expire in {1} hours." +msgstr "" + +#: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" msgstr "El enlace para restablecer la contraseña ha caducado" -#: frappe/core/doctype/user/user.py:995 +#: frappe/core/doctype/user/user.py:1002 msgid "The reset password link has either been used before or is invalid" msgstr "El enlace para restablecer la contraseña ya se ha utilizado antes o no es válido" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "El recurso que está buscando no está disponible" @@ -26086,7 +26191,7 @@ msgstr "El Rol {0} debe ser un Rol personalizado." msgid "The selected document {0} is not a {1}." msgstr "El documento seleccionado {0} no es un {1}." -#: frappe/utils/response.py:338 +#: frappe/utils/response.py:336 msgid "The system is being updated. Please refresh again after a few moments." msgstr "El sistema se está actualizando. Por favor, actualice de nuevo después de unos momentos." @@ -26107,7 +26212,7 @@ msgstr "El valor que ha pegado tiene {0} caracteres. El máximo de caracteres pe msgid "The webhook will be triggered if this expression is true" msgstr "El webhook se activará si esta expresión es verdadera" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "El {0} ya está en repetición automática {1}" @@ -26147,16 +26252,16 @@ msgstr "No hay próximos eventos para usted." msgid "There are no {0} for this {1}, why don't you start one!" msgstr "No hay {0} para este {1}, ¿Por qué no empiezas uno?" -#: frappe/public/js/frappe/views/reports/query_report.js:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "Ya hay {0} con los mismos filtros en la cola:" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "Sólo puede haber 9 campos de salto de página en un formulario web" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "Sólo puede haber un plegado en un formulario" @@ -26168,15 +26273,19 @@ msgstr "Hay un error en su plantilla de dirección {0}" msgid "There is no data to be exported" msgstr "No hay datos para exportar" +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "No hay nada nuevo que mostrarle en este momento." -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "Hay un poco de problema con la url del archivo: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "Ya hay {0} con los mismos filtros en la cola:" @@ -26188,7 +26297,7 @@ msgstr "Debe haber al menos una regla de permiso." msgid "There was an error building this page" msgstr "Se produjo un error al crear esta página." -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "Hubo un error al guardar los filtros" @@ -26200,11 +26309,11 @@ msgstr "Hubo errores" msgid "There were errors while creating the document. Please try again." msgstr "Hubo errores al crear el documento. Inténtalo de nuevo." -#: frappe/public/js/frappe/views/communication.js:840 +#: frappe/public/js/frappe/views/communication.js:843 msgid "There were errors while sending email. Please try again." msgstr "Ha ocurrido un error al enviar el correo electrónico. Por favor, inténtelo de nuevo." -#: frappe/model/naming.py:494 +#: frappe/model/naming.py:502 msgid "There were some errors setting the name, please contact the administrator" msgstr "Existen algunos errores al configurar el nombre, por favor póngase en contacto con el administrador" @@ -26245,7 +26354,7 @@ msgstr "Autenticación por otros medios" msgid "This Currency is disabled. Enable to use in transactions" msgstr "Esta divisa está deshabilitada. Debe habilitarla para utilizarla en las transacciones" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "Este tablero Kanban será privado" @@ -26253,6 +26362,10 @@ msgstr "Este tablero Kanban será privado" msgid "This Month" msgstr "Este mes" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "Este trimestre" @@ -26278,6 +26391,11 @@ msgstr "Esta acción solo está permitida para {}" msgid "This cannot be undone" msgstr "Esto no se puede deshacer" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +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" @@ -26292,11 +26410,11 @@ msgstr "Este gráfico estará disponible para todos los usuarios si está config msgid "This doctype has no orphan fields to trim" msgstr "Este doctype no tiene campos huérfanos que recortar" -#: frappe/core/doctype/doctype/doctype.py:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "Este doctype tiene migraciones pendientes, ejecute 'bench migrate' antes de modificar el doctype para evitar perder los cambios." -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "Este documento no puede ser borrado en este momento, ya que está siendo modificado por otro usuario. Por favor, inténtelo de nuevo pasado un tiempo." @@ -26342,7 +26460,7 @@ msgstr "Este campo sólo aparecerá si el nombre de campo definido aquí tiene v "eval:doc.myfield=='Mi valor'\n" "eval:doc.age>18" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26358,7 +26476,7 @@ msgstr "Este archivo es público. Se puede acceder a él sin autenticación." msgid "This form has been modified after you have loaded it" msgstr "Este formulario se ha modificado después de haber cargado" -#: frappe/public/js/frappe/form/form.js:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "Este formulario no es editable debido a un flujo de trabajo." @@ -26377,7 +26495,7 @@ msgstr "Este proveedor de geolocalización aún no es compatible." msgid "This goes above the slideshow." msgstr "Esto va encima de la presentación de diapositivas." -#: frappe/public/js/frappe/views/reports/query_report.js:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "Esto es un reporte predeterminado. Por favor seleccione los filtros apropiados y genere uno nuevo." @@ -26401,12 +26519,6 @@ msgstr "Se trata de un doctype virtual y los datos se borran periódicamente." msgid "This is an automatically generated reply" msgstr "Esta es una respuesta generada automáticamente." -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "Este es un ejemplo de vista previa de SERP de Google." - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "Esto es similar a una contraseña de uso común." @@ -26425,7 +26537,7 @@ msgstr "Este enlace ya se ha activado para la verificación." msgid "This link is invalid or expired. Please make sure you have pasted correctly." msgstr "Este enlace no es válido o ha expirado. Por favor, asegúrate de que lo has pegado correctamente." -#: frappe/printing/page/print/print.js:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "Esto puede imprimirse en varias páginas." @@ -26433,7 +26545,7 @@ msgstr "Esto puede imprimirse en varias páginas." msgid "This month" msgstr "Este mes" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "Este informe contiene {0} filas y es demasiado grande para mostrarse en el navegador, puede {1} este informe en su lugar." @@ -26441,7 +26553,7 @@ msgstr "Este informe contiene {0} filas y es demasiado grande para mostrarse en msgid "This report was generated on {0}" msgstr "Este informe fue generado el {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "Este reporte fue generado {0}." @@ -26472,7 +26584,7 @@ msgstr "Este valor se obtiene del campo {1} de {0}" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " +msgid "This value specifies the max number of rows that can be rendered in report view." msgstr "" #: frappe/website/doctype/web_page/web_page.js:85 @@ -26504,10 +26616,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "Esto restablecerá este tour y lo mostrará a todos los usuarios. ¿Está seguro?" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " -msgstr "Esto terminará el trabajo inmediatamente y podría ser peligroso, ¿está seguro? " +msgid "This will terminate the job immediately and might be dangerous, are you sure?" +msgstr "Esto terminará el trabajo inmediatamente y podría ser peligroso, ¿está seguro?" -#: frappe/core/doctype/user/user.py:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "Limitar" @@ -26583,9 +26695,11 @@ msgstr "Ventana de tiempo (segundos)" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26656,11 +26770,11 @@ msgstr "Enlaces de línea de tiempo" msgid "Timeline Name" msgstr "Nombre de la línea de tiempo" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 msgid "Timeline field must be a Link or Dynamic Link" msgstr "El campo de línea de tiempo debe ser un vínculo o enlace dinámico" -#: frappe/core/doctype/doctype/doctype.py:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "El campo de línea de tiempo debe ser un nombre de campo válido" @@ -26686,10 +26800,7 @@ msgid "Timespan" msgstr "Espacio de tiempo" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "Marca de tiempo" @@ -26709,9 +26820,6 @@ msgstr "" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26736,9 +26844,6 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26761,7 +26866,7 @@ msgstr "Campo de título" msgid "Title Prefix" msgstr "Prefijo de título" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "El campo del título debe ser un nombre válido" @@ -26861,7 +26966,7 @@ msgstr "Para exportar este paso como JSON, vincúlelo en un documento de tutoria msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "Para obtener el reporte actualizado, hacer clic en {0}." @@ -26916,7 +27021,7 @@ msgstr "Tareas" msgid "Today" msgstr "Hoy" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "Alternar Gráfico" @@ -26932,11 +27037,11 @@ msgstr "Alternar Vista de Cuadrícula" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "Alternar Barra Lateral" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Alternar Barra Lateral" @@ -26982,7 +27087,7 @@ msgid "Tomorrow" msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "Demasiados Documentos" @@ -26998,7 +27103,7 @@ msgstr "Demasiados cambios en la base de datos en una sola acción." msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "Hay demasiados usuarios se inscribieron recientemente, por lo que el registro está desactivado. Por favor, intente volver en una hora" @@ -27060,10 +27165,10 @@ msgstr "Parte superior derecha" msgid "Topic" msgstr "Tema" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "Total" @@ -27106,18 +27211,18 @@ msgstr "Tiempo Total de Trabajo" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " -msgstr "Número total de mensajes de correo electrónico para sincronizar en el proceso de sincronización inicial " +msgid "Total number of emails to sync in initial sync process" +msgstr "Número total de mensajes de correo electrónico para sincronizar en el proceso de sincronización inicial" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "Monto:" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "Totales" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "Fila de Totales" @@ -27185,26 +27290,10 @@ msgstr "Seguimiento de los hitos de cualquier documento" msgid "Tracking" msgstr "Seguimiento" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "URL de seguimiento generada y copiada en el portapapeles" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "Hash de Transacción" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "Registro de Transacciones" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "Informe de Registro de Transacciones" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "Transgénero" @@ -27218,6 +27307,11 @@ msgstr "Propiedades de la transición" msgid "Transition Rules" msgstr "Reglas de Transición" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" @@ -27232,7 +27326,7 @@ msgstr "Transiciones" msgid "Translatable" msgstr "Traducible" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27243,7 +27337,7 @@ msgstr "" msgid "Translate Link Fields" msgstr "Traducir Campos de Enlace" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "Traducir valores" @@ -27327,8 +27421,8 @@ msgstr "Inténtelo de nuevo" msgid "Try a Naming Series" msgstr "Pruebe una serie de nombres" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "Pruebe el nuevo Diseñador de impresión" @@ -27394,7 +27488,7 @@ msgstr "Método de autenticación de dos factores" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27488,7 +27582,7 @@ msgstr "URL" msgid "URL for documentation or help" msgstr "URL para documentación o ayuda" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "La URL debe comenzar con http:// o https://" @@ -27591,7 +27685,7 @@ msgstr "No se puede enviar el correo porque falta una cuenta de correo electrón msgid "Unable to update event" msgstr "No se puede actualizar evento" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "Incapaz de escribir el formato de archivo para {0}" @@ -27600,7 +27694,7 @@ msgstr "Incapaz de escribir el formato de archivo para {0}" msgid "Unassign Condition" msgstr "Desasignar condición" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "Excepción no controlada" @@ -27616,7 +27710,7 @@ msgstr "Deshacer" msgid "Undo last action" msgstr "Deshacer última acción" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27663,7 +27757,7 @@ msgstr "Columna desconocida: {0}" msgid "Unknown Rounding Method: {}" msgstr "Método de Redondeo desconocido: {}" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "Usuario Desconocido" @@ -27675,8 +27769,7 @@ msgstr "Codificación de archivo desconocida. Intentado utilizar: {0}" msgid "Unlock Reference Document" msgstr "Desbloquear el documento de referencia" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "Despublicar" @@ -27692,7 +27785,7 @@ msgstr "No leído" msgid "Unread Notification Sent" msgstr "Envíar una notificación al no ser leído" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "Consulta SQL insegura" @@ -27730,8 +27823,8 @@ msgstr "" msgid "Unsubscribed" msgstr "No suscrito" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27751,7 +27844,7 @@ msgstr "Archivos descomprimidos {0}" msgid "Unzipping files..." msgstr "Descomprimiendo archivos..." -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "Eventos para hoy" @@ -27765,7 +27858,7 @@ msgstr "Eventos para hoy" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Actualizar" @@ -27799,6 +27892,11 @@ msgstr "Actualizar orden" msgid "Update Password" msgstr "Actualizar contraseña" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27841,7 +27939,7 @@ msgstr "Actualizar {0} registros" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "Actualizado" @@ -27849,7 +27947,7 @@ msgstr "Actualizado" msgid "Updated Successfully" msgstr "Actualizado exitosamente" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "Actualizado a una nueva versión 🎉" @@ -27857,7 +27955,7 @@ msgstr "Actualizado a una nueva versión 🎉" msgid "Updated successfully" msgstr "Actualizado exitosamente" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "Actualización" @@ -27902,8 +28000,8 @@ msgstr "" msgid "Upgrade your support experience with Frappe Helpdesk" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27913,11 +28011,11 @@ msgstr "Subir" msgid "Upload Image" msgstr "Cargar Imagen" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "Cargar archivo" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "Cargar archivos {0}" @@ -28014,15 +28112,11 @@ msgstr "Utilice un correo electrónico diferente" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "El uso de la función {0} en el campo está restringido" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "El uso de la sub-query o función está restringido" -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "Usar el nuevo Diseñador de formatos de impresión" @@ -28043,7 +28137,9 @@ msgid "Used OAuth" msgstr "Se usó OAuth" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -28052,6 +28148,7 @@ msgstr "Se usó OAuth" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -28066,11 +28163,12 @@ msgstr "Se usó OAuth" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -28079,6 +28177,7 @@ msgstr "Se usó OAuth" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -28095,17 +28194,11 @@ msgstr "Se usó OAuth" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "Usuario" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "Usuario " - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "El Usuario '{0}' ya tiene el rol '{1}'" @@ -28135,7 +28228,7 @@ msgstr "El usuario no puede crear" msgid "User Cannot Search" msgstr "El usuario no puede buscar" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "Usuario modificado" @@ -28199,11 +28292,6 @@ msgstr "ID de usuario" msgid "User ID Property" msgstr "Propiedad de ID de usuario" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "ID de usuario de un blogger" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28223,6 +28311,11 @@ msgstr "Campo Id de Usuario es obligatorio en el tipo de usuario {0}" msgid "User Image" msgstr "Imagen de Usuario" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "Menú de usuario" @@ -28241,12 +28334,12 @@ msgstr "Permiso de Usuario" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "Permisos de Usuario" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Permisos de Usuario" @@ -28259,7 +28352,9 @@ msgstr "Los permisos de usuario se utilizan para limitar el acceso de los usuari msgid "User Permissions created successfully" msgstr "Permisos de usuario creados correctamente" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "Rol del Usuario" @@ -28325,6 +28420,10 @@ msgstr "El usuario no existe." msgid "User does not have permission to create the new {0}" msgstr "El usuario no tiene permiso para crear el nuevo {0}" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "El usuario es obligatorio para compartir" @@ -28355,7 +28454,7 @@ msgstr "El usuario {0} no se puede eliminar" msgid "User {0} cannot be disabled" msgstr "El usuario {0} no se puede deshabilitar" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "El usuario {0} no puede ser renombrado" @@ -28376,7 +28475,7 @@ msgstr "El usuario {0} no tiene permiso para crear un espacio de trabajo." msgid "User {0} has requested for data deletion" msgstr "El usuario {0} ha solicitado la eliminación de datos" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "Usuario {0} suplantado como {1}" @@ -28384,7 +28483,7 @@ msgstr "Usuario {0} suplantado como {1}" msgid "User {0} is disabled" msgstr "El usuario {0} está deshabilitado" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "Usuario {0} está deshabilitado. Por favor, póngase en contacto con su administrador del sistema." @@ -28405,7 +28504,7 @@ msgstr "URI de Información de Usuario" msgid "Username" msgstr "Nombre de usuario" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "Nombre de usuario {0} ya existe" @@ -28489,7 +28588,7 @@ msgstr "Validar la configuración de Frappe Mail" msgid "Validate SSL Certificate" msgstr "Validar certificado SSL" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "Error de validacion" @@ -28512,8 +28611,8 @@ msgstr "Validez" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28545,7 +28644,7 @@ msgstr "Valor Cambiado" msgid "Value To Be Set" msgstr "Valor a Establecer" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "El valor no puede ser cambiado para {0}" @@ -28561,11 +28660,11 @@ msgstr "El valor no puede ser negativo para {0}: {1}" msgid "Value for a check field can be either 0 or 1" msgstr "Valor para un campo de verificación puede ser 0 o 1" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "El valor del campo {0} es demasiado largo en {1}. La longitud debe ser inferior a {2} caracteres" -#: frappe/model/base_document.py:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "Valor para {0} no puede ser una lista" @@ -28590,7 +28689,7 @@ msgstr "" msgid "Value to Validate" msgstr "Valor para validar" -#: frappe/model/base_document.py:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "Valor demasiado grande" @@ -28607,7 +28706,7 @@ msgstr "El valor {0} debe tener un formato de duración válido: dhms" msgid "Value {0} must in {1} format" msgstr "El valor {0} debe tener el formato {1}" -#: frappe/core/doctype/version/version_view.html:8 +#: frappe/core/doctype/version/version_view.html:9 msgid "Values Changed" msgstr "Valores Cambiados" @@ -28620,7 +28719,7 @@ msgstr "Verdana" msgid "Verification" msgstr "Verificación" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "Código de Verificación" @@ -28682,15 +28781,7 @@ msgstr "Ver Todo" msgid "View Audit Trail" msgstr "Ver registros de auditoría" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "Ver la entrada del blog" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "Ver comentario" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "Ver permisos del doctype" @@ -28702,7 +28793,7 @@ msgstr "Ver Archivo" msgid "View Full Log" msgstr "Ver Registro completo" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "Ver Lista" @@ -28712,7 +28803,7 @@ msgstr "Ver Lista" msgid "View Log" msgstr "Ver registro" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Ver Documentos Permitidos" @@ -28759,7 +28850,7 @@ msgstr "Ver informe en su navegador" msgid "View this in your browser" msgstr "Ver esto en su navegador" -#: frappe/public/js/frappe/web_form/web_form.js:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "Ver tu respuesta" @@ -28828,6 +28919,7 @@ msgid "Warehouse" msgstr "Almacén" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Advertencia" @@ -28836,7 +28928,7 @@ msgstr "Advertencia" msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" msgstr "Advertencia: ¡PÉRDIDA DE DATOS INMINENTE! Al continuar, se eliminarán permanentemente las siguientes columnas de la base de datos del tipo de documento {0}:" -#: frappe/core/doctype/doctype/doctype.py:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "Advertencia: El formato de nombrado no esta establecido" @@ -28922,7 +29014,7 @@ msgstr "Página Web" msgid "Web Page Block" msgstr "Bloque de página web" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "URL de Página Web" @@ -29025,7 +29117,7 @@ msgstr "URL de Webhook" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "Sitio Web" @@ -29038,10 +29130,6 @@ msgstr "Análisis de sitios web" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -29085,7 +29173,7 @@ msgstr "Script del Sitio Web" msgid "Website Search Field" msgstr "Campo de búsqueda del sitio web" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "El campo de búsqueda del sitio web debe ser un nombre de campo válido" @@ -29302,11 +29390,6 @@ msgstr "Filtro comodín" msgid "Will add \"%\" before and after the query" msgstr "Agregará \"%\" antes y después de la consulta" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "Se utilizará en la url (generalmente el primer nombre)." - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "Será su ID de inicio de sesión" @@ -29321,7 +29404,7 @@ msgstr "sólo se mostrará si se habilitan los títulos de sección" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "Con Membrete" @@ -29399,7 +29482,7 @@ msgstr "Workflow Builder le permite crear flujos de trabajo de forma visual. Pue msgid "Workflow Data" msgstr "Datos del flujo de trabajo" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "Detalles del flujo de trabajo" @@ -29425,11 +29508,11 @@ msgstr "Estados de flujos de trabajo" msgid "Workflow State Field" msgstr "Campo del Estado del Flujo de Trabajo" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "Estado de Flujo de Trabajo no configurado" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "No se permite la transición del estado del flujo de trabajo de {0} a {1}" @@ -29437,15 +29520,30 @@ msgstr "No se permite la transición del estado del flujo de trabajo de {0} a {1 msgid "Workflow States Don't Exist" msgstr "Los estados del flujo de trabajo no existen" -#: frappe/model/workflow.py:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "Estado del flujo de trabajo" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "La transición del Flujo de Trabajo" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29461,13 +29559,13 @@ msgstr "Flujo de trabajo actualizado correctamente" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "Área de Trabajo" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "El Área de Trabajo {0} no existe" @@ -29537,11 +29635,11 @@ msgstr "Espacio de trabajo {0} creado" msgid "Workspaces" msgstr "Áreas de Trabajo" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "" @@ -29560,11 +29658,11 @@ msgstr "Terminando" msgid "Write" msgstr "Escribir" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "Valor incorrecto de recuperación" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "Campo Eje X" @@ -29583,13 +29681,13 @@ msgstr "XLSX" msgid "Y Axis" msgstr "Eje Y" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" msgstr "Campos del eje Y" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "Campo Y" @@ -29641,16 +29739,17 @@ msgstr "Amarillo" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Si" @@ -29678,6 +29777,18 @@ msgstr "Usted" msgid "You Liked" msgstr "Te gustó" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "Estás conectado a internet." @@ -29716,20 +29827,20 @@ msgstr "No tiene permiso para editar el informe." #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "No está permitido exportar {} doctype" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "Usted no está autorizado a imprimir este informe" -#: frappe/public/js/frappe/views/communication.js:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "No tiene permisos para enviar correos electrónicos relacionados con este documento" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "Usted no está autorizado para modificar este formulario web" @@ -29753,7 +29864,7 @@ msgstr "" msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "Ahora estás siguiendo este documento. Recibirá actualizaciones diarias por correo electrónico. Puede cambiar esto en la Configuración de usuario." -#: frappe/core/doctype/installed_applications/installed_applications.py:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 msgid "You are only allowed to update order, do not remove or add apps." msgstr "Solo se le permite actualizar el pedido, no eliminar ni añadir aplicaciones." @@ -29779,13 +29890,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "También puede copiar y pegar el siguiente enlace en su navegador" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " -msgstr "También puedes copiar y pegar esto " +msgid "You can also copy-paste this" +msgstr "También puedes copiar y pegar esto" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "También puedes copiar y pegar este {0} en tu navegador" +#: frappe/templates/emails/user_invitation_expired.html:8 +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 "Puede cambiar los documentos validados cancelándolos y luego modificándolos." @@ -29798,11 +29913,11 @@ msgstr "Puedes cambiar la política de retención de {0}." msgid "You can continue with the onboarding after exploring this page" msgstr "Puede continuar con el tutorial después de explorar esta página" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "Puede desactivar este {0} en lugar de borrarlo." -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "Puede aumentar el límite desde Ajustes del sistema." @@ -29822,7 +29937,7 @@ msgstr "Solo puedes imprimir hasta {0} documentos a la vez" msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "Solo puede configurar los 3 tipos de documentos personalizados en la tabla Tipos de documentos." -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "Solo puedes cargar archivos JPG, PNG, PDF, TXT, CSV o documentos de Microsoft." @@ -29840,7 +29955,7 @@ msgstr "Puede seleccionar uno de los siguientes:" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "Puede establecer un valor alto aquí si varios usuarios iniciarán sesión desde la misma red." -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "Puede intentar cambiar los filtros de su informe." @@ -29852,11 +29967,11 @@ msgstr "Puede utilizar Formularios Personalizados para establecer niveles en cam msgid "You can use wildcard %" msgstr "Puede usar % como comodín" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "No puedes establecer 'Opciones' para el campo {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "No puedes establecer 'Traducible' para el campo {0}" @@ -29874,7 +29989,7 @@ msgstr "Cancelaste este documento {1}" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "No puede crear un gráfico de tablero a partir de DocTypes individuales" -#: frappe/custom/doctype/customize_form/customize_form.py:385 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "No se puede desmarcar 'solo lectura' para el campo {0}" @@ -29904,7 +30019,7 @@ msgstr "Usted ha cambiado {0} a {1}" msgid "You created this" msgstr "Usted creó este" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "" @@ -29917,15 +30032,15 @@ msgstr "No tienes permisos de lectura o selección para {}" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "Usted no tiene permisos suficientes para acceder a este apartado. Por favor, póngase en contacto con su administrador para obtener acceso." -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "Usted no tiene suficientes permisos para completar la acción" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "No tienes permiso para acceder a {0}: {1}." @@ -29937,11 +30052,11 @@ msgstr "No tiene permisos para cancelar todos los documentos vinculados." msgid "You don't have access to Report: {0}" msgstr "Usted no tiene acceso al Reporte: {0}" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "No tienes permiso para acceder al DocType {0} ." -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "Usted no tiene permiso para acceder a este archivo" @@ -29949,19 +30064,19 @@ msgstr "Usted no tiene permiso para acceder a este archivo" msgid "You don't have permission to get a report on: {0}" msgstr "Usted no tiene permiso para obtener un informe sobre: {0}" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "Usted no está autorizado para acceder a este documento" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " -msgstr "Tienes un nuevo mensaje de: " +msgid "You have a new message from:" +msgstr "Tienes un nuevo mensaje de:" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "Ha sido desconectado exitosamente" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "Ha alcanzado el límite de tamaño de fila en la tabla de la base de datos: {0}" @@ -29969,11 +30084,7 @@ msgstr "Ha alcanzado el límite de tamaño de fila en la tabla de la base de dat msgid "You have not entered a value. The field will be set to empty." msgstr "No has introducido ningún valor. El campo quedará vacío." -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "Ha recibido un ❤️ me gusta en su entrada de blog" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "Tienes que habilitar Auth de Dos Factores en Configuración del Sistema." @@ -29993,7 +30104,7 @@ msgstr "No has visto a {0}" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "Aún no ha añadido ningún Tablero de datos o ningún Widget numérico." -#: frappe/public/js/frappe/list/list_view.js:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "Aún no ha creado un {0}" @@ -30010,11 +30121,11 @@ msgstr "Usted editó esto por última vez" msgid "You must add atleast one link." msgstr "Debe añadir al menos un enlace." -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "Debe iniciar sesión para utilizar este formulario." -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "Debes iniciar sesión para enviar este formulario" @@ -30038,7 +30149,7 @@ msgstr "Tiene que estar registrado para acceder a esta página." msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "Usted necesita estar en el modo de programador para editar un formulario Web Estándar" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "Debe haber iniciado sesión y tener la función de administrador del sistema, para poder tener acceso a las copias de seguridad." @@ -30046,13 +30157,13 @@ msgstr "Debe haber iniciado sesión y tener la función de administrador del sis msgid "You need to be logged in to access this page" msgstr "Tiene que estar registrado para acceder a esta página" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "Debe haber iniciado sesión para acceder a {0}." #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " -msgstr "Primero debes crear estos: " +msgid "You need to create these first:" +msgstr "Primero debes crear estos:" #: frappe/www/login.html:76 msgid "You need to enable JavaScript for your app to work." @@ -30086,11 +30197,19 @@ msgstr "Necesita permiso de escritura en {0} {1} para renombrar" msgid "You need {0} permission to fetch values from {1} {2}" msgstr "Necesita {0} permiso para recuperar valores de {1} {2}" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "Ha eliminado el archivo adjunto {0}" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "¡Pareces listo para ir!" @@ -30121,10 +30240,26 @@ msgstr "Has dejado de seguir este documento" msgid "You viewed this" msgstr "Ya has visto esto" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "Has iniciado sesión como otro usuario desde otra pestaña. Actualiza esta página para seguir usando el sistema." +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "Youtube" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "" @@ -30154,7 +30289,7 @@ msgstr "Tus atajos" msgid "Your account has been deleted" msgstr "Su cuenta ha sido eliminada" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "Su cuenta ha sido bloqueada y se reanudará después de {0} segundos" @@ -30178,10 +30313,22 @@ msgstr "Tu Solicitud de Conexión a Google Calendar fue aceptada con éxito" msgid "Your email address" msgstr "Tu correo electrónico" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "Su formulario ha sido actualizado exitosamente" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "Su ID de usuario es" @@ -30204,7 +30351,11 @@ msgstr "El nombre de la organización y dirección para el pie de página del co msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "Su consulta ha sido recibida. Responderemos a la mayor brevedad posible. Si usted tiene alguna información adicional, puede responder a este correo." -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "Tu sesión ha caducado, vuelve a iniciar sesión para continuar." @@ -30226,7 +30377,7 @@ msgstr "Cero" msgid "Zero means send records updated at anytime" msgstr "Cero significa enviar registros actualizados en cualquier momento" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" msgstr "" @@ -30248,10 +30399,6 @@ msgstr "`as_iterator` solo funciona con `as_list=True` o `as_dict=True`" msgid "`job_id` paramater is required for deduplication." msgstr "El parámetro `job_id` es necesario para la deduplicación." -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "filas agregadas para {0}" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30286,7 +30433,7 @@ msgstr "por Rol" msgid "cProfile Output" msgstr "Salida de cProfile" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "calendario" @@ -30431,12 +30578,12 @@ msgstr "emacs" msgid "email" msgstr "correo electrónico" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "bandeja de entrada de email" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "vacío" @@ -30493,7 +30640,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "h" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "Centro de actividades" @@ -30508,11 +30655,6 @@ msgstr "icono" msgid "import" msgstr "importar" -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "en minutos" - #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "juan@example.com" @@ -30521,7 +30663,7 @@ msgstr "juan@example.com" msgid "just now" msgstr "justo ahora" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "etiqueta" @@ -30550,7 +30692,7 @@ msgstr "lista" msgid "logged in" msgstr "conectado" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "login_required" @@ -30571,11 +30713,6 @@ msgstr "m" msgid "merged {0} into {1}" msgstr "fusionado {0} en {1}" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "min de lectura" - #. 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 @@ -30599,7 +30736,7 @@ msgstr "módulo" msgid "module name..." msgstr "nombre del módulo..." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "nuevo" @@ -30728,10 +30865,6 @@ msgstr "leer" msgid "red" msgstr "rojo" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "filas eliminadas para {0}" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "renombrado de {0} a {1}" @@ -30787,19 +30920,19 @@ msgstr "cuota" msgid "short" msgstr "corta" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "desde el mes pasado" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "desde la semana pasada" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "desde el año pasado" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "desde ayer" @@ -30852,6 +30985,10 @@ msgstr "Este formulario" msgid "this shouldn't break" msgstr "esto no debería romperse" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "a tu navegador" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30879,7 +31016,7 @@ msgstr "version_table" msgid "via Assignment Rule" msgstr "a través de la regla de asignación" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "" @@ -30893,7 +31030,7 @@ msgstr "a través de la importación de datos" msgid "via Google Meet" msgstr "vía Google Meet" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "vía notificación" @@ -30926,10 +31063,15 @@ msgstr "Al hacer clic en un elemento, se enfocará en la ventana emergente si es msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "wkhtmltopdf 0.12.x (con qt parcheado)." +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json @@ -30957,11 +31099,11 @@ msgstr "aaaa-mm-dd" msgid "{0}" msgstr "{0}" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "{0} ${skip_list ? \"\" : type}" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "{0} ${type}" @@ -30987,19 +31129,19 @@ msgstr "{0} = {1}" msgid "{0} Calendar" msgstr "{0} Calendario" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "{0} Gráfico" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "{0} Panel de control" -#: frappe/public/js/frappe/form/grid_row.js:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "{0} Campos" @@ -31023,6 +31165,10 @@ msgstr "{0} Me gustó" msgid "{0} List" msgstr "Lista {0}" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "{0} M" @@ -31035,7 +31181,7 @@ msgstr "{0} Mapa" msgid "{0} Name" msgstr "{0} Nombre" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "{0} No se permite cambiar {1} después del envío de {2} a {3}" @@ -31045,11 +31191,10 @@ msgstr "{0} No se permite cambiar {1} después del envío de {2} a {3}" msgid "{0} Report" msgstr "{0} Informe" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "{0} Informes" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "{0} Configuración" @@ -31074,7 +31219,15 @@ msgstr "{0} Área de Trabajo" msgid "{0} added" msgstr "{0} añadido" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0} ya existe. Seleccione otro nombre" @@ -31086,7 +31239,7 @@ msgstr "{0} ya ha sido dado de baja" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0} ya ha sido dado de baja para {1} {2}" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "{0} y {1}" @@ -31094,7 +31247,7 @@ msgstr "{0} y {1}" msgid "{0} are currently {1}" msgstr "{0} son actualmente {1}" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "{0} son obligatorios" @@ -31111,7 +31264,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0} adjunto {1}" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "{0} no puede ser más de {1}" @@ -31153,11 +31306,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "{0} cambió {1} a {2}" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "{0} comentarios" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." msgstr "{0} contiene una expresión Fetch From inválida, Fetch From no puede ser autorreferencial." @@ -31170,7 +31319,7 @@ msgstr "{0} creado con éxito" msgid "{0} created this" msgstr "{0} creó esto" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "" @@ -31192,7 +31341,7 @@ msgstr "{0} no existe en el renglón {1}" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "El campo {0} no puede establecerse como único en {1}, ya que existen valores no únicos" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31224,7 +31373,7 @@ msgstr "{0} ha dejado la conversación en {1} {2}" msgid "{0} hours ago" msgstr "Hace {0} horas" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "{0} si no es redirigido en {1} segundos" @@ -31233,23 +31382,23 @@ msgstr "{0} si no es redirigido en {1} segundos" msgid "{0} in row {1} cannot have both URL and child items" msgstr "{0} en la fila {1} no puede tener tanto URL como elementos hijos" -#: frappe/core/doctype/doctype/doctype.py:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "{0} es un campo obligatorio" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "{0} no es un archivo zip válido" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "{0} es un campo de datos no válido." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "{0} es una dirección de correo electrónico no válida en "Destinatarios"" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "{0} está entre {1} y {2}" @@ -31258,27 +31407,27 @@ msgstr "{0} está entre {1} y {2}" msgid "{0} is currently {1}" msgstr "{0} es actualmente {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "{0} es igual a {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "{0} es mayor o igual a {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "{0} es mayor que {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "{0} es menor o igual que {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "{0} es menor que {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "{0} es como {1}" @@ -31286,7 +31435,7 @@ msgstr "{0} es como {1}" msgid "{0} is mandatory" msgstr "{0} es obligatorio" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31306,12 +31455,12 @@ msgstr "{0} no es un Calendario válido. Redirigiendo al Calendario por defecto. msgid "{0} is not a valid Cron expression." msgstr "{0} no es una expresión Cron válida." -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} no es un DocType válido para Dynamic Link" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "{0} no es una dirección de correo electrónico válida" @@ -31319,15 +31468,15 @@ msgstr "{0} no es una dirección de correo electrónico válida" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "{0} no es un código ISO 3166 ALFA-2 válido." -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "{0} no es un nombre válido" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "{0} no es un número de teléfono válido" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "{0} no es un estado de flujo de trabajo válido. Actualice su flujo de trabajo y vuelva a intentarlo." @@ -31343,55 +31492,59 @@ msgstr "{0} no es un campo padre válido para {1}" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} no es un formato de informe válido. El formato del informe debe ser uno de los siguientes {1}" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "{0} no es un archivo zip" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "{0} no es igual a {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "{0} no es como {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "{0} no es uno de {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "{0} no está establecido" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "{0} ahora es el formato de impresión predeterminado para el doctype {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" msgstr "{0} es uno de {1}" #: frappe/email/doctype/email_account/email_account.py:304 -#: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: 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} es requerido" -#: frappe/public/js/frappe/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "{0} está establecido" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "{0} está dentro de {1}" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} elementos seleccionados" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} se hizo pasar por usted. Dieron esta razón: {1}" @@ -31424,35 +31577,35 @@ msgstr "Hace {0} minutos" msgid "{0} months ago" msgstr "Hace {0} meses" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "{0} debe ser después de {1}" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "{0} debe comenzar con '{1}'" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "{0} debe ser igual a '{1}'" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "{0} debe ser uno de {1}" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} debe ser uno de {1}" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "{0} debe establecerse primero" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "{0} debe ser único" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "{0} debe ser {1} {2}" @@ -31460,7 +31613,7 @@ msgstr "{0} debe ser {1} {2}" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "{0} debe comenzar y terminar con una letra y solo puede contener letras, guiones o guiones bajos." -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "{0} no es un Estado válido" @@ -31473,11 +31626,11 @@ msgid "{0} not found" msgstr "{0} no encontrado" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} de {1}" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} de {1} ({2} filas con hijos)" @@ -31486,7 +31639,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "{0} solamente." -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "{0} o {1}" @@ -31510,6 +31663,10 @@ msgstr "{0} registros eliminados" msgid "{0} records will be exported" msgstr "Se exportarán {0} registros" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31519,15 +31676,29 @@ msgstr "{0} eliminó el archivo adjunto {1}" msgid "{0} removed their assignment." msgstr "{0} eliminado su asignación." -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "{0} el rol no tiene permiso sobre ningún doctype" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " -msgstr "{0} fila #{1}: " +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" +msgstr "{0} fila #{1}:" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "{0} guardado exitosamente" @@ -31547,11 +31718,11 @@ msgstr "{0} ha compartido este documento con todos" msgid "{0} shared this document with {1}" msgstr "{0} compartió este documento con {1}" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "{0} debe ser indexado porque es referido en conexiones de panel de control" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "{0} no debe ser igual que {1}" @@ -31564,8 +31735,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "{0} envió este documento {1}" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "{0} suscriptores añadidos" @@ -31575,7 +31746,7 @@ msgstr "{0} para dejar de recibir correos electrónicos de este tipo" #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "{0} a {1}" @@ -31583,7 +31754,7 @@ msgstr "{0} a {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} dejó de compartir este documento con {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} actualizado" @@ -31619,15 +31790,15 @@ msgstr "{0} {1} agregado" msgid "{0} {1} added to Dashboard {2}" msgstr "{0} {1} agregado al panel {2}" -#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "{0} {1} ya existe" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "{0} {1} no puede ser \"{2}\". Debe ser uno de \"{3}\"" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "{0} {1} no puede ser un nodo hoja ya que tiene hijos" @@ -31643,11 +31814,11 @@ msgstr "{0} {1} está vinculado con los siguientes documentos enviados: {2}" msgid "{0} {1} not found" msgstr "{0} {1} no encontrado" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: el registro enviado no se puede eliminar. Primero debe {2} cancelarlo {3}." -#: frappe/model/base_document.py:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "{0}, Fila {1}" @@ -31655,79 +31826,79 @@ msgstr "{0}, Fila {1}" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "{0}/{1} completo | Deje esta pestaña abierta hasta que se complete." -#: frappe/model/base_document.py:1120 +#: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "{0}: '{1}' ({3}) se truncará, ya que el máximo de caracteres permitidos es {2}" -#: frappe/core/doctype/doctype/doctype.py:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "{0}: no se puede establecer \"corregir\" sin cancelar" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "{0}: no se puede establecer \"asignar corrección\" si no es enviable" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "{0}: no se puede establecer \"asignar envío\" si no es enviable" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "{0}: no se puede establecer \"cancelar\" sin enviar" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "{0}: no se puede establecer \"importar\" sin crear primero" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "{0}: no se puede establecer \"enviar\", \"cancelar\" o \"corregir\" sin escribir primero" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 msgid "{0}: Cannot set import as {1} is not importable" msgstr "{0}: no se puede establecer \"importar\" puesto que {1} no es importable" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 +#: 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}: no se pudo adjuntar un nuevo documento recurrente. Para habilitar el documento adjunto en el correo electrónico de notificación de repetición automática, habilite {1} en Configuración de impresión" -#: frappe/core/doctype/doctype/doctype.py:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "{0}: el campo '{1}' no se puede establecer como único porque tiene valores no únicos" -#: frappe/core/doctype/doctype/doctype.py:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "{0}: el campo {1} en la fila {2} no puede ocultarse y ser obligatorio sin el valor predeterminado" -#: frappe/core/doctype/doctype/doctype.py:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "{0}: el campo {1} de tipo {2} no puede ser obligatorio" -#: frappe/core/doctype/doctype/doctype.py:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "{0}: el nombre de campo {1} aparece varias veces en las filas {2}" -#: frappe/core/doctype/doctype/doctype.py:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "{0}: El tipo de campo {1} para {2} no puede ser único" -#: frappe/core/doctype/doctype/doctype.py:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "{0}: no se ha definido ningún conjunto de permisos básicos" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "{0}: sólo se permite una regla con el mismo rol, nivel y {1}" -#: frappe/core/doctype/doctype/doctype.py:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" msgstr "{0}: las opciones deben ser un DocType válido para el campo {1} en la fila {2}" -#: frappe/core/doctype/doctype/doctype.py:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "{0}: Opciones requeridas para el campo de tipo Enlace o Tabla {1} en la fila {2}" -#: frappe/core/doctype/doctype/doctype.py:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "{0}: Las opciones {1} deben ser las mismas que el nombre del doctype {2} para el campo {3}" @@ -31735,7 +31906,7 @@ msgstr "{0}: Las opciones {1} deben ser las mismas que el nombre del doctype {2} msgid "{0}: Other permission rules may also apply" msgstr "{0}: También pueden aplicarse otras reglas de permiso" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "{0}: el Permiso en el nivel 0 debe ser establecido antes de establecer niveles superiores" @@ -31743,7 +31914,7 @@ msgstr "{0}: el Permiso en el nivel 0 debe ser establecido antes de establecer n msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "{0}: Puede aumentar el límite del campo si es necesario a través de {1}" -#: frappe/core/doctype/doctype/doctype.py:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "{0}: nombre de campo no puede establecerse como una palabra clave reservada {1}" @@ -31756,11 +31927,11 @@ msgstr "{0}: {1}" msgid "{0}: {1} is set to state {2}" msgstr "{0}: {1} está configurado para indicar {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} vs {2}" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "{0}: El tipo de campo {1} para {2} no se puede indexar" @@ -31784,7 +31955,7 @@ msgstr "{count} fila seleccionada" msgid "{count} rows selected" msgstr "{count} filas seleccionadas" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "{{{0}}} no es un formato válido de nombre de campo. Debe ser {{field_name}}." @@ -31792,11 +31963,11 @@ msgstr "{{{0}}} no es un formato válido de nombre de campo. Debe ser {{field_na msgid "{} Complete" msgstr "{} Completo" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "{} Código python inválido en la línea {}" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "{} Código python posiblemente inválido.
{}" @@ -31822,7 +31993,7 @@ msgstr "{} ha sido deshabilitado. Solo se puede habilitar si {} está marcado." msgid "{} is not a valid date string." msgstr "{} no es una cadena de fecha válida." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "¡{} no encontrado en PATH! Esto es necesario para acceder a la consola." diff --git a/frappe/locale/fa.po b/frappe/locale/fa.po index b4a22e3b5d..6f9dbc7856 100644 --- a/frappe/locale/fa.po +++ b/frappe/locale/fa.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-26 22:36\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-11 00:22\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -18,10 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: fa_IR\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr " به مرورگر شما" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json @@ -61,7 +57,7 @@ msgstr "#{0}" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" msgstr "© Frappe فن آوری Pvt. Ltd و مشارکت کنندگان" @@ -74,7 +70,7 @@ msgstr "<head> HTML" msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "در جستجوی سراسری برای فیلد {0} از نوع {1} مجاز نیست" -#: frappe/core/doctype/doctype/doctype.py:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "در جستجوی سراسری برای نوع {0} در ردیف {1} مجاز نیست" @@ -82,19 +78,23 @@ msgstr "در جستجوی سراسری برای نوع {0} در ردیف {1} م msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "در نمای فهرست برای فیلد {0} از نوع {1} مجاز نیست" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "در نمای فهرست برای نوع {0} در ردیف {1} مجاز نیست" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" msgstr "دریافت کنندگان مشخص نشده است" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" msgstr "{0} یک URL معتبر نیست" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "{0} برای نوع {1} در ردیف {2} مجاز نیست" @@ -102,11 +102,11 @@ msgstr "{0} برای نوع {1} در ردیف {2} مجاز نیست" msgid "(Mandatory)" msgstr "(اجباری)" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "** ناموفق: {0} به {1}: {2}" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" msgstr "+ افزودن / حذف فیلدها" @@ -122,7 +122,7 @@ msgstr "0 - پیش‌نویس؛ 1 - ارسال شده؛ 2 - لغو شده" msgid "0 is highest" msgstr "0 بالاترین است" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = درست و 0 = نادرست" @@ -141,15 +141,11 @@ msgstr "1 روز" msgid "1 Google Calendar Event synced." msgstr "1 رویداد تقویم Google همگام‌سازی شد." -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 گزارش" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "1 نظر" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "1 روز پیش" @@ -158,17 +154,17 @@ msgid "1 hour" msgstr "1 ساعت" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "1 ساعت پیش" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "1 دقیقه پیش" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "1 ماه پیش" @@ -180,37 +176,47 @@ msgstr "1 از 2" msgid "1 record will be exported" msgstr "1 رکورد برون‌بُرد خواهد شد" -#: frappe/tests/test_utils.py:711 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "" + +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "1 ثانیه پیش" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "1 هفته قبل" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "1 سال پیش" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "2 ساعت پیش" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "2 ماه پیش" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "2 هفته پیش" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "2 سال پیش" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "3 دقیقه پیش" @@ -226,7 +232,7 @@ msgstr "4 ساعت" msgid "5 Records" msgstr "5 رکورد" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "5 روز پیش" @@ -246,6 +252,13 @@ msgstr "<" msgid "<=" msgstr "<=" +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "{0} یک URL معتبر نیست" @@ -255,6 +268,16 @@ msgstr "{0} یک URL معتبر نیست" msgid "
Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
" msgstr "
لطفاً آن را به روز نکنید زیرا ممکن است فرم شما را به هم بریزد. از سفارشی‌سازی فرم View و Custom Fields برای تنظیم ویژگی ها استفاده کنید!
" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -480,7 +503,7 @@ msgid "

To interact with above HTML you will have to use `root_element` as a p "

" msgstr "" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

" msgstr "

OTP secret شما در {0} بازنشانی شده است. اگر این بازنشانی را انجام ندادید و آن را درخواست نکردید، لطفاً فوراً با ادمین سیستم خود تماس بگیرید.

" @@ -547,7 +570,7 @@ msgstr ">" msgid ">=" msgstr ">=" -#: frappe/core/doctype/doctype/doctype.py:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "نام DocType باید با یک حرف شروع شود و فقط شامل حروف، اعداد، فاصله، زیرخط و خط فاصله باشد." @@ -556,15 +579,16 @@ msgstr "نام DocType باید با یک حرف شروع شود و فقط شا msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" -msgstr "یک پست برجسته باید تصویر جلد داشته باشد" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "یک لینک دانلود حاوی اطلاعات شما به آدرس ایمیل مرتبط با حساب کاربری‌تان ارسال خواهد شد." #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "فیلدی با نام {0} از قبل در {1} وجود دارد" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "فایلی با همین نام {} از قبل وجود دارد" @@ -577,7 +601,7 @@ msgstr "فهرستی از منابعی که پس از اجازه کاربر، ب msgid "A new account has been created for you at {0}" msgstr "یک حساب کاربری جدید برای شما در {0} ایجاد شده است" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "یک {0} {1} تکرارشونده از طریق تکرار خودکار {2} برای شما ایجاد شده است." @@ -676,13 +700,17 @@ msgstr "نقطه پایانی API" msgid "API Endpoint Args" msgstr "API Endpoint Args" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -701,6 +729,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "کلید API قابل بازسازی نیست" +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "کلیدهای API" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -721,7 +753,7 @@ msgstr "" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -768,6 +800,20 @@ msgstr "حدود {0} دقیقه باقی مانده است" msgid "About {0} seconds remaining" msgstr "حدود {0} ثانیه باقی مانده است" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "پذیرش دعوت نامه" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "پذیرفته شده" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "پذیرفته شده در" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -793,7 +839,7 @@ msgstr "توکن دسترسی" msgid "Access Token URL" msgstr "URL توکن دسترسی" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "دسترسی از این آدرس IP مجاز نیست" @@ -857,7 +903,7 @@ msgstr "اقدام / مسیر" msgid "Action Complete" msgstr "اقدام کامل شد" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "اقدام ناموفق بود" @@ -909,7 +955,7 @@ msgstr "عمل {0} در {1} {2} ناموفق بود. مشاهده آن {3}" #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "اقدامات" @@ -966,7 +1012,7 @@ msgstr "لاگ فعالیت" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -977,7 +1023,7 @@ msgstr "لاگ فعالیت" msgid "Add" msgstr "افزودن" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "اضافه / حذف ستون ها" @@ -989,7 +1035,7 @@ msgstr "افزودن / به‌روزرسانی" msgid "Add A New Rule" msgstr "افزودن یک قانون جدید" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "افزودن پیوست" @@ -1009,7 +1055,7 @@ msgstr "افزودن حاشیه در پایین" msgid "Add Border at Top" msgstr "افزودن حاشیه در بالا" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "افزودن کارت به داشبورد" @@ -1022,10 +1068,10 @@ msgid "Add Child" msgstr "افزودن فرزند" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "افزودن ستون" @@ -1084,7 +1130,7 @@ msgstr "افزودن شرکت کنندگان" msgid "Add Query Parameters" msgstr "افزودن پارامترهای پرسمان" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "افزودن نقش ها" @@ -1117,12 +1163,12 @@ msgstr "افزودن مشترکین" msgid "Add Tags" msgstr "افزودن تگ" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "افزودن تگ" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "افزودن الگو" @@ -1211,7 +1257,7 @@ msgstr "افزودن تب جدید" msgid "Add page break" msgstr "افزودن شکست صفحه" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "افزودن اسکریپت برای جدول فرزند" @@ -1249,7 +1295,7 @@ msgstr "با ارسال پست به {0} به این فعالیت اضافه کن msgid "Add {0}" msgstr "افزودن {0}" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" msgstr "افزودن {0}" @@ -1292,6 +1338,7 @@ msgstr "مجوزهای اضافی" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1300,6 +1347,7 @@ msgstr "آدرس" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "آدرس خط 1" @@ -1307,6 +1355,7 @@ msgstr "آدرس خط 1" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "آدرس خط 2" @@ -1357,7 +1406,7 @@ msgstr "یک اسکریپت کلاینت سفارشی را به DocType اضاف msgid "Adds a custom field to a DocType" msgstr "یک فیلد سفارشی به DocType اضافه می‌کند" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "مدیریت" @@ -1371,7 +1420,6 @@ msgstr "مدیریت" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1384,11 +1432,11 @@ msgstr "مدیریت" msgid "Administrator" msgstr "ادمین" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "مدیر وارد شده است" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "ادمین از طریق آدرس IP {2} به {0} در {1} دسترسی پیدا کرد." @@ -1409,8 +1457,8 @@ msgstr "پیشرفته" msgid "Advanced Control" msgstr "کنترل پیشرفته" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" msgstr "جستجوی پیشرفته" @@ -1469,7 +1517,7 @@ msgstr "پس از ارسال" msgid "After Submit" msgstr "پس از ارسال" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "برای ایجاد کارت شماره، فیلد مجموع لازم است" @@ -1496,11 +1544,11 @@ msgstr "هشدار" msgid "Alerts and Notifications" msgstr "هشدارها و اعلان ها" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1565,13 +1613,13 @@ msgstr "تمام تصاویر پیوست شده به نمایش اسلاید و msgid "All Records" msgstr "همه رکوردها" -#: frappe/public/js/frappe/form/form.js:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "همه موارد ارسالی" #: frappe/custom/doctype/customize_form/customize_form.js:452 msgid "All customizations will be removed. Please confirm." -msgstr "تمام سفارشی سازی ها حذف خواهند شد. لطفا تایید کنید." +msgstr "تمام سفارشی سازی ها حذف خواهند شد. لطفا تأیید کنید." #: frappe/templates/includes/comments/comments.html:158 msgid "All fields are necessary to submit the comment." @@ -1625,8 +1673,8 @@ msgstr "اجازه ویرایش انبوه" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " -msgstr "اجازه تلاش های متوالی برای ورود به سیستم " +msgid "Allow Consecutive Login Attempts" +msgstr "اجازه تلاش های متوالی برای ورود به سیستم" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 msgid "Allow Google Calendar Access" @@ -1644,12 +1692,7 @@ msgstr "اجازه مهمان" #. Label of the allow_guest_to_view (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Allow Guest to View" -msgstr "به مهمان اجازه مشاهده بدهید" - -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "اجازه دهید مهمان نظر بدهد" +msgstr "اجازه مشاهده به مهمان" #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' @@ -1699,7 +1742,7 @@ msgid "Allow Print for Cancelled" msgstr "چاپ برای لغو مجاز است" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "اجازه چاپ برای پیش‌نویس" @@ -1728,7 +1771,7 @@ msgstr "اجازه نقش ها" #. Transition' #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Allow Self Approval" -msgstr "اجازه تایید خود" +msgstr "اجازه تأیید خود" #. Label of the enable_telemetry (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1739,7 +1782,7 @@ msgstr "اجازه ارسال داده‌های استفاده برای بهبو #. Transition' #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Allow approval for creator of the document" -msgstr "اجازه تایید برای ایجاد کننده سند" +msgstr "اجازه تأیید برای ایجاد کننده سند" #. Label of the allow_comments (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -1768,7 +1811,8 @@ msgstr "اجازه ویرایش پس از ارسال" #: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Allow editing even if the doctype has a workflow set up.\n\n" "Does nothing if a workflow isn't set up." -msgstr "" +msgstr "حتی اگر doctype دارای گردش کار تنظیم شده باشد، ویرایش را مجاز می‌کند.\n\n" +"اگر گردش کار تنظیم نشده باشد، کاری انجام نمی‌دهد." #. Label of the allow_events_in_timeline (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -1931,7 +1975,7 @@ msgstr "" msgid "Allows skipping authorization if a user has active tokens." msgstr "" -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "قبلا ثبت شده است" @@ -1939,11 +1983,11 @@ msgstr "قبلا ثبت شده است" msgid "Already in the following Users ToDo list:{0}" msgstr "در حال حاضر در لیست انجام کارهای کاربران زیر:{0}" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "همچنین افزودن فیلد ارز وابسته {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "همچنین افزودن فیلد وابستگی به وضعیت {0}" @@ -1952,6 +1996,12 @@ msgstr "همچنین افزودن فیلد وابستگی به وضعیت {0}" msgid "Alternative Email ID" msgstr "شناسه ایمیل جایگزین" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "همیشه" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -1990,12 +2040,12 @@ msgstr "اصلاح" #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Amend Counter" -msgstr "اصلاح شمارنده" +msgstr "شمارنده اصلاح" #. Name of a DocType #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json msgid "Amended Document Naming Settings" -msgstr "اصلاح تنظیمات نامگذاری سند" +msgstr "اصلاح تنظیمات نام‌گذاری سند" #. Label of the amended_documents_section (Section Break) field in DocType #. 'Document Naming Settings' @@ -2003,10 +2053,8 @@ msgstr "اصلاح تنظیمات نامگذاری سند" msgid "Amended Documents" msgstr "اسناد اصلاح شده" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "اصلاح شده از" @@ -2020,7 +2068,7 @@ msgstr "اصلاح کننده" #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Amendment Naming Override" -msgstr "اصلاح نامگذاری لغو" +msgstr "اصلاح نام‌گذاری لغو" #: frappe/model/document.py:551 msgid "Amendment Not Allowed" @@ -2028,7 +2076,12 @@ msgstr "اصلاحیه مجاز نیست" #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:207 msgid "Amendment naming rules updated." -msgstr "قوانین نامگذاری اصلاحیه به روز شد." +msgstr "قوانین نام‌گذاری اصلاحیه به روز شد." + +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 msgid "An error occurred while setting Session Defaults" @@ -2051,7 +2104,7 @@ msgstr "تجزیه و تحلیل" #: frappe/public/js/frappe/ui/filters/filter.js:35 msgid "Ancestors Of" -msgstr "اجداد از" +msgstr "بالادست‌های" #. Label of the announcement_widget (Text Editor) field in DocType 'Navbar #. Settings' @@ -2123,10 +2176,12 @@ msgid "App Logo" msgstr "لوگوی برنامه" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2197,6 +2252,10 @@ msgstr "نام نرم‌افزار" msgid "Application Version" msgstr "نسخه برنامه" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2206,7 +2265,7 @@ msgstr "اعمال شد" msgid "Apply" msgstr "درخواست دادن" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "اعمال قانون تخصیص" @@ -2254,13 +2313,13 @@ msgstr "اگر کاربر مالک است، این قانون را اعمال ک msgid "Apply to all Documents Types" msgstr "برای همه انواع اسناد اعمال شود" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "درخواست: {0}" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:115 msgid "Approval Required" -msgstr "تایید لازم است" +msgstr "تأیید لازم است" #. Label of a standard navbar item #. Type: Route @@ -2287,7 +2346,11 @@ msgstr "بایگانی شد" msgid "Archived Columns" msgstr "ستون های بایگانی شده" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "آیا مطمئن هستید که می‌خواهید دعوت را لغو کنید؟" + +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "آیا مطمئن هستید که می‌خواهید واگذاری ها را پاک کنید؟" @@ -2315,11 +2378,15 @@ msgctxt "Confirmation dialog message" msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:191 msgid "Are you sure you want to discard the changes?" msgstr "آیا مطمئن هستید که می‌خواهید تغییرات را نادیده بگیرید؟" -#: frappe/public/js/frappe/views/reports/query_report.js:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "آیا مطمئن هستید که می‌خواهید یک گزارش جدید ایجاد کنید؟" @@ -2327,7 +2394,7 @@ msgstr "آیا مطمئن هستید که می‌خواهید یک گزارش ج msgid "Are you sure you want to merge {0} with {1}?" msgstr "آیا مطمئنید که می‌خواهید {0} را با {1} ادغام کنید؟" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "آیا مطمئن هستید که می‌خواهید ادامه دهید؟" @@ -2382,6 +2449,12 @@ msgstr "از آنجایی که اشتراک‌گذاری سند غیرفعال msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "طبق درخواست شما، حساب و داده های شما در {0} مرتبط با ایمیل {1} برای همیشه حذف شده است" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "بپرس" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2391,7 +2464,7 @@ msgstr "تعیین شرط" msgid "Assign To" msgstr "اختصاص دادن به" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "اختصاص دادن به" @@ -2454,6 +2527,11 @@ msgstr "اختصاص یافته به" msgid "Assigned To/Owner" msgstr "اختصاص داده شده به / مالک" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "در حال واگذاری..." @@ -2523,7 +2601,13 @@ msgstr "تخصیص {0} توسط {1} حذف شد" msgid "Assignments" msgstr "تکالیف" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "ناهمزمان" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "حداقل یک ستون برای نمایش در شبکه مورد نیاز است." @@ -2603,7 +2687,7 @@ msgstr "پیوست به فیلد" msgid "Attached To Name" msgstr "پیوست به نام" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "پیوست به نام باید یک رشته یا یک عدد صحیح باشد" @@ -2619,7 +2703,7 @@ msgstr "پیوست" msgid "Attachment Limit (MB)" msgstr "محدودیت پیوست (MB)" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "به محدودیت پیوست رسید" @@ -2637,15 +2721,15 @@ 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:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "پیوست ها" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "تلاش برای اتصال به سینی QZ..." -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "تلاش برای راه‌اندازی QZ Tray..." @@ -2668,6 +2752,10 @@ msgstr "مسیر حسابرسی" msgid "Auth URL Data" msgstr "داده های URL را تأیید کنید" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "" + #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authenticate as Service Principal" @@ -2685,8 +2773,8 @@ msgid "Authentication" msgstr "احراز هویت" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " -msgstr "برنامه های احراز هویتی که می‌توانید استفاده کنید عبارتند از: " +msgid "Authentication Apps you can use are:" +msgstr "برنامه های احراز هویتی که می‌توانید استفاده کنید عبارتند از:" #: frappe/email/doctype/email_account/email_account.py:339 msgid "Authentication failed while receiving emails from Email Account: {0}." @@ -2799,11 +2887,11 @@ msgstr "تکرار خودکار" msgid "Auto Repeat Day" msgstr "روز تکرار خودکار" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "روز تکرار خودکار{0} {1} تکرار شده است." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "تکرار خودکار ایجاد سند انجام نشد" @@ -2811,11 +2899,16 @@ msgstr "تکرار خودکار ایجاد سند انجام نشد" msgid "Auto Repeat Schedule" msgstr "زمان‌بندی تکرار خودکار" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "تکرار خودکار برای این سند ایجاد شده است" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "تکرار خودکار برای {0} ناموفق بود" @@ -2859,7 +2952,7 @@ msgstr "دنبال کردن خودکار اسنادی که در مورد آنه msgid "Auto follow documents that you create" msgstr "دنبال خودکار اسنادی که ایجاد می‌کنید" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "تکرار خودکار ناموفق بود. لطفاً پس از رفع مشکلات، تکرار خودکار را فعال کنید." @@ -2907,7 +3000,7 @@ msgstr "پیوند خودکار فقط در صورتی فعال می‌شود ک msgid "Automatically Assign Documents to Users" msgstr "تخصیص خودکار اسناد به کاربران" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "به طور خودکار فیلتری برای داده‌های اخیر اعمال شد. می‌توانید این عملکرد را از تنظیمات نمای لیست غیرفعال کنید." @@ -2921,11 +3014,6 @@ msgstr "حذف خودکار حساب در عرض (ساعت)" msgid "Automation" msgstr "اتوماسیون" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "آواتار" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3197,8 +3285,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:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "بر اساس" @@ -3225,7 +3313,7 @@ msgstr "اطلاعات پایه" #: frappe/public/js/frappe/ui/filters/filter.js:63 #: frappe/public/js/frappe/ui/filters/filter.js:69 msgid "Before" -msgstr "" +msgstr "قبل از" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json @@ -3265,7 +3353,7 @@ msgstr "قبل از ذخیره" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Before Save (Submitted Document)" -msgstr "قبل از ذخیره (سند ارسالی)" +msgstr "قبل از ذخیره (سند ارسال شده)" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json @@ -3315,10 +3403,8 @@ msgstr "" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "بیوگرافی" @@ -3348,64 +3434,6 @@ msgstr "بلوک کردن ماژول ها" msgid "Blocked" msgstr "مسدود" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "وبلاگ" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "دسته بندی وبلاگ" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "معرفی وبلاگ" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "معرفی وبلاگ" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "پست وبلاگ" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "تنظیمات وبلاگ" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "عنوان وبلاگ" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "وبلاگ نویس" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3462,7 +3490,7 @@ msgstr "پایین سمت چپ" #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/print_format_builder/PrintFormatControls.vue:249 msgid "Bottom Right" -msgstr "سمت راست پایین" +msgstr "پایین سمت راست" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json @@ -3503,13 +3531,6 @@ msgstr "برند همان چیزی است که در سمت چپ بالای نو msgid "Breadcrumbs" msgstr "Breadcrumbs" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "مرور بر اساس دسته بندی" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3544,7 +3565,7 @@ msgstr "ساخت" #. Description of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Build your own reports, print formats, and dashboards. Create personalized workspaces for easier navigation" -msgstr "" +msgstr "گزارش‌ها، قالب‌های چاپ و داشبوردهای خودتان را بسازید. برای پیمایش آسان‌تر، فضاهای کاری شخصی‌سازی‌شده ایجاد کنید" #: frappe/workflow/doctype/workflow/workflow_list.js:18 msgid "Build {0}" @@ -3557,7 +3578,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" @@ -3567,15 +3588,15 @@ msgstr "حذف انبوه" msgid "Bulk Edit" msgstr "ویرایش انبوه" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "ویرایش انبوه {0}" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" msgstr "عملیات انبوه ناموفق بود" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "عملیات انبوه با موفقیت انجام شد" @@ -3590,7 +3611,7 @@ msgstr "برون‌بُرد PDF انبوه" msgid "Bulk Update" msgstr "به‌روزرسانی انبوه" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "تأیید انبوه فقط تا 500 سند را پشتیبانی می‌کند." @@ -3602,7 +3623,7 @@ msgstr "عملیات انبوه در پس‌زمینه در صف قرار می msgid "Bulk operations only support up to 500 documents." msgstr "عملیات انبوه فقط تا 500 سند را پشتیبانی می‌کند." -#: frappe/model/workflow.py:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "انبوه {0} در پس زمینه در صف قرار می گیرد." @@ -3628,14 +3649,14 @@ 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 @@ -3647,7 +3668,7 @@ 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' @@ -3732,16 +3753,6 @@ msgstr "انتخابگر CSS برای عنصری که می‌خواهید برج msgid "CSV" msgstr "CSV" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "برچسب CTA" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "URL CTA" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3792,11 +3803,6 @@ msgstr "فراخوانی برای اقدام" msgid "Call To Action URL" msgstr "URL Call To Action" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "فراخوانی برای اقدام" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -3814,7 +3820,7 @@ msgid "Camera" msgstr "دوربین" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3850,7 +3856,7 @@ msgstr "می‌تواند بنویسد" msgid "Can not rename as column {0} is already present on DocType." msgstr "نمی‌توان نام آن را تغییر داد زیرا ستون {0} از قبل در DocType وجود دارد." -#: frappe/core/doctype/doctype/doctype.py:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "فقط زمانی می‌تواند به قانون نام‌گذاری خودکار افزایش یابد که داده‌ای در نوع doctype وجود نداشته باشد" @@ -3874,14 +3880,15 @@ msgstr "نمی‌توان نام {0} را به {1} تغییر داد زیرا {0 #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "لغو" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "لغو" @@ -3899,16 +3906,18 @@ msgstr "لغو همه" msgid "Cancel All Documents" msgstr "لغو تمام اسناد" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "{0} سند لغو شود؟" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -3946,11 +3955,11 @@ msgstr "نمی‌توان مقادیر را واکشی کرد" msgid "Cannot Remove" msgstr "نمی‌توان حذف کرد" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "پس از ارسال امکان به‌روزرسانی وجود ندارد" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "دسترسی به مسیر فایل {0} امکان پذیر نیست" @@ -3958,7 +3967,7 @@ msgstr "دسترسی به مسیر فایل {0} امکان پذیر نیست" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "هنگام انتقال از {0} وضعیت به {1} وضعیت، نمی‌توان قبل از ارسال لغو کرد" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "قبل از ارسال نمی‌توان لغو کرد. انتقال {0} را ببینید" @@ -3966,11 +3975,11 @@ msgstr "قبل از ارسال نمی‌توان لغو کرد. انتقال {0} msgid "Cannot cancel {0}." msgstr "نمی‌توان {0} را لغو کرد." -#: frappe/model/document.py:1013 +#: frappe/model/document.py:1017 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "نمی‌توان وضعیت docstatus را از 0 (پیش‌نویس) به 2 (لغو) تغییر داد" -#: frappe/model/document.py:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "نمی‌توان وضعیت docstatus را از 1 (ارائه شده) به 0 (پیش‌نویس) تغییر داد" @@ -3978,11 +3987,11 @@ msgstr "نمی‌توان وضعیت docstatus را از 1 (ارائه شده) msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "نمی‌توان وضعیت سند لغو شده ({0} حالت) را تغییر داد" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "نمی‌توان وضعیت سند لغو شده را تغییر داد. ردیف انتقال {0}" -#: frappe/core/doctype/doctype/doctype.py:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "در سفارشی‌سازی فرم نمی‌توان به / از autoincrement autoname تغییر داد" @@ -3994,11 +4003,11 @@ msgstr "نمی‌توان یک {0} در برابر سند فرزند ایجاد msgid "Cannot create private workspace of other users" msgstr "نمی‌توان محیط کار خصوصی از سایر کاربران ایجاد کرد" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "نمی‌توان پوشه‌های Home و Attachments را حذف کرد" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "نمی‌توان حذف یا لغو کرد زیرا {0} {1} با {2} {3} {4} پیوند داده شده است" @@ -4033,15 +4042,15 @@ msgstr "فیلد {0} ایجاد شده از سیستم را ن msgid "Cannot delete {0}" msgstr "نمی‌توان {0} را حذف کرد" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" -msgstr "نمی‌توان {0} را حذف کرد زیرا دارای گره های فرزند است" +msgstr "نمی‌توان {0} را حذف کرد زیرا دارای گره‌های فرزند است" #: frappe/desk/doctype/dashboard/dashboard.py:48 msgid "Cannot edit Standard Dashboards" msgstr "نمی‌توان داشبوردهای استاندارد را ویرایش کرد" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "نمی‌توان اعلان استاندارد را ویرایش کرد. برای ویرایش، لطفاً این را غیرفعال کنید و آن را کپی کنید" @@ -4053,7 +4062,7 @@ msgstr "نمودارهای استاندارد را نمی‌توان ویرای msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "نمی‌توان یک گزارش استاندارد را ویرایش کرد. لطفا کپی کنید و یک گزارش جدید ایجاد کنید" -#: frappe/model/document.py:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "نمی‌توان سند لغو شده را ویرایش کرد" @@ -4061,8 +4070,8 @@ msgstr "نمی‌توان سند لغو شده را ویرایش کرد" msgid "Cannot edit filters for standard charts" msgstr "نمی‌توان فیلترها را برای نمودارهای استاندارد ویرایش کرد" -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "" @@ -4070,27 +4079,27 @@ msgstr "" msgid "Cannot edit standard fields" msgstr "نمی‌توان فیلدهای استاندارد را ویرایش کرد" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "نمی‌توان {0} را برای یک نوع سند غیر قابل ارسال فعال کرد" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "نمی‌توان فایل {} را روی دیسک پیدا کرد" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "محتویات فایل یک پوشه را نمی‌توان دریافت کرد" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:884 msgid "Cannot have multiple printers mapped to a single print format." -msgstr "نمی‌توان چندین چاپگر را به یک قالب چاپی نگاشت کرد." +msgstr "نمی‌توان چندین چاپگر را به یک قالب چاپ واحد نگاشت کرد." -#: frappe/public/js/frappe/form/grid.js:1132 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "پیوند سند لغو شده امکان پذیر نیست: {0}" @@ -4102,11 +4111,11 @@ msgstr "نمی‌توان نگاشت کرد زیرا شرایط زیر نامو msgid "Cannot match column {0} with any field" msgstr "ستون {0} با هیچ فیلدی مطابقت ندارد" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "نمی‌توان ردیف را جابجا کرد" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "نمی‌توان فیلد ID را حذف کرد" @@ -4114,7 +4123,7 @@ msgstr "نمی‌توان فیلد ID را حذف کرد" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "اگر مجوز «فقط در صورتی که سازنده» تنظیم شده باشد، نمی‌توان مجوز «گزارش» را تنظیم کرد" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "" @@ -4131,11 +4140,11 @@ msgstr "نمی‌توان {0} را ارسال کرد." msgid "Cannot update {0}" msgstr "نمی‌توان {0} را به روز کرد" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" -msgstr "نمی‌توان از پرسمان فرعی به ترتیب استفاده کرد" +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." +msgstr "اینجا نمی‌توان از پرسمان فرعی استفاده کرد." -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "نمی‌توان از {0} به ترتیب/گروه بندی بر اساس استفاده کرد" @@ -4159,7 +4168,7 @@ msgstr "کارت" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #: frappe/desk/doctype/workspace_link/workspace_link.json msgid "Card Break" -msgstr "کارت شکستن" +msgstr "شکستن کارت" #: frappe/public/js/frappe/views/reports/query_report.js:262 msgid "Card Label" @@ -4203,15 +4212,6 @@ msgstr "مرکز" msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." msgstr "برخی از اسناد، مانند فاکتور، پس از قطعی شدن، نباید تغییر کنند. وضعیت نهایی برای چنین اسنادی ارسال شده نامیده می‌شود. می‌توانید نقش‌هایی که می‌توانند ارسال کنند را محدود کنید." -#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "یکپارچگی زنجیره ای" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "زنجیر هش" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4243,15 +4243,15 @@ msgstr "تغییر گذرواژه" #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:27 msgid "Change Print Format" -msgstr "تغییر فرمت چاپ" +msgstr "تغییر قالب چاپ" #. Description of the 'Update Series Counter' (Section Break) field in DocType #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
\n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " +"Warning: Incorrectly updating counters can prevent documents from getting created." msgstr "شماره توالی شروع/فعلی یک سری موجود را تغییر دهید.
\n\n" -"هشدار: به‌روزرسانی نادرست شمارنده‌ها می‌تواند از ایجاد اسناد جلوگیری کند. " +"هشدار: به‌روزرسانی نادرست شمارنده‌ها می‌تواند از ایجاد اسناد جلوگیری کند." #. Label of the changed_at (Datetime) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -4320,7 +4320,7 @@ msgstr "منبع نمودار" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "نوع نمودار" @@ -4334,7 +4334,7 @@ msgstr "نمودار" #. Option for the 'Type' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Chat" -msgstr "چت کنید" +msgstr "چت" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' @@ -4353,7 +4353,7 @@ msgstr "چت کنید" msgid "Check" msgstr "بررسی" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "URL درخواست را بررسی کنید" @@ -4361,7 +4361,7 @@ msgstr "URL درخواست را بررسی کنید" msgid "Check columns to select, drag to set order." msgstr "برای انتخاب، ستون‌ها را علامت بزنید، برای تنظیم ترتیب آن را بکشید." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "برای اطلاعات بیشتر، لاگ خطا را بررسی کنید: {0}" @@ -4402,11 +4402,6 @@ msgstr "با بررسی این صفحه، صفحه در وب سایت شما م msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "با علامت زدن این قسمت، یک ناحیه متنی نشان داده می‌شود که می‌توانید جاوا اسکریپت سفارشی بنویسید که در این صفحه اجرا می‌شود." -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "نسخه Checksum" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "Child DocType مجاز نیست" @@ -4416,17 +4411,17 @@ msgstr "Child DocType مجاز نیست" msgid "Child Doctype" msgstr "فرزند Doctype\t" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "جدول فرزند {0} برای فیلد {1}" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "جداول Child به صورت Grid در سایر DocType ها نشان داده می‌شوند" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4455,6 +4450,7 @@ msgid "Choose authentication method to be used by all users" 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 msgid "City" msgstr "شهر" @@ -4469,7 +4465,7 @@ msgstr "شهر/شهرک" msgid "Clear" msgstr "پاک کردن" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "پاک کردن و افزودن الگو" @@ -4481,7 +4477,7 @@ msgstr "پاک کردن و افزودن الگو" msgid "Clear All" msgstr "همه را پاک کن" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "پاک کردن واگذاری" @@ -4507,7 +4503,7 @@ msgstr "پاک کردن لاگ ها پس از (بر حسب روز)" msgid "Clear User Permissions" msgstr "مجوزهای کاربر را پاک کنید" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "پیام ایمیل را پاک کنید و الگو را اضافه کنید" @@ -4519,11 +4515,15 @@ msgstr "پاک کردن تاریخ پایان، زیرا نمی‌تواند د msgid "Click On Customize to add your first widget" msgstr "روی Customize کلیک کنید تا اولین ویجت خود را اضافه کنید" -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "برای شروع، روی گزینه زیر کلیک کنید:" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "اینجا کلیک کنید" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "" @@ -4533,7 +4533,7 @@ msgstr "برای ورود به {0} روی دکمه کلیک کنید" #: frappe/templates/emails/data_deletion_approval.html:2 msgid "Click on the link below to approve the request" -msgstr "برای تایید درخواست روی لینک زیر کلیک کنید" +msgstr "برای تأیید درخواست روی لینک زیر کلیک کنید" #: frappe/templates/emails/new_user.html:7 msgid "Click on the link below to complete your registration and set a new password" @@ -4545,7 +4545,7 @@ msgstr "برای دانلود اطلاعات خود روی لینک زیر کل #: frappe/templates/emails/delete_data_confirmation.html:4 msgid "Click on the link below to verify your request" -msgstr "برای تایید درخواست خود روی لینک زیر کلیک کنید" +msgstr "برای تأیید درخواست خود روی لینک زیر کلیک کنید" #: frappe/integrations/doctype/google_calendar/google_calendar.py:118 #: frappe/integrations/doctype/google_contacts/google_contacts.py:41 @@ -4554,24 +4554,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "برای ایجاد Refresh Token روی {0} کلیک کنید." #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "برای ویرایش روی جدول کلیک کنید" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "برای تنظیم فیلترهای پویا کلیک کنید" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "برای تنظیم فیلترها کلیک کنید" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "برای مرتب سازی بر اساس {0} کلیک کنید" @@ -4749,7 +4749,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "جمع شدن" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "جمع کردن همه" @@ -4804,7 +4804,7 @@ msgstr "تاشو بستگی دارد به (JS)" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4860,11 +4860,11 @@ msgstr "نام ستون" msgid "Column Name cannot be empty" msgstr "نام ستون نمی‌تواند خالی باشد" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "عرض ستون" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "عرض ستون نمی‌تواند صفر باشد." @@ -4891,7 +4891,7 @@ msgstr "ستون‌ها" msgid "Columns / Fields" msgstr "ستون ها / فیلدها" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "ستون ها بر اساس" @@ -4912,7 +4912,7 @@ msgstr "Comm10E" #: frappe/public/js/frappe/form/sidebar/assign_to.js:237 #: frappe/templates/includes/comments/comments.html:34 msgid "Comment" -msgstr "اظهار نظر" +msgstr "دیدگاه" #. Label of the comment_by (Data) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json @@ -4933,16 +4933,6 @@ msgstr "نوع نظر" msgid "Comment can only be edited by the owner" msgstr "نظر فقط توسط مالک قابل ویرایش است" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "محدودیت کامنت" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "محدودیت نظر در ساعت" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "" @@ -4950,18 +4940,18 @@ msgstr "" #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" -msgstr "نظرات" +msgstr "دیدگاه‌ها" #. Description of the 'Timeline Field' (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Comments and Communications will be associated with this linked document" -msgstr "نظرات و ارتباطات با این سند پیوندی مرتبط خواهد شد" +msgstr "دیدگاه‌ها و ارتباطات با این سند پیوندی مرتبط خواهد شد" -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" -msgstr "نظرات نمی‌توانند پیوند یا آدرس ایمیل داشته باشند" +msgstr "دیدگاه‌ها نمی‌توانند پیوند یا آدرس ایمیل داشته باشند" #. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -5031,12 +5021,12 @@ msgid "Company Name" msgstr "نام شرکت" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "مقایسه نسخه ها" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "هشدار تالیف" @@ -5116,8 +5106,8 @@ msgstr "فشرده شده" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5131,6 +5121,11 @@ msgstr "شرط" msgid "Condition JSON" msgstr "شرایط JSON" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5148,7 +5143,7 @@ msgstr "شرایط" #. Settings' #: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Config" -msgstr "" +msgstr "پیکربندی" #. Label of the configuration_section (Section Break) field in DocType 'Social #. Login Key' @@ -5156,11 +5151,11 @@ msgstr "" msgid "Configuration" msgstr "پیکربندی" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "نمودار را پیکربندی کنید" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "پیکربندی ستون ها" @@ -5178,22 +5173,24 @@ 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 "" +msgstr "نحوه نامگذاری اسناد اصلاح‌شده را پیکربندی کنید.
\n\n" +"رفتار پیش‌فرض، پیروی از یک شمارنده اصلاح است که عددی را به انتهای نام اصلی اضافه می‌کند که نشان‌دهنده نسخه اصلاح‌شده است.
\n\n" +"نامگذاری پیش‌فرض باعث می‌شود سند اصلاح‌شده مانند اسناد جدید رفتار کند." #. Description of a DocType #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" -msgstr "تایید" +msgstr "تأیید" #: frappe/public/js/frappe/ui/messages.js:31 msgctxt "Title of confirmation dialog" msgid "Confirm" -msgstr "تایید" +msgstr "تأیید" #: frappe/integrations/oauth2.py:138 msgid "Confirm Access" @@ -5202,36 +5199,36 @@ msgstr "تأیید دسترسی" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:93 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:101 msgid "Confirm Deletion of Account" -msgstr "حذف اکانت را تایید کنید" +msgstr "حذف اکانت را تأیید کنید" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "گذرواژه جدید را تأیید کنید" #: frappe/www/update-password.html:55 msgid "Confirm Password" -msgstr "گذرواژه را تایید کنید" +msgstr "گذرواژه را تأیید کنید" #: frappe/templates/emails/data_deletion_approval.html:6 #: frappe/templates/emails/delete_data_confirmation.html:7 msgid "Confirm Request" -msgstr "درخواست را تایید کنید" +msgstr "درخواست را تأیید کنید" #. Label of the confirmation_email_template (Link) field in DocType 'Email #. Group' #: frappe/email/doctype/email_group/email_group.json msgid "Confirmation Email Template" -msgstr "الگوی ایمیل تایید" +msgstr "الگوی ایمیل تأیید" #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 msgid "Confirmed" -msgstr "تایید شده" +msgstr "تأیید شده" #: frappe/public/js/frappe/widgets/onboarding_widget.js:525 msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "بابت تکمیل راه‌اندازی ماژول تبریک می گویم. اگر می‌خواهید بیشتر بدانید، می‌توانید به مستندات اینجا مراجعه کنید." -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "اتصال به {}" @@ -5249,8 +5246,8 @@ msgstr "برنامه متصل" msgid "Connected User" msgstr "کاربر متصل" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "به سینی QZ متصل شد!" @@ -5301,6 +5298,10 @@ msgstr "محدودیت ها" msgid "Contact" msgstr "مخاطب" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
{0}" +msgstr "" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5358,15 +5359,13 @@ msgstr "حاوی {0} اصلاحات امنیتی است" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5374,24 +5373,12 @@ msgstr "حاوی {0} اصلاحات امنیتی است" msgid "Content" msgstr "محتوا" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "محتوا (HTML)" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "محتوا (Markdown)" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "هش محتوا" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "نوع محتوا" @@ -5409,12 +5396,12 @@ msgstr "نوع محتوا برای ساخت صفحه" #: frappe/core/doctype/translation/translation.json #: frappe/website/doctype/web_page/web_page.json msgid "Context" -msgstr "متن نوشته" +msgstr "زمینه" #. Label of the context_script (Code) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Context Script" -msgstr "متن اسکریپت" +msgstr "اسکریپت زمینه" #: frappe/public/js/frappe/widgets/onboarding_widget.js:204 #: frappe/public/js/frappe/widgets/onboarding_widget.js:232 @@ -5459,7 +5446,7 @@ msgstr "لینک را کپی کنید" msgid "Copy embed code" msgstr "" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "کپی خطا در کلیپ بورد" @@ -5467,12 +5454,16 @@ msgstr "کپی خطا در کلیپ بورد" msgid "Copy to Clipboard" msgstr "کپی به کلیپ بورد" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "کپی کردن توکن در کلیپ بورد" + #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" msgstr "کپی رایت" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "Core DocTypes را نمی‌توان سفارشی کرد." @@ -5480,7 +5471,7 @@ msgstr "Core DocTypes را نمی‌توان سفارشی کرد." msgid "Core Modules {0} cannot be searched in Global Search." msgstr "ماژول های اصلی {0} را نمی‌توان در جستجوی سراسری جستجو کرد." -#: frappe/printing/page/print/print.js:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "" @@ -5488,7 +5479,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "به سرور ایمیل خروجی متصل نشد" -#: frappe/model/document.py:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "{0} پیدا نشد" @@ -5496,15 +5487,15 @@ msgstr "{0} پیدا نشد" msgid "Could not map column {0} to field {1}" msgstr "ستون {0} به فیلد {1} نگاشت نشد" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " -msgstr "راه اندازی نشد: " +msgid "Could not start up:" +msgstr "راه‌اندازی نشد:" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "ذخیره نشد، لطفاً داده‌هایی را که وارد کرده‌اید بررسی کنید" @@ -5549,13 +5540,14 @@ msgstr "شمارنده" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "کشور" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "کد کشور مورد نیاز است" @@ -5587,13 +5579,13 @@ msgstr "بس" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "ایجاد کردن" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "ایجاد و ادامه" @@ -5607,7 +5599,7 @@ msgid "Create Card" msgstr "ایجاد کارت" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "نمودار ایجاد کنید" @@ -5641,12 +5633,12 @@ msgstr "ایجاد لاگ" msgid "Create New" msgstr "ایجاد جدید" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "ایجاد جدید" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "DocType جدید ایجاد کنید" @@ -5654,7 +5646,7 @@ msgstr "DocType جدید ایجاد کنید" msgid "Create New Kanban Board" msgstr "صفحه کانبان جدید ایجاد کنید" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "ایجاد ایمیل کاربر" @@ -5666,7 +5658,7 @@ msgstr "یک قالب جدید ایجاد کنید" msgid "Create a Reminder" msgstr "یک یادآوری ایجاد کنید" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "ایجاد یک ..." @@ -5674,11 +5666,11 @@ msgstr "ایجاد یک ..." msgid "Create a new record" msgstr "یک رکورد جدید ایجاد کنید" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "ایجاد یک {0} جدید" @@ -5688,13 +5680,13 @@ msgstr "یک حساب {0} ایجاد کنید" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 msgid "Create or Edit Print Format" -msgstr "ایجاد یا ویرایش فرمت چاپ" +msgstr "ایجاد یا ویرایش قالب چاپ" #: frappe/workflow/page/workflow_builder/workflow_builder.js:34 msgid "Create or Edit Workflow" msgstr "ایجاد یا ویرایش گردش کار" -#: frappe/public/js/frappe/list/list_view.js:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "اولین {0} خود را ایجاد کنید" @@ -5704,7 +5696,7 @@ msgstr "گردش کار خود را به صورت بصری با استفاده #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "ایجاد شده" @@ -5720,7 +5712,7 @@ msgstr "ایجاد شده در" msgid "Created By" msgstr "ایجاد شده توسط" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "فیلد سفارشی {0} در {1} ایجاد شد" @@ -5730,9 +5722,9 @@ msgstr "فیلد سفارشی {0} در {1} ایجاد شد" #: frappe/public/js/frappe/model/model.js:125 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:479 msgid "Created On" -msgstr "ایجاد شد" +msgstr "ایجاد شده در" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "ایجاد {0}" @@ -5827,7 +5819,7 @@ 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" @@ -6041,7 +6033,7 @@ msgstr "" #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "سفارشی؟" @@ -6069,14 +6061,14 @@ msgstr "بازنشانی سفارشی‌سازی‌ها" msgid "Customizations for {0} exported to:
{1}" msgstr "سفارشی سازی برای {0} صادر شده به:
{1}" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "شخصی سازی" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "شخصی سازی" @@ -6095,7 +6087,7 @@ msgstr "داشبورد را سفارشی کنید" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "سفارشی‌سازی فرم" @@ -6173,7 +6165,7 @@ msgstr "روزانه" msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "خلاصه رویداد روزانه برای رویدادهای تقویم که در آن یادآورها تنظیم شده اند ارسال می‌شود." -#: frappe/desk/doctype/event/event.py:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "رویدادهای روزانه باید در همان روز به پایان برسد." @@ -6220,7 +6212,7 @@ msgstr "تم تیره" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "داشبورد" @@ -6279,7 +6271,6 @@ msgstr "داشبوردها" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6292,7 +6283,6 @@ msgstr "داشبوردها" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6328,7 +6318,7 @@ msgstr "لاگ درون‌بُرد داده" msgid "Data Import Template" msgstr "الگوی درون‌بُرد داده" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "داده خیلی طولانی است" @@ -6359,7 +6349,7 @@ msgstr "استفاده از اندازه ردیف پایگاه داده" msgid "Database Storage Usage By Tables" msgstr "استفاده از ذخیره‌سازی پایگاه داده بر اساس جداول" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "محدودیت اندازه ردیف جدول پایگاه داده" @@ -6497,11 +6487,11 @@ msgstr "{0} عزیز" msgid "Debug Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "جداکننده اعشاری باید یک کاراکتر باشد" @@ -6529,7 +6519,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' @@ -6567,7 +6557,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 @@ -6585,7 +6575,7 @@ msgstr "صفحه اصلی پورتال پیش‌فرض" #: 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 @@ -6663,11 +6653,11 @@ msgstr "محیط کار پیش‌فرض" msgid "Default display currency" msgstr "ارز نمایش پیش‌فرض" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "پیش‌فرض برای نوع «بررسی» فیلد {0} باید «0» یا «1» باشد." -#: frappe/core/doctype/doctype/doctype.py:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 msgid "Default value for {0} must be in the list of options." msgstr "مقدار پیش‌فرض برای {0} باید در لیست گزینه‌ها باشد." @@ -6690,17 +6680,23 @@ msgstr "مقدار پیش‌فرض" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json msgid "Defaults" -msgstr "پیش‌فرض ها" +msgstr "پیش‌فرض‌ها" #: frappe/email/doctype/email_account/email_account.py:243 msgid "Defaults Updated" -msgstr "پیش‌فرض ها به روز شد" +msgstr "پیش‌فرض‌ها به روز شد" #. Description of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Defines actions on states and the next step and allowed roles." msgstr "اقدامات مربوط به وضعیت ها و مرحله بعدی و نقش های مجاز را تعریف می‌کند." +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6718,22 +6714,27 @@ 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/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "حذف" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "حذف" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "حذف" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "حذف حساب کاربری" @@ -6742,6 +6743,12 @@ msgstr "حذف حساب کاربری" 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 +msgid "Delete Background Exported Reports After (Hours)" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6751,7 +6758,7 @@ msgstr "حذف ستون" msgid "Delete Data" msgstr "حذف داده ها" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "صفحه کانبان را حذف کنید" @@ -6765,7 +6772,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "حذف تب" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "حذف و ایجاد جدید" @@ -6774,7 +6781,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "حذف ستون" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "نظر حذف شود؟" @@ -6807,12 +6814,12 @@ msgstr "حذف تب" msgid "Delete this record to allow sending to this email address" msgstr "این سابقه را حذف کنید تا امکان ارسال به این آدرس ایمیل فراهم شود" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "{0} مورد برای همیشه حذف شود؟" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "{0} مورد برای همیشه حذف شود؟" @@ -6848,11 +6855,15 @@ msgstr "اسناد حذف شده" msgid "Deleted Name" msgstr "نام حذف شده" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "تمام اسناد با موفقیت حذف شد" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "حذف شده!" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "در حال حذف {0}" @@ -6867,8 +6878,8 @@ msgstr "در حال حذف {0}..." #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " -msgstr "مراحل حذف " +msgid "Deletion Steps" +msgstr "مراحل حذف" #: frappe/core/doctype/page/page.py:110 #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 @@ -6884,7 +6895,7 @@ msgstr "گزینه‌های جداکننده" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "جداکننده باید یک کاراکتر واحد باشد" @@ -6911,7 +6922,7 @@ msgstr "دپارتمان" msgid "Dependencies" msgstr "وابستگی ها" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "وابستگی ها و مجوزها" @@ -6924,11 +6935,11 @@ msgstr "بستگی دارد به" #: frappe/public/js/frappe/ui/filters/filter.js:32 msgid "Descendants Of" -msgstr "نوادگان از" +msgstr "زیرمجموعه‌های" #: frappe/public/js/frappe/ui/filters/filter.js:33 msgid "Descendants Of (inclusive)" -msgstr "نوادگان (شامل)" +msgstr "زیرمجموعه‌های (شامل خودش)" #. Label of the description (Small Text) field in DocType 'Assignment Rule' #. Label of the description (Small Text) field in DocType 'Reminder' @@ -6946,7 +6957,6 @@ msgstr "نوادگان (شامل)" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -6967,7 +6977,6 @@ msgstr "نوادگان (شامل)" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -6977,11 +6986,6 @@ msgstr "نوادگان (شامل)" msgid "Description" msgstr "شرح" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "توضیحات برای صفحه فهرست، در متن ساده، فقط چند خط. (حداکثر 200 کاراکتر)" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -7065,7 +7069,7 @@ msgstr "نماد دسکتاپ از قبل وجود دارد" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "جزئیات" @@ -7112,7 +7116,7 @@ msgstr "غیر فعال کردن Refresh خودکار" #. 'List View Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Disable Automatic Recency Filters" -msgstr "فیلترهای خودکار اخیر را غیرفعال کنید" +msgstr "غیرفعال کردن فیلترهای اخیر خودکار" #. Label of the disable_change_log_notification (Check) field in DocType #. 'System Settings' @@ -7124,12 +7128,7 @@ msgstr "غیرفعال کردن اعلان لاگ تغییر" #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Disable Comment Count" -msgstr "غیرفعال کردن تعداد نظرات" - -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "غیرفعال کردن نظرات" +msgstr "غیرفعال کردن تعداد دیدگاه‌ها" #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' @@ -7148,11 +7147,6 @@ msgstr "غیرفعال کردن شمارش" msgid "Disable Document Sharing" msgstr "غیرفعال کردن اشتراک گذاری سند" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "غیرفعال کردن لایک ها" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "غیرفعال کردن گزارش" @@ -7162,6 +7156,11 @@ msgstr "غیرفعال کردن گزارش" msgid "Disable SMTP server authentication" msgstr "غیرفعال کردن احراز هویت سرور SMTP" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7207,7 +7206,6 @@ msgstr "غیرفعال کردن ثبت نام ها" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7222,7 +7220,6 @@ msgstr "غیرفعال کردن ثبت نام ها" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "غیرفعال" @@ -7233,7 +7230,7 @@ msgstr "پاسخ خودکار غیرفعال است" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "دور انداختن" @@ -7251,7 +7248,7 @@ msgstr "دور انداختن" msgid "Discard {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "دور انداختن؟" @@ -7274,7 +7271,7 @@ msgstr "پاسخ بحث" msgid "Discussion Topic" msgstr "موضوع بحث" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7310,19 +7307,23 @@ msgstr "جدا کننده" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " -msgstr "کاربر جدید ایجاد نکنید " +msgid "Do Not Create New User" +msgstr "کاربر جدید ایجاد نکنید" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "اگر کاربر با ایمیل در سیستم وجود ندارد، کاربر جدیدی ایجاد نکنید" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "سرصفحه هایی را که در قالب از پیش تنظیم شده اند ویرایش نکنید" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "دوباره در مورد {0} به من هشدار نده" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "آیا هنوز می‌خواهید ادامه دهید؟" @@ -7413,7 +7414,7 @@ msgstr "" msgid "DocType" msgstr "DocType" -#: frappe/core/doctype/doctype/doctype.py:1577 +#: frappe/core/doctype/doctype/doctype.py:1578 msgid "DocType {0} provided for the field {1} must have atleast one Link field" msgstr "DocType {0} ارائه شده برای فیلد {1} باید حداقل یک فیلد پیوند داشته باشد" @@ -7460,11 +7461,11 @@ msgstr "حالت DocType" msgid "DocType View" msgstr "نمای DocType" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "DocType را نمی‌توان ادغام کرد" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "DocType فقط توسط ادمین قابل تغییر نام است" @@ -7473,7 +7474,7 @@ msgstr "DocType فقط توسط ادمین قابل تغییر نام است" msgid "DocType is a Table / Form in the application." msgstr "DocType یک جدول / فرم در برنامه است." -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "DocType باید برای رویداد Doc انتخابی قابل ارسال باشد" @@ -7506,7 +7507,7 @@ msgstr "DocType {0} وجود ندارد." msgid "DocType {} not found" msgstr "DocType {} یافت نشد" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "نام DocType نباید با فضای خالی شروع یا ختم شود" @@ -7520,7 +7521,7 @@ msgstr "" msgid "Doctype" msgstr "Doctype" -#: frappe/core/doctype/doctype/doctype.py:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "نام Doctype محدود به {0} کاراکتر ({1}) است" @@ -7557,7 +7558,7 @@ msgstr "اقدامات سند" #: frappe/core/doctype/user/user.json #: frappe/email/doctype/document_follow/document_follow.json msgid "Document Follow" -msgstr "دنبال سند" +msgstr "دنبال کردن سند" #: frappe/desk/form/document_follow.py:94 msgid "Document Follow Notification" @@ -7582,31 +7583,29 @@ msgstr "پیوند اسناد" msgid "Document Links" msgstr "پیوندهای اسناد" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "پیوندهای سند ردیف #{0}: فیلد {1} در {2} DocType یافت نشد" -#: frappe/core/doctype/doctype/doctype.py:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "پیوندهای سند ردیف #{0}: نوع سند یا نام فیلد نامعتبر است." -#: frappe/core/doctype/doctype/doctype.py:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "پیوندهای سند ردیف #{0}: نام فیلد جدول برای پیوندهای داخلی اجباری است" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7622,17 +7621,17 @@ msgstr "نام سند باید یک رشته باشد" #. Name of a DocType #: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Document Naming Rule" -msgstr "قانون نامگذاری اسناد" +msgstr "قانون نام‌گذاری اسناد" #. Name of a DocType #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid "Document Naming Rule Condition" -msgstr "شرایط قانون نامگذاری سند" +msgstr "شرایط قانون نام‌گذاری سند" #. Name of a DocType #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Document Naming Settings" -msgstr "تنظیمات نامگذاری سند" +msgstr "تنظیمات نام‌گذاری سند" #: frappe/model/document.py:478 msgid "Document Queued" @@ -7657,7 +7656,7 @@ msgstr "سند ذخیره شد" #. Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json msgid "Document Share" -msgstr "اشتراک سند" +msgstr "اشتراک‌گذاری سند" #. Name of a DocType #: frappe/core/doctype/document_share_key/document_share_key.json @@ -7748,13 +7747,13 @@ msgstr "عنوان سند" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "نوع سند" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 msgid "Document Type and Function are required to create a number card" msgstr "نوع و عملکرد سند برای ایجاد کارت شماره مورد نیاز است" @@ -7791,7 +7790,7 @@ msgid "Document Types and Permissions" msgstr "انواع اسناد و مجوزها" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "قفل سند باز شد" @@ -7799,15 +7798,15 @@ msgstr "قفل سند باز شد" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "سند لغو شده است" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "سند ارسال شده است" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "سند در حالت پیش‌نویس است" @@ -7949,13 +7948,13 @@ msgstr "دونات" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "دانلود" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "دانلود" @@ -7982,7 +7981,7 @@ msgstr "لینک دانلود" msgid "Download PDF" msgstr "دانلود PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "دانلود گزارش" @@ -7999,7 +7998,7 @@ msgstr "داده های خود را دانلود کنید" #: frappe/core/doctype/prepared_report/prepared_report.js:49 msgid "Download as CSV" -msgstr "" +msgstr "دانلود به صورت CSV" #: frappe/contacts/doctype/contact/contact.js:98 msgid "Download vCard" @@ -8045,7 +8044,7 @@ msgstr "برای افزودن عناصر را از نوار کناری بکشی msgid "Drag to add state" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "" @@ -8078,7 +8077,7 @@ msgstr "ورود تکراری" msgid "Duplicate Filter Name" msgstr "نام فیلتر تکراری" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "نام تکراری" @@ -8177,17 +8176,17 @@ msgstr "خروج" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8195,7 +8194,7 @@ msgstr "خروج" msgid "Edit" msgstr "ویرایش" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "ویرایش" @@ -8205,7 +8204,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "ویرایش" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "ویرایش" @@ -8234,7 +8233,7 @@ msgstr "ویرایش HTML سفارشی" msgid "Edit DocType" msgstr "ویرایش DocType" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "ویرایش DocType" @@ -8252,7 +8251,7 @@ msgstr "ویرایش فیلترها" msgid "Edit Footer" msgstr "ویرایش پاورقی" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "ویرایش فرمت" @@ -8296,7 +8295,7 @@ msgstr "ویرایش آشناسازی" #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:24 msgid "Edit Print Format" -msgstr "ویرایش فرمت چاپ" +msgstr "ویرایش قالب چاپ" #: frappe/www/me.html:38 msgid "Edit Profile" @@ -8337,7 +8336,7 @@ msgstr "" msgid "Edit to add content" msgstr "برای افزودن محتوا ویرایش کنید" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "پاسخ خود را ویرایش کنید" @@ -8346,7 +8345,7 @@ msgstr "پاسخ خود را ویرایش کنید" msgid "Edit your workflow visually using the Workflow Builder." msgstr "با استفاده از Workflow Builder گردش کار خود را به صورت بصری ویرایش کنید." -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "ویرایش {0}" @@ -8354,7 +8353,7 @@ msgstr "ویرایش {0}" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "شبکه قابل ویرایش" @@ -8393,11 +8392,14 @@ msgstr "انتخابگر عنصر" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8406,6 +8408,7 @@ msgstr "انتخابگر عنصر" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8415,6 +8418,8 @@ msgstr "انتخابگر عنصر" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "ایمیل" @@ -8446,7 +8451,7 @@ msgstr "حساب ایمیل غیرفعال شد." msgid "Email Account Name" msgstr "نام حساب ایمیل" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "حساب ایمیل چندین بار اضافه شده است" @@ -8456,7 +8461,7 @@ msgstr "حساب ایمیل تنظیم نشده است. لطفاً یک حساب #: frappe/email/doctype/email_account/email_account.py:576 msgid "Email Account {0} Disabled" -msgstr "" +msgstr "حساب ایمیل {0} غیرفعال شد" #. Label of the email_id (Data) field in DocType 'Address' #. Label of the email_id (Data) field in DocType 'Contact' @@ -8534,6 +8539,7 @@ msgid "Email IDs" msgstr "شناسه های ایمیل" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "آدرس ایمیل" @@ -8577,10 +8583,10 @@ msgstr "محدودیت تلاش مجدد ایمیل" msgid "Email Rule" msgstr "قانون ایمیل" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" -msgstr "ایمیل ارسال شد" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" +msgstr "ایمیل ارسال شده در" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType @@ -8619,7 +8625,7 @@ msgstr "گزینه همگام سازی ایمیل" #: frappe/email/doctype/email_template/email_template.json #: frappe/public/js/frappe/views/communication.js:107 msgid "Email Template" -msgstr "قالب ایمیل" +msgstr "الگوی ایمیل" #. Label of the enable_email_threads_on_assigned_document (Check) field in #. DocType 'Notification Settings' @@ -8645,11 +8651,11 @@ msgstr "ایمیل به عنوان هرزنامه علامت گذاری شده msgid "Email has been moved to trash" msgstr "ایمیل به سطل زباله منتقل شد" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "ایمیل برای ایجاد ایمیل کاربر الزامی است" -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "ایمیل به {0} ارسال نشد (لغو اشتراک / غیرفعال)" @@ -8688,7 +8694,7 @@ msgstr "ایمیل‌ها با اقدامات بعدی ممکن در گردش ک msgid "Embed code copied" msgstr "کد جاسازی کپی شد" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8696,7 +8702,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -8715,7 +8721,7 @@ msgstr "فعال کردن" msgid "Enable Address Autocompletion" msgstr "فعال کردن تکمیل خودکار آدرس" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "Allow Auto Repeat را برای doctype {0} در سفارشی‌سازی فرم فعال کنید" @@ -8733,7 +8739,7 @@ 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' @@ -8741,11 +8747,6 @@ msgstr "فعال کردن نظرات" msgid "Enable Dynamic Client Registration" msgstr "" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "اعلان ایمیل را فعال کنید" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -8839,11 +8840,6 @@ msgstr "امنیت را فعال کنید" msgid "Enable Social Login" msgstr "ورود به سیستم اجتماعی را فعال کنید" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "اشتراک گذاری اجتماعی را فعال کنید" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "ردیابی بازدیدهای صفحه را فعال کنید" @@ -8851,7 +8847,7 @@ msgstr "ردیابی بازدیدهای صفحه را فعال کنید" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "احراز هویت دو عاملی را فعال کنید" @@ -8863,12 +8859,6 @@ msgstr "حالت توسعه دهنده را برای ایجاد یک الگوی msgid "Enable developer mode to create a standard Web Template" msgstr "حالت توسعه دهنده را برای ایجاد یک الگوی وب استاندارد فعال کنید" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "اعلان ایمیل را برای هر نظر یا لایک دریافتی در پست وبلاگ خود فعال کنید." - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -8891,6 +8881,7 @@ msgstr "ردیابی وب سایت درون برنامه ای را فعال کن #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -8903,6 +8894,7 @@ msgstr "ردیابی وب سایت درون برنامه ای را فعال کن #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "فعال" @@ -8928,14 +8920,10 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "فعال کردن پاسخ خودکار در یک حساب ایمیل ورودی، پاسخ‌های خودکار را به همه ایمیل‌های همگام‌سازی شده ارسال می‌کند. آیا مایل هستید ادامه دهید؟" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "" - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." msgstr "" #. Description of the 'Queue in Background (BETA)' (Check) field in DocType @@ -8952,11 +8940,11 @@ msgstr "با فعال کردن این، اسناد در پس‌زمینه ارس msgid "Encrypt Backups" msgstr "رمزگذاری پشتیبان گیری" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "کلید رمزگذاری در قالب نامعتبر است!" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "کلید رمزگذاری نامعتبر است! لطفا site_config.json را بررسی کنید" @@ -8968,7 +8956,7 @@ msgstr "پایان" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -8984,6 +8972,10 @@ msgstr "فیلد تاریخ پایان" msgid "End Date cannot be before Start Date!" msgstr "تاریخ پایان نمی‌تواند قبل از تاریخ شروع باشد!" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9028,7 +9020,7 @@ msgstr "شناسه مشتری و Client Secret را در تنظیمات Google msgid "Enter Code displayed in OTP App." msgstr "کد نمایش داده شده در OTP App را وارد کنید." -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "گیرنده(های) ایمیل را وارد کنید" @@ -9087,7 +9079,7 @@ msgstr "نوع موجودیت" #: frappe/public/js/frappe/ui/filters/filter.js:16 msgid "Equals" -msgstr "برابر است" +msgstr "برابر با" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Data Import' @@ -9098,10 +9090,17 @@ msgstr "برابر است" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9111,7 +9110,7 @@ msgstr "برابر است" msgid "Error" msgstr "خطا" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "خطا" @@ -9131,7 +9130,7 @@ msgstr "لاگ‌های خطا" msgid "Error Message" msgstr "پیام خطا" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 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 اینجا را کلیک کنید.
برای اطلاعات بیشتر در مورد چاپ خام اینجا را کلیک کنید." @@ -9159,9 +9158,9 @@ msgstr "خطا در اسکریپت کلاینت." msgid "Error in Header/Footer Script" msgstr "خطا در اسکریپت سرصفحه/پانویس" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "خطا در اعلان" @@ -9181,19 +9180,19 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "خطا هنگام اتصال به حساب ایمیل {0}" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "خطا هنگام ارزیابی اعلان {0}. لطفا قالب خود را اصلاح کنید." -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "خطا: مقدار از دست رفته برای {0}: {1}" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "" @@ -9250,7 +9249,7 @@ msgstr "نوع رویداد" msgid "Events" msgstr "مناسبت ها" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "رویدادها در تقویم امروز" @@ -9334,15 +9333,15 @@ msgstr "اجرا کردن" msgid "Execute Console script" msgstr "اجرای اسکریپت کنسول" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" -msgstr "" +msgstr "در حال اجرای کد" #: frappe/desk/doctype/system_console/system_console.js:18 msgid "Executing..." msgstr "در حال اجرا..." -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "زمان اجرا: {0} ثانیه" @@ -9368,12 +9367,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "بسط دادن" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "گسترش همه" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9401,7 +9400,9 @@ msgid "Expire Notification On" msgstr "انقضا اعلان در" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "منقضی شده" @@ -9410,7 +9411,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 @@ -9429,13 +9430,13 @@ msgstr "زمان انقضای صفحه تصویر کد QR" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "برون‌بُرد" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "برون‌بُرد" @@ -9472,7 +9473,7 @@ msgstr "برون‌بُرد از" msgid "Export Import Log" msgstr "لاگ درون‌بُرد برون‌بُرد" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "گزارش برون‌بُرد: {0}" @@ -9481,11 +9482,11 @@ msgstr "گزارش برون‌بُرد: {0}" msgid "Export Type" msgstr "نوع برون‌بُرد" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "" @@ -9493,6 +9494,10 @@ msgstr "" msgid "Export as zip" msgstr "برون‌بُرد به صورت zip" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "برون‌بُرد مجاز نیست برای برون‌بُرد به نقش {0} نیاز دارید." @@ -9598,9 +9603,9 @@ msgstr "" msgid "Failed Logins (Last 30 days)" msgstr "ورودهای ناموفق (30 روز گذشته)" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" -msgstr "تراکنش های ناموفق" +msgstr "تراکنش‌های ناموفق" #: frappe/utils/synchronization.py:46 msgid "Failed to aquire lock: {}. Lock may be held by another process." @@ -9615,7 +9620,7 @@ msgstr "تغییر گذرواژه انجام نشد." msgid "Failed to complete setup" msgstr "تکمیل راه‌اندازی انجام نشد" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "محاسبه بدنه درخواست ناموفق بود: {}" @@ -9624,15 +9629,15 @@ msgstr "محاسبه بدنه درخواست ناموفق بود: {}" msgid "Failed to connect to server" msgstr "اتصال به سرور ممکن نشد" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "رمزگشایی توکن انجام نشد، لطفاً یک توکن رمزگذاری شده معتبر base64 ارائه دهید." -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "رمزگشایی کلید {0} انجام نشد" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "" @@ -9640,8 +9645,8 @@ msgstr "" msgid "Failed to enable scheduler: {0}" msgstr "زمان‌بندی فعال نشد: {0}" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "شرایط ارزیابی نشد: {}" @@ -9657,7 +9662,7 @@ msgstr "نام‌هایی از سریال ایجاد نشد" msgid "Failed to generate preview of series" msgstr "پیش نمایش سری ایجاد نشد" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "Failed to get method for command {0} with {1}" @@ -9677,11 +9682,11 @@ msgstr "درون‌بُرد doctype مجازی {} انجام نشد، آیا ف msgid "Failed to optimize image: {0}" msgstr "تصویر بهینه نشد: {0}" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "" @@ -9731,12 +9736,6 @@ msgstr "FavIcon" msgid "Fax" msgstr "فکس" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "ویژه" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "بازخورد" @@ -9794,17 +9793,17 @@ msgstr "در حال واکشی اسناد جستجوی سراسری پیش‌ف #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "رشته" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" msgstr "فیلد \"مسیر\" برای بازدیدهای وب اجباری است" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "فیلد \"عنوان\" در صورت تنظیم \"فیلد جستجوی وب سایت\" اجباری است." @@ -9817,7 +9816,7 @@ msgstr "" msgid "Field Description" msgstr "شرح فیلد" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "فیلد جا افتاده است" @@ -9847,7 +9846,7 @@ msgstr "قالب فیلد" msgid "Field Type" msgstr "نوع فیلد" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "فیلد در پرسمان مجاز نیست" @@ -9859,7 +9858,7 @@ msgstr "فیلدی که وضعیت گردش کار تراکنش را نشان م #. Label of the track_field (Select) field in DocType 'Milestone Tracker' #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json msgid "Field to Track" -msgstr "زمینه برای پیگیری" +msgstr "فیلد برای ردیابی" #: frappe/custom/doctype/property_setter/property_setter.py:51 msgid "Field type cannot be changed for {0}" @@ -9873,11 +9872,11 @@ msgstr "فیلد {0} در {1} وجود ندارد" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "فیلد {0} به نوع سند موجود {1} اشاره دارد." -#: frappe/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "فیلد {0} یافت نشد." -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9895,20 +9894,20 @@ 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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "نام فیلد" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "نام فیلد \"{0}\" در تضاد با یک {1} از نام {2} در {3}" -#: frappe/core/doctype/doctype/doctype.py:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" -msgstr "برای فعال کردن نامگذاری خودکار، نام فیلد به نام {0} باید وجود داشته باشد" +msgstr "برای فعال کردن نام‌گذاری خودکار، نام فیلد به نام {0} باید وجود داشته باشد" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "نام فیلد به 64 کاراکتر محدود شده است ({0})" @@ -9924,15 +9923,15 @@ msgstr "نام فیلد که DocType برای این فیلد پیوند خوا msgid "Fieldname {0} appears multiple times" msgstr "نام فیلد {0} چندین بار ظاهر می‌شود" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "نام فیلد {0} نمی‌تواند نویسه های خاصی مانند {1} داشته باشد" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "نام فیلد {0} با متا شی در تضاد است" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "نام فیلد {0} محدود شده است" @@ -9955,7 +9954,7 @@ msgstr "نام فیلد {0} محدود شده است" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -9968,7 +9967,7 @@ msgstr "فیلدها" msgid "Fields Multicheck" msgstr "چند بررسی فیلدها" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "فیلدهای \"file_name\" یا \"file_url\" باید برای File تنظیم شوند" @@ -9976,7 +9975,7 @@ msgstr "فیلدهای \"file_name\" یا \"file_url\" باید برای File ت msgid "Fields must be a list or tuple when as_list is enabled" msgstr "وقتی as_list فعال است، فیلدها باید یک لیست یا تاپل باشند" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10004,7 +10003,7 @@ msgstr "نوع فیلد" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "نوع فیلد را نمی‌توان از {0} به {1} تغییر داد" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "نوع فیلد را نمی‌توان از {0} به {1} در ردیف {2} تغییر داد" @@ -10017,7 +10016,7 @@ msgstr "نوع فیلد را نمی‌توان از {0} به {1} در ردیف { msgid "File" msgstr "فایل" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "" @@ -10070,7 +10069,7 @@ msgstr "آدرس فایل" msgid "File backup is ready" msgstr "پشتیبان گیری از فایل آماده است" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "نام فایل نمی‌تواند دارای {0} باشد" @@ -10078,7 +10077,7 @@ msgstr "نام فایل نمی‌تواند دارای {0} باشد" msgid "File not attached" msgstr "فایل پیوست نشده است" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "اندازه فایل از حداکثر اندازه مجاز {0} مگابایت بیشتر است" @@ -10087,11 +10086,11 @@ msgstr "اندازه فایل از حداکثر اندازه مجاز {0} مگا msgid "File too big" msgstr "فایل خیلی بزرگ است" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "نوع فایل {0} مجاز نیست" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "فایل {0} وجود ندارد" @@ -10105,10 +10104,10 @@ msgstr "فایل ها" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10145,11 +10144,11 @@ msgstr "نام فیلتر" msgid "Filter Values" msgstr "مقادیر فیلتر" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10167,7 +10166,6 @@ msgstr "فیلتر شده توسط" msgid "Filtered Records" msgstr "رکوردهای فیلتر شده" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "فیلتر شده توسط \"{0}\"" @@ -10182,7 +10180,9 @@ msgstr "فیلتر شده توسط \"{0}\"" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10204,6 +10204,11 @@ msgstr "پیکربندی فیلترها" msgid "Filters Display" msgstr "نمایش فیلترها" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10216,11 +10221,11 @@ msgstr "فیلترهای JSON" msgid "Filters Section" msgstr "بخش فیلترها" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "فیلترهای اعمال شده برای {0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "فیلترها ذخیره شدند" @@ -10233,18 +10238,18 @@ msgstr "فیلترها از طریق فیلترها قابل دست msgid "Filters {0}" msgstr "فیلترها {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:1427 +#: frappe/public/js/frappe/views/reports/report_view.js:1429 msgid "Filters:" msgstr "فیلترها:" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 msgid "Find '{0}' in ..." msgstr "پیدا کردن \"{0}\" در ..." #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 msgid "Find {0} in {1}" msgstr "پیدا کردن {0} در {1}" @@ -10268,8 +10273,12 @@ msgstr "اولین روز هفته" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "نام کوچک" @@ -10278,10 +10287,6 @@ msgstr "نام کوچک" msgid "First Success Message" msgstr "اولین پیام موفقیت" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:49 -msgid "First Transaction" -msgstr "اولین تراکنش" - #: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." msgstr "ستون داده اول باید خالی باشد." @@ -10332,11 +10337,11 @@ msgstr "دقت شناور" msgid "Fold" msgstr "تا کردن" -#: frappe/core/doctype/doctype/doctype.py:1450 +#: frappe/core/doctype/doctype/doctype.py:1451 msgid "Fold can not be at the end of the form" msgstr "فولد نمی‌تواند در انتهای فرم باشد" -#: frappe/core/doctype/doctype/doctype.py:1448 +#: frappe/core/doctype/doctype/doctype.py:1449 msgid "Fold must come before a Section Break" msgstr "فولد باید قبل از Section Break باشد" @@ -10354,7 +10359,7 @@ msgstr "نام پوشه" msgid "Folder name should not include '/' (slash)" msgstr "نام پوشه نباید شامل '/' (اسلش) باشد" -#: frappe/core/doctype/file/file.py:472 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "پوشه {0} خالی نیست" @@ -10461,7 +10466,7 @@ msgstr "جزئیات پاورقی" msgid "Footer HTML" msgstr "پاورقی HTML" -#: frappe/printing/doctype/letter_head/letter_head.py:75 +#: frappe/printing/doctype/letter_head/letter_head.py:81 msgid "Footer HTML set from attachment {0}" msgstr "تنظیم HTML پاورقی از پیوست {0}" @@ -10498,7 +10503,7 @@ msgstr "قالب پاورقی" msgid "Footer Template Values" msgstr "مقادیر الگوی پاورقی" -#: frappe/printing/page/print/print.js:116 +#: frappe/printing/page/print/print.js:129 msgid "Footer might not be visible as {0} option is disabled" msgstr "ممکن است پاورقی قابل مشاهده نباشد زیرا گزینه {0} غیرفعال است" @@ -10556,8 +10561,8 @@ msgstr "برای کاربر" msgid "For Value" msgstr "برای مقدار" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 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) استفاده کنید." @@ -10583,12 +10588,6 @@ msgstr "به عنوان مثال: {} باز" msgid "For help see Client Script API and Examples" msgstr "برای راهنمایی به API و مثال‌های Client Script مراجعه کنید." -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "برای اطلاعات بیشتر، اینجا را کلیک کنید." - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "برای اطلاعات بیشتر، {0}." @@ -10603,7 +10602,7 @@ msgstr "برای چندین آدرس، آدرس را در خطوط مختلف و msgid "For updating, you can update only selective columns." msgstr "برای به‌روزرسانی، می‌توانید فقط ستون های انتخابی را به روز کنید." -#: frappe/core/doctype/doctype/doctype.py:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "برای {0} در سطح {1} در {2} در ردیف {3}" @@ -10658,7 +10657,7 @@ 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:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "فرم" @@ -10718,6 +10717,11 @@ msgstr "قالب" msgid "Format Data" msgstr "فرمت داده ها" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "هر دو هفته یکبار" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "رو به جلو" @@ -10745,7 +10749,15 @@ msgstr "واحدهای کسری" msgid "Frappe" msgstr "Frappe" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "بلاگ Frappe" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "انجمن Frappe" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "چارچوب Frappe" @@ -10834,7 +10846,7 @@ msgstr "از تاریخ" msgid "From Date Field" msgstr "از فیلد تاریخ" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "از نوع سند" @@ -10861,18 +10873,16 @@ msgstr "پر شده" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "نام و نام خانوادگی" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "صفحه کامل" @@ -10898,13 +10908,13 @@ msgstr "عملکرد بر اساس" msgid "Function {0} is not whitelisted." msgstr "تابع {0} در لیست سفید قرار ندارد." -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" -msgstr "گره های بیشتر را فقط می‌توان تحت گره های نوع «گروهی» ایجاد کرد" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "زیرگروه‌های بیشتر فقط می‌توانند تحت رکوردهایی که با عنوان «گروه» مشخص شده‌اند، ایجاد شوند" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -10963,7 +10973,7 @@ msgstr "عمومی" msgid "Generate Keys" msgstr "ایجاد کلیدها" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "ایجاد گزارش جدید" @@ -10971,8 +10981,14 @@ msgstr "ایجاد گزارش جدید" msgid "Generate Random Password" msgstr "ایجاد گذرواژه تصادفی" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "ایجاد URL پیگیری" @@ -10995,7 +11011,7 @@ msgstr "موقعیت جغرافیایی" msgid "Geolocation Settings" msgstr "تنظیمات مکان جغرافیایی" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "دریافت هشدار برای امروز" @@ -11131,7 +11147,7 @@ msgid "Go to this URL after completing the form" msgstr "پس از تکمیل فرم به این آدرس بروید" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "رفتن به {0}" @@ -11179,10 +11195,6 @@ msgstr "IP ناشناس گوگل آنالیتیکس" msgid "Google Calendar" msgstr "تقویم گوگل" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}" -msgstr "Google Calendar - مخاطب / ایمیل یافت نشد. شرکت کننده برای -
{0} اضافه نشد" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "Google Calendar - تقویم برای {0} ایجاد نشد، کد خطا {1}." @@ -11301,11 +11313,6 @@ msgstr "URL کاربرگ‌نگار Google نامعتبر است یا برای msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "URL کاربرگ‌نگار Google باید با \"gid={number}\" ختم شود. URL را از نوار آدرس مرورگر کپی و جایگذاری کنید و دوباره امتحان کنید." -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "پیش نمایش Google Snippet" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11382,14 +11389,10 @@ msgstr "گروه بر اساس نوع" msgid "Group By field is required to create a dashboard chart" msgstr "برای ایجاد نمودار داشبورد فیلد Group By لازم است" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "گره گروه" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11439,7 +11442,6 @@ msgstr "HH:mm:ss" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11450,9 +11452,8 @@ msgstr "HH:mm:ss" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11556,7 +11557,7 @@ msgstr "سرصفحه" msgid "Header HTML" msgstr "سربرگ HTML" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "تنظیم HTML سرصفحه از پیوست {0}" @@ -11614,6 +11615,12 @@ msgstr "نقشه حرارت" msgid "Hello" msgstr "سلام" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "سلام،" + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11679,7 +11686,7 @@ msgstr "هلوتیکا" msgid "Helvetica Neue" msgstr "هلوتیکا نو" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "در اینجا URL پیگیری شما است" @@ -11715,7 +11722,7 @@ msgstr "پنهان شده است" msgid "Hidden Fields" msgstr "فیلدهای پنهان" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11748,11 +11755,6 @@ msgstr "مخفی کردن مرز" msgid "Hide Buttons" msgstr "پنهان کردن دکمه ها" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "مخفی کردن CTA" - #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json @@ -11825,14 +11827,14 @@ msgstr "مخفی کردن ثانیه ها" #. Label of the hide_toolbar (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Hide Sidebar, Menu, and Comments" -msgstr "نوار کناری، منو و نظرات را پنهان کنید" +msgstr "نوار کناری، منو و دیدگاه‌ها را پنهان کنید" #. Label of the hide_standard_menu (Check) field in DocType 'Portal Settings' #: frappe/website/doctype/portal_settings/portal_settings.json msgid "Hide Standard Menu" msgstr "مخفی کردن منوی استاندارد" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "پنهان کردن تگ‌ها" @@ -11846,7 +11848,7 @@ msgstr "پنهان کردن تعطیلات آخر هفته" msgid "Hide descendant records of For Value." msgstr "پنهان کردن رکوردهای فرزند برای مقدار." -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "پنهان کردن جزئیات" @@ -11895,11 +11897,8 @@ 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:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -11968,7 +11967,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 @@ -11987,16 +11986,16 @@ msgstr "" #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "شناسه" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "شناسه" @@ -12092,9 +12091,9 @@ msgstr "اگر Apply Strict User Permission علامت زده شود و اجاز msgid "If Checked workflow status will not override status in list view" msgstr "اگر وضعیت گردش کار بررسی شده وضعیت را در نمای فهرست لغو نمی‌کند" -#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "اگر مالک" @@ -12222,6 +12221,10 @@ msgstr "اگر کاربر هر نقشی را علامت زده باشد، کار msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "اگر این دستورالعمل ها مفید نیستند، لطفاً پیشنهادها خود را در مورد مشکلات GitHub اضافه کنید." +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12247,13 +12250,17 @@ msgstr "اگر در حال به‌روزرسانی هستید، لطفاً «ب #: frappe/core/doctype/data_export/exporter.py:188 msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present." -msgstr "اگر رکوردهای جدیدی را آپلود می‌کنید، در صورت وجود، \"سری نامگذاری\" اجباری می‌شود." +msgstr "اگر رکوردهای جدیدی را آپلود می‌کنید، در صورت وجود، \"سری نام‌گذاری\" اجباری می‌شود." #: frappe/core/doctype/data_export/exporter.py:186 msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "اگر رکوردهای جدیدی را آپلود می‌کنید، ستون \"نام\" (ID) را خالی بگذارید." -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "اگر اخیراً سایت را بازیابی کرده اید، ممکن است لازم باشد site_config.json حاوی کلید رمزگذاری اصلی را کپی کنید." @@ -12310,12 +12317,12 @@ msgstr "نادیده گرفتن پیوست های بیش از این انداز msgid "Ignored Apps" msgstr "برنامه های نادیده گرفته شده" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "وضعیت سند غیرقانونی برای {0}" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "پرسمان SQL غیر قانونی" @@ -12376,11 +12383,11 @@ msgstr "نمای تصویر" msgid "Image Width" msgstr "عرض تصویر" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 msgid "Image field must be a valid fieldname" msgstr "فیلد تصویر باید یک نام فیلد معتبر باشد" -#: frappe/core/doctype/doctype/doctype.py:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "فیلد تصویر باید از نوع Attach Image باشد" @@ -12402,15 +12409,15 @@ msgstr "تصاویر" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "جعل هویت" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "جعل هویت به عنوان {0}" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "جعل هویت توسط {0}" @@ -12436,7 +12443,7 @@ msgstr "ضمنی" msgid "Import" msgstr "درون‌بُرد" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "درون‌بُرد" @@ -12532,7 +12539,7 @@ msgstr "در حال درون‌بُرد {0} از {1}، {2}" #: frappe/public/js/frappe/ui/filters/filter.js:20 msgid "In" -msgstr "که در" +msgstr "یکی از" #. Description of the 'Force User to Reset Password' (Int) field in DocType #. 'System Settings' @@ -12591,7 +12598,7 @@ msgstr "در پیش نمایش" #: frappe/core/doctype/data_import/data_import.js:42 msgid "In Progress" -msgstr "در حال پیش رفت" +msgstr "در حال انجام" #: frappe/database/database.py:287 msgid "In Read Only Mode" @@ -12664,15 +12671,16 @@ msgstr "شامل تم از برنامه ها" msgid "Include Web View Link in Email" msgstr "پیوند مشاهده وب را در ایمیل اضافه کنید" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "شامل فیلترها" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "شامل تورفتگی" @@ -12719,7 +12727,7 @@ msgstr "حساب ایمیل ورودی صحیح نیست" msgid "Incomplete Virtual Doctype Implementation" msgstr "پیاده‌سازی Virtual Doctype ناقص" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "جزئیات ورود ناقص" @@ -12731,7 +12739,7 @@ msgstr "پیکربندی نادرست" msgid "Incorrect URL" msgstr "URL نادرست است" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "کاربر یا گذرواژه نادرست" @@ -12739,11 +12747,11 @@ msgstr "کاربر یا گذرواژه نادرست" msgid "Incorrect Verification code" msgstr "کد تأیید نادرست" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "مقدار نادرست در ردیف {0}:" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "مقدار نادرست:" @@ -12755,7 +12763,7 @@ msgstr "مقدار نادرست:" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "شاخص" @@ -12830,7 +12838,7 @@ msgstr "درج در بالا" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "درج بعد" @@ -12846,7 +12854,7 @@ msgstr "درج بعد از فیلد «{0}» ذکر شده در فیلد سفار msgid "Insert Below" msgstr "در زیر درج کنید" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "درج ستون قبل از {0}" @@ -12864,8 +12872,12 @@ msgstr "درج رکوردهای جدید" msgid "Insert Style" msgstr "درج سبک" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "{0} را از Marketplace نصب کنید" @@ -12882,7 +12894,7 @@ msgid "Installed Applications" msgstr "برنامه های نصب شده" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "برنامه های نصب شده" @@ -12899,19 +12911,19 @@ msgstr "دستورالعمل ها ایمیل شد" msgid "Insufficient Permission Level for {0}" msgstr "سطح مجوز ناکافی برای {0}" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "مجوز ناکافی برای {0}" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" msgstr "مجوزهای ناکافی برای حذف گزارش" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" msgstr "مجوزهای ناکافی برای ویرایش گزارش" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "محدودیت پیوست ناکافی" @@ -12935,7 +12947,7 @@ msgstr "عدد صحیح" #. Name of a DocType #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Integration Request" -msgstr "درخواست ادغام" +msgstr "درخواست یکپارچه سازی" #. Group in User's connections #. Name of a Workspace @@ -13015,9 +13027,9 @@ msgid "Invalid" msgstr "بی اعتبار" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "عبارت \"depends_on\" نامعتبر است" @@ -13025,7 +13037,7 @@ msgstr "عبارت \"depends_on\" نامعتبر است" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "عبارت \"depends_on\" نامعتبر تنظیم شده در فیلتر {0}" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "عبارت \"mandatory_depends_on\" نامعتبر است" @@ -13041,7 +13053,7 @@ msgstr "قالب CSV نامعتبر است" msgid "Invalid Code. Please try again." msgstr "کد نامعتبر. لطفا دوباره امتحان کنید." -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "شرایط نامعتبر: {}" @@ -13061,18 +13073,22 @@ msgstr "DocType نامعتبر است" msgid "Invalid DocType: {0}" msgstr "DocType نامعتبر: {0}" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "نام فیلد نامعتبر است" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "URL فایل نامعتبر است" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" -msgstr "" +msgstr "فیلتر نامعتبر" #: frappe/public/js/form_builder/store.js:221 msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" @@ -13102,7 +13118,7 @@ msgstr "ورود نامعتبر دوباره امتحان کنید." msgid "Invalid Mail Server. Please rectify and try again." msgstr "سرور ایمیل نامعتبر است. لطفاً اصلاح کنید و دوباره امتحان کنید." -#: frappe/model/naming.py:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "سری نام‌گذاری نامعتبر: {}" @@ -13111,8 +13127,8 @@ msgstr "سری نام‌گذاری نامعتبر: {}" msgid "Invalid Operation" msgstr "عملیات نامعتبر" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "گزینه نامعتبر" @@ -13124,25 +13140,25 @@ msgstr "سرور یا درگاه ایمیل خروجی نامعتبر: {0}" msgid "Invalid Output Format" msgstr "فرمت خروجی نامعتبر است" -#: frappe/model/base_document.py:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "پارامترهای نامعتبر" -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "گذرواژه نامعتبر" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "شماره تلفن نامعتبر" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "درخواست نامعتبر" @@ -13151,7 +13167,7 @@ msgstr "درخواست نامعتبر" msgid "Invalid Search Field {0}" msgstr "فیلد جستجوی نامعتبر {0}" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "نام فیلد جدول نامعتبر است" @@ -13159,8 +13175,8 @@ msgstr "نام فیلد جدول نامعتبر است" msgid "Invalid Transition" msgstr "انتقال نامعتبر است" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13174,47 +13190,51 @@ msgstr "نام کاربری یا گذرواژه پشتیبانی نامعتبر msgid "Invalid Values" msgstr "مقادیر نامعتبر" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "راز Webhook نامعتبر است" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "تابع تجمیع نامعتبر است" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "ستون نامعتبر است" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "docstatus نامعتبر است" @@ -13226,31 +13246,27 @@ msgstr "عبارت نامعتبر تنظیم شده در فیلتر {0}" msgid "Invalid expression set in filter {0} ({1})" msgstr "عبارت نامعتبر تنظیم شده در فیلتر {0} ({1})" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "نام فیلد نامعتبر {0}" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "نام فیلد \"{0}\" در نام خودکار نامعتبر است" @@ -13258,11 +13274,11 @@ msgstr "نام فیلد \"{0}\" در نام خودکار نامعتبر است" msgid "Invalid file path: {0}" msgstr "مسیر فایل نامعتبر: {0}" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13270,20 +13286,28 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "فیلتر نامعتبر: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "json نامعتبر اضافه شده در گزینه‌های سفارشی: {0}" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "نوع نام نامعتبر (عدد صحیح) برای ستون نام varchar" @@ -13291,6 +13315,10 @@ msgstr "نوع نام نامعتبر (عدد صحیح) برای ستون نام msgid "Invalid naming series {}: dot (.) missing" msgstr "سری نام‌گذاری نامعتبر {}: نقطه (.) وجود ندارد" +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "محتوای نامعتبر یا خراب برای درون‌بُرد" @@ -13299,19 +13327,27 @@ msgstr "محتوای نامعتبر یا خراب برای درون‌بُرد" msgid "Invalid redirect regex in row #{}: {}" msgstr "Regex تغییر مسیر نامعتبر در ردیف #{}: {}" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "آرگومان های درخواست نامعتبر" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "Invalid request body" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13319,7 +13355,7 @@ msgstr "" msgid "Invalid template file for import" msgstr "فایل الگو برای درون‌بُرد نامعتبر است" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "حالت توکن نامعتبر! بررسی کنید که آیا توکن توسط کاربر OAuth ایجاد شده است." @@ -13328,20 +13364,20 @@ msgstr "حالت توکن نامعتبر! بررسی کنید که آیا توک msgid "Invalid username or password" msgstr "نام کاربری یا گذرواژه نامعتبر است" -#: frappe/model/naming.py:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "مقادیر نامعتبر برای فیلدها:" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "شرط {0} نامعتبر است" @@ -13350,13 +13386,50 @@ msgstr "شرط {0} نامعتبر است" msgid "Inverse" msgstr "معکوس" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "دعوت به عنوان کاربر" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "دعوت شده توسط" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" -msgstr "است" +msgstr "هست" #. Label of the is_active (Check) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json @@ -13378,7 +13451,7 @@ msgstr "تقویم و گانت است" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "جدول فرزند است" @@ -13431,6 +13504,10 @@ msgstr "پوشه است" msgid "Is Global" msgstr "سراسری است" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "گروه است" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13457,8 +13534,13 @@ msgstr "حالت اختیاری است" msgid "Is Primary" msgstr "اصلی است" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "آدرس اصلی است" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 msgid "Is Primary Contact" msgstr "تماس اصلی است" @@ -13489,7 +13571,7 @@ msgstr "عمومی است" msgid "Is Published Field" msgstr "حوزه منتشر شده است" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "فیلد منتشر شده است باید یک نام فیلد معتبر باشد" @@ -13514,7 +13596,7 @@ msgstr "" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "مجرد است" @@ -13550,7 +13632,7 @@ msgstr "استاندارد است" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "قابل ارسال است" @@ -13756,11 +13838,11 @@ msgstr "ستون نمودار کانبان" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "نام نمودار کانبان" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "تنظیمات کانبان" @@ -13772,7 +13854,7 @@ msgstr "نمای کانبان" #. Description of a DocType #: frappe/core/doctype/activity_log/activity_log.json msgid "Keep track of all update feeds" -msgstr "تمام فیدهای به‌روزرسانی را پیگیری کنید" +msgstr "پیگیری تمام فیدهای به‌روزرسانی" #. Description of a DocType #: frappe/core/doctype/communication/communication.json @@ -13781,12 +13863,14 @@ msgstr "تمام ارتباطات را پیگیری می‌کند" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -14048,7 +14132,7 @@ msgstr "برچسب اجباری است" msgid "Landing Page" msgstr "صفحه فرود" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "افقی" @@ -14056,10 +14140,13 @@ msgstr "افقی" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "زبان" @@ -14108,7 +14195,7 @@ 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 @@ -14147,8 +14234,12 @@ msgstr "ماه گذشته" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "نام خانوادگی" @@ -14161,7 +14252,12 @@ msgstr "آخرین تاریخ بازنشانی گذرواژه" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/public/js/frappe/ui/filters/filter.js:648 msgid "Last Quarter" -msgstr "سه ماهه آخر" +msgstr "سه ماهه گذشته" + +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' @@ -14179,11 +14275,6 @@ msgstr "آخرین اجرا" msgid "Last Sync On" msgstr "آخرین همگام سازی در" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "آخرین همگام سازی در" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14294,7 +14385,7 @@ msgstr "طول" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "طول آرایه داده ارسال شده بیشتر از مقدار حداکثر نقاط برچسب مجاز است!" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "طول {0} باید بین 1 تا 1000 باشد" @@ -14343,8 +14434,8 @@ 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:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14372,7 +14463,7 @@ msgstr "نام سربرگ" msgid "Letter Head Scripts" msgstr "اسکریپت های سربرگ" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "Letter Head هم نمی‌تواند غیرفعال و هم پیش‌فرض باشد" @@ -14389,7 +14480,7 @@ msgstr "سربرگ در HTML" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "سطح" @@ -14437,21 +14528,7 @@ msgstr "تم روشن" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/ui/filters/filter.js:18 msgid "Like" -msgstr "پسندیدن" - -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "مانند حد" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "مانند محدودیت در ساعت" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "پسندیدن در {0}: {1}" +msgstr "شبیه" #: frappe/desk/like.py:92 msgid "Liked" @@ -14493,6 +14570,7 @@ msgstr "خط" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14506,6 +14584,7 @@ msgstr "خط" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "" @@ -14636,10 +14715,15 @@ msgstr "مرتبط" msgid "Linked With" msgstr "مرتبط با" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +msgstr "لینکدین" + #. Label of the links (Table) field in DocType 'Address' #. Label of the links (Table) field in DocType 'Contact' #. Label of the links_section (Tab Break) field in DocType 'DocType' #. Label of the links (Table) field in DocType 'Customize Form' +#. Label of the links (Table) field in DocType 'Event' #. Label of the links (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14647,6 +14731,7 @@ msgstr "مرتبط با" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "پیوندها" @@ -14688,7 +14773,7 @@ msgstr "فیلتر لیست" msgid "List Settings" msgstr "تنظیمات لیست" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "تنظیمات لیست" @@ -14729,7 +14814,7 @@ msgstr "لیست پچ های اجرا شده" msgid "List setting message" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "لیست ها" @@ -14738,9 +14823,8 @@ msgstr "لیست ها" msgid "Load Balancing" msgstr "تعادل بار" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "بارگذاری بیشتر" @@ -14757,10 +14841,10 @@ msgstr "بارگذاری بیشتر" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "بارگذاری" @@ -14772,7 +14856,7 @@ msgstr "در حال بارگیری فیلترها..." msgid "Loading import file..." msgstr "در حال بارگیری فایل درون‌بُرد..." -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "در حال بارگیری نسخه ها..." @@ -14782,7 +14866,7 @@ msgstr "در حال بارگیری نسخه ها..." #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "بارگذاری..." @@ -14843,7 +14927,7 @@ msgstr "برای دسترسی به این صفحه وارد شوید." msgid "Log out" msgstr "خروج" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "از سیستم خارج شده است" @@ -14903,7 +14987,7 @@ msgstr "کد تأیید ورود از {}" msgid "Login and view in Browser" msgstr "وارد شوید و در مرورگر مشاهده کنید" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "ورود به سیستم برای مشاهده لیست فرم وب مورد نیاز است. برای مشاهده تنظیمات لیست، {0} را فعال کنید" @@ -14911,7 +14995,7 @@ msgstr "ورود به سیستم برای مشاهده لیست فرم وب مو msgid "Login link sent to your email" msgstr "لینک ورود به ایمیل شما ارسال شد" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "ورود به سیستم در حال حاضر مجاز نیست" @@ -14964,7 +15048,7 @@ msgstr "با لینک ایمیل وارد شوید" msgid "Login with email link expiry (in minutes)" msgstr "ورود با انقضای لینک ایمیل (بر حسب دقیقه)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "ورود با نام کاربری و گذرواژه مجاز نمی باشد." @@ -14983,7 +15067,7 @@ msgstr "" msgid "Logout" msgstr "خروج" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "خروج از تمام نشست‌ها" @@ -15087,7 +15171,10 @@ msgid "Major" 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 +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "نام را در جستجوی سراسری قابل جستجو کنید" @@ -15124,7 +15211,7 @@ msgstr "صفحه را عمومی می‌کند" #: frappe/desk/page/setup_wizard/install_fixtures.py:28 msgid "Male" -msgstr "" +msgstr "مذکر" #: frappe/www/me.html:56 msgid "Manage 3rd party apps" @@ -15163,7 +15250,7 @@ msgstr "اجباری بستگی دارد" msgid "Mandatory Depends On (JS)" msgstr "اجباری بستگی دارد به (JS)" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "اطلاعات اجباری از دست رفته:" @@ -15175,15 +15262,15 @@ msgstr "فیلد اجباری: تعیین نقش برای" msgid "Mandatory field: {0}" msgstr "فیلد اجباری: {0}" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "فیلدهای اجباری در جدول {0}، ردیف {1} مورد نیاز است" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "فیلدهای اجباری مورد نیاز در {0}" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "فیلدهای اجباری مورد نیاز:" @@ -15264,10 +15351,8 @@ msgid "Mark as Unread" msgstr "به عنوان \"خوانده نشده\" علامت گذاری کن" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15330,7 +15415,7 @@ msgstr "بیشترین طول" #. Label of the max_report_rows (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Max Report Rows" -msgstr "" +msgstr "حداکثر ردیف‌های گزارش" #. Label of the max_value (Int) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json @@ -15348,7 +15433,13 @@ msgstr "حداکثر اندازه پیوست" msgid "Max auto email report per user" msgstr "حداکثر گزارش ایمیل خودکار برای هر کاربر" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "حداکثر تعداد مجاز ثبت نام در هر ساعت" + +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "حداکثر عرض برای نوع ارز 100 پیکسل در ردیف {0} است" @@ -15357,20 +15448,15 @@ msgstr "حداکثر عرض برای نوع ارز 100 پیکسل در ردیف msgid "Maximum" msgstr "بیشترین" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "حداکثر محدودیت پیوست {0} برای {1} {2} رسیده است." -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "حداکثر تعداد فیلدها" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "حداکثر محدودیت پیوست {0} رسیده است." -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "حداکثر {0} ردیف مجاز است" @@ -15386,7 +15472,7 @@ msgstr "معنی ارسال، لغو، اصلاح" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15399,7 +15485,7 @@ msgstr "متوسط" msgid "Meeting" msgstr "ملاقات" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "شرایط را برآورده می‌کند؟" @@ -15440,7 +15526,7 @@ msgstr "منو" msgid "Merge with existing" msgstr "ادغام با موجود" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "ادغام فقط بین گره گروه به گروه یا گره برگ به برگ امکان پذیر است" @@ -15466,7 +15552,7 @@ msgstr "ادغام فقط بین گره گروه به گروه یا گره بر #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15506,7 +15592,7 @@ msgstr "پیام فرستاده شد" msgid "Message Type" msgstr "نوع پیام" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "پیام بریده شد" @@ -15538,29 +15624,21 @@ msgstr "پیام ها" msgid "Meta" msgstr "متا" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "توضیحات متا" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "تصویر متا" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "تگ‌های متا" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "عنوان متا" @@ -15613,7 +15691,7 @@ msgstr "روش" msgid "Method Not Allowed" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "روش برای ایجاد کارت شماره مورد نیاز است" @@ -15629,6 +15707,11 @@ msgstr "مرکز میانی" msgid "Middle Name" msgstr "نام میانی" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "نام میانی (اختیاری)" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15641,7 +15724,7 @@ msgstr "نقطه عطف" #: frappe/automation/doctype/milestone/milestone.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json msgid "Milestone Tracker" -msgstr "Milestone Tracker" +msgstr "ردیاب نقاط عطف" #. Option for the 'Function' (Select) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json @@ -15695,11 +15778,11 @@ msgstr "" msgid "Missing DocType" msgstr "DocType وجود ندارد" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "فیلد جا افتاده" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "فیلدهای گمشده" @@ -15735,15 +15818,16 @@ msgstr "تلفن همراه" msgid "Mobile No" msgstr "شماره موبایل" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "شماره موبایل" + #. Label of the modal_trigger (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Modal Trigger" msgstr "ماشه مدال" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "تغییر داده شده توسط" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15764,7 +15848,7 @@ msgstr "تغییر داده شده توسط" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -15940,10 +16024,12 @@ msgstr "اطلاعات بیشتر" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "اطلاعات بیشتر" @@ -15960,9 +16046,9 @@ msgstr "مطالب بیشتر برای پایین صفحه." #: frappe/public/js/frappe/ui/sort_selector.js:193 msgid "Most Used" -msgstr "بیشترین استفاده شده" +msgstr "پرکاربردترین" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "به احتمال زیاد گذرواژه شما خیلی طولانی است." @@ -15973,7 +16059,7 @@ msgstr "به احتمال زیاد گذرواژه شما خیلی طولانی msgid "Move" msgstr "حرکت" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "حرکت به" @@ -16009,7 +16095,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "به شماره ردیف بروید" @@ -16036,7 +16122,7 @@ msgstr "" msgid "Ms" msgstr "" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "چندین گره ریشه مجاز نیست." @@ -16059,7 +16145,7 @@ msgstr "باید در \"()\" محصور شود و شامل \"{0}\" باشد که msgid "Must be of type \"Attach Image\"" msgstr "باید از نوع «پیوست تصویر» باشد" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "برای دسترسی به این گزارش باید مجوز گزارش را داشته باشد." @@ -16077,7 +16163,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16115,9 +16201,9 @@ msgstr "توجه: این جعبه به دلیل استهلاک است. لطفا #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16127,11 +16213,11 @@ msgstr "نام" msgid "Name (Doc Name)" msgstr "نام (نام سند)" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "نام قبلاً گرفته شده است، لطفاً یک نام جدید تنظیم کنید" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "نام نمی‌تواند شامل نویسه های خاصی مانند {0} باشد" @@ -16143,7 +16229,7 @@ msgstr "نام نوع سند (DocType) که می‌خواهید این فیلد msgid "Name of the new Print Format" msgstr "نام قالب چاپ جدید" -#: frappe/model/naming.py:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "نام {0} نمی‌تواند {1} باشد" @@ -16160,7 +16246,7 @@ msgstr "حدس زدن نام و نام خانوادگی به تنهایی آسا #: frappe/core/doctype/document_naming_rule/document_naming_rule.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Naming" -msgstr "نامگذاری" +msgstr "نام‌گذاری" #. Description of the 'Auto Name' (Data) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json @@ -16174,17 +16260,17 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Naming Rule" -msgstr "قانون نامگذاری" +msgstr "قانون نام‌گذاری" #. Label of the naming_series_tab (Tab Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Naming Series" -msgstr "سری نامگذاری" +msgstr "سری نام‌گذاری" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" -msgstr "سری نامگذاری الزامی است" +msgstr "سری نام‌گذاری الزامی است" #. Option for the 'Type' (Select) field in DocType 'Web Template' #. Label of the top_bar (Section Break) field in DocType 'Website Settings' @@ -16219,12 +16305,12 @@ msgstr "الگوی نوار ناوبری" msgid "Navbar Template Values" msgstr "مقادیر الگوی نوار ناوبری" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "پیمایش لیست به پایین" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "پیمایش لیست به بالا" @@ -16239,7 +16325,11 @@ msgstr "به محتوای اصلی بروید" msgid "Navigation Settings" msgstr "تنظیمات ناوبری" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "به کمک نیاز دارید؟" + +#: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "برای ویرایش محیط کار خصوصی سایر کاربران به نقش مدیر محیط کار نیاز دارید" @@ -16247,7 +16337,7 @@ msgstr "برای ویرایش محیط کار خصوصی سایر کاربران msgid "Negative Value" msgstr "مقدار منفی" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16260,6 +16350,12 @@ msgstr "خطای مجموعه تو در تو. لطفا با ادمین تماس msgid "Network Printer Settings" msgstr "تنظیمات چاپگر شبکه" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +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 @@ -16268,7 +16364,7 @@ msgstr "تنظیمات چاپگر شبکه" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16289,10 +16385,6 @@ msgstr "آدرس جدید" msgid "New Chart" msgstr "نمودار جدید" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "نظر جدید در مورد {0}: {1}" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "مخاطب جدید" @@ -16301,10 +16393,10 @@ msgstr "مخاطب جدید" msgid "New Custom Block" msgstr "بلوک سفارشی جدید" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" -msgstr "فرمت چاپ سفارشی جدید" +msgstr "قالب چاپ سفارشی جدید" #. Label of the new_document_form (Check) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json @@ -16333,7 +16425,7 @@ msgstr "رویداد جدید" msgid "New Folder" msgstr "پوشه جدید" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "نمودار کانبان جدید" @@ -16368,12 +16460,12 @@ msgstr "کارت شماره جدید" msgid "New Onboarding" msgstr "آشناسازی جدید" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "گذرواژه جدید" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "نام قالب چاپ جدید" @@ -16382,7 +16474,7 @@ msgstr "نام قالب چاپ جدید" msgid "New Quick List" msgstr "لیست سریع جدید" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "نام گزارش جدید" @@ -16400,8 +16492,8 @@ msgstr "میانبر جدید" msgid "New Users (Last 30 days)" msgstr "کاربران جدید (30 روز گذشته)" -#: frappe/core/doctype/version/version_view.html:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "مقدار جدید" @@ -16458,13 +16550,13 @@ msgstr "مقدار جدیدی که باید تنظیم شود" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "{0} جدید" @@ -16480,7 +16572,7 @@ msgstr "{0} {1} جدید به داشبورد {2} اضافه شد" msgid "New {0} {1} created" msgstr "{0} {1} جدید ایجاد شد" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "{0} جدید: {1}" @@ -16488,7 +16580,7 @@ msgstr "{0} جدید: {1}" msgid "New {} releases for the following apps are available" msgstr "نسخه‌های جدید {} برای برنامه‌های زیر در دسترس هستند" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "کاربر تازه ایجاد شده {0} هیچ نقشی فعال ندارد." @@ -16501,7 +16593,7 @@ msgstr "مدیر خبرنامه" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16608,14 +16700,15 @@ msgstr "بعد روی کلیک کنید" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "خیر" @@ -16665,6 +16758,10 @@ msgstr "بدون حساب ایمیل" msgid "No Email Accounts Assigned" msgstr "هیچ حساب ایمیلی اختصاص داده نشده است" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "بدون ایمیل" @@ -16700,15 +16797,15 @@ msgstr "هیچ کاربر LDAP برای ایمیل پیدا نشد: {0}" msgid "No Label" msgstr "بدون برچسب" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: frappe/public/js/frappe/list/bulk_operations.js:98 #: frappe/public/js/frappe/list/bulk_operations.js:170 #: frappe/utils/weasyprint.py:52 msgid "No Letterhead" msgstr "بدون سربرگ" -#: frappe/model/naming.py:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "نامی برای {0} مشخص نشده است" @@ -16716,7 +16813,7 @@ msgstr "نامی برای {0} مشخص نشده است" msgid "No New notifications" msgstr "بدون اعلان جدید" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "هیچ مجوزی مشخص نشده است" @@ -16736,11 +16833,11 @@ msgstr "هیچ نمودار مجاز در این داشبورد وجود ندا msgid "No Preview" msgstr "بدون پیش نمایش" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "پیش نمایش موجود نیست" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "هیچ چاپگری در دسترس نیست." @@ -16756,11 +16853,11 @@ msgstr "هیچ نتیجه ای" msgid "No Results found" msgstr "نتیجه ای پیدا نشد" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "هیچ نقشی مشخص نشده است" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "فیلد انتخابی یافت نشد" @@ -16768,7 +16865,7 @@ msgstr "فیلد انتخابی یافت نشد" msgid "No Suggestions" msgstr "بدون پیشنهاد" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "بدون تگ" @@ -16780,7 +16877,7 @@ msgstr "رویدادهای آینده وجود ندارد" msgid "No address added yet." msgstr "هنوز آدرسی اضافه نشده است." -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "هیچ هشداری برای امروز وجود ندارد" @@ -16808,23 +16905,19 @@ msgstr "هیچ تغییری برای همگام سازی وجود ندارد" msgid "No changes to update" msgstr "هیچ تغییری برای به‌روزرسانی وجود ندارد" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "هنوز نظری وجود ندارد" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " -msgstr "هنوز نظری وجود ندارد. " +msgid "No comments yet." +msgstr "هنوز نظری وجود ندارد." #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." msgstr "هنوز مخاطبی اضافه نشده است." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "هیچ مخاطبی به سند پیوند داده نشده است" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "داده ای برای برون‌بُرد نیست" @@ -16840,11 +16933,15 @@ msgstr "هیچ سندی با برچسب {0} یافت نشد" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "هیچ حساب ایمیلی با کاربر مرتبط نیست. لطفاً یک حساب زیر کاربر > صندوق ورودی ایمیل اضافه کنید." +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "هیچ لاگ ناموفقی نیست" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "هیچ فیلدی یافت نشد که بتوان از آن به عنوان ستون Kanban استفاده کرد. از فرم سفارشی برای افزودن یک فیلد سفارشی از نوع \"انتخاب\" استفاده کنید." @@ -16868,7 +16965,7 @@ msgstr "هیچ رکورد دیگری وجود ندارد" msgid "No matching records. Search something new" msgstr "هیچ رکورد منطبقی وجود ندارد. چیز جدیدی را جستجو کنید" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "موارد دیگری برای نمایش وجود ندارد" @@ -16912,7 +17009,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "بدون مجوز برای \"{0}\" {1}" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "بدون اجازه خواندن {0}" @@ -16924,7 +17021,7 @@ msgstr "بدون مجوز برای {0} {1} {2}" msgid "No records deleted" msgstr "هیچ رکوردی حذف نشد" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "هیچ رکوردی در {0} وجود ندارد" @@ -16940,7 +17037,7 @@ msgstr "هیچ رکوردی برون‌بُرد نخواهد شد" msgid "No rows" msgstr "بدون ردیف" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -16960,11 +17057,11 @@ msgstr "نه {0}" msgid "No {0} Found" msgstr "هیچ {0} یافت نشد" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "هیچ {0} یافت نشد" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "هیچ {0} با فیلترهای منطبق پیدا نشد. برای دیدن همه {0} فیلترها را پاک کنید." @@ -16973,7 +17070,7 @@ msgid "No {0} mail" msgstr "نامه {0} وجود ندارد" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "شماره" @@ -17016,7 +17113,7 @@ msgstr "کپی های عادی شده" msgid "Normalized Query" msgstr "پرسمان عادی شده" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "مجاز نیست" @@ -17027,17 +17124,17 @@ msgstr "مجاز نیست: کاربر غیرفعال" #: frappe/public/js/frappe/ui/filters/filter.js:36 msgid "Not Ancestors Of" -msgstr "نه اجداد" +msgstr "بالادست نیست از" #: frappe/public/js/frappe/ui/filters/filter.js:34 msgid "Not Descendants Of" -msgstr "نه فرزندان" +msgstr "زیرمجموعه‌اش نیست" #: frappe/public/js/frappe/ui/filters/filter.js:17 msgid "Not Equals" -msgstr "برابر نیست" +msgstr "برابر نیست با" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "پیدا نشد" @@ -17048,11 +17145,11 @@ msgstr "مفید نیست" #: frappe/public/js/frappe/ui/filters/filter.js:21 msgid "Not In" -msgstr "نه در" +msgstr "هیچ‌کدام از" #: frappe/public/js/frappe/ui/filters/filter.js:19 msgid "Not Like" -msgstr "نه مانند" +msgstr "شبیه نیست به" #: frappe/public/js/frappe/form/linked_with.js:45 msgid "Not Linked to any record" @@ -17063,20 +17160,19 @@ msgstr "به هیچ رکوردی مرتبط نیست" msgid "Not Nullable" msgstr "غیرقابل تهی" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "غیر مجاز" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "خواندن {0} مجاز نیست" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17085,10 +17181,10 @@ msgstr "منتشر نشده" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "ذخیره نشد" @@ -17120,7 +17216,7 @@ msgstr "یک مقدار جدا شده با کاما معتبر نیست (فای msgid "Not a valid User Image." msgstr "تصویر کاربر معتبری نیست." -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "یک اقدام گردش کار معتبر نیست" @@ -17136,11 +17232,11 @@ msgstr "غیر فعال" msgid "Not allowed for {0}: {1}" msgstr "برای {0} مجاز نیست: {1}" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "مجاز به پیوست کردن سند {0} نیست، لطفاً Allow Print For {0} را در تنظیمات چاپ فعال کنید" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "مجاز به ایجاد Virtual DocType سفارشی نیست." @@ -17164,27 +17260,27 @@ msgstr "پیدا نشد" msgid "Not in Developer Mode" msgstr "در حالت توسعه دهنده نیست" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 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:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "غیر مجاز" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "مشاهده {0} مجاز نیست" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17219,7 +17315,7 @@ msgstr "توجه: برای بهترین نتیجه، تصاویر باید از msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "توجه: نشست‌های متعدد در مورد دستگاه تلفن همراه مجاز خواهد بود" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "توجه: این با کاربر به اشتراک گذاشته خواهد شد." @@ -17243,10 +17339,9 @@ msgstr "چیزی برای انجام مجدد باقی نمانده است" msgid "Nothing left to undo" msgstr "چیزی برای لغو باقی نمانده است" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "چیزی برای نشان دادن نیست" @@ -17292,15 +17387,15 @@ msgstr "سند ثبت شده اعلان" msgid "Notification sent to" msgstr "اعلان ارسال شد به" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17351,7 +17446,7 @@ msgstr "اطلاع دادن در صورت عدم پاسخگویی (بر حسب msgid "Notify users with a popup when they log in" msgstr "هنگام ورود کاربران با یک پنجره بازشو به آنها اطلاع دهید" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "اکنون" @@ -17409,12 +17504,12 @@ msgstr "تعداد گروه‌ها" msgid "Number of Queries" msgstr "تعداد پرسمان‌ها" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "تعداد فیلدهای پیوست بیش از {} است، محدودیت به {} به روز شده است." -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "تعداد نسخه های پشتیبان باید بیشتر از صفر باشد." @@ -17523,11 +17618,11 @@ msgstr "برنامه OTP" msgid "OTP Issuer Name" msgstr "نام صادرکننده OTP" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "بازنشانی مخفی OTP - {0}" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "OTP Secret بازنشانی شده است. ثبت نام مجدد در ورود بعدی الزامی است." @@ -17646,7 +17741,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "در {0}، {1} نوشت:" @@ -17686,7 +17781,7 @@ msgstr "تکمیل آشناسازی" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "پس از ارسال، اسناد قابل ارسال قابل تغییر نیستند. آنها فقط می‌توانند لغو و اصلاح شوند." @@ -17731,7 +17826,7 @@ msgstr "فقط مدیر مجاز به استفاده از Recorder است" msgid "Only Allow Edit For" msgstr "فقط اجازه ویرایش برای" -#: frappe/core/doctype/doctype/doctype.py:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "فقط گزینه‌های مجاز برای فیلد داده عبارتند از:" @@ -17748,7 +17843,7 @@ msgstr "فقط Workspace Manager می‌تواند فضاهای کاری عمو msgid "Only allowed to export customizations in developer mode" msgstr "فقط مجاز به صدور سفارشی سازی در حالت برنامه نویس است" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "فقط پیش‌نویس اسناد را می‌توان دور انداخت" @@ -17767,19 +17862,19 @@ msgstr "فقط فیلدهای اجباری برای رکوردهای جدید ض msgid "Only one {0} can be set as primary." msgstr "فقط یک {0} را می‌توان به عنوان اصلی تنظیم کرد." -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "فقط گزارش هایی از نوع Report Builder قابل حذف هستند" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "فقط گزارش‌هایی از نوع Report Builder قابل ویرایش هستند" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "فقط DocType های استاندارد مجاز به سفارشی سازی از سفارشی‌سازی فرم هستند." -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17849,7 +17944,7 @@ msgstr "سند مرجع را باز کنید" msgid "Open Settings" msgstr "باز کردن تنظیمات" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "برنامه های کاربردی منبع باز برای وب" @@ -17867,7 +17962,7 @@ msgstr "" msgid "Open a module or tool" msgstr "یک ماژول یا ابزار را باز کنید" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "" @@ -17875,7 +17970,7 @@ msgstr "" msgid "Open in a new tab" msgstr "باز کردن در یک تب جدید" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "مورد فهرست را باز کنید" @@ -17890,13 +17985,13 @@ msgstr "برنامه احراز هویت خود را در تلفن همراه خ #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "باز کردن {0}" @@ -17905,6 +18000,10 @@ msgstr "باز کردن {0}" msgid "OpenID Configuration" msgstr "پیکربندی OpenID" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" @@ -17920,7 +18019,7 @@ msgstr "باز شد" msgid "Operation" msgstr "عملیات" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "اپراتور باید یکی از {0} باشد" @@ -17946,7 +18045,7 @@ msgstr "گزینه 2" msgid "Option 3" msgstr "گزینه 3" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "گزینه {0} برای فیلد {1} یک جدول فرزند نیست" @@ -17966,6 +18065,7 @@ msgstr "اختیاری: اگر این عبارت درست باشد، هشدار #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -17974,11 +18074,12 @@ msgstr "اختیاری: اگر این عبارت درست باشد، هشدار #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "گزینه‌ها" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "نوع فیلد «پیوند پویا» گزینه‌ها باید به فیلد پیوند دیگری با گزینه‌های «DocType» اشاره کند." @@ -17987,7 +18088,7 @@ msgstr "نوع فیلد «پیوند پویا» گزینه‌ها باید به msgid "Options Help" msgstr "راهنما گزینه‌ها" -#: frappe/core/doctype/doctype/doctype.py:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "گزینه‌های فیلد رتبه بندی می‌تواند از 3 تا 10 باشد" @@ -17995,7 +18096,7 @@ msgstr "گزینه‌های فیلد رتبه بندی می‌تواند از 3 msgid "Options for select. Each option on a new line." msgstr "گزینه‌هایی برای انتخاب هر گزینه در یک خط جدید." -#: frappe/core/doctype/doctype/doctype.py:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 msgid "Options for {0} must be set before setting the default value." msgstr "گزینه‌های {0} باید قبل از تنظیم مقدار پیش‌فرض تنظیم شوند." @@ -18003,7 +18104,7 @@ msgstr "گزینه‌های {0} باید قبل از تنظیم مقدار پی msgid "Options is required for field {0} of type {1}" msgstr "گزینه‌ها برای فیلد {0} از نوع {1} لازم است" -#: frappe/model/base_document.py:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "گزینه‌ها برای فیلد پیوند {0} تنظیم نشده است" @@ -18019,7 +18120,7 @@ msgstr "نارنجی" msgid "Order" msgstr "سفارش" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18035,12 +18136,12 @@ msgstr "تاریخچه سازمان" msgid "Org History Heading" msgstr "عنوان تاریخچه سازمان" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "جهت" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "مقدار اصلی" @@ -18108,10 +18209,6 @@ msgstr "خروجی" msgid "Overview" msgstr "بررسی اجمالی" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "مالک" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" @@ -18119,9 +18216,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:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "PDF" @@ -18162,11 +18259,11 @@ msgstr "تولید PDF ناموفق بود" msgid "PDF generation failed because of broken image links" msgstr "تولید PDF به دلیل پیوندهای تصویر شکسته انجام نشد" -#: frappe/printing/page/print/print.js:616 +#: frappe/printing/page/print/print.js:656 msgid "PDF generation may not work as expected." msgstr "تولید PDF ممکن است آنطور که انتظار می رود کار نکند." -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:574 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "چاپ PDF از طریق \"Raw Print\" پشتیبانی نمی‌شود." @@ -18338,7 +18435,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:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "صفحه {0} از {1}" @@ -18365,7 +18462,7 @@ msgstr "والد DocType" msgid "Parent Document Type" msgstr "نوع سند والد" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "برای ایجاد کارت شماره، نوع سند والد مورد نیاز است" @@ -18382,11 +18479,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:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "زمین والد (درخت)" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "فیلد والد باید یک نام فیلد معتبر باشد" @@ -18395,7 +18492,7 @@ msgstr "فیلد والد باید یک نام فیلد معتبر باشد" msgid "Parent Label" msgstr "برچسب والد" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 msgid "Parent Missing" msgstr "والد جا افتاده است" @@ -18469,8 +18566,8 @@ msgstr "منفعل" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18480,7 +18577,7 @@ msgstr "منفعل" msgid "Password" msgstr "گذرواژه" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "گذرواژه ایمیل ارسال شد" @@ -18493,7 +18590,7 @@ msgstr "بازنشانی گذرواژه" msgid "Password Reset Link Generation Limit" msgstr "بازنشانی گذرواژه محدودیت تولید پیوند" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "گذرواژه را نمی‌توان فیلتر کرد" @@ -18510,6 +18607,10 @@ msgstr "گذرواژه Base DN" msgid "Password is required or select Awaiting Password" msgstr "گذرواژه لازم است یا در انتظار گذرواژه را انتخاب کنید" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "گذرواژه معتبر است. 👍" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "گذرواژه در حساب ایمیل جا افتاده است" @@ -18518,7 +18619,7 @@ msgstr "گذرواژه در حساب ایمیل جا افتاده است" msgid "Password not found for {0} {1} {2}" msgstr "گذرواژه برای {0} {1} {2} یافت نشد" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18526,11 +18627,11 @@ msgstr "" msgid "Password set" msgstr "تنظیم گذرواژه" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "اندازه گذرواژه از حداکثر اندازه مجاز بیشتر است" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." msgstr "اندازه گذرواژه از حداکثر اندازه مجاز بیشتر است." @@ -18538,7 +18639,7 @@ msgstr "اندازه گذرواژه از حداکثر اندازه مجاز بی msgid "Passwords do not match" msgstr "گذرواژه‌ها مطابقت ندارند" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "گذرواژه‌ها مطابقت ندارند!" @@ -18608,10 +18709,12 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "انتظار" @@ -18620,7 +18723,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 @@ -18637,7 +18740,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' @@ -18687,7 +18790,7 @@ msgstr "برای همیشه {0} ارسال شود؟" msgid "Permanently delete {0}?" msgstr "{0} برای همیشه حذف شود؟" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "خطای مجوز" @@ -18747,16 +18850,16 @@ msgstr "نوع مجوز" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: frappe/core/page/permission_manager/permission_manager.js:221 #: frappe/core/workspace/users/users.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Permissions" msgstr "مجوزها" -#: frappe/core/doctype/doctype/doctype.py:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "خطای مجوزها" @@ -18818,15 +18921,18 @@ msgstr "درخواست دانلود داده های شخصی" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -18839,13 +18945,13 @@ msgstr "تلفن" msgid "Phone No." msgstr "شماره تلفن" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 msgid "Phone Number {0} set in field {1} is not valid." msgstr "شماره تلفن {0} تنظیم شده در فیلد {1} معتبر نیست." -#: frappe/public/js/frappe/form/print_utils.js:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "ستون ها را انتخاب کنید" @@ -18905,11 +19011,11 @@ msgstr "لطفاً برای استفاده از قابلیت ldap کتابخان msgid "Please Set Chart" msgstr "لطفا نمودار را تنظیم کنید" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "لطفا تنظیمات پیامک را به روز کنید" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "لطفا یک موضوع به ایمیل خود اضافه کنید" @@ -18917,7 +19023,7 @@ msgstr "لطفا یک موضوع به ایمیل خود اضافه کنید" msgid "Please add a valid comment." msgstr "لطفا یک نظر معتبر اضافه کنید." -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18925,11 +19031,11 @@ msgstr "" msgid "Please attach a file first." msgstr "لطفا ابتدا یک فایل پیوست کنید." -#: frappe/printing/doctype/letter_head/letter_head.py:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 msgid "Please attach an image file to set HTML for Footer." msgstr "لطفاً یک فایل تصویری برای تنظیم HTML برای پاورقی پیوست کنید." -#: frappe/printing/doctype/letter_head/letter_head.py:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "لطفاً یک فایل تصویری را برای تنظیم HTML برای Letter Head پیوست کنید." @@ -18937,21 +19043,17 @@ msgstr "لطفاً یک فایل تصویری را برای تنظیم HTML بر msgid "Please attach the package" msgstr "لطفا بسته را پیوست کنید" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "لطفاً URL پیکربندی OpenID را بررسی کنید" - #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "لطفاً مقادیر فیلتر تنظیم شده برای نمودار داشبورد را بررسی کنید: {}" -#: frappe/model/base_document.py:951 +#: frappe/model/base_document.py:1008 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "لطفاً مقدار تنظیم شده \"Fetch From\" را برای فیلد {0} بررسی کنید" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" -msgstr "لطفا ایمیل خود را برای تایید بررسی کنید" +msgstr "لطفا ایمیل خود را برای تأیید بررسی کنید" #: frappe/email/smtp.py:134 msgid "Please check your email login credentials." @@ -18981,11 +19083,11 @@ msgstr "لطفا روی لینک زیر کلیک کنید تا گذرواژه ج msgid "Please confirm your action to {0} this document." msgstr "لطفاً اقدام خود را در {0} این سند تأیید کنید." -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "لطفا ابتدا کارت ایجاد کنید" @@ -19001,20 +19103,20 @@ msgstr "لطفاً فیلد را از {0} حذف کنید یا نوع doctype م msgid "Please do not change the template headings." msgstr "لطفا عناوین قالب را تغییر ندهید." -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" msgstr "لطفاً برای ایجاد تغییرات این را کپی کنید" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "لطفاً حداقل یک کلید ورود به سیستم اجتماعی یا LDAP یا ورود با پیوند ایمیل را قبل از غیرفعال کردن ورود مبتنی بر نام کاربری/گذرواژه فعال کنید." #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "لطفا پنجره های بازشو را فعال کنید" @@ -19051,7 +19153,7 @@ msgstr "لطفاً قبل از فعال شدن ورود به سیستم اجتم msgid "Please enter Client Secret before social login is enabled" msgstr "لطفاً قبل از فعال شدن ورود به سیستم اجتماعی، Client Secret را وارد کنید" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "لطفاً URL پیکربندی OpenID را وارد کنید" @@ -19088,11 +19190,12 @@ msgstr "لطفا گذرواژه جدید خود را وارد کنید." msgid "Please enter your old password." msgstr "لطفا گذرواژه قدیمی خود را وارد کنید." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "لطفاً پیوست شده را پیدا کنید {0}: {1}" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "لطفا برای ارسال نظر وارد شوید." @@ -19100,11 +19203,11 @@ msgstr "لطفا برای ارسال نظر وارد شوید." msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "لطفاً مطمئن شوید که اسناد ارتباطی مرجع به صورت دایره ای پیوند داده نشده اند." -#: frappe/model/document.py:988 +#: frappe/model/document.py:992 msgid "Please refresh to get the latest document." msgstr "لطفاً برای دریافت آخرین سند، بازخوانی کنید." -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:575 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "لطفاً نگاشت چاپگر را در تنظیمات چاپگر حذف کنید و دوباره امتحان کنید." @@ -19120,7 +19223,7 @@ msgstr "لطفاً سند را قبل از تخصیص ذخیره کنید" msgid "Please save the document before removing assignment" msgstr "لطفاً سند را قبل از حذف تخصیص ذخیره کنید" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "لطفا ابتدا گزارش را ذخیره کنید" @@ -19128,7 +19231,7 @@ msgstr "لطفا ابتدا گزارش را ذخیره کنید" msgid "Please save to edit the template." msgstr "لطفا برای ویرایش الگو ذخیره کنید." -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "لطفا ابتدا DocType را انتخاب کنید" @@ -19136,19 +19239,19 @@ msgstr "لطفا ابتدا DocType را انتخاب کنید" msgid "Please select Entity Type first" msgstr "لطفا ابتدا Entity Type را انتخاب کنید" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "لطفا حداقل امتیاز گذرواژه را انتخاب کنید" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "لطفاً فیلدهای X و Y را انتخاب کنید" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "لطفاً یک کد کشور برای فیلد {1} انتخاب کنید." -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "" @@ -19156,7 +19259,7 @@ msgstr "" msgid "Please select a file or url" msgstr "لطفاً یک فایل یا آدرس اینترنتی را انتخاب کنید" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" msgstr "لطفاً یک فایل csv معتبر با داده انتخاب کنید" @@ -19168,7 +19271,7 @@ msgstr "لطفاً یک فیلتر تاریخ معتبر انتخاب کنید" msgid "Please select applicable Doctypes" msgstr "لطفاً Doctypes قابل اجرا را انتخاب کنید" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "لطفاً حداقل 1 ستون از {0} برای مرتب‌سازی/گروه‌بندی انتخاب کنید" @@ -19194,11 +19297,11 @@ msgstr "لطفاً {0} را انتخاب کنید" msgid "Please set Email Address" msgstr "لطفا آدرس ایمیل را تنظیم کنید" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:589 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "لطفاً یک نگاشت چاپگر برای این قالب چاپی در تنظیمات چاپگر تنظیم کنید" -#: frappe/public/js/frappe/views/reports/query_report.js:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "لطفا فیلترها را تنظیم کنید" @@ -19206,7 +19309,7 @@ msgstr "لطفا فیلترها را تنظیم کنید" msgid "Please set filters value in Report Filter table." msgstr "لطفاً مقدار فیلترها را در جدول گزارش فیلتر تنظیم کنید." -#: frappe/model/naming.py:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "لطفا نام سند را تنظیم کنید" @@ -19218,7 +19321,7 @@ msgstr "لطفاً ابتدا اسناد زیر را در این داشبورد msgid "Please set the series to be used." msgstr "لطفاً سریال مورد استفاده را تنظیم کنید." -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "لطفاً SMS را قبل از تنظیم آن به عنوان یک روش احراز هویت، از طریق تنظیمات پیامک تنظیم کنید" @@ -19242,23 +19345,23 @@ msgstr "لطفا مشخص کنید" msgid "Please specify a valid parent DocType for {0}" msgstr "لطفاً یک DocType والد معتبر برای {0} مشخص کنید" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "لطفاً مشخص کنید کدام قسمت تاریخ باید بررسی شود" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "لطفاً مشخص کنید که کدام قسمت مقدار باید بررسی شود" @@ -19279,7 +19382,7 @@ msgstr "لطفاً از یک فیلتر جستجوی معتبر LDAP استفا msgid "Please use following links to download file backup." msgstr "" -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "لطفاً برای اطلاعات بیشتر به https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key مراجعه کنید." @@ -19333,7 +19436,7 @@ msgstr "آیتم منوی پورتال" msgid "Portal Settings" msgstr "تنظیمات پورتال" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "عمودی" @@ -19361,6 +19464,7 @@ msgstr "پستی" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "کد پستی" @@ -19369,15 +19473,7 @@ msgstr "کد پستی" msgid "Posting Timestamp" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "پست های {0}" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "پست های ثبت شده تحت {0}" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19392,7 +19488,11 @@ msgstr "" msgid "Precision" msgstr "دقت، درستی" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "دقت باید بین 1 تا 6 باشد" @@ -19440,7 +19540,7 @@ msgstr "" msgid "Prepared Report User" msgstr "کاربر گزارش آماده شده" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "ارائه گزارش آماده انجام نشد" @@ -19448,7 +19548,7 @@ msgstr "ارائه گزارش آماده انجام نشد" msgid "Preparing Report" msgstr "تهیه گزارش" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "الگو را برای پیام ایمیل آماده کنید" @@ -19469,7 +19569,7 @@ msgstr "برای ذخیره Enter را فشار دهید" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19483,13 +19583,6 @@ msgstr "پیش نمایش" msgid "Preview HTML" msgstr "پیش نمایش HTML" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "پیش نمایش تصویر" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19518,7 +19611,7 @@ msgid "Preview:" msgstr "پیش نمایش:" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19530,12 +19623,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "قبلی" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "هش قبلی" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "ارسال قبلی" @@ -19581,19 +19669,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:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "چاپ" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "چاپ" @@ -19611,12 +19699,12 @@ 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:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" -msgstr "فرمت چاپ" +msgstr "قالب چاپ" #. Label of a Link in the Tools Workspace #. Label of the print_format_builder (Check) field in DocType 'Print Format' @@ -19641,7 +19729,7 @@ msgstr "فرمت ساز چاپ بتا" #: frappe/utils/pdf.py:63 msgid "Print Format Error" -msgstr "خطای فرمت چاپ" +msgstr "خطای قالب چاپ" #. Name of a DocType #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json @@ -19661,9 +19749,9 @@ 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:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19702,7 +19790,7 @@ msgstr "اگر مقدار نداشت در پرینت نمایش داده نشو msgid "Print Language" msgstr "زبان چاپ" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "چاپ برای چاپگر ارسال شد!" @@ -19719,8 +19807,8 @@ msgstr "سرور چاپ" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "تنظیمات چاپ" @@ -19768,11 +19856,11 @@ msgstr "چاپ سند" msgid "Print with letterhead" msgstr "چاپ با سربرگ" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "چاپگر" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "نگاشت چاپگر" @@ -19782,11 +19870,11 @@ msgstr "نگاشت چاپگر" msgid "Printer Name" msgstr "نام چاپگر" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "تنظیمات چاپگر" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "نگاشت چاپگر تنظیم نشده است." @@ -19844,7 +19932,7 @@ msgstr "نکته پیشنهادی: برای ارسال مرجع سند، msgid "Proceed" msgstr "ادامه دهید" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "در هر صورت انجام شود" @@ -19865,18 +19953,28 @@ msgstr "پروفسور" msgid "Profile" msgstr "نمایه" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "تصویر نمایه" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "نمایه با موفقیت به‌روزرسانی شد." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "پیشرفت" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: 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:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: 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/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "ویژگی" @@ -19913,7 +20011,7 @@ msgstr "نوع ویژگی" msgid "Protect Attached Files" msgstr "محافظت از فایل های پیوست شده" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "فایل محافظت شده" @@ -19962,24 +20060,18 @@ msgstr "" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "انتشار" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -19989,15 +20081,6 @@ msgstr "انتشار" msgid "Published" msgstr "منتشر شده" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "منتشر شده در" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "منتشر شده در" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json @@ -20063,12 +20146,12 @@ msgstr "بنفش" #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Push Notification Settings" -msgstr "تنظیمات Push Notification" +msgstr "تنظیمات اعلان‌های فوری" #. Label of a Card Break in the Integrations Workspace #: frappe/integrations/workspace/integrations/integrations.json msgid "Push Notifications" -msgstr "Push Notifications" +msgstr "اعلان‌های فوری" #. Label of the push_to_google_calendar (Check) field in DocType 'Google #. Calendar' @@ -20087,7 +20170,9 @@ msgid "Put on Hold" msgstr "در حالت انتظار قرار دهید" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "پایتون" @@ -20099,9 +20184,9 @@ msgstr "کد QR" msgid "QR Code for Login Verification" msgstr "کد QR برای تأیید ورود" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " -msgstr " سینی QZ ناموفق بود:" +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" +msgstr "سینی QZ ناموفق بود:" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' @@ -20150,7 +20235,7 @@ msgstr "گزارش پرسمان" msgid "Query analysis complete. Check suggested indexes." msgstr "" -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "پرسمان باید از نوع SELECT یا فقط خواندنی WITH باشد." @@ -20250,7 +20335,7 @@ msgstr "فیلتر لیست سریع" msgid "Quick Lists" msgstr "لیست های سریع" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "نقل قول باید بین 0 تا 3 باشد" @@ -20287,12 +20372,6 @@ msgstr "دامنه" msgid "Rate Limiting" msgstr "محدود کردن تعداد درخواست" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "محدودیت های نرخ" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20312,7 +20391,7 @@ msgstr "رتبه بندی" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "دستورات خام" @@ -20329,7 +20408,7 @@ msgstr "ایمیل خام" msgid "Raw Printing" msgstr "چاپ خام" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "تنظیمات چاپ خام" @@ -20346,8 +20425,8 @@ msgid "Re:" msgstr "پاسخ:" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "پاسخ: {0}" @@ -20403,11 +20482,6 @@ msgstr "فقط خواندن بستگی دارد به (JS)" msgid "Read Only Mode" msgstr "حالت فقط خواندن" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "وقت خواندن" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20423,7 +20497,7 @@ msgstr "خوانده شده توسط گیرنده روشن" msgid "Read mode" msgstr "حالت خواندن" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "برای دانستن بیشتر مستندات را بخوانید" @@ -20443,11 +20517,11 @@ msgstr "" msgid "Reason" msgstr "دلیل" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "بازسازی" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "بازسازی درخت" @@ -20485,7 +20559,7 @@ msgstr "پارامتر گیرنده" msgid "Recent years are easy to guess." msgstr "حدس زدن سال های اخیر آسان است." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "اخیر" @@ -20496,6 +20570,14 @@ msgstr "اخیر" msgid "Recipient" msgstr "گیرنده" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20528,7 +20610,7 @@ msgstr "" msgid "Records for following doctypes will be filtered" msgstr "رکوردها برای doctypes زیر فیلتر خواهد شد" -#: frappe/core/doctype/doctype/doctype.py:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "" @@ -20545,6 +20627,11 @@ msgstr "قرمز" msgid "Redirect HTTP Status" msgstr "Redirect HTTP Status" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20578,7 +20665,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 "پس از تأیید موفقیت آمیز به این URL تغییر مسیر دهید." #. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json @@ -20639,6 +20726,11 @@ msgstr "تاریخ مرجع" msgid "Reference Datetime" msgstr "" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20666,7 +20758,6 @@ msgstr "نام سند مرجع" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20707,9 +20798,9 @@ msgstr "نام سند مرجع" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20727,9 +20818,9 @@ msgstr "نام سند مرجع" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20759,7 +20850,6 @@ msgstr "نوع سند مرجع" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -20807,15 +20897,15 @@ msgstr "مرجع: {0} {1}" msgid "Referrer" msgstr "ارجاع دهنده" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "تازه کردن" @@ -20829,6 +20919,10 @@ msgstr "تازه کردن همه" msgid "Refresh Google Sheet" msgstr "برگه Google را بازخوانی کنید" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -20840,18 +20934,18 @@ msgstr "برگه Google را بازخوانی کنید" msgid "Refresh Token" msgstr "Refresh Token" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "تازه کردن" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "تازه کردن..." -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "ثبت شده اما غیرفعال است" @@ -20990,7 +21084,7 @@ msgstr "" #: frappe/public/js/form_builder/components/Section.vue:279 msgid "Remove last column" -msgstr "" +msgstr "حذف آخرین ستون" #: frappe/public/js/print_format_builder/PrintFormatSection.vue:130 msgid "Remove page break" @@ -21028,7 +21122,7 @@ msgstr "تغییر نام فیلد" msgid "Rename {0}" msgstr "تغییر نام {0}" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "تغییر نام فایل ها و جایگزینی کد در کنترلرها، لطفا بررسی کنید!" @@ -21159,9 +21253,9 @@ msgstr "پاسخ به همه" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "گزارش" @@ -21231,11 +21325,11 @@ 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:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "نام گزارش" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "نام گزارش، فیلد گزارش و عملکرد برای ایجاد کارت شماره مورد نیاز است" @@ -21269,21 +21363,21 @@ msgstr "نمای گزارش" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 msgid "Report cannot be set for Single types" msgstr "گزارش را نمی‌توان برای انواع تک تنظیم کرد" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 -#: frappe/desk/doctype/number_card/number_card.js:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "گزارش داده ای ندارد، لطفاً فیلترها را تغییر دهید یا نام گزارش را تغییر دهید" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 msgid "Report has no numeric fields, please change the Report Name" msgstr "گزارش هیچ فیلد عددی ندارد، لطفاً نام گزارش را تغییر دهید" -#: frappe/public/js/frappe/views/reports/query_report.js:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "گزارش شروع شد، برای مشاهده وضعیت کلیک کنید" @@ -21295,24 +21389,24 @@ msgstr "به حد مجاز گزارش رسیده است" msgid "Report timed out." msgstr "زمان گزارش تمام شد." -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "گزارش با موفقیت به روز شد" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 msgid "Report was not saved (there were errors)" msgstr "گزارش ذخیره نشد (خطاهایی وجود داشت)" -#: frappe/public/js/frappe/views/reports/query_report.js:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "گزارش با بیش از 10 ستون در حالت افقی بهتر به نظر می رسد." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "گزارش {0}" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "گزارش {0} حذف شد" @@ -21320,7 +21414,7 @@ msgstr "گزارش {0} حذف شد" msgid "Report {0} is disabled" msgstr "گزارش {0} غیرفعال است" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "گزارش {0} ذخیره شد" @@ -21331,7 +21425,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:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "گزارش ها" @@ -21339,7 +21433,7 @@ msgstr "گزارش ها" msgid "Reports & Masters" msgstr "گزارش ها و مستندات" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "گزارش‌ها از قبل در صف هستند" @@ -21358,7 +21452,10 @@ msgid "Request Body" msgstr "درخواست بدن" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "درخواست داده" @@ -21410,6 +21507,11 @@ msgstr "درخواست مهلت زمانی" msgid "Request URL" msgstr "درخواست URL" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "درخواست حذف حساب کاربری" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21461,11 +21563,11 @@ msgstr "بازنشانی نمودار" msgid "Reset Dashboard Customizations" msgstr "بازنشانی سفارشی سازی داشبورد" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "بازنشانی فیلدها" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "بازنشانی گذرواژه LDAP" @@ -21473,11 +21575,11 @@ msgstr "بازنشانی گذرواژه LDAP" msgid "Reset Layout" msgstr "بازنشانی چیدمان" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "بازنشانی OTP Secret" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21512,7 +21614,7 @@ msgstr "" msgid "Reset sorting" msgstr "بازنشانی مرتب‌سازی" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "بازنشانی به حالت پیش‌فرض" @@ -21550,6 +21652,7 @@ msgid "Resource TOS URI" msgstr "" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21559,11 +21662,6 @@ msgstr "" msgid "Response" msgstr "واکنش" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "پاسخ " - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21622,7 +21720,7 @@ msgstr "محدود به دامنه" 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) را می پذیرد" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "محدودیت ها" @@ -21656,7 +21754,7 @@ msgstr "به صفحه تأیید بازگردید و کد نمایش داده ش msgid "Reverse Icon Color" msgstr "رنگ نماد معکوس" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "در حال برگرداندن طول به {0} برای «{1}» در «{2}». تنظیم طول به عنوان {3} باعث کوتاه شدن داده ها می‌شود." @@ -21674,9 +21772,7 @@ msgstr "لغو" msgid "Revoked" msgstr "لغو شد" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21717,6 +21813,7 @@ msgstr "Robots.txt" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21730,6 +21827,7 @@ msgstr "Robots.txt" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21768,7 +21866,7 @@ msgstr "مجوز نقش برای صفحه و گزارش" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "مجوزهای نقش" @@ -21778,7 +21876,7 @@ msgstr "مجوزهای نقش" msgid "Role Permissions Manager" msgstr "مدیر مجوزهای نقش" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "مدیر مجوزهای نقش" @@ -21821,6 +21919,7 @@ msgstr "نقش بر اساس نوع کاربری {0} تنظیم شده است" #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -21830,6 +21929,7 @@ msgstr "نقش بر اساس نوع کاربری {0} تنظیم شده است" #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -21866,7 +21966,7 @@ msgstr "نقش Html" msgid "Roles can be set for users from their User page." msgstr "نقش ها را می‌توان برای کاربران از صفحه کاربری آنها تنظیم کرد." -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "ریشه {0} قابل حذف نیست" @@ -21886,8 +21986,6 @@ msgstr "روش گرد کردن" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -21899,8 +21997,6 @@ msgstr "روش گرد کردن" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -21925,24 +22021,24 @@ msgstr "تغییر مسیرها" msgid "Route: Example \"/app\"" msgstr "مسیر: مثال \"/app\"" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "ردیف" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "ردیف #" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "ردیف # {0}: کاربر غیر ادمین نمی‌تواند نقش {1} را روی Doctype سفارشی تنظیم کند" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "ردیف #{0}:" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "ردیف #{}: نام فیلد مورد نیاز است" @@ -21951,11 +22047,6 @@ msgstr "ردیف #{}: نام فیلد مورد نیاز است" msgid "Row Format" msgstr "" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "فهرست ردیف" - #. Label of the row_indexes (Code) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Row Indexes" @@ -21970,7 +22061,7 @@ msgstr "نام ردیف" msgid "Row Number" msgstr "شماره ردیف" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "مقادیر ردیف تغییر کرد" @@ -21978,30 +22069,33 @@ msgstr "مقادیر ردیف تغییر کرد" msgid "Row {0}" msgstr "ردیف {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "ردیف {0}: غیرفعال کردن الزامی برای فیلدهای استاندارد مجاز نیست" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "ردیف {0}: مجاز به فعال کردن Allow on Submit برای فیلدهای استاندارد نیست" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Added" msgstr "ردیف اضافه شد" #. Label of the rows_removed_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "ردیف ها حذف شدند" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22092,7 +22186,7 @@ msgstr "پارامتر پیامک" msgid "SMS Settings" msgstr "تنظیمات پیامک" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "پیامک با موفقیت ارسال شد" @@ -22170,7 +22264,7 @@ msgstr "نیروی فروش" msgid "Salutation" msgstr "عنوان پیشوند" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "همان فیلد بیش از یک بار وارد می‌شود" @@ -22198,20 +22292,20 @@ msgstr "شنبه" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22220,16 +22314,12 @@ msgstr "شنبه" msgid "Save" msgstr "ذخیره" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "Save Secret API: {0}" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "ذخیره به هر حال" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "ذخیره به عنوان" @@ -22237,11 +22327,11 @@ msgstr "ذخیره به عنوان" msgid "Save Customizations" msgstr "سفارشی سازی ها را ذخیره کنید" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "ذخیره گزارش" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "ذخیره فیلترها" @@ -22266,7 +22356,7 @@ msgstr "ذخیره" msgid "Saved Filters" msgstr "فیلترهای ذخیره شده" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22345,7 +22435,7 @@ msgstr "نوع کار زمان‌بندی شده" msgid "Scheduled Jobs Logs" msgstr "لاگ کارهای زمان‌بندی شده" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "اجرای زمان‌بندی شده برای اسکریپت {0} به روز شده است" @@ -22368,7 +22458,7 @@ msgstr "زمان‌بند" msgid "Scheduler Event" msgstr "رویداد زمان‌بندی" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "زمانبند غیرفعال" @@ -22381,7 +22471,7 @@ msgstr "وضعیت زمانبند" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "وقتی حالت تعمیر و نگهداری فعال است، زمان‌بند را نمی‌توان دوباره فعال کرد." -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "زمانبند غیرفعال است. نمی‌توان داده ها را وارد کرد." @@ -22513,7 +22603,7 @@ msgstr "" msgid "Search by filename or extension" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "فیلد جستجوی {0} معتبر نیست" @@ -22613,7 +22703,7 @@ msgstr "تنظیمات امنیتی" msgid "See all Activity" msgstr "مشاهده تمام فعالیت ها" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "مشاهده تمام گزارش های گذشته" @@ -22622,7 +22712,7 @@ msgstr "مشاهده تمام گزارش های گذشته" msgid "See on Website" msgstr "در وب سایت ببینید" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "پاسخ های قبلی را ببینید" @@ -22669,7 +22759,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/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22677,28 +22767,28 @@ msgstr "انتخاب کردن" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "انتخاب همه" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "پیوست ها را انتخاب کنید" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "Child Table را انتخاب کنید" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 msgid "Select Column" msgstr "ستون را انتخاب کنید" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "ستون ها را انتخاب کنید" @@ -22757,12 +22847,15 @@ msgstr "فیلد را انتخاب کنید" msgid "Select Field..." msgstr "انتخاب فیلد..." -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "فیلدها را انتخاب کنید" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "انتخاب فیلدها برای درج" @@ -22775,7 +22868,7 @@ msgstr "فیلدهای به‌روزرسانی را انتخاب کنید" msgid "Select Filters" msgstr "فیلترها را انتخاب کنید" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "Google Calendar را انتخاب کنید که در آن رویداد باید همگام‌سازی شود." @@ -22808,8 +22901,8 @@ msgstr "انتخاب اجباری" msgid "Select Module" msgstr "ماژول را انتخاب کنید" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "چاپگر شبکه را انتخاب کنید" @@ -22844,7 +22937,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" @@ -22874,14 +22967,14 @@ msgid "Select a field to edit its properties." msgstr "یک فیلد را برای ویرایش ویژگی‌های آن انتخاب کنید." #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "ابتدا یک گره گروهی را انتخاب کنید." +msgid "Select a group {0} first." +msgstr "ابتدا یک گروه {0} انتخاب کنید." -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" msgstr "یک فیلد فرستنده معتبر برای ایجاد اسناد از ایمیل انتخاب کنید" -#: frappe/core/doctype/doctype/doctype.py:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 msgid "Select a valid Subject field for creating documents from Email" msgstr "یک فیلد موضوع معتبر برای ایجاد اسناد از ایمیل انتخاب کنید" @@ -22911,13 +23004,13 @@ msgstr "حداقل 1 رکورد برای چاپ انتخاب کنید" msgid "Select atleast 2 actions" msgstr "حداقل 2 عمل را انتخاب کنید" -#: frappe/public/js/frappe/list/list_view.js:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "مورد فهرست را انتخاب کنید" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "چندین مورد از فهرست را انتخاب کنید" @@ -22951,9 +23044,9 @@ msgstr "برای مشاهده تفاوت، دو نسخه را انتخاب کن msgid "Select {0}" msgstr "انتخاب {0}" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" -msgstr "تایید خود مجاز نیست" +msgstr "تأیید خود مجاز نیست" #: frappe/www/contact.html:41 msgid "Send" @@ -23135,7 +23228,7 @@ msgstr "ایمیل فرستنده" msgid "Sender Email Field" msgstr "فیلد ایمیل فرستنده" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "فیلد فرستنده باید گزینه‌های ایمیل را داشته باشد" @@ -23229,7 +23322,7 @@ msgstr "سری به روز شده برای {}" msgid "Series counter for {} updated to {} successfully" msgstr "شمارنده سری برای {} با موفقیت به {} به روز شد" -#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "سری {0} قبلاً در {1} استفاده شده است" @@ -23239,7 +23332,7 @@ msgstr "سری {0} قبلاً در {1} استفاده شده است" msgid "Server Action" msgstr "اقدام سرور" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "خطای سرور" @@ -23258,7 +23351,7 @@ msgstr "IP سرور" msgid "Server Script" msgstr "اسکریپت سرور" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "اسکریپت های سرور غیرفعال هستند. لطفاً اسکریپت های سرور را از پیکربندی بنچ فعال کنید." @@ -23305,7 +23398,7 @@ msgstr "پیش‌فرض‌های نشست" msgid "Session Defaults Saved" msgstr "پیش‌فرض‌های نشست ذخیره شد" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "نشست منقضی شده" @@ -23314,14 +23407,14 @@ msgstr "نشست منقضی شده" msgid "Session Expiry (idle timeout)" msgstr "انقضای نشست (تایم بیکار)" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "انقضای نشست باید در قالب {0} باشد" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "تنظیم" @@ -23347,12 +23440,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\" msgstr "گزینه‌های پیش‌فرض را برای همه نمودارها در این داشبورد تنظیم کنید (مثلاً: \"colors\": [\"#d1d8dd\"، \"#ff5858\"])" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "فیلترهای پویا را تنظیم کنید" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23363,7 +23456,7 @@ msgstr "فیلترها را تنظیم کنید" msgid "Set Filters for {0}" msgstr "تنظیم فیلترها برای {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23375,7 +23468,7 @@ msgstr "حد را تنظیم کنید" #. DocType 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Set Naming Series options on your transactions." -msgstr "گزینه‌های Naming Series را در تراکنش های خود تنظیم کنید." +msgstr "گزینه‌های سری نام‌گذاری را در تراکنش‌های خود تنظیم کنید." #. Label of the new_password (Password) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -23417,7 +23510,7 @@ msgstr "تنظیم مقدار" msgid "Set Role For" msgstr "تنظیم نقش برای" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "تنظیم مجوزهای کاربر" @@ -23427,16 +23520,16 @@ msgstr "تنظیم مجوزهای کاربر" msgid "Set Value" msgstr "تنظیم مقدار" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "تنظیم همه به عنوان خصوصی" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "تنظیم همه به عنوان عمومی" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "تنظیم به عنوان پیش‌فرض" @@ -23455,18 +23548,21 @@ msgstr "توسط کاربر تنظیم شده است" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "" -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "دقت غیر استاندارد را برای فیلد شناور یا ارز تنظیم کنید" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23558,14 +23654,9 @@ msgstr "تنظیمات صفحه تماس با ما" msgid "Settings for the About Us Page" msgstr "تنظیمات صفحه درباره ما" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "تنظیمات برای کنترل دسته‌های وبلاگ و تعاملات مانند نظرات و لایک‌ها" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "تنظیمات" @@ -23581,8 +23672,8 @@ msgstr "راه‌اندازی > کاربر" msgid "Setup > User Permissions" msgstr "راه‌اندازی > مجوزهای کاربر" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "تنظیم ایمیل خودکار" @@ -23596,11 +23687,11 @@ 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" -msgstr "راه اندازی انجام نشد" +msgstr "راه‌اندازی انجام نشد" #. Label of the share (Check) field in DocType 'Custom DocPerm' #. Label of the share (Check) field in DocType 'DocPerm' @@ -23651,11 +23742,6 @@ msgstr "آدرس حمل و نقل" msgid "Shop" msgstr "فروشگاه" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "نام کوتاه" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "حدس زدن الگوهای کوتاه صفحه کلید آسان است" @@ -23675,11 +23761,6 @@ msgstr "میانبرها" msgid "Show" msgstr "نمایش دهید" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "نمایش \"Call to Action\" در وبلاگ" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23732,7 +23813,13 @@ msgstr "نمایش سند" msgid "Show Error" msgstr "نمایش خطا" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "نمایش هشدار لینک خارجی" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "نمایش نام فیلد (برای کپی در کلیپ بورد کلیک کنید)" @@ -23761,7 +23848,7 @@ msgstr "نمایش فرم کامل؟" #. Label of the show_full_number (Check) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json msgid "Show Full Number" -msgstr "" +msgstr "نمایش کامل شماره" #: frappe/public/js/frappe/ui/keyboard.js:234 msgid "Show Keyboard Shortcuts" @@ -23860,7 +23947,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "نمایش برچسب ها" @@ -23877,7 +23964,7 @@ msgstr "نمایش عنوان" msgid "Show Title in Link Fields" msgstr "نمایش عنوان در فیلدهای پیوند" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "نمایش مجموع" @@ -23917,10 +24004,6 @@ msgstr "نمایش همه نسخه ها" msgid "Show all activity" msgstr "نمایش تمام فعالیت ها" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "نمایش همه وبلاگ ها" - #. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" @@ -23969,8 +24052,8 @@ msgstr "نمایش پیوند به سند" msgid "Show list" msgstr "نمایش لیست" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "نمایش جزئیات بیشتر" @@ -23999,7 +24082,7 @@ msgstr "نمایش عنوان در پنجره مرورگر به عنوان \"پ msgid "Show {0} List" msgstr "نمایش فهرست {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "نمایش فقط فیلدهای عددی از گزارش" @@ -24026,15 +24109,15 @@ msgstr "تنظیمات نوار کناری" #. Label of the section_break_17 (Section Break) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Sidebar and Comments" -msgstr "نوار کناری و نظرات" +msgstr "نوار کناری و دیدگاه‌ها" #. Label of the sign_up_and_confirmation_section (Section Break) field in #. DocType 'Email Group' #: frappe/email/doctype/email_group/email_group.json msgid "Sign Up and Confirmation" -msgstr "ثبت نام و تایید" +msgstr "ثبت نام و تأیید" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "ثبت نام غیرفعال است" @@ -24071,36 +24154,36 @@ msgstr "ثبت نام غیرفعال شد" msgid "Signups have been disabled for this website." msgstr "ثبت نام برای این وب سایت غیرفعال شده است." -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "عبارت ساده پایتون، مثال: Status in (\"بسته\"، \"لغو\")" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" -msgstr "عبارت ساده پایتون، مثال: وضعیت در (\"نامعتبر\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "عبارت ساده پایتون، مثال: status == \"Invalid\"" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" -msgstr "عبارت ساده پایتون، مثال: status == 'Open' و نوع == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "عبارت ساده پایتون، مثال: status == 'Open' and issue_type == 'Bug'" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" +msgstr "عبارت ساده پایتون، مثال: status in (\"Closed\", \"Cancelled\")" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "نشست‌های همزمان" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "Single DocType ها را نمی‌توان سفارشی کرد." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Single Type ها فقط یک رکورد دارند و هیچ جدولی مرتبط نیست. مقادیر در tabSingles ذخیره می‌شوند" @@ -24108,7 +24191,7 @@ msgstr "Single Type ها فقط یک رکورد دارند و هیچ جدولی msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "سایت در حالت فقط خواندنی برای نگهداری یا به‌روزرسانی سایت در حال اجرا است، این عمل در حال حاضر قابل انجام نیست. لطفاً بعداً دوباره امتحان کنید." -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "اندازه" @@ -24295,12 +24378,12 @@ msgstr "" #. Label of the software_id (Data) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Software ID" -msgstr "" +msgstr "شناسه نرم‌افزار" #. Label of the software_version (Data) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Software Version" -msgstr "" +msgstr "نسخه نرم‌افزار" #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." @@ -24327,11 +24410,11 @@ msgstr "در طول تولید توکن مشکلی پیش آمد. برای ای msgid "Something went wrong." msgstr "مشکلی پیش آمد." -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 msgid "Sorry! I could not find what you were looking for." msgstr "متاسفم! من نتونستم چیزی که دنبالش بودی رو پیدا کنم." -#: frappe/public/js/frappe/views/pageview.js:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "متاسف! شما مجاز به مشاهده این صفحه نیستید." @@ -24362,20 +24445,23 @@ msgstr "گزینه‌های مرتب‌سازی" msgid "Sort Order" msgstr "ترتیب مرتب‌سازی" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 msgid "Sort field {0} must be a valid fieldname" msgstr "فیلد مرتب سازی {0} باید یک نام فیلد معتبر باشد" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' -#: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "منبع" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24402,6 +24488,12 @@ msgstr "هرزنامه ها" msgid "SparkPost" msgstr "" +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "کاراکترهای خاص مجاز نیستند" @@ -24426,8 +24518,8 @@ msgstr "" msgid "Splash Image" msgstr "تصویر اسپلش" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "پدر" @@ -24459,11 +24551,11 @@ msgstr "ردیابی پشته" msgid "Standard" msgstr "استاندارد" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "DocType استاندارد را نمی‌توان حذف کرد." -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "DocType استاندارد نمی‌تواند قالب چاپ پیش‌فرض داشته باشد، از سفارشی‌سازی فرم استفاده کنید" @@ -24475,7 +24567,7 @@ msgstr "استاندارد تنظیم نشده است" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "قالب استاندارد چاپ را نمی‌توان به روز کرد" @@ -24483,11 +24575,11 @@ msgstr "قالب استاندارد چاپ را نمی‌توان به روز ک msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "سبک چاپ استاندارد قابل تغییر نیست. لطفا برای ویرایش کپی کنید" -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "گزارش های استاندارد را نمی‌توان حذف کرد" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "گزارش های استاندارد قابل ویرایش نیستند" @@ -24519,8 +24611,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:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "شروع" @@ -24528,7 +24620,7 @@ msgstr "شروع" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24593,6 +24685,7 @@ msgstr "شروع می‌شود" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24601,7 +24694,7 @@ msgstr "شروع می‌شود" msgid "State" msgstr "حالت" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "" @@ -24657,6 +24750,7 @@ msgstr "فاصله زمانی آمار" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24681,6 +24775,7 @@ msgstr "فاصله زمانی آمار" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24688,8 +24783,8 @@ msgstr "فاصله زمانی آمار" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24722,11 +24817,11 @@ msgstr "مراحل" #: frappe/www/qrcode.html:11 msgid "Steps to verify your login" -msgstr "مراحل تایید ورود شما" +msgstr "مراحل تأیید ورود شما" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "چسبنده" @@ -24756,6 +24851,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "سند PDF پیوست شده را ذخیره کنید" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +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." @@ -24834,7 +24933,7 @@ msgstr "زیر دامنه" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -24850,7 +24949,7 @@ msgstr "موضوع" msgid "Subject Field" msgstr "زمینه موضوعی" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "نوع فیلد موضوع باید داده، متن، متن طولانی، متن کوچک، ویرایشگر متن باشد" @@ -24864,6 +24963,7 @@ msgstr "صف ارسال" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24872,10 +24972,11 @@ msgstr "صف ارسال" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "ارسال" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "ارسال" @@ -24885,7 +24986,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "ارسال" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "ارسال" @@ -24909,7 +25010,7 @@ msgstr "ارسال پس از درون‌بُرد" msgid "Submit an Issue" msgstr "ارسال یک مسئله" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "پاسخ دیگری را ثبت کنید" @@ -24921,7 +25022,7 @@ msgstr "" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "ارسال در Creation" @@ -24931,9 +25032,9 @@ msgstr "برای تکمیل این مرحله این سند را ارسال کن #: frappe/public/js/frappe/form/form.js:1221 msgid "Submit this document to confirm" -msgstr "برای تایید این سند را ارسال کنید" +msgstr "برای تأیید این سند را ارسال کنید" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "{0} سند ارسال شود؟" @@ -24942,11 +25043,11 @@ msgstr "{0} سند ارسال شود؟" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "ارسال شده" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "سند ارسال شده را نمی‌توان به پیش‌نویس تبدیل کرد. ردیف انتقال {0}" @@ -24969,9 +25070,7 @@ msgid "Subsidiary" msgstr "شرکت فرعی" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "عنوان فرعی" @@ -24985,7 +25084,7 @@ msgstr "عنوان فرعی" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25027,20 +25126,16 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "موفقیت! شما خوب هستید که بروید 👍" - #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" msgstr "تعداد مشاغل موفق" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" -msgstr "تراکنش های موفق" +msgstr "تراکنش‌های موفق" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "موفقیت آمیز: {0} به {1}" @@ -25082,7 +25177,7 @@ msgstr "پیشنهاد بهینه‌سازی" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "نام کاربری پیشنهادی: {0}" @@ -25204,7 +25299,7 @@ msgstr "در حال همگام سازی" msgid "Syncing {0} of {1}" msgstr "در حال همگام سازی {0} از {1}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "اشتباه نوشتاری" @@ -25327,6 +25422,7 @@ msgstr "لاگ های سیستم" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25409,6 +25505,7 @@ msgstr "لاگ های سیستم" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" msgstr "مدیر سیستم" @@ -25482,7 +25579,7 @@ msgstr "جدول" msgid "Table Break" msgstr "جدول شکستن" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "فیلد جدول" @@ -25491,7 +25588,7 @@ msgstr "فیلد جدول" msgid "Table Fieldname" msgstr "نام فیلد جدول" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "نام فیلد جدول وجود ندارد" @@ -25513,11 +25610,11 @@ msgstr "جدول MultiSelect" msgid "Table Trimmed" msgstr "جدول بریده شده" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "جدول به روز شد" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 msgid "Table {0} cannot be empty" msgstr "جدول {0} نمی‌تواند خالی باشد" @@ -25559,11 +25656,18 @@ msgstr "عکس گرفتن" msgid "Target" msgstr "مقدار هدف‌گذاری" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "تسک" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "تسک‌ها" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25598,7 +25702,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 "الگو" #: frappe/core/doctype/data_import/importer.py:483 #: frappe/core/doctype/data_import/importer.py:610 @@ -25625,7 +25729,7 @@ msgstr "هشدارهای الگو" msgid "Templates" msgstr "قالب ها" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "موقتا غیر فعال می باشد" @@ -25697,7 +25801,7 @@ msgid "Thank you for reaching out to us. We will get back to you at the earliest "{0}" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "از اینکه وقت ارزشمند خود را برای پر کردن این فرم صرف کردید سپاسگزاریم" @@ -25721,7 +25825,7 @@ msgstr "با تشکر" msgid "The Auto Repeat for this document has been disabled." msgstr "تکرار خودکار برای این سند غیرفعال شده است." -#: frappe/public/js/frappe/form/grid.js:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "قالب CSV به حروف بزرگ و کوچک حساس است" @@ -25732,17 +25836,17 @@ msgid "The Client ID obtained from the Google Cloud Console under " msgstr "" -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "شرط \"{0}\" نامعتبر است" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "URL فایلی که وارد کرده اید نادرست است" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." -msgstr "تاریخ زمان‌بندی شده بعدی نمی تواند دیرتر از تاریخ پایان باشد." +msgstr "تاریخ زمان‌بندی شده بعدی نمی‌تواند دیرتر از تاریخ پایان باشد." #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:29 msgid "The Push Relay Server URL key (`push_relay_server_url`) is missing in your site config" @@ -25781,7 +25885,7 @@ msgstr "تغییرات برگردانده شده است." msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "ستون {0} دارای {1} قالب های مختلف تاریخ است. تنظیم خودکار {2} به عنوان قالب پیش‌فرض، زیرا رایج‌ترین فرمت است. لطفاً مقادیر دیگر این ستون را به این قالب تغییر دهید." -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "نظر نمی‌تواند خالی باشد" @@ -25789,7 +25893,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:658 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "تعداد نشان داده شده یک تعداد تخمینی است. برای مشاهده شمارش دقیق اینجا کلیک کنید." @@ -25819,7 +25923,7 @@ msgstr "نوع سند انتخاب شده یک جدول فرزند است، بن msgid "The field {0} is mandatory" msgstr "فیلد {0} اجباری است" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "نام فیلدی که در Attached To Field مشخص کرده اید نامعتبر است" @@ -25889,15 +25993,19 @@ msgid "The project number obtained from Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

Click here to download:
{0}

This link will expire in {1} hours." +msgstr "" + +#: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" msgstr "پیوند بازنشانی گذرواژه منقضی شده است" -#: frappe/core/doctype/user/user.py:995 +#: frappe/core/doctype/user/user.py:1002 msgid "The reset password link has either been used before or is invalid" msgstr "پیوند بازنشانی گذرواژه یا قبلا استفاده شده است یا نامعتبر است" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "منبع مورد نظر شما در دسترس نیست" @@ -25909,7 +26017,7 @@ msgstr "نقش {0} باید یک نقش سفارشی باشد." msgid "The selected document {0} is not a {1}." msgstr "سند انتخاب شده {0} یک {1} نیست." -#: frappe/utils/response.py:338 +#: frappe/utils/response.py:336 msgid "The system is being updated. Please refresh again after a few moments." msgstr "سیستم در حال به‌روزرسانی است. لطفاً پس از چند لحظه دوباره بازخوانی کنید." @@ -25930,7 +26038,7 @@ msgstr "مقداری که چسبانده اید {0} نویسه بود. حداک msgid "The webhook will be triggered if this expression is true" msgstr "اگر این عبارت درست باشد، وب هوک فعال می‌شود" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "{0} قبلاً روی تکرار خودکار است {1}" @@ -25970,16 +26078,16 @@ 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:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "{0} با فیلترهای مشابه از قبل در صف وجود دارد:" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "در یک فرم وب فقط 9 فیلد شکستگی صفحه وجود دارد" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "در یک فرم فقط یک فولد می‌تواند وجود داشته باشد" @@ -25991,15 +26099,19 @@ msgstr "خطایی در الگوی آدرس شما وجود دارد {0}" msgid "There is no data to be exported" msgstr "هیچ داده ای برای برون‌بُرد نیست" +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "در حال حاضر چیز جدیدی برای نشان دادن شما وجود ندارد." -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "آدرس فایل مشکلی دارد: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "{0} با فیلترهای مشابه از قبل در صف وجود دارد:" @@ -26011,7 +26123,7 @@ msgstr "حداقل یک قانون مجوز باید وجود داشته باش msgid "There was an error building this page" msgstr "در ساخت این صفحه خطایی روی داد" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "هنگام ذخیره فیلترها خطایی روی داد" @@ -26023,11 +26135,11 @@ msgstr "خطاهایی وجود داشت" msgid "There were errors while creating the document. Please try again." msgstr "هنگام ایجاد سند خطاهایی وجود داشت. لطفا دوباره تلاش کنید." -#: frappe/public/js/frappe/views/communication.js:840 +#: frappe/public/js/frappe/views/communication.js:843 msgid "There were errors while sending email. Please try again." msgstr "هنگام ارسال ایمیل خطاهایی وجود داشت. لطفا دوباره تلاش کنید." -#: frappe/model/naming.py:494 +#: frappe/model/naming.py:502 msgid "There were some errors setting the name, please contact the administrator" msgstr "برخی از خطاها در تنظیم نام وجود دارد، لطفاً با ادمین تماس بگیرید" @@ -26052,7 +26164,7 @@ msgstr "اگر از فهرست LDAP 'Custom' استفاده شود، این تن #. 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" @@ -26068,7 +26180,7 @@ msgstr "احراز هویت شخص ثالث" msgid "This Currency is disabled. Enable to use in transactions" msgstr "این ارز غیرفعال است. فعال کردن برای استفاده در معاملات" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "این نمودار کانبان خصوصی خواهد بود" @@ -26076,6 +26188,10 @@ msgstr "این نمودار کانبان خصوصی خواهد بود" msgid "This Month" msgstr "این ماه" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "این سه‌ماهه" @@ -26101,6 +26217,11 @@ msgstr "این عمل فقط برای {} مجاز است" msgid "This cannot be undone" msgstr "این قابل بازگشت نیست" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +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" @@ -26115,11 +26236,11 @@ msgstr "در صورت تنظیم این نمودار برای همه کاربر msgid "This doctype has no orphan fields to trim" msgstr "این doctype هیچ زمینه یتیمی برای اصلاح ندارد" -#: frappe/core/doctype/doctype/doctype.py:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "این سند در حال حاضر قابل حذف نیست زیرا توسط کاربر دیگری در حال تغییر است. لطفا بعد از مدتی دوباره امتحان کنید." @@ -26161,7 +26282,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "این فایل به یک سند محافظت شده پیوست شده است و قابل حذف نیست." @@ -26177,7 +26298,7 @@ msgstr "این فایل عمومی است. بدون احراز هویت قابل msgid "This form has been modified after you have loaded it" msgstr "این فرم پس از بارگیری آن اصلاح شده است" -#: frappe/public/js/frappe/form/form.js:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "این فرم به دلیل گردش کار قابل ویرایش نیست." @@ -26196,7 +26317,7 @@ msgstr "این ارائه دهنده موقعیت جغرافیایی هنوز پ msgid "This goes above the slideshow." msgstr "این بالاتر از نمایش اسلاید است." -#: frappe/public/js/frappe/views/reports/query_report.js:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "این یک گزارش پس زمینه است. لطفا فیلترهای مناسب را تنظیم کنید و سپس گزارش جدیدی ایجاد کنید." @@ -26220,12 +26341,6 @@ msgstr "این یک Doctype مجازی است و داده ها به صورت د msgid "This is an automatically generated reply" msgstr "این پاسخی است که به صورت خودکار تولید می‌شود" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "این یک نمونه پیش نمایش Google SERP است." - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "این مشابه گذرواژه رایج است." @@ -26244,7 +26359,7 @@ msgstr "این پیوند قبلاً برای تأیید فعال شده است. msgid "This link is invalid or expired. Please make sure you have pasted correctly." msgstr "این پیوند نامعتبر است یا منقضی شده است. لطفا مطمئن شوید که به درستی چسبانده شده اید." -#: frappe/printing/page/print/print.js:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "این ممکن است در چندین صفحه چاپ شود" @@ -26252,7 +26367,7 @@ msgstr "این ممکن است در چندین صفحه چاپ شود" msgid "This month" msgstr "این ماه" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26260,13 +26375,13 @@ msgstr "" msgid "This report was generated on {0}" msgstr "این گزارش در {0} ایجاد شد" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "این گزارش در {0} ایجاد شد." #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:122 msgid "This request has not yet been approved by the user." -msgstr "این درخواست هنوز توسط کاربر تایید نشده است." +msgstr "این درخواست هنوز توسط کاربر تأیید نشده است." #: frappe/templates/includes/navbar/navbar_items.html:95 msgid "This site is in read only mode, full functionality will be restored soon." @@ -26291,7 +26406,7 @@ msgstr "این مقدار از فیلد {1} {0} واکشی شده است" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " +msgid "This value specifies the max number of rows that can be rendered in report view." msgstr "" #: frappe/website/doctype/web_page/web_page.js:85 @@ -26323,10 +26438,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "با این کار این تور بازنشانی می‌شود و به همه کاربران نشان داده می‌شود. مطمئنی؟" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " -msgstr " این کار بلافاصله کار را خاتمه می دهد و ممکن است خطرناک باشد، مطمئن هستید؟" +msgid "This will terminate the job immediately and might be dangerous, are you sure?" +msgstr "" -#: frappe/core/doctype/user/user.py:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "گاز گرفت" @@ -26402,9 +26517,11 @@ msgstr "پنجره زمانی (ثانیه)" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26475,11 +26592,11 @@ msgstr "پیوندهای جدول زمانی" msgid "Timeline Name" msgstr "نام خط زمانی" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 msgid "Timeline field must be a Link or Dynamic Link" msgstr "فیلد جدول زمانی باید پیوند یا پیوند پویا باشد" -#: frappe/core/doctype/doctype/doctype.py:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "فیلد جدول زمانی باید یک نام فیلد معتبر باشد" @@ -26505,10 +26622,7 @@ msgid "Timespan" msgstr "مدت زمان" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "مهر زمان" @@ -26528,9 +26642,6 @@ msgstr "" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26555,9 +26666,6 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26580,7 +26688,7 @@ msgstr "فیلد عنوان" msgid "Title Prefix" msgstr "پیشوند عنوان" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "فیلد عنوان باید یک نام فیلد معتبر باشد" @@ -26674,7 +26782,7 @@ msgstr "برای صادر کردن این مرحله به عنوان JSON، آن msgid "To generate password click {0}" msgstr "برای ایجاد رمز عبور، روی {0} کلیک کنید" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "برای دریافت گزارش به روز شده، روی {0} کلیک کنید." @@ -26729,7 +26837,7 @@ msgstr "لیست انجام کار" msgid "Today" msgstr "امروز" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "تغییر نمودار" @@ -26745,11 +26853,11 @@ msgstr "تغییر نمای شبکه‌ای" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "تغییر وضعیت نوار کناری" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "تغییر وضعیت نوار کناری" @@ -26795,7 +26903,7 @@ msgid "Tomorrow" msgstr "فردا" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "اسناد بسیار زیاد" @@ -26811,7 +26919,7 @@ msgstr "تغییرات بسیار زیادی در پایگاه داده در ی msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "کاربران زیادی اخیرا ثبت نام کرده اند، بنابراین ثبت نام غیرفعال است. لطفا یک ساعت دیگر دوباره امتحان کنید" @@ -26873,10 +26981,10 @@ msgstr "بالا سمت راست" msgid "Topic" msgstr "موضوع" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "جمع" @@ -26919,18 +27027,18 @@ msgstr "کل زمان کار" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " -msgstr "تعداد کل ایمیل هایی که در فرآیند همگام سازی اولیه باید همگام شوند " +msgid "Total number of emails to sync in initial sync process" +msgstr "تعداد کل ایمیل هایی که در فرآیند همگام سازی اولیه باید همگام شوند" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "جمع:" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "جمع" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "ردیف کل" @@ -26959,7 +27067,7 @@ 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 @@ -26998,26 +27106,10 @@ msgstr "ردیابی نقاط عطف برای هر سند" msgid "Tracking" msgstr "رهگیری" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "URL ردیابی تولید و در کلیپ بورد کپی شد" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "هش تراکنش" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "لاگ تراکنش" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "گزارش لاگ تراکنش" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "" @@ -27031,6 +27123,11 @@ msgstr "" msgid "Transition Rules" msgstr "قوانین انتقال" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" @@ -27045,9 +27142,9 @@ msgstr "انتقال ها" msgid "Translatable" msgstr "قابل ترجمه" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" -msgstr "" +msgstr "ترجمه داده‌ها" #. Label of the translated_doctype (Check) field in DocType 'DocType' #. Label of the translated_doctype (Check) field in DocType 'Customize Form' @@ -27056,7 +27153,7 @@ msgstr "" msgid "Translate Link Fields" msgstr "ترجمه فیلدهای پیوند" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "ترجمه مقادیر" @@ -27138,10 +27235,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:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "Print Designer جدید را امتحان کنید" @@ -27207,7 +27304,7 @@ msgstr "روش احراز هویت دو عاملی" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27300,7 +27397,7 @@ msgstr "URL" msgid "URL for documentation or help" msgstr "URL برای مستندات یا کمک" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "URL باید با http:// یا https:// شروع شود" @@ -27403,7 +27500,7 @@ msgstr "به دلیل وجود حساب ایمیل از دست رفته امکا msgid "Unable to update event" msgstr "رویداد به‌روزرسانی نشد" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "امکان نوشتن فرمت فایل برای {0} وجود ندارد" @@ -27412,7 +27509,7 @@ msgstr "امکان نوشتن فرمت فایل برای {0} وجود ندارد msgid "Unassign Condition" msgstr "شرط لغو اختصاص" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27428,7 +27525,7 @@ msgstr "واگرد" msgid "Undo last action" msgstr "واگرد آخرین اقدام" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27475,7 +27572,7 @@ msgstr "ستون ناشناخته: {0}" msgid "Unknown Rounding Method: {}" msgstr "روش گرد کردن نامشخص: {}" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "کاربر ناشناس" @@ -27487,8 +27584,7 @@ msgstr "" msgid "Unlock Reference Document" msgstr "باز کردن قفل سند مرجع" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "لغو انتشار" @@ -27504,7 +27600,7 @@ msgstr "خوانده نشده" msgid "Unread Notification Sent" msgstr "اعلان خوانده نشده ارسال شد" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "پرسمان ناامن SQL" @@ -27542,8 +27638,8 @@ msgstr "" msgid "Unsubscribed" msgstr "لغو اشتراک شده" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27563,7 +27659,7 @@ msgstr "{0} فایل از حالت فشرده خارج شد" msgid "Unzipping files..." msgstr "از حالت فشرده خارج کردن فایل ها..." -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "رویدادهای آینده برای امروز" @@ -27577,7 +27673,7 @@ msgstr "رویدادهای آینده برای امروز" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "به‌روزرسانی" @@ -27585,7 +27681,7 @@ msgstr "به‌روزرسانی" #. Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Amendment Naming" -msgstr "به‌روزرسانی اصلاحیه نامگذاری" +msgstr "به‌روزرسانی اصلاحیه نام‌گذاری" #. Option for the 'Import Type' (Select) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json @@ -27611,6 +27707,11 @@ msgstr "سفارش به‌روزرسانی" msgid "Update Password" msgstr "به‌روزرسانی گذرواژه" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "به‌روزرسانی نمایه" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27653,7 +27754,7 @@ msgstr "به‌روزرسانی {0} رکورد" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "به روز شد" @@ -27661,7 +27762,7 @@ msgstr "به روز شد" msgid "Updated Successfully" msgstr "با موفقیت به روز شد" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "به‌روزرسانی به نسخه جدید 🎉" @@ -27669,7 +27770,7 @@ msgstr "به‌روزرسانی به نسخه جدید 🎉" msgid "Updated successfully" msgstr "با موفقیت به روز شد" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "در حال بروز رسانی" @@ -27708,14 +27809,14 @@ msgstr "در حال به‌روزرسانی {0} از {1}، {2}" #: frappe/public/js/billing.bundle.js:131 msgid "Upgrade plan" -msgstr "" +msgstr "طرح ارتقا" #: frappe/public/js/frappe/list/list_sidebar.js:331 msgid "Upgrade your support experience with Frappe Helpdesk" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27725,11 +27826,11 @@ msgstr "آپلود" msgid "Upload Image" msgstr "آپلود تصویر" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "آپلود فایل" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "آپلود {0} فایل" @@ -27826,15 +27927,11 @@ msgstr "از شناسه ایمیل متفاوت استفاده کنید" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "استفاده کنید اگر تنظیمات پیش‌فرض به درستی داده‌های شما را شناسایی نمی‌کنند" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "استفاده از تابع {0} در فیلد محدود شده است" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "استفاده از زیرپرسمان یا تابع محدود شده است" -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "از Print Format Builder جدید استفاده کنید" @@ -27855,7 +27952,9 @@ msgid "Used OAuth" msgstr "از OAuth استفاده کرد" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -27864,6 +27963,7 @@ msgstr "از OAuth استفاده کرد" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -27878,11 +27978,12 @@ msgstr "از OAuth استفاده کرد" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -27891,6 +27992,7 @@ msgstr "از OAuth استفاده کرد" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -27907,17 +28009,11 @@ msgstr "از OAuth استفاده کرد" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "کاربر" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "کاربر " - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "کاربر «{0}» قبلاً نقش «{1}» را دارد" @@ -27947,14 +28043,14 @@ msgstr "کاربر نمی‌تواند ایجاد کند" msgid "User Cannot Search" msgstr "کاربر نمی‌تواند جستجو کند" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "" #. Label of the defaults (Table) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "User Defaults" -msgstr "پیش‌فرض های کاربر" +msgstr "پیش‌فرض‌های کاربر" #. Label of the user_details_tab (Tab Break) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -28011,11 +28107,6 @@ msgstr "شناسه کاربر" msgid "User ID Property" msgstr "ویژگی User ID" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "شناسه کاربری یک بلاگر" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28035,6 +28126,11 @@ msgstr "فیلد User Id در نوع کاربری {0} اجباری است" msgid "User Image" msgstr "تصویر کاربر" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "منو کاربر" @@ -28053,12 +28149,12 @@ msgstr "مجوز کاربر" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "مجوزهای کاربر" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "مجوزهای کاربر" @@ -28071,7 +28167,9 @@ msgstr "مجوزهای کاربر برای محدود کردن کاربران ب msgid "User Permissions created successfully" msgstr "مجوزهای کاربر با موفقیت ایجاد شد" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "نقش کاربر" @@ -28137,6 +28235,10 @@ msgstr "کاربر وجود ندارد." msgid "User does not have permission to create the new {0}" msgstr "کاربر اجازه ایجاد {0} جدید را ندارد" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "کاربر غیرفعال است" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "کاربر برای اشتراک گذاری اجباری است" @@ -28167,7 +28269,7 @@ msgstr "کاربر {0} قابل حذف نیست" msgid "User {0} cannot be disabled" msgstr "کاربر {0} را نمی‌توان غیرفعال کرد" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "کاربر {0} را نمی‌توان تغییر نام داد" @@ -28188,7 +28290,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "کاربر {0} درخواست حذف داده ها را داده است" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "کاربر {0} جعل هویت به عنوان {1}" @@ -28196,7 +28298,7 @@ msgstr "کاربر {0} جعل هویت به عنوان {1}" msgid "User {0} is disabled" msgstr "کاربر {0} غیرفعال است" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "کاربر {0} غیرفعال است. لطفا با مدیر سیستم خود تماس بگیرید." @@ -28217,7 +28319,7 @@ msgstr "URI اطلاعات کاربر" msgid "Username" msgstr "نام کاربری" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "نام کاربری {0} از قبل وجود دارد" @@ -28299,9 +28401,9 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Validate SSL Certificate" -msgstr "تایید گواهی SSL" +msgstr "تأیید گواهی SSL" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "خطای اعتبارسنجی" @@ -28324,8 +28426,8 @@ msgstr "اعتبار" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28357,7 +28459,7 @@ msgstr "ارزش تغییر کرد" msgid "Value To Be Set" msgstr "ارزش تنظیم شود" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "مقدار برای {0} قابل تغییر نیست" @@ -28373,11 +28475,11 @@ msgstr "مقدار نمی‌تواند برای {0} منفی باشد: {1}" msgid "Value for a check field can be either 0 or 1" msgstr "مقدار یک فیلد چک می‌تواند 0 یا 1 باشد" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "مقدار فیلد {0} در {1} خیلی طولانی است. طول باید کمتر از {2} کاراکتر باشد" -#: frappe/model/base_document.py:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "مقدار {0} نمی‌تواند یک لیست باشد" @@ -28402,7 +28504,7 @@ msgstr "" msgid "Value to Validate" msgstr "ارزش برای اعتبارسنجی" -#: frappe/model/base_document.py:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "ارزش خیلی بزرگ است" @@ -28419,7 +28521,7 @@ msgstr "مقدار {0} باید در قالب مدت زمان معتبر باش msgid "Value {0} must in {1} format" msgstr "مقدار {0} باید در قالب {1} باشد" -#: frappe/core/doctype/version/version_view.html:8 +#: frappe/core/doctype/version/version_view.html:9 msgid "Values Changed" msgstr "ارزش ها تغییر کرد" @@ -28432,7 +28534,7 @@ msgstr "وردنا" msgid "Verification" msgstr "" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "" @@ -28446,12 +28548,12 @@ msgstr "ایمیل کد تأیید ارسال نشد. لطفا با مدیر ت #: frappe/twofactor.py:248 msgid "Verification code has been sent to your registered email address." -msgstr "کد تایید به آدرس ایمیل ثبت شده شما ارسال شده است." +msgstr "کد تأیید به آدرس ایمیل ثبت شده شما ارسال شده است." #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' #: frappe/core/doctype/translation/translation.json msgid "Verified" -msgstr "تایید شده است" +msgstr "تأیید شده است" #: frappe/public/js/frappe/ui/messages.js:359 #: frappe/templates/includes/login/login.js:337 @@ -28494,15 +28596,7 @@ msgstr "مشاهده همه" msgid "View Audit Trail" msgstr "" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "مشاهده پست وبلاگ" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "مشاهده دیدگاه" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "مشاهده مجوزهای Doctype" @@ -28514,7 +28608,7 @@ msgstr "نمایش فایل" msgid "View Full Log" msgstr "مشاهده لاگ کامل" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "مشاهده لیست" @@ -28524,7 +28618,7 @@ msgstr "مشاهده لیست" msgid "View Log" msgstr "مشاهده لاگ" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "مشاهده اسناد مجاز" @@ -28571,7 +28665,7 @@ msgstr "گزارش را در مرورگر خود مشاهده کنید" msgid "View this in your browser" msgstr "این را در مرورگر خود مشاهده کنید" -#: frappe/public/js/frappe/web_form/web_form.js:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "پاسخ خود را مشاهده کنید" @@ -28640,6 +28734,7 @@ msgid "Warehouse" msgstr "انبار" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "هشدار" @@ -28648,9 +28743,9 @@ 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:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" -msgstr "هشدار: نامگذاری تنظیم نشده است" +msgstr "هشدار: نام‌گذاری تنظیم نشده است" #: frappe/public/js/frappe/model/meta.js:182 msgid "Warning: Unable to find {0} in any table related to {1}" @@ -28734,7 +28829,7 @@ msgstr "صفحه وب" msgid "Web Page Block" msgstr "مسدود کردن صفحه وب" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "URL صفحه وب" @@ -28837,7 +28932,7 @@ msgstr "آدرس وب هوک" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "سایت اینترنتی" @@ -28850,10 +28945,6 @@ msgstr "تجزیه و تحلیل وب سایت" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -28897,7 +28988,7 @@ msgstr "اسکریپت وب سایت" msgid "Website Search Field" msgstr "فیلد جستجوی وب سایت" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "فیلد جستجوی وب سایت باید یک نام فیلد معتبر باشد" @@ -29114,11 +29205,6 @@ msgstr "فیلتر نویسه جانشین" msgid "Will add \"%\" before and after the query" msgstr "\"%\" را قبل و بعد از پرسمان اضافه می‌کند" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "در url (معمولاً نام کوچک) استفاده خواهد شد." - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "شناسه ورود شما خواهد بود" @@ -29133,7 +29219,7 @@ msgstr "فقط در صورتی نشان داده می‌شود که سرفصل msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "برای سایت‌های غیرفعال، کارهای زمان‌بندی‌شده فقط یک‌بار در روز اجرا خواهند شد. برای جلوگیری از غیرفعال شدن خودکار زمان‌بندی، مقدار آن را روی 0 تنظیم کنید." -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "با سربرگ" @@ -29211,7 +29297,7 @@ msgstr "Workflow Builder به شما امکان می دهد گردش کار را msgid "Workflow Data" msgstr "داده های گردش کار" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "جزئیات گردش کار" @@ -29237,11 +29323,11 @@ msgstr "وضعیت گردش کار" msgid "Workflow State Field" msgstr "فیلد وضعیت گردش کار" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "وضعیت گردش کار تنظیم نشده است" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "انتقال وضعیت گردش کار از {0} به {1} مجاز نیست" @@ -29249,15 +29335,30 @@ msgstr "انتقال وضعیت گردش کار از {0} به {1} مجاز نی msgid "Workflow States Don't Exist" msgstr "" -#: frappe/model/workflow.py:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "وضعیت گردش کار" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "انتقال گردش کار" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29273,13 +29374,13 @@ msgstr "گردش کار با موفقیت به روز شد" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "فضای کار" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "محیط کار {0} وجود ندارد" @@ -29349,11 +29450,11 @@ msgstr "محیط کار {0} ایجاد شد" msgid "Workspaces" msgstr "محیط‌های کار" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "" @@ -29372,11 +29473,11 @@ msgstr "بسته شدن" msgid "Write" msgstr "نوشتن" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "واکشی اشتباه از مقدار" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "فیلد محور X" @@ -29395,13 +29496,13 @@ msgstr "XLSX" msgid "Y Axis" msgstr "محور Y" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" msgstr "فیلدهای محور Y" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "فیلد Y" @@ -29453,16 +29554,17 @@ msgstr "زرد" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "بله" @@ -29490,6 +29592,18 @@ msgstr "شما" msgid "You Liked" msgstr "دوست داشتی" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "شما در حال باز کردن یک لینک خارجی هستید. برای تأیید، دوباره روی لینک کلیک کنید." + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "شما به اینترنت متصل هستید." @@ -29528,20 +29642,20 @@ msgstr "شما مجاز به ویرایش گزارش نیستید." #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "شما مجاز به برون‌بُرد {} doctype نیستید" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "شما مجاز به چاپ این گزارش نیستید" -#: frappe/public/js/frappe/views/communication.js:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "شما مجاز به ارسال ایمیل های مرتبط با این سند نیستید" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "شما مجاز به به‌روزرسانی این سند فرم وب نیستید" @@ -29559,13 +29673,13 @@ msgstr "شما اجازه دسترسی به این صفحه را ندارید." #: frappe/__init__.py:465 msgid "You are not permitted to access this resource. Login to access" -msgstr "" +msgstr "شما اجازه دسترسی به این منبع را ندارید. برای دسترسی وارد شوید" #: frappe/public/js/frappe/form/sidebar/document_follow.js:131 msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "شما اکنون این سند را دنبال می‌کنید. به‌روزرسانی های روزانه را از طریق ایمیل دریافت خواهید کرد. می‌توانید این مورد را در تنظیمات کاربر تغییر دهید." -#: frappe/core/doctype/installed_applications/installed_applications.py:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 msgid "You are only allowed to update order, do not remove or add apps." msgstr "شما فقط مجاز به به‌روزرسانی سفارش هستید، برنامه‌ها را حذف یا اضافه نکنید." @@ -29591,13 +29705,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "همچنین می‌توانید لینک زیر را در مرورگر خود کپی پیست کنید" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " +msgid "You can also copy-paste this" msgstr "شما همچنین می‌توانید این را کپی پیست کنید" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "همچنین می‌توانید این {0} را در مرورگر خود کپی کنید" +#: frappe/templates/emails/user_invitation_expired.html:8 +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 "می‌توانید اسناد ارسال شده را با لغو آنها و سپس اصلاح آنها تغییر دهید." @@ -29610,11 +29728,11 @@ msgstr "می‌توانید خط مشی حفظ را از {0} تغییر دهید msgid "You can continue with the onboarding after exploring this page" msgstr "پس از کاوش در این صفحه می‌توانید به آشناسازی ادامه دهید" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "می‌توانید به جای حذف این {0} آن را غیرفعال کنید." -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "می‌توانید از تنظیمات سیستم محدودیت را افزایش دهید." @@ -29634,7 +29752,7 @@ msgstr "هر بار فقط می‌توانید حداکثر {0} سند را چا msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "شما فقط می‌توانید 3 نوع Doctype سفارشی را در جدول Document Types تنظیم کنید." -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "شما فقط می‌توانید اسناد JPG، PNG، PDF، TXT، CSV یا Microsoft را آپلود کنید." @@ -29652,7 +29770,7 @@ msgstr "می‌توانید یکی از موارد زیر را انتخاب کن msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "اگر چندین کاربر از یک شبکه وارد سیستم شوند، می‌توانید مقدار بالایی را در اینجا تنظیم کنید." -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "می‌توانید فیلترهای گزارش خود را تغییر دهید." @@ -29664,11 +29782,11 @@ msgstr "برای تنظیم سطوح فیلدها می‌توانید از سف msgid "You can use wildcard %" msgstr "می‌توانید از نویسه جانشین % استفاده کنید" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "نمی‌توانید «گزینه‌ها» را برای فیلد {0} تنظیم کنید" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "نمی‌توانید «قابل ترجمه» را برای فیلد {0} تنظیم کنید" @@ -29686,7 +29804,7 @@ msgstr "شما این سند را لغو کردید {1}" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "شما نمی‌توانید یک نمودار داشبورد از تک DocType ایجاد کنید" -#: frappe/custom/doctype/customize_form/customize_form.py:385 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "نمی‌توانید «فقط خواندن» را برای فیلد {0} لغو تنظیم کنید" @@ -29716,7 +29834,7 @@ msgstr "شما {0} را به {1} تغییر دادید" msgid "You created this" msgstr "شما این را ایجاد کردید" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "" @@ -29729,15 +29847,15 @@ msgstr "شما مجوزهای خواندن یا انتخاب برای {} را ن msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "شما مجوز کافی برای دسترسی به این منبع را ندارید. لطفاً برای دسترسی با مدیر خود تماس بگیرید." -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "شما مجوز کافی برای تکمیل عمل را ندارید" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "شما اجازه دسترسی به {0}: {1} را ندارید." @@ -29749,11 +29867,11 @@ msgstr "شما مجوز لغو همه اسناد مرتبط را ندارید." msgid "You don't have access to Report: {0}" msgstr "شما به گزارش دسترسی ندارید: {0}" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "شما اجازه دسترسی به {0} DocType را ندارید." -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "شما اجازه دسترسی به این فایل را ندارید" @@ -29761,19 +29879,19 @@ msgstr "شما اجازه دسترسی به این فایل را ندارید" msgid "You don't have permission to get a report on: {0}" msgstr "شما مجوز دریافت گزارش در مورد: {0} را ندارید" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "شما مجوز دسترسی به این سند را ندارید" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " -msgstr " شما یک پیام جدید دارید از:" +msgid "You have a new message from:" +msgstr "شما یک پیام جدید دارید از:" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "شما با موفقیت از سیستم خارج شدید" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "شما به محدودیت اندازه ردیف در جدول پایگاه داده رسیده اید: {0}" @@ -29781,11 +29899,7 @@ msgstr "شما به محدودیت اندازه ردیف در جدول پایگ msgid "You have not entered a value. The field will be set to empty." msgstr "شما مقداری وارد نکرده‌اید. فیلد خالی تنظیم می‌شود." -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "شما یک ❤️ لایک در پست وبلاگ خود دریافت کرده اید" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "شما باید دو عاملی را از تنظیمات سیستم فعال کنید." @@ -29805,7 +29919,7 @@ msgstr "شما {0} را ندیده اید" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "شما هنوز نمودار داشبورد یا کارت شماره اضافه نکرده‌اید." -#: frappe/public/js/frappe/list/list_view.js:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "شما هنوز یک {0} ایجاد نکرده‌اید" @@ -29822,11 +29936,11 @@ msgstr "شما آخرین بار این را ویرایش کردید" msgid "You must add atleast one link." msgstr "شما باید حداقل یک لینک اضافه کنید." -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "برای استفاده از این فرم باید وارد سیستم شوید." -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "برای ارسال این فرم باید وارد شوید" @@ -29850,7 +29964,7 @@ msgstr "برای دسترسی به این صفحه باید کاربر سیست msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "برای ویرایش یک فرم وب استاندارد، باید در حالت توسعه دهنده باشید" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "برای اینکه بتوانید به نسخه‌های پشتیبان دسترسی داشته باشید، باید وارد سیستم شوید و نقش مدیر سیستم را داشته باشید." @@ -29858,13 +29972,13 @@ msgstr "برای اینکه بتوانید به نسخه‌های پشتیبان msgid "You need to be logged in to access this page" msgstr "برای دسترسی به این صفحه باید وارد شوید" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "برای دسترسی به این {0} باید وارد سیستم شوید." #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " -msgstr "ابتدا باید اینها را ایجاد کنید: " +msgid "You need to create these first:" +msgstr "ابتدا باید این ها را ایجاد کنید:" #: frappe/www/login.html:76 msgid "You need to enable JavaScript for your app to work." @@ -29898,11 +30012,19 @@ msgstr "برای تغییر نام به اجازه نوشتن در {0} {1} نی msgid "You need {0} permission to fetch values from {1} {2}" msgstr "برای واکشی مقادیر از {1} {2} به مجوز {0} نیاز دارید" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "پیوست {0} را حذف کردید" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "به نظر می رسد خوب است بروید!" @@ -29933,10 +30055,26 @@ msgstr "شما این سند را لغو دنبال کردید" msgid "You viewed this" msgstr "شما این را مشاهده کردید" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "شما هدایت خواهید شد به:" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "یوتیوب" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "فایل CSV شما در حال تولید است و به محض آماده شدن در بخش پیوست‌ها نمایش داده خواهد شد. علاوه بر این، هنگامی که فایل برای دانلود در دسترس قرار گرفت، به شما اطلاع داده خواهد شد." @@ -29966,7 +30104,7 @@ msgstr "میانبرهای شما" msgid "Your account has been deleted" msgstr "حساب شما حذف شده است" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "حساب شما قفل شده است و پس از {0} ثانیه از سر گرفته می‌شود" @@ -29990,10 +30128,22 @@ msgstr "درخواست اتصال شما به Google Calendar با موفقیت msgid "Your email address" msgstr "آدرس ایمیل شما" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "فرم شما با موفقیت به روز شد" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "شناسه ورود شما است" @@ -30016,7 +30166,11 @@ msgstr "نام و آدرس سازمان شما برای پاورقی ایمیل. msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "پرسمان شما دریافت شد. ما به زودی پاسخ خواهیم داد. اگر اطلاعات بیشتری دارید، لطفا به این ایمیل پاسخ دهید." -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "نشست شما منقضی شده است، لطفا برای ادامه دوباره وارد شوید." @@ -30038,7 +30192,7 @@ msgstr "صفر" msgid "Zero means send records updated at anytime" msgstr "صفر به معنای ارسال رکوردهای به روز شده در هر زمان است" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" msgstr "[اقدام انجام شده توسط {0}]" @@ -30060,10 +30214,6 @@ msgstr "«as_iterator» فقط با «as_list=True» یا «as_dict=True» کا msgid "`job_id` paramater is required for deduplication." msgstr "پارامتر \"job_id\" برای کسر تکرار مورد نیاز است." -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "ردیف های اضافه شده برای {0}" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30098,7 +30248,7 @@ msgstr "توسط نقش" msgid "cProfile Output" msgstr "cProfile خروجی" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "تقویم" @@ -30243,12 +30393,12 @@ msgstr "emacs" msgid "email" msgstr "ایمیل" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "صندوق ورودی ایمیل" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "خالی" @@ -30305,7 +30455,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "ساعت" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "هاب" @@ -30320,11 +30470,6 @@ msgstr "آیکون" msgid "import" msgstr "درون‌بُرد" -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "به دقیقه" - #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "jane@example.com" @@ -30333,7 +30478,7 @@ msgstr "jane@example.com" msgid "just now" msgstr "همین الان" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "برچسب" @@ -30362,7 +30507,7 @@ msgstr "فهرست" msgid "logged in" msgstr "وارد شده" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "login_required" @@ -30383,11 +30528,6 @@ msgstr "متر" msgid "merged {0} into {1}" msgstr "{0} در {1} ادغام شد" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "دقیقه خواندن" - #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json @@ -30411,7 +30551,7 @@ msgstr "ماژول" msgid "module name..." msgstr "نام ماژول ..." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "جدید" @@ -30540,10 +30680,6 @@ msgstr "خواندن" msgid "red" msgstr "قرمز" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "ردیف های حذف شده برای {0}" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "تغییر نام از {0} به {1}" @@ -30599,19 +30735,19 @@ msgstr "اشتراک گذاری" msgid "short" msgstr "کوتاه" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "از ماه گذشته" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "از هفته گذشته" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "از سال قبل" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "از دیروز" @@ -30664,6 +30800,10 @@ msgstr "این فرم" msgid "this shouldn't break" msgstr "این نباید بشکند" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "به مرورگر شما" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30691,7 +30831,7 @@ msgstr "version_table" msgid "via Assignment Rule" msgstr "از طریق قانون واگذاری" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "از طریق تکرار خودکار" @@ -30705,7 +30845,7 @@ msgstr "از طریق درون‌بُرد داده" msgid "via Google Meet" msgstr "از طریق Google Meet" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "از طریق اطلاع رسانی" @@ -30738,10 +30878,15 @@ msgstr "هنگامی که بر روی عنصر کلیک کنید، در صورت msgid "wkhtmltopdf" msgstr "wkhtmltopdf" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "wkhtmltopdf 0.12.x (with patched qt)." +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "workflow_transition" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json @@ -30769,11 +30914,11 @@ msgstr "yyyy-mm-dd" msgid "{0}" msgstr "{0}" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "{0} ${skip_list ? \"\" : نوع}" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "{0} ${type}" @@ -30799,19 +30944,19 @@ msgstr "{0}: {1}" msgid "{0} Calendar" msgstr "{0} تقویم" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "{0} نمودار" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "داشبورد {0}" -#: frappe/public/js/frappe/form/grid_row.js:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "{0} فیلدها" @@ -30835,6 +30980,10 @@ msgstr "{0} پسندید" msgid "{0} List" msgstr "فهرست {0}" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "{0} ماه" @@ -30847,7 +30996,7 @@ msgstr "{0} نقشه" msgid "{0} Name" msgstr "{0} نام" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "{0} مجاز به تغییر {1} پس از ارسال از {2} به {3} نیست" @@ -30857,11 +31006,10 @@ msgstr "{0} مجاز به تغییر {1} پس از ارسال از {2} به {3} msgid "{0} Report" msgstr "گزارش {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "{0} گزارش ها" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "تنظیمات {0}" @@ -30886,7 +31034,15 @@ msgstr "{0} محیط کار" msgid "{0} added" msgstr "{0} اضافه شد" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0} از قبل وجود دارد. نام دیگری را انتخاب کنید" @@ -30898,7 +31054,7 @@ msgstr "{0} قبلاً اشتراک خود را لغو کرده است" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0} قبلاً اشتراک {1} {2} را لغو کرده است" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "{0} و {1}" @@ -30906,7 +31062,7 @@ msgstr "{0} و {1}" msgid "{0} are currently {1}" msgstr "{0} در حال حاضر {1} هستند" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "{0} مورد نیاز است" @@ -30923,7 +31079,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0} پیوست {1}" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "{0} نمی‌تواند بیشتر از {1} باشد" @@ -30965,11 +31121,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "{0} {1} را به {2} تغییر داد" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "{0} نظر" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." msgstr "" @@ -30982,7 +31134,7 @@ msgstr "{0} با موفقیت ایجاد شد" msgid "{0} created this" msgstr "{0} این را ایجاد کرد" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "{0} این سند را ایجاد کرد {1}" @@ -31004,7 +31156,7 @@ msgstr "{0} در ردیف {1} وجود ندارد" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "فیلد {0} را نمی‌توان در {1} منحصربه‌فرد تنظیم کرد، زیرا مقادیر موجود غیر منحصر به فردی وجود دارد" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31036,7 +31188,7 @@ msgstr "{0} مکالمه را در {1} {2} ترک کرده است" msgid "{0} hours ago" msgstr "{0} ساعت قبل" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "اگر در عرض {1} ثانیه هدایت نشدید، {0}" @@ -31045,23 +31197,23 @@ msgstr "اگر در عرض {1} ثانیه هدایت نشدید، {0}" msgid "{0} in row {1} cannot have both URL and child items" msgstr "{0} در ردیف {1} نمی‌تواند هم URL و هم موارد فرزند را داشته باشد" -#: frappe/core/doctype/doctype/doctype.py:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "{0} یک فیلد اجباری است" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "{0} یک فایل فشرده معتبر نیست" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "{0} یک فیلد داده نامعتبر است." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "{0} یک آدرس ایمیل نامعتبر در \"گیرندگان\" است" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "{0} بین {1} و {2} است" @@ -31070,27 +31222,27 @@ msgstr "{0} بین {1} و {2} است" msgid "{0} is currently {1}" msgstr "{0} در حال حاضر {1} است" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "{0} برابر است با {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "{0} بزرگتر یا مساوی با {1} است" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "{0} بزرگتر از {1} است" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "{0} کمتر یا مساوی با {1} است" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "{0} کمتر از {1} است" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "{0} مانند {1} است" @@ -31098,7 +31250,7 @@ msgstr "{0} مانند {1} است" msgid "{0} is mandatory" msgstr "{0} اجباری است" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31118,12 +31270,12 @@ msgstr "{0} یک تقویم معتبر نیست. تغییر مسیر به تقو msgid "{0} is not a valid Cron expression." msgstr "{0} یک عبارت Cron معتبر نیست." -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} یک DocType معتبر برای پیوند پویا نیست" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "{0} یک آدرس ایمیل معتبر نیست" @@ -31131,15 +31283,15 @@ msgstr "{0} یک آدرس ایمیل معتبر نیست" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "{0} یک کد ISO 3166 ALPHA-2 معتبر نیست." -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "{0} یک نام معتبر نیست" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "{0} یک شماره تلفن معتبر نیست" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "{0} یک وضعیت گردش کار معتبر نیست. لطفاً گردش کار خود را به روز کنید و دوباره امتحان کنید." @@ -31155,55 +31307,59 @@ msgstr "{0} یک فیلد والد معتبر برای {1} نیست" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} قالب گزارش معتبری نیست. قالب گزارش باید یکی از موارد زیر باشد {1}" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "{0} یک فایل فشرده نیست" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "{0} برابر با {1} نیست" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "{0} مانند {1} نیست" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "{0} یکی از {1} نیست" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "{0} تنظیم نشده است" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "{0} اکنون قالب چاپ پیش‌فرض برای {1} doctype است" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" msgstr "{0} یکی از {1} است" #: frappe/email/doctype/email_account/email_account.py:304 -#: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: 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/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "{0} تنظیم شده است" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "{0} در محدوده {1} است" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} مورد انتخاب شد" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} به عنوان شما جعل شده است. این دلیل را آوردند: {1}" @@ -31236,35 +31392,35 @@ msgstr "{0} دقیقه قبل" msgid "{0} months ago" msgstr "{0} ماه پیش" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "{0} باید بعد از {1} باشد" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "{0} باید با '{1}' شروع شود" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "{0} باید برابر با '{1}' باشد" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "{0} نباید هیچ یک از {1} باشد" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} باید یکی از {1} باشد" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "ابتدا باید {0} تنظیم شود" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "{0} باید منحصر به فرد باشد" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "{0} باید {1} {2} باشد" @@ -31272,7 +31428,7 @@ msgstr "{0} باید {1} {2} باشد" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "{0} باید با یک حرف شروع و پایان یابد و فقط شامل حروف، خط فاصله یا زیرخط باشد." -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "{0} یک وضعیت معتبر نیست" @@ -31285,11 +31441,11 @@ msgid "{0} not found" msgstr "{0} یافت نشد" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} از {1}" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} از {1} ({2} ردیف با فرزندان)" @@ -31298,7 +31454,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "فقط {0}." -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "{0} یا {1}" @@ -31322,6 +31478,10 @@ msgstr "{0} رکورد حذف شد" msgid "{0} records will be exported" msgstr "{0} رکورد برون‌بُرد خواهد شد" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31331,15 +31491,29 @@ msgstr "{0} پیوست حذف شد {1}" msgid "{0} removed their assignment." msgstr "{0} تخصیص خود را حذف کرد." -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "نقش {0} اجازه هیچ نوع doctype را ندارد" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " -msgstr "{0} ردیف #{1}: " +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" +msgstr "{0} ردیف #{1}:" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "{0} با موفقیت ذخیره شد" @@ -31359,11 +31533,11 @@ msgstr "{0} این سند را با همه به اشتراک گذاشت" msgid "{0} shared this document with {1}" msgstr "{0} این سند را با {1} به اشتراک گذاشت" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "{0} باید ایندکس شود زیرا در اتصالات داشبورد ذکر شده است" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "{0} نباید مانند {1} باشد" @@ -31376,8 +31550,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "{0} این سند را ارسال کرد {1}" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "{0} مشترک اضافه شد" @@ -31387,7 +31561,7 @@ msgstr "{0} دریافت ایمیل هایی از این نوع را متوقف #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "{0} تا {1}" @@ -31395,7 +31569,7 @@ msgstr "{0} تا {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} لغو اشتراک‌گذاری این سند با {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} به روز شد" @@ -31431,15 +31605,15 @@ msgstr "{0} {1} اضافه شد" msgid "{0} {1} added to Dashboard {2}" msgstr "{0} {1} به داشبورد اضافه شد {2}" -#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "{0} {1} از قبل وجود دارد" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "{0} {1} نمی‌تواند \"{2}\" باشد. باید یکی از \"{3}\" باشد" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "{0} {1} نمی‌تواند یک گره برگ باشد زیرا دارای فرزندان است" @@ -31455,11 +31629,11 @@ msgstr "{0} {1} با اسناد ارسالی زیر پیوند داده شده msgid "{0} {1} not found" msgstr "{0} {1} یافت نشد" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: رکورد ارسال شده قابل حذف نیست. ابتدا باید آن را {2} لغو {3} کنید." -#: frappe/model/base_document.py:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "{0}، ردیف {1}" @@ -31467,79 +31641,79 @@ msgstr "{0}، ردیف {1}" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "" -#: frappe/model/base_document.py:1120 +#: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "{0}: «{1}» ({3}) کوتاه می‌شود، زیرا حداکثر کاراکتر مجاز {2} است." -#: frappe/core/doctype/doctype/doctype.py:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "{0}: نمی‌توان Amend را بدون لغو تنظیم کرد" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "{0}: اگر قابل ارسال نباشد، نمی‌توان Assign Amend را تنظیم کرد" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "{0}: در صورتی که قابل ارسال نباشد، نمی‌توان تخصیص ارسال را تنظیم کرد" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "{0}: لغو بدون ارسال قابل تنظیم نیست" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "{0}: نمی‌توان Import را بدون ایجاد تنظیم کرد" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "{0}: ارسال، لغو، اصلاح بدون نوشتن امکان‌پذیر نیست" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 msgid "{0}: Cannot set import as {1} is not importable" msgstr "{0}: نمی‌توان درون‌بُرد را به عنوان {1} تنظیم کرد، قابل درون‌بُرد نیست" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 +#: 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:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "{0}: فیلد «{1}» را نمی‌توان به‌عنوان منحصربه‌فرد تنظیم کرد زیرا دارای مقادیر غیر منحصر به فرد است" -#: frappe/core/doctype/doctype/doctype.py:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "{0}: فیلد {1} در ردیف {2} بدون پیش‌فرض نمی‌تواند پنهان و اجباری باشد" -#: frappe/core/doctype/doctype/doctype.py:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "{0}: فیلد {1} از نوع {2} نمی‌تواند اجباری باشد" -#: frappe/core/doctype/doctype/doctype.py:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "{0}: نام فیلد {1} چندین بار در ردیف‌های {2} ظاهر می‌شود" -#: frappe/core/doctype/doctype/doctype.py:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "{0}: نوع فیلد {1} برای {2} نمی‌تواند منحصر به فرد باشد" -#: frappe/core/doctype/doctype/doctype.py:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "{0}: هیچ مجوز اولیه تنظیم نشده است" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "{0}: فقط یک قانون با همان نقش، سطح و {1} مجاز است" -#: frappe/core/doctype/doctype/doctype.py:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" msgstr "{0}: گزینه‌ها باید یک DocType معتبر برای فیلد {1} در ردیف {2} باشند." -#: frappe/core/doctype/doctype/doctype.py:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "{0}: گزینه‌های مورد نیاز برای فیلد پیوند یا نوع جدول {1} در ردیف {2}" -#: frappe/core/doctype/doctype/doctype.py:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "{0}: گزینه‌های {1} باید با نام doctype {2} برای فیلد {3} باشد." @@ -31547,7 +31721,7 @@ msgstr "{0}: گزینه‌های {1} باید با نام doctype {2} برای msgid "{0}: Other permission rules may also apply" msgstr "{0}: سایر قوانین مجوز نیز ممکن است اعمال شوند" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "{0}: مجوز در سطح 0 باید قبل از تنظیم سطوح بالاتر تنظیم شود" @@ -31555,7 +31729,7 @@ msgstr "{0}: مجوز در سطح 0 باید قبل از تنظیم سطوح ب msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "{0}: در صورت نیاز می‌توانید از طریق {1} محدودیت فیلد را افزایش دهید" -#: frappe/core/doctype/doctype/doctype.py:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "{0}: نام فیلد را نمی‌توان روی کلمه کلیدی رزرو شده تنظیم کرد {1}" @@ -31568,11 +31742,11 @@ msgstr "{0}: {1}" msgid "{0}: {1} is set to state {2}" msgstr "{0}: {1} روی حالت {2} تنظیم شده است" -#: frappe/public/js/frappe/views/reports/query_report.js:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} در مقابل {2}" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "{0}: نوع فیلد {1} برای {2} قابل نمایه سازی نیست" @@ -31596,7 +31770,7 @@ msgstr "{count} ردیف انتخاب شد" msgid "{count} rows selected" msgstr "{count} ردیف انتخاب شد" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "{{{0}}} یک الگوی نام فیلد معتبر نیست. باید {{field_name}} باشد." @@ -31604,11 +31778,11 @@ msgstr "{{{0}}} یک الگوی نام فیلد معتبر نیست. باید {{ msgid "{} Complete" msgstr "{} کامل" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "{} کد پایتون نامعتبر در خط {}" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "{} احتمالاً کد پایتون نامعتبر است.
{}" @@ -31634,7 +31808,7 @@ msgstr "{} غیر فعال شده است. فقط در صورتی می‌توان msgid "{} is not a valid date string." msgstr "{} یک رشته تاریخ معتبر نیست." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "{} در PATH یافت نشد! این برای دسترسی به کنسول مورد نیاز است." diff --git a/frappe/locale/fr.po b/frappe/locale/fr.po index 0bd967bb70..9f1ae2cdb4 100644 --- a/frappe/locale/fr.po +++ b/frappe/locale/fr.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-21 21:49\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:58\n" "Last-Translator: developers@frappe.io\n" "Language-Team: French\n" "MIME-Version: 1.0\n" @@ -18,10 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: fr_FR\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr "à votre navigateur" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json @@ -61,7 +57,7 @@ msgstr "#{0}" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "${values.doctype_name} a été ajouté à la file d'attente pour optimisation" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" msgstr "" @@ -74,7 +70,7 @@ msgstr "HTML" msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "'Dans la recherche globale' n'est pas autorisé pour le champ {0} de type {1}" -#: frappe/core/doctype/doctype/doctype.py:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "'Dans la Recherche Globale' n'est pas autorisé pour le type {0} dans la ligne {1}" @@ -82,19 +78,23 @@ msgstr "'Dans la Recherche Globale' n'est pas autorisé pour le type {0} dans la msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "'Dans la vue liste' n'est pas autorisé pour le champ {0} de type {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "'Dans La Vue En Liste’ n'est pas permis pour le type {0} à la ligne {1}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" msgstr "«Destinataires» non spécifiés" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" msgstr "'{0}' n'est pas une URL valide" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" msgstr ""{0}" non autorisé pour le type {1} dans la ligne {2}" @@ -102,11 +102,11 @@ msgstr ""{0}" non autorisé pour le type {1} dans la ligne {2}" msgid "(Mandatory)" msgstr "(Obligatoire)" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "** Échec: {0} à {1}: {2}" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" msgstr "+ Ajouter / Supprimer des champs" @@ -122,7 +122,7 @@ msgstr "0 - Brouillon; 1 - Validé; 2 - Annulé" msgid "0 is highest" msgstr "0 est le plus élevé" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = Vrai & 0 = Faux" @@ -141,15 +141,11 @@ msgstr "1 jour" msgid "1 Google Calendar Event synced." msgstr "1 événement Google Agenda synchronisé." -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "1 commentaire" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "Il y a 1 jour" @@ -158,17 +154,17 @@ msgid "1 hour" msgstr "1 heure" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "Il y a 1 heure" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "Il y a 1 minute" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "Il y a 1 mois" @@ -180,37 +176,47 @@ msgstr "" msgid "1 record will be exported" msgstr "1 enregistrement sera exporté" -#: frappe/tests/test_utils.py:711 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "" + +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "Il y a 1 seconde" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "Il ya 1 semaine" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "Il y a 1 an" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "Il y a 2 heures" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "Il y a 2 mois" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "Il y a 2 semaines" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "Il y a 2 ans" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "Il y a 3 minutes" @@ -226,7 +232,7 @@ msgstr "4 heures" msgid "5 Records" msgstr "5 enregistrements" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "" @@ -246,6 +252,13 @@ msgstr "" msgid "<=" msgstr "" +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "" @@ -255,6 +268,16 @@ msgstr "" msgid "
Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
" msgstr "
Veuillez ne pas le mettre à jour car cela pourrait gâcher votre formulaire. Utilisez la vue Personnaliser Le Formulaire et les Champs Personnalisés pour définir les propriétés !
" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -571,7 +594,7 @@ msgid "

To interact with above HTML you will have to use `root_element` as a p "

" msgstr "" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

" msgstr "" @@ -649,7 +672,7 @@ msgstr "" msgid ">=" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" @@ -658,15 +681,16 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" -msgstr "Un article en vedette doit avoir une image de couverture" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "" @@ -679,7 +703,7 @@ msgstr "Une liste des ressources que l'App client aura accès à après que l'ut msgid "A new account has been created for you at {0}" msgstr "Un nouveau compte a été créé pour vous à {0}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "Un {0} {1} récurrent a été créé pour vous via la répétition automatique {2}." @@ -778,13 +802,17 @@ msgstr "API Endpoint" msgid "API Endpoint Args" msgstr "Args de paramètres API" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -803,6 +831,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "La clé API ne peut pas être régénérée" +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -823,7 +855,7 @@ msgstr "" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -870,6 +902,20 @@ msgstr "Il reste environ {0} minutes" msgid "About {0} seconds remaining" msgstr "Il reste environ {0} secondes" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "Accepté.e" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -895,7 +941,7 @@ msgstr "Jeton d'Accès" msgid "Access Token URL" msgstr "URL du jeton d'accès" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Accès non autorisé à partir de cette adresse IP" @@ -959,7 +1005,7 @@ msgstr "Action / Route" msgid "Action Complete" msgstr "Action terminée" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "Échec de l'action" @@ -1011,7 +1057,7 @@ msgstr "L'action {0} a échoué sur {1} {2}. Voir {3}" #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Actions" @@ -1068,7 +1114,7 @@ msgstr "Historique d'activité" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -1079,7 +1125,7 @@ msgstr "Historique d'activité" msgid "Add" msgstr "Ajouter" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -1091,7 +1137,7 @@ msgstr "Ajouter / Mettre à jour" msgid "Add A New Rule" msgstr "Ajouter une nouvelle règle" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Ajouter une pièce jointe" @@ -1111,7 +1157,7 @@ msgstr "Ajouter une bordure en bas" msgid "Add Border at Top" msgstr "Ajouter une bordure en haut" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "" @@ -1124,10 +1170,10 @@ msgid "Add Child" msgstr "Ajouter une Sous-Catégorie" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "Ajouter une Colonne" @@ -1186,7 +1232,7 @@ msgstr "Ajouter des participants" msgid "Add Query Parameters" msgstr "Ajouter des paramètres de requête" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "" @@ -1219,12 +1265,12 @@ msgstr "Ajouter des Abonnés" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "" @@ -1313,7 +1359,7 @@ msgstr "" msgid "Add page break" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "Ajouter un script pour la table enfant" @@ -1351,7 +1397,7 @@ msgstr "" msgid "Add {0}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" msgstr "" @@ -1394,6 +1440,7 @@ msgstr "Autorisations supplémentaires" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1402,6 +1449,7 @@ msgstr "Adresse" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "Adresse Ligne 1" @@ -1409,6 +1457,7 @@ msgstr "Adresse Ligne 1" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "Adresse Ligne 2" @@ -1459,7 +1508,7 @@ msgstr "" msgid "Adds a custom field to a DocType" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "Administration" @@ -1473,7 +1522,6 @@ msgstr "Administration" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1486,11 +1534,11 @@ msgstr "Administration" msgid "Administrator" msgstr "Administrateur" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "Administrateur Connecté" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "L'administrateur a accedé à {0} sur {1} avec l'Adresse IP {2}." @@ -1511,8 +1559,8 @@ msgstr "Avancé" msgid "Advanced Control" msgstr "Contrôle avancé" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" msgstr "Recherche Avancée" @@ -1571,7 +1619,7 @@ msgstr "Après la soumission" msgid "After Submit" msgstr "Après validation" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "Le champ agrégé est requis pour créer une carte de numéro" @@ -1598,11 +1646,11 @@ msgstr "Alerte" msgid "Alerts and Notifications" msgstr "Alertes et notifications" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1667,7 +1715,7 @@ msgstr "Toutes les images jointes au diaporama du site Web doivent être publiqu msgid "All Records" msgstr "Tous les enregistrements" -#: frappe/public/js/frappe/form/form.js:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "" @@ -1727,7 +1775,7 @@ msgstr "Autoriser l'édition en masse" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " +msgid "Allow Consecutive Login Attempts" msgstr "Autoriser des tentatives de connexion consécutives" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 @@ -1748,11 +1796,6 @@ msgstr "Autoriser l'invité" msgid "Allow Guest to View" msgstr "Autoriser les Invités à Voir" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "Autoriser les invités à commenter" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1801,7 +1844,7 @@ msgid "Allow Print for Cancelled" msgstr "Autoriser l'Impression si Annulé" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "Autoriser l'Impression si Brouillon" @@ -2034,7 +2077,7 @@ msgstr "" msgid "Allows skipping authorization if a user has active tokens." msgstr "" -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "Déjà Inscrit" @@ -2042,11 +2085,11 @@ msgstr "Déjà Inscrit" msgid "Already in the following Users ToDo list:{0}" msgstr "Déjà dans la liste des tâches des utilisateurs suivante: {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "Ajout également du champ de devise dépendante {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "Ajout également du champ de dépendance de statut {0}" @@ -2055,6 +2098,12 @@ msgstr "Ajout également du champ de dépendance de statut {0}" msgid "Alternative Email ID" msgstr "Email de connexion alternatif" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2106,10 +2155,8 @@ msgstr "Paramètres de nommage des documents modifiés" msgid "Amended Documents" msgstr "Documents modifiés" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "Modifié Depuis" @@ -2133,6 +2180,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "Règles de nommage mises à jour." +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 msgid "An error occurred while setting Session Defaults" msgstr "Une erreur s'est produite lors de la définition des paramètres de session par défaut." @@ -2226,10 +2278,12 @@ msgid "App Logo" msgstr "Logo de l'application" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2300,6 +2354,10 @@ msgstr "Nom de l'application" msgid "Application Version" msgstr "Version de l'application" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2309,7 +2367,7 @@ msgstr "Appliqué sur" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Appliquer la règle d'assignation" @@ -2357,7 +2415,7 @@ msgstr "Appliquer cette règle si l'Utilisateur est le Responsable" msgid "Apply to all Documents Types" msgstr "Appliquer à tous les types de documents" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "Application: {0}" @@ -2390,7 +2448,11 @@ msgstr "Archivé" msgid "Archived Columns" msgstr "Colonnes Archivées" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2418,11 +2480,15 @@ msgctxt "Confirmation dialog message" msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:191 msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2430,7 +2496,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "Voulez-vous vraiment fusionner {0} avec {1}?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2485,6 +2551,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2494,7 +2566,7 @@ msgstr "Attribuer une condition" msgid "Assign To" msgstr "Attribuer À" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Attribuer À" @@ -2557,6 +2629,11 @@ msgstr "Assigné À" msgid "Assigned To/Owner" msgstr "Assigné À /Responsable" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "Affectation en cours..." @@ -2626,7 +2703,13 @@ msgstr "Affectation de {0} supprimée par {1}" msgid "Assignments" msgstr "Affectations" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "Au moins une colonne est requise pour s'afficher dans la grille." @@ -2706,7 +2789,7 @@ msgstr "Attaché au champ" msgid "Attached To Name" msgstr "Joint Au Nom" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "Le nom joint à un nom doit être une chaîne ou un entier" @@ -2722,7 +2805,7 @@ msgstr "Pièce jointe" msgid "Attachment Limit (MB)" msgstr "Taille Maximale de la Pièce jointe (MB)" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "Limite de pièces jointes atteinte" @@ -2740,15 +2823,15 @@ msgstr "Pièce jointe retirée" #. Label of the attachments (Code) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "Pièces jointes" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "Tentative de connexion au bac QZ ..." -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "Tenter de lancer QZ Tray ..." @@ -2771,6 +2854,10 @@ msgstr "Traînée d'audit" msgid "Auth URL Data" msgstr "Données d'URL d'authentification" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "" + #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authenticate as Service Principal" @@ -2788,8 +2875,8 @@ msgid "Authentication" msgstr "Authentification" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " -msgstr "Les Applications d'Authentification que vous pouvez utiliser sont:" +msgid "Authentication Apps you can use are:" +msgstr "" #: frappe/email/doctype/email_account/email_account.py:339 msgid "Authentication failed while receiving emails from Email Account: {0}." @@ -2902,11 +2989,11 @@ msgstr "Répétition automatique" msgid "Auto Repeat Day" msgstr "Jour de répétition automatique" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "La répétition automatique de la création de document a échoué" @@ -2914,11 +3001,16 @@ msgstr "La répétition automatique de la création de document a échoué" msgid "Auto Repeat Schedule" msgstr "Planification de répétition automatique" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "Répétition automatique créée pour ce document" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "La répétition automatique a échoué pour {0}" @@ -2962,7 +3054,7 @@ msgstr "Suivre automatiquement les documents que vous commentez" msgid "Auto follow documents that you create" msgstr "Suivi automatique des documents que vous créez" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "La répétition automatique a échoué. Veuillez activer la répétition automatique après avoir résolu les problèmes." @@ -3010,7 +3102,7 @@ msgstr "La liaison automatique ne peut être activée que si l'option Entran msgid "Automatically Assign Documents to Users" msgstr "Affecter automatiquement des documents aux utilisateurs" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "Application automatique d'un filtre pour les données récentes. Vous pouvez désactiver ce comportement dans les paramètres de l'affichage de la liste." @@ -3024,11 +3116,6 @@ msgstr "Supprimer automatiquement le compte dans (heures)" msgid "Automation" msgstr "Automatisation" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3300,8 +3387,8 @@ msgstr "URL de base" #. Label of the based_on (Link) field in DocType 'Language' #: frappe/core/doctype/language/language.json -#: frappe/printing/page/print/print.js:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "Basé Sur" @@ -3418,10 +3505,8 @@ msgstr "" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "Biographie" @@ -3451,64 +3536,6 @@ msgstr "Bloquer les Modules" msgid "Blocked" msgstr "Bloqué" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "Catégorie du Blog" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "Intro du Blog" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "Introduction du Blog" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "Article de Blog" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "Paramètres du Blog" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "Titre du Blog" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "Blogueur" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3605,13 +3632,6 @@ msgstr "" msgid "Breadcrumbs" msgstr "Fil d’Ariane (Breadcrumbs)" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3669,15 +3689,15 @@ msgstr "Suppression en masse" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "Modifier en Masse {0}" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" msgstr "" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "" @@ -3692,7 +3712,7 @@ msgstr "" msgid "Bulk Update" msgstr "Mise à jour en Masse" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "" @@ -3704,7 +3724,7 @@ msgstr "" msgid "Bulk operations only support up to 500 documents." msgstr "" -#: frappe/model/workflow.py:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "" @@ -3834,16 +3854,6 @@ msgstr "" msgid "CSV" msgstr "" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "Étiquette CTA" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "URL du CTA" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3894,11 +3904,6 @@ msgstr "Appel à l'action" msgid "Call To Action URL" msgstr "URL d'appel à l'action" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -3916,7 +3921,7 @@ msgid "Camera" msgstr "Caméra" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3952,7 +3957,7 @@ msgstr "" msgid "Can not rename as column {0} is already present on DocType." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "" @@ -3976,14 +3981,15 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "Annuler" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Annuler" @@ -4001,16 +4007,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "Annuler tous les documents" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Annuler les documents {0}?" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -4048,11 +4056,11 @@ msgstr "" msgid "Cannot Remove" msgstr "Ne peut être retiré" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -4060,7 +4068,7 @@ msgstr "" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "Impossible d'annuler avant de valider. Voir Transition {0}" @@ -4068,11 +4076,11 @@ msgstr "Impossible d'annuler avant de valider. Voir Transition {0}" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1013 +#: frappe/model/document.py:1017 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -4080,11 +4088,11 @@ msgstr "" msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "Impossible de changer l'état d'un Document Annulé. Ligne de transition {0}" -#: frappe/core/doctype/doctype/doctype.py:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "" @@ -4096,11 +4104,11 @@ msgstr "Création impossible d'un {0} pour un document enfant: {1}" msgid "Cannot create private workspace of other users" msgstr "" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "Impossible de supprimer les dossiers d’accueil et les pièces jointes" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "Impossible de supprimer ou d'annuler, car {0} {1} est associé à {2} {3} {4}" @@ -4135,7 +4143,7 @@ msgstr "" msgid "Cannot delete {0}" msgstr "Impossible de supprimer {0}" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" msgstr "Impossible de supprimer {0} car il possède des sous-nœuds" @@ -4143,7 +4151,7 @@ msgstr "Impossible de supprimer {0} car il possède des sous-nœuds" msgid "Cannot edit Standard Dashboards" msgstr "" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "Impossible de modifier une notification standard. Pour l'éditer, veuillez la désactiver et la dupliquer" @@ -4155,7 +4163,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "Modification du rapport standard impossible. Veuillez le dupliquer et créer un nouveau rapport" -#: frappe/model/document.py:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "Impossible de modifier un document annulé" @@ -4163,8 +4171,8 @@ msgstr "Impossible de modifier un document annulé" msgid "Cannot edit filters for standard charts" msgstr "Impossible de modifier les filtres des graphiques standard" -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "" @@ -4172,27 +4180,27 @@ msgstr "" msgid "Cannot edit standard fields" msgstr "Impossible de modifier les champs standards" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:884 msgid "Cannot have multiple printers mapped to a single print format." msgstr "Impossible d'imprimer plusieurs imprimantes sur un seul format d'impression." -#: frappe/public/js/frappe/form/grid.js:1132 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "Impossible de lier le document annulé : {0}" @@ -4204,11 +4212,11 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "Impossible de faire correspondre la colonne {0} avec un champ" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "Impossible de déplacer la ligne" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "Impossible de supprimer le champ ID" @@ -4216,7 +4224,7 @@ msgstr "Impossible de supprimer le champ ID" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "" @@ -4233,11 +4241,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "Impossible de mettre à jour {0}" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" -msgstr "Impossible d'utiliser la sous-requête dans l'ordre demandé" +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." +msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4305,15 +4313,6 @@ msgstr "Centre" msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "Intégrité de la chaîne" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "Hachage de chaînage" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4351,9 +4350,9 @@ msgstr "" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
\n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " +"Warning: Incorrectly updating counters can prevent documents from getting created." msgstr "Modifiez le numéro de séquence de début/actuel d’une série existante.
\n\n" -"Attention : une mise à jour incorrecte des compteurs peut empêcher la création de documents. " +"Attention : une mise à jour incorrecte des compteurs peut empêcher la création de documents." #. Label of the changed_at (Datetime) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -4373,7 +4372,7 @@ msgstr "" #. Label of the changed_values (HTML) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json msgid "Changes" -msgstr "" +msgstr "Modifications" #: frappe/email/doctype/email_domain/email_domain.js:5 msgid "Changing any setting will reflect on all the email accounts associated with this domain." @@ -4422,7 +4421,7 @@ msgstr "Source graphique" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "Type de graphique" @@ -4455,7 +4454,7 @@ msgstr "" msgid "Check" msgstr "Vérifier" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "Vérifier l'URL de Demande" @@ -4463,7 +4462,7 @@ msgstr "Vérifier l'URL de Demande" msgid "Check columns to select, drag to set order." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "Consultez le journal des erreurs pour plus d'informations: {0}" @@ -4504,11 +4503,6 @@ msgstr "Si vous cochez cette case, la page sera publiée sur votre site Web et e msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "Cochez cette case pour afficher une zone de texte dans laquelle vous pouvez écrire du javascript personnalisé qui s'exécutera sur cette page." -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "Version du Checksum" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "" @@ -4518,17 +4512,17 @@ msgstr "" msgid "Child Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Les tables enfants sont affichées sous forme de grille dans d'autres DocTypes" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4557,6 +4551,7 @@ msgid "Choose authentication method to be used by all users" msgstr "Choisissez la méthode d'authentification qui sera utilisée par tous les utilisateurs" #. 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 msgid "City" msgstr "Ville" @@ -4571,7 +4566,7 @@ msgstr "Ville" msgid "Clear" msgstr "Nettoyer" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "" @@ -4583,7 +4578,7 @@ msgstr "" msgid "Clear All" msgstr "Tout effacer" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4609,7 +4604,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "Effacer les autorisations utilisateur" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "" @@ -4621,11 +4616,15 @@ msgstr "Réinitialisation de la date de fin, car les pages ne peuvent pas être msgid "Click On Customize to add your first widget" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "Cliquez ici" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "" @@ -4656,24 +4655,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "Cliquez sur {0} pour générer le jeton d'actualisation." #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "Cliquez sur la table pour modifier" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4851,7 +4850,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Réduire" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Tout réduire" @@ -4906,7 +4905,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:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4962,11 +4961,11 @@ msgstr "Nom de la Colonne" msgid "Column Name cannot be empty" msgstr "Nom de la Colonne ne peut pas être vide" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4993,7 +4992,7 @@ msgstr "Colonnes" msgid "Columns / Fields" msgstr "Colonnes / Champs" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "Colonnes basées sur" @@ -5035,16 +5034,6 @@ msgstr "Type de Commentaire" msgid "Comment can only be edited by the owner" msgstr "Le commentaire ne peut être modifié que par le propriétaire" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "" @@ -5052,7 +5041,7 @@ msgstr "" #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "Commentaires" @@ -5061,7 +5050,7 @@ msgstr "Commentaires" msgid "Comments and Communications will be associated with this linked document" msgstr "Commentaires et Communications seront associés à ce document lié" -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "Les commentaires ne peuvent pas avoir de liens ou d'adresses électroniques" @@ -5133,12 +5122,12 @@ msgid "Company Name" msgstr "Nom de la Société" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "" @@ -5218,8 +5207,8 @@ msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5233,6 +5222,11 @@ msgstr "Conditions" msgid "Condition JSON" msgstr "" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5258,11 +5252,11 @@ msgstr "" msgid "Configuration" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "Configurer le graphique" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "Configurer Les Colonnes" @@ -5289,7 +5283,7 @@ msgstr "Configurez la manière dont les documents modifiés seront nommés.
\ msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Confirmer" @@ -5308,7 +5302,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "Confirmer le nouveau mot de passe" @@ -5335,7 +5329,7 @@ msgstr "Confirmé" msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "" @@ -5353,8 +5347,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "Connecté à QZ Tray!" @@ -5405,6 +5399,10 @@ msgstr "" msgid "Contact" msgstr "" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
{0}" +msgstr "" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5462,15 +5460,13 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5478,24 +5474,12 @@ msgstr "" msgid "Content" msgstr "Contenu" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "Contenu (HTML)" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "Contenu (Markdown)" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "Hash du Contenu" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "Type de Contenu" @@ -5563,7 +5547,7 @@ msgstr "" msgid "Copy embed code" msgstr "" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "" @@ -5571,12 +5555,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "Copier vers le presse-papiers" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "" + #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" msgstr "Droit d'Auteur" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "Les DocTypes de base ne peuvent pas être personnalisés." @@ -5584,7 +5572,7 @@ msgstr "Les DocTypes de base ne peuvent pas être personnalisés." msgid "Core Modules {0} cannot be searched in Global Search." msgstr "Les modules de base {0} ne peuvent pas être recherchés dans la recherche globale." -#: frappe/printing/page/print/print.js:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "" @@ -5592,7 +5580,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "Impossible de se connecter au serveur de messagerie sortant" -#: frappe/model/document.py:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "Impossible de trouver {0}" @@ -5600,15 +5588,15 @@ msgstr "Impossible de trouver {0}" msgid "Could not map column {0} to field {1}" msgstr "Impossible de mapper la colonne {0} au champ {1}" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " +msgid "Could not start up:" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "Impossible d'enregistrer, veuillez vérifier les données que vous avez saisies" @@ -5653,13 +5641,14 @@ msgstr "Compteur" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "Pays" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "" @@ -5691,13 +5680,13 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Créer" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5711,7 +5700,7 @@ msgid "Create Card" msgstr "Créer une carte" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "Créer un graphique" @@ -5745,12 +5734,12 @@ msgstr "Créer un journal" msgid "Create New" msgstr "Créer Nouveau(elle)" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Créer Nouveau(elle)" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5758,7 +5747,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "Créer un Email Utilisateur" @@ -5770,7 +5759,7 @@ msgstr "" msgid "Create a Reminder" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "" @@ -5778,11 +5767,11 @@ msgstr "" msgid "Create a new record" msgstr "Créer un nouvel enregistrement" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "Créer un(e) nouveau(elle) {0}" @@ -5798,7 +5787,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "Créez votre premier {0}" @@ -5808,7 +5797,7 @@ msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "Créé" @@ -5824,7 +5813,7 @@ msgstr "" msgid "Created By" msgstr "Établi par" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "Crée un Champ Personnalisé {0} dans {1}" @@ -5836,7 +5825,7 @@ msgstr "Crée un Champ Personnalisé {0} dans {1}" msgid "Created On" msgstr "Créé Le" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "Création de {0}" @@ -6145,7 +6134,7 @@ msgstr "" #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "Personnaliser ?" @@ -6173,14 +6162,14 @@ msgstr "Réinitialiser les Personnalisations" msgid "Customizations for {0} exported to:
{1}" msgstr "Personnalisations pour {0} exportées vers:
{1}" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "Personnaliser" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "Personnaliser" @@ -6199,7 +6188,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "Personnaliser le formulaire" @@ -6277,7 +6266,7 @@ msgstr "Quotidien" msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "Un Récapitulatif Quotidien est envoyé pour les Événements du Calendrier ayant des rappels." -#: frappe/desk/doctype/event/event.py:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "Les événements quotidiens devraient se terminer le même jour." @@ -6324,7 +6313,7 @@ msgstr "" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "Tableau de bord" @@ -6383,7 +6372,6 @@ msgstr "Tableaux de bord" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6396,7 +6384,6 @@ msgstr "Tableaux de bord" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6432,7 +6419,7 @@ msgstr "" msgid "Data Import Template" msgstr "Modèle d'importation de données" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "Données trop longues" @@ -6463,7 +6450,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6601,11 +6588,11 @@ msgstr "Cher {0}" msgid "Debug Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "" @@ -6765,13 +6752,13 @@ msgstr "" #. Description of the 'Currency' (Link) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Default display currency" -msgstr "" +msgstr "Devise d'affichage par défaut" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "La valeur par défaut pour le type de champ "Vérifier" {0} doit être "0" ou "1"" -#: frappe/core/doctype/doctype/doctype.py:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 msgid "Default value for {0} must be in the list of options." msgstr "La valeur par défaut de {0} doit figurer dans la liste des options." @@ -6805,6 +6792,12 @@ msgstr "" msgid "Defines actions on states and the next step and allowed roles." msgstr "" +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6822,22 +6815,27 @@ msgstr "Différé" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_permission/user_permission_list.js:189 -#: frappe/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Supprimer" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Supprimer" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "Supprimer" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "" @@ -6846,6 +6844,12 @@ msgstr "" 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 +msgid "Delete Background Exported Reports After (Hours)" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6855,7 +6859,7 @@ msgstr "" msgid "Delete Data" msgstr "Suprimmer les données" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6869,7 +6873,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6878,7 +6882,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "Supprimer le commentaire ?" @@ -6911,12 +6915,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "Supprimer cet enregistrement pour permettre l'envoi à cette adresse Email" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Supprimer {0} éléments de façon permanente?" @@ -6952,11 +6956,15 @@ msgstr "Documents Supprimés" msgid "Deleted Name" msgstr "Nom Supprimé" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Supprimé!" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "Suppression de {0}" @@ -6971,7 +6979,7 @@ msgstr "" #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " +msgid "Deletion Steps" msgstr "" #: frappe/core/doctype/page/page.py:110 @@ -6988,7 +6996,7 @@ msgstr "" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "" @@ -7015,7 +7023,7 @@ msgstr "Département" msgid "Dependencies" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "" @@ -7050,7 +7058,6 @@ msgstr "" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -7071,7 +7078,6 @@ msgstr "" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -7081,11 +7087,6 @@ msgstr "" msgid "Description" msgstr "Description" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "Description de la page de liste, en texte brut, seulement quelques lignes. (max 200 caractères)" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -7169,7 +7170,7 @@ msgstr "L'Icône du Bureau existe déjà" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "Détails" @@ -7230,11 +7231,6 @@ msgstr "" msgid "Disable Comment Count" msgstr "Désactiver le comptage des commentaires" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "Désactiver les commentaires" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7252,11 +7248,6 @@ msgstr "Désactiver le compte" msgid "Disable Document Sharing" msgstr "" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "Désactiver Rapport" @@ -7266,6 +7257,11 @@ msgstr "Désactiver Rapport" msgid "Disable SMTP server authentication" msgstr "Désactiver l'authentification du serveur SMTP" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7311,7 +7307,6 @@ msgstr "" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7326,7 +7321,6 @@ msgstr "" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "Desactivé" @@ -7337,7 +7331,7 @@ msgstr "Réponse automatique désactivée" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "Ignorer" @@ -7355,7 +7349,7 @@ msgstr "Ignorer" msgid "Discard {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "" @@ -7378,7 +7372,7 @@ msgstr "" msgid "Discussion Topic" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7414,19 +7408,23 @@ msgstr "" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " +msgid "Do Not Create New User" msgstr "" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "Ne pas modifier les en-têtes prédéfinis dans le modèle" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7517,7 +7515,7 @@ msgstr "" msgid "DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1577 +#: frappe/core/doctype/doctype/doctype.py:1578 msgid "DocType {0} provided for the field {1} must have atleast one Link field" msgstr "Le type de document {0} fourni pour le champ {1} doit comporter au moins un champ Lien." @@ -7564,11 +7562,11 @@ msgstr "" msgid "DocType View" msgstr "Vue DocType" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "DocType ne peut pas être fusionné" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "DocType ne peut être renommé que par l'Administrateur" @@ -7577,7 +7575,7 @@ msgstr "DocType ne peut être renommé que par l'Administrateur" msgid "DocType is a Table / Form in the application." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "Le DocType doit être validable pour l'événement Doc sélectionné" @@ -7610,7 +7608,7 @@ msgstr "" msgid "DocType {} not found" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "Le nom de DocType ne doit pas commencer ou se terminer par un espace" @@ -7624,7 +7622,7 @@ msgstr "" msgid "Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "" @@ -7686,31 +7684,29 @@ msgstr "Lien vers les documents" msgid "Document Links" msgstr "Liens de document" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7852,13 +7848,13 @@ msgstr "Titre du document" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "Type de Document" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 msgid "Document Type and Function are required to create a number card" msgstr "" @@ -7895,7 +7891,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "" @@ -7903,15 +7899,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "Document annule" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "Document valide" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "Document au statut brouillon" @@ -8042,7 +8038,7 @@ msgstr "Vous n'avez pas de compte?" #: frappe/public/js/print_format_builder/HTMLEditor.vue:5 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52 msgid "Done" -msgstr "" +msgstr "Terminé" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -8053,13 +8049,13 @@ msgstr "" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "Télécharger" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "Télécharger" @@ -8086,7 +8082,7 @@ msgstr "Lien de téléchargement" msgid "Download PDF" msgstr "Télécharger au Format PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "Télécharger le rapport" @@ -8149,7 +8145,7 @@ msgstr "" msgid "Drag to add state" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "" @@ -8182,7 +8178,7 @@ msgstr "" msgid "Duplicate Filter Name" msgstr "Nom du filtre en double" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "Nom en double" @@ -8281,17 +8277,17 @@ msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8299,7 +8295,7 @@ msgstr "" msgid "Edit" msgstr "modifier" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "modifier" @@ -8309,7 +8305,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "modifier" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "modifier" @@ -8338,7 +8334,7 @@ msgstr "Modifier HTML Personnalisé" msgid "Edit DocType" msgstr "Modifier le DocType" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Modifier le DocType" @@ -8356,7 +8352,7 @@ msgstr "" msgid "Edit Footer" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "Modifier le Format" @@ -8441,7 +8437,7 @@ msgstr "" msgid "Edit to add content" msgstr "Modifier pour ajouter du contenu" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "" @@ -8450,7 +8446,7 @@ msgstr "" msgid "Edit your workflow visually using the Workflow Builder." msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "Modifier {0}" @@ -8458,7 +8454,7 @@ msgstr "Modifier {0}" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "Grille Éditable" @@ -8497,11 +8493,14 @@ msgstr "" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8510,6 +8509,7 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8519,6 +8519,8 @@ msgstr "" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "Courriel" @@ -8550,7 +8552,7 @@ msgstr "" msgid "Email Account Name" msgstr "Nom du Compte Email" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "Compte Email ajouté plusieurs fois" @@ -8638,6 +8640,7 @@ msgid "Email IDs" msgstr "ID's E-mail" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "Identifiant Email" @@ -8681,10 +8684,10 @@ msgstr "" msgid "Email Rule" msgstr "Règle Email" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" -msgstr "Email Envoyé" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" +msgstr "Email Envoyé à" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType @@ -8749,11 +8752,11 @@ msgstr "L'Email a été marqué comme étant un spam" msgid "Email has been moved to trash" msgstr "L'Email a été déplacé dans la corbeille" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "Email pas envoyé à {0} (désabonné / désactivé)" @@ -8792,7 +8795,7 @@ msgstr "Les e-mails seront envoyés lors des actions de workflow" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8800,7 +8803,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -8819,7 +8822,7 @@ msgstr "Activer" msgid "Enable Address Autocompletion" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "Activez Autoriser la répétition automatique pour le type de document {0} dans Personnaliser le formulaire." @@ -8845,11 +8848,6 @@ msgstr "Activer Commentaires" msgid "Enable Dynamic Client Registration" msgstr "" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -8943,11 +8941,6 @@ msgstr "Activer la sécurité" msgid "Enable Social Login" msgstr "Activer la connexion sociale" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "Activer le partage social" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "Activer les vues de page de suivi" @@ -8955,7 +8948,7 @@ msgstr "Activer les vues de page de suivi" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "Autoriser l'Authentification à Double Facteurs" @@ -8967,12 +8960,6 @@ msgstr "" msgid "Enable developer mode to create a standard Web Template" msgstr "Activer le mode développeur pour créer un modèle Web standard" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "" - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -8995,6 +8982,7 @@ msgstr "" #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -9007,6 +8995,7 @@ msgstr "" #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "Activé" @@ -9032,14 +9021,10 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "" - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." msgstr "" #. Description of the 'Queue in Background (BETA)' (Check) field in DocType @@ -9056,11 +9041,11 @@ msgstr "" msgid "Encrypt Backups" msgstr "" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "" @@ -9072,7 +9057,7 @@ msgstr "Fin" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -9088,6 +9073,10 @@ msgstr "Champ pour la Date de Fin" msgid "End Date cannot be before Start Date!" msgstr "La date de fin ne peut pas être antérieure à la date de début!" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9132,7 +9121,7 @@ msgstr "Entrez l'ID et le secret du client dans les paramètres Google." msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "Entrez Email du(des) Destinataire(s)" @@ -9202,10 +9191,17 @@ msgstr "Égal à" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9215,7 +9211,7 @@ msgstr "Égal à" msgid "Error" msgstr "Erreur" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "Erreur" @@ -9235,7 +9231,7 @@ msgstr "" msgid "Error Message" msgstr "Message d'erreur" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 msgid "Error connecting to QZ Tray Application...

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

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

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

Cliquez ici pour télécharger et installer QZ Tray .
Cliquez ici pour en savoir plus sur l'impression brute ." @@ -9263,9 +9259,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "Erreur dans la notification" @@ -9285,19 +9281,19 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "Erreur lors de la connexion au compte Email {0}" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Erreur lors de l'évaluation de la notification {0}. Veuillez corriger votre modèle." -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "Erreur: Valeur absente pour {0}: {1}" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "" @@ -9354,7 +9350,7 @@ msgstr "Type d'Événement" msgid "Events" msgstr "" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "Événements dans le Calendrier d'Aujourd'hui" @@ -9438,7 +9434,7 @@ msgstr "Exécuter" msgid "Execute Console script" msgstr "Exécuter le script de la console" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "" @@ -9446,7 +9442,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "Temps d'exécution: {0} s" @@ -9472,12 +9468,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Développer" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Développer Tout" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9505,7 +9501,9 @@ msgid "Expire Notification On" msgstr "Les Notifications Expirent le" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "Expiré" @@ -9533,13 +9531,13 @@ msgstr "Heure d'expiration de l'image du QR Code" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Exporter" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Exporter" @@ -9576,7 +9574,7 @@ msgstr "Exporter de" msgid "Export Import Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "Rapport d'Export: {0}" @@ -9585,11 +9583,11 @@ msgstr "Rapport d'Export: {0}" msgid "Export Type" msgstr "Type d'Exportation" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "" @@ -9597,6 +9595,10 @@ msgstr "" msgid "Export as zip" msgstr "" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "Pas autorisé à exporter. Vous devez avoir le rôle {0} pour exporter." @@ -9702,7 +9704,7 @@ msgstr "" msgid "Failed Logins (Last 30 days)" msgstr "" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "Transactions ayant échoué" @@ -9719,7 +9721,7 @@ msgstr "Échec de la modification du mot de passe." msgid "Failed to complete setup" msgstr "Échec de l’installation" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "" @@ -9728,15 +9730,15 @@ msgstr "" msgid "Failed to connect to server" msgstr "échec de connexion au serveur" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "Échec du décodage du jeton, veuillez fournir un jeton encodé en base64 valide." -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "" @@ -9744,8 +9746,8 @@ msgstr "" msgid "Failed to enable scheduler: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "" @@ -9761,7 +9763,7 @@ msgstr "" msgid "Failed to generate preview of series" msgstr "" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "" @@ -9781,11 +9783,11 @@ msgstr "" msgid "Failed to optimize image: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "" @@ -9835,12 +9837,6 @@ msgstr "" msgid "Fax" msgstr "" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "En vedette" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "Retour d’Expérience" @@ -9898,17 +9894,17 @@ msgstr "Récupération des documents de recherche globale par défaut." #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "Champ" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" msgstr "Le champ "route" est obligatoire pour les vues Web" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "" @@ -9921,7 +9917,7 @@ msgstr "Le champ \"Valeur\" est obligatoire. S'il vous plaît spécifiez la vale msgid "Field Description" msgstr "Description du Champ" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9951,7 +9947,7 @@ msgstr "" msgid "Field Type" msgstr "Type de Champ" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "" @@ -9977,11 +9973,11 @@ msgstr "" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "" -#: frappe/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "Champ {0} introuvable." -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9999,20 +9995,20 @@ 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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "Nom du Champ" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "Le Nom du champ est limité à 64 caractères ({0})" @@ -10028,15 +10024,15 @@ msgstr "Nom du champ qui sera le DocType pour ce champ lié" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "Nom du Champ {0} ne peut pas avoir des caractères spéciaux comme {1}" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "Nom de champ {0} en conflit avec méta objet" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "Le nom de champ {0} est restreint" @@ -10059,7 +10055,7 @@ msgstr "Le nom de champ {0} est restreint" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -10072,7 +10068,7 @@ msgstr "Champ" msgid "Fields Multicheck" msgstr "Champs à choix multiples" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "" @@ -10080,7 +10076,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10108,7 +10104,7 @@ msgstr "Type de Champ" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "FieldType ne peut pas être modifié de {0} à {1}, à la ligne {2}" @@ -10121,7 +10117,7 @@ msgstr "FieldType ne peut pas être modifié de {0} à {1}, à la ligne {2}" msgid "File" msgstr "Fichier" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "" @@ -10174,7 +10170,7 @@ msgstr "URL du fichier" msgid "File backup is ready" msgstr "La sauvegarde de fichier est prête" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "Le nom de fichier ne peut pas avoir {0}" @@ -10182,7 +10178,7 @@ msgstr "Le nom de fichier ne peut pas avoir {0}" msgid "File not attached" msgstr "Fichier joint manquant" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "La taille du fichier a dépassé la taille maximale autorisée de {0} Mo" @@ -10191,11 +10187,11 @@ msgstr "La taille du fichier a dépassé la taille maximale autorisée de {0} Mo msgid "File too big" msgstr "Fichier trop grand" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "Fichier {0} n'existe pas" @@ -10209,10 +10205,10 @@ msgstr "Fichiers" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10249,11 +10245,11 @@ msgstr "Nom du filtre" msgid "Filter Values" msgstr "Valeurs du filtre" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10271,7 +10267,6 @@ msgstr "" msgid "Filtered Records" msgstr "Enregistrements filtrés" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "Filtré par \"{0}\"" @@ -10286,7 +10281,9 @@ msgstr "Filtré par \"{0}\"" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10308,6 +10305,11 @@ msgstr "Configuration des filtres" msgid "Filters Display" msgstr "Affichage des Filtres" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10320,11 +10322,11 @@ msgstr "Filtres JSON" msgid "Filters Section" msgstr "Section Filtres" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "Filtres appliqués pour {0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "Filtres sauvegardés" @@ -10337,18 +10339,18 @@ msgstr "Les filtres seront accessibles via des filters .

En msgid "Filters {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1427 +#: frappe/public/js/frappe/views/reports/report_view.js:1429 msgid "Filters:" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 msgid "Find '{0}' in ..." msgstr "" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 msgid "Find {0} in {1}" msgstr "Trouver {0} dans {1}" @@ -10372,8 +10374,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "Prénom" @@ -10382,10 +10388,6 @@ msgstr "Prénom" msgid "First Success Message" msgstr "Premier message de succès" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:49 -msgid "First Transaction" -msgstr "Première transaction" - #: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." msgstr "La première colonne de données doit être vide." @@ -10436,11 +10438,11 @@ msgstr "Nombre de Décimales" msgid "Fold" msgstr "Pli" -#: frappe/core/doctype/doctype/doctype.py:1450 +#: frappe/core/doctype/doctype/doctype.py:1451 msgid "Fold can not be at the end of the form" msgstr "Un Pli ne peut pas être à la fin du formulaire" -#: frappe/core/doctype/doctype/doctype.py:1448 +#: frappe/core/doctype/doctype/doctype.py:1449 msgid "Fold must come before a Section Break" msgstr "Un Pli doit être avant un Saut de Section" @@ -10458,7 +10460,7 @@ msgstr "Nom du dossier" msgid "Folder name should not include '/' (slash)" msgstr "Le nom du Dossier ne doit pas inclure de '/' (slash)" -#: frappe/core/doctype/file/file.py:472 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "Dossier {0} n’est pas vide" @@ -10565,7 +10567,7 @@ msgstr "" msgid "Footer HTML" msgstr "Pied de page HTML" -#: frappe/printing/doctype/letter_head/letter_head.py:75 +#: frappe/printing/doctype/letter_head/letter_head.py:81 msgid "Footer HTML set from attachment {0}" msgstr "" @@ -10602,7 +10604,7 @@ msgstr "Modèle de pied de page" msgid "Footer Template Values" msgstr "Valeurs du modèle de pied de page" -#: frappe/printing/page/print/print.js:116 +#: frappe/printing/page/print/print.js:129 msgid "Footer might not be visible as {0} option is disabled" msgstr "" @@ -10660,8 +10662,8 @@ msgstr "Pour l\\'Utilisateur" msgid "For Value" msgstr "Pour la Valeur" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "Pour comparaison, utilisez> 5, <10 ou = 324. Pour les plages, utilisez 5:10 (pour les valeurs comprises entre 5 et 10)." @@ -10687,12 +10689,6 @@ msgstr "Par exemple: {} Ouvrir" msgid "For help see Client Script API and Examples" msgstr "Pour obtenir de l'aide, voir API de script client et exemples" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "Pour plus d'informations, cliquez ici ." - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "Pour plus d'informations, {0}." @@ -10707,7 +10703,7 @@ msgstr "" msgid "For updating, you can update only selective columns." msgstr "Pour la mise à jour, vous pouvez mettre à jour uniquement une sélection colonnes." -#: frappe/core/doctype/doctype/doctype.py:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "Pour {0} au niveau {1} dans {2} à la ligne {3}" @@ -10762,7 +10758,7 @@ msgstr "Mot de Passe Oublié ?" #: frappe/custom/doctype/client_script/client_script.json #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/desk/doctype/form_tour/form_tour.json -#: frappe/printing/page/print/print.js:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "" @@ -10822,6 +10818,11 @@ msgstr "" msgid "Format Data" msgstr "Format des Données" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "Bimensuel" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "Vers l'avant" @@ -10849,7 +10850,15 @@ msgstr "Fractions d’Unités" msgid "Frappe" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "Modèle Frappe" @@ -10938,7 +10947,7 @@ msgstr "A partir du" msgid "From Date Field" msgstr "Champ date" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "De type de document" @@ -10965,18 +10974,16 @@ msgstr "Complet" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "Nom Complet" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "Pleine Page" @@ -11002,13 +11009,13 @@ msgstr "Fonction basée sur" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" -msgstr "D'autres nœuds peuvent être créés uniquement sous les nœuds de type 'Groupe'" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -11067,7 +11074,7 @@ msgstr "Général" msgid "Generate Keys" msgstr "Générer des clés" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "Générer un nouveau rapport" @@ -11075,8 +11082,14 @@ msgstr "Générer un nouveau rapport" msgid "Generate Random Password" msgstr "" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "" @@ -11099,7 +11112,7 @@ msgstr "Géolocalisation" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "Obtenir les Alertes d'Aujourd'hui" @@ -11235,7 +11248,7 @@ msgid "Go to this URL after completing the form" msgstr "" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "Aller à {0}" @@ -11283,10 +11296,6 @@ msgstr "" msgid "Google Calendar" msgstr "Google Agenda" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}" -msgstr "" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "Google Agenda - Impossible de créer un agenda pour {0}, code d'erreur {1}." @@ -11301,7 +11310,7 @@ msgstr "Google Agenda - Impossible d'extraire l'événement de Google Ag #: frappe/integrations/doctype/google_calendar/google_calendar.py:252 msgid "Google Calendar - Could not find Calendar for {0}, error code {1}." -msgstr "" +msgstr "Google Agenda - Impossible de trouver l'agenda de {0}, code d'erreur {1}." #: frappe/integrations/doctype/google_contacts/google_contacts.py:232 msgid "Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}." @@ -11405,11 +11414,6 @@ msgstr "L'URL de Google Sheets n'est pas valide ou n'est pas accessi msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "L'URL de Google Sheets doit se terminer par "gid = {number}". Copiez et collez l'URL de la barre d'adresse du navigateur et réessayez." -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "Aperçu de l'extrait de code Google" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11486,14 +11490,10 @@ msgstr "Regrouper par type" msgid "Group By field is required to create a dashboard chart" msgstr "Le champ Grouper par est requis pour créer un tableau de bord" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "Niveau parent" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11543,7 +11543,6 @@ msgstr "HH: mm: ss" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11554,9 +11553,8 @@ msgstr "HH: mm: ss" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11660,7 +11658,7 @@ msgstr "En-Tête" msgid "Header HTML" msgstr "En-tête HTML" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "En-tête HTML défini à partir de la pièce jointe {0}" @@ -11718,6 +11716,12 @@ msgstr "Carte de chaleur" msgid "Hello" msgstr "" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "Bonjour," + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11783,7 +11787,7 @@ msgstr "" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "" @@ -11819,7 +11823,7 @@ msgstr "Caché" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11852,11 +11856,6 @@ msgstr "Masquer la bordure" msgid "Hide Buttons" msgstr "" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "Masquer le CTA" - #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json @@ -11936,7 +11935,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "Masquer le Menu Standard" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -11950,7 +11949,7 @@ msgstr "Masquer les week-ends" msgid "Hide descendant records of For Value." msgstr "" -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "Masquer les Détails" @@ -11999,11 +11998,8 @@ msgstr "Astuce: inclure des symboles, des chiffres et des majuscules dans le mot #: frappe/public/js/frappe/file_uploader/FileBrowser.vue:38 #: frappe/public/js/frappe/views/file/file_view.js:67 #: frappe/public/js/frappe/views/file/file_view.js:88 -#: frappe/public/js/frappe/views/pageview.js:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -12091,16 +12087,16 @@ msgstr "" #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -12196,9 +12192,9 @@ msgstr "Si \"Appliquer des autorisations d'utilisateur strictes\" est coché et msgid "If Checked workflow status will not override status in list view" msgstr "Si coché, le statut du workflow ne remplacera pas le statut de la vue en liste" -#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "Si Responsable" @@ -12326,6 +12322,10 @@ msgstr "Si l'utilisateur a un rôle quelconque vérifié, il devient un \"Utilis msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12357,7 +12357,11 @@ msgstr "Si vous téléchargez de nouveaux rapports, \"Nommer Séries\" devient o msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "Si vous chargez de nouveaux enregistrements, laissez la colonne \"nom\" (ID) vide." -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "" @@ -12414,12 +12418,12 @@ msgstr "Ignorer les pièces jointes supérieures à cette taille" msgid "Ignored Apps" msgstr "Applications ignorées" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "Statut de document non autorisé pour {0}" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "Requête SQL illégale" @@ -12480,11 +12484,11 @@ msgstr "" msgid "Image Width" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 msgid "Image field must be a valid fieldname" msgstr "Champ de l'image doit être un champ valide" -#: frappe/core/doctype/doctype/doctype.py:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "Champ de l'image doit être du type Image Jointe" @@ -12506,15 +12510,15 @@ msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "" @@ -12540,7 +12544,7 @@ msgstr "Implicite" msgid "Import" msgstr "Importer" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "Importer" @@ -12768,15 +12772,16 @@ msgstr "Inclure le thème des applications" msgid "Include Web View Link in Email" msgstr "Envoyer le lien de la vue Web du document par e-mail" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "Inclure l'indentation" @@ -12823,7 +12828,7 @@ msgstr "Compte Email entrant incorrect" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "Détails de connexion incomplets" @@ -12835,7 +12840,7 @@ msgstr "Configuration incorrecte" msgid "Incorrect URL" msgstr "URL incorrecte" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "Utilisateur ou mot de passe incorrect" @@ -12843,11 +12848,11 @@ msgstr "Utilisateur ou mot de passe incorrect" msgid "Incorrect Verification code" msgstr "Code de Vérification incorrect" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "" @@ -12859,7 +12864,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "" @@ -12934,7 +12939,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "Insérer Après" @@ -12950,7 +12955,7 @@ msgstr "Insérer Après le champ '{0}' mentionné dans un Champ Personnalisé '{ msgid "Insert Below" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "Insérer une colonne avant {0}" @@ -12968,8 +12973,12 @@ msgstr "Insérer de nouveaux enregistrements" msgid "Insert Style" msgstr "Insérez le Style" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "" @@ -12986,7 +12995,7 @@ msgid "Installed Applications" msgstr "Applications installées" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "" @@ -13003,19 +13012,19 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "Autorisation Insuffisante Pour {0}" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" msgstr "" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "" @@ -13119,9 +13128,9 @@ msgid "Invalid" msgstr "Invalide" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "Expression \"depends_on\" non valide" @@ -13129,7 +13138,7 @@ msgstr "Expression \"depends_on\" non valide" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "Expression "depend_on" non valide définie dans le filtre {0}" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "" @@ -13145,7 +13154,7 @@ msgstr "Format CSV Invalide" msgid "Invalid Code. Please try again." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "" @@ -13165,16 +13174,20 @@ msgstr "" msgid "Invalid DocType: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13206,7 +13219,7 @@ msgstr "" msgid "Invalid Mail Server. Please rectify and try again." msgstr "Serveur Mail Invalide. Veuillez corriger et réesayer" -#: frappe/model/naming.py:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "" @@ -13215,8 +13228,8 @@ msgstr "" msgid "Invalid Operation" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "Option invalide" @@ -13228,25 +13241,25 @@ msgstr "" msgid "Invalid Output Format" msgstr "Format de Sortie Invalide" -#: frappe/model/base_document.py:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "Mot de Passe Invalide" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "Requête Invalide" @@ -13255,7 +13268,7 @@ msgstr "Requête Invalide" msgid "Invalid Search Field {0}" msgstr "Champ de recherche invalide {0}" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "" @@ -13263,8 +13276,8 @@ msgstr "" msgid "Invalid Transition" msgstr "" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13278,47 +13291,51 @@ msgstr "Nom d'Utilisateur ou Mot de Passe Invalide. Veuillez corriger et réessa msgid "Invalid Values" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "Colonne incorrecte" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "" @@ -13330,31 +13347,27 @@ msgstr "Expression non valide définie dans le filtre {0}" msgid "Invalid expression set in filter {0} ({1})" msgstr "Expression non valide définie dans le filtre {0} ({1})" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "Nom de champ {0} invalide" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "Champ invalide '{0}' dans nom automatique" @@ -13362,11 +13375,11 @@ msgstr "Champ invalide '{0}' dans nom automatique" msgid "Invalid file path: {0}" msgstr "Chemin de fichier invalide : {0}" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13374,20 +13387,28 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "Filtre non valide: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "Json non valide ajouté dans les options personnalisées: {0}" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "" @@ -13395,6 +13416,10 @@ msgstr "" msgid "Invalid naming series {}: dot (.) missing" msgstr "" +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "Contenu non valide ou corrompu pour l'importation" @@ -13403,19 +13428,27 @@ msgstr "Contenu non valide ou corrompu pour l'importation" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13423,7 +13456,7 @@ msgstr "" msgid "Invalid template file for import" msgstr "Fichier de modèle non valide pour l'importation" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "" @@ -13432,20 +13465,20 @@ msgstr "" msgid "Invalid username or password" msgstr "Nom d'utilisateur ou mot de passe invalide" -#: frappe/model/naming.py:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "Condition {0} invalide" @@ -13454,10 +13487,47 @@ msgstr "Condition {0} invalide" msgid "Inverse" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "Inviter en tant qu'Utilisateur" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "Est" @@ -13482,7 +13552,7 @@ msgstr "" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "Est Table Enfant" @@ -13535,6 +13605,10 @@ msgstr "Est un Dossier" msgid "Is Global" msgstr "Est Global" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Est un Groupe" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13561,8 +13635,13 @@ msgstr "Est facultatif" msgid "Is Primary" msgstr "Est primaire" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 msgid "Is Primary Contact" msgstr "Personne de Contact" @@ -13593,7 +13672,7 @@ msgstr "Est public" msgid "Is Published Field" msgstr "Est un Champ Publié" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "Le Champ Publié doit-il être un nom de champ valide" @@ -13618,7 +13697,7 @@ msgstr "" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "Est Seul" @@ -13654,7 +13733,7 @@ msgstr "Est Standard" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "Est Validable" @@ -13860,11 +13939,11 @@ msgstr "Colonne Tableau Kanban" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "Nom du Tableau Kanban" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13885,12 +13964,14 @@ msgstr "" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -14152,7 +14233,7 @@ msgstr "L’Étiquette est obligatoire" msgid "Landing Page" msgstr "Page d'Accueil" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "Paysage" @@ -14160,10 +14241,13 @@ msgstr "Paysage" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Langue" @@ -14251,8 +14335,12 @@ msgstr "Le mois dernier" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "Nom de Famille" @@ -14267,6 +14355,11 @@ msgstr "Date de réinitialisation du dernier mot de passe" msgid "Last Quarter" msgstr "Le dernier quart" +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" + #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json @@ -14283,11 +14376,6 @@ msgstr "" msgid "Last Sync On" msgstr "Dernière synchronisation le" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14398,7 +14486,7 @@ msgstr "Longueur" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "Longueur de {0} doit être comprise entre 1 et 1000" @@ -14447,8 +14535,8 @@ msgstr "Lettre" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14476,7 +14564,7 @@ msgstr "Nom de l'En-Tête" msgid "Letter Head Scripts" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "" @@ -14493,7 +14581,7 @@ msgstr "En-Tête en HTML" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "Niveau" @@ -14543,20 +14631,6 @@ msgstr "" msgid "Like" msgstr "Comme" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "Aimé" @@ -14597,6 +14671,7 @@ msgstr "Ligne" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14610,6 +14685,7 @@ msgstr "Ligne" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "Lien" @@ -14740,10 +14816,15 @@ msgstr "Lié" msgid "Linked With" msgstr "Lié avec" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +msgstr "" + #. Label of the links (Table) field in DocType 'Address' #. Label of the links (Table) field in DocType 'Contact' #. Label of the links_section (Tab Break) field in DocType 'DocType' #. Label of the links (Table) field in DocType 'Customize Form' +#. Label of the links (Table) field in DocType 'Event' #. Label of the links (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14751,6 +14832,7 @@ msgstr "Lié avec" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "Liens" @@ -14792,7 +14874,7 @@ msgstr "Filtre de liste" msgid "List Settings" msgstr "Paramètres de liste" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Paramètres de liste" @@ -14833,7 +14915,7 @@ msgstr "" msgid "List setting message" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "" @@ -14842,9 +14924,8 @@ msgstr "" msgid "Load Balancing" msgstr "L'équilibrage de charge" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Charger plus" @@ -14861,10 +14942,10 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "Chargement" @@ -14876,7 +14957,7 @@ msgstr "" msgid "Loading import file..." msgstr "Chargement du fichier d'importation ..." -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "" @@ -14886,7 +14967,7 @@ msgstr "" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "Chargement en Cours ..." @@ -14947,7 +15028,7 @@ msgstr "Connectez-vous pour accéder à cette page." msgid "Log out" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "Déconnecté" @@ -15007,7 +15088,7 @@ msgstr "Code de Vérification de Connexion depuis {}" msgid "Login and view in Browser" msgstr "Connectez-vous et affichez la page dans le navigateur" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -15015,7 +15096,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "Connexion non autorisée pour le moment" @@ -15068,7 +15149,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -15087,7 +15168,7 @@ msgstr "" msgid "Logout" msgstr "Déconnecté" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "Déconnecter toutes les sessions" @@ -15191,7 +15272,10 @@ msgid "Major" 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 +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "Rendre \"nom\" cherchable dans la Recherche Globale" @@ -15267,7 +15351,7 @@ msgstr "Obligatoire dépend de" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "Renseignements Obligatoires manquants :" @@ -15279,15 +15363,15 @@ msgstr "Champ obligatoire : rôle défini pour" msgid "Mandatory field: {0}" msgstr "Champ obligatoire : {0}" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "Champs Obligatoires Requis dans la table {0}, Ligne {1}" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "Champs Obligatoires Requis : {0}" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "" @@ -15368,10 +15452,8 @@ msgid "Mark as Unread" msgstr "Marquer comme non Lu" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15452,7 +15534,13 @@ msgstr "" msgid "Max auto email report per user" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "Largeur max pour le type Devise est 100px dans la ligne {0}" @@ -15461,20 +15549,15 @@ msgstr "Largeur max pour le type Devise est 100px dans la ligne {0}" msgid "Maximum" msgstr "" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "" -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "Nombre maximum de champs" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "" -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "Maximum {0} lignes autorisés" @@ -15490,7 +15573,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15503,7 +15586,7 @@ msgstr "Moyen" msgid "Meeting" msgstr "Réunion" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "" @@ -15544,7 +15627,7 @@ msgstr "" msgid "Merge with existing" msgstr "Fusionner avec existant" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "La combinaison n'est possible que de Groupe à Groupe ou Nœud-Feuille à Nœud-Feuille" @@ -15570,7 +15653,7 @@ msgstr "La combinaison n'est possible que de Groupe à Groupe ou Nœud-Feuille #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15610,7 +15693,7 @@ msgstr "Message envoyé" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "Message coupé" @@ -15642,29 +15725,21 @@ msgstr "" msgid "Meta" msgstr "" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "" @@ -15717,7 +15792,7 @@ msgstr "Méthode" msgid "Method Not Allowed" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "" @@ -15733,6 +15808,11 @@ msgstr "" msgid "Middle Name" msgstr "Deuxième Nom" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15799,11 +15879,11 @@ msgstr "" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "Champs Manquants" @@ -15839,15 +15919,16 @@ msgstr "" msgid "Mobile No" msgstr "N° Mobile" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "" + #. Label of the modal_trigger (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Modal Trigger" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "Modifié Par" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15868,7 +15949,7 @@ msgstr "Modifié Par" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -16044,10 +16125,12 @@ msgstr "Plus d'infos" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Informations Complémentaires" @@ -16066,7 +16149,7 @@ msgstr "Plus de contenu pour le bas de la page." msgid "Most Used" msgstr "Plus Utilisé" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "" @@ -16077,7 +16160,7 @@ msgstr "" msgid "Move" msgstr "mouvement" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "Déménager à" @@ -16113,7 +16196,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "Déplacer vers le numéro de ligne" @@ -16140,7 +16223,7 @@ msgstr "" msgid "Ms" msgstr "" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "Plusieurs nœuds racines non autorisés." @@ -16163,7 +16246,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "Doit être de type \"Joindre l'Image\"" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "Doit avoir l'autorisation d'accéder aux rapport dont celui-ci." @@ -16181,7 +16264,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16219,9 +16302,9 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16231,11 +16314,11 @@ msgstr "Nom" msgid "Name (Doc Name)" msgstr "" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "Le Nom ne peut contenir des caractères spéciaux tels que {0}" @@ -16247,7 +16330,7 @@ msgstr "Nom du Type de Document (DocType) auquel vous souhaitez que ce champ soi msgid "Name of the new Print Format" msgstr "Nom du nouveau Format d'Impression" -#: frappe/model/naming.py:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "Nom de {0} ne peut pas être {1}" @@ -16286,7 +16369,7 @@ msgstr "" msgid "Naming Series" msgstr "Masque de numérotation" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "Masque de numérotation obligatoire" @@ -16323,12 +16406,12 @@ msgstr "Modèle de barre de navigation" msgid "Navbar Template Values" msgstr "Valeurs du modèle de barre de navigation" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Naviguer dans la liste" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Naviguer dans la liste en haut" @@ -16343,7 +16426,11 @@ msgstr "" msgid "Navigation Settings" msgstr "" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16351,7 +16438,7 @@ msgstr "" msgid "Negative Value" msgstr "Valeur négative" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16364,6 +16451,12 @@ msgstr "Erreur d'ensemble imbriqué. Veuillez contacter l'Administrateur." msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +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 @@ -16372,7 +16465,7 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16393,10 +16486,6 @@ msgstr "" msgid "New Chart" msgstr "" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "Nouveau commentaire sur {0}: {1}" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "" @@ -16405,8 +16494,8 @@ msgstr "" msgid "New Custom Block" msgstr "" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" msgstr "Nouveau Format d'Impression Personnalisé" @@ -16437,7 +16526,7 @@ msgstr "Nouvel évènement" msgid "New Folder" msgstr "Nouveau Dossier" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "Nouveau Tableau Kanban" @@ -16472,12 +16561,12 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "Nouveau Mot de Passe" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "Nouveau nom du format d'impression" @@ -16486,7 +16575,7 @@ msgstr "Nouveau nom du format d'impression" msgid "New Quick List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "Nouveau Nom de Rapport" @@ -16504,8 +16593,8 @@ msgstr "" msgid "New Users (Last 30 days)" msgstr "" -#: frappe/core/doctype/version/version_view.html:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "" @@ -16562,13 +16651,13 @@ msgstr "Nouvelle valeur à définir" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "Nouveau(elle) {0}" @@ -16584,7 +16673,7 @@ msgstr "Nouveau {0} {1} ajouté au tableau de bord {2}" msgid "New {0} {1} created" msgstr "Nouveau {0} {1} créé" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "Nouveau {0}: {1}" @@ -16592,7 +16681,7 @@ msgstr "Nouveau {0}: {1}" msgid "New {} releases for the following apps are available" msgstr "De nouvelles {} versions pour les applications suivantes sont disponibles" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "" @@ -16605,7 +16694,7 @@ msgstr "Responsable de la Newsletter" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16712,14 +16801,15 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Non" @@ -16769,6 +16859,10 @@ msgstr "Aucun Compte Email" msgid "No Email Accounts Assigned" msgstr "" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "Aucun Email" @@ -16804,15 +16898,15 @@ msgstr "Aucun utilisateur LDAP trouvé pour l'e-mail: {0}" msgid "No Label" msgstr "" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: frappe/public/js/frappe/list/bulk_operations.js:98 #: frappe/public/js/frappe/list/bulk_operations.js:170 #: frappe/utils/weasyprint.py:52 msgid "No Letterhead" msgstr "" -#: frappe/model/naming.py:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "Aucun nom spécifié pour {0}" @@ -16820,7 +16914,7 @@ msgstr "Aucun nom spécifié pour {0}" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "Aucune Autorisation Spécifiée" @@ -16840,11 +16934,11 @@ msgstr "Aucun graphique autorisé sur ce tableau de bord" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "Aucune imprimante n'est disponible." @@ -16860,11 +16954,11 @@ msgstr "Aucun résultat" msgid "No Results found" msgstr "Aucun résultat trouvs" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16872,7 +16966,7 @@ msgstr "" msgid "No Suggestions" msgstr "" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "Aucune balise" @@ -16884,7 +16978,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "Aucune alerte pour aujourd'hui" @@ -16912,23 +17006,19 @@ msgstr "" msgid "No changes to update" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "Pas encore de commentaires" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " -msgstr "" +msgid "No comments yet." +msgstr "Pas encore de commentaires." #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "Aucun contact lié au document" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "Aucune donnée à exporter" @@ -16944,11 +17034,15 @@ msgstr "Aucun document trouvé tagué avec {0}" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "Aucun compte de messagerie associé à l'utilisateur. Veuillez ajouter un compte sous Utilisateur> Boîte de réception de messagerie." +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16972,7 +17066,7 @@ msgstr "Pas d'autre enregistrements" msgid "No matching records. Search something new" msgstr "Aucun enregistrement correspondant. Recherchez autre chose." -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "Pas plus d'articles à afficher" @@ -17016,7 +17110,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "Pas d'autorisation pour '{0}' {1}" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "Pas d'autorisation pour lire {0}" @@ -17028,7 +17122,7 @@ msgstr "Pas d'autorisation pour {0} {1} {2}" msgid "No records deleted" msgstr "Aucun enregistrement supprimé" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "Aucun enregistrement présent dans {0}" @@ -17044,7 +17138,7 @@ msgstr "Aucun enregistrement ne sera exporté" msgid "No rows" msgstr "" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -17064,11 +17158,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -17077,7 +17171,7 @@ msgid "No {0} mail" msgstr "Pas de courrier {0}" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "N°." @@ -17120,7 +17214,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "Non Autorisé" @@ -17141,7 +17235,7 @@ msgstr "Pas des descendants de" msgid "Not Equals" msgstr "Non égaux" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "Non Trouvé" @@ -17167,20 +17261,19 @@ msgstr "Lié à aucun enregistrement" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "Non Autorisé" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17189,10 +17282,10 @@ msgstr "Non Publié" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "Non Sauvegardé" @@ -17224,7 +17317,7 @@ msgstr "Valeurs Séparées par des Virgules non valides (Fichier CSV)" msgid "Not a valid User Image." msgstr "Image utilisateur non valide." -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "Action de Workflow non valide" @@ -17240,11 +17333,11 @@ msgstr "Non actif" msgid "Not allowed for {0}: {1}" msgstr "Non autorisé pour {0}: {1}" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "Vous n'êtes pas autorisé à joindre un document {0}, veuillez activer Autoriser l'impression pour {0} dans les paramètres d'impression" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "" @@ -17268,27 +17361,27 @@ msgstr "Pas trouvé" msgid "Not in Developer Mode" msgstr "Pas en Mode Développeur" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "Pas en Mode Développeur! Configurez le dans site_config.json ou créez un DocType 'Custom'." -#: frappe/core/doctype/system_settings/system_settings.py:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Pas permis" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "Non autorisé à afficher {0}" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17323,7 +17416,7 @@ msgstr "Remarque: pour obtenir les meilleurs résultats, les images doivent avoi msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "Remarque : Plusieurs sessions seront autorisées en cas d'appareil mobile" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17347,10 +17440,9 @@ msgstr "Rien de plus à refaire" msgid "Nothing left to undo" msgstr "Rien de plus à annuler" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "Rien à montrer" @@ -17396,15 +17488,15 @@ msgstr "Document souscrit à la notification" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17455,7 +17547,7 @@ msgstr "Notifier si aucune réponse dans (en min)" msgid "Notify users with a popup when they log in" msgstr "Informer les utilisateurs avec un popup quand ils se connectent" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "Maintenant" @@ -17513,12 +17605,12 @@ msgstr "Nombre de groupes" msgid "Number of Queries" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17627,11 +17719,11 @@ msgstr "Application OTP" msgid "OTP Issuer Name" msgstr "Nom de l'Émetteur OTP" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "OTP Secret a été réinitialisé. Une nouvelle inscription sera requise lors de la prochaine connexion." @@ -17750,7 +17842,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "" @@ -17790,7 +17882,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "Une fois validé, les documents à valider ne peuvent plus être modifiés. Ils ne peuvent être annulés et modifiés (Nouv. version)." @@ -17835,7 +17927,7 @@ msgstr "Seul l'administrateur est autorisé à utiliser l'enregistreur" msgid "Only Allow Edit For" msgstr "Autoriser la Modification Uniquement Pour" -#: frappe/core/doctype/doctype/doctype.py:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "Seules les options autorisées pour le champ Données sont:" @@ -17852,7 +17944,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "" @@ -17871,19 +17963,19 @@ msgstr "Seuls les champs obligatoires sont nécessaires pour les nouveaux enregi msgid "Only one {0} can be set as primary." msgstr "Un seul {0} peut être défini comme primaire." -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Seuls les DocTypes standard peuvent être personnalisés à partir de Personnaliser le formulaire." -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17953,7 +18045,7 @@ msgstr "Document de référence ouvert" msgid "Open Settings" msgstr "Paramètres ouverts" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "" @@ -17971,7 +18063,7 @@ msgstr "" msgid "Open a module or tool" msgstr "Ouvrir un module ou un outil" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "" @@ -17979,7 +18071,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Ouvrir un élément de la liste" @@ -17994,13 +18086,13 @@ msgstr "Ouvrez votre application d'authentification sur votre téléphone po #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "Ouvrir {0}" @@ -18009,6 +18101,10 @@ msgstr "Ouvrir {0}" msgid "OpenID Configuration" msgstr "" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" @@ -18024,7 +18120,7 @@ msgstr "Ouvert" msgid "Operation" msgstr "Opération" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "L'Opérateur doit être parmi {0}" @@ -18050,7 +18146,7 @@ msgstr "" msgid "Option 3" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "L'option {0} pour le champ {1} n'est pas une table enfant" @@ -18070,6 +18166,7 @@ msgstr "Optionel : L'alerte sera envoyée si cette expression est vraie" #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -18078,11 +18175,12 @@ msgstr "Optionel : L'alerte sera envoyée si cette expression est vraie" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "Les champs de type Options 'Lien Dynamique' doivent pointer vers un autre Champ Lié avec 'Doctype' pour options" @@ -18091,7 +18189,7 @@ msgstr "Les champs de type Options 'Lien Dynamique' doivent pointer vers un autr msgid "Options Help" msgstr "Aide Options" -#: frappe/core/doctype/doctype/doctype.py:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "" @@ -18099,7 +18197,7 @@ msgstr "" msgid "Options for select. Each option on a new line." msgstr "Options pour sélectionner. Chaque option sur une nouvelle ligne." -#: frappe/core/doctype/doctype/doctype.py:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 msgid "Options for {0} must be set before setting the default value." msgstr "Les options pour {0} doivent être définies avant de définir la valeur par défaut." @@ -18107,7 +18205,7 @@ msgstr "Les options pour {0} doivent être définies avant de définir la valeur msgid "Options is required for field {0} of type {1}" msgstr "" -#: frappe/model/base_document.py:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "Options non définis pour le champ lié {0}" @@ -18123,7 +18221,7 @@ msgstr "" msgid "Order" msgstr "Commande" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18139,12 +18237,12 @@ msgstr "Histoire Org" msgid "Org History Heading" msgstr "Rubriques Histoire Org" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "" @@ -18212,10 +18310,6 @@ msgstr "Sortie" msgid "Overview" msgstr "Vue d'ensemble" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "Responsable" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" @@ -18223,9 +18317,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:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18266,11 +18360,11 @@ msgstr "La génération de PDF a échoué" msgid "PDF generation failed because of broken image links" msgstr "La génération du PDF a échoué en raison de liens invalides vers une/des image(s)" -#: frappe/printing/page/print/print.js:616 +#: frappe/printing/page/print/print.js:656 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:574 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18442,7 +18536,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:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "Page {0} sur {1}" @@ -18469,7 +18563,7 @@ msgstr "" msgid "Parent Document Type" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "" @@ -18486,11 +18580,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:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "Champ parent (arbre)" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "Le champ parent doit être un nom de champ valide" @@ -18499,7 +18593,7 @@ msgstr "Le champ parent doit être un nom de champ valide" msgid "Parent Label" msgstr "Étiquette Parente" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 msgid "Parent Missing" msgstr "" @@ -18573,8 +18667,8 @@ msgstr "Passif" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18584,7 +18678,7 @@ msgstr "Passif" msgid "Password" msgstr "Mot de Passe" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "" @@ -18597,7 +18691,7 @@ msgstr "Réinitialisation du Mot de Passe" msgid "Password Reset Link Generation Limit" msgstr "Limite de génération de lien de réinitialisation de mot de passe" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18614,6 +18708,10 @@ msgstr "Mot de Passe pour la Base DN" msgid "Password is required or select Awaiting Password" msgstr "Mot de Passe est requis ou sélectionner En Attente de Mot de Passe" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "" @@ -18622,7 +18720,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18630,11 +18728,11 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." msgstr "" @@ -18642,7 +18740,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "Les mots de passe ne correspondent pas!" @@ -18712,10 +18810,12 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "En Attente" @@ -18791,7 +18891,7 @@ msgstr "Valider de Manière Permanente {0} ?" msgid "Permanently delete {0}?" msgstr "Supprimer de Manière Permanente {0} ?" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "Erreur d'autorisation" @@ -18851,16 +18951,16 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: frappe/core/page/permission_manager/permission_manager.js:221 #: frappe/core/workspace/users/users.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Permissions" msgstr "Autorisations" -#: frappe/core/doctype/doctype/doctype.py:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "" @@ -18922,15 +19022,18 @@ msgstr "Demande de téléchargement de données personnelles" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -18943,13 +19046,13 @@ msgstr "Téléphone" msgid "Phone No." msgstr "N° de Téléphone." -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "Choisir des Colonnes" @@ -19009,11 +19112,11 @@ msgstr "Veuillez installer la bibliothèque ldap3 via pip pour utiliser la fonct msgid "Please Set Chart" msgstr "Veuillez définir le graphique" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "Veuillez mettre à Jour les paramètres de SMS" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "S'il vous plaît ajouter un sujet à votre email" @@ -19021,7 +19124,7 @@ msgstr "S'il vous plaît ajouter un sujet à votre email" msgid "Please add a valid comment." msgstr "Veuillez ajouter un commentaire valide." -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "Veuillez demander à votre administrateur de vérifier votre inscription" @@ -19029,11 +19132,11 @@ msgstr "Veuillez demander à votre administrateur de vérifier votre inscription msgid "Please attach a file first." msgstr "Veuillez d’abord joindre un fichier." -#: frappe/printing/doctype/letter_head/letter_head.py:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 msgid "Please attach an image file to set HTML for Footer." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "" @@ -19041,19 +19144,15 @@ msgstr "" msgid "Please attach the package" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "" - #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "Veuillez vérifier les valeurs de filtre définies pour le tableau de bord: {}" -#: frappe/model/base_document.py:951 +#: frappe/model/base_document.py:1008 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Veuillez vérifier la valeur de "Extraire depuis" définie pour le champ {0}" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "Veuillez vérifier votre email pour validation" @@ -19085,11 +19184,11 @@ msgstr "Veuillez cliquer sur le lien suivant pour définir votre nouveau mot de msgid "Please confirm your action to {0} this document." msgstr "Veuillez confirmer votre action sur {0} ce document." -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "Veuillez d'abord créer la carte" @@ -19105,20 +19204,20 @@ msgstr "" msgid "Please do not change the template headings." msgstr "Veuillez ne pas modifier les sections du modèle." -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" msgstr "Veuillez créer un duplicata pour faire des changements" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "Veuillez autoriser les pop-ups" @@ -19155,7 +19254,7 @@ msgstr "Veuillez entrer le code client avant que le login social soit activé" msgid "Please enter Client Secret before social login is enabled" msgstr "Veuillez entrer le secret client avant que la connexion avec les réseaux sociaux soit activé" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "" @@ -19192,11 +19291,12 @@ msgstr "" msgid "Please enter your old password." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "Veuillez trouver ci-joint {0}: {1}" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "" @@ -19204,11 +19304,11 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "Assurez-vous que les documents de communication de référence ne sont pas liés de manière circulaire." -#: frappe/model/document.py:988 +#: frappe/model/document.py:992 msgid "Please refresh to get the latest document." msgstr "Veuillez actualiser pour obtenir la dernière version du document." -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:575 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19224,7 +19324,7 @@ msgstr "Veuillez enregistrer le document avant l'affectation" msgid "Please save the document before removing assignment" msgstr "Veuillez enregistrer le document avant de retirer l’affectation" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "Veuillez d’abord enregistrer le rapport" @@ -19232,7 +19332,7 @@ msgstr "Veuillez d’abord enregistrer le rapport" msgid "Please save to edit the template." msgstr "Veuillez enregistrer pour modifier le modèle." -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "Veuillez d’abord sélectionner un DocType" @@ -19240,19 +19340,19 @@ msgstr "Veuillez d’abord sélectionner un DocType" msgid "Please select Entity Type first" msgstr "Veuillez d'abord sélectionner le type d'entité" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "Veuillez sélectionner le Score Minimum du Mot de Passe" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "" @@ -19260,7 +19360,7 @@ msgstr "" msgid "Please select a file or url" msgstr "Veuillez sélectionner un fichier ou une URL" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" msgstr "Veuillez sélectionner un fichier CSV valide contenant des données" @@ -19272,7 +19372,7 @@ msgstr "Veuillez sélectionner un filtre de date valide" msgid "Please select applicable Doctypes" msgstr "Veuillez sélectionner les types de docteurs applicables" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Veuillez sélectionner au moins 1 colonne de {0} pour trier / grouper" @@ -19298,11 +19398,11 @@ msgstr "Veuillez sélectionner {0}" msgid "Please set Email Address" msgstr "Veuillez définir une Adresse Email" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:589 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "Veuillez définir un mappage d'imprimante pour ce format d'impression dans les paramètres de l'imprimante." -#: frappe/public/js/frappe/views/reports/query_report.js:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "Veuillez définir des filtres" @@ -19310,7 +19410,7 @@ msgstr "Veuillez définir des filtres" msgid "Please set filters value in Report Filter table." msgstr "Veuillez définir la valeur des filtres dans le Tableau des Filtres de Rapport." -#: frappe/model/naming.py:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "" @@ -19322,7 +19422,7 @@ msgstr "Veuillez d'abord définir les documents suivants dans ce tableau de msgid "Please set the series to be used." msgstr "Veuillez définir la série à utiliser." -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "Veuillez configurer les SMS avant de les choisir comme méthode d'authentification" @@ -19346,23 +19446,23 @@ msgstr "Veuillez spécifier" msgid "Please specify a valid parent DocType for {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "Veuillez spécifier quel champ Date doit être vérifié" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "Veuillez indiquer quel champ de valeur doit être vérifiée" @@ -19383,7 +19483,7 @@ msgstr "" msgid "Please use following links to download file backup." msgstr "" -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" @@ -19437,7 +19537,7 @@ msgstr "Article du Menu Portail" msgid "Portal Settings" msgstr "Paramètres du Portail" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "" @@ -19465,6 +19565,7 @@ msgstr "" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "code postal" @@ -19473,15 +19574,7 @@ msgstr "code postal" msgid "Posting Timestamp" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "Messages de {0}" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "Messages déposés en vertu de {0}" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19496,7 +19589,11 @@ msgstr "" msgid "Precision" msgstr "Précision" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "La précision doit être comprise entre 1 et 6" @@ -19544,7 +19641,7 @@ msgstr "" msgid "Prepared Report User" msgstr "Utilisateur du rapport préparé" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "" @@ -19552,7 +19649,7 @@ msgstr "" msgid "Preparing Report" msgstr "Rapport de préparation" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "" @@ -19573,7 +19670,7 @@ msgstr "Appuyez sur Entrée pour enregistrer" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19587,13 +19684,6 @@ msgstr "Aperçu" msgid "Preview HTML" msgstr "Aperçu HTML" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19622,7 +19712,7 @@ msgid "Preview:" msgstr "" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19634,12 +19724,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "Précedent" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "Hash précédent" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "" @@ -19685,19 +19770,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:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "Impression" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Impression" @@ -19715,8 +19800,8 @@ msgstr "Imprimer des documents" #: frappe/core/workspace/build/build.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/page/print/print.js:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19767,7 +19852,7 @@ msgstr "Aide pour le Format d'Impression" msgid "Print Format Type" msgstr "Type de Format d'Impression" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19806,7 +19891,7 @@ msgstr "Cacher à l’Impression si Aucune Valeur" msgid "Print Language" msgstr "Langue d’Impression" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "Imprimer Envoyé à l'imprimante!" @@ -19823,8 +19908,8 @@ msgstr "Serveur d'imprimante" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "Paramètres d'impression" @@ -19872,11 +19957,11 @@ msgstr "" msgid "Print with letterhead" msgstr "Imprimer avec en-tête" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "Imprimante" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "Cartographie d'imprimante" @@ -19886,11 +19971,11 @@ msgstr "Cartographie d'imprimante" msgid "Printer Name" msgstr "Nom de l'imprimante" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "Paramètres de l'imprimante" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "" @@ -19948,7 +20033,7 @@ msgstr "ProTip: Ajouter Reference: {{ reference_doctype }} {{ reference_na msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "Continuer malgré tout" @@ -19969,18 +20054,28 @@ msgstr "" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Profil mis à jour avec succès." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "Progression" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "Projet" #. Label of the property (Data) field in DocType 'Property Setter' -#: frappe/core/doctype/version/version_view.html:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: frappe/core/doctype/version/version_view.html:13 +#: frappe/core/doctype/version/version_view.html:38 +#: frappe/core/doctype/version/version_view.html:75 #: frappe/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "Propriété" @@ -20017,7 +20112,7 @@ msgstr "Type de Propriété" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -20066,24 +20161,18 @@ msgstr "" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "Publier" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -20093,15 +20182,6 @@ msgstr "Publier" msgid "Published" msgstr "Publié" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "Publié le" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "Publié le" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json @@ -20191,7 +20271,9 @@ msgid "Put on Hold" msgstr "" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "" @@ -20203,9 +20285,9 @@ msgstr "" msgid "QR Code for Login Verification" msgstr "QR Code pour la Vérification de Connexion" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " -msgstr "QZ Tray Failed:" +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" +msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' @@ -20254,7 +20336,7 @@ msgstr "Rapport de Requête" msgid "Query analysis complete. Check suggested indexes." msgstr "" -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "" @@ -20354,7 +20436,7 @@ msgstr "" msgid "Quick Lists" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20391,12 +20473,6 @@ msgstr "Plage" msgid "Rate Limiting" msgstr "" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20416,7 +20492,7 @@ msgstr "Évaluation" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "Commandes brutes" @@ -20433,7 +20509,7 @@ msgstr "Email Brut" msgid "Raw Printing" msgstr "Impression brute" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "" @@ -20450,8 +20526,8 @@ msgid "Re:" msgstr "" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "" @@ -20507,11 +20583,6 @@ msgstr "" msgid "Read Only Mode" msgstr "" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "Temps de lecture" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20527,7 +20598,7 @@ msgstr "Lu par le destinataire sur" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "" @@ -20547,11 +20618,11 @@ msgstr "" msgid "Reason" msgstr "Raison" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "Reconstruire" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20589,7 +20660,7 @@ msgstr "Paramètre Récepteur" msgid "Recent years are easy to guess." msgstr "Les dernières années sont faciles à deviner." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "" @@ -20600,6 +20671,14 @@ msgstr "" msgid "Recipient" msgstr "Destinataire" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20632,7 +20711,7 @@ msgstr "" msgid "Records for following doctypes will be filtered" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "" @@ -20649,6 +20728,11 @@ msgstr "" msgid "Redirect HTTP Status" msgstr "" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20743,6 +20827,11 @@ msgstr "Date de Référence" msgid "Reference Datetime" msgstr "" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20770,7 +20859,6 @@ msgstr "DocName de la Référence" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20811,9 +20899,9 @@ msgstr "" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20831,9 +20919,9 @@ msgstr "" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20863,7 +20951,6 @@ msgstr "Type du document de référence" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -20911,15 +20998,15 @@ msgstr "Référence : {0} {1}" msgid "Referrer" msgstr "Référent" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Actualiser" @@ -20933,6 +21020,10 @@ msgstr "Rafraîchir tout" msgid "Refresh Google Sheet" msgstr "Actualiser Google Sheet" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -20944,18 +21035,18 @@ msgstr "Actualiser Google Sheet" msgid "Refresh Token" msgstr "Jeton de Rafraîchissement" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "Actualisation..." -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "Enregistré mais Désactivé" @@ -21132,7 +21223,7 @@ msgstr "" msgid "Rename {0}" msgstr "Renommer {0}" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "Fichiers renommés et code remplacé dans les contrôleurs, veuillez vérifier!" @@ -21263,9 +21354,9 @@ msgstr "Répondre à Tous" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "Rapport" @@ -21335,11 +21426,11 @@ msgstr "Gestionnaire de Rapports" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "Nom du Rapport" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "" @@ -21373,21 +21464,21 @@ msgstr "Vue rapport" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 msgid "Report cannot be set for Single types" msgstr "Le Rapport ne peut pas être défini pour les types Uniques" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 -#: frappe/desk/doctype/number_card/number_card.js:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "Le rapport ne contient aucune donnée, veuillez modifier les filtres ou changer le nom du rapport" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 msgid "Report has no numeric fields, please change the Report Name" msgstr "Le rapport n'a pas de champs numériques, veuillez changer le nom du rapport" -#: frappe/public/js/frappe/views/reports/query_report.js:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21399,24 +21490,24 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "Rapport mis à jour avec succès" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 msgid "Report was not saved (there were errors)" msgstr "Le Rapport n'a pas été sauvegardé (il y a eu des erreurs)" -#: frappe/public/js/frappe/views/reports/query_report.js:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "Le rapport avec plus de 10 colonnes a une meilleure apparence en mode Paysage." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "Rapport {0}" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "" @@ -21424,7 +21515,7 @@ msgstr "" msgid "Report {0} is disabled" msgstr "Rapport {0} est désactivé" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "" @@ -21435,7 +21526,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:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "Rapports" @@ -21443,7 +21534,7 @@ msgstr "Rapports" msgid "Reports & Masters" msgstr "Ecrans principaux et Rapports" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "Rapports déjà en file d'attente" @@ -21462,7 +21553,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "Données de la requête" @@ -21514,6 +21608,11 @@ msgstr "" msgid "Request URL" msgstr "URL de Demande" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21565,11 +21664,11 @@ msgstr "Réinitialiser le graphique" msgid "Reset Dashboard Customizations" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "Réinitialisation des champs" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "Réinitialiser le mot de passe LDAP" @@ -21577,11 +21676,11 @@ msgstr "Réinitialiser le mot de passe LDAP" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "Réinitialiser le Secret OTP" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21616,7 +21715,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21654,6 +21753,7 @@ msgid "Resource TOS URI" msgstr "" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21663,11 +21763,6 @@ msgstr "" msgid "Response" msgstr "Réponse" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "Réponse " - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21726,7 +21821,7 @@ msgstr "Restreindre au Domaine" msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)" msgstr "Restreindre la connexion à partir de cette adresse IP uniquement. Plusieurs adresses IP peuvent être ajoutées en les séparant par des virgules. Les adresses IP partielles comme (111.111.111) sont acceptées" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "" @@ -21760,7 +21855,7 @@ msgstr "Revenez à l'écran de vérification et entrez le code affiché par votr msgid "Reverse Icon Color" msgstr "Inverser la Couleur de l'Icône" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "Rétablissement de la longueur à {0} pour "{1}" dans "{2}". La définition de la longueur sur {3} entraînera la troncature des données." @@ -21778,9 +21873,7 @@ msgstr "Révoquer" msgid "Revoked" msgstr "Révoqué" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21821,6 +21914,7 @@ msgstr "robots.txt" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21834,6 +21928,7 @@ msgstr "robots.txt" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21872,7 +21967,7 @@ msgstr "Autorisation du Rôle pour la Page et le Rapport" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "Autorisations du Rôle" @@ -21882,7 +21977,7 @@ msgstr "Autorisations du Rôle" msgid "Role Permissions Manager" msgstr "Gestionnaire d’Autorisations du Rôle" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Gestionnaire d’Autorisations du Rôle" @@ -21925,6 +22020,7 @@ msgstr "" #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -21934,6 +22030,7 @@ msgstr "" #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -21970,7 +22067,7 @@ msgstr "Rôles Html" msgid "Roles can be set for users from their User page." msgstr "" -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "Racine {0} ne peut pas être supprimée" @@ -21990,8 +22087,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -22003,8 +22098,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -22029,24 +22122,24 @@ msgstr "" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "Ligne" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "Ligne # {0} :" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "" @@ -22055,11 +22148,6 @@ msgstr "" msgid "Row Format" msgstr "" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "Index de ligne" - #. 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" @@ -22074,7 +22162,7 @@ msgstr "Nom de la ligne" msgid "Row Number" msgstr "" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "" @@ -22082,30 +22170,33 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "Ligne {0}: impossible de désactiver Obligatoire pour les champs standard" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "Ligne {0} : Il n’est pas autorisé d’activer Autoriser à la Validation pour les champs standards" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Added" msgstr "Lignes Ajoutées" #. Label of the rows_removed_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "Lignes Supprimées" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22196,7 +22287,7 @@ msgstr "Paramètres des SMS" msgid "SMS Settings" msgstr "Paramètres des SMS" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "" @@ -22274,7 +22365,7 @@ msgstr "" msgid "Salutation" msgstr "Civilité" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "Champ identique entré plus d'une fois" @@ -22302,20 +22393,20 @@ msgstr "Samedi" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22324,16 +22415,12 @@ msgstr "Samedi" msgid "Save" msgstr "Sauvegarder" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "Économisez quand même" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "Enregistrer Sous" @@ -22341,11 +22428,11 @@ msgstr "Enregistrer Sous" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "Enregistrer le rapport" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "Enregistrer les filtres" @@ -22370,7 +22457,7 @@ msgstr "Enregistré" msgid "Saved Filters" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22449,7 +22536,7 @@ msgstr "Type de travail planifié" msgid "Scheduled Jobs Logs" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "L'exécution planifiée du script {0} a été mise à jour" @@ -22472,7 +22559,7 @@ msgstr "" msgid "Scheduler Event" msgstr "Événement du planificateur" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "Planificateur inactif" @@ -22485,7 +22572,7 @@ msgstr "" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "Le planificateur est inactif. Impossible d'importer des données." @@ -22617,7 +22704,7 @@ msgstr "" msgid "Search by filename or extension" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "Champ de recherche {0} n'est pas valide" @@ -22717,7 +22804,7 @@ msgstr "Paramètres de Sécurité" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "Voir tous les rapports passés." @@ -22726,7 +22813,7 @@ msgstr "Voir tous les rapports passés." msgid "See on Website" msgstr "Voir sur le Site" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "" @@ -22773,7 +22860,7 @@ msgstr "Table Vu Par" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22781,28 +22868,28 @@ msgstr "Sélectionner" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "Sélectionner Pièces Jointes" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "Sélectionnez la table des enfants" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 msgid "Select Column" msgstr "Sélectionner la colonne" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "Sélectionner des Colonnes" @@ -22861,12 +22948,15 @@ msgstr "Sélectionner un champ" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "Sélectionnez les champs" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "Sélectionnez les champs à insérer" @@ -22879,7 +22969,7 @@ msgstr "Sélectionnez les champs à mettre à jour" msgid "Select Filters" msgstr "Sélectionnez les filtres" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "Sélectionnez Google Agenda pour lequel l'événement doit être synchronisé." @@ -22912,8 +23002,8 @@ msgstr "Sélectionner Obligatoirement" msgid "Select Module" msgstr "Sélectionner Module" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "" @@ -22978,14 +23068,14 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "Sélectionner d'abord un niveau parent" +msgid "Select a group {0} first." +msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" msgstr "Sélectionnez un champ d'expéditeur valide pour créer des documents à partir d'un e-mail" -#: frappe/core/doctype/doctype/doctype.py:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 msgid "Select a valid Subject field for creating documents from Email" msgstr "Sélectionnez un champ Objet valide pour créer des documents à partir d'un e-mail" @@ -23015,13 +23105,13 @@ msgstr "Sélectionner au moins 1 enregistrement pour l'impression" msgid "Select atleast 2 actions" msgstr "Sélectionnez au moins 2 actions" -#: frappe/public/js/frappe/list/list_view.js:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Sélectionner un élément de la liste" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Sélectionner plusieurs éléments de liste" @@ -23055,7 +23145,7 @@ msgstr "" msgid "Select {0}" msgstr "Sélectionner {0}" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "L'auto-approbation n'est pas autorisée" @@ -23239,7 +23329,7 @@ msgstr "Email d'expéditeur" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "Le champ de l'expéditeur doit avoir un e-mail dans les options" @@ -23333,7 +23423,7 @@ msgstr "" msgid "Series counter for {} updated to {} successfully" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "Séries {0} déjà utilisé dans {1}" @@ -23343,7 +23433,7 @@ msgstr "Séries {0} déjà utilisé dans {1}" msgid "Server Action" msgstr "Action du serveur" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Erreur du Serveur" @@ -23362,7 +23452,7 @@ msgstr "IP serveur" msgid "Server Script" msgstr "Script de serveur" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23409,7 +23499,7 @@ msgstr "Session par défaut" msgid "Session Defaults Saved" msgstr "Session par défaut enregistrée" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "La Session a Expiré" @@ -23418,14 +23508,14 @@ msgstr "La Session a Expiré" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "Expiration de Session doit être au format {0}" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "Définir" @@ -23451,12 +23541,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\" msgstr "Définir les options par défaut pour tous les graphiques de ce tableau de bord (par exemple: "couleurs": ["# d1d8dd", "# ff5858"])" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "Définir des filtres dynamiques" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23467,7 +23557,7 @@ msgstr "Définir les filtres" msgid "Set Filters for {0}" msgstr "Définir des filtres pour {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23521,7 +23611,7 @@ msgstr "Définir Quantité" msgid "Set Role For" msgstr "Définir le Rôle Pour" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Définir les Autorisations des Utilisateurs" @@ -23531,16 +23621,16 @@ msgstr "Définir les Autorisations des Utilisateurs" msgid "Set Value" msgstr "Définir la Valeur" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "Définir par défaut" @@ -23559,18 +23649,21 @@ msgstr "" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "" -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "Définir la précision non standard pour un champ Flottant ou Devise" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23662,14 +23755,9 @@ msgstr "" msgid "Settings for the About Us Page" msgstr "" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "Configuration" @@ -23685,8 +23773,8 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "Configuration Auto Email" @@ -23755,11 +23843,6 @@ msgstr "Adresse de livraison" msgid "Shop" msgstr "Magasin" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "Nom Court" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "Modèles de clavier courts sont faciles à deviner" @@ -23779,11 +23862,6 @@ msgstr "Raccourcis" msgid "Show" msgstr "Afficher" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23836,7 +23914,13 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23964,7 +24048,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "Voir les étiquettes" @@ -23981,7 +24065,7 @@ msgstr "Afficher le Titre" msgid "Show Title in Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "Afficher les Totaux" @@ -24021,10 +24105,6 @@ msgstr "Afficher toutes les Versions" msgid "Show all activity" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "" - #. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" @@ -24073,8 +24153,8 @@ msgstr "" msgid "Show list" msgstr "" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "Montrer plus de détails" @@ -24103,7 +24183,7 @@ msgstr "Afficher le titre dans la fenêtre du navigateur comme "Prefix - ti msgid "Show {0} List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "Afficher uniquement les champs numériques du rapport" @@ -24138,7 +24218,7 @@ msgstr "Barre Latérale et Commentaires" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "L'inscription est désactivée" @@ -24175,36 +24255,36 @@ msgstr "Inscription désactivée" msgid "Signups have been disabled for this website." msgstr "Les inscriptions ont été désactivées pour ce site Web." -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "Expression Python simple, Exemple: Statut dans ("Fermé", "Annulé")" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" -msgstr "Expression Python simple, Exemple: Statut dans ("non valide")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" -msgstr "Expression Python simple, Exemple: status == 'Open' et tapez == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" +msgstr "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "Sessions Simultanées" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "Un seul DocTypes ne peut pas être personnalisé." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Types Simples ont un seul enregistrement aucunes tables associées. Les valeurs sont stockées dans tabSingles" @@ -24212,7 +24292,7 @@ msgstr "Types Simples ont un seul enregistrement aucunes tables associées. Les msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "" -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "" @@ -24431,11 +24511,11 @@ msgstr "Quelque chose s'est mal passé pendant la génération de jetons. Cl msgid "Something went wrong." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 msgid "Sorry! I could not find what you were looking for." msgstr "Désolé ! Je n'ai pas trouvé ce que vous recherchiez." -#: frappe/public/js/frappe/views/pageview.js:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "Désolé ! Vous n'êtes pas autorisé à consulter cette page." @@ -24466,20 +24546,23 @@ msgstr "" msgid "Sort Order" msgstr "Ordre de Tri" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 msgid "Sort field {0} must be a valid fieldname" msgstr "Champ de tri {0} doit être un nom de champ valide" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' -#: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24506,6 +24589,12 @@ msgstr "" msgid "SparkPost" msgstr "" +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "Les Caractères Spéciaux ne sont pas autorisés" @@ -24530,8 +24619,8 @@ msgstr "" msgid "Splash Image" msgstr "" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -24563,11 +24652,11 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "Un DocType standard ne peut pas avoir de format d'impression par défaut, veuillez utiliser \"Personnaliser le formulaire\"" @@ -24579,7 +24668,7 @@ msgstr "Standard non défini" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "Le Format d'Impression Standard ne peut pas être mis à jour" @@ -24587,11 +24676,11 @@ msgstr "Le Format d'Impression Standard ne peut pas être mis à jour" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "Le style d'impression standard ne peut pas être modifié. Veuillez le copier pour le modifier." -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "" @@ -24623,8 +24712,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:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "Démarrer" @@ -24632,7 +24721,7 @@ msgstr "Démarrer" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24697,6 +24786,7 @@ msgstr "Commence le" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24705,7 +24795,7 @@ msgstr "Commence le" msgid "State" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "" @@ -24761,6 +24851,7 @@ msgstr "Intervalle de temps des statistiques" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24785,6 +24876,7 @@ msgstr "Intervalle de temps des statistiques" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24792,8 +24884,8 @@ msgstr "Intervalle de temps des statistiques" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24830,7 +24922,7 @@ msgstr "Étapes pour vérifier votre connexion" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24860,6 +24952,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +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." @@ -24938,7 +25034,7 @@ msgstr "Sous-domaine" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -24954,7 +25050,7 @@ msgstr "Sujet" msgid "Subject Field" msgstr "Champ de sujet" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "Le type de champ Objet doit être Données, Texte, Texte long, Petit texte, Éditeur de texte" @@ -24968,6 +25064,7 @@ msgstr "" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24976,10 +25073,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "Valider" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Valider" @@ -24989,7 +25087,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Valider" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Valider" @@ -25013,7 +25111,7 @@ msgstr "Validation après importation" msgid "Submit an Issue" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "" @@ -25025,7 +25123,7 @@ msgstr "" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "Valider à la création" @@ -25037,7 +25135,7 @@ msgstr "Validez ce document pour terminer cette étape." msgid "Submit this document to confirm" msgstr "Valider ce document pour confirmer" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Valider {0} documents ?" @@ -25046,11 +25144,11 @@ msgstr "Valider {0} documents ?" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "Validé" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "Document Valider ne peut pas être reconvertis en Brouillon. Ligne de transition {0}" @@ -25073,9 +25171,7 @@ msgid "Subsidiary" msgstr "Filiale" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "" @@ -25089,7 +25185,7 @@ msgstr "" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25131,20 +25227,16 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "Succès! Vous êtes bon pour aller" - #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" msgstr "" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "Transactions réussies" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "Succès : {0} au {1}" @@ -25186,7 +25278,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "Nom d'Utilisateur Suggérée : {0}" @@ -25242,7 +25334,7 @@ msgstr "Passer Au Bureau" #: frappe/public/js/frappe/list/list_sidebar.js:319 msgid "Switch to Frappe CRM for smarter sales" -msgstr "" +msgstr "Passez à Frappe CRM pour des ventes plus intelligentes" #: frappe/public/js/frappe/ui/capture.js:281 msgid "Switching Camera" @@ -25308,7 +25400,7 @@ msgstr "Synchronisation" msgid "Syncing {0} of {1}" msgstr "Synchroniser {0} sur {1}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25431,6 +25523,7 @@ msgstr "" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25513,6 +25606,7 @@ msgstr "" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" msgstr "Responsable Système" @@ -25586,7 +25680,7 @@ msgstr "" msgid "Table Break" msgstr "Saut de tableau" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "" @@ -25595,7 +25689,7 @@ msgstr "" msgid "Table Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "" @@ -25617,11 +25711,11 @@ msgstr "Tableau MultiSelect" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "Table Mise à Jour" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 msgid "Table {0} cannot be empty" msgstr "La Table {0} ne peut pas être vide" @@ -25663,11 +25757,18 @@ msgstr "Prendre une photo" msgid "Target" msgstr "Cible" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "Tâche" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "Tâches" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25729,7 +25830,7 @@ msgstr "Avertissements de modèles" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "Temporairement désactivé" @@ -25801,7 +25902,7 @@ msgid "Thank you for reaching out to us. We will get back to you at the earliest "{0}" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "Merci d'avoir consacré votre temps précieux à remplir ce formulaire" @@ -25825,7 +25926,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "La répétition automatique de ce document a été désactivée." -#: frappe/public/js/frappe/form/grid.js:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "Le format CSV est sensible à la casse" @@ -25836,15 +25937,15 @@ msgid "The Client ID obtained from the Google Cloud Console under " msgstr "" -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "La Condition '{0}' est invalide" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." msgstr "" @@ -25885,7 +25986,7 @@ msgstr "" msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "La colonne {0} a {1} différents formats de date. Définition automatique de {2} comme format par défaut, car c'est le plus courant. Veuillez modifier les autres valeurs de cette colonne dans ce format." -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "Le commentaire ne peut pas être vide" @@ -25893,7 +25994,7 @@ msgstr "Le commentaire ne peut pas être vide" msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:658 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25923,7 +26024,7 @@ msgstr "" msgid "The field {0} is mandatory" msgstr "" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "" @@ -25993,15 +26094,19 @@ msgid "The project number obtained from Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

Click here to download:
{0}

This link will expire in {1} hours." +msgstr "" + +#: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:995 +#: frappe/core/doctype/user/user.py:1002 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "La ressource que vous recherchez n'est pas disponible" @@ -26013,7 +26118,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:338 +#: frappe/utils/response.py:336 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -26034,7 +26139,7 @@ msgstr "" msgid "The webhook will be triggered if this expression is true" msgstr "Le Webhook sera déclenché si cette expression est vraie" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "Le {0} est déjà en répétition automatique {1}" @@ -26074,16 +26179,16 @@ 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:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "Il ne peut y avoir qu'un seul Pli dans un formulaire" @@ -26095,15 +26200,19 @@ msgstr "Il y a une erreur dans votre Modèle d'Adresse {0}" msgid "There is no data to be exported" msgstr "Il n'y a pas de données à exporter" +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "Il y a un problème avec l'url du fichier : {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26115,7 +26224,7 @@ msgstr "Il doit y avoir au moins une règle d'autorisation." msgid "There was an error building this page" msgstr "Une erreur s'est produite lors de la construction de cette page" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "Une erreur s'est produite lors de l'enregistrement des filtres" @@ -26127,11 +26236,11 @@ msgstr "Il y a eu des erreurs" msgid "There were errors while creating the document. Please try again." msgstr "Il y avait des erreurs lors de la création du document. Veuillez réessayer." -#: frappe/public/js/frappe/views/communication.js:840 +#: frappe/public/js/frappe/views/communication.js:843 msgid "There were errors while sending email. Please try again." msgstr "Il y a eu des erreurs lors de l'envoi d’emails. Veuillez essayer à nouveau." -#: frappe/model/naming.py:494 +#: frappe/model/naming.py:502 msgid "There were some errors setting the name, please contact the administrator" msgstr "Il y a eu des erreurs lors de la configuration du nom, veuillez contacter l'administrateur" @@ -26172,7 +26281,7 @@ msgstr "Authentification Tierce" msgid "This Currency is disabled. Enable to use in transactions" msgstr "Cette devise est désactivée. Activez la pour l'utiliser dans les transactions" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "Ce Tableau Kanban sera privé" @@ -26180,6 +26289,10 @@ msgstr "Ce Tableau Kanban sera privé" msgid "This Month" msgstr "" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "" @@ -26205,6 +26318,11 @@ msgstr "Cette action n'est autorisée que pour {}" msgid "This cannot be undone" msgstr "Ça ne peut pas être annulé" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +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" @@ -26219,11 +26337,11 @@ msgstr "Ce graphique sera disponible pour tous les utilisateurs si cela est déf msgid "This doctype has no orphan fields to trim" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26265,7 +26383,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26281,7 +26399,7 @@ msgstr "" msgid "This form has been modified after you have loaded it" msgstr "Ce formulaire a été modifié après que vous l'ayez chargé" -#: frappe/public/js/frappe/form/form.js:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "" @@ -26300,7 +26418,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "Ceci va au-dessus du diaporama." -#: frappe/public/js/frappe/views/reports/query_report.js:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "Ceci est un rapport de fond. Veuillez définir les filtres appropriés, puis en générer un nouveau." @@ -26324,12 +26442,6 @@ msgstr "" msgid "This is an automatically generated reply" msgstr "Ceci est une réponse générée automatiquement" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "Ceci est un exemple de Google SERP Preview." - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "C’est similaire à un mot de passe couramment utilisé." @@ -26348,7 +26460,7 @@ msgstr "Ce lien a déjà été activé pour vérification." msgid "This link is invalid or expired. Please make sure you have pasted correctly." msgstr "Ce lien est invalide ou expiré. Veuillez vous assurer que vous l’avez collé correctement." -#: frappe/printing/page/print/print.js:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "Cela peut être imprimé sur plusieurs pages" @@ -26356,7 +26468,7 @@ msgstr "Cela peut être imprimé sur plusieurs pages" msgid "This month" msgstr "Ce mois-ci" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26364,7 +26476,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "Ce rapport a été généré le {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "Ce rapport a été généré {0}." @@ -26395,7 +26507,7 @@ msgstr "" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " +msgid "This value specifies the max number of rows that can be rendered in report view." msgstr "" #: frappe/website/doctype/web_page/web_page.js:85 @@ -26427,10 +26539,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " +msgid "This will terminate the job immediately and might be dangerous, are you sure?" msgstr "" -#: frappe/core/doctype/user/user.py:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "Étranglé" @@ -26506,9 +26618,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26579,11 +26693,11 @@ msgstr "Liens chronologiques" msgid "Timeline Name" msgstr "Nom de la Chronologie" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 msgid "Timeline field must be a Link or Dynamic Link" msgstr "Le champ Chronologie doit être une Lien ou un Champ Dynamique" -#: frappe/core/doctype/doctype/doctype.py:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "Le champ Chronologie doit être un champ valide" @@ -26609,10 +26723,7 @@ msgid "Timespan" msgstr "Période" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "Horodatage" @@ -26632,9 +26743,6 @@ msgstr "" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26659,9 +26767,6 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26684,7 +26789,7 @@ msgstr "Champ Titre" msgid "Title Prefix" msgstr "Préfixe de Titre" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "Champ Titre doit être un nom de champ valide" @@ -26780,7 +26885,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "Pour obtenir le rapport mis à jour, cliquez sur {0}." @@ -26835,7 +26940,7 @@ msgstr "Tâche à faire" msgid "Today" msgstr "Aujourd'hui" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "Afficher/Cacher le graphique" @@ -26851,11 +26956,11 @@ msgstr "Afficher/Cacher la vue en grille" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "Afficher/Cacher la barre latérale" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Afficher/Cacher la barre latérale" @@ -26901,7 +27006,7 @@ msgid "Tomorrow" msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "" @@ -26917,7 +27022,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "Trop d'utilisateurs se sont inscrits récemment, du coup l’inscription est désactivée. Veuillez essayer à nouveau dans une heure" @@ -26979,10 +27084,10 @@ msgstr "" msgid "Topic" msgstr "Sujet" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -27025,18 +27130,18 @@ msgstr "" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " -msgstr "Nombre total d'emails à synchroniser dans le processus de synchronisation initiale" +msgid "Total number of emails to sync in initial sync process" +msgstr "" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "Totaux" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "Ligne de totaux" @@ -27102,26 +27207,10 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "Hash de transaction" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "Journal des transactions" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "Rapport du journal des transactions" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "" @@ -27135,6 +27224,11 @@ msgstr "" msgid "Transition Rules" msgstr "Règles de Transition" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" @@ -27149,7 +27243,7 @@ msgstr "" msgid "Translatable" msgstr "Traduisible" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27160,7 +27254,7 @@ msgstr "" msgid "Translate Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "" @@ -27244,8 +27338,8 @@ msgstr "" msgid "Try a Naming Series" msgstr "Essayez un masque de numérotation" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "" @@ -27311,7 +27405,7 @@ msgstr "Méthode d'Authentification à Double Facteur" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27404,7 +27498,7 @@ msgstr "" msgid "URL for documentation or help" msgstr "URL de documentation ou d'aide" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "" @@ -27507,7 +27601,7 @@ msgstr "Impossible d'envoyer du courrier en raison d'un compte de messagerie man msgid "Unable to update event" msgstr "Impossible de mettre à jour l'événement" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "Impossible d'écrire le format de fichier pour {0}" @@ -27516,7 +27610,7 @@ msgstr "Impossible d'écrire le format de fichier pour {0}" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27532,7 +27626,7 @@ msgstr "Annuler l'action" msgid "Undo last action" msgstr "Annuler l'action précédente" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27579,7 +27673,7 @@ msgstr "Colonne Inconnue : {0}" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "Utilisateur Inconnu" @@ -27591,8 +27685,7 @@ msgstr "" msgid "Unlock Reference Document" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "" @@ -27608,7 +27701,7 @@ msgstr "Non Lus" msgid "Unread Notification Sent" msgstr "Notification Non Lue Envoyée" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "" @@ -27646,8 +27739,8 @@ msgstr "" msgid "Unsubscribed" msgstr "Désinscrit" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27667,7 +27760,7 @@ msgstr "Fichiers décompressés {0}" msgid "Unzipping files..." msgstr "Décompression des fichiers ..." -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "Événements À Venir Aujourd'hui" @@ -27681,7 +27774,7 @@ msgstr "Événements À Venir Aujourd'hui" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Mettre à Jour" @@ -27715,6 +27808,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27757,7 +27855,7 @@ msgstr "" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "Mis à Jour" @@ -27765,7 +27863,7 @@ msgstr "Mis à Jour" msgid "Updated Successfully" msgstr "Mis à jour avec succés" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "Mise à jour vers une nouvelle version 🎉" @@ -27773,7 +27871,7 @@ msgstr "Mise à jour vers une nouvelle version 🎉" msgid "Updated successfully" msgstr "Mis à jour avec succés" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "Réactualisation" @@ -27816,10 +27914,10 @@ msgstr "" #: frappe/public/js/frappe/list/list_sidebar.js:331 msgid "Upgrade your support experience with Frappe Helpdesk" -msgstr "" +msgstr "Améliorez votre expérience d'assistance avec Frappe Helpdesk" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27829,11 +27927,11 @@ msgstr "Charger" msgid "Upload Image" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "" @@ -27930,15 +28028,11 @@ msgstr "Utiliser une authentification email différente" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "L'utilisation de la sous-requête ou de la fonction est restreinte" -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "" @@ -27959,7 +28053,9 @@ msgid "Used OAuth" msgstr "" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -27968,6 +28064,7 @@ msgstr "" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -27982,11 +28079,12 @@ msgstr "" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -27995,6 +28093,7 @@ msgstr "" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -28011,17 +28110,11 @@ msgstr "" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "Utilisateur" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "Utilisateur" - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "Utilisateur '{0}' a déjà le rôle '{1}'" @@ -28051,7 +28144,7 @@ msgstr "L'utilisateur ne peut pas Créer" msgid "User Cannot Search" msgstr "L'utilisateur ne peut pas Rechercher" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "" @@ -28115,11 +28208,6 @@ msgstr "Identifiant d'utilisateur" msgid "User ID Property" msgstr "Propriété ID utilisateur" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28139,6 +28227,11 @@ msgstr "" msgid "User Image" msgstr "Photo de Profil" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "" @@ -28157,12 +28250,12 @@ msgstr "Autorisation de l'Utilisateur" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "Autorisations des Utilisateurs" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Autorisations des Utilisateurs" @@ -28175,7 +28268,9 @@ msgstr "" msgid "User Permissions created successfully" msgstr "" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "" @@ -28241,6 +28336,10 @@ msgstr "" msgid "User does not have permission to create the new {0}" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "L'utilisateur est obligatoire pour Partager" @@ -28271,7 +28370,7 @@ msgstr "Utilisateur {0} ne peut pas être supprimé" msgid "User {0} cannot be disabled" msgstr "Utilisateur {0} ne peut pas être désactivé" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "Utilisateur {0} ne peut pas être renommé" @@ -28292,7 +28391,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "L'utilisateur {0} a demandé la suppression des données." -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "" @@ -28300,7 +28399,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "Utilisateur {0} est désactivé" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28321,7 +28420,7 @@ msgstr "" msgid "Username" msgstr "Nom d'Utilisateur" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "Nom d'Utilisateur {0} existe déjà" @@ -28405,7 +28504,7 @@ msgstr "" msgid "Validate SSL Certificate" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "erreur de validation" @@ -28428,8 +28527,8 @@ msgstr "Validité" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28461,7 +28560,7 @@ msgstr "Valeur Modifiée" msgid "Value To Be Set" msgstr "Valeur à Définir" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "Valeur ne peut pas être modifiée pour {0}" @@ -28477,11 +28576,11 @@ msgstr "La valeur ne peut pas être négative pour {0}: {1}" msgid "Value for a check field can be either 0 or 1" msgstr "La valeur pour un champ de contrôle peut être 0 ou 1" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "La valeur du champ {0} est trop longue dans {1}. La longueur doit être inférieure à {2} caractères" -#: frappe/model/base_document.py:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "Valeur pour {0} ne peut pas être une liste" @@ -28506,7 +28605,7 @@ msgstr "" msgid "Value to Validate" msgstr "Valeur à valider" -#: frappe/model/base_document.py:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "Valeur trop grande" @@ -28523,7 +28622,7 @@ msgstr "La valeur {0} doit être au format de durée valide: dhms" msgid "Value {0} must in {1} format" msgstr "La valeur {0} doit être au format {1}" -#: frappe/core/doctype/version/version_view.html:8 +#: frappe/core/doctype/version/version_view.html:9 msgid "Values Changed" msgstr "" @@ -28536,7 +28635,7 @@ msgstr "" msgid "Verification" msgstr "" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "" @@ -28598,15 +28697,7 @@ msgstr "Tout voir" msgid "View Audit Trail" msgstr "" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "Voir le commentaire" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" @@ -28618,7 +28709,7 @@ msgstr "" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "Voir La Liste" @@ -28628,7 +28719,7 @@ msgstr "Voir La Liste" msgid "View Log" msgstr "Voir le journal" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Afficher les Documents Autorisés" @@ -28675,7 +28766,7 @@ msgstr "Afficher le rapport dans votre navigateur" msgid "View this in your browser" msgstr "Voir le document dans votre navigateur" -#: frappe/public/js/frappe/web_form/web_form.js:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "" @@ -28744,6 +28835,7 @@ msgid "Warehouse" msgstr "Entrepôt" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Avertissement" @@ -28752,7 +28844,7 @@ msgstr "Avertissement" msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "" @@ -28838,7 +28930,7 @@ msgstr "Page Web" msgid "Web Page Block" msgstr "Bloc de page Web" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "" @@ -28941,7 +29033,7 @@ msgstr "URL du webhook" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "Site Web" @@ -28954,10 +29046,6 @@ msgstr "Analyse de site Web" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -29001,7 +29089,7 @@ msgstr "Script du Site web" msgid "Website Search Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "" @@ -29218,11 +29306,6 @@ msgstr "Filtre de caractères génériques" msgid "Will add \"%\" before and after the query" msgstr "" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "Sera utilisé dans l'url (généralement le prénom)." - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "Sera votre identifiant de connexion" @@ -29237,7 +29320,7 @@ msgstr "Ne seront montrés que si les titres de section sont activés" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "Avec en-tête de Lettre" @@ -29315,7 +29398,7 @@ msgstr "" msgid "Workflow Data" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "" @@ -29341,11 +29424,11 @@ msgstr "État du Workflow" msgid "Workflow State Field" msgstr "Champ de l'État du Workflow" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "L'état du workflow n'est pas défini" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "La transition d'état du workflow n'est pas autorisée de {0} à {1}" @@ -29353,15 +29436,30 @@ msgstr "La transition d'état du workflow n'est pas autorisée de {0} à {1}" msgid "Workflow States Don't Exist" msgstr "" -#: frappe/model/workflow.py:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "Statut du workflow" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "Transition du Workflow" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29377,13 +29475,13 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29453,11 +29551,11 @@ msgstr "" msgid "Workspaces" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "" @@ -29476,11 +29574,11 @@ msgstr "Emballer" msgid "Write" msgstr "Écrire" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "Valeur d'extraction incorrecte" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "Champ de l'Axe X" @@ -29499,13 +29597,13 @@ msgstr "" msgid "Y Axis" msgstr "Axe Y" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" msgstr "Champs de l'Axe Y" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "Champ Y" @@ -29557,16 +29655,17 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Oui" @@ -29594,6 +29693,18 @@ msgstr "Vous" msgid "You Liked" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "Vous êtes connecté à Internet." @@ -29632,20 +29743,20 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "Vous n'êtes pas autorisé à exporter {} doctype" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "Vous n'êtes pas autorisé à imprimer ce rapport" -#: frappe/public/js/frappe/views/communication.js:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "Vous n'êtes pas autorisé à envoyer un email en relation avec ce document" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "Vous n'êtes pas autorisé à mettre à jour ce formulaire Web" @@ -29669,7 +29780,7 @@ msgstr "" msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "Vous suivez maintenant ce document. Vous recevrez des mises à jour quotidiennes par courrier électronique. Vous pouvez modifier cela dans les paramètres de l'utilisateur." -#: frappe/core/doctype/installed_applications/installed_applications.py:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29695,13 +29806,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " -msgstr "Vous pouvez également copier-coller cette" +msgid "You can also copy-paste this" +msgstr "" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "Vous pouvez également copier-coller ce {0} dans votre navigateur" +#: frappe/templates/emails/user_invitation_expired.html:8 +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 "" @@ -29714,11 +29829,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29738,7 +29853,7 @@ msgstr "" msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "" -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "" @@ -29756,7 +29871,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "Vous pouvez essayer de modifier les filtres de votre rapport." @@ -29768,11 +29883,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "Vous ne pouvez pas configurer 'Options' pour le champ {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "Vous ne pouvez pas définir \"Traduisible\" pour le champ {0}" @@ -29790,7 +29905,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "Vous ne pouvez pas créer un graphique de tableau de bord à partir de DocTypes uniques" -#: frappe/custom/doctype/customize_form/customize_form.py:385 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "Vous ne pouvez pas désactiver 'Lecture Seule' pour le champ {0}\"" @@ -29820,7 +29935,7 @@ msgstr "" msgid "You created this" msgstr "Vous avez créé ceci" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "" @@ -29833,15 +29948,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "Vous ne disposez pas de suffisamment d'autorisations pour accéder à cette ressource. Veuillez contacter votre responsable pour obtenir l'accès." -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "Vous ne disposez pas de suffisamment d'autorisations pour compléter l'action" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29853,11 +29968,11 @@ msgstr "Vous n'êtes pas autorisé à annuler tous les documents liés." msgid "You don't have access to Report: {0}" msgstr "Vous n'avez pas accès au Rapport : {0}" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "Vous n'avez pas l'autorisation d'accéder à ce fichier" @@ -29865,19 +29980,19 @@ msgstr "Vous n'avez pas l'autorisation d'accéder à ce fichier" msgid "You don't have permission to get a report on: {0}" msgstr "Vous n'avez pas l'autorisation d'obtenir un rapport sur : {0}" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "Vous n'avez pas l'autorisation d'accéder à ce document" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " -msgstr "Vous avez un nouveau message de:" +msgid "You have a new message from:" +msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "Vous avez été déconnecté avec succès" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29885,11 +30000,7 @@ msgstr "" msgid "You have not entered a value. The field will be set to empty." msgstr "" -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "" @@ -29909,7 +30020,7 @@ msgstr "Vous avez invisible {0}" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29926,11 +30037,11 @@ msgstr "Vous avez édité ceci pour la dernière fois" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "Vous devez vous connecter pour valider ce formulaire" @@ -29954,7 +30065,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "Vous devez être en Mode Développeur pour modifier un Formulaire Web Standard" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "Vous devez être connecté et avoir le Role Responsable Système pour pouvoir accéder aux sauvegardes." @@ -29962,12 +30073,12 @@ msgstr "Vous devez être connecté et avoir le Role Responsable Système pour po msgid "You need to be logged in to access this page" msgstr "Vous devez être connecté pour pouvoir accéder à cette page" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "Vous devez être connecté pour accéder à ce(tte) {0}." #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " +msgid "You need to create these first:" msgstr "" #: frappe/www/login.html:76 @@ -30002,11 +30113,19 @@ msgstr "" msgid "You need {0} permission to fetch values from {1} {2}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "Vous semblez prêt à partir!" @@ -30037,10 +30156,26 @@ msgstr "Vous avez non suivi ce document" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "Youtube" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "" @@ -30070,7 +30205,7 @@ msgstr "Vos raccourcis" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "Votre compte a été verrouillé et reprendra après {0} secondes" @@ -30094,10 +30229,22 @@ msgstr "Votre demande de connexion à Google Agenda a été acceptée avec succ msgid "Your email address" msgstr "Votre adresse email" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "Votre id de connexion est" @@ -30120,7 +30267,11 @@ msgstr "Le nom de votre société et l'adresse pour le pied de l'email." msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "Votre requête a été reçue. Nous vous répondrons au plus vite. Si vous avez des informations supplémentaires, veuillez répondre à cet email." -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "Votre session a expiré, connectez-vous à nouveau pour continuer." @@ -30142,7 +30293,7 @@ msgstr "Zéro" msgid "Zero means send records updated at anytime" msgstr "Zéro signifie envoyer des enregistrements mis à jour à tout moment" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" msgstr "" @@ -30164,10 +30315,6 @@ msgstr "" msgid "`job_id` paramater is required for deduplication." msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30202,7 +30349,7 @@ msgstr "" msgid "cProfile Output" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "calendrier" @@ -30347,12 +30494,12 @@ msgstr "" msgid "email" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "Boîte de réception e-mail" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "vide" @@ -30409,7 +30556,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "Hub" @@ -30424,11 +30571,6 @@ msgstr "icône" msgid "import" msgstr "importer" -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "en quelques minutes" - #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "" @@ -30437,7 +30579,7 @@ msgstr "" msgid "just now" msgstr "juste maintenant" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "" @@ -30466,7 +30608,7 @@ msgstr "liste" msgid "logged in" msgstr "connecté" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30487,11 +30629,6 @@ msgstr "" msgid "merged {0} into {1}" msgstr "fusionné {0} avec {1}" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "" - #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json @@ -30515,7 +30652,7 @@ msgstr "" msgid "module name..." msgstr "Nom du module ..." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "Nouveau(elle)" @@ -30644,10 +30781,6 @@ msgstr "lire" msgid "red" msgstr "rouge" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "renommé de {0} à {1}" @@ -30703,19 +30836,19 @@ msgstr "part" msgid "short" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "depuis le mois dernier" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "depuis la semaine dernière" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "depuis l'année dernière" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "depuis hier" @@ -30768,6 +30901,10 @@ msgstr "" msgid "this shouldn't break" msgstr "" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30795,7 +30932,7 @@ msgstr "" msgid "via Assignment Rule" msgstr "via la règle d'attribution" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "" @@ -30809,7 +30946,7 @@ msgstr "via importation de données" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "via notification" @@ -30842,10 +30979,15 @@ msgstr "" msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "" +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json @@ -30873,11 +31015,11 @@ msgstr "aaaa-mm-jj" msgid "{0}" msgstr "{0}" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "" @@ -30903,19 +31045,19 @@ msgstr "" msgid "{0} Calendar" msgstr "{0} Calendrier" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "Graphique {0}" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "{0} Tableau de bord" -#: frappe/public/js/frappe/form/grid_row.js:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "{0} Champs" @@ -30939,6 +31081,10 @@ msgstr "" msgid "{0} List" msgstr "Liste {0}" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "" @@ -30951,7 +31097,7 @@ msgstr "" msgid "{0} Name" msgstr "{0} Nom" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "" @@ -30961,11 +31107,10 @@ msgstr "" msgid "{0} Report" msgstr "Rapport {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "{0} Paramètres" @@ -30990,7 +31135,15 @@ msgstr "" msgid "{0} added" msgstr "{0} ajouté(e)" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0} existe déjà. Veuillez sélectionner un autre nom" @@ -31002,7 +31155,7 @@ msgstr "{0} déjà désinscrit" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0} déjà désabonné pour {1} {2}" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "{0} et {1}" @@ -31010,7 +31163,7 @@ msgstr "{0} et {1}" msgid "{0} are currently {1}" msgstr "{0} sont actuellement {1}" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "{0} sont obligatoires" @@ -31027,7 +31180,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -31069,11 +31222,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "{0} commentaires" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." msgstr "" @@ -31086,7 +31235,7 @@ msgstr "{0} créé avec succès" msgid "{0} created this" msgstr "{0} a créé ceci" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "" @@ -31108,7 +31257,7 @@ msgstr "{0} n'existe pas dans la ligne {1}" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "Le champ {0} ne peut pas être défini comme unique dans {1}, car il existe des valeurs non-uniques" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31140,7 +31289,7 @@ msgstr "{0} a quitté la conversation dans {1} {2}" msgid "{0} hours ago" msgstr "Il y a {0} heures" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "{0} si vous n'êtes pas redirigé dans les {1} secondes" @@ -31149,23 +31298,23 @@ msgstr "{0} si vous n'êtes pas redirigé dans les {1} secondes" msgid "{0} in row {1} cannot have both URL and child items" msgstr "{0} à la ligne {1} ne peut pas avoir à la fois une URL et des sous-articles" -#: frappe/core/doctype/doctype/doctype.py:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "{0} est un champ obligatoire" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "{0} est un champ de données non valide." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "{0} est une adresse e-mail invalide dans 'Destinataires'" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "" @@ -31174,27 +31323,27 @@ msgstr "" msgid "{0} is currently {1}" msgstr "{0} est actuellement {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "" @@ -31202,7 +31351,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "{0} est obligatoire" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31222,12 +31371,12 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "{0} n'est pas une expression Cron valide." -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} n'est pas un DocType valide pour Dynamic Link" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "{0} n’est pas une Adresse Email valide" @@ -31235,15 +31384,15 @@ msgstr "{0} n’est pas une Adresse Email valide" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "{0} n'est pas un nom valide" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "{0} n'est pas un numéro de téléphone valide" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "{0} n'est pas un état de Workflow valide. Veuillez mettre à jour votre Workflow et réessayer." @@ -31259,55 +31408,59 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} n'est pas un format de rapport valide. Le format du rapport doit être l'un des {1} suivants" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "{0} est maintenant le format d'impression par défaut pour le type de document {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 -#: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: 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} est nécessaire" -#: frappe/public/js/frappe/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} articles sélectionnés" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31340,35 +31493,35 @@ msgstr "Il y a {0} minutes" msgid "{0} months ago" msgstr "Il y a {0} mois" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "{0} doit être après {1}" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} doit être l'un des {1}" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "{0} doit être défini en premier" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "{0} doit être unique" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "" @@ -31376,7 +31529,7 @@ msgstr "" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "{0} pas un État valide" @@ -31389,11 +31542,11 @@ msgid "{0} not found" msgstr "{0} introuvable" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} sur {1}" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} sur {1} ({2} lignes avec des enfants)" @@ -31402,7 +31555,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "{0} ou {1}" @@ -31426,6 +31579,10 @@ msgstr "{0} enregistrements supprimés" msgid "{0} records will be exported" msgstr "{0} enregistrements seront exportés" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31435,15 +31592,29 @@ msgstr "" msgid "{0} removed their assignment." msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "{0} enregistré avec succès" @@ -31463,11 +31634,11 @@ msgstr "{0} partagé ce document avec tout le monde" msgid "{0} shared this document with {1}" msgstr "{0} a partagé ce document avec {1}" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "{0} ne doit pas être identique à {1}" @@ -31480,8 +31651,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "{0} abonnés ajoutés" @@ -31491,7 +31662,7 @@ msgstr "{0} pour arrêter de recevoir des emails de ce type" #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "{0} à {1}" @@ -31499,7 +31670,7 @@ msgstr "{0} à {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} ne partage plus ce document avec {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} mis(e) à jour" @@ -31535,15 +31706,15 @@ msgstr "{0} {1} ajouté" msgid "{0} {1} added to Dashboard {2}" msgstr "{0} {1} ajouté au tableau de bord {2}" -#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "{0} {1} existe déjà" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "{0} {1} ne peut pas être \"{2}\". Il devrait être l'un de \"{3}\"" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "{0} {1} ne peut pas être un nœud feuille car elle a des enfants" @@ -31559,11 +31730,11 @@ msgstr "{0} {1} est lié aux documents validés suivants: {2}" msgid "{0} {1} not found" msgstr "{0} {1} introuvable" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: l'enregistrement validé ne peut pas être supprimé. Vous devez d'abord {2} l'annuler {3}." -#: frappe/model/base_document.py:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "{0}, Ligne {1}" @@ -31571,79 +31742,79 @@ msgstr "{0}, Ligne {1}" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "" -#: frappe/model/base_document.py:1120 +#: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "{0} : {1} '({3}) sera tronqué car le nombre de caractères max est {2}" -#: frappe/core/doctype/doctype/doctype.py:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "{0} : Impossible de choisir Nouv. version sans Annuler" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "{0} : Impossible de définir ‘Assigner Nouv. version’ si non Validable" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "{0} : Impossible de définir ‘Assigner Valider’ si non Validable" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "{0} : Impossible de choisir Annuler sans Valider" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "{0} : Impossible de choisir Import sans Créer" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "{0} : Vous ne pouvez pas choisir Valider, Annuler, Nouv. version sans Écrire" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 msgid "{0}: Cannot set import as {1} is not importable" msgstr "{0} : Impossible de choisir import car {1} n'est pas importable" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 +#: 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}: Impossible de joindre un nouveau document récurrent. Pour activer la pièce jointe dans l'e-mail de notification de répétition automatique, activez {1} dans Paramètres d'impression" -#: frappe/core/doctype/doctype/doctype.py:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "{0}: Le champ '{1}' ne peut pas être défini comme Unique car il contient des valeurs non uniques." -#: frappe/core/doctype/doctype/doctype.py:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "{0}: le champ {1} de la ligne {2} ne peut pas être masqué et obligatoire sans valeur par défaut" -#: frappe/core/doctype/doctype/doctype.py:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "{0}: le champ {1} de type {2} ne peut pas être obligatoire" -#: frappe/core/doctype/doctype/doctype.py:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "{0}: le nom de champ {1} apparaît plusieurs fois dans les lignes {2}" -#: frappe/core/doctype/doctype/doctype.py:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "{0}: le type de champ {1} pour {2} ne peut pas être unique" -#: frappe/core/doctype/doctype/doctype.py:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "{0} : Aucune autorisation de base définie" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "{0} : Une seule règle est permise avec le même Rôle, Niveau et {1}" -#: frappe/core/doctype/doctype/doctype.py:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" msgstr "{0}: les options doivent être un type de document valide pour le champ {1} de la ligne {2}." -#: frappe/core/doctype/doctype/doctype.py:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "{0}: Options requises pour le champ de type Lien ou Table {1} dans la ligne {2}" -#: frappe/core/doctype/doctype/doctype.py:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "{0}: les options {1} doivent être identiques au nom de type de document {2} pour le champ {3}." @@ -31651,7 +31822,7 @@ msgstr "{0}: les options {1} doivent être identiques au nom de type de document msgid "{0}: Other permission rules may also apply" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "{0} : L'Autorisation au niveau 0 doit être définie avant que les niveaux plus élevés soient parametrés" @@ -31659,7 +31830,7 @@ msgstr "{0} : L'Autorisation au niveau 0 doit être définie avant que les nivea msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "" @@ -31672,11 +31843,11 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "{0}: {1} est passé au statut {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} contre {2}" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "{0}: le type de champ {1} pour {2} ne peut pas être indexé" @@ -31700,7 +31871,7 @@ msgstr "" msgid "{count} rows selected" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "{{{0}}} n'est pas un motif de nom de champ valide. Il devrait être {{field_name}}." @@ -31708,11 +31879,11 @@ msgstr "{{{0}}} n'est pas un motif de nom de champ valide. Il devrait être {{fi msgid "{} Complete" msgstr "{} Achevée" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "" @@ -31738,7 +31909,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "{} n'est pas une chaîne de date valide." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/hr.po b/frappe/locale/hr.po index c2b6fa5778..fc3e482745 100644 --- a/frappe/locale/hr.po +++ b/frappe/locale/hr.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-21 21:50\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Croatian\n" "MIME-Version: 1.0\n" @@ -18,10 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: hr_HR\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr " u vaš preglednik" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json @@ -61,7 +57,7 @@ msgstr "#{0}" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "${values.doctype_name} je dodan u red čekanja za optimizaciju" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" msgstr "© Frappe Technologies Pvt. Ltd. i suradnici" @@ -74,7 +70,7 @@ msgstr "<head> HTML" msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "'U Globalnoj Pretrazi' nije dozvoljeno za polje {0} tipa {1}" -#: frappe/core/doctype/doctype/doctype.py:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "'U Globalnom Pretraživanju' nije dopušteno za tip {0} u retku {1}" @@ -82,19 +78,23 @@ msgstr "'U Globalnom Pretraživanju' nije dopušteno za tip {0} u retku {1}" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "'U Prikazu Liste' nije dopušteno za polje {0} tipa {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "'U Prikazu Liste' nije dopušteno za tip {0} u redu {1}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" msgstr "'Primatelji' nisu navedeni" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "'{0}' nije valjani IBAN broj" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" msgstr "'{0}' nije važeći URL" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "'{0}' nije dopušteno za tip {1} u retku {2}" @@ -102,11 +102,11 @@ msgstr "'{0}' nije dopušteno za tip {1} u retku {2}" msgid "(Mandatory)" msgstr "(Obavezno)" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "** Neuspješno: {0} do {1}: {2}" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" msgstr "+ Dodaj / Ukloni polja" @@ -122,7 +122,7 @@ msgstr "0 - Nacrt; 1 - Podneseno; 2 - Otkazano" msgid "0 is highest" msgstr "0 je najviše" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = Točno & 0 = Netočno" @@ -141,15 +141,11 @@ msgstr "1 Dan" msgid "1 Google Calendar Event synced." msgstr "Sinkroniziran je 1 događaj Google Kalendara." -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 Izvješće" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "1 komentar" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "prije 1 dan" @@ -158,17 +154,17 @@ msgid "1 hour" msgstr "1 sat" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "prije 1 sat" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "prije 1 minutu" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "prije 1 mjesec" @@ -180,37 +176,47 @@ msgstr "1 od 2" msgid "1 record will be exported" msgstr "Izvest će se 1 zapis" -#: frappe/tests/test_utils.py:711 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "1 red od {0}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "1 red do {0}" + +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "prije 1 sekundu" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "prije 1 tjedan" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "prije 1 godinu" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "prije 2 sata" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "prije 2 mjeseca" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "prije 2 tjedna" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "prije 2 godine" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "prije 3 minute" @@ -226,7 +232,7 @@ msgstr "4 sata" msgid "5 Records" msgstr "5 Zapisa" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "prije 5 dana" @@ -246,6 +252,15 @@ msgstr "<" msgid "<=" msgstr "<=" +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "\n" +" Kliknite ovdje kako biste saznali više o autentifikaciji temeljenoj na tokenima\n" +"" + #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "{0} nije važeći URL" @@ -255,6 +270,16 @@ msgstr "{0} nije važeći URL" msgid "
Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
" msgstr "
Nemojažurirati jer može pokvarit vaš obrazac. Koristi Prilagodi Prikaz Obrasca i Prilagođena Polja za postavljanje svojstava!
" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "

Zatražite datoteku koja sadrži vaše osobne podatke (PII) koji su pohranjeni u našem sustavu. Datoteka će biti u JSON formatu i bit će vam poslana e-poštom. Ako želite da se vaši PII izbrišu iz našeg sustava, molimo vas da podnesete zahtjev za brisanje podataka.

" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" +msgstr "

Pošaljite zahtjev za brisanje vašeg računa i osobnih podataka (PII) koji su pohranjeni u našem sustavu. Primit ćete e-poštu za potvrdu vašeg zahtjeva. Nakon što zahtjev bude potvrđen, pobrinut ćemo se za brisanje vaših PII podataka. Ako samo želite provjeriti koje smo PII podatke pohranili, možete zatražiti svoje podatke.

" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -640,7 +665,7 @@ msgstr "

Za interakciju s gornjim HTML-om morat ćete koristiti `root_element` "some_class_element.textContent = \"Novi sadržaj\";\n" "

" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

" msgstr "

Vaša OTP tajna na {0} je poništena. Ako niste izvršili ovo resetiranje i niste ga zatražili, odmah kontaktirajte svog administratora sustava.

" @@ -730,7 +755,7 @@ msgstr ">" msgid ">=" msgstr ">=" -#: frappe/core/doctype/doctype/doctype.py:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "Ime DocType treba započeti slovom i može se sastojati samo od slova, brojeva, razmaka, podvlaka i crtica" @@ -739,15 +764,16 @@ msgstr "Ime DocType treba započeti slovom i može se sastojati samo od slova, b msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "Instanca Sustava može funkcionirati kao OAuth klijent, resurs ili server za autorizaciju. Ovaj DocType sadrži postavke vezane za sva tri." -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" -msgstr "Istaknuta objava mora imati naslovnu sliku" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "Veza za preuzimanje s vašim podacima bit će poslana na adresu e-pošte povezanu s vašim računom." #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "Polje s imenom {0} već postoji u {1}" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "Datoteka s istim imenom {} već postoji" @@ -760,7 +786,7 @@ msgstr "Lista resursa kojima će klijentska aplikacija imati pristup nakon što msgid "A new account has been created for you at {0}" msgstr "Za vas je stvoren novi račun na {0}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "Ponavljajuće {0} {1} stvoreno je za vas putem automatskog ponavljanja {2}." @@ -861,13 +887,17 @@ msgstr "API Krajnja Točka" msgid "API Endpoint Args" msgstr "API Argumenti Krajnje Točke" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "Argumenti krajnje API točke trebaju biti valjani JSON" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -886,6 +916,10 @@ msgstr "API Ključ i tajna za interakciju s relejnim poslužiteljem. Oni će se msgid "API Key cannot be regenerated" msgstr "API Ključ se ne može regenerirati" +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "API Ključevi" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -906,7 +940,7 @@ msgstr "Zapisnik API zahtjeva" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -953,6 +987,20 @@ msgstr "Preostalo je oko {0} minuta" msgid "About {0} seconds remaining" msgstr "Preostalo je oko {0} sekundi" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "Prihvati Pozivnicu" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "Prihvaćeno" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "Prihvaćeno" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -978,7 +1026,7 @@ msgstr "Pristupni Token" msgid "Access Token URL" msgstr "URL Pristupnog Tokena" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Pristup nije dozvoljen s ove IP adrese" @@ -1042,7 +1090,7 @@ msgstr "Radnja / Ruta" msgid "Action Complete" msgstr "Radnja Završena" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "Radnja Neuspješna" @@ -1094,7 +1142,7 @@ msgstr "Radnja {0} nije uspjela {1} {2}. Pogledaj {3}" #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Radnje" @@ -1151,7 +1199,7 @@ msgstr "Zapisnik Aktivnosti" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -1162,7 +1210,7 @@ msgstr "Zapisnik Aktivnosti" msgid "Add" msgstr "Dodaj" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "Dodaj/Ukloni Stupce" @@ -1174,7 +1222,7 @@ msgstr "Dodaj / Ažuriraj" msgid "Add A New Rule" msgstr "Dodaj Novo Pravilo" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Dodaj Prilog" @@ -1194,7 +1242,7 @@ msgstr "Dodaj Obrub na Dno" msgid "Add Border at Top" msgstr "Dodaj Obrub na Vrh" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "Dodaj Karticu na Nadzornu Ploču" @@ -1207,10 +1255,10 @@ msgid "Add Child" msgstr "Dodaj Podređeni" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "Dodaj Stupac" @@ -1269,7 +1317,7 @@ msgstr "Dodajte Sudionike" msgid "Add Query Parameters" msgstr "Dodaj Parametre Upita" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "Dodaj Uloge" @@ -1302,12 +1350,12 @@ msgstr "Dodaj Pretplatnike" msgid "Add Tags" msgstr "Dodaj Oznake" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Dodaj Oznake" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "Dodaj Predložak" @@ -1396,7 +1444,7 @@ msgstr "Dodaj novu karticu" msgid "Add page break" msgstr "Dodaj prijelom stranice" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "Dodajte skriptu za Podređenu Tabelu" @@ -1434,7 +1482,7 @@ msgstr "Dodaj ovoj aktivnosti slanjem na {0}" msgid "Add {0}" msgstr "{0}" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" msgstr "{0}" @@ -1477,6 +1525,7 @@ msgstr "Dodatna Dopuštenja" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1485,6 +1534,7 @@ msgstr "Adresa" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "Adresna Linija 1" @@ -1492,6 +1542,7 @@ msgstr "Adresna Linija 1" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "Adresna Linija 2" @@ -1542,7 +1593,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:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "Administracija" @@ -1556,7 +1607,6 @@ msgstr "Administracija" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1569,11 +1619,11 @@ msgstr "Administracija" msgid "Administrator" msgstr "Administrator" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "Administrator je prijavljen" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Administrator je pristupio {0} {1} putem IP adrese {2}." @@ -1594,8 +1644,8 @@ msgstr "Napredno" msgid "Advanced Control" msgstr "Napredna Kontrola" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" msgstr "Napredno Pretraživanje" @@ -1654,7 +1704,7 @@ msgstr "Nakon Podnošenja" msgid "After Submit" msgstr "Nakon Podnošenja" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "Agregatno Polje je obavezno za kreiranje kartice sa brojevima" @@ -1681,11 +1731,11 @@ msgstr "Upozorenje" msgid "Alerts and Notifications" msgstr "Upozorenja i Obavještenja" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "Alias ne može biti SQL ključna riječ: {0}" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "Alias mora biti niz" @@ -1750,7 +1800,7 @@ msgstr "Sve slike priložene Dijaprojekciji Web Stranice trebaju biti javne" msgid "All Records" msgstr "Svi Zapisi" -#: frappe/public/js/frappe/form/form.js:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "Svi Podnesci" @@ -1810,8 +1860,8 @@ msgstr "Dozvoli Grupno Uređivanje" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " -msgstr "Broj Dozvoljnih Uzastopnih Pokušaje Prijave " +msgid "Allow Consecutive Login Attempts" +msgstr "Dozvoli uzastopne pokušaje prijave" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 msgid "Allow Google Calendar Access" @@ -1831,11 +1881,6 @@ msgstr "Dopusti gostu" msgid "Allow Guest to View" msgstr "Dozvoli Gostu da Gleda" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "Dozvoli Gostu da Komentariše" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1884,7 +1929,7 @@ msgid "Allow Print for Cancelled" msgstr "Dozvoli Ispis za Otkazano" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "Dozvoli Ispis za Nacrt" @@ -2117,7 +2162,7 @@ msgstr "Omogućava prikazivanje omogućenog osnovnog URL-a ključa za prijavu na msgid "Allows skipping authorization if a user has active tokens." msgstr "Omogućuje preskakanje autorizacije ako korisnik ima aktivne tokene." -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "Već Registrovan" @@ -2125,11 +2170,11 @@ msgstr "Već Registrovan" msgid "Already in the following Users ToDo list:{0}" msgstr "Već na sljedećoj ToDo listi Korisnika:{0}" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "Takođe se dodaje polje zavisne valute {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "Takođe se dodaje polje statusne zavisnosti {0}" @@ -2138,6 +2183,12 @@ msgstr "Takođe se dodaje polje statusne zavisnosti {0}" msgid "Alternative Email ID" msgstr "Alternativni ID e-pošte" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "Uvijek" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2189,10 +2240,8 @@ msgstr "Izmijenjene postavke imenovanja dokumenata" msgid "Amended Documents" msgstr "Izmijenjeni Dokumenti" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "Izmijenjeno od" @@ -2216,6 +2265,11 @@ msgstr "Izmjena nije Dozvoljena" msgid "Amendment naming rules updated." msgstr "Pravila Izmjene Imenovanje ažurirana" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "An email to verify your request has been sent to your email address. Please verify your request to complete the process." +msgstr "E-pošta za potvrdu vašeg zahtjeva poslana je na vašu adresu e-pošte. Molimo vas da potvrdite svoj zahtjev kako biste dovršili postupak." + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:354 msgid "An error occurred while setting Session Defaults" msgstr "Došlo je do greške prilikom postavljanja standard Postavki Sesije" @@ -2309,10 +2363,12 @@ msgid "App Logo" msgstr "Logotip aplikacije" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2383,6 +2439,10 @@ msgstr "Naziv Aplikacije" msgid "Application Version" msgstr "Verzija Aplikacije" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "Aplikacija nije instalirana" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2392,7 +2452,7 @@ msgstr "Primijenjeno na" msgid "Apply" msgstr "Primjeni" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Primijeni Pravilo Dodjele" @@ -2440,7 +2500,7 @@ msgstr "Primijenite ovo pravilo ako je Korisnik Vlasnik" msgid "Apply to all Documents Types" msgstr "Primijeni na sve Tipove Dokumenata" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "Primjenjuje se: {0}" @@ -2473,7 +2533,11 @@ msgstr "Arhivirano" msgid "Archived Columns" msgstr "Arhivirane Kolone" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "Jeste li sigurni da želite otkazati pozivnicu?" + +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "Jeste li sigurni da želite izbrisati zadatke?" @@ -2501,11 +2565,15 @@ 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 "Jeste li sigurni da želite izbrisati karticu? Svi odjeljci zajedno s poljima na kartici bit će premješteni na prethodnu karticu." -#: frappe/public/js/frappe/web_form/web_form.js:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "Jeste li sigurni da želite izbrisati ovaj zapis?" + +#: frappe/public/js/frappe/web_form/web_form.js:191 msgid "Are you sure you want to discard the changes?" msgstr "Jeste li sigurni da želite odbaciti promjene?" -#: frappe/public/js/frappe/views/reports/query_report.js:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "Jeste li sigurni da želite generisati novi izvještaj?" @@ -2513,7 +2581,7 @@ msgstr "Jeste li sigurni da želite generisati novi izvještaj?" msgid "Are you sure you want to merge {0} with {1}?" msgstr "Jeste li sigurni da želite spojiti {0} sa {1}?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "Jeste li sigurni da želite nastaviti?" @@ -2568,6 +2636,12 @@ msgstr "Budući da je dijeljenje dokumenata onemogućeno, dajte im potrebne dozv msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "Prema vašem zahtjevu, vaš račun i podaci na {0} povezani sa e-poštom {1} su trajno izbrisani" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "Pitaj" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2577,7 +2651,7 @@ msgstr "Dodijeli Uslov" msgid "Assign To" msgstr "Dodijeli" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Dodijeli" @@ -2640,6 +2714,11 @@ msgstr "Dodijeljeno" msgid "Assigned To/Owner" msgstr "Dodijeljeno/Odgovorni" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "Dodijeljeni" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "Dodjeljuje se..." @@ -2709,7 +2788,13 @@ msgstr "Dodjela {0} je uklonjena od strane {1}" msgid "Assignments" msgstr "Dodjele" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "Asinkrono" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "Najmanje jedna kolona je potrebna da se prikaže u mreži." @@ -2789,7 +2874,7 @@ msgstr "U Prilogu Polja" msgid "Attached To Name" msgstr "Priloženo Imenu" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "Priloženo Imenu mora biti niz ili cijeli broj" @@ -2805,7 +2890,7 @@ msgstr "Prilog" msgid "Attachment Limit (MB)" msgstr "Ograničenje Priloga (MB)" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "Dostignuto Ograničenje Priloga" @@ -2823,15 +2908,15 @@ msgstr "Prilog Uklonjen" #. Label of the attachments (Code) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "Prilozi" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "Pokušaj povezivanja na QZ Tray..." -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "Pokušaj pokretanja QZ Tray..." @@ -2854,6 +2939,10 @@ msgstr "Revizijski Trag" msgid "Auth URL Data" msgstr "Auth URL Podaci" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "Podaci URL autorizacije trebaju biti valjani JSON" + #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authenticate as Service Principal" @@ -2871,8 +2960,8 @@ msgid "Authentication" msgstr "Autentifikacija" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " -msgstr "Aplikacije Autentifikaciju koje možete koristiti su: " +msgid "Authentication Apps you can use are:" +msgstr "Aplikacije za autentifikaciju koje možete koristiti su:" #: frappe/email/doctype/email_account/email_account.py:339 msgid "Authentication failed while receiving emails from Email Account: {0}." @@ -2985,11 +3074,11 @@ msgstr "Automatsko Ponavljanje" msgid "Auto Repeat Day" msgstr "Dan Automatskog Ponavljanja" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "Dan Automatskog Ponavljanja{0} {1} je ponovljen." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "Automatsko Ponavljanje Kreiranja Dokumenta Neuspješno" @@ -2997,11 +3086,16 @@ msgstr "Automatsko Ponavljanje Kreiranja Dokumenta Neuspješno" msgid "Auto Repeat Schedule" msgstr "Raspored Automatskog Ponavljanja" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "Korisnik Automatskog Ponavljanja" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "Automatsko Ponavljanje kreirano za ovaj dokument" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "Automatsko Ponavljanje neuspješno za {0}" @@ -3045,7 +3139,7 @@ msgstr "Automatsko praćenje dokumenata koje komentarišete" msgid "Auto follow documents that you create" msgstr "Automatsko praćenje dokumenata koje kreirate" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "Automatsko ponavljanje nije uspjelo. Omogući automatsko ponavljanje nakon rješavanja problema." @@ -3093,7 +3187,7 @@ msgstr "Automatsko povezivanje može se aktivirati samo ako je omogućeno Dolazn msgid "Automatically Assign Documents to Users" msgstr "Automatski dodijeli dokumente korisnicima" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "Automatski primijenjen filtar za nedavne podatke. Ovo ponašanje možete onemogućiti u postavkama prikaza liste." @@ -3107,11 +3201,6 @@ msgstr "Automatski obrišite račun u roku od (sati)" msgid "Automation" msgstr "Automatizacija" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "Avatar" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3383,8 +3472,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:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "Na Osnovu" @@ -3501,10 +3590,8 @@ msgstr "Binarno Zapisivanje" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "Biografija" @@ -3534,64 +3621,6 @@ msgstr "Blok Moduli" msgid "Blocked" msgstr "Blokirano" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "Blog" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "Kategorija Bloga" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "Blog Uvod" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "Blog Predstavljanje" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "Blog Objava" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "Postavke bloga" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "Naziv Bloga" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "Bloger" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3688,13 +3717,6 @@ msgstr "Marka je ono što se pojavljuje u gornjem lijevom uglu alatne trake. Ako msgid "Breadcrumbs" msgstr "Mrvice" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "Pregledaj po Kategoriji" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3752,15 +3774,15 @@ msgstr "Grupno Brisanje" msgid "Bulk Edit" msgstr "Grupno Uređivanje" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "Grupno uređivanje {0}" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" msgstr "Grupna operacija nije uspjela" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "Grupna operacija uspješna" @@ -3775,7 +3797,7 @@ msgstr "Masovni izvoz u PDF" msgid "Bulk Update" msgstr "Masovno Ažuriranje" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "Grupno odobrenje podržava samo do 500 dokumenata." @@ -3787,7 +3809,7 @@ msgstr "Grupna operacija je stavljena u red čekanja u pozadini." msgid "Bulk operations only support up to 500 documents." msgstr "Grupne operacije podržavaju samo do 500 dokumenata." -#: frappe/model/workflow.py:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "Grupni {0} je stavljen u red čekanja u pozadini." @@ -3917,16 +3939,6 @@ msgstr "CSS selektor za element koji želite da istaknete." msgid "CSV" msgstr "CSV" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "Oznaka Poziva na Akciju" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "URL Poziva na Akciju" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3977,11 +3989,6 @@ msgstr "Poziv na Akciju" msgid "Call To Action URL" msgstr "URL Poziva na Akciju" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "Poziv na Akciju" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -3999,7 +4006,7 @@ msgid "Camera" msgstr "Kamera" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -4035,7 +4042,7 @@ msgstr "Može Pisati" msgid "Can not rename as column {0} is already present on DocType." msgstr "Ne može se preimenovati jer je kolona {0} već prisutna na DocType." -#: frappe/core/doctype/doctype/doctype.py:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "Može se promijeniti na/iz pravila imenovanja automatskog povećanja samo kada nema podataka u doctype" @@ -4059,14 +4066,15 @@ msgstr "Nije moguće preimenovati {0} u {1} jer {0} ne postoji." #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "Otkaži" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Otkaži" @@ -4084,16 +4092,18 @@ msgstr "Otkaži" msgid "Cancel All Documents" msgstr "Otkaži Sve Dokumente" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Otkaži {0} dokumenta?" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -4131,11 +4141,11 @@ msgstr "Nije Moguće Preuzeti Vrijednosti" msgid "Cannot Remove" msgstr "Nije Moguće Ukloniti" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "Nije Moguće Ažurirati Nakon Podnošenja" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "Nije moguće pristupiti putu datoteke {0}" @@ -4143,7 +4153,7 @@ msgstr "Nije moguće pristupiti putu datoteke {0}" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "Nije moguće otkazati prije podnošenja dok se prelazi iz {0} Stanja u {1} Stanje" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "Nije moguće otkazati prije podnošenja. Pogledaj Tranzicija {0}" @@ -4151,11 +4161,11 @@ msgstr "Nije moguće otkazati prije podnošenja. Pogledaj Tranzicija {0}" msgid "Cannot cancel {0}." msgstr "Nije moguće otkazati {0}." -#: frappe/model/document.py:1013 +#: frappe/model/document.py:1017 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "Nije moguće promijeniti status dokumenta iz 0 (Nacrt) u 2 (Otkazano)" -#: frappe/model/document.py:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "Nije moguće promijeniti status dokumenta sa 1 (Podneseno) u 0 (Nacrt)" @@ -4163,11 +4173,11 @@ msgstr "Nije moguće promijeniti status dokumenta sa 1 (Podneseno) u 0 (Nacrt)" msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "Nije moguće promijeniti stanje otkazanog dokumenta ({0} State)" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "Nije moguće promijeniti stanje Otkazanog Dokumenta. Prijelazni red {0}" -#: frappe/core/doctype/doctype/doctype.py:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "Nije moguće promijeniti u/iz automatskog povećanje automatskog imenovanja u Prilagodi Obrazac" @@ -4179,11 +4189,11 @@ msgstr "Nije moguće kreirati {0} naspram podređenog dokumenta: {1}" msgid "Cannot create private workspace of other users" msgstr "Nije moguće kreirati privatni radni prostor drugih korisnika" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "Nije moguće izbrisati mape Početna i Prilozi" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "Nije moguće izbrisati ili otkazati jer je {0} {1} povezan sa {2} {3} {4}" @@ -4218,7 +4228,7 @@ msgstr "Nije moguće izbrisati sistemski generisano polje {0}. msgid "Cannot delete {0}" msgstr "Nije moguće izbrisati {0}" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" msgstr "Ne može se izbrisati {0} jer ima podređene članove" @@ -4226,7 +4236,7 @@ msgstr "Ne može se izbrisati {0} jer ima podređene članove" msgid "Cannot edit Standard Dashboards" msgstr "Nije moguće uređivati Standardne Nadzorne Table" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "Nije moguće uređivati Standardno Obavještenje. Za uređivanje, onemogućite ovo i duplicirajte" @@ -4238,7 +4248,7 @@ msgstr "Nije moguće uređivati Standardne Grafikone" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "Nije moguće uređivati standard izvještaj.Dupliciraj i kreiraj novi izvještaj" -#: frappe/model/document.py:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "Nije moguće uređivati otkazani dokument" @@ -4246,8 +4256,8 @@ msgstr "Nije moguće uređivati otkazani dokument" msgid "Cannot edit filters for standard charts" msgstr "Nije moguće uređivati filtere za standardne grafikone" -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "Nije moguće uređivati filtere za standardne numeričke kartice" @@ -4255,27 +4265,27 @@ msgstr "Nije moguće uređivati filtere za standardne numeričke kartice" msgid "Cannot edit standard fields" msgstr "Nije moguće uređivati standardna polja" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "Nije moguće omogućiti {0} za tip dokumenta koji se ne može podnijeti" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "Nije moguće pronaći datoteku {} na disku" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "Nije moguće dobiti sadržaj mape" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:884 msgid "Cannot have multiple printers mapped to a single print format." msgstr "Nije moguće imati više pisača mapiranih u jedan format pisača." -#: frappe/public/js/frappe/form/grid.js:1132 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "Nije moguće uvesti tablicu s više od 5000 redaka." -#: frappe/model/document.py:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "Nije moguće povezati otkazani dokument: {0}" @@ -4287,11 +4297,11 @@ msgstr "Nije moguće mapirati jer sljedeći uslov nije ispunjen:" msgid "Cannot match column {0} with any field" msgstr "Nije moguće uskladiti kolonu {0} ni sa jednim poljem" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "Nije moguće pomjeriti red" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "Nije moguće ukloniti ID polje" @@ -4299,7 +4309,7 @@ msgstr "Nije moguće ukloniti ID polje" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "Ne može se postaviti dopuštenje 'Izvještaj' ako je postavljena dozvola 'Samo ako je Kreator'" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "Nije moguće postaviti Obavijest s događajem {0} za Doctype {1}" @@ -4316,11 +4326,11 @@ msgstr "Nije moguće podnijeti {0}." msgid "Cannot update {0}" msgstr "Nije moguće ažurirati {0}" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" -msgstr "Nije moguće koristiti podupit po redoslijedu" +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." +msgstr "Ovdje se ne može koristiti podupit." -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "Ne može se koristiti {0} u redoslijedu/grupiranju po" @@ -4388,15 +4398,6 @@ msgstr "Centar" 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 fakture, ne bi se trebali mijenjati nakon što su finalni. Finalno stanje za takve dokumente naziva se Podešeno. Možete ograničiti koje uloge mogu podnositi." -#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "Integritet Lanca" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "Lančani Hash" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4434,9 +4435,9 @@ msgstr "Promjeni Format Ispisivanja" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
\n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " +"Warning: Incorrectly updating counters can prevent documents from getting created." msgstr "Promijenite početni/tekući redni broj postojeće serije.
\n\n" -"Upozorenje: Neispravno ažuriranje brojača može spriječiti kreiranje dokumenata. " +"Upozorenje: Neispravno ažuriranje brojača može spriječiti kreiranje dokumenata." #. Label of the changed_at (Datetime) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -4505,7 +4506,7 @@ msgstr "Izvor Grafikona" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "Tip Grafikona" @@ -4538,7 +4539,7 @@ msgstr "Chat" msgid "Check" msgstr "Provjeri" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "Provjeri URL zahtjeva" @@ -4546,7 +4547,7 @@ msgstr "Provjeri URL zahtjeva" msgid "Check columns to select, drag to set order." msgstr "Označite kolone za odabir, povucite da postavite redoslijed." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "Provjerite Zapisnik Grešaka za više informacija: {0}" @@ -4587,11 +4588,6 @@ msgstr "Ako ovo potvrdite, stranica će biti objavljena na vašoj web stranici i msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "Ako ovo potvrdite, prikazat će se tekstualno područje u kojem možete napisati prilagođeni javascript koji će se izvoditi na ovoj stranici." -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "Verzija Kontrolne Sume" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "Podređeni DocTypes nisu dozvoljeni" @@ -4601,17 +4597,17 @@ msgstr "Podređeni DocTypes nisu dozvoljeni" msgid "Child Doctype" msgstr "Podređeni Doctype" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "Podređena tabela {0} za polje {1}" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Podređene tabele su prikazane kao mreža u drugim DocTypes" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "Podređena polja upita za '{0}' moraju biti popis ili torka." @@ -4640,6 +4636,7 @@ msgid "Choose authentication method to be used by all users" msgstr "Odaberite način autentifikacije koji će koristiti svi korisnici" #. 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 msgid "City" msgstr "Grad" @@ -4654,7 +4651,7 @@ msgstr "Grad/Mjesto" msgid "Clear" msgstr "Očisti" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "Očisti & Dodaj Šablon" @@ -4666,7 +4663,7 @@ msgstr "Očisti & Dodaj Šablon" msgid "Clear All" msgstr "Obriši Sve" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Obriši Dodjelu" @@ -4692,7 +4689,7 @@ msgstr "Očisti Zapisnike Nakon (dana)" msgid "Clear User Permissions" msgstr "Obriši Korisničke Dozvole" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "Obrišite poruku e-pošte i dodajte šablon" @@ -4704,11 +4701,15 @@ msgstr "Brisanje datuma završetka jer ne može biti u prošlosti za objavljene msgid "Click On Customize to add your first widget" msgstr "Klikni Prilagodi kako biste dodali svoj prvi vidžet" -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "Kliknite ispod da biste započeli:" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "Klikni ovdje" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "Klikni na datoteku da biste je odabrali." @@ -4739,24 +4740,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "Klikni na {0} za generisanje tokena osvježavanja." #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "Klikni na tabelu za uređivanje" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "Klikni da Postavite Dinamičke Filtere" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "Klikni da Postavite Filtere" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "Klikni da sortirate po {0}" @@ -4934,7 +4935,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Sklopi" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Sklopi Sve" @@ -4989,7 +4990,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:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5045,11 +5046,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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "Širina Kolone" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "Širina kolone ne može biti nula." @@ -5076,7 +5077,7 @@ msgstr "Kolone" msgid "Columns / Fields" msgstr "Kolone / Polja" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "Kolone zasnovane na" @@ -5118,16 +5119,6 @@ msgstr "Tip Komentara" msgid "Comment can only be edited by the owner" msgstr "Komentar može uređivati samo vlasnik" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "Ograničenje komentara" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "Ograničenje komentara po satu" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "Publicitet komentara može ažurirati samo izvorni autor ili Upravitelj Sustava." @@ -5135,7 +5126,7 @@ msgstr "Publicitet komentara može ažurirati samo izvorni autor ili Upravitelj #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "Komentari" @@ -5144,7 +5135,7 @@ msgstr "Komentari" msgid "Comments and Communications will be associated with this linked document" msgstr "Komentari i komunikacije će biti povezani sa ovim povezanim dokumentom" -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "Komentari ne mogu imati veze ili adrese e-pošte" @@ -5216,12 +5207,12 @@ msgid "Company Name" msgstr "Naziv Kompanije" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "Uporedite verzije" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "Upozorenje Kompilacije" @@ -5301,8 +5292,8 @@ msgstr "Komprimirano" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5316,6 +5307,11 @@ msgstr "Uslov" msgid "Condition JSON" msgstr "JSON Uslov" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "Tip Uslova" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5341,11 +5337,11 @@ msgstr "Konfiguracija" msgid "Configuration" msgstr "Konfiguracija" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "Konfiguriši Grafikon" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "Konfiguriši Kolone" @@ -5372,7 +5368,7 @@ msgstr "Konfiguriši kako će se izmijenjeni dokumenti imenovati.
\n\n" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "Konfiguriši različite aspekte načina na koji funkcionira imenovanje dokumenta kao što je imenovanje serije, trenutni brojač." -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Potvrdi" @@ -5391,7 +5387,7 @@ msgstr "Potvrdi Pristup" msgid "Confirm Deletion of Account" msgstr "Potvrdi Brisanje Računa" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "Potvrdi Novu Lozinku" @@ -5418,7 +5414,7 @@ msgstr "Potvrđeno" msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "Čestitamo na završetku podešavanja modula. Ako želite da saznate više, možete pogledati dokumentaciju ovdje." -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "Poveži sa {}" @@ -5436,8 +5432,8 @@ msgstr "Povezana Aplikacija" msgid "Connected User" msgstr "Povezani Korisnik" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "Povezano na QZ Tray!" @@ -5488,6 +5484,10 @@ msgstr "Ograničenja" msgid "Contact" msgstr "Kontakt" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
{0}" +msgstr "Kontakt/e-pošta nije pronađena. Nije dodan sudionik za -
{0}" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5545,15 +5545,13 @@ msgstr "Sadrži {0} sigurnosne ispravke" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5561,24 +5559,12 @@ msgstr "Sadrži {0} sigurnosne ispravke" msgid "Content" msgstr "Sadržaj" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "Sadržaj (HTML)" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "Sadržaj (Markdown)" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "Hash Sadržaja" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "Tip Sadržaja" @@ -5646,7 +5632,7 @@ msgstr "Kopiraj Vezu" msgid "Copy embed code" msgstr "Kopiraj ugrađen kod" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "Greška pri kopiranju u međuspremnik" @@ -5654,12 +5640,16 @@ msgstr "Greška pri kopiranju u međuspremnik" msgid "Copy to Clipboard" msgstr "Kopiraj u Međuspremnik" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "Kopiraj token u međuspremnik" + #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" msgstr "Autorska prava" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "Osnovni DocTypes se ne mogu prilagoditi." @@ -5667,7 +5657,7 @@ msgstr "Osnovni DocTypes se ne mogu prilagoditi." 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:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "Ispravna verzija:" @@ -5675,7 +5665,7 @@ msgstr "Ispravna verzija:" msgid "Could not connect to outgoing email server" msgstr "Povezivanje sa serverom odlazne e-pošte nije uspjelo" -#: frappe/model/document.py:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "Nije moguće pronaći {0}" @@ -5683,15 +5673,15 @@ msgstr "Nije moguće pronaći {0}" msgid "Could not map column {0} to field {1}" msgstr "Nije moguće mapirati kolonu {0} na polje {1}" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "Nije moguće parsati polje: {0}" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " -msgstr "Nije moguće pokrenuti: " +msgid "Could not start up:" +msgstr "Nije moguće pokrenuti:" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "Nije moguće spremiti, provjerite podatke koje ste unijeli" @@ -5736,13 +5726,14 @@ msgstr "Brojač" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "Zemlja" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "Kod Zemlje Obavezan" @@ -5760,7 +5751,7 @@ msgstr "Opština" #: frappe/public/js/frappe/utils/number_systems.js:45 msgctxt "Number system" msgid "Cr" -msgstr "Cr" +msgstr "Potražuje" #. Label of the create (Check) field in DocType 'Custom DocPerm' #. Label of the create (Check) field in DocType 'DocPerm' @@ -5774,13 +5765,13 @@ msgstr "Cr" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Kreiraj" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "Kreiraj & Nastavi" @@ -5794,7 +5785,7 @@ 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:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "Kreiraj Grafikon" @@ -5828,12 +5819,12 @@ msgstr "Kreiraj Zapisnik" msgid "Create New" msgstr "Kreiraj" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Kreiraj" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "Kreiraj Novi DocType" @@ -5841,7 +5832,7 @@ msgstr "Kreiraj Novi DocType" msgid "Create New Kanban Board" msgstr "Kreiraj Novu Natpisnu Tablu" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "Kreiraj Korisničku e-poštu" @@ -5853,7 +5844,7 @@ msgstr "Kreiraj Novi Format" msgid "Create a Reminder" msgstr "Kreiraj Podsjetnik" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "Kreiraj ..." @@ -5861,11 +5852,11 @@ msgstr "Kreiraj ..." msgid "Create a new record" msgstr "Kreiraj novi zapis" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "+ {0}" @@ -5881,7 +5872,7 @@ msgstr "Kreiraj ili Uredi Format Ispisa" msgid "Create or Edit Workflow" msgstr "Kreiraj ili Uredi Radni Tok" -#: frappe/public/js/frappe/list/list_view.js:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "+ {0}" @@ -5891,7 +5882,7 @@ msgstr "Kreiraj Radni Tok vizuelno koristeći Alat Razvoja Radnog Toka." #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "Kreirano" @@ -5907,7 +5898,7 @@ msgstr "Kreirano" msgid "Created By" msgstr "Kreirano Od" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "Kreirano Prilagođeno Polje {0} u {1}" @@ -5919,7 +5910,7 @@ msgstr "Kreirano Prilagođeno Polje {0} u {1}" msgid "Created On" msgstr "Kreirano" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "Kreiranje {0}" @@ -6228,7 +6219,7 @@ msgstr "Prilagođena metoda get_list za {0} mora vratiti objekt QueryBuilder ili #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "Prilagođeno?" @@ -6256,14 +6247,14 @@ msgstr "Poništi Prilagođavanja" msgid "Customizations for {0} exported to:
{1}" msgstr "Prilagođavanja za {0} eksportirana u:
{1}" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "Prilagodi" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "Prilagodi" @@ -6282,7 +6273,7 @@ msgstr "Prilagodi nadzornu ploču" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "Prilagodi Formu" @@ -6360,7 +6351,7 @@ msgstr "Dnevno" msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "Dnevni sažetak događaja se šalje za događaje u kalendaru gdje se postavljaju podsjetnici." -#: frappe/desk/doctype/event/event.py:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "Dnevni događaji bi trebali završiti istog dana." @@ -6407,7 +6398,7 @@ msgstr "Tamna Tema" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "Nadzorna Tabla" @@ -6466,7 +6457,6 @@ msgstr "Nadzorne Table" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6479,7 +6469,6 @@ msgstr "Nadzorne Table" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6515,7 +6504,7 @@ msgstr "Zapisnik Uvoza Podataka" msgid "Data Import Template" msgstr "Šablon Uvoza Podataka" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "Predugi Podaci" @@ -6546,7 +6535,7 @@ msgstr "Iskorištenost Veličine Reda Tabele Baze Podataka" msgid "Database Storage Usage By Tables" msgstr "Pohranjena Iskorištenost Baze Podataka po Tabelama" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "Ograničenje Veličine Reda Tabele Baze Podataka" @@ -6684,11 +6673,11 @@ msgstr "Poštovani {0}" msgid "Debug Log" msgstr "Zapisnik Otklanjanja Grešaka" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "Decimalni razdjelnik mora biti '.' kada je Ponuda postavljena na Nenumeričko" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "Decimalni Razdjelnik mora biti jedan znak" @@ -6850,11 +6839,11 @@ msgstr "Standard Radni Prostor" msgid "Default display currency" msgstr "Standard Valuta" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "Standard za tip polja 'Provjeri' {0} mora biti ili '0' ili '1'" -#: frappe/core/doctype/doctype/doctype.py:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 msgid "Default value for {0} must be in the list of options." msgstr "Standard vrijednost za {0} mora biti na listi opcija." @@ -6888,6 +6877,12 @@ msgstr "Standard Postavke Ažurirane" msgid "Defines actions on states and the next step and allowed roles." msgstr "Definira akcije nad stanjima, sljedeći korak i dozvoljene uloge." +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "Definira koliko dugo se izvezena izvješća poslana putem e-pošte čuvaju u sustavu. Starije datoteke će se automatski izbrisati." + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6905,22 +6900,27 @@ msgstr "Odgođeno" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_permission/user_permission_list.js:189 -#: frappe/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Izbriši" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Izbriši" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "Izbriši" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "Izbriši Račun" @@ -6929,6 +6929,12 @@ msgstr "Izbriši Račun" msgid "Delete All" msgstr "Izbriši Sve" +#. Label of the delete_background_exported_reports_after (Int) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Delete Background Exported Reports After (Hours)" +msgstr "Izbriši pozadinska izvezena izvješća nakon (sati)" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6938,7 +6944,7 @@ msgstr "Izbriši Kolonu" msgid "Delete Data" msgstr "Izbriši Podatke" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "Izbriši Natpisnu Tablu" @@ -6952,7 +6958,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Izbriši Karticu" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "Izbriši i Generiši Novi" @@ -6961,7 +6967,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "Izbriši Kolonu" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "Izbriši komentar?" @@ -6994,12 +7000,12 @@ msgstr "Izbriši karticu" msgid "Delete this record to allow sending to this email address" msgstr "Izbrišite ovaj zapis da omogućite slanje na ovu adresu e-pošte" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "Trajno izbriši stavku {0}?" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Trajno izbriši {0} stavke?" @@ -7035,11 +7041,15 @@ msgstr "Izbrisani Dokumenti" msgid "Deleted Name" msgstr "Izbrisano Ime" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "Svi dokumenti su uspješno izbrisani" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Izbrisano!" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "Brisanje {0} u toku" @@ -7054,8 +7064,8 @@ msgstr "Brisanje {0} u toku..." #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " -msgstr "Koraci Brisanja " +msgid "Deletion Steps" +msgstr "Koraci brisanja" #: frappe/core/doctype/page/page.py:110 #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 @@ -7071,7 +7081,7 @@ msgstr "Opcije Razdjelnika" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "Detekcija razdjelnika nije uspjela. Pokušajte omogućiti prilagođene razdjelnike i prilagodite opcije razdjelnika prema svojim podacima." -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "Razdjelnik mora biti jedan znak" @@ -7098,7 +7108,7 @@ msgstr "Odjel" msgid "Dependencies" msgstr "Zavisnosti" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "Zavisnosti & Licence" @@ -7133,7 +7143,6 @@ msgstr "Podređeni Od (uključujući)" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -7154,7 +7163,6 @@ msgstr "Podređeni Od (uključujući)" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -7164,11 +7172,6 @@ msgstr "Podređeni Od (uključujući)" msgid "Description" msgstr "Opis" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "Opis za stranicu sa listom, u običnom tekstu, samo nekoliko redova. (maksimalno 200 znakova)" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -7252,7 +7255,7 @@ msgstr "Ikona Radne Površine već postoji" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "Detalji" @@ -7313,11 +7316,6 @@ msgstr "Onemogući Obavještenja Zapisnika Promjena" msgid "Disable Comment Count" msgstr "Onemogući Brojanje Komentara" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "Onemogući Komentare" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7335,11 +7333,6 @@ msgstr "Onemogući Brojanje" msgid "Disable Document Sharing" msgstr "Onemogući Dijeljenje Dokumenata" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "Onemogući Lajkove" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "Onemogući Izvještaj" @@ -7349,6 +7342,11 @@ msgstr "Onemogući Izvještaj" msgid "Disable SMTP server authentication" msgstr "Onemogući autentifikaciju SMTP servera" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "Onemogući Pomicanje" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7394,7 +7392,6 @@ msgstr "Onemogući Prijave" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7409,7 +7406,6 @@ msgstr "Onemogući Prijave" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "Onemogućeno" @@ -7420,7 +7416,7 @@ msgstr "Automatski Odgovor Onemogućen" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "Odbaci" @@ -7438,7 +7434,7 @@ msgstr "Odbaci" msgid "Discard {0}" msgstr "Odbaci {0}" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "Odbaci?" @@ -7461,7 +7457,7 @@ msgstr "Odgovor Diskusije" msgid "Discussion Topic" msgstr "Tema Diskusije" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7497,19 +7493,23 @@ msgstr "Razdjelnik" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " -msgstr "Ne Kreiraj Novog Korisnika " +msgid "Do Not Create New User" +msgstr "Nemoj kreirati novog korisnika" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "Ne kreiraj novog korisnika ako korisnik sa e-poštom ne postoji u sistemu" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "Ne uređiuji zaglavlja koja su unaprijed postavljena u šablonu" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "Nemoj me više upozoravati o {0}" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "Želiš li i dalje nastaviti?" @@ -7603,7 +7603,7 @@ msgstr "Dokument Status sljedećih stanja je promijenjen:
{0}{0} provided for the field {1} must have atleast one Link field" msgstr "DocType {0} predviđen za polje {1} mora imati najmanje jedno polje Veze" @@ -7650,11 +7650,11 @@ msgstr "DocType Stanje" msgid "DocType View" msgstr "DocType Prikaz" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "DocType se ne može spojiti" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "DocType može preimenovati samo Administrator" @@ -7663,7 +7663,7 @@ msgstr "DocType može preimenovati samo Administrator" msgid "DocType is a Table / Form in the application." msgstr "DocType je Tabela / Obrazac u aplikaciji." -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "DocType mora imati mogućnost podnošenja za odabrani Događaj Dokumenta" @@ -7696,7 +7696,7 @@ msgstr "DocType {0} ne postoji." msgid "DocType {} not found" msgstr "DocType {} nije pronađen" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "DocType naziv ne smije počinjati niti završavati razmakom" @@ -7710,7 +7710,7 @@ msgstr "DocTypes se ne mogu mijenjati, umjesto toga koristite {0}" msgid "Doctype" msgstr "DocType" -#: frappe/core/doctype/doctype/doctype.py:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "Doctype naziv je ograničen na {0} znakova ({1})" @@ -7772,31 +7772,29 @@ msgstr "Povezivanje Dokumenta" msgid "Document Links" msgstr "Veze Dokumenta" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "Veze Dokumenta Red #{0}: Nije moguće pronaći polje {1} u {2} DocType" -#: frappe/core/doctype/doctype/doctype.py:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "Veze Dokument Red #{0}: Nevažeći doctype ili ime polja." -#: frappe/core/doctype/doctype/doctype.py:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "Veze Dokumenta Red #{0}: Nadređeni DocType je obavezan za interne veze" -#: frappe/core/doctype/doctype/doctype.py:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "Veze Dokumenta Red #{0}: Naziv polja tabele je obavezan za interne veze" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7938,13 +7936,13 @@ msgstr "Naziv Dokumenta" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "Tip Dokumenta" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 msgid "Document Type and Function are required to create a number card" msgstr "Tip i Funkcija Dokumenta su obavezni za kreiranje numeričke kartice" @@ -7981,7 +7979,7 @@ msgid "Document Types and Permissions" msgstr "Tipovi Dokumenata i Dozvole" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "Dokument Otključan" @@ -7989,15 +7987,15 @@ msgstr "Dokument Otključan" 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:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "Dokument je otkazan" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "Dokument je podnesen" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "Dokument je u stanju nacrta" @@ -8139,13 +8137,13 @@ msgstr "Krofna" msgid "Double click to edit label" msgstr "Dvaput klikni za uređivanje oznake" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "Preuzmi" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "Preuzmi" @@ -8172,7 +8170,7 @@ msgstr "Link Preuzimanja" msgid "Download PDF" msgstr "Preuzmi PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "Preuzmi izvještaj" @@ -8201,7 +8199,7 @@ msgstr "Preuzmite vCards" #: frappe/desk/page/setup_wizard/install_fixtures.py:46 msgid "Dr" -msgstr "Dr" +msgstr "Duguje" #: frappe/public/js/frappe/model/indicator.js:73 #: frappe/public/js/frappe/ui/filters/filter.js:538 @@ -8235,7 +8233,7 @@ msgstr "Povuci elemente sa bočne trake da ih dodate. Povuci ih nazad u smeće." msgid "Drag to add state" msgstr "Pvuci da dodate stanje" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "Ispusti datoteke ovdje" @@ -8268,7 +8266,7 @@ msgstr "Dvostruki Unos" msgid "Duplicate Filter Name" msgstr "Duplicirani Naziv Filtera" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "Duplicirano Ime" @@ -8367,17 +8365,17 @@ msgstr "ESC" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8385,7 +8383,7 @@ msgstr "ESC" msgid "Edit" msgstr "Uredi" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Uredi" @@ -8395,7 +8393,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Uredi" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "Uredi" @@ -8424,7 +8422,7 @@ msgstr "Uredi Prilagođeni HTML" msgid "Edit DocType" msgstr "Uredi DocType" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Uredi DocType" @@ -8442,7 +8440,7 @@ msgstr "Uredi Filtere" msgid "Edit Footer" msgstr "Uredi Podnožje" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "Uredi Format" @@ -8527,7 +8525,7 @@ msgstr "Uredi {0} Doctype" msgid "Edit to add content" msgstr "Uredi da dodate sadržaj" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "Uredi vaš odgovor" @@ -8536,7 +8534,7 @@ msgstr "Uredi vaš odgovor" msgid "Edit your workflow visually using the Workflow Builder." msgstr "Uredi vaš Radni Tok vizuelno koristeći Alat Razvoja Radnog Toka." -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "Uredi {0}" @@ -8544,7 +8542,7 @@ msgstr "Uredi {0}" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "Uređivanje Mreže" @@ -8583,11 +8581,14 @@ msgstr "Birač Elementa" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8596,6 +8597,7 @@ msgstr "Birač Elementa" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8605,6 +8607,8 @@ msgstr "Birač Elementa" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "E-pošta" @@ -8636,7 +8640,7 @@ msgstr "Račun e-pošte je onemogućen." msgid "Email Account Name" msgstr "Ime Računa e-pošte" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "Račun e-pošte je dodan više puta" @@ -8724,6 +8728,7 @@ msgid "Email IDs" msgstr "E-pošta" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "E-pošta" @@ -8767,10 +8772,10 @@ msgstr "Broj Pokušaja e-pošte" msgid "Email Rule" msgstr "Pravilo e-pošte" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" -msgstr "E-pošta poslana" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" +msgstr "E-pošta poslana u" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType @@ -8835,11 +8840,11 @@ msgstr "E-pošta je označena kao neželjena pošta" msgid "Email has been moved to trash" msgstr "E-pošta je premještena u smeće" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "E-pošta je obavezna za kreiranje korisničke e-pošte" -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "E-pošta nije poslana na {0} (otkazana / onemogućena)" @@ -8878,7 +8883,7 @@ msgstr "E-pošta će biti poslane sa sljedećim mogućim radnjama radnog toka" msgid "Embed code copied" msgstr "Kod Ugradnje kopiran" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "Prazan alias nije dopušten" @@ -8886,7 +8891,7 @@ msgstr "Prazan alias nije dopušten" msgid "Empty column" msgstr "Prazna kolona" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "Prazni argumenti niza nisu dopušteni" @@ -8905,7 +8910,7 @@ msgstr "Omogući" msgid "Enable Address Autocompletion" msgstr "Omogući Automatsko Dovršavanje Adrese" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "Omogućite Dozvoli Automatsko Ponavljanje za tip dokumenta {0} u obrascu za prilagođavanje" @@ -8931,11 +8936,6 @@ msgstr "Omogući Komentare" msgid "Enable Dynamic Client Registration" msgstr "Omogući Dinamičku Registraciju Klijenta" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "Omogući Obavještenje e-poštom" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -9029,11 +9029,6 @@ msgstr "Omogući Sigurnost" msgid "Enable Social Login" msgstr "Omogući Prijavu preko Društvenih Mreža" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "Omogući Dijeljenje preko Društvenim Mreža" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "Omogućite Praćenje Prikaza Stranica" @@ -9041,7 +9036,7 @@ msgstr "Omogućite Praćenje Prikaza Stranica" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "Omogući Dvofaktorsku Autentifikaciju" @@ -9053,12 +9048,6 @@ msgstr "Omogućite način rada za programere da kreirate standardni Šablon Ispi msgid "Enable developer mode to create a standard Web Template" msgstr "Omogući način rada za programere da kreirate standardni Web Šablon" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "Omogući obavještenje putem e-pošte za sve komentare ili lajkove primljene na vašem blog postu." - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -9082,6 +9071,7 @@ msgstr "Omogućite praćenje web stranice u aplikaciji" #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -9094,6 +9084,7 @@ msgstr "Omogućite praćenje web stranice u aplikaciji" #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "Omogućeno" @@ -9119,15 +9110,11 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "Omogućavanje automatskog odgovora na računu dolazne e-pošte će poslati automatske odgovore na sve sinhronizirane e-poruke. Želite li nastaviti?" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "Omogućavanjem ove opcije registrovaćete web-lokaciju na centralnom relejnom serveru za slanje guranih obavijesti za sve instalirane aplikacije putem Firebase Cloud Messaging. Ovaj server pohranjuje samo korisničke tokene i zapisnike grešaka, a poruke se ne spremaju." - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " -msgstr "Omogućavanje ove opcije registrovaćete web-lokaciju na centralnom relejnom serveru za slanje guranih obavijesti za sve instalirane aplikacije putem Firebase Cloud Messaging. Ovaj server pohranjuje samo korisničke tokene i zapisnike grešaka, a poruke se ne spremaju. " +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "Omogućavanjem ove opcije registrovaćete web-lokaciju na centralnom relejnom serveru za slanje guranih obavijesti za sve instalirane aplikacije putem Firebase Cloud Messaging. Ovaj server pohranjuje samo korisničke tokene i zapisnike grešaka, a poruke se ne spremaju." #. Description of the 'Queue in Background (BETA)' (Check) field in DocType #. 'DocType' @@ -9143,11 +9130,11 @@ msgstr "Ako ovo omogućite, dokumenti će se podnijeti u pozadini" msgid "Encrypt Backups" msgstr "Šifriraj Sigurnosne Kopije" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "Ključ Šifriranja je u nevažećem formatu!" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "Ključ Šifriranje je nevažeći! Provjeri site_config.json" @@ -9159,7 +9146,7 @@ msgstr "Kraj" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -9175,6 +9162,10 @@ msgstr "Datum Završetka" msgid "End Date cannot be before Start Date!" msgstr "Datum Završetka ne može biti prije datuma početka!" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "Datum završetka ne može biti danas." + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9219,7 +9210,7 @@ msgstr "Unesi Id klijenta i Tajnu klijenta u Google Postavke." msgid "Enter Code displayed in OTP App." msgstr "Unesi kod prikazan u OTP aplikaciji." -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "Unesi Primaoca(e) e-pošte" @@ -9289,10 +9280,17 @@ msgstr "Jednako" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9302,7 +9300,7 @@ msgstr "Jednako" msgid "Error" msgstr "Grеška" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "Grеška" @@ -9322,7 +9320,7 @@ msgstr "Zapisi Grešaka" msgid "Error Message" msgstr "Poruka Greške" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 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...

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

Kliknite ovdje da preuzmete i instalirate QZ Tray.
Kliknite ovdje da saznate više o direknom ispisivanju." @@ -9350,9 +9348,9 @@ msgstr "Greška u Klijent Skripti." msgid "Error in Header/Footer Script" msgstr "Greška Skripte Zaglavlja/Podnožja" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "Greška u Obavještenju" @@ -9372,19 +9370,19 @@ msgstr "Pogreška pri parsiranju ugniježđenih filtera: {0}" msgid "Error while connecting to email account {0}" msgstr "Greška prilikom povezivanja na račun e-pošte {0}" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Greška prilikom evaluacije Obavještenja {0}. Popravite vaš šablon." -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "Greška: Podaci nedostaju u tabeli {0}" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "Greška: Nedostaje vrijednost za {0}: {1}" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "Greška: {0} Red #{1}: Nedostaje vrijednost za: {2}" @@ -9441,7 +9439,7 @@ msgstr "Tip Događaja" msgid "Events" msgstr "Događaji" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "Događaji u Današnjem Kalendaru" @@ -9525,7 +9523,7 @@ msgstr "Izvrši" msgid "Execute Console script" msgstr "Izvršite skriptu konzole" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "Izvršava se Kod" @@ -9533,7 +9531,7 @@ msgstr "Izvršava se Kod" msgid "Executing..." msgstr "Izvršavanje..." -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "Vrijeme izvršenja: {0} sek" @@ -9559,12 +9557,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Proširi" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Rasklopi Sve" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "Očekivani operator 'and' ili 'or', pronađen: {0}" @@ -9592,7 +9590,9 @@ msgid "Expire Notification On" msgstr "Obavještenje o isteku na dan" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "Isteklo" @@ -9620,13 +9620,13 @@ msgstr "Vrijeme isteka stranice sa slikom QR koda" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Izvoz" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Izvezi" @@ -9663,7 +9663,7 @@ msgstr "Eksportiraj iz" msgid "Export Import Log" msgstr "Izvezi Zapisnik Importa" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "Eksportiraj Izvještaj: {0}" @@ -9672,11 +9672,11 @@ msgstr "Eksportiraj Izvještaj: {0}" msgid "Export Type" msgstr "Tip Izvoza" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "Eksportiraj sve podudarne redove?" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "Eksportiraj sve {0} redove?" @@ -9684,6 +9684,10 @@ msgstr "Eksportiraj sve {0} redove?" msgid "Export as zip" msgstr "Eksportiraj kao zip" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "Izvoz u pozadini" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "Izvoz nije dozvoljen. Potrebna vam je {0} uloga za izvoz." @@ -9789,7 +9793,7 @@ msgstr "Neuspješni Poslovi" msgid "Failed Logins (Last 30 days)" msgstr "Neuspješne Prijave (posljednjih 30 dana)" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "Neuspješne Transakcije" @@ -9806,7 +9810,7 @@ msgstr "Promjena lozinke nije uspjela." msgid "Failed to complete setup" msgstr "Nije uspjelo dovršavanje postavljanja" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "Nije uspjelo izračunavanje tijela zahtjeva: {}" @@ -9815,15 +9819,15 @@ msgstr "Nije uspjelo izračunavanje tijela zahtjeva: {}" msgid "Failed to connect to server" msgstr "Povezivanje sa serverom nije uspjelo" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "Dekodiranje tokena nije uspjelo, navedite važeći token kodiran sa base64." -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "Dešifriranje ključa {0} nije uspjelo" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "Brisanje {0} dokumenata nije uspjelo: {1}" @@ -9831,8 +9835,8 @@ msgstr "Brisanje {0} dokumenata nije uspjelo: {1}" msgid "Failed to enable scheduler: {0}" msgstr "Omogućavanje Raspoređivača nije uspjelo: {0}" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "Procjena uslova nije uspjela: {}" @@ -9848,7 +9852,7 @@ msgstr "Nije uspjelo generiranje imena iz serije" msgid "Failed to generate preview of series" msgstr "Generiranje pregleda serije nije uspjelo" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "Nije uspjelo preuzimanje metode za komandu {0} sa {1}" @@ -9868,11 +9872,11 @@ msgstr "Uvoz virtuelnog doctypa {} nije uspio, je li prisutna datoteka kontroler msgid "Failed to optimize image: {0}" msgstr "Optimizacija slike nije uspjela: {0}" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "Nije uspjelo prikazivanje poruke: {}" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "Nije uspjelo prikazivanje predmeta: {}" @@ -9922,12 +9926,6 @@ msgstr "FavIcon" msgid "Fax" msgstr "Faks" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "Istaknuto" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "Povratne Informacije" @@ -9985,17 +9983,17 @@ msgstr "Preuzimaju se standard Dokumenata Globalnog Pretraživanja." #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "Polje" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" msgstr "Polje \"ruta\" je obavezno za Web Prikaze" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "Polje \"naziv\" je obavezno ako je postavljeno \"Polje Pretrage Web Stranice\"." @@ -10008,7 +10006,7 @@ msgstr "Polje \"vrijednost\" je obavezno. Navedi vrijednost koju treba ažurirat msgid "Field Description" msgstr "Opis polja" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "Nedostaje Polje" @@ -10038,7 +10036,7 @@ msgstr "Šablon Polja" msgid "Field Type" msgstr "Tip Polja" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "Polje nije dozvoljeno u upitu" @@ -10064,11 +10062,11 @@ msgstr "Polje {0} ne postoji na {1}" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "Polje {0} se odnosi na nepostojeći tip dokumenta {1}." -#: frappe/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "Polje {0} nije pronađeno." -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "Polje {0} u dokumentu {1} nije ni polje za broj Mobilnog Telefona niti veza za Klijenta ili Korisnika" @@ -10086,20 +10084,20 @@ msgstr "Polje {0} u dokumentu {1} nije ni polje za broj Mobilnog Telefona niti v #: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json #: frappe/desk/doctype/form_tour_step/form_tour_step.json #: frappe/integrations/doctype/webhook_data/webhook_data.json -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "Ime Polja" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "Ime polja '{0}' je u konfliktu sa {1} imena {2} u {3}" -#: frappe/core/doctype/doctype/doctype.py:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "Ime polja {0} mora postojati da bi se omogućilo automatsko imenovanje" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "Ime polja je ograničeno na 64 znaka ({0})" @@ -10115,15 +10113,15 @@ msgstr "Ime polja koje će biti DocType za ovo polje veze." msgid "Fieldname {0} appears multiple times" msgstr "Ime polja {0} pojavljuje se više puta" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "Ime polja {0} ne može imati posebne znakove kao što je {1}" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "Ime polja {0} je u konfliktu sa meta objektom" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "Ime polja {0} je ograničeno" @@ -10146,7 +10144,7 @@ msgstr "Ime polja {0} je ograničeno" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -10159,7 +10157,7 @@ msgstr "Polja" msgid "Fields Multicheck" msgstr "Polja Višestrukog Odabira" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "Polja `file_name` ili `file_url` moraju biti postavljena za datoteku" @@ -10167,7 +10165,7 @@ msgstr "Polja `file_name` ili `file_url` moraju biti postavljena za datoteku" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "Polja moraju biti lista ili tuple kada je as_list omogućen" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "Polja moraju biti niz, lista, torka, pypika Polje ili pypika Funkcija" @@ -10195,7 +10193,7 @@ msgstr "Tip Polja" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "Tip polja se ne može promijeniti iz {0} u {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "Tip polja se ne može promijeniti iz {0} u {1} u redu {2}" @@ -10208,7 +10206,7 @@ msgstr "Tip polja se ne može promijeniti iz {0} u {1} u redu {2}" msgid "File" msgstr "Datoteka" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "Datoteka \"{0}\" je preskočena zbog nevažećeg tipa datoteke" @@ -10261,7 +10259,7 @@ msgstr "URL Datoteke" msgid "File backup is ready" msgstr "Sigurnosna Kopija Datoteke je spremna" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "Ime datoteke ne može imati {0}" @@ -10269,7 +10267,7 @@ msgstr "Ime datoteke ne može imati {0}" msgid "File not attached" msgstr "Datoteka nije priložena" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "Veličina datoteke je premašila maksimalnu dozvoljenu veličinu od {0} MB" @@ -10278,11 +10276,11 @@ msgstr "Veličina datoteke je premašila maksimalnu dozvoljenu veličinu od {0} msgid "File too big" msgstr "Datoteka je prevelika" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "Tip datoteke {0} nije dozvoljen" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "Datoteka {0} ne postoji" @@ -10296,10 +10294,10 @@ msgstr "Datoteke" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10336,11 +10334,11 @@ msgstr "Filter Naziv" msgid "Filter Values" msgstr "Filter Vrijednosti" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "Nedostaje uvjet filtra nakon operatora: {0}" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "Polja filtera ne mogu sadržavati povratne crte (`)." @@ -10358,7 +10356,6 @@ msgstr "Filtrirano Prema" msgid "Filtered Records" msgstr "Filtrirani Zapisi" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "Filtrirano prema \"{0}\"" @@ -10373,7 +10370,9 @@ msgstr "Filtrirano prema \"{0}\"" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10395,6 +10394,11 @@ msgstr "Konfiguracija Filtera" msgid "Filters Display" msgstr "Prikaz Filtera" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "Uređivač Filtera" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10407,11 +10411,11 @@ msgstr "Filtrira JSON" msgid "Filters Section" msgstr "Sekcija Filtera" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "Primijenjeni filteri za {0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "Filteri spremljeni" @@ -10424,18 +10428,18 @@ msgstr "Filteri će biti dostupni putem filters.

Pošalji i msgid "Filters {0}" msgstr "Filteri {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:1427 +#: frappe/public/js/frappe/views/reports/report_view.js:1429 msgid "Filters:" msgstr "Filteri:" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 msgid "Find '{0}' in ..." msgstr "Pronađi '{0}' u..." #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 msgid "Find {0} in {1}" msgstr "Pronađi {0} u {1}" @@ -10459,8 +10463,12 @@ msgstr "Prvi Dan u Tjednu" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "Ime" @@ -10469,10 +10477,6 @@ msgstr "Ime" msgid "First Success Message" msgstr "Prva Poruka Uspjeha" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:49 -msgid "First Transaction" -msgstr "Prva Transakcija" - #: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." msgstr "Prva kolona podataka mora biti prazna." @@ -10523,11 +10527,11 @@ msgstr "Decimalna Preciznost" msgid "Fold" msgstr "Presavij" -#: frappe/core/doctype/doctype/doctype.py:1450 +#: frappe/core/doctype/doctype/doctype.py:1451 msgid "Fold can not be at the end of the form" msgstr "Presavijanje ne može biti na kraju obrasca" -#: frappe/core/doctype/doctype/doctype.py:1448 +#: frappe/core/doctype/doctype/doctype.py:1449 msgid "Fold must come before a Section Break" msgstr "Presavijanje mora doći prije prekida odjeljka" @@ -10545,7 +10549,7 @@ msgstr "Naziv Mape" msgid "Folder name should not include '/' (slash)" msgstr "Ime fascikle ne smije uključivati '/' (kosa crta)" -#: frappe/core/doctype/file/file.py:472 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "Mapa {0} nije prazna" @@ -10652,7 +10656,7 @@ msgstr "Detalji Podnožja" msgid "Footer HTML" msgstr "Podnožje HTML" -#: frappe/printing/doctype/letter_head/letter_head.py:75 +#: frappe/printing/doctype/letter_head/letter_head.py:81 msgid "Footer HTML set from attachment {0}" msgstr "HTML Podnožja postavljen iz priloga {0}" @@ -10689,7 +10693,7 @@ msgstr "Šablon Podnožja" msgid "Footer Template Values" msgstr "Vrijednosti Šablona Podnožja" -#: frappe/printing/page/print/print.js:116 +#: frappe/printing/page/print/print.js:129 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" @@ -10748,8 +10752,8 @@ msgstr "Za Korisnika" msgid "For Value" msgstr "Za Vrijednost" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "Za poređenje, koristite >5, <10 ili =324. Za raspone koristite 5:10 (za vrijednosti između 5 i 10)." @@ -10775,12 +10779,6 @@ msgstr "Na primjer: {} Otvori" msgid "For help see Client Script API and Examples" msgstr "Za pomoć pogledaj API i primjere Klijentske skriptet" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "Za više informacija, klikni ovdje." - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "Za više informacija, {0}." @@ -10795,7 +10793,7 @@ msgstr "Za više adresa, unesi adresu u drugu liniju. npr. test@test.com ⏎ tes msgid "For updating, you can update only selective columns." msgstr "Za ažuriranje, možete ažurirati samo selektivne kolone." -#: frappe/core/doctype/doctype/doctype.py:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "Za {0} na nivou {1} u {2} u redu {3}" @@ -10850,7 +10848,7 @@ msgstr "Zaboravljana Lozinka?" #: frappe/custom/doctype/client_script/client_script.json #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/desk/doctype/form_tour/form_tour.json -#: frappe/printing/page/print/print.js:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "Forma" @@ -10910,6 +10908,11 @@ msgstr "Format" msgid "Format Data" msgstr "Format Podataka" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "Dvosedmično" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "Proslijediti" @@ -10937,7 +10940,15 @@ msgstr "Jedinice Frakcije" msgid "Frappe" msgstr "Frappe" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "Blog Sustava" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "Forum Sustava" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "Frappe Framework" @@ -11026,7 +11037,7 @@ msgstr "Od Datuma" msgid "From Date Field" msgstr "Od Datuma" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "Od Dokumenta" @@ -11053,18 +11064,16 @@ msgstr "Pun" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "Puno Ime" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "Cijela Stranica" @@ -11090,13 +11099,13 @@ msgstr "Funkcija zasnovana na" msgid "Function {0} is not whitelisted." msgstr "Funkcija {0} nije na bijeloj listi." -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "Funkcija {0} zahtijeva argumente, ali nijedan nije naveden" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" -msgstr "Dalji članovi se mogu kreirati samo pod članovima tipa 'Grupa'" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "Daljnje podgrupe mogu se stvoriti samo pod zapisima označenim kao 'Grupa'" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -11155,7 +11164,7 @@ msgstr "Općenito" msgid "Generate Keys" msgstr "Generiši Ključeve" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "Generiši Novi Izvještaj" @@ -11163,8 +11172,14 @@ msgstr "Generiši Novi Izvještaj" msgid "Generate Random Password" msgstr "Generiši Nasumičnu Lozinku" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "Generiši zasebne dokumente za svakog Dodijeljenog" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "Generiši URL Praćenja" @@ -11187,7 +11202,7 @@ msgstr "Geolokacija" msgid "Geolocation Settings" msgstr "Geolokacijske Postavke" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "Preuzmi Današnja Upozorenja" @@ -11323,7 +11338,7 @@ msgid "Go to this URL after completing the form" msgstr "Idi na ovaj URL nakon popunjavanja forme" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "Idi na {0}" @@ -11371,10 +11386,6 @@ msgstr "Google Analytics anonimizirani IP" msgid "Google Calendar" msgstr "Google Kalendar" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
{0}" -msgstr "Google Kalendar - Kontakt/e-mail nije pronađen. Nije dodan učesnik za -
{0}" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "Google Kalendar - Nije moguće kreirati Kalendar za {0}, kod greške {1}." @@ -11493,11 +11504,6 @@ msgstr "URL Google Sheet je nevažeći ili nije javno dostupan." msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "URL Google Sheet mora završavati sa \"gid={number}\". Kopiraj i zalijepi URL iz adresne trake pretraživača i pokušajte ponovo." -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "Google Snippet Pregled" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11574,14 +11580,10 @@ msgstr "Grupiši Po Tipu" msgid "Group By field is required to create a dashboard chart" msgstr "Polje Grupiši Po je obavezno za kreiranje grafikona nadzorne table" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "Grupiraj Po mora biti niz" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "Grupni Član" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11631,7 +11633,6 @@ msgstr "HH:mm:ss" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11642,9 +11643,8 @@ msgstr "HH:mm:ss" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11748,7 +11748,7 @@ msgstr "Zaglavlje" msgid "Header HTML" msgstr "HTML Zaglavlja" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "HTML Zaglavlja postavljen iz priloga {0}" @@ -11806,6 +11806,12 @@ msgstr "Toplotna Karta" msgid "Hello" msgstr "Zdravo" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "Zdravo," + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11871,7 +11877,7 @@ msgstr "Helvetica" msgid "Helvetica Neue" msgstr "Helvetica Neue" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "Ovdje je vaš URL-a za praćenje" @@ -11907,7 +11913,7 @@ msgstr "Sakriveno" msgid "Hidden Fields" msgstr "Sakrivena Polja" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "Skriveni stupci uključuju: {0}" @@ -11940,11 +11946,6 @@ msgstr "Sakrij Obrub" msgid "Hide Buttons" msgstr "Sakrij Dugmad" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "Sakrij Poziv Na Akciju" - #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json @@ -12024,7 +12025,7 @@ msgstr "Sakrij Bočnu Traku, Meni i Komentare" msgid "Hide Standard Menu" msgstr "Sakrij Standardni Meni" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "Sakrij Oznake" @@ -12038,7 +12039,7 @@ msgstr "Sakrij Vikende" msgid "Hide descendant records of For Value." msgstr "Sakrij podređene zapise Za Vrijednost." -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "Sakrij Detalje" @@ -12087,11 +12088,8 @@ msgstr "Savjet: Uključi 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:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -12179,16 +12177,16 @@ msgstr "Pretpostavka je da još nemate pristup nijednom radnom prostoru, ali ga #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "ID" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "ID" @@ -12284,9 +12282,9 @@ msgstr "Ako je označeno Primijeni Striktno Korisničko dopuštenje i definirano msgid "If Checked workflow status will not override status in list view" msgstr "Ako je označeno, status radnog toka neće nadjačati status u prikazu liste" -#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "Ako je Vlasnik" @@ -12414,6 +12412,10 @@ msgstr "Ako korisnik ima odabranu bilo koju ulogu, tada korisnik postaje \"Koris msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "Ako vam ove upute nisu pomogle, dodajte svoje prijedloge o GitHub problemima." +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "Ako je ovo bila pogreška ili vam je ponovno potreban pristup, obratite se svom timu." + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12445,7 +12447,11 @@ msgstr "Ako učitavaš nove zapise, \"Imenovanje Serije\" postaje obavezno, ako msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "Ako učitavate nove zapise, ostavite kolonu \"ime\" (ID) praznom." -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "Ako imate bilo kakvih pitanja, obratite se administratoru sustava." + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "Ako ste nedavno vratili web stranicu, možda ćete morati kopirati konfiguraciju web stranice koja sadrži izvorni ključ šifriranja." @@ -12502,12 +12508,12 @@ msgstr "Zanemari priloge veće od ove veličine" msgid "Ignored Apps" msgstr "Ignorisane Aplikacije" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "Ilegalan Status Dokumenta za {0}" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "Ilegalan SQL Upit" @@ -12568,11 +12574,11 @@ msgstr "Prikaz Slike" msgid "Image Width" msgstr "Širina Slike" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 msgid "Image field must be a valid fieldname" msgstr "Polje slike mora biti važeće ime polja" -#: frappe/core/doctype/doctype/doctype.py:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "Polje za sliku mora biti tipa Priloži Sliku" @@ -12594,15 +12600,15 @@ msgstr "Slike" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "Oponašaj" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "Oponašaj {0}" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "Oponašan od {0}" @@ -12628,7 +12634,7 @@ msgstr "Implicitno" msgid "Import" msgstr "Uvezi" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "Uvezi" @@ -12856,15 +12862,16 @@ msgstr "Uključite Teme iz Aplikacija" msgid "Include Web View Link in Email" msgstr "Uključi Web Pregled vezu u e-poštu" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "Uključi Filtere" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "Uključi skrivene stupce" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "Uključi Uvlačenje" @@ -12911,7 +12918,7 @@ msgstr "Račun dolazne e-pošte nije ispravan" msgid "Incomplete Virtual Doctype Implementation" msgstr "Nepotpuna implementacija virtualnog tipa dokumenta" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "Nepotpuni podaci prijave" @@ -12923,7 +12930,7 @@ msgstr "Neispravna Konfiguracija" msgid "Incorrect URL" msgstr "Neispravan URL" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "Netačan korisnik ili lozinka" @@ -12931,11 +12938,11 @@ msgstr "Netačan korisnik ili lozinka" msgid "Incorrect Verification code" msgstr "Netačan Verifikacioni Kod" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "Netačna vrijednost u redu {0}:" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "Netačna vrijednost:" @@ -12947,7 +12954,7 @@ msgstr "Netačna vrijednost:" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "Indeks" @@ -13022,7 +13029,7 @@ msgstr "Umetni Iznad" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "Umetni Poslije" @@ -13038,7 +13045,7 @@ msgstr "Umetni Nakon polja '{0}' spomenutog u prilagođenom polju '{1}', sa ozna msgid "Insert Below" msgstr "Umetni Ispod" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "Umetni Kolonu Ispred {0}" @@ -13056,8 +13063,12 @@ msgstr "Umetni Nove Zapise" msgid "Insert Style" msgstr "Umetni Stil" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "Instagram" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "Instaliraj {0} sa Marketplace" @@ -13074,7 +13085,7 @@ msgid "Installed Applications" msgstr "Instalirane Aplikacije" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "Instalirane Aplikacije" @@ -13091,19 +13102,19 @@ msgstr "Instrukcije Poslane e-poštom" msgid "Insufficient Permission Level for {0}" msgstr "Nedovoljan Nivo Dozvola za {0}" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "Nedovoljne Dozvole za {0}" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" msgstr "Nedovoljne dozvole za brisanje izvještaja" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" msgstr "Nedovoljne Dozvole za uređivanje Izvještaja" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "Nedovoljno ograničenje priloga" @@ -13207,9 +13218,9 @@ msgid "Invalid" msgstr "Nevažeći" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "Nevažeći izraz \"depends_on\"" @@ -13217,7 +13228,7 @@ msgstr "Nevažeći izraz \"depends_on\"" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "Nevažeći izraz \"depends_on\" postavljen u filteru {0}" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "Nevažeći izraz \"mandatory_depends_on\"" @@ -13233,7 +13244,7 @@ msgstr "Nevažeći CSV format" msgid "Invalid Code. Please try again." msgstr "Nevažeći Kod. Pkušaj ponovo." -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "Nevažeći Uslov: {}" @@ -13253,16 +13264,20 @@ msgstr "Nevažeći DocType" msgid "Invalid DocType: {0}" msgstr "Nevažeći DocType: {0}" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "Nevažeći DocType" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "Nevažeći Naziv Polja" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "Nevažeći URL Datoteke" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "Nevažeći Filter" @@ -13294,7 +13309,7 @@ msgstr "Nevažeća Prijava. Pokušaj ponovo." msgid "Invalid Mail Server. Please rectify and try again." msgstr "Nevažeći Server Pošte. Ispravi i pokušaj ponovo." -#: frappe/model/naming.py:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "Nevažeća Serija Imenovanja: {}" @@ -13303,8 +13318,8 @@ msgstr "Nevažeća Serija Imenovanja: {}" msgid "Invalid Operation" msgstr "Nevažeća Operacija" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "Nevažeća Opcija" @@ -13316,25 +13331,25 @@ msgstr "Nevažeći Server Odlazne Pošte ili port: {0}" msgid "Invalid Output Format" msgstr "Nevažeći Izlazni Format" -#: frappe/model/base_document.py:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "Nevažeće Nadjačavanje" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "Nevažeći Parametri." -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "Nevažeća Lozinka" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "Nevažeći Broj Telefona" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "Nevažeći Zahtjev" @@ -13343,7 +13358,7 @@ msgstr "Nevažeći Zahtjev" msgid "Invalid Search Field {0}" msgstr "Nevažeće Polje Pretrage {0}" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "Nevažeći Naziv Polja Tabele" @@ -13351,8 +13366,8 @@ msgstr "Nevažeći Naziv Polja Tabele" msgid "Invalid Transition" msgstr "Nevažeća Tranzicija" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13366,47 +13381,51 @@ msgstr "Nevažeće Korisničko Ime ili Lozinka Podrške. Ispravi i pokušaj pono msgid "Invalid Values" msgstr "Nevažeće Vrijednosti" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "Nevažeća Tajna Webhooka" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "Nevažeća agregatna funkcija" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "Nevažeći format aliasa: {0}. Alias mora biti jednostavan identifikator." -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "Nevažeća aplikacija" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "Nevažeći format argumenta: {0}. Dopušteni su samo navodni znakovni literali ili jednostavna imena polja." -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "Nevažeća vrsta argumenta: {0}. Dopušteni su samo nizovi, brojevi i None." -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "Nevažeći znakovi u nazivu polja: {0}. Dopušteni su samo slova, brojevi i podcrte." -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "Nevažeći znakovi u nazivu tablice: {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "Nevažeća kolona" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "Nevažeća vrsta uvjeta u ugniježđenim filtrima: {0}" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "Nevažeći smjer u Sortiraj Po: {0}. Mora biti 'ASC' ili 'DESC'." -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "Nevažeći status dokumenta" @@ -13418,31 +13437,27 @@ 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:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "Nevažeći format polja za SELECT: {0}. Nazivi polja moraju biti jednostavni, s obrnutim ukrštenim slovima, kvalificirani prema tablici, aliasi ili '*'." -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "Nevažeći format polja u {0}: {1}. Koristi 'field', 'link_field.field' ili 'child_table.field'." -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "Nevažeći naziv polja u funkciji: {0}. Dopušteni su samo jednostavni nazivi polja." -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "Nevažeći naziv polja {0}" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "Nevažeći naziv polja: {0}" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "Nevažeći tip polja: {0}" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "Nevažeći naziv polja '{0}' u automatskom nazivu" @@ -13450,11 +13465,11 @@ msgstr "Nevažeći naziv polja '{0}' u automatskom nazivu" msgid "Invalid file path: {0}" msgstr "Nevažeći put datoteke: {0}" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "Nevažeći uslov filtera: {0}. Očekivana je lista ili torka." -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "Nevažeći format polja filtera: {0}. Koristi 'fieldname' ili 'link_fieldname.target_fieldname'." @@ -13462,20 +13477,28 @@ msgstr "Nevažeći format polja filtera: {0}. Koristi 'fieldname' ili 'link_fiel msgid "Invalid filter: {0}" msgstr "Nevažeći filter: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "Nevažeći tip argumenta funkcije: {0}. Dozvoljeni su samo nizovi, brojevi, liste i None." -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "Nevažeći format rječnika funkcija" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "Nevažeći unos" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "Nevažeći json dodan u prilagođene opcije: {0}" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "Nevažeći ključ" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "Nevažeći tip imena (cijeli broj) za kolonu imena varchar" @@ -13483,6 +13506,10 @@ msgstr "Nevažeći tip imena (cijeli broj) za kolonu imena varchar" msgid "Invalid naming series {}: dot (.) missing" msgstr "Nevažeća serija imenovanja {}: nedostaje tačka (.)" +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "Nevažeći niz imenovanja {}: nedostaje točka (.) prije numeričkih rezerviranih mjesta. Molimo koristite format poput ABCD.#####." + #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "Nevažeći ili oštećeni sadržaj za uvoz" @@ -13491,19 +13518,27 @@ msgstr "Nevažeći ili oštećeni sadržaj za uvoz" msgid "Invalid redirect regex in row #{}: {}" msgstr "Nevažeći regex za preusmjeravanje u redu #{}: {}" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "Nevažeći argumenti zahtjeva" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "Nevažeće tijelo zahtjeva" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "Nevažeća uloga" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "Nevažeći format jednostavnog filtra: {0}" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "Nevažeći početak za uslov filtera: {0}. Očekivana je lista ili torka." -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "Nevažeći format niza literala: {0}" @@ -13511,7 +13546,7 @@ msgstr "Nevažeći format niza literala: {0}" msgid "Invalid template file for import" msgstr "Nevažeća datoteka šablona za uvoz" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "Nevažeće stanje tokena! Provjeri je li token kreirao OAuth korisnik." @@ -13520,20 +13555,20 @@ msgstr "Nevažeće stanje tokena! Provjeri je li token kreirao OAuth korisnik." msgid "Invalid username or password" msgstr "Neispravno korisničko Ime ili lozinka" -#: frappe/model/naming.py:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "Nevažeća vrijednost navedena za UUID: {}" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "Nevažeće vrijednosti za polja:" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "Nevažeća verzija wkhtmltopdf" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "Nevažeći {0} uslov" @@ -13542,10 +13577,47 @@ msgstr "Nevažeći {0} uslov" msgid "Inverse" msgstr "Obrnuto" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "Pozivnica je već prihvaćena" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "Pozivnica već postoji" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "Pozivnica se ne može otkazati" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "Pozivnica je otkazana" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "Pozivnica je istekla" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "Pozivnica nije pronađena" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "Pozivnica za pridruživanje {0} otkazana" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "Pozivnica za pridruživanje {0} istekla" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "Kreiraj Korisnika" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "Pozvao/la" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "Je" @@ -13570,7 +13642,7 @@ msgstr "Je Kalendar i Gantt" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "Je Podređena Tabela" @@ -13623,6 +13695,10 @@ msgstr "Je Mapa" msgid "Is Global" msgstr "Je Globalno" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Grupa" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13649,8 +13725,13 @@ msgstr "Je Opciono Stanje" msgid "Is Primary" msgstr "Je Primarno" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "Primarna Adresa" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 msgid "Is Primary Contact" msgstr "Je Primarni Kontakt" @@ -13681,7 +13762,7 @@ msgstr "Je Javno" msgid "Is Published Field" msgstr "Je Objavljeno Polje" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "Je Objavljeno Polje mora biti važeći naziv polja" @@ -13706,7 +13787,7 @@ msgstr "Je li postavljanje dovršeno?" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "Je Sam" @@ -13742,7 +13823,7 @@ msgstr "Je Standard" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "Je Podnošljiv" @@ -13948,11 +14029,11 @@ msgstr "Kolona Oglasne Table" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "Naziv Oglasne Table" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Postavke Oglasne Table" @@ -13973,12 +14054,14 @@ msgstr "Prati Konverzaciju" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -14240,7 +14323,7 @@ msgstr "Oznaka je obavezna" msgid "Landing Page" msgstr "Početna Stranica" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "Pejzaž" @@ -14248,10 +14331,13 @@ msgstr "Pejzaž" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Jezik" @@ -14339,8 +14425,12 @@ msgstr "Prošli Mjesec" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "Prezime" @@ -14355,6 +14445,11 @@ msgstr "Poslednji Datum Poništavanja Lozinke" msgid "Last Quarter" msgstr "Prošlo Tromjesečje" +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "Zadnji put primljeno u" + #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json @@ -14371,11 +14466,6 @@ msgstr "Zadnje Izvođenje" msgid "Last Sync On" msgstr "Zadnja Sinhronizacija" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "Zadnja Sinhronizacija" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14486,7 +14576,7 @@ msgstr "Dužina" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "Dužina proslijeđenog niza podataka veća je od vrijednosti maksimalno dopuštenih bodova oznake!" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "Dužina {0} bi trebala biti između 1 i 1000" @@ -14535,8 +14625,8 @@ 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:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14564,7 +14654,7 @@ msgstr "Naziv Zaglavlja" msgid "Letter Head Scripts" msgstr "Skripte Zaglavlja" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "Zaglavlje ne može biti istovremeno onemogućeno i standard" @@ -14581,7 +14671,7 @@ msgstr "Zaglavlje u HTML-u" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "Nivo" @@ -14631,20 +14721,6 @@ msgstr "Svijetla Tema" msgid "Like" msgstr "Lajk" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "Ograničenje Lajkova" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "Ograničenje lajkova po satu" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "Lajk na {0}: {1}" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "Lajk" @@ -14685,6 +14761,7 @@ msgstr "Linija" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14698,6 +14775,7 @@ msgstr "Linija" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "Veza" @@ -14828,10 +14906,15 @@ msgstr "Povezano" msgid "Linked With" msgstr "Povezano Sa" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +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 (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14839,6 +14922,7 @@ msgstr "Povezano Sa" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "Veze" @@ -14880,7 +14964,7 @@ msgstr "Filter Liste" msgid "List Settings" msgstr "Postavke Liste" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Postavke Liste" @@ -14921,7 +15005,7 @@ msgstr "Lista izvršenih zakrpa" msgid "List setting message" msgstr "Poruka podešavanja liste" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "Liste" @@ -14930,9 +15014,8 @@ msgstr "Liste" msgid "Load Balancing" msgstr "Balansiranje Opterećenja" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Učitaj Još" @@ -14949,10 +15032,10 @@ msgstr "Učitaj više" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "Učitava se" @@ -14964,7 +15047,7 @@ msgstr "Učitavanje Filtera u toku..." msgid "Loading import file..." msgstr "Učitavanje datoteke za uvoz..." -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "Učitavanje verzija u toku..." @@ -14974,7 +15057,7 @@ msgstr "Učitavanje verzija u toku..." #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "Učitavanje u toku..." @@ -15035,7 +15118,7 @@ msgstr "Prijavite se da pristupite ovoj stranici." msgid "Log out" msgstr "Odjava" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "Odjavljen" @@ -15095,7 +15178,7 @@ msgstr "Kod Potvrdu Prijave od {}" msgid "Login and view in Browser" msgstr "Prijavi se i pregledaj u Pretraživaču" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "Prijava je potrebna da biste vidjeli pregled liste web forme. Omogući {0} da vidite postavke liste" @@ -15103,7 +15186,7 @@ msgstr "Prijava je potrebna da biste vidjeli pregled liste web forme. Omogući { msgid "Login link sent to your email" msgstr "Veza za prijavu poslana je na vašu e-poštu" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "Prijava trenutno nije dozvoljena" @@ -15156,7 +15239,7 @@ msgstr "Prijavi se putem veze e-pošte" msgid "Login with email link expiry (in minutes)" msgstr "Prijavite se sa istekom veze e-pošte (u minutama)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "Prijava sa korisničkim imenom i lozinkom nije dozvoljena." @@ -15175,7 +15258,7 @@ msgstr "URI Logotipa" msgid "Logout" msgstr "Odjava" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "Odjava sa Svih Sesija" @@ -15279,7 +15362,10 @@ msgid "Major" msgstr "Velika" #. 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 +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "Neka \"ime\" bude pretraživo u globalnoj pretrazi" @@ -15355,7 +15441,7 @@ msgstr "Obavezno Zavisi od" msgid "Mandatory Depends On (JS)" msgstr "Obavezno Zavisi od (JS)" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "Nedostaju obavezne informacije:" @@ -15367,15 +15453,15 @@ msgstr "Obavezno polje: postavi ulogu za" msgid "Mandatory field: {0}" msgstr "Obavezno polje: {0}" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "Obavezna polja u tabeli {0}, red {1}" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "Obavezna polja nedostaju u {0}" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "Obavezna polja nedostaju:" @@ -15456,10 +15542,8 @@ msgid "Mark as Unread" msgstr "Označi kao Nepročitano" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15540,7 +15624,13 @@ msgstr "Maksimalna Veličina Priloga" msgid "Max auto email report per user" msgstr "Maksimalni broj automatskih izvještaja putem e-pošte po korisniku" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "Maksimalan broj dopuštenih prijava po satu" + +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "Maksimalna širina za tip Valuta je 100px u redu {0}" @@ -15549,20 +15639,15 @@ msgstr "Maksimalna širina za tip Valuta je 100px u redu {0}" msgid "Maximum" msgstr "Maksimum" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "Maksimalna Granica Priloga {0} je dostignuta za {1} {2}." -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "Maksimalni Broj Polja" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "Maksimalno ograničenje priloga od {0} je dostignuto." -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "Maksimalno je dozvoljeno {0} redova" @@ -15578,7 +15663,7 @@ msgstr "Značenje Podnesi, Otkaži, Izmjeni" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15591,7 +15676,7 @@ msgstr "Srednje" msgid "Meeting" msgstr "Sastanak" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "Ispunjava uslove?" @@ -15632,7 +15717,7 @@ msgstr "Meni" msgid "Merge with existing" msgstr "Spoji sa postojećim" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "Spajanje je moguće samo između Grupe na Grupe ili podređeni na podređeni" @@ -15658,7 +15743,7 @@ msgstr "Spajanje je moguće samo između Grupe na Grupe ili podređeni na podre #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15698,7 +15783,7 @@ msgstr "Poruka Poslata" msgid "Message Type" msgstr "Tip Poruke" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "Poruka je isječena" @@ -15730,29 +15815,21 @@ msgstr "Poruke" msgid "Meta" msgstr "Meta" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "Meta Opis" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "Meta Slika" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "Meta Oznake" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "Meta Naziv" @@ -15805,7 +15882,7 @@ msgstr "Metoda" msgid "Method Not Allowed" msgstr "Metoda nije Dozvoljena" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "Metoda je potrebna za kreiranje numeričke kartice" @@ -15821,6 +15898,11 @@ msgstr "Sredina Centar" msgid "Middle Name" msgstr "Srednje Ime" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "Srednje Ime (Neobavezno)" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15887,11 +15969,11 @@ msgstr "Gospođica" msgid "Missing DocType" msgstr "Nedostaje DocType" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "Nedostaje Polje" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "Nedostajuća Polja" @@ -15927,15 +16009,16 @@ msgstr "Mobilni Broj" msgid "Mobile No" msgstr "Mobilni Broj" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "Mobilni Broj" + #. Label of the modal_trigger (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Modal Trigger" msgstr "Modalni Okidač" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "Izmijenio" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15956,7 +16039,7 @@ msgstr "Izmijenio" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -16132,10 +16215,12 @@ msgstr "Više Informacija" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Više Informacija" @@ -16154,7 +16239,7 @@ msgstr "Više sadržaja na dnu stranice." msgid "Most Used" msgstr "Najviše Korišten" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "Najvjerovatnije je vaša lozinka predugačka." @@ -16165,7 +16250,7 @@ msgstr "Najvjerovatnije je vaša lozinka predugačka." msgid "Move" msgstr "Premjesti" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "Premjesti u" @@ -16201,7 +16286,7 @@ msgstr "Premjesti sekciju na novu karticu" msgid "Move the current field and the following fields to a new column" msgstr "Premjesti trenutno polje i sljedeća polja u novu kolonu" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "Pomjeri na Red Broj" @@ -16228,7 +16313,7 @@ msgstr "Gđa." msgid "Ms" msgstr "Gđa" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "Više početnih članova nije dozvoljeno." @@ -16251,7 +16336,7 @@ msgstr "Mora biti zatvoren u '()' i uključiti '{0}', što je čuvar mjesta za k msgid "Must be of type \"Attach Image\"" msgstr "Mora biti tipa \"Priloži Sliku\"" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "Mora imati dozvolu za pristup ovom izvještaju." @@ -16269,7 +16354,7 @@ msgid "Mx" msgstr "Mx" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16307,9 +16392,9 @@ msgstr "NAPOMENA: Ovo polje je zbog starih postavki. Ponovo podesite LDAP za rad #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16319,11 +16404,11 @@ msgstr "Naziv" msgid "Name (Doc Name)" msgstr "Naziv (Naziv dokumenta)" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "Naziv je već zauzet, postavite novi naziv" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "Naziv ne može sadržavati posebne znakove poput {0}" @@ -16335,7 +16420,7 @@ msgstr "Naziv tipa dokumenta (DocType) sa kojim želite da se ovo polje poveže. msgid "Name of the new Print Format" msgstr "Naziv novog formata za ispisivanje" -#: frappe/model/naming.py:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "Naziv {0} ne može biti {1}" @@ -16376,7 +16461,7 @@ msgstr "Pravilo Imenovanja" msgid "Naming Series" msgstr "Imenovanje Serije" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "Imenovanje Serije Obavezno" @@ -16413,12 +16498,12 @@ msgstr "Šablon Navigacijske Trake" msgid "Navbar Template Values" msgstr "Vrijednosti Šablona Navigacijske Trake" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Kreći se po listi prema dolje" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Kreći se po listi prema gore" @@ -16433,7 +16518,11 @@ msgstr "Idi na glavni sadržaj" msgid "Navigation Settings" msgstr "Postavke Navigacije" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "Trebate pomoć?" + +#: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "Potrebna je uloga Upravitelja Radnog Prostora za uređivanje privatnog radnog prostora drugih korisnika" @@ -16441,7 +16530,7 @@ msgstr "Potrebna je uloga Upravitelja Radnog Prostora za uređivanje privatnog r msgid "Negative Value" msgstr "Negativna Vrijednost" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "Ugniježđeni filtri moraju biti navedeni kao popis ili torka." @@ -16454,6 +16543,12 @@ msgstr "Greška ugniježđenog skupa. Kontaktiraj Administratora." msgid "Network Printer Settings" msgstr "Postavke Mrežnog Pisača" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "Nikad" + #. 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 @@ -16462,7 +16557,7 @@ msgstr "Postavke Mrežnog Pisača" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16483,10 +16578,6 @@ msgstr "Nova Adresa" msgid "New Chart" msgstr "Novi Grafikon" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "Novi Komentar {0}: {1}" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "Novi Kontakt" @@ -16495,8 +16586,8 @@ msgstr "Novi Kontakt" msgid "New Custom Block" msgstr "Novi Prilagođeni Blok" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" msgstr "Novi Prilagođeni Format Ispisa" @@ -16527,7 +16618,7 @@ msgstr "Novi Događaj" msgid "New Folder" msgstr "Nova Mapa" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "Nova Oglasna Tabla" @@ -16562,12 +16653,12 @@ msgstr "Nova Numerička Kartica" msgid "New Onboarding" msgstr "Nova Introdukcija" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "Nova Lozinka" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "Novo Ime Formata Ispisa" @@ -16576,7 +16667,7 @@ msgstr "Novo Ime Formata Ispisa" msgid "New Quick List" msgstr "Nova Brza Lista" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "Novi Naziv Izvještaja" @@ -16594,8 +16685,8 @@ msgstr "Nova Prečica" msgid "New Users (Last 30 days)" msgstr "Novi Korisnici (posljednjih 30 dana)" -#: frappe/core/doctype/version/version_view.html:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "Nova Vrijednost" @@ -16654,13 +16745,13 @@ msgstr "Nova vrijednost koju treba postaviti" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "Novi {0}" @@ -16676,7 +16767,7 @@ msgstr "Novi {0} {1} dodan na Nadzornu Tablu {2}" msgid "New {0} {1} created" msgstr "Novi {0} {1} kreiran" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "Novi {0}: {1}" @@ -16684,7 +16775,7 @@ msgstr "Novi {0}: {1}" msgid "New {} releases for the following apps are available" msgstr "Dostupna su nova {} izdanja za sljedeće aplikacije" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "Novokreirani korisnik {0} nema omogućene uloge." @@ -16697,7 +16788,7 @@ msgstr "Upravitelj Biltena" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16804,14 +16895,15 @@ msgstr "Dalje na klik" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Ne" @@ -16861,6 +16953,10 @@ msgstr "Nema Računa e-pošte" msgid "No Email Accounts Assigned" msgstr "Nema dodeljenih naloga e-pošte" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "Nije pronađeno polje za e-poštu u {0}" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "Nema e-pošte" @@ -16896,15 +16992,15 @@ msgstr "Nije pronađen LDAP Korisnik za e-poštu: {0}" msgid "No Label" msgstr "Nema Oznake" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: 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 "Bez Zaglavlja" -#: frappe/model/naming.py:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "Nije Navedeno Ime za {0}" @@ -16912,7 +17008,7 @@ msgstr "Nije Navedeno Ime za {0}" msgid "No New notifications" msgstr "Nema Novih obavještenja" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "Nema Navedenih Dozvola" @@ -16932,11 +17028,11 @@ msgstr "Nema Dozvoljenih Grafikona na ovoj Nadzornoj Tabli" msgid "No Preview" msgstr "Nema Pregleda" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "Pregled nije Dostupan" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "Nijedan Pisač nije Dostupan." @@ -16952,11 +17048,11 @@ msgstr "Nema Rezultata" msgid "No Results found" msgstr "Nema Rezultata" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "Nisu Navedene Uloge" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "Nije Pronađeno Odabirno Polje" @@ -16964,7 +17060,7 @@ msgstr "Nije Pronađeno Odabirno Polje" msgid "No Suggestions" msgstr "Nema Prijedloga" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "Nema Oznaka" @@ -16976,7 +17072,7 @@ msgstr "Nema Nadolazećih Događaja" msgid "No address added yet." msgstr "Adresa još nije dodana." -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "Nema upozorenja za danas" @@ -17004,23 +17100,19 @@ msgstr "Nema promjena za sinhronizaciju" msgid "No changes to update" msgstr "Nema promjena za ažuriranje" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "Još nema komentara" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " -msgstr "Još nema komentara. " +msgid "No comments yet." +msgstr "Još nema komentara." #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." msgstr "Još nema dodanih kontakata." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "Nema kontakata povezanih s dokumentom" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "Nema podataka za izvoz" @@ -17036,11 +17128,15 @@ msgstr "Nije pronađen nijedan dokument označen sa {0}" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "Nijedan račun e-pošte nije povezan s korisnikom. Dodajte račun pod Korisnik > Pristigla pošta." +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "Nema adresa e-pošte za pozivnice" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "Nema neuspjelih zapisa" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "Nisu pronađena polja koja se mogu koristiti kao kolona Oglasne Table. Koristite formu za prilagođavanje da dodate prilagođeno polje tipa \"Odaberi\"." @@ -17064,7 +17160,7 @@ msgstr "Nema daljnjih zapisa" msgid "No matching records. Search something new" msgstr "Nema podudarnih zapisa. Traži nešto novo" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "Nema više artikala za prikaz" @@ -17108,7 +17204,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "Nema dozvole za '{0}' {1}" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "Nema dozvole za čitanje {0}" @@ -17120,7 +17216,7 @@ msgstr "Nema dozvole za {0} {1} {2}" msgid "No records deleted" msgstr "Nema izbrisanih zapisa" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "Nema zapisa u {0}" @@ -17136,7 +17232,7 @@ msgstr "Nijedan zapis neće biti izvezen" msgid "No rows" msgstr "Nema redova" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "Nema predmeta" @@ -17156,11 +17252,11 @@ msgstr "Bez {0}" msgid "No {0} Found" msgstr "Nije pronađeno {0}" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "Nije pronađeno {0}" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "Nije pronađeno {0} sa odgovarajućim filterima. Obrišite filtere da vidite sve {0}." @@ -17169,7 +17265,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:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "Broj." @@ -17212,7 +17308,7 @@ msgstr "Normalizovane Kopije" msgid "Normalized Query" msgstr "Normalizovani Upit" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "Nije Dozvoljeno" @@ -17233,7 +17329,7 @@ msgstr "Nisu Podređeni Od" msgid "Not Equals" msgstr "Nije Jednako" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "Nije Pronađeno" @@ -17259,20 +17355,19 @@ msgstr "Nije povezano ni sa jednim zapisom" msgid "Not Nullable" msgstr "Nemože se Nulirati" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "Nije Dozvoljeno" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "Nije Dozvoljeno čitati {0}" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17281,10 +17376,10 @@ msgstr "Nije Objavljeno" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "Nespremljeno" @@ -17316,7 +17411,7 @@ msgstr "Nije važeća Vrijednost Odvojena Zarezima (CSV datoteka)" msgid "Not a valid User Image." msgstr "Nije važeća Korisnička slika." -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "Nije važeća Akcija Radnog Toka" @@ -17332,11 +17427,11 @@ msgstr "Nije aktivno" msgid "Not allowed for {0}: {1}" msgstr "Nije dozvoljeno za {0}: {1}" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "Nije dozvoljeno priložiti {0} dokument, omogući Dozvoli Ispis za {0} u Postavkama Ispisa" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "Nije dozvoljeno kreirati prilagođeni Virtualni DocType." @@ -17360,27 +17455,27 @@ msgstr "Nije pronađeno" msgid "Not in Developer Mode" msgstr "Nije u načinu rada za programere" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "Nije u načinu rada za programere! Postavi u site_config.json ili napravi 'Prilagođen' DocType." -#: frappe/core/doctype/system_settings/system_settings.py:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Nije dozvoljeno" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "Nije dozvoljen pregled {0}" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17415,7 +17510,7 @@ msgstr "Napomena: Za najbolje rezultate, slike moraju biti iste veličine, a ši msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "Napomena: Višestruke sesije će biti dozvoljene u slučaju mobilnog uređaja" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "Napomena: Ovo će biti podijeljeno s korisnikom." @@ -17439,10 +17534,9 @@ msgstr "Ništa nije ostalo za ponoviti" msgid "Nothing left to undo" msgstr "Ništa nije ostalo za poništiti" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "Ništa za pokazati" @@ -17488,15 +17582,15 @@ msgstr "Obavijest Pretplaćeni Dokument" msgid "Notification sent to" msgstr "Obavještenje je poslano za" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "Obavještenje: klijent {0} nema postavljen broj mobilnog telefona" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "Obavještenje: dokument {0} nema postavljen broj {1} (polje: {2})" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "Obavještenje: korisnik {0} nema postavljen broj mobilnog telefona" @@ -17547,7 +17641,7 @@ msgstr "Obavijesti ako nema odgovora za (u minutama)" msgid "Notify users with a popup when they log in" msgstr "Obavijestite korisnike skočnim prozorom kada se prijave" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "Sad" @@ -17605,12 +17699,12 @@ msgstr "Broj Grupa" msgid "Number of Queries" msgstr "Broj Upita" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "Broj polja priloga je veći od {}, ograničenje je ažurirano na {}." -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "Broj Sigurnosnih Kopija mora biti veći od nule." @@ -17719,11 +17813,11 @@ msgstr "OTP Aplikacija" msgid "OTP Issuer Name" msgstr "Naziv OTP Izdavaoca" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "OTP Poništavanje Tajne - {0}" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "OTP Tajna je resetovana. Ponovna registracija će biti potrebna prilikom sljedeće prijave." @@ -17842,7 +17936,7 @@ msgstr "Na ili Poslije" msgid "On or Before" msgstr "Na ili Prije" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "{0}, {1} je napisao:" @@ -17882,7 +17976,7 @@ msgstr "Introdukcija Završena" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "Jednom podneseni dokumenti koji se podnose se ne mogu mijenjati. Mogu se samo poništiti i izmjenuti." @@ -17927,7 +18021,7 @@ msgstr "Samo Administrator može koristiti Snimač" msgid "Only Allow Edit For" msgstr "Dozvoli samo uređivanje za" -#: frappe/core/doctype/doctype/doctype.py:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "Jedine dopuštene opcije za polje podataka su:" @@ -17944,7 +18038,7 @@ msgstr "Samo Upravitelj Radnog Prostorar može uređivati javne radne prostore" msgid "Only allowed to export customizations in developer mode" msgstr "Dozvoljeno je izvoziti prilagođavanja samo u načinu rada za programere" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "Mogu se odbaciti samo nacrti dokumenata" @@ -17963,19 +18057,19 @@ msgstr "Za nove zapise neophodna su samo obavezna polja. Ako želite, možete iz msgid "Only one {0} can be set as primary." msgstr "Samo jedan {0} može biti postavljen kao primarni." -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "Mogu se izbrisati samo izvještaji tipa Konstruktor Izvještaja" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "Mogu se uređivati samo izvještaji tipa Konstruktor Izvještaja" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Dozvoljeno je prilagođavanje samo standardnih tipova dokumenata iz obrasca za prilagođavanje." -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "Samo Administrator može izbrisati standardni DocType." @@ -18045,7 +18139,7 @@ msgstr "Otvori Referentni Dokument" msgid "Open Settings" msgstr "Otvori Postavke" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "Aplikacije otvorenog koda za Web" @@ -18063,7 +18157,7 @@ msgstr "Otvorite dijalog sa obaveznim poljima da brzo kreirate novi zapis. Mora msgid "Open a module or tool" msgstr "Otvori modul ili alat" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "Otvori konzolu" @@ -18071,7 +18165,7 @@ msgstr "Otvori konzolu" msgid "Open in a new tab" msgstr "Otvori u novoj kartici" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Otvorite stavku liste" @@ -18086,13 +18180,13 @@ msgstr "Otvorite aplikaciju za autentifikaciju na svom mobilnom telefonu." #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "Otvori {0}" @@ -18101,6 +18195,10 @@ msgstr "Otvori {0}" msgid "OpenID Configuration" msgstr "OpenID konfiguracija" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "OpenID Konfiguracija uspješno preuzeta!" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" @@ -18116,7 +18214,7 @@ msgstr "Otvoreno" msgid "Operation" msgstr "Operacija" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "Operator mora biti jedan od {0}" @@ -18142,7 +18240,7 @@ msgstr "Opcija 2" msgid "Option 3" msgstr "Opcija 3" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "Opcija {0} za polje {1} nije podređena tabela" @@ -18162,6 +18260,7 @@ msgstr "Opcija: Upozorenje će biti poslano ako je ovaj izraz tačan" #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -18170,11 +18269,12 @@ msgstr "Opcija: Upozorenje će biti poslano ako je ovaj izraz tačan" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "Opcije" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "Opcije Vrsta polja 'Dinamička veza' mora upućivati na drugo polje veze s opcijama kao 'DocType'" @@ -18183,7 +18283,7 @@ msgstr "Opcije Vrsta polja 'Dinamička veza' mora upućivati na drugo polje veze msgid "Options Help" msgstr "Pomoć Opcija" -#: frappe/core/doctype/doctype/doctype.py:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "Opcije Ocjenjivačkog Polja mogu se kretati od 3 do 10" @@ -18191,7 +18291,7 @@ msgstr "Opcije Ocjenjivačkog Polja mogu se kretati od 3 do 10" msgid "Options for select. Each option on a new line." msgstr "Opcije za odabir. Svaka opcija u novom redu." -#: frappe/core/doctype/doctype/doctype.py:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 msgid "Options for {0} must be set before setting the default value." msgstr "Opcije za {0} moraju se postaviti prije postavljanja standard vrijednosti." @@ -18199,7 +18299,7 @@ msgstr "Opcije za {0} moraju se postaviti prije postavljanja standard vrijednost msgid "Options is required for field {0} of type {1}" msgstr "Opcije su potrebne za polje {0} tipa {1}" -#: frappe/model/base_document.py:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "Opcije nisu postavljene za polje veze {0}" @@ -18215,7 +18315,7 @@ msgstr "Narandžasta" msgid "Order" msgstr "Red" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "Sortiraj Po mora biti niz" @@ -18231,12 +18331,12 @@ msgstr "Istorija" msgid "Org History Heading" msgstr "Naslov Povijesti Organizacije" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "Orijentacija" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "Originalna Vrijednost" @@ -18304,10 +18404,6 @@ msgstr "Izlaz" msgid "Overview" msgstr "Pregled" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "Vlasnik" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" @@ -18315,9 +18411,9 @@ msgstr "ZAKRPA" #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/printing/page/print/print.js:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "PDF" @@ -18358,11 +18454,11 @@ msgstr "PDF Generisanje nije uspjelo" msgid "PDF generation failed because of broken image links" msgstr "PDF Generisanje nije uspjelo zbog neispravnih veza slika" -#: frappe/printing/page/print/print.js:616 +#: frappe/printing/page/print/print.js:656 msgid "PDF generation may not work as expected." msgstr "PDF Generisanje možda neće raditi kako se očekuje." -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:574 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "PDF ispis putem \"Direktnog Ispisa\" nije podržano." @@ -18534,7 +18630,7 @@ msgstr "Stranica za prikaz na web stranici\n" #: frappe/public/html/print_template.html:25 #: frappe/public/js/frappe/views/reports/print_tree.html:89 -#: frappe/public/js/frappe/web_form/web_form.js:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "Stranica {0} od {1}" @@ -18561,7 +18657,7 @@ msgstr "Nadređeni DocType" msgid "Parent Document Type" msgstr "Nadređeni Tip Dokumenta" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "Nadređeni Dokument Tip je obavezan za kreiranje numeričke kartice" @@ -18578,11 +18674,11 @@ msgstr "Nadređeno Polje" #. Label of the nsm_parent_field (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype.py:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "Nadređeno Polje (Stablo)" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "Nadređeno Polje mora biti važeće ime polja" @@ -18591,7 +18687,7 @@ msgstr "Nadređeno Polje mora biti važeće ime polja" msgid "Parent Label" msgstr "Nadređena Oznaka" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 msgid "Parent Missing" msgstr "Nedostaje Nadređeni" @@ -18665,8 +18761,8 @@ msgstr "Pasivno" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18676,7 +18772,7 @@ msgstr "Pasivno" msgid "Password" msgstr "Lozinka" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "E-pošta s lozinkom poslana" @@ -18689,7 +18785,7 @@ msgstr "Poništavanje Lozinke" msgid "Password Reset Link Generation Limit" msgstr "Maksimalan Broj Veza za Poništavanje Lozinke po satu" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "Lozinka se ne može filtrirati" @@ -18706,6 +18802,10 @@ msgstr "Lozinka za Osnovni DN" msgid "Password is required or select Awaiting Password" msgstr "Lozinka je obavezna ili odaberi Čekam Lozinku" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "Lozinka je valjana. 👍" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "Nedostaje Lozinka za Račun e-pošte" @@ -18714,7 +18814,7 @@ msgstr "Nedostaje Lozinka za Račun e-pošte" msgid "Password not found for {0} {1} {2}" msgstr "Lozinka nije pronađena za {0} {1} {2}" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "Uputstva za poništavanje lozinke su poslana na e-poštu korisnika {}" @@ -18722,11 +18822,11 @@ msgstr "Uputstva za poništavanje lozinke su poslana na e-poštu korisnika {}" msgid "Password set" msgstr "Lozinka postavljena" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu." @@ -18734,7 +18834,7 @@ msgstr "Veličina lozinke je premašila maksimalno dozvoljenu veličinu." msgid "Passwords do not match" msgstr "Lozinke se ne podudaraju" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "Lozinke se ne podudaraju!" @@ -18804,10 +18904,12 @@ msgstr "Maksimalna Upotreba Memorije" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "Na Čekanju" @@ -18883,7 +18985,7 @@ msgstr "Trajno Podnesi {0}?" msgid "Permanently delete {0}?" msgstr "Trajno izbriši {0}?" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "Greška Dozvole" @@ -18943,16 +19045,16 @@ msgstr "Tip Dozvole" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "Greška Dozvola" @@ -19014,15 +19116,18 @@ msgstr "Zahtjev Preuzimanje Ličnih Podataka" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -19035,13 +19140,13 @@ msgstr "Telefon" msgid "Phone No." msgstr "Broj Telefona." -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 msgid "Phone Number {0} set in field {1} is not valid." msgstr "Telefonski Broj {0} postavljen u polje {1} nije važeći." -#: frappe/public/js/frappe/form/print_utils.js:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "Odaberi Kolone" @@ -19101,11 +19206,11 @@ msgstr "Instaliraj biblioteku ldap3 putem pip-a da biste koristili ldap funkcion msgid "Please Set Chart" msgstr "Postavi Grafikon" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "Ažuriraj SMS Postavke" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "Dodaj predmet e-pošti" @@ -19113,7 +19218,7 @@ msgstr "Dodaj predmet e-pošti" msgid "Please add a valid comment." msgstr "Dodaj relevantan komentar." -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "Zamoli administratora da potvrdi vašu registraciju" @@ -19121,11 +19226,11 @@ msgstr "Zamoli administratora da potvrdi vašu registraciju" msgid "Please attach a file first." msgstr "Priloži datoteku." -#: frappe/printing/doctype/letter_head/letter_head.py:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 msgid "Please attach an image file to set HTML for Footer." msgstr "Priloži datoteku slike da postavite HTML za Podnožje." -#: frappe/printing/doctype/letter_head/letter_head.py:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "Priloži datoteku slike da postavite HTML za Zaglavlje." @@ -19133,19 +19238,15 @@ msgstr "Priloži datoteku slike da postavite HTML za Zaglavlje." msgid "Please attach the package" msgstr "Priloži Applikaciju" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "Provjerite URL konfiguracije OpenID-a" - #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "Provjeri vrijednosti filtera postavljene za Grafikon Nadzorne Table: {}" -#: frappe/model/base_document.py:951 +#: frappe/model/base_document.py:1008 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Provjeri vrijednost \"Preuzmi iz\" postavljenu za polje {0}" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "Provjeri e-poštu za potvrdu" @@ -19177,11 +19278,11 @@ msgstr "Klikni na sljedeću vezu da postavite novu lozinku" msgid "Please confirm your action to {0} this document." msgstr "Potvrdi akciju {0} ovog dokumenta." -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "Kontaktiraj Upravitelja Sistema da instalira ispravnu verziju." -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "Kreiraj Numeričku Karticu" @@ -19197,20 +19298,20 @@ msgstr "Izbriši polje iz {0} ili dodaj traženi dokument." msgid "Please do not change the template headings." msgstr "Ne mijenjaj Naslove Predložaka." -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" msgstr "Kopiraj ovo da izvršite promjene" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "Omogući barem jedan ključ za prijavu na društvenim mrežama ili LDAP ili se prijavite putem veze e-pošte prije nego što onemogućite prijavu zasnovanu na korisničkom imenu/lozinki." #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "Omogući iskačuće prozore" @@ -19247,7 +19348,7 @@ msgstr "Unesi ID Klijenta prije nego što se omogući prijava na društvene mre msgid "Please enter Client Secret before social login is enabled" msgstr "Unesi Tajnu Klijenta prije nego što se omogući prijava na društvenim mrežama" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "Unesi URL Konfiguracije OpenID-a" @@ -19284,11 +19385,12 @@ msgstr "Unesi novu lozinku." msgid "Please enter your old password." msgstr "Unesi staru lozinku." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "Ppronađi priloženo {0}: {1}" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "Prijavi se da biste objavili komentar." @@ -19296,11 +19398,11 @@ msgstr "Prijavi se da biste objavili komentar." msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "Provjeri da su Referentni Dokumenti Konverzacije kružno povezani." -#: frappe/model/document.py:988 +#: frappe/model/document.py:992 msgid "Please refresh to get the latest document." msgstr "Osvježi da dobijete najnoviji dokument." -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:575 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "Ukloni mapiranje pisača u Postavkama Pisača i pokušaj ponovo." @@ -19316,7 +19418,7 @@ msgstr "Spremi dokument prije dodjele" msgid "Please save the document before removing assignment" msgstr "Spremi dokument prije uklanjanja dodjele" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "Prvo spremi izvještaj" @@ -19324,7 +19426,7 @@ msgstr "Prvo spremi izvještaj" msgid "Please save to edit the template." msgstr "Spremi da uredite šablon." -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "Odaberi DocType" @@ -19332,19 +19434,19 @@ msgstr "Odaberi DocType" msgid "Please select Entity Type first" msgstr "Odaberi Tip Entiteta" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "Odaberi Minimalnu Vrijednost Lozinke" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "Odaberi X i Y polja" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "Odaberi pozivni broj zemlje za polje {1}." -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "Odaberi datoteku." @@ -19352,7 +19454,7 @@ msgstr "Odaberi datoteku." msgid "Please select a file or url" msgstr "Odaberi datoteku ili url" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" msgstr "Odaberi važeću csv datoteku sa podacima" @@ -19364,7 +19466,7 @@ msgstr "Odaberi važeći filter datuma" msgid "Please select applicable Doctypes" msgstr "Odaberi primjenjive Dokumente" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Odaberi najmanje 1 kolonu iz {0} za sortiranje/grupiranje" @@ -19390,11 +19492,11 @@ msgstr "Odaberi {0}" msgid "Please set Email Address" msgstr "Postavi adresu e-pošte" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:589 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "Podesite mapiranje pisača za ovaj format ispisivanja u postavkama pisača" -#: frappe/public/js/frappe/views/reports/query_report.js:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "Postavi filtere" @@ -19402,7 +19504,7 @@ msgstr "Postavi filtere" msgid "Please set filters value in Report Filter table." msgstr "Postavi vrijednost filtera u tabeli Filter Izvještaja." -#: frappe/model/naming.py:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "Molimo postavite naziv dokumenta" @@ -19414,7 +19516,7 @@ msgstr "Postavite sljedeće dokumente na ovoj Nadzornoj Tabli kao standardne." msgid "Please set the series to be used." msgstr "Postavi seriju imenovanja koja će se koristiti." -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "Podesite SMS prije nego što ga postavite kao metodu provjere autentičnosti, putem SMS Postavki" @@ -19438,23 +19540,23 @@ msgstr "Navedi" msgid "Please specify a valid parent DocType for {0}" msgstr "Navedi važeći nadređeni DocType za {0}" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "Navedi najmanje 10 minuta zbog ritma okidača raspoređivača" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "Molimo navedite pomak minuta" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "Navedi koje polje datuma mora biti označeno" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "Navedi koje polje datuma i vremena mora biti označeno" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "Navedi koje polje vrijednosti mora biti označeno" @@ -19475,7 +19577,7 @@ msgstr "Koristi važeći LDAP filter za pretraživanje" msgid "Please use following links to download file backup." msgstr "Za preuzimanje sigurnosne kopije datoteka koristite sljedeće poveznice." -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "Za više informacija posjeti https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key." @@ -19529,7 +19631,7 @@ msgstr "Stavka Menija Portala" msgid "Portal Settings" msgstr "Postavke Portala" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "Portret" @@ -19557,6 +19659,7 @@ msgstr "Pošte" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "Broj Pošte" @@ -19565,15 +19668,7 @@ msgstr "Broj Pošte" msgid "Posting Timestamp" msgstr "Vremenska Oznaka" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "Objave od {0}" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "Objave zavedene pod {0}" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "Potencijalno opasan sadržaj u nizu literala: {0}" @@ -19588,7 +19683,11 @@ msgstr "Potencijalno opasan sadržaj u nizu literala: {0}" msgid "Precision" msgstr "Preciznost" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "Preciznost ({0}) za {1} ne može biti dulja od njegove duljine ({2})." + +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "Preciznost bi trebala biti između 1 i 6" @@ -19636,7 +19735,7 @@ msgstr "Analitika Pripremljenog Izvješća" msgid "Prepared Report User" msgstr "Korisnik Pripremljenog Izvještaja" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "Generisanje Pripremljenog Izvještaja nije uspjelo" @@ -19644,7 +19743,7 @@ msgstr "Generisanje Pripremljenog Izvještaja nije uspjelo" msgid "Preparing Report" msgstr "Priprema Izvještaja" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "Priloži šablon poruci e-pošte" @@ -19665,7 +19764,7 @@ msgstr "Pritisni Enter da spremite" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19679,13 +19778,6 @@ msgstr "Pregled" msgid "Preview HTML" msgstr "Pregled HTML" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "Pregled Slike" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19714,7 +19806,7 @@ msgid "Preview:" msgstr "Pregled:" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19726,12 +19818,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "Prethodna" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "Prethodni Hash" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "Prethodno Podnošenje" @@ -19777,19 +19864,19 @@ msgstr "Primarni ključ tipa dokumenta {0} ne može se promijeniti jer postoje p #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/success_action/success_action.js:58 #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/printing/page/print/print.js:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "Ispiši" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Ispiši" @@ -19807,8 +19894,8 @@ msgstr "Ispiši Dokumente" #: frappe/core/workspace/build/build.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/page/print/print.js:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19859,7 +19946,7 @@ msgstr "Pomoć Ispis Formata" msgid "Print Format Type" msgstr "Tip Ispis Formata" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "Format Ispisa nije pronađen" @@ -19898,7 +19985,7 @@ msgstr "Sakrij ispis ako nema vrijednost" msgid "Print Language" msgstr "Jezik Ispisa" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "Ispis Poslan na pisač!" @@ -19915,8 +20002,8 @@ msgstr "Ispisni Server" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "Postavke Ispisa" @@ -19964,11 +20051,11 @@ msgstr "Ispiši Dokument" msgid "Print with letterhead" msgstr "Ispiši sa Zaglavljem" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "Pisač" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "Mapiranje Pisača" @@ -19978,11 +20065,11 @@ msgstr "Mapiranje Pisača" msgid "Printer Name" msgstr "Naziv Pisača" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "Postavke Pisača" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "Mapiranje pisača nije postavljeno." @@ -20040,7 +20127,7 @@ msgstr "Savjet: Dodaj referencu: {{ reference_doctype }} {{ reference_name msgid "Proceed" msgstr "Nastavi" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "Svejedno Nastavi" @@ -20061,18 +20148,28 @@ msgstr "Prof" msgid "Profile" msgstr "Profil" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "Slika Profila" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Profil je uspješno ažuriran." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "Napredak" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "Projekat" #. Label of the property (Data) field in DocType 'Property Setter' -#: frappe/core/doctype/version/version_view.html:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: frappe/core/doctype/version/version_view.html:13 +#: frappe/core/doctype/version/version_view.html:38 +#: frappe/core/doctype/version/version_view.html:75 #: frappe/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "Svojstvo" @@ -20109,7 +20206,7 @@ msgstr "Tip Svojstva" msgid "Protect Attached Files" msgstr "Zaštiti Priložene Datoteke" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "Zaštićena Datoteka" @@ -20158,24 +20255,18 @@ msgstr "Sigurnosna Kopija Javnih Datoteka:" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "Objavi" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -20185,15 +20276,6 @@ msgstr "Objavi" msgid "Published" msgstr "Objavljeno" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "Objavljeno" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "Objavljeno" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json @@ -20283,7 +20365,9 @@ msgid "Put on Hold" msgstr "Stavi na Čekanje" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "Python" @@ -20295,9 +20379,9 @@ msgstr "QR Kod" msgid "QR Code for Login Verification" msgstr "QR Kod za Provjeru Prijave" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " -msgstr "QZ Tray neuspješan: " +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" +msgstr "QZ Tray neuspješan:" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' @@ -20346,7 +20430,7 @@ msgstr "Izvještaj Upita" msgid "Query analysis complete. Check suggested indexes." msgstr "Analiza Upita završena. Provjeri predložene indekse." -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "Upit mora biti tipa SELECT ili samo za čitanje WITH." @@ -20446,7 +20530,7 @@ msgstr "Filter Brze Liste" msgid "Quick Lists" msgstr "Brze Liste" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "Ponuda mora biti između 0 i 3" @@ -20483,12 +20567,6 @@ msgstr "Raspon" msgid "Rate Limiting" msgstr "Ograniči" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "Ograniči" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20508,7 +20586,7 @@ msgstr "Ocjena" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "Direktne Naredbe" @@ -20525,7 +20603,7 @@ msgstr "Neobrađena e-pošta" msgid "Raw Printing" msgstr "Direktno Ispisivanje" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "Postavka Direktnog Ispisivanja" @@ -20542,8 +20620,8 @@ msgid "Re:" msgstr "Od:" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "Od: {0}" @@ -20599,11 +20677,6 @@ msgstr "Samo za Čitanje zavisi o (JS)" msgid "Read Only Mode" msgstr "Samo za čitanje Način" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "Vrijeme Čitanja" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20619,7 +20692,7 @@ msgstr "Čitanje Primatelja Omogućeno" msgid "Read mode" msgstr "Način Čitanja" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "Pročitaj dokumentaciju da biste saznali više" @@ -20639,11 +20712,11 @@ msgstr "Realno Vrijeme (SocketIO)" msgid "Reason" msgstr "Razlog" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "Obnovi" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "Obnovi Stablo" @@ -20681,7 +20754,7 @@ msgstr "Parametar prijemnika" msgid "Recent years are easy to guess." msgstr "Lako je pogoditi posljednje godine." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "Skorašnji" @@ -20692,6 +20765,14 @@ msgstr "Skorašnji" msgid "Recipient" msgstr "Primatelj" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "Račun Primaoca" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20724,7 +20805,7 @@ msgstr "Predloženi Indeks Snimača" msgid "Records for following doctypes will be filtered" msgstr "Zapisi za sljedeće tipove dokumenata bit će filtrirani" -#: frappe/core/doctype/doctype/doctype.py:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "Rekurzivno Preuzimanje Iz" @@ -20741,6 +20822,11 @@ msgstr "Crvena" msgid "Redirect HTTP Status" msgstr "Preusmjeri HTTP Status" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "Preusmjeri na" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20835,6 +20921,11 @@ msgstr "Referentni Datum" msgid "Reference Datetime" msgstr "Referentni Datum i Vrijeme" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "Referentni Dokument" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20862,7 +20953,6 @@ msgstr "Referentni naziv dokumenta" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20903,9 +20993,9 @@ msgstr "Referentni Dokument Naziv" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20923,9 +21013,9 @@ msgstr "Referentni Dokument Naziv" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20955,7 +21045,6 @@ msgstr "Referentni Tip Dokumenta" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -21003,15 +21092,15 @@ msgstr "Referenca: {0} {1}" msgid "Referrer" msgstr "Preporučitelj" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Osvježi" @@ -21025,6 +21114,10 @@ msgstr "Osvježi Sve" msgid "Refresh Google Sheet" msgstr "Osvježite Google Sheet" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "Osvježi Pregled Ispisa" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -21036,18 +21129,18 @@ msgstr "Osvježite Google Sheet" msgid "Refresh Token" msgstr "Osvježi Token" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "Osvježava se" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "Osvježavanje u toku..." -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "Registrovan, ali onemogućen" @@ -21224,7 +21317,7 @@ msgstr "Preimenuj naziv polja" msgid "Rename {0}" msgstr "Preimenuj {0}" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "Preimenovane datoteke i zamijenjen kod u kontrolerima, provjerite!" @@ -21355,9 +21448,9 @@ msgstr "Odgovori Svima" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "Izvještaj" @@ -21427,11 +21520,11 @@ msgstr "Upravitelj izvještaja" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json -#: frappe/public/js/frappe/views/reports/query_report.js:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "Naziv Izvještaja" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "Naziv Izvještaja, Polje Izvještaja i Funkcija su obevezni za kreiranje numeričke kartice" @@ -21465,21 +21558,21 @@ msgstr "Pregled iIvještaja" msgid "Report bug" msgstr "Prijavi Grešku" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 msgid "Report cannot be set for Single types" msgstr "Izvještaj se ne može postaviti za Singl tipove" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 -#: frappe/desk/doctype/number_card/number_card.js:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "Izvještaj nema podataka, promijenite filtere ili promijenite naziv izvještaja" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 msgid "Report has no numeric fields, please change the Report Name" msgstr "Izvještaj nema numerička polja, promijeni Naziv Izvještaja" -#: frappe/public/js/frappe/views/reports/query_report.js:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "Izvještaj je pokrenut, klikni da vidite status" @@ -21491,24 +21584,24 @@ msgstr "Granica Izvještaja Dostignuta" msgid "Report timed out." msgstr "Izvještaj je istekao." -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "Izvještaj je uspješno ažuriran" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 msgid "Report was not saved (there were errors)" msgstr "Izvještaj nije spremljen (bilo je grešaka)" -#: frappe/public/js/frappe/views/reports/query_report.js:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "Izvještaj sa više od 10 kolona izgleda bolje u pejzažnom načinu rada." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "Izvještaj {0}" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "Izvještaj {0} izbrisan" @@ -21516,7 +21609,7 @@ msgstr "Izvještaj {0} izbrisan" msgid "Report {0} is disabled" msgstr "Izvještaj {0} je onemogućen" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "Izvještaj {0} spremljen" @@ -21527,7 +21620,7 @@ msgstr "Izvještaj:" #. Label of the prepared_report_section (Section Break) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "Izvještaji" @@ -21535,7 +21628,7 @@ msgstr "Izvještaji" msgid "Reports & Masters" msgstr "Izvještaji & Masters" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "Izvještaji su već u redu čekanja" @@ -21554,7 +21647,10 @@ msgid "Request Body" msgstr "Zahtjev od" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "Zatraži Podatke" @@ -21606,6 +21702,11 @@ msgstr "Zahtjev Istekao" msgid "Request URL" msgstr "URL Zahtjeva" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "Zahtjev za Brisanje Računa" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21657,11 +21758,11 @@ msgstr "Poništi Grafikon" msgid "Reset Dashboard Customizations" msgstr "Poništi Prilagođavanja Nadzorne Table" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "Poništi Polja" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "Poništi LDAP Lozinku" @@ -21669,11 +21770,11 @@ msgstr "Poništi LDAP Lozinku" msgid "Reset Layout" msgstr "Poništi Izgled" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "Poništi OTP Tajnu" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21708,7 +21809,7 @@ msgstr "Vrati na Standard" msgid "Reset sorting" msgstr "Poništi Sortiranje" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "Vrati na Standard" @@ -21746,6 +21847,7 @@ msgid "Resource TOS URI" msgstr "URI Uvjeta Pružanja Usluge Resursa" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21755,11 +21857,6 @@ msgstr "URI Uvjeta Pružanja Usluge Resursa" msgid "Response" msgstr "Odgovor" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "Odgovor " - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21818,7 +21915,7 @@ msgstr "Ograniči na Domenu" 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 "Ograniči korisnika samo sa ove IP adrese. Više IP adresa može se dodati odvajanjem zarezima. Također se prihvaćaju djelomične IP adrese poput (111.111.111)" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "Ograničenja" @@ -21852,7 +21949,7 @@ msgstr "Vratite se na ekran za provjeru i unesite kod koji prikazuje vaša aplik msgid "Reverse Icon Color" msgstr "Obrnute Boje Ikone" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "Vraćanje dužine na {0} za '{1}' u '{2}'. Postavljanje dužine kao {3} će uzrokovati skraćivanje podataka." @@ -21870,9 +21967,7 @@ msgstr "Opozovi" msgid "Revoked" msgstr "Opozvano" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21913,6 +22008,7 @@ msgstr "Robots.txt" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21926,6 +22022,7 @@ msgstr "Robots.txt" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21964,7 +22061,7 @@ msgstr "Dozvola Uloge za Stranicu i Izvještaj" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "Dozvole Uloge" @@ -21974,7 +22071,7 @@ msgstr "Dozvole Uloge" msgid "Role Permissions Manager" msgstr "Upravitelj Dozvola Uloge" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Upravitelj Dozvola Uloge" @@ -22017,6 +22114,7 @@ msgstr "Uloga je postavljena prema tipu korisnika {0}" #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -22026,6 +22124,7 @@ msgstr "Uloga je postavljena prema tipu korisnika {0}" #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -22062,7 +22161,7 @@ msgstr "Uloge Html" msgid "Roles can be set for users from their User page." msgstr "Uloge se mogu postaviti za korisnike sa njihove korisničke stranice." -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "Root {0} se ne može izbrisati" @@ -22082,8 +22181,6 @@ msgstr "Metoda Zaokruživanja" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -22095,8 +22192,6 @@ msgstr "Metoda Zaokruživanja" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -22121,24 +22216,24 @@ msgstr "Preusmjeravanja Rute" msgid "Route: Example \"/app\"" msgstr "Ruta: Primjer \"/app\"" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "Red" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "Red #" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "Red # {0}: korisnik koji nije administrator ne može postaviti ulogu {1} na prilagođeni tip dokumenta" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "Red #{0}:" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "Red #{}: Naziv polja je obavezan" @@ -22147,11 +22242,6 @@ msgstr "Red #{}: Naziv polja je obavezan" msgid "Row Format" msgstr "Format Reda" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "Indeks Reda" - #. Label of the row_indexes (Code) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Row Indexes" @@ -22166,7 +22256,7 @@ msgstr "Naziv Reda" msgid "Row Number" msgstr "Broj Reda" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "Vrijednosti Reda Promijenjene" @@ -22174,30 +22264,33 @@ msgstr "Vrijednosti Reda Promijenjene" msgid "Row {0}" msgstr "Red {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "Red {0}: Nije dozvoljeno onemogućiti Obavezno za standardna polja" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "Red {0}: Nije dozvoljeno omogućiti Dozvoli pri podnošenju za standardna polja" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Added" msgstr "Dodani Redovi" #. Label of the rows_removed_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "Ukonjeni Redovi" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "Prag redaka za Mreže Pretraživanje" @@ -22288,7 +22381,7 @@ msgstr "SMS Parametar" msgid "SMS Settings" msgstr "SMS Postavke" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "SMS je uspješno poslan" @@ -22366,7 +22459,7 @@ msgstr "Salesforce" msgid "Salutation" msgstr "Titula" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "Isto polje se unosi više puta" @@ -22394,20 +22487,20 @@ msgstr "Subota" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22416,16 +22509,12 @@ msgstr "Subota" msgid "Save" msgstr "Spremi" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "Spremi API Tajnu: {0}" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "Svejedno Spremi" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "Spremi Kao" @@ -22433,11 +22522,11 @@ msgstr "Spremi Kao" msgid "Save Customizations" msgstr "Spremi Prilagođavanja" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "Spremi Izvještaj" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "Spremi Filtere" @@ -22462,7 +22551,7 @@ msgstr "Spremljeno" msgid "Saved Filters" msgstr "Spremjeni Filteri" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22541,7 +22630,7 @@ msgstr "Tip Zakazanog Posla" msgid "Scheduled Jobs Logs" msgstr "Zapisi Zakazanih Poslova" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "Zakazano izvršenje za skriptu {0} je ažurirano" @@ -22564,7 +22653,7 @@ msgstr "Raspoređivač" msgid "Scheduler Event" msgstr "Događaj Raspoređivača" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "Raspoređivač Neaktivan" @@ -22577,7 +22666,7 @@ msgstr "Status Raspoređivača" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "Raspoređivač se ne može ponovno omogućiti kada je aktivan način rada za održavanje." -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "Raspoređivač je neaktivan. Nije moguće uvesti podatke." @@ -22709,7 +22798,7 @@ msgstr "Rezultati Pretrage" msgid "Search by filename or extension" msgstr "Pretraga po imenu datoteke ili ekstenziji" -#: frappe/core/doctype/doctype/doctype.py:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "Polje za pretragu {0} nije važeće" @@ -22809,7 +22898,7 @@ msgstr "Sigurnosne Postavke" msgid "See all Activity" msgstr "Pogledaj Sve Aktivnosti" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "Pogledaj sve prethodne izvještaje." @@ -22818,7 +22907,7 @@ msgstr "Pogledaj sve prethodne izvještaje." msgid "See on Website" msgstr "Vidi na web stranici" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "Pogledaj prethodne odgovore" @@ -22865,7 +22954,7 @@ msgstr "Viđeno prema Tabeli" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22873,28 +22962,28 @@ msgstr "Odaberi" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "Odaberi sve" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "Odaberi Priloge" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "Odaberi Podređenu Tabelu" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 msgid "Select Column" msgstr "Odaberi Kolonu" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "Odaberi Kolone" @@ -22953,12 +23042,15 @@ msgstr "Odaberi Polje" msgid "Select Field..." msgstr "Odaberi Polje..." -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "Odaberi Polja" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "Odaberite polja (do {0})" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "Odaberite Polja za Umetanje" @@ -22971,7 +23063,7 @@ msgstr "Odaberi Polja za Ažuriranje" msgid "Select Filters" msgstr "Odaberi Filtere" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "Odaberi Google Kalendar s kojim događaj treba sinhronizirati." @@ -23004,8 +23096,8 @@ msgstr "Odaberi Obavezno" msgid "Select Module" msgstr "Odaberi Modul" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "Odaberi Mrežni Pisač" @@ -23070,14 +23162,14 @@ msgid "Select a field to edit its properties." msgstr "Odaberi polje da biste uredili njegova svojstva." #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "Odaberi Grupu." +msgid "Select a group {0} first." +msgstr "Odaberi grupu {0}." -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" msgstr "Odaberi važeće Polje Pošiljatelja za kreiranje dokumenata iz e-pošte" -#: frappe/core/doctype/doctype/doctype.py:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 msgid "Select a valid Subject field for creating documents from Email" msgstr "Odaberi važeće Polje Predmeta za kreiranje dokumenata iz e-pošte" @@ -23107,13 +23199,13 @@ msgstr "Odaberi najmanje jedan zapis za ispis" msgid "Select atleast 2 actions" msgstr "Odaberi najmanje dvije radnje" -#: frappe/public/js/frappe/list/list_view.js:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Odaberi Artikal Liste" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Odaberi artikle više listi" @@ -23147,7 +23239,7 @@ msgstr "Odaberi dvije verzije da vidite razliku." msgid "Select {0}" msgstr "Odaberi {0}" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "Samoodobrenje nije dozvoljeno" @@ -23331,7 +23423,7 @@ msgstr "E-pošta Pošiljatelja" msgid "Sender Email Field" msgstr "Polje e-pošte Pošiljatelja" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "Polje Pošiljatelja treba da ima opciju E-pošta" @@ -23425,7 +23517,7 @@ msgstr "Serija Imenovanja Ažurirana za {}" msgid "Series counter for {} updated to {} successfully" msgstr "Brojač Serija Imenovanja za {} uspješno je ažuriran na {}" -#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "Serija Imenovanja {0} se već koristi u {1}" @@ -23435,7 +23527,7 @@ msgstr "Serija Imenovanja {0} se već koristi u {1}" msgid "Server Action" msgstr "Radnja Servera" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Greška Servera" @@ -23454,7 +23546,7 @@ msgstr "IP Servera" msgid "Server Script" msgstr "Server Skripta" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "Server Skripte su onemogućene. Omogućite server skripte iz bench konfiguracije." @@ -23501,7 +23593,7 @@ msgstr "Standard Sesije" msgid "Session Defaults Saved" msgstr "Standard Postavke Sesije Spremljene" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "Sesija Istekla" @@ -23510,14 +23602,14 @@ msgstr "Sesija Istekla" msgid "Session Expiry (idle timeout)" msgstr "Istek Sesije (vremensko ograničenje mirovanja)" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "Istek Sesije mora biti u formatu {0}" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "Postavi" @@ -23543,12 +23635,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\" msgstr "Postavi zadane opcije za sve grafikone na ovoj Nadzornoj Tabli (npr. \"colors\": [\"#d1d8dd\", \"#ff5858\"])" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "Postavi Dinamičke Filtere" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23559,7 +23651,7 @@ msgstr "Postavi Filtere" msgid "Set Filters for {0}" msgstr "Postavi filtere za {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "Postavi Nivo" @@ -23613,7 +23705,7 @@ msgstr "Postavi Količinu" msgid "Set Role For" msgstr "Postavi Ulogu za" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Postavi Korisničke Dozvole" @@ -23623,16 +23715,16 @@ msgstr "Postavi Korisničke Dozvole" msgid "Set Value" msgstr "Postavi Vrijednost" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "Postavi sve privatno" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "Postavi sve javno" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "Postavi kao Standard" @@ -23651,18 +23743,21 @@ msgstr "Postavio Korisnik" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "Postavi vrijednosti dinamičkog filtera u JavaScriptu za obavezna polja ovdje." -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "Postavi nestandardnu preciznost za Float ili Valuta polje" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "Postavljanje nestandardne preciznosti za polje s Decimalom, Valutom ili Postotkom" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23778,14 +23873,9 @@ msgstr "Postavke za Kontaktirajte Nas Stranicu" msgid "Settings for the About Us Page" msgstr "Postavke za O nama Stranicu" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "Postavke za kontrolu kategorija blogova i interakcija poput komentara i lajkova" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "Postavljanja" @@ -23801,8 +23891,8 @@ msgstr "Postavljanje> Korisnik" msgid "Setup > User Permissions" msgstr "Postavljanje > Korisničke Dozvole" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "Postavljanje Automatske e-pošte" @@ -23871,11 +23961,6 @@ msgstr "Dostavna Adresa" msgid "Shop" msgstr "Trgovina" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "Kratko Ime" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "Kratke mustre tastature je lako pogoditi" @@ -23895,11 +23980,6 @@ msgstr "Prečice" msgid "Show" msgstr "Prikaži" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "Prikaži \"Poziv na Akciju\" u Blogu" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23952,7 +24032,13 @@ msgstr "Prikaži Dokument" msgid "Show Error" msgstr "Prikaži Grešku" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "Prikaži upozorenje o vanjskoj poveznici" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "Prikaži Naziv Polja (klikni da kopirate u međuspremnik)" @@ -24080,7 +24166,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "Prikaži ključ za društvenu prijavu kao autorizacijski poslužitelj" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "Prikaži Oznake" @@ -24097,7 +24183,7 @@ msgstr "Prikaži Naziv" msgid "Show Title in Link Fields" msgstr "Prikaži Naziv u Poljima Veza" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "Prikaži Ukupno" @@ -24137,10 +24223,6 @@ msgstr "Prikaži sve Verzije" msgid "Show all activity" msgstr "Prikaži sve Aktivnosti" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "Prikaži sve Blogove" - #. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" @@ -24189,8 +24271,8 @@ msgstr "Prikaži vezu do dokumenta" msgid "Show list" msgstr "Prikaži listu" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "Prikaži više detalja" @@ -24219,7 +24301,7 @@ msgstr "Prikaži naziv u prozoru pretraživača kao \"Prefiks - naziv\"" msgid "Show {0} List" msgstr "Prikaži {0} Listu" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "Prikazuju se samo numerička polja iz Izvještaja" @@ -24254,7 +24336,7 @@ msgstr "Bočna Traka i Komentari" msgid "Sign Up and Confirmation" msgstr "Prijava i Potvrda" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "Prijava je onemogućena" @@ -24291,36 +24373,36 @@ msgstr "Prijava Onemogućena" msgid "Signups have been disabled for this website." msgstr "Prijave su onemogućene za ovu web stranicu." -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "Jednostavan Python izraz, primjer: status u (\"Zatvoreno\", \"Otkazano\")" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" -msgstr "Jednostavan Python izraz, primjer: status u (\"Nevažeći\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "Jednostavan Python Izraz, Primjer: status == \"Invalid\"" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" -msgstr "Jednostavan Python izraz, primjer: status == 'Otvoren' i tip == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "Jednostavan Python Izraz, Primjer: status == 'Open' i issue_type == 'Bug'" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" +msgstr "Jednostavan Python Izraz, Primjer: status u (\"Closed\", \"Cancelled\")" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "Simultane Sesije" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "Pojedinačni DocTypes se ne mogu prilagoditi." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Pojedinačni tipovi imaju samo jedan zapis bez pridruženih tablica. Vrijednosti se pohranjuju u tabSingles" @@ -24328,7 +24410,7 @@ msgstr "Pojedinačni tipovi imaju samo jedan zapis bez pridruženih tablica. Vri msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "Stranica radi u načinu samo za čitanje radi održavanja ili ažuriranja stranice, ova radnja se trenutno ne može izvršiti. Molimo pokušajte ponovo kasnije." -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "Veličina" @@ -24547,11 +24629,11 @@ msgstr "Nešto je pošlo po zlu tokom generisanja tokena. Klikni na {0} da gener msgid "Something went wrong." msgstr "Nešto je pošlo po zlu." -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 msgid "Sorry! I could not find what you were looking for." msgstr "Izvinite! Nije pronađeno ono što tražite." -#: frappe/public/js/frappe/views/pageview.js:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "Izvinite! Nije vam dozvoljeno da vidite ovu stranicu." @@ -24582,20 +24664,23 @@ msgstr "Opcije Sortiranja" msgid "Sort Order" msgstr "Redoslijed Sortiranja" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 msgid "Sort field {0} must be a valid fieldname" msgstr "Polje sortiranja {0} mora biti važeći naziv polja" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' -#: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "Izvor" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "Izvorni Kod" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24622,6 +24707,12 @@ msgstr "Neželjena Pošta" msgid "SparkPost" msgstr "SparkPost" +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "Pokreće radnje u pozadinskom poslu" + #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "Posebni Znakovi nisu dozvoljeni" @@ -24646,8 +24737,8 @@ msgstr "Navedi domene ili porijekla kojima je dozvoljeno ugraditi ovaj obrazac. msgid "Splash Image" msgstr "Uvodna Slika" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "Red" @@ -24679,11 +24770,11 @@ msgstr "Stack Trace" msgid "Standard" msgstr "Standard" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "Standardni DocType se ne može izbrisati." -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "Standardni DocType ne može imati standard ormat za ispise, koristi Prilagodi Formu" @@ -24695,7 +24786,7 @@ msgstr "Standard nije Postavljeno" msgid "Standard Permissions" msgstr "Standard Dozvole" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "Standard Ispis Format ne može se ažurirati" @@ -24703,11 +24794,11 @@ msgstr "Standard Ispis Format ne može se ažurirati" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "Standard Ispis Stil ne može se promeniti. Kopiraj za uređivanje." -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "Standard Izvještaji ne mogu se izbrisati" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "Standard Izvještaji ne mogu se uređivati" @@ -24739,8 +24830,8 @@ msgstr "Standard tip korisnika {0} ne može se izbrisati." #: frappe/core/doctype/recorder/recorder_list.js:87 #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45 -#: frappe/printing/page/print/print.js:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "Počni" @@ -24748,7 +24839,7 @@ msgstr "Počni" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24813,6 +24904,7 @@ msgstr "Počinje" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24821,7 +24913,7 @@ msgstr "Počinje" msgid "State" msgstr "Stanje" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "Svojstva Stanja" @@ -24877,6 +24969,7 @@ msgstr "Vremenski Interval Statistike" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24901,6 +24994,7 @@ msgstr "Vremenski Interval Statistike" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24908,8 +25002,8 @@ msgstr "Vremenski Interval Statistike" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24946,7 +25040,7 @@ msgstr "Koraci za provjeru vaše prijave" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "Sticky" @@ -24976,6 +25070,10 @@ msgstr "Korištenje Pohrane po Tabelama" msgid "Store Attached PDF Document" msgstr "Pohrani priloženi PDF dokument" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +msgstr "Sačuvajte API tajnu na sigurnom mjestu. Neće biti više prikazivana." + #. 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." @@ -25054,7 +25152,7 @@ msgstr "Poddomena" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -25070,7 +25168,7 @@ msgstr "Predmet" msgid "Subject Field" msgstr "Polje Predmeta" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "Tip Polja Predmeta treba da bude Podaci, Tekst, Dugi Tekst, Mali Tekst, Uređivač Teksta" @@ -25084,6 +25182,7 @@ msgstr "Red Podnošenja" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -25092,10 +25191,11 @@ msgstr "Red Podnošenja" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "Rezerviši" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Rezerviši" @@ -25105,7 +25205,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Pošalji" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Pošalji" @@ -25129,7 +25229,7 @@ msgstr "Rezerviši Nakon Uvoza" msgid "Submit an Issue" msgstr "Prijavi Slučaj" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "Podnesi drugi odgovor" @@ -25141,7 +25241,7 @@ msgstr "Oznaka Dugmeta" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "Rezerviši pri Kreiranju" @@ -25153,7 +25253,7 @@ msgstr "Pošalji ovaj dokument da dovršite ovaj korak." msgid "Submit this document to confirm" msgstr "Pošalji ovaj dokument da potvrdite" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Pošalji {0} dokumenata?" @@ -25162,11 +25262,11 @@ msgstr "Pošalji {0} dokumenata?" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "Rezervisano" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "Rezervisani dokument ne može se pretvoriti nazad u nacrt. Prijelazni red {0}" @@ -25189,9 +25289,7 @@ msgid "Subsidiary" msgstr "Filijala" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "Podnaziv" @@ -25205,7 +25303,7 @@ msgstr "Podnaziv" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25247,20 +25345,16 @@ msgstr "Poruka Uspjeha" msgid "Success title" msgstr "Naziv Uspjeha" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "Uspjeh! Spremni ste 👍" - #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" msgstr "Broj Uspješnih Poslova" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "Uspješne Transakcije" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "Uspješno: {0} do {1}" @@ -25302,7 +25396,7 @@ msgstr "Predloži Optimizacije" msgid "Suggested Indexes" msgstr "Predloženi Indeksi" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "Predloženo Korisničko Ime: {0}" @@ -25424,7 +25518,7 @@ msgstr "Sinhronizacija u toku" msgid "Syncing {0} of {1}" msgstr "Sinhronizira se {0} od {1}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "Greška Sintakse" @@ -25547,6 +25641,7 @@ msgstr "Sistemski Zapisnici" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25629,6 +25724,7 @@ msgstr "Sistemski Zapisnici" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" msgstr "Upravitelj Sistema" @@ -25702,7 +25798,7 @@ msgstr "Tabela" msgid "Table Break" msgstr "Prijelom Tabele" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "Polje Tabele" @@ -25711,7 +25807,7 @@ msgstr "Polje Tabele" msgid "Table Fieldname" msgstr "Naziv Polja Tabele" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "Nedostaje Naziv Polja Tabele" @@ -25733,11 +25829,11 @@ msgstr "Višestruki Odabir Tabele" msgid "Table Trimmed" msgstr "Tabela Optimizirana" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "Tabela Ažurirana" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 msgid "Table {0} cannot be empty" msgstr "Tabela {0} ne može biti prazna" @@ -25779,11 +25875,18 @@ msgstr "Uslikaj" msgid "Target" msgstr "Cilj" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "Zadatak" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "Zadaci" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25845,7 +25948,7 @@ msgstr "Šablon Upozorenja" msgid "Templates" msgstr "Šabloni" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "Privremeno Onemogućeno" @@ -25919,7 +26022,7 @@ msgstr "Hvala vam što ste nam se obratili. Javit ćemo Vam se u najkraćem mogu "Vaš upit:\n\n" "{0}" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "Hvala vam što ste potrošili svoje dragocjeno vrijeme da ispunite ovaj obrazac" @@ -25943,7 +26046,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:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "CSV format razlikuje velika i mala slova" @@ -25956,15 +26059,15 @@ msgstr "ID klijenta dobijen sa Google Cloud Console pod " -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "Uvjet '{0}' je nevažeći" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "URL Datoteke koji ste unijeli nije tačan" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." msgstr "Sljedeći zakazani datum ne može biti kasniji od datuma završetka." @@ -26007,7 +26110,7 @@ msgstr "Promjene su vraćene." msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "Kolona {0} ima {1} različite formate datuma. Automatsko postavljanje {2} kao zadanog formata jer je najčešći. Molimo promijenite ostale vrijednosti u ovoj koloni u ovaj format." -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "Komentar ne može biti prazan" @@ -26015,7 +26118,7 @@ msgstr "Komentar ne može biti prazan" msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone." msgstr "Sadržaj ove e-pošte je strogo povjerljiv. Molimo vas da nikome ne prosljeđujete ovu e-poštu." -#: frappe/public/js/frappe/list/list_view.js:658 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "Prikazani broj je procijenjen. Klikni ovdje da vidite tačan broj." @@ -26045,7 +26148,7 @@ msgstr "Odabrani tip dokumenta je podređena tabela, tako da je obavezan tip nad msgid "The field {0} is mandatory" msgstr "Polje {0} je obavezno" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "Naziv polja koje ste naveli u Priloženo polju je nevažeći" @@ -26117,15 +26220,19 @@ msgstr "Broj projekta dobijen od Google Cloud Console pod " -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

Click here to download:
{0}

This link will expire in {1} hours." +msgstr "Izvješće koje ste zatražili je generirano.

Kliknite ovdje za preuzimanje:
{0}

Ova poveznica isteći će za {1} sati." + +#: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" msgstr "Veza za poništavanje lozinke je istekla" -#: frappe/core/doctype/user/user.py:995 +#: frappe/core/doctype/user/user.py:1002 msgid "The reset password link has either been used before or is invalid" msgstr "Veza za poništavanje lozinke je ili ranije korištena ili je nevažeća" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "Resurs koji tražite nije dostupan" @@ -26137,7 +26244,7 @@ msgstr "Uloga {0} bi trebala biti prilagođena uloga." msgid "The selected document {0} is not a {1}." msgstr "Odabrani dokument {0} nije {1}." -#: frappe/utils/response.py:338 +#: frappe/utils/response.py:336 msgid "The system is being updated. Please refresh again after a few moments." msgstr "Sistem se ažurira. Osvježite ponovo nakon nekoliko trenutaka." @@ -26158,7 +26265,7 @@ msgstr "Vrijednost koju ste zalijepili bila je od {0} znakova. Maksimalni dopuš msgid "The webhook will be triggered if this expression is true" msgstr "Webhook će se pokrenuti ako je ovaj izraz istinit" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "{0} je već na automatskom ponavljanju {1}" @@ -26198,16 +26305,16 @@ msgstr "Nema predstojećih događaja za vas." msgid "There are no {0} for this {1}, why don't you start one!" msgstr "Nema {0} za ovaj {1}, zašto ga ne pokrenete!" -#: frappe/public/js/frappe/views/reports/query_report.js:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "U redu čekanja već postoji {0} s istim filterima:" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "U Web Formi može postojati samo 9 polja Prijeloma Stranice" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "U obrascu može postojati samo jedan preklop" @@ -26219,15 +26326,19 @@ msgstr "Postoji greška u vašem šablonu adrese {0}" msgid "There is no data to be exported" msgstr "Nema podataka za izvoz" +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "Ne postoji zadatak pod nazivom \"{}\"" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "Trenutno nema ništa novo za pokazati." -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "Postoji neki problem sa urlom datoteke: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "Postoji {0} s istim filterima već u redu čekanja:" @@ -26239,7 +26350,7 @@ msgstr "Mora postojati barem jedno pravilo dozvole." msgid "There was an error building this page" msgstr "Došlo je do greške pri izradi ove stranice" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "Došlo je do greške prilikom spremanja filtera" @@ -26251,11 +26362,11 @@ msgstr "Bilo je grešaka" msgid "There were errors while creating the document. Please try again." msgstr "Bilo je grešaka prilikom kreiranja dokumenta. Molimo pokušajte ponovo." -#: frappe/public/js/frappe/views/communication.js:840 +#: frappe/public/js/frappe/views/communication.js:843 msgid "There were errors while sending email. Please try again." msgstr "Bilo je grešaka prilikom slanja e-pošte. Molimo pokušajte ponovo." -#: frappe/model/naming.py:494 +#: frappe/model/naming.py:502 msgid "There were some errors setting the name, please contact the administrator" msgstr "Bilo je grešaka pri postavljanju naziva, obratite se administratoru" @@ -26296,7 +26407,7 @@ msgstr "Autentifikacija Trećeih Strane" msgid "This Currency is disabled. Enable to use in transactions" msgstr "Ova valuta je onemogućena. Omogućite korištenje u transakcijama" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "Ova Oglasna Tabla će biti privatna" @@ -26304,6 +26415,10 @@ msgstr "Ova Oglasna Tabla će biti privatna" msgid "This Month" msgstr "Ovaj Mjesec" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "Ovaj PDF se ne može prenijeti jer sadrži nesiguran sadržaj." + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "Ovo Tromjesečje" @@ -26329,6 +26444,11 @@ msgstr "Ova radnja je dozvoljena samo za {}" msgid "This cannot be undone" msgstr "Ovo se ne može poništiti" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +msgstr "Prema zadanim postavkama, ova kartica je vidljiva samo administratoru i upraviteljima sustava. Postavite DocType za dijeljenje s korisnicima koji imaju pristup za čitanje." + #. 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" @@ -26343,11 +26463,11 @@ msgstr "Ovaj grafikon će biti dostupan svim korisnicima ako je ovo postavljeno" msgid "This doctype has no orphan fields to trim" msgstr "Ovaj tip dokumenta nema polja siroče za skraćivanje" -#: frappe/core/doctype/doctype/doctype.py:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "Ovaj tip dokumenta ima migracije na čekanju, pokrenite 'bench migrate' prije izmjene tipa dokumenta kako biste izbjegli gubitak promjena." -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "Ovaj dokument se trenutno ne može izbrisati jer ga mijenja drugi korisnik. Molimo pokušajte ponovo nakon nekog vremena." @@ -26393,7 +26513,7 @@ msgstr "Ovo polje će se pojaviti samo ako ovdje definirani naziv polja ima vrij "eval:doc.myfield=='Moja vrijednost'\n" "eval:doc.age>18" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "Ova je datoteka priložena zaštićenom dokumentu i ne može se izbrisati." @@ -26409,7 +26529,7 @@ msgstr "Ova datoteka je javna. Može joj se pristupiti bez autentifikacije." msgid "This form has been modified after you have loaded it" msgstr "Ova forma je izmijenjena nakon što ste je učitali" -#: frappe/public/js/frappe/form/form.js:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "Ova formu nije moguće uređivati zbog Radnog Toka." @@ -26428,7 +26548,7 @@ msgstr "Ovaj poslužitelj geolokacije još nije podržan." msgid "This goes above the slideshow." msgstr "Ovo ide iznad projekcije slajdova." -#: frappe/public/js/frappe/views/reports/query_report.js:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "Ovo je pozadinski izvještaj. Molimo postavite odgovarajuće filtere, a zatim generišite novi." @@ -26452,12 +26572,6 @@ msgstr "Ovo je virtuelni tip dokumenta i podaci se periodično brišu." msgid "This is an automatically generated reply" msgstr "Ovo je automatski generisan odgovor" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "Ovo je primjer Google SERP Pregleda." - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "Ovo je slično uobičajenoj lozinki." @@ -26476,7 +26590,7 @@ msgstr "Ova veza je već aktivirana radi verifikacije." msgid "This link is invalid or expired. Please make sure you have pasted correctly." msgstr "Ova veza nije važeća ili je istekla. Provjerite jeste li ispravno zalijepili." -#: frappe/printing/page/print/print.js:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "Ovo se može ispisati na više stranica" @@ -26484,7 +26598,7 @@ msgstr "Ovo se može ispisati na više stranica" msgid "This month" msgstr "Ovog mjeseca" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "Ovaj izvještaj sadrži {0} redova i prevelik je za prikaz u pretraživaču, umjesto toga možete {1} ovaj izvještaj." @@ -26492,7 +26606,7 @@ msgstr "Ovaj izvještaj sadrži {0} redova i prevelik je za prikaz u pretraživa msgid "This report was generated on {0}" msgstr "Ovaj izvještaj je generisan {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "Ovaj izvještaj je generisan {0}." @@ -26523,8 +26637,8 @@ msgstr "Ova se vrijednost preuzima iz {0} polja {1}" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " -msgstr "Ova vrijednost određuje maksimalan broj redaka koji se mogu prikazati u prikazu izvješća. " +msgid "This value specifies the max number of rows that can be rendered in report view." +msgstr "Ova vrijednost određuje maksimalan broj redaka koji se mogu prikazati u prikazu izvješća." #: frappe/website/doctype/web_page/web_page.js:85 msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish" @@ -26555,10 +26669,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "Ovo će poništiti ovu introdukciju i prikazati ga svim korisnicima. Jeste li sigurni?" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " -msgstr "Ovo će odmah prekinuti posao i može biti opasno, jeste li sigurni? " +msgid "This will terminate the job immediately and might be dangerous, are you sure?" +msgstr "Ovo će odmah prekinuti posao i može biti opasno, jeste li sigurni?" -#: frappe/core/doctype/user/user.py:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "Prigušeno" @@ -26634,9 +26748,11 @@ msgstr "Vremenski Prozor (Sekunde)" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26707,11 +26823,11 @@ msgstr "Veze Vremenske Linije" msgid "Timeline Name" msgstr "Naziv Vremenske Linije" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 msgid "Timeline field must be a Link or Dynamic Link" msgstr "Polje Vremenske Linije mora biti veza ili Dinamička Veza" -#: frappe/core/doctype/doctype/doctype.py:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "Polje vremenske linije mora biti važeće ime polja" @@ -26737,10 +26853,7 @@ msgid "Timespan" msgstr "Vremenski Razmak" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "Vremenska Oznaka" @@ -26760,9 +26873,6 @@ msgstr "Savjet: Isprobaj novu konzolu pomoću" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26787,9 +26897,6 @@ msgstr "Savjet: Isprobaj novu konzolu pomoću" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26812,7 +26919,7 @@ msgstr "Polje Naziva" msgid "Title Prefix" msgstr "Prefiks Naziva" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "Polje Naziva mora biti važeće ime polja" @@ -26912,7 +27019,7 @@ msgstr "Da biste izvezli ovaj korak kao JSON, povežite ga u Introdukcijskom dok msgid "To generate password click {0}" msgstr "Za generiranje lozinke kliknite {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "Da biste dobili ažurirani izvještaj, kliknite na {0}." @@ -26967,7 +27074,7 @@ msgstr "Za Uraditi" msgid "Today" msgstr "Danas" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "Prebaci grafikon" @@ -26983,11 +27090,11 @@ msgstr "Uključi Prikaz Mreže" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "Prebaci Bočnu Traku" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Prebaci Bočnu Traku" @@ -27033,7 +27140,7 @@ msgid "Tomorrow" msgstr "Sutra" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "Previše Dokumenata" @@ -27049,7 +27156,7 @@ msgstr "Previše promjena u bazi podataka u jednoj akciji." msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "Previše pozadinskih poslova u čekanju ({0}). Pokušaj ponovno nakon nekog vremena." -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "Nedavno se prijavilo previše korisnika, pa je registracija onemogućena. Pokušajte ponovo za sat vremena" @@ -27111,10 +27218,10 @@ msgstr "Vrh Desno" msgid "Topic" msgstr "Tema" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "Ukupno" @@ -27157,18 +27264,18 @@ msgstr "Ukupno Radno Vrijeme" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " -msgstr "Ukupan broj e-poruka za sinhronizaciju u početnom procesu sinhronizacije " +msgid "Total number of emails to sync in initial sync process" +msgstr "Ukupan broj e-poruka za sinhronizaciju u početnom procesu sinhronizacije" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "Ukupno:" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "Ukupno" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "Ukupni Red" @@ -27236,26 +27343,10 @@ msgstr "Prati prekretnice za bilo koji dokument" msgid "Tracking" msgstr "Praćenje" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "URL praćenja generisan i kopiran u međuspremnik" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "Hash Transakcije" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "Zapisnik Transakcija" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "Izvještaj Zapisnika Transakcija" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "Transrodno" @@ -27269,6 +27360,11 @@ msgstr "Tranzicijska Svojstva" msgid "Transition Rules" msgstr "Pravila Prelaza" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "Tranzicijski Zadaci" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" @@ -27283,7 +27379,7 @@ msgstr "Prelazi" msgid "Translatable" msgstr "Prevodivo" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "Prevedi Podatke" @@ -27294,7 +27390,7 @@ msgstr "Prevedi Podatke" msgid "Translate Link Fields" msgstr "Prevedi Polja Veza" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "Prevedi vrijednosti" @@ -27378,8 +27474,8 @@ msgstr "Pokušaj ponovo" msgid "Try a Naming Series" msgstr "Isprobaj Seriju Imenovanja" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "Isprobaj novi Dizajner Ispisa" @@ -27445,7 +27541,7 @@ msgstr "Metoda Dvofaktorske Autentifikacije" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27539,7 +27635,7 @@ msgstr "URL" msgid "URL for documentation or help" msgstr "URL za dokumentaciju ili pomoć" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "URL mora početi s http:// ili https://" @@ -27642,7 +27738,7 @@ msgstr "Nije moguće poslati poštu jer nedostaje račun e-pošte. Postavite zad msgid "Unable to update event" msgstr "Nije moguće ažurirati događaj" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "Nije moguće napisati format datoteke za {0}" @@ -27651,7 +27747,7 @@ msgstr "Nije moguće napisati format datoteke za {0}" msgid "Unassign Condition" msgstr "Poništi dodjelu uslova" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "Neuhvaćena Iznimka" @@ -27667,7 +27763,7 @@ msgstr "Poništi" msgid "Undo last action" msgstr "Poništi posljednju radnju" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "Neizbjegnuti navodnici u nizu: {0}" @@ -27716,7 +27812,7 @@ msgstr "Nepoznata Kolona: {0}" msgid "Unknown Rounding Method: {}" msgstr "Nepoznata Metoda Zaokruživanja: {}" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "Nepoznati Korisnik" @@ -27728,8 +27824,7 @@ msgstr "Nepoznato kodiranje datoteke. Pokušano koristiti: {0}" msgid "Unlock Reference Document" msgstr "Otključaj Referentni Dokument" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "Poništi Objavu" @@ -27745,7 +27840,7 @@ msgstr "Nepročitano" msgid "Unread Notification Sent" msgstr "Nepročitana Obavijest Poslana" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "Nesiguran SQL upit" @@ -27783,8 +27878,8 @@ msgstr "Parametri Otkazivanja" msgid "Unsubscribed" msgstr "Otkazano" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "Nepodržana funkcija ili nevažeći naziv polja: {0}" @@ -27804,7 +27899,7 @@ msgstr "Raspakovano {0} datoteka" msgid "Unzipping files..." msgstr "Raspakivanje datoteka..." -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "Nadolazeći Događaji za Danas" @@ -27818,7 +27913,7 @@ msgstr "Nadolazeći Događaji za Danas" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Ažuriraj" @@ -27852,6 +27947,11 @@ msgstr "Redoslijed ažuriranja" msgid "Update Password" msgstr "Ažuriraj Lozinku" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "Ažuriraj Profil" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27894,7 +27994,7 @@ msgstr "Ažuriraj {0} zapisa" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "Ažurirano" @@ -27902,7 +28002,7 @@ msgstr "Ažurirano" msgid "Updated Successfully" msgstr "Uspješno Ažurirano" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "Ažurirano na Novu Verziju 🎉" @@ -27910,7 +28010,7 @@ msgstr "Ažurirano na Novu Verziju 🎉" msgid "Updated successfully" msgstr "Uspješno Ažurirano" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "Ažuriranje" @@ -27955,8 +28055,8 @@ msgstr "Plan Ažuriranja" msgid "Upgrade your support experience with Frappe Helpdesk" msgstr "Nadogradite svoje iskustvo podrške uz Helpdesk" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27966,11 +28066,11 @@ msgstr "Učitaj" msgid "Upload Image" msgstr "Učitaj Sliku" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "Učitaj Datoteku" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "Učitaj {0} datoteke" @@ -28067,15 +28167,11 @@ msgstr "Koristi drugu e-poštu" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "Koristi ako standard postavke ne očitavaju vaše podatke ispravno" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "Korištenje funkcije {0} u polju je ograničena" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "Korištenje podupita ili funkcije je ograničena" -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "Koristi novi Konstruktor Formata Ispisa" @@ -28096,7 +28192,9 @@ msgid "Used OAuth" msgstr "Korišten OAuth" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -28105,6 +28203,7 @@ msgstr "Korišten OAuth" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -28119,11 +28218,12 @@ msgstr "Korišten OAuth" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -28132,6 +28232,7 @@ msgstr "Korišten OAuth" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -28148,17 +28249,11 @@ msgstr "Korišten OAuth" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "Korisnik" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "Korisnik " - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "Korisnik '{0}' već ima ulogu '{1}'" @@ -28188,7 +28283,7 @@ msgstr "Korisnik Nemože Kreirati" msgid "User Cannot Search" msgstr "Korisnik Nemože Pretraživati" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "Korisnik Promijenjen" @@ -28252,11 +28347,6 @@ msgstr "Korisnik" msgid "User ID Property" msgstr "Svojstvo Korisnika" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "Korisnički ID Bloggera" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28276,6 +28366,11 @@ msgstr "Polje Id-a korisnika obavezno je u tipu korisnika {0}" msgid "User Image" msgstr "Slika Korisnika" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "Korisnička Pozivnica" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "Korisnički Meni" @@ -28294,12 +28389,12 @@ msgstr "Korisnička Dozvola" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "Korisničke Dozvole" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Korisničke Dozvole" @@ -28312,7 +28407,9 @@ msgstr "Korisničke Dozvole se koriste za ograničavanje korisnika na određene msgid "User Permissions created successfully" msgstr "Korisničke Dozvole su uspješno kreirane" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "Korisnička Uloga" @@ -28378,6 +28475,10 @@ msgstr "Korisnik ne postoji." msgid "User does not have permission to create the new {0}" msgstr "Korisnik nema dozvolu za kreiranje novog {0}" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "Korisnik je onemogućen" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "Korisnik je obavezan za Dijeljenje" @@ -28408,7 +28509,7 @@ msgstr "Korisnik {0} se ne može izbrisati" msgid "User {0} cannot be disabled" msgstr "Korisnik {0} se ne može onemogućiti" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "Korisnik {0} se ne može preimenovati" @@ -28429,7 +28530,7 @@ msgstr "Korisnik {0} nema dozvolu za kreiranje Radnog Prostora." msgid "User {0} has requested for data deletion" msgstr "Korisnik {0} je zatražio brisanje podataka" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "Korisnik {0} predstavljen kao {1}" @@ -28437,7 +28538,7 @@ msgstr "Korisnik {0} predstavljen kao {1}" msgid "User {0} is disabled" msgstr "Korisnik {0} je onemogućen" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "Korisnik {0} je onemogućen. Molimo kontaktirajte svog upravitelja sistema." @@ -28458,7 +28559,7 @@ msgstr "URI informacija Korisnika" msgid "Username" msgstr "Korisničko Ime" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "Korisničko Ime {0} već postoji" @@ -28542,7 +28643,7 @@ msgstr "Validiraj Frappe Mail Postavke" msgid "Validate SSL Certificate" msgstr "Potvrdite SSL certifikat" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "Greška pri Validaciji" @@ -28565,8 +28666,8 @@ msgstr "Validnost" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28598,7 +28699,7 @@ msgstr "Vrijednost Promijenjena" msgid "Value To Be Set" msgstr "Vrijednost Koju Treba Postaviti" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "Vrijednost se ne može promijeniti za {0}" @@ -28614,11 +28715,11 @@ msgstr "Vrijednost ne može biti negativna za {0}: {1}" msgid "Value for a check field can be either 0 or 1" msgstr "Vrijednost polja za provjeru može biti 0 ili 1" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "Vrijednost za polje {0} je predugačka u {1}. Dužina bi trebala biti manja od {2} znakova" -#: frappe/model/base_document.py:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "Vrijednost za {0} ne može biti lista" @@ -28643,7 +28744,7 @@ msgstr "Vrijednost \"None\" podrazumijeva javnog klijenta. U takvom slučaju, ta msgid "Value to Validate" msgstr "Vrijednost za Provjeru" -#: frappe/model/base_document.py:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "Vrijednost je Prevelika" @@ -28660,7 +28761,7 @@ msgstr "Vrijednost {0} mora biti u važećem formatu trajanja: d h m s" msgid "Value {0} must in {1} format" msgstr "Vrijednost {0} mora biti u {1} formatu" -#: frappe/core/doctype/version/version_view.html:8 +#: frappe/core/doctype/version/version_view.html:9 msgid "Values Changed" msgstr "Vrijednosti Promijenjene" @@ -28673,7 +28774,7 @@ msgstr "Verdana" msgid "Verification" msgstr "Verifikacija" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "Verfikacijski Kod" @@ -28735,15 +28836,7 @@ msgstr "Prikaži Sve" msgid "View Audit Trail" msgstr "Prikaži Trag" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "Prikaži Blog Post" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "Prikaži Komentar" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "Prikaz Doctype Dozvola" @@ -28755,7 +28848,7 @@ msgstr "Prikaži datoteku" msgid "View Full Log" msgstr "Prikaži Cijeli Zapisnik" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "Prikaži Listu" @@ -28765,7 +28858,7 @@ msgstr "Prikaži Listu" msgid "View Log" msgstr "Prikaži Zapisnik" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Prikaži Dozvoljene Dokumente" @@ -28812,7 +28905,7 @@ msgstr "Prrikaži izvještaj u vašem pretraživaču" msgid "View this in your browser" msgstr "Prikaži ovo u svom pretraživaču" -#: frappe/public/js/frappe/web_form/web_form.js:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "Prikaži svoj odgovor" @@ -28881,6 +28974,7 @@ msgid "Warehouse" msgstr "Skladište" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Upozorenje" @@ -28889,7 +28983,7 @@ msgstr "Upozorenje" msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" msgstr "Upozorenje: GUBITAK PODATAKA NEPOSREDAN! Nastavkom će se trajno izbrisati sljedeće kolone baze podataka iz tipa dokumenta {0}:" -#: frappe/core/doctype/doctype/doctype.py:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "Upozorenje: Imenovanje nije postavljeno" @@ -28975,7 +29069,7 @@ msgstr "Web Stranica" msgid "Web Page Block" msgstr "Blok Web Stranice" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "URL Web Stranice" @@ -29078,7 +29172,7 @@ msgstr "Webhook URL" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "Web Stranica" @@ -29091,10 +29185,6 @@ msgstr "Analiza Web Stranice" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -29138,7 +29228,7 @@ msgstr "Skripta Web Stranice" msgid "Website Search Field" msgstr "Polje Pretraživanja Web Stranice" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "Polje Pretraživanja Web Stranice mora biti važeće ime polja" @@ -29355,11 +29445,6 @@ msgstr "Zamjenski Filter" msgid "Will add \"%\" before and after the query" msgstr "Dodat će \"%\" prije i poslije upita" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "Koristit će se u url-u (obično ime)." - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "Biti će vaš prijavni ID" @@ -29374,7 +29459,7 @@ msgstr "Prikazat će se samo ako su naslovi sekcija omogućeni" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "Izvršit će zakazane poslove samo jednom dnevno za neaktivne stranice. Postavi kao 0 kako biste izbjegli automatsko onemogućavanje raspoređivača." -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "Sa Zaglavljem" @@ -29452,7 +29537,7 @@ msgstr "Konstruktor Radnog Toka vam omogućava da kreirate radne tokove vizuelno msgid "Workflow Data" msgstr "Podaci Radnog Toka" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "Radni Tok Detalji" @@ -29478,11 +29563,11 @@ msgstr "Stanje Radnog Toka" msgid "Workflow State Field" msgstr "Polje stanja radnog toka" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "Stanje Radnog Toka nije postavljeno" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "Prijelaz Stanja Radnog Toka nije dozvoljen sa {0} na {1}" @@ -29490,15 +29575,30 @@ msgstr "Prijelaz Stanja Radnog Toka nije dozvoljen sa {0} na {1}" msgid "Workflow States Don't Exist" msgstr "Stanja Radnog Toka ne postoje" -#: frappe/model/workflow.py:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "Status Radnog Toka" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "Zadatak Radnog Toka" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "Prijelaz Radnog Toka" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "Zadatak Tranzicije Radnog Toka" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "Zadaci Tranzicije Radnog Toka" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29514,13 +29614,13 @@ msgstr "Radni Tok je uspješno ažuriran" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "Radni Prostor" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "Radni Prostor {0} ne postoji" @@ -29590,11 +29690,11 @@ msgstr "Radni Prostor {0} kreiran" msgid "Workspaces" msgstr "Radni Prostori" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "Želite li objaviti ovaj komentar? To znači da će postati vidljiv korisnicima web stranice/portala." -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "Želite li poništiti objavu ovog komentara? To znači da više neće biti vidljiv korisnicima web stranice/portala." @@ -29613,11 +29713,11 @@ msgstr "Završava se.." msgid "Write" msgstr "Piši" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "Pogrešno Peuzimanje iz vrijednosti" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "Polje Ose X" @@ -29636,13 +29736,13 @@ msgstr "XLSX" msgid "Y Axis" msgstr "Y Osa" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" msgstr "Polja Ose Y" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "Y Polje" @@ -29694,16 +29794,17 @@ msgstr "Žuta" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Da" @@ -29731,6 +29832,18 @@ msgstr "Vi" msgid "You Liked" msgstr "Svidjelo vam se" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "Dodali ste 1 red u {0}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "Dodali ste {0} redaka u {1}" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "Upravo ćete otvoriti vanjsku poveznicu. Za potvrdu ponovno kliknite poveznicu." + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "Povezani ste na internet." @@ -29769,20 +29882,20 @@ msgstr "Nije vam dozvoljeno uređivati izvještaj." #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "Nije vam dozvoljeno da izvezete {} doctype" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "Nije vam dozvoljeno da ispišete ovaj izveštaj" -#: frappe/public/js/frappe/views/communication.js:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "Nije vam dozvoljeno slanje e-pošte u vezi sa ovim dokumentom" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "Nije vam dozvoljeno ažurirati ovaj dokument web forme" @@ -29806,7 +29919,7 @@ msgstr "Nemate dopuštenje za pristup ovom resursu. Prijavite se za pristup" msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." msgstr "Sada pratite ovaj dokument. Svakodnevno ćete primati ažuriranja putem e-pošte. Ovo možete promijeniti u korisničkim postavkama." -#: frappe/core/doctype/installed_applications/installed_applications.py:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 msgid "You are only allowed to update order, do not remove or add apps." msgstr "Dozvoljeno vam je samo ažurirati redoslijed, nemojte uklanjati ili dodavati aplikacije." @@ -29832,13 +29945,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "Takođ možete kopirati i zalijepiti sljedeću vezu u svoj preglednik" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " -msgstr "Ovo također možete kopirati i zalijepiti " +msgid "You can also copy-paste this" +msgstr "Ovo također možete kopirati i zalijepiti" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "Također možete kopirati i zalijepiti ovo {0} u svoj pretraživač" +#: frappe/templates/emails/user_invitation_expired.html:8 +msgid "You can ask your team to resend the invitation if you'd still like to join." +msgstr "Možete zamoliti svoj tim da vam ponovno pošalje pozivnicu ako se i dalje želite pridružiti." + #: frappe/core/page/permission_manager/permission_manager_help.html:17 msgid "You can change Submitted documents by cancelling them and then, amending them." msgstr "Podnesene dokumente možete promijeniti tako što ćete ih poništiti, a zatim ih izmijeniti." @@ -29851,11 +29968,11 @@ msgstr "Pravila zadržavanja možete promijeniti u {0}." msgid "You can continue with the onboarding after exploring this page" msgstr "Možete nastaviti s introdukcijom nakon što istražite ovu stranicu" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "Možete onemogućiti ovo {0} umjesto da ga obrišete." -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "Ograničenje možete povećati u Postavkama Sistema." @@ -29875,7 +29992,7 @@ msgstr "Možete ispisati najviše {0} dokumenata odjednom" msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "Možete postaviti samo tri prilagođena tipa dokumenata u tabeli Tipovi Dokumenata." -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "Možete otpremati samo JPG, PNG, PDF, TXT, CSV ili Microsoft dokumente." @@ -29893,7 +30010,7 @@ msgstr "Možete odabrati jedan od sljedećih," msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "Ovdje možete postaviti visoku vrijednost ako će se više korisnika prijavljivati sa iste mreže." -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "Možete pokušati promijeniti filtere vašeg izvještaja." @@ -29905,11 +30022,11 @@ msgstr "Možete koristiti Prilagodi Formu za postavljanje nivoa na poljima." msgid "You can use wildcard %" msgstr "Možete koristiti zamjenski znak %" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "Ne možete postaviti 'Opcije' za polje {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "Ne možete postaviti 'Prevodivo' za polje {0}" @@ -29927,7 +30044,7 @@ msgstr "Otkazali ste ovaj dokument {1}" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "Ne možete stvoriti grafikon nadzorne table iz jednog tipa dokumenata" -#: frappe/custom/doctype/customize_form/customize_form.py:385 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "Ne možete poništiti 'Samo za Čitanje' za polje {0}" @@ -29957,7 +30074,7 @@ msgstr "Promijenuli ste {0} u {1}" msgid "You created this" msgstr "Vi ste kreirali ovo" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "Izradili ste ovaj dokument {0}" @@ -29970,15 +30087,15 @@ msgstr "Nemate dozvole za Čitanje ili Odabir za {}" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "Nemate dovoljno dozvola za pristup ovom resursu. Kontaktiraj svog odgovornog da dobijete pristup." -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "Nemate dovoljno dozvola da dovršite radnju" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "Nemate dopuštenje za pristup polju: {0}" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "Nemate dozvolu za pristup {0}: {1}." @@ -29990,11 +30107,11 @@ msgstr "Nemate dozvole za otkazivanje svih povezanih dokumenata." msgid "You don't have access to Report: {0}" msgstr "Nemate pristup Izvještaju: {0}" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "Nemate dozvolu za pristup {0} DocType." -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "Nemate dozvolu za pristup ovoj datoteci" @@ -30002,19 +30119,19 @@ msgstr "Nemate dozvolu za pristup ovoj datoteci" msgid "You don't have permission to get a report on: {0}" msgstr "Nemate dozvolu da preuzmete izvještaj o: {0}" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "Nemate dozvole za pristup ovom dokumentu" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " -msgstr "Imate novu poruku od: " +msgid "You have a new message from:" +msgstr "Imate novu poruku od:" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "Uspješno ste odjavljeni" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "Dostigli ste ograničenje veličine reda u tabeli baze podataka: {0}" @@ -30022,11 +30139,7 @@ msgstr "Dostigli ste ograničenje veličine reda u tabeli baze podataka: {0}" msgid "You have not entered a value. The field will be set to empty." msgstr "Niste unijeli vrijednost. Polje će biti prazno." -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "Dobili ste ❤️ lajk na svom blog postu" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "Morate omogućiti Dvofaktorsku Autentifikaciju iz Postavki Sistema." @@ -30046,7 +30159,7 @@ msgstr "Niste vidjeli {0}" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "Još niste dodali Grafikon Nadrzorne Table ili Numeričke Kartice." -#: frappe/public/js/frappe/list/list_view.js:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "{0} nema u sistemu" @@ -30063,11 +30176,11 @@ msgstr "Zadnji put ste uređivali ovo" msgid "You must add atleast one link." msgstr "Morate dodati barem jednu vezu." -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "Morate biti prijavljeni da biste koristili ovaj obrazac." -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "Morate se prijaviti da pošaljete ovu formu" @@ -30091,7 +30204,7 @@ msgstr "Morate biti korisnik sistema da biste pristupili ovoj stranici." msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "Morate biti u modu programera da biste uredili Standardni Web Formu" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "Morate biti prijavljeni i imati ulogu Upravitelja Sistema da biste mogli pristupiti sigurnosnim kopijama." @@ -30099,13 +30212,13 @@ msgstr "Morate biti prijavljeni i imati ulogu Upravitelja Sistema da biste mogli msgid "You need to be logged in to access this page" msgstr "Morate biti prijavljeni da biste pristupili ovoj stranici" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "Morate biti prijavljeni da biste pristupili ovom {0}." #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " -msgstr "Prvo morate kreirati ove: " +msgid "You need to create these first:" +msgstr "Prvo morate kreirati ove:" #: frappe/www/login.html:76 msgid "You need to enable JavaScript for your app to work." @@ -30139,11 +30252,19 @@ msgstr "Trebate dozvolu za pisanje na {0} {1} da biste preimenovali" msgid "You need {0} permission to fetch values from {1} {2}" msgstr "Trebate {0} dozvolu da preuzmete vrijednosti iz {1} {2}" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "Uklonili ste 1 redak iz {0}" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "Uklonili ste prilog {0}" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "Uklonili ste {0} redaka od {1}" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "Izgleda da ste spremni!" @@ -30174,10 +30295,26 @@ msgstr "Prestali ste pratiti ovaj dokument" msgid "You viewed this" msgstr "Prikazali ste ovo" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "Bit ćete preusmjereni na:" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "Pozvani ste da se pridružite {0}" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "Pozvani ste da se pridružite {0}." + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "Prijavili ste se kao drugi korisnik sa druge kartice. Osvježite ovu stranicu da nastavite koristiti sistem." +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "Youtube" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "CSV datoteka se generira i pojavit će se u odjeljku Prilozi kada bude spremna. Osim toga, dobit ćete obavijest kada datoteka bude dostupna za preuzimanje." @@ -30207,7 +30344,7 @@ msgstr "Vaše Prečice" msgid "Your account has been deleted" msgstr "Vaš Račun je izbrisan" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "Vaš račun je zaključan i nastavit će se nakon {0} sekundi" @@ -30231,10 +30368,22 @@ msgstr "Vaš zahtjev za povezivanje sa Google Kalendarom je uspješno prihvaćen msgid "Your email address" msgstr "Vaša adresa e-pošte" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "Vaše izvezeno izvješće: {0}" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "Vaša forma je uspješno ažurirana" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "Vaš poziv za pridruživanje {0} otkazao je administrator sustava." + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "Vaša pozivnica za pridruživanje {0} je istekla." + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "Vaš Id za prijavu je" @@ -30257,7 +30406,11 @@ msgstr "Ime vaše organizacije i adresa za podnožje e-pošte." msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "Vaš upit je primljen. Odgovorit ćemo vam uskoro. Ako imate dodatnih informacija, odgovorite na ovu poruku e-pošte." -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "Vaše se izvješće generira u pozadini. Primit ćete e-poruku na {0} s vezom za preuzimanje kada bude spremno." + +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "Vaša sesija je istekla, prijavite se ponovo da nastavite." @@ -30279,7 +30432,7 @@ msgstr "Nula" msgid "Zero means send records updated at anytime" msgstr "Nula znači slanje zapisa ažuriranih u bilo koje vrijeme" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" msgstr "[Radnju preduzeta od {0}]" @@ -30301,10 +30454,6 @@ msgstr "`as_iterator` radi samo sa `as_list=True` ili `as_dict=True`" msgid "`job_id` paramater is required for deduplication." msgstr "Paramater `job_id` je potreban za deduplikaciju." -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "dodao redove za {0}" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30339,7 +30488,7 @@ msgstr "po Ulozi" msgid "cProfile Output" msgstr "cProfil Izlaz" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "kalendar" @@ -30484,12 +30633,12 @@ msgstr "emacs" msgid "email" msgstr "e-pošta" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "prijemno sanduče e-pošte" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "prazno" @@ -30546,7 +30695,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "h" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "čvorište" @@ -30561,11 +30710,6 @@ msgstr "ikona" msgid "import" msgstr "uvoz" -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "u minutama" - #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "jane@example.com" @@ -30574,7 +30718,7 @@ msgstr "jane@example.com" msgid "just now" msgstr "upravo sada" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "oznaka" @@ -30603,7 +30747,7 @@ msgstr "lista" msgid "logged in" msgstr "prijavljen" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "prijava_potrebna" @@ -30624,11 +30768,6 @@ msgstr "m" msgid "merged {0} into {1}" msgstr "spojeno {0} u {1}" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "min čitanja" - #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json @@ -30652,7 +30791,7 @@ msgstr "modul" msgid "module name..." msgstr "naziv modula..." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "novi" @@ -30781,10 +30920,6 @@ msgstr "čitaj" msgid "red" msgstr "crveno" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "uklonjeni redovi za {0}" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "preimenovan iz {0} u {1}" @@ -30840,19 +30975,19 @@ msgstr "dijeli" msgid "short" msgstr "kratko" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "od prošlog mjeseca" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "od prošlog tjedna" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "od prosle godine" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "od jučer" @@ -30905,6 +31040,10 @@ msgstr "ova forma" msgid "this shouldn't break" msgstr "ovo ne bi trebalo da se pokvari" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "u vaš preglednik" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30932,7 +31071,7 @@ msgstr "verzija_tabele" msgid "via Assignment Rule" msgstr "preko Pravila Dodjele" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "putem Automatskog Ponavljanja" @@ -30946,7 +31085,7 @@ msgstr "putem Uvoza Podataka" msgid "via Google Meet" msgstr "putem Google Meet" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "putem Obavijesti" @@ -30979,10 +31118,15 @@ msgstr "kada se klikne na element, on će fokusirati skočni prozor ako postoji. msgid "wkhtmltopdf" msgstr "wkhtmltopdf" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "wkhtmltopdf 0.12.x (sa zakrpljenim qt-om)." +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "prijelaz_tijeka_rada" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json @@ -31010,11 +31154,11 @@ msgstr "gggg-mm-dd" msgid "{0}" msgstr "{0}" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "{0} ${skip_list ? \"\" : tip}" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "{0} ${type}" @@ -31040,19 +31184,19 @@ msgstr "{0} = {1}" msgid "{0} Calendar" msgstr "{0} Kalendar" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "{0} Grafikon" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "{0} Nadzorna Tabla" -#: frappe/public/js/frappe/form/grid_row.js:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "{0} Polja" @@ -31076,6 +31220,10 @@ msgstr "{0} Lajkade" msgid "{0} List" msgstr "{0} Lista" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "{0} Postavke Prikaza Liste" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "{0} M" @@ -31088,7 +31236,7 @@ msgstr "{0} Karta" msgid "{0} Name" msgstr "{0} Naziv" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "{0} Nije dozvoljeno mijenjati {1} nakon podnošenja iz {2} u {3}" @@ -31098,11 +31246,10 @@ msgstr "{0} Nije dozvoljeno mijenjati {1} nakon podnošenja iz {2} u {3}" msgid "{0} Report" msgstr "{0} Izvještaj" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "{0} Izvještaji" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "{0} Postavke" @@ -31127,7 +31274,15 @@ msgstr "{0} Radni Prostor" msgid "{0} added" msgstr "{0} dodano" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "{0} dodano je 1 redak u {1}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "{0} dodano je {1} redaka u {2}" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0} već postoji. Odaberite drugo ime" @@ -31139,7 +31294,7 @@ msgstr "{0} je već odjavljen" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0} je već otkazan za {1} {2}" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "{0} i {1}" @@ -31147,7 +31302,7 @@ msgstr "{0} i {1}" msgid "{0} are currently {1}" msgstr "{0} su trenutno {1}" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "{0} su obavezni" @@ -31164,7 +31319,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0} priloženo {1}" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "{0} ne može biti više od {1}" @@ -31206,11 +31361,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "{0} promijenio(la) {1} u {2}" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "{0} komentara" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." msgstr "{0} sadrži nevažeći izraz Preuzmi Iz, Preuzmi Iz ne može biti samoreferencijalan." @@ -31223,7 +31374,7 @@ msgstr "{0} je uspješno kreiran" msgid "{0} created this" msgstr "{0} je kreirao(la) ovo" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "{0} je stvorio/la ovaj dokument {1}" @@ -31245,7 +31396,7 @@ msgstr "{0} ne postoji u redu {1}" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "Polje {0} ne može se postaviti kao jedinstveno u {1}, budući da postoje nejedinstvene vrijednosti" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "{0} polja ne mogu sadržavati povratne crte (`): {1}" @@ -31277,7 +31428,7 @@ msgstr "{0} je napustio(la) konverzaciju u {1} {2}" msgid "{0} hours ago" msgstr "{0} sati prije" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "{0} ako ne budete preusmjereni unutar {1} sekundi" @@ -31286,23 +31437,23 @@ msgstr "{0} ako ne budete preusmjereni unutar {1} sekundi" msgid "{0} in row {1} cannot have both URL and child items" msgstr "{0} u redu {1} ne može imati i URL i podređene artikle" -#: frappe/core/doctype/doctype/doctype.py:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "{0} je obavezno polje" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "{0} nije važeća zip datoteka" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "{0} je nevažeće polje podataka." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "{0} je nevažeća adresa e-pošte u 'Primatelji'" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "{0} je između {1} i {2}" @@ -31311,27 +31462,27 @@ msgstr "{0} je između {1} i {2}" msgid "{0} is currently {1}" msgstr "{0} je trenutno {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "{0} je jednako {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "{0} je veće ili jednako {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "{0} je veće od {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "{0} je manje ili jednako {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "{0} je manje od {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "{0} je kao {1}" @@ -31339,7 +31490,7 @@ msgstr "{0} je kao {1}" msgid "{0} is mandatory" msgstr "{0} je obavezan" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "{0} nije podređena tablica od {1}" @@ -31359,12 +31510,12 @@ msgstr "{0} nije važeći Kalendar. Preusmjeravanje na Standard Kalendar." msgid "{0} is not a valid Cron expression." msgstr "{0} nije važeći Cron izraz." -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} nije važeća DocType za dinamičku vezu" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "{0} nije važeća adresa e-pošte" @@ -31372,15 +31523,15 @@ msgstr "{0} nije važeća adresa e-pošte" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "{0} nije važeći ISO 3166 ALPHA-2 kod." -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "{0} nije važeće Ime" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "{0} nije ispravan broj telefona" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "{0} nije važeće Stanje Radnog Toka. Ažuriraj Radni Tok i pokušaj ponovo." @@ -31396,55 +31547,59 @@ msgstr "{0} nije važeće nadređeno polje za {1}" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} nije važeći format izvještaja. Format izvještaja bi trebao biti jedan od sljedećih {1}" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "{0} nije zip datoteka" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "{0} nije dopuštena uloga za {1}" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "{0} nije jednako {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "{0} nije kao {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "{0} nije jedno od {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "{0} nije postavljeno" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "{0} je sada standardi format ispisivanja za {1} tip dokumenta" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" msgstr "{0} je jedan od {1}" #: frappe/email/doctype/email_account/email_account.py:304 -#: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/printing/doctype/print_format/print_format.py:104 #: frappe/utils/csvutils.py:156 msgid "{0} is required" msgstr "{0} je obavezan" -#: frappe/public/js/frappe/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "{0} je postavljeno" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "{0} je unutar {1}" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} artikala odabrano" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} samo se predstavljao kao vi. Naveli su ovaj razlog: {1}" @@ -31477,35 +31632,35 @@ msgstr "prije {0} minuta" msgid "{0} months ago" msgstr "{0} mjeseci prije" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "{0} mora biti iza {1}" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "{0} mora početi sa '{1}'" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "{0} mora biti jednako '{1}'" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "{0} ne smije biti ni jedna od {1}" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} mora biti jedan od {1}" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "{0} se mora prvo postaviti" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "{0} mora biti jedinstven" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "{0} mora biti {1} {2}" @@ -31513,7 +31668,7 @@ msgstr "{0} mora biti {1} {2}" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "{0} mora početi i završavati slovom i može sadržavati samo slova, crticu ili donju crticu." -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "{0} nije važeća Zemlja" @@ -31526,11 +31681,11 @@ msgid "{0} not found" msgstr "{0} nije pronađen" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} od {1}" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} od {1} ({2} redovi sa potomcima)" @@ -31539,7 +31694,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "Samo {0}." -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "{0} ili {1}" @@ -31563,6 +31718,10 @@ msgstr "{0} zapis(a) je obrisan(o)" msgid "{0} records will be exported" msgstr "{0} zapis(a) će biti izvezen(o)" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "{0} uklonio/la je 1 redak iz {1}" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31572,15 +31731,29 @@ msgstr "{0} uklonio prilog {1}" msgid "{0} removed their assignment." msgstr "{0} je uklonio(la) svoju dodjelu." -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "{0} uklonilo je {1} redaka iz {2}" + +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "{0} uloga nema dozvolu ni za jedan tip dokumenta" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " -msgstr "{0} red #{1}: " +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" +msgstr "{0} red #{1}:" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "{0} redaka od {1}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "{0} redaka do {1}" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "{0} uspješno spremljen" @@ -31600,11 +31773,11 @@ msgstr "{0} je podijelio(la) ovaj dokument sa svima" msgid "{0} shared this document with {1}" msgstr "{0} podijelio(la) ovaj dokument sa {1}" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "{0} treba indeksirati jer se poziva na konekcije nadzorne table" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "{0} ne bi trebalo biti isto kao {1}" @@ -31617,8 +31790,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "{0} je podnio ovaj dokument {1}" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "{0} pretplatnika je dodano" @@ -31628,7 +31801,7 @@ msgstr "{0} da prestanete primati e-poštu ovog tipa" #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "{0} do {1}" @@ -31636,7 +31809,7 @@ msgstr "{0} do {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} je prekinuo(la) dijeljenje ovog dokumenta sa {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} ažurirano" @@ -31672,15 +31845,15 @@ msgstr "{0} {1} dodano" msgid "{0} {1} added to Dashboard {2}" msgstr "{0} {1} dodan na Nadzornu Ploču {2}" -#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "{0} {1} već postoji" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "{0} {1} ne može biti \"{2}\". Trebao bi biti jedan od \"{3}\"" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "{0} {1} ne može biti nadređeni jer ima podređene" @@ -31696,11 +31869,11 @@ msgstr "{0} {1} je povezan sa sljedećim podesenim dokumentima: {2}" msgid "{0} {1} not found" msgstr "{0} {1} nije pronađeno" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: Podenseni Zapis se ne može izbrisati. Prvo morate {2} otkazati {3}." -#: frappe/model/base_document.py:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "{0}, Red {1}" @@ -31708,79 +31881,79 @@ msgstr "{0}, Red {1}" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "{0}/{1} završeno | Ostavite ovu karticu otvorenom do završetka." -#: frappe/model/base_document.py:1120 +#: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "{0}: '{1}' ({3}) će biti skraćen, jer je maksimalni dozvoljeni broj znakova {2}" -#: frappe/core/doctype/doctype/doctype.py:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "{0}: Ne može se postaviti Izmjena bez Otkaži" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "{0}: Nije moguće postaviti Dodijeli Izmjenu ako nije Podnošljivo" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "{0}: Ne može se postaviti Dodijeli Podnošenje ako nije Podnošljivo" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "{0}: Nije moguće postaviti Otkaži bez Podnesi" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "{0}: Nije moguće postaviti Uvoz bez Kreiranja" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "{0}: Nije moguće podesiti Podnesi, Otkaži, Izmijeni bez Piši" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 msgid "{0}: Cannot set import as {1} is not importable" msgstr "{0}: Nije moguće postaviti uvoz jer {1} nije uvožljiv" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:436 msgid "{0}: Failed to attach new recurring document. To enable attaching document in the auto repeat notification email, enable {1} in Print Settings" msgstr "{0}: Nije uspjelo prilaganje novog ponavljajućeg dokumenta. Da biste omogućili prilaganje dokumenta u automatskom ponavljanju obavijesti e-pošte, omogući {1} u Postavkama Ispisa" -#: frappe/core/doctype/doctype/doctype.py:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "{0}: Polje '{1}' ne može se postaviti kao jedinstveno jer ima nejedinstvene vrijednosti" -#: frappe/core/doctype/doctype/doctype.py:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "{0}: Polje {1} u redu {2} ne može biti skriveno i obavezno bez standardnog" -#: frappe/core/doctype/doctype/doctype.py:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "{0}: Polje {1} tipa {2} ne može biti obavezno" -#: frappe/core/doctype/doctype/doctype.py:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "{0}: Ime polja {1} se pojavljuje više puta u redovima {2}" -#: frappe/core/doctype/doctype/doctype.py:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "{0}: Tip polja {1} za {2} ne može biti jedinstven" -#: frappe/core/doctype/doctype/doctype.py:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "{0}: Nisu postavljene osnovne dozvole" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "{0}: Dozvoljeno je samo jedno pravilo sa istom ulogom, nivoom i {1}" -#: frappe/core/doctype/doctype/doctype.py:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" msgstr "{0}: Opcije moraju biti važeći DocType za polje {1} u redu {2}" -#: frappe/core/doctype/doctype/doctype.py:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "{0}: Obavezne opcije za polje Tip Veze ili Tabele {1} u redu {2}" -#: frappe/core/doctype/doctype/doctype.py:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "{0}: Opcije {1} moraju biti iste kao naziv tipa dokumenta {2} za polje {3}" @@ -31788,7 +31961,7 @@ msgstr "{0}: Opcije {1} moraju biti iste kao naziv tipa dokumenta {2} za polje { msgid "{0}: Other permission rules may also apply" msgstr "{0}: Mogu se primjenjivati i druga pravila o dozvolama" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "{0}: Dozvola na nivou 0 mora biti postavljena prije postavljanja viših nivoa" @@ -31796,7 +31969,7 @@ msgstr "{0}: Dozvola na nivou 0 mora biti postavljena prije postavljanja viših msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "{0}: Možete povećati ograničenje za polje ako je potrebno preko {1}" -#: frappe/core/doctype/doctype/doctype.py:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "{0}: naziv polja ne može se postaviti na rezerviranu ključnu riječ {1}" @@ -31809,11 +31982,11 @@ 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:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} naspram {2}" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "{0}:Tip polja {1} za {2} ne može se indeksirati" @@ -31837,7 +32010,7 @@ msgstr "{count} red odabran" msgid "{count} rows selected" msgstr "{count} redova odabrano" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "{{{0}}} nije važeća forma naziva polja. Trebalo bi da bude {{field_name}}." @@ -31845,11 +32018,11 @@ msgstr "{{{0}}} nije važeća forma naziva polja. Trebalo bi da bude {{field_nam msgid "{} Complete" msgstr "{} Završeno" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "{} Nevažeći python kod na liniji {}" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
{}" msgstr "{} Možda nevažeći python kod.
{}" @@ -31875,7 +32048,7 @@ msgstr "{} je onemogućen. Može se omogućiti samo ako je označeno {}." msgid "{} is not a valid date string." msgstr "{} nije ispravan datumski niz." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "{} nije pronađeno u PATH! Ovo je potrebno za pristup konzoli." diff --git a/frappe/locale/hu.po b/frappe/locale/hu.po index 874aa3cd9b..c11086ec6c 100644 --- a/frappe/locale/hu.po +++ b/frappe/locale/hu.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-22 21:46\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Hungarian\n" "MIME-Version: 1.0\n" @@ -18,21 +18,17 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: hu_HU\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr "" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid "!=" -msgstr "" +msgstr "!=" #. Description of the 'Org History Heading' (Data) field in DocType 'About Us #. Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "\"Company History\"" -msgstr "" +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" @@ -42,7 +38,7 @@ msgstr "" #. Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "\"Team Members\" or \"Management\"" -msgstr "" +msgstr "\"Csapat tagok\" vagy \"Vezetőség\"" #: frappe/public/js/frappe/form/form.js:1090 msgid "\"amended_from\" field must be present to do an amendment." @@ -61,20 +57,20 @@ msgstr "" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" -msgstr "" +msgstr "© Frappe Technologies Pvt. Ltd. és közreműködők" #. Label of the head_html (Code) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "<head> HTML" -msgstr "" +msgstr "<head> HTML" #: frappe/public/js/form_builder/store.js:206 msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "" @@ -82,19 +78,23 @@ msgstr "" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" msgstr "" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "" @@ -102,11 +102,11 @@ msgstr "" msgid "(Mandatory)" msgstr "" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" msgstr "" @@ -115,14 +115,14 @@ msgstr "" #. State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "0 - Draft; 1 - Submitted; 2 - Cancelled" -msgstr "" +msgstr "0 - Vázlat; 1 - Elküldve; 2 - Törölve" #. Description of the 'Priority' (Int) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "0 is highest" -msgstr "" +msgstr "0 a legnagyobb" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "" @@ -130,104 +130,111 @@ msgstr "" #: frappe/geo/doctype/currency/currency.json msgid "1 Currency = [?] Fraction\n" "For e.g. 1 USD = 100 Cent" -msgstr "" +msgstr "1 pénznem = [?] töredék\n" +"Például 1 USD = 100 cent" #: frappe/public/js/frappe/form/reminders.js:19 msgid "1 Day" -msgstr "" +msgstr "1 nap" #: frappe/integrations/doctype/google_calendar/google_calendar.py:374 msgid "1 Google Calendar Event synced." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" -msgstr "" +msgstr "1 nappal ezelőtt" #: frappe/public/js/frappe/form/reminders.js:17 msgid "1 hour" -msgstr "" +msgstr "1 óra" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "" #: frappe/public/js/print_format_builder/PrintFormat.vue:3 msgid "1 of 2" -msgstr "" +msgstr "1 a 2-ből" #: frappe/public/js/frappe/data_import/data_exporter.js:227 msgid "1 record will be exported" msgstr "" -#: frappe/tests/test_utils.py:711 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "" + +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" -msgstr "" +msgstr "3 perccel ezelőtt" #: frappe/public/js/frappe/form/reminders.js:16 msgid "30 minutes" -msgstr "" +msgstr "30 perc" #: frappe/public/js/frappe/form/reminders.js:18 msgid "4 hours" -msgstr "" +msgstr "4 óra" #: frappe/public/js/frappe/data_import/data_exporter.js:37 msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" -msgstr "" +msgstr "5 napja" #: frappe/desk/doctype/bulk_update/bulk_update.py:36 msgid "; not allowed in condition" @@ -237,21 +244,38 @@ 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 "<=" + +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" msgstr "" #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" -msgstr "" +msgstr "{0} nem érvényes URL" #. Content of the 'Help' (HTML) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "
Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
" +msgstr "
Kérjük, ne frissítse, mert ez összezavarhatja az űrlapot. A tulajdonságok beállításához használja az űrlapnézet és az egyéni mezők testreszabását!
" + +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

" +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

" msgstr "" #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming @@ -314,7 +338,20 @@ msgid "

Custom CSS Help

\n\n" "

1. Add border to sections except the last section

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

Egyéni CSS segítség

\n\n" +"

Megjegyzések:

\n\n" +"
    \n" +"
  1. Minden mezőcsoport (címke + érték) beállított attribútumok data-fieldtype és data-fieldname
  2. \n" +"
  3. Minden értéknek class value osztályértéket adnak meg
  4. \n" +"
  5. Az összes szakaszmegszakításnak section-break osztálya van.
  6. \n" +"
  7. Az összes oszlopmegszakításnak column-break osztálya van.
  8. \n" +"
\n\n" +"

Példák

\n\n" +"

1. Egész számok balra igazítása

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

1. Keret hozzáadása a szakaszokhoz az utolsó szakasz kivételével

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

Print Format Help

\n" "\t\t\n" "\t\n" "\n" -msgstr "" +msgstr "

Nyomtatási formátum súgó

\n" +"
\n" +"

Bevezetés

\n" +"

A nyomtatási formátumok a szerveroldalon a Jinja Templating Language segítségével kerülnek megjelenítésre. Minden űrlap hozzáfér a doc objektumhoz, amely a formázott dokumentumról szóló információkat tartalmazza. A frappe modulon keresztül a közös segédprogramokhoz is hozzáférhet.

\n" +"

A formázáshoz a Boostrap CSS keretrendszer van biztosítva, és az osztályok teljes skáláját élvezheti.

\n" +"
\n" +"

Hivatkozások

\n" +"
    \n" +"\t
  1. Jinja templating nyelv
  2. \n" +"\t
  3. Bootstrap CSS keretrendszer
  4. \n" +"
\n" +"
\n" +"

Példa

\n" +"
<h3>{{ doc.select_print_heading or \"Invoice\" }}</h3>\n"
+"<div class=\"row\">\n"
+"\t<div class=\"col-md-3 text-right\">Ügyfél neve</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\">Dátum</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>No.</th>\n"
+"\t\t\t<th>Tétel Neve</th>\n"
+"\t\t\t<th>Leírás</th>\n"
+"\t\t\t<th class=\"text-right\">Mennyiség</th>\n"
+"\t\t\t<th class=\"text-right\">Árfolyam</th>\n"
+"\t\t\t<th class=\"text-right\">Mennyiség</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>Tételkód: {{ 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" +"

Közös funkciók

\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])A dokumentum értékének kinyerése dátumként, pénznemként stb. formázva. A valuta típusú mezők esetében adja át a szülői doc.
frappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\")Érték kinyerése egy másik dokumentumból.
\n" #. Description of the 'Template' (Code) field in DocType 'Address Template' #: frappe/contacts/doctype/address_template/address_template.json @@ -402,7 +504,18 @@ msgid "

Default Template

\n" "{% if fax %}Fax: {{ fax }}<br>{% endif -%}\n" "{% if email_id %}Email: {{ email_id }}<br>{% endif -%}\n" "
" -msgstr "" +msgstr "

Alapértelmezett sablon

\n" +"

A Jinja Templatinget használja, és a cím összes mezője (beleértve az egyéni mezőket is, ha vannak) elérhető lesz.

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

Email Reply Example

\n\n" "

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

\n\n" "

Templating

\n\n" "

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

\n" -msgstr "" +msgstr "

Email válasz példa

\n\n" +"
Rendelés késedelmes\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"
+"
\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" +"

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" #. Content of the 'html_5' (HTML) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "
Or
" -msgstr "" +msgstr "
Vagy
" #. Content of the 'Message Examples' (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json @@ -440,28 +563,45 @@ msgid "
Message Example
\n\n" "<li>Amount: {{ doc.grand_total }}\n" "</ul>\n" "" -msgstr "" +msgstr "
Üzenet példa
\n\n" +"
<h3>Rendelés késedelmes</h3>\n\n"
+"<p>Tranzakció {{ doc.name }} túllépte az esedékességi dátumot. Kérjük, tegye meg a szükséges lépéseket.</p>\n\n"
+"<!-- utolsó megjegyzés megjelenítése -->\n"
+"{% if comments %}\n"
+"Utolsó megjegyzés: {{ comments[-1].comment }} tőle {{ comments[-1].by }}\n"
+"{% endif %}\n\n"
+"<h4>Részletek</h4>\n\n"
+"<ul>\n"
+"<li>Ügyfél: {{ doc.customer }}\n"
+"<li>Összeg: {{ doc.grand_total }}\n"
+"</ul>\n"
+"
" #. Content of the 'html_condition' (HTML) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "

Condition Examples:

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

Állapot Példák:

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

Condition Examples:

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

Állapot Példák:

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

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

For Example:

\n" "

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

\n" -msgstr "" +msgstr "

Egyetlen doctype-hoz több webes űrlap is létrehozható. Adjon hozzá erre a webes űrlapra jellemző szűrőket a helyes rekord megjelenítéséhez a beküldés után.

Például:

\n" +"

Ha minden évben külön webes űrlapot hoz létre az alkalmazottak visszajelzéseinek rögzítésére, adjon hozzá egy mezőt év névvel a doctype-ban, és adjon hozzá egy szűrőt év = 2023.

\n" #. Description of the 'Context Script' (Code) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json @@ -469,7 +609,10 @@ msgid "

Set context before rendering a template. Example:

\n" "

\n"
 "context.project = frappe.get_doc(\"Project\", frappe.form_dict.name)\n"
 "
" -msgstr "" +msgstr "

Kontextus beállítása a sablon megjelenítése előtt. Példa:

\n" +"

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

To interact with above HTML you will have to use `root_element` as a p "let some_class_element = root_element.querySelector('.some-class');\n" "some_class_element.textContent = \"New content\";\n" "" -msgstr "" +msgstr "

A fenti HTML-kóddal való interakcióhoz a \"root_element\" elemet kell szülői szelektorak használnia.

Például:

// alapértelmezetten a root_element van használva\n"
+"let some_class_element = root_element.querySelector('.some-class');\n"
+"some_class_element.textContent = \"Új tartalom\";\n"
+"
" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

" msgstr "" @@ -500,7 +646,18 @@ msgid "
*  *  *  *  *\n"
 "* - Any value\n"
 "/ - Step values\n"
 "
\n" -msgstr "" +msgstr "
*  *  *  *  *\n"
+"┬  ┬  ┬  ┬  ┬\n"
+"│  │  │  │  │\n"
+"│  │  │  │  └ hét napjai (0 - 6) (0 a vasárnap)\n"
+"│  │  │  └───── hónap (1 - 12)\n"
+"│  │  └────────── hónap napja (1 - 31)\n"
+"│  └─────────────── óra (0 - 23)\n"
+"└──────────────────── perc (0 - 59)\n\n"
+"---\n\n"
+"* - Bármilyen érték\n"
+"/ - Lépésérték\n"
+"
\n" #. Content of the 'Example' (HTML) field in DocType 'Workflow Transition' #: frappe/workflow/doctype/workflow_transition/workflow_transition.json @@ -517,77 +674,90 @@ msgid "
doc.grand_total > 0
\n\n" "
  • frappe.utils.now
  • \n" "\n" "

    Example:

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

    " -msgstr "" +msgstr "
    doc.grand_total > 0
    \n\n" +"

    A feltételeket egyszerű Python nyelven kell megírni. Kérjük, csak az űrlapon rendelkezésre álló tulajdonságokat használja.

    \n" +"

    Megengedett függvények:\n" +"

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

    Példa:

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

    " #. Header text in the Welcome Workspace Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json msgid "Hi," -msgstr "" +msgstr "Szia," #: frappe/custom/doctype/custom_field/custom_field.js:39 msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." -msgstr "" +msgstr "Figyelmeztetés: Ez a mező a rendszer által generált, és egy jövőbeli frissítés felülírhatja. Módosítsa helyette a {0} használatával." #. 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 ">" #. 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:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" -msgstr "" +msgstr "A DocType nevének betűvel kell kezdődnie, és csak betűkből, számokból, szóközökből, aláhúzásjelekből és kötőjelekből állhat" #. Description of a DocType #: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." -msgstr "" +msgstr "Egy Frappe Framework példány működhet OAuth-ügyfélként, erőforrásként vagy engedélyezési kiszolgálóként. Ez a DocType mindháromhoz kapcsolódó beállításokat tartalmaz." -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." msgstr "" #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" -msgstr "" +msgstr "A {0} nevű mező már létezik itt {1}" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" -msgstr "" +msgstr "Egy azonos nevű {} fájl már létezik" #. Description of the 'Scopes' (Text) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "A list of resources which the Client App will have access to after the user allows it.
    e.g. project" -msgstr "" +msgstr "Azon erőforrások listája, amelyekhez az Ügyfél App hozzáférhet, miután a felhasználó engedélyezte.
    pl. project" #: frappe/templates/emails/new_user.html:5 msgid "A new account has been created for you at {0}" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "" #. Description of the 'Symbol' (Data) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "A symbol for this currency. For e.g. $" -msgstr "" +msgstr "A pénznem szimbóluma. Például: $" #: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:49 msgid "A template already exists for field {0} of {1}" -msgstr "" +msgstr "A {0} mezőhöz már létezik sablon a {1} oldalon" #. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -603,76 +773,80 @@ msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "A0" -msgstr "" +msgstr "A0" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "A1" -msgstr "" +msgstr "A1" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "A2" -msgstr "" +msgstr "A2" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "A3" -msgstr "" +msgstr "A3" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "A4" -msgstr "" +msgstr "A4" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "A5" -msgstr "" +msgstr "A5" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "A6" -msgstr "" +msgstr "A6" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "A7" -msgstr "" +msgstr "A7" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "A8" -msgstr "" +msgstr "A8" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "A9" -msgstr "" +msgstr "A9" #. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "ALL" -msgstr "" +msgstr "ÖSSZES" #. Option for the 'Script Type' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "API" -msgstr "" +msgstr "API" #. Label of the api_access (Section Break) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "API Access" -msgstr "" +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 msgid "API Endpoint" -msgstr "" +msgstr "API végpont" #. Label of the api_endpoint_args (Code) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "API Endpoint Args" +msgstr "API végpont argumentumok" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" msgstr "" #. Label of the api_key (Data) field in DocType 'User' @@ -681,23 +855,27 @@ msgstr "" #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Key" -msgstr "" +msgstr "API kulcs" #. Description of the 'Authentication' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Key and Secret to interact with the relay server. These will be auto-generated when the first push notification is sent from any of the apps installed on this site." -msgstr "" +msgstr "API Kulcs és Secret szükséges a továbbító kiszolgálóval való interakcióhoz. Ezek automatikusan generálódnak, amikor az első push-értesítés elküldésre kerül az ezen az oldalon telepített alkalmazások bármelyikéből." #. Description of the 'API Key' (Data) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "API Key cannot be regenerated" +msgstr "Az API kulcs nem regenerálható" + +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" msgstr "" #. Label of the api_logging_section (Section Break) field in DocType 'System @@ -709,7 +887,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 "" +msgstr "API metódus" #. Name of a DocType #: frappe/core/doctype/api_request_log/api_request_log.json @@ -720,18 +898,18 @@ msgstr "" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" -msgstr "" +msgstr "API Secret" #. Option for the 'Default Sort Order' (Select) field in DocType 'DocType' #. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "ASC" -msgstr "" +msgstr "NÖV" #. Label of a standard help item #. Type: Action @@ -767,6 +945,20 @@ msgstr "" msgid "About {0} seconds remaining" msgstr "" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -785,14 +977,14 @@ msgstr "" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Access Token" -msgstr "" +msgstr "Hozzáférési Token" #. Label of the access_token_url (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Access Token URL" -msgstr "" +msgstr "Hozzáférési Token URL" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "" @@ -806,7 +998,7 @@ msgstr "" #. DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Account Deletion Settings" -msgstr "" +msgstr "Fiók Törlési Beállítások" #. Name of a role #: frappe/automation/doctype/auto_repeat/auto_repeat.json @@ -844,44 +1036,44 @@ msgstr "" #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 msgid "Action" -msgstr "" +msgstr "Művelet" #. Label of the action (Small Text) field in DocType 'DocType Action' #: frappe/core/doctype/doctype_action/doctype_action.json msgid "Action / Route" -msgstr "" +msgstr "Művelet / Útvonal" #: 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:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "" #. Label of the action_label (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Action Label" -msgstr "" +msgstr "Művelet Címke" #. Label of the action_timeout (Int) field in DocType 'Success Action' #: frappe/core/doctype/success_action/success_action.json msgid "Action Timeout (Seconds)" -msgstr "" +msgstr "Művelet időkorlát (másodpercek)" #. Label of the action_type (Select) field in DocType 'DocType Action' #: frappe/core/doctype/doctype_action/doctype_action.json msgid "Action Type" -msgstr "" +msgstr "Művelet Típusa" #: frappe/core/doctype/submission_queue/submission_queue.py:120 msgid "Action {0} completed successfully on {1} {2}. View it {3}" -msgstr "" +msgstr "A {0} művelet sikeresen befejeződött a következőn: {1} {2}. Tekintse meg {3}" #: frappe/core/doctype/submission_queue/submission_queue.py:116 msgid "Action {0} failed on {1} {2}. View it {3}" -msgstr "" +msgstr "A {0} művelet nem sikerült a következőn: {1} {2}. Tekintse meg {3}" #. Label of the actions_section (Tab Break) field in DocType 'DocType' #. Label of the actions (Table) field in DocType 'Customize Form' @@ -908,14 +1100,14 @@ msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "" #. Label of the activate (Check) field in DocType 'Package Import' #: frappe/core/doctype/package_import/package_import.json msgid "Activate" -msgstr "" +msgstr "Aktiválás" #. Option for the 'Status' (Select) field in DocType 'Auto Repeat' #. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' @@ -932,14 +1124,14 @@ msgstr "" #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Active Directory" -msgstr "" +msgstr "Active Directory" #. Label of the active_domains_sb (Section Break) field in DocType 'Domain #. Settings' #. Label of the active_domains (Table) field in DocType 'Domain Settings' #: frappe/core/doctype/domain_settings/domain_settings.json msgid "Active Domains" -msgstr "" +msgstr "Aktív Domainek" #. Label of the active_sessions (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -965,7 +1157,7 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -976,7 +1168,7 @@ msgstr "" msgid "Add" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -988,7 +1180,7 @@ msgstr "" msgid "Add A New Rule" msgstr "" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "" @@ -996,19 +1188,19 @@ msgstr "" #. Label of the add_background_image (Check) field in DocType 'Web Page Block' #: frappe/website/doctype/web_page_block/web_page_block.json msgid "Add Background Image" -msgstr "" +msgstr "Háttérkép Hozzáadása" #. 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 "" +msgstr "Szegély Hozzáadása Alul" #. 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 "" +msgstr "Szegély Hozzáadása Felül" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "" @@ -1021,10 +1213,10 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "" @@ -1040,12 +1232,12 @@ 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 "" +msgstr "Tároló Hozzáadása" #. 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 "" +msgstr "Egyéni Címkék Hozzáadása" #: frappe/public/js/frappe/widgets/widget_dialog.js:188 #: frappe/public/js/frappe/widgets/widget_dialog.js:716 @@ -1055,7 +1247,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 "" +msgstr "Szürke Háttér Hozzáadása" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 #: frappe/public/js/frappe/ui/group_by/group_by.js:430 @@ -1081,9 +1273,9 @@ msgstr "" #. Label of the add_query_parameters (Check) field in DocType 'Email Group' #: frappe/email/doctype/email_group/email_group.json msgid "Add Query Parameters" -msgstr "" +msgstr "Lekérdezési Paraméterek Hozzáadása" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "" @@ -1100,12 +1292,12 @@ msgstr "" #. Label of the add_bottom_padding (Check) field in DocType 'Web Page Block' #: frappe/website/doctype/web_page_block/web_page_block.json msgid "Add Space at Bottom" -msgstr "" +msgstr "Hely Hozzáadása Alul" #. 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 "" +msgstr "Hely Hozzáadása Felül" #: frappe/email/doctype/email_group/email_group.js:38 #: frappe/email/doctype/email_group/email_group.js:59 @@ -1116,19 +1308,19 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 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 "" +msgstr "Összesítő Sor Hozzáadása" #. Label of the add_translate_data (Check) field in DocType 'Report' #: frappe/core/doctype/report/report.json @@ -1138,7 +1330,7 @@ msgstr "Fordítási adatok hozzáadása" #. Label of the add_unsubscribe_link (Check) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Add Unsubscribe Link" -msgstr "" +msgstr "Leiratkozási Link Hozzáadása" #: frappe/core/doctype/user_permission/user_permission_list.js:6 msgid "Add User Permissions" @@ -1147,7 +1339,7 @@ msgstr "" #. Label of the add_video_conferencing (Check) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "Add Video Conferencing" -msgstr "" +msgstr "Videókonferencia Hozzáadása" #: frappe/public/js/frappe/ui/filters/filter_list.js:299 msgid "Add a Filter" @@ -1210,7 +1402,7 @@ msgstr "" msgid "Add page break" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "" @@ -1242,13 +1434,13 @@ msgstr "" #: frappe/public/js/frappe/form/footer/form_timeline.js:99 msgid "Add to this activity by mailing to {0}" -msgstr "" +msgstr "Adja hozzá ezt a tevékenységet a {0} címre küldött levéllel" #: frappe/public/js/frappe/views/kanban/kanban_column.html:20 msgid "Add {0}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" msgstr "" @@ -1262,7 +1454,7 @@ msgstr "" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Added HTML in the <head> section of the web page, primarily used for website verification and SEO" -msgstr "" +msgstr "HTML hozzáadva a weboldal <head> részéhez, amelyet elsősorban webhely-ellenőrzéshez és SEO-hoz használnak" #: frappe/core/doctype/log_settings/log_settings.py:81 msgid "Added default log doctypes: {}" @@ -1283,7 +1475,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/user_document_type/user_document_type.json msgid "Additional Permissions" -msgstr "" +msgstr "További Jogosultságok" #. Name of a DocType #. Label of the address (Link) field in DocType 'Contact' @@ -1291,6 +1483,7 @@ msgstr "" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1299,6 +1492,7 @@ msgstr "" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "" @@ -1306,6 +1500,7 @@ msgstr "" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "" @@ -1320,7 +1515,7 @@ msgstr "" #: frappe/contacts/doctype/address/address.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Title" -msgstr "" +msgstr "Cím Felirat" #: frappe/contacts/doctype/address/address.py:72 msgid "Address Title is mandatory." @@ -1329,13 +1524,13 @@ msgstr "" #. Label of the address_type (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Address Type" -msgstr "" +msgstr "Cím Típusa" #. Description of the 'Address' (Small Text) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Address and other legal information you may want to put in the footer." -msgstr "" +msgstr "Cím és egyéb jogi információk, amelyeket érdemes lehet a láblécben megadni." #: frappe/contacts/doctype/address/address.py:206 msgid "Addresses" @@ -1349,14 +1544,14 @@ msgstr "" #. Description of a DocType #: frappe/custom/doctype/client_script/client_script.json msgid "Adds a custom client script to a DocType" -msgstr "" +msgstr "Egyéni ügyfélszkript hozzáadása egy DocType-hoz" #. Description of a DocType #: frappe/custom/doctype/custom_field/custom_field.json msgid "Adds a custom field to a DocType" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "" @@ -1370,7 +1565,6 @@ msgstr "" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1383,11 +1577,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1400,23 +1594,23 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json msgid "Advanced" -msgstr "" +msgstr "Haladó" #. 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 "" +msgstr "Speciális vezérlés" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 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 "" +msgstr "Haladó beállítások" #: frappe/public/js/frappe/ui/filters/filter.js:64 #: frappe/public/js/frappe/ui/filters/filter.js:70 @@ -1426,12 +1620,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 "" +msgstr "Mégsem Után" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "After Delete" -msgstr "" +msgstr "Törlés Után" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json @@ -1441,34 +1635,34 @@ msgstr "" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "After Insert" -msgstr "" +msgstr "Beszúrás Után" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "After Rename" -msgstr "" +msgstr "Átnevezés Után" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "After Save" -msgstr "" +msgstr "Mentés Után" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "After Save (Submitted Document)" -msgstr "" +msgstr "Mentés Után (Beküldött Dokumentum)" #. Label of the section_break_5 (Section Break) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "After Submission" -msgstr "" +msgstr "Beküldés Után" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "After Submit" -msgstr "" +msgstr "Beküldés Után" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "" @@ -1479,7 +1673,7 @@ msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json msgid "Aggregate Function Based On" -msgstr "" +msgstr "Összesített Függvény Alapja" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:410 msgid "Aggregate Function field is required to create a dashboard chart" @@ -1488,18 +1682,18 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json msgid "Alert" -msgstr "" +msgstr "Riasztás" #. Label of a Card Break in the Tools Workspace #: frappe/automation/workspace/tools/tools.json msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1507,17 +1701,17 @@ msgstr "" #. Label of the footer_align (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Align" -msgstr "" +msgstr "Igazítás" #. 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 "" +msgstr "Címkék Jobbra Igazítása" #. 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 "" +msgstr "Igazítás Jobbra" #: frappe/printing/page/print_format_builder/print_format_builder.js:479 msgid "Align Value" @@ -1564,7 +1758,7 @@ msgstr "" msgid "All Records" msgstr "" -#: frappe/public/js/frappe/form/form.js:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "" @@ -1574,12 +1768,12 @@ msgstr "" #: frappe/templates/includes/comments/comments.html:158 msgid "All fields are necessary to submit the comment." -msgstr "" +msgstr "Összes mező kitöltése szükséges a megjegyzés elküldéséhez." #. Description of the 'Document States' (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "All possible Workflow States and roles of the workflow. Docstatus Options: 0 is \"Saved\", 1 is \"Submitted\" and 2 is \"Cancelled\"" -msgstr "" +msgstr "A munkafolyamat összes lehetséges munkafolyamat állapota és szerepe. Dokumentumstátusz beállítások: A 0 a \"Mentve\", az 1 a \"Beküldve\" és a 2 a \"Törölt\"" #: frappe/utils/password_strength.py:183 msgid "All-uppercase is almost as easy to guess as all-lowercase." @@ -1588,7 +1782,7 @@ msgstr "" #. Label of the allocated_to (Link) field in DocType 'ToDo' #: frappe/desk/doctype/todo/todo.json msgid "Allocated To" -msgstr "" +msgstr "Kiosztva Hozzá" #. Label of the allow (Link) field in DocType 'User Permission' #. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key' @@ -1607,14 +1801,14 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Allow Auto Repeat" -msgstr "" +msgstr "Engedélyezze az Automatikus Ismétlést" #. 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 "" +msgstr "Engedélyezi a Tömeges Szerkesztést" #. Label of the allow_edit (Check) field in DocType 'List View Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -1624,8 +1818,8 @@ msgstr "" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " -msgstr "" +msgid "Allow Consecutive Login Attempts" +msgstr "Egymást Követő Bejelentkezési Kísérletek Engedélyezése" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 msgid "Allow Google Calendar Access" @@ -1638,18 +1832,13 @@ msgstr "" #. Label of the allow_guest (Check) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "Allow Guest" -msgstr "" +msgstr "Vendégek Engedélyezése" #. Label of the allow_guest_to_view (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Allow Guest to View" msgstr "" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1661,7 +1850,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Allow Import (via Data Import Tool)" -msgstr "" +msgstr "Importálás Engedélyezése (Adatimportáló Eszközzel)" #. Label of the allow_login_after_fail (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1683,7 +1872,7 @@ msgstr "" #. Label of the sb_allow_modules (Section Break) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Allow Modules" -msgstr "" +msgstr "Modulok Engedélyezése" #. Label of the allow_older_web_view_links (Check) field in DocType 'System #. Settings' @@ -1698,7 +1887,7 @@ msgid "Allow Print for Cancelled" msgstr "" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "" @@ -1712,7 +1901,7 @@ msgstr "" #. Label of the allow_rename (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Allow Rename" -msgstr "" +msgstr "Átnevezés Engedélyezése" #. Label of the roles_permission (Section Break) field in DocType 'Role #. Permission for Page and Report' @@ -1721,13 +1910,13 @@ msgstr "" #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "Allow Roles" -msgstr "" +msgstr "Szerepkörök Engedélyezése" #. Label of the allow_self_approval (Check) field in DocType 'Workflow #. Transition' #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Allow Self Approval" -msgstr "" +msgstr "Saját Jóváhagyás Engedélyezése" #. Label of the enable_telemetry (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1772,7 +1961,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 "" +msgstr "Események Engedélyezése az Idővonalon" #. 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' @@ -1782,7 +1971,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Allow in Quick Entry" -msgstr "" +msgstr "Gyors Bejegyzés Engedélyezése" #. Label of the allow_incomplete (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -1807,13 +1996,13 @@ msgstr "" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Allow only one session per user" -msgstr "" +msgstr "Csak egyetlen munkamenet engedélyezése felhasználónként" #. Label of the allow_page_break_inside_tables (Check) field in DocType 'Print #. Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow page break inside tables" -msgstr "" +msgstr "Oldaltörés engedélyezése táblázatokon belül" #. Label of the allow_print (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -1828,38 +2017,38 @@ msgstr "" #. Form' #: frappe/website/doctype/web_form/web_form.json msgid "Allow saving if mandatory fields are not filled" -msgstr "" +msgstr "Mentés engedélyezése, ha a kötelező mezők nincsenek kitöltve" #: frappe/desk/page/setup_wizard/setup_wizard.js:424 msgid "Allow sending usage data for improving applications" -msgstr "" +msgstr "Használati adatok küldésének engedélyezése az alkalmazások fejlesztéséhez" #. Description of the 'Login After' (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Allow user to login only after this hour (0-24)" -msgstr "" +msgstr "A felhasználó csak az adott időpont után jelentkezhet be (0-24 óra)" #. Description of the 'Login Before' (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Allow user to login only before this hour (0-24)" -msgstr "" +msgstr "A felhasználó csak az adott időpont előtt jelentkezhet be (0-24 óra)" #. Description of the 'Login with email link' (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Allow users to log in without a password, using a login link sent to their email" -msgstr "" +msgstr "Lehetővé teszi a felhasználók számára, hogy jelszó nélkül, az e-mail címükre küldött bejelentkezési link segítségével jelentkezzenek be" #. Label of the allowed (Link) field in DocType 'Workflow Transition' #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Allowed" -msgstr "" +msgstr "Engedélyezett" #. Label of the allowed_file_extensions (Small Text) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Allowed File Extensions" -msgstr "" +msgstr "Engedélyezett Fájl Kiterjesztések" #. Label of the allowed_in_mentions (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -1870,7 +2059,7 @@ msgstr "" #. Type' #: frappe/core/doctype/user_type/user_type.json msgid "Allowed Modules" -msgstr "" +msgstr "Engedélyezett Modulok" #. Label of the allowed_public_client_origins (Small Text) field in DocType #. 'OAuth Settings' @@ -1930,7 +2119,7 @@ msgstr "" msgid "Allows skipping authorization if a user has active tokens." msgstr "" -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "" @@ -1938,17 +2127,23 @@ msgstr "" msgid "Already in the following Users ToDo list:{0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "" #. Label of the login_id (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Alternative Email ID" +msgstr "Alternatív Email Azonosító" + +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" msgstr "" #. Label of the always_bcc (Data) field in DocType 'Email Account' @@ -1959,19 +2154,19 @@ msgstr "" #. Label of the add_draft_heading (Check) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Always add \"Draft\" Heading for printing draft documents" -msgstr "" +msgstr "Mindig adja hozzá a „Vázlat” címsort a nyomtatandó dokumentumokhoz" #. Label of the always_use_account_email_id_as_sender (Check) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always use this email address as sender address" -msgstr "" +msgstr "Mindig ezt az e-mail címet használja feladó címként" #. Label of the always_use_account_name_as_sender_name (Check) field in DocType #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always use this name as sender name" -msgstr "" +msgstr "Mindig ezt az nevet használja feladó neveként" #. Label of the amend (Check) field in DocType 'Custom DocPerm' #. Label of the amend (Check) field in DocType 'DocPerm' @@ -1980,7 +2175,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/user_document_type/user_document_type.json msgid "Amend" -msgstr "" +msgstr "Módosítás" #. Option for the 'Action' (Select) field in DocType 'Amended Document Naming #. Settings' @@ -1989,7 +2184,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 "Amend Counter" -msgstr "" +msgstr "Módosítás Számláló" #. Name of a DocType #: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json @@ -2000,12 +2195,10 @@ msgstr "" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Amended Documents" -msgstr "" +msgstr "Módosított Dokumentumok" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "" @@ -2019,7 +2212,7 @@ msgstr "" #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Amendment Naming Override" -msgstr "" +msgstr "Módosítás Elnevezés Felülírása" #: frappe/model/document.py:551 msgid "Amendment Not Allowed" @@ -2029,6 +2222,11 @@ msgstr "Módosítás nem engedélyezett" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2036,7 +2234,7 @@ msgstr "" #. Description of the 'FavIcon' (Attach) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" -msgstr "" +msgstr "Egy ikon fájlt .ico kiterjesztéssel. Legyen 16 x 16 px. favicon generátor felhasználásával előállított. [favicon-generator.org]" #: frappe/templates/includes/oauth_confirmation.html:38 msgid "An unexpected error occurred while authorizing {}." @@ -2046,7 +2244,7 @@ msgstr "" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Analytics" -msgstr "" +msgstr "Analitika" #: frappe/public/js/frappe/ui/filters/filter.js:35 msgid "Ancestors Of" @@ -2056,13 +2254,13 @@ msgstr "" #. Settings' #: frappe/core/doctype/navbar_settings/navbar_settings.json msgid "Announcement Widget" -msgstr "" +msgstr "Közlemény Widget" #. Label of the announcements_section (Section Break) field in DocType 'Navbar #. Settings' #: frappe/core/doctype/navbar_settings/navbar_settings.json msgid "Announcements" -msgstr "" +msgstr "Közlemények" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json @@ -2073,12 +2271,12 @@ msgstr "" #. Deletion Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Anonymization Matrix" -msgstr "" +msgstr "Anonimizálási Mátrix" #. Label of the anonymous (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Anonymous responses" -msgstr "" +msgstr "Névtelen válaszok" #: frappe/public/js/frappe/request.js:189 msgid "Another transaction is blocking this one. Please try again in a few seconds." @@ -2091,7 +2289,7 @@ 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 "" +msgstr "Bármely karakterlánc-alapú nyomtatónyelv használható. A nyers parancsok írásához a nyomtató anyanyelvének ismerete szükséges, amelyet a nyomtató gyártója biztosít. A natív parancsok írásáról lásd a nyomtató gyártója által kiadott fejlesztői útmutatót. Ezeket a parancsokat a szerver oldalon a Jinja sablon nyelv használatával jelenítik meg." #: frappe/core/page/permission_manager/permission_manager_help.html:36 msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type." @@ -2108,12 +2306,12 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json msgid "App" -msgstr "" +msgstr "Alkalmazás" #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "App ID" -msgstr "" +msgstr "Alkalmazás ID" #. Label of the app_logo (Attach Image) field in DocType 'Website Settings' #: frappe/public/js/frappe/ui/toolbar/navbar.html:8 @@ -2122,10 +2320,12 @@ msgid "App Logo" msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2151,14 +2351,14 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Append Emails to Sent Folder" -msgstr "" +msgstr "E-mailek Csatolása az Elküldött Mappához" #. Label of the append_to (Link) field in DocType 'Email Account' #. Label of the append_to (Link) field in DocType 'IMAP Folder' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/imap_folder/imap_folder.json msgid "Append To" -msgstr "" +msgstr "Hozzáfűzés Ehhez" #: frappe/email/doctype/email_account/email_account.py:202 msgid "Append To can be one of {0}" @@ -2167,7 +2367,7 @@ msgstr "" #. Description of the 'Append To' (Link) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Append as communication against this DocType (must have fields: \"Sender\" and \"Subject\"). These fields can be defined in the email settings section of the appended doctype." -msgstr "" +msgstr "Hozzáfűzés kommunikációként ehhez a dokumentumtípushoz (tartalmaznia kell a „Feladó” és a „Tárgy” mezőket). Ezek a mezők a hozzáfűzött dokumentumtípus e-mail beállítások részében definiálhatók." #: frappe/core/doctype/user_permission/user_permission_list.js:105 msgid "Applicable Document Types" @@ -2182,30 +2382,34 @@ 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 "" +msgstr "Alkalmazás Logó" #. Label of the app_name (Data) field in DocType 'Installed Application' #. Label of the app_name (Data) field in DocType 'System Settings' #: frappe/core/doctype/installed_application/installed_application.json #: frappe/core/doctype/system_settings/system_settings.json msgid "Application Name" -msgstr "" +msgstr "Alkalmazás Név" #. Label of the app_version (Data) field in DocType 'Installed Application' #: frappe/core/doctype/installed_application/installed_application.json msgid "Application Version" +msgstr "Alkalmazás Verzió" + +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" 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 "" +msgstr "Alkalmazva" #: frappe/public/js/form_builder/components/Field.vue:103 msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2218,23 +2422,23 @@ msgstr "" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Apply Strict User Permissions" -msgstr "" +msgstr "Szigorú Felhasználói Jogosultságok Alkalmazása" #. Label of the view (Select) field in DocType 'Client Script' #: frappe/custom/doctype/client_script/client_script.json msgid "Apply To" -msgstr "" +msgstr "Alkalmazás Erre" #. Label of the apply_to_all_doctypes (Check) field in DocType 'User #. Permission' #: frappe/core/doctype/user_permission/user_permission.json msgid "Apply To All Document Types" -msgstr "" +msgstr "Alkalmazás Minden Dokumentumtípusra" #. Label of the apply_user_permission_on (Link) field in DocType 'User Type' #: frappe/core/doctype/user_type/user_type.json msgid "Apply User Permission On" -msgstr "" +msgstr "Felhasználói Engedély Alkalmazása" #. Label of the apply_document_permissions (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -2247,13 +2451,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 "" +msgstr "Alkalmazza ezt a szabályt, ha a Felhasználó a Tulajdonos" #: frappe/core/doctype/user_permission/user_permission_list.js:75 msgid "Apply to all Documents Types" msgstr "" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "" @@ -2266,12 +2470,12 @@ msgstr "" #: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18 #: frappe/website/js/website.js:619 frappe/www/me.html:80 msgid "Apps" -msgstr "" +msgstr "Alkalmazások" #: frappe/public/js/frappe/utils/number_systems.js:41 msgctxt "Number system" msgid "Ar" -msgstr "" +msgstr "Ar" #: frappe/public/js/frappe/views/kanban/kanban_column.html:14 msgid "Archive" @@ -2286,7 +2490,11 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2314,11 +2522,15 @@ msgctxt "Confirmation dialog message" msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:191 msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2326,7 +2538,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2362,12 +2574,12 @@ msgstr "" #. Label of the arguments (Code) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "Arguments" -msgstr "" +msgstr "Argumentumok" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Arial" -msgstr "" +msgstr "Arial" #: frappe/core/page/permission_manager/permission_manager_help.html:11 msgid "As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User." @@ -2381,16 +2593,22 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" -msgstr "" +msgstr "Feltétel Hozzárendelése" #: frappe/public/js/frappe/form/sidebar/assign_to.js:183 msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2403,7 +2621,7 @@ msgstr "" #. 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign To Users" -msgstr "" +msgstr "Hozzárendelés a Felhasználók Számára" #: frappe/public/js/frappe/form/sidebar/assign_to.js:260 msgid "Assign a user" @@ -2428,7 +2646,7 @@ msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Assigned" -msgstr "" +msgstr "Hozzárendelt" #. Label of the assigned_by (Link) field in DocType 'ToDo' #: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:41 @@ -2438,7 +2656,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 "Hozzárendelte Teljes Nevén" #: frappe/model/meta.py:62 #: frappe/public/js/frappe/form/templates/form_sidebar.html:49 @@ -2453,6 +2671,11 @@ msgstr "" msgid "Assigned To/Owner" msgstr "" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "" @@ -2465,7 +2688,7 @@ msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Assignment Completed" -msgstr "" +msgstr "Feladat Teljesítve" #. Label of the sb (Section Break) field in DocType 'Assignment Rule' #. Label of the assignment_days (Table) field in DocType 'Assignment Rule' @@ -2501,7 +2724,7 @@ msgstr "" #. 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assignment Rules" -msgstr "" +msgstr "Hozzárendelési Szabályok" #: frappe/desk/doctype/notification_log/notification_log.py:153 msgid "Assignment Update on {0}" @@ -2522,7 +2745,13 @@ msgstr "" msgid "Assignments" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -2562,17 +2791,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 "Kép Csatolása" #. Label of the attach_package (Attach) field in DocType 'Package Import' #: frappe/core/doctype/package_import/package_import.json msgid "Attach Package" -msgstr "" +msgstr "Csomag Csatolása" #. Label of the attach_print (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Attach Print" -msgstr "" +msgstr "Nyomtatvány Csatolása" #: frappe/public/js/frappe/file_uploader/WebLink.vue:10 msgid "Attach a web link" @@ -2585,40 +2814,40 @@ msgstr "" #. Label of the attached_file (Code) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json msgid "Attached File" -msgstr "" +msgstr "Csatolt Fájl" #. Label of the attached_to_doctype (Link) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Attached To DocType" -msgstr "" +msgstr "DocType-hoz Csatolás" #. Label of the attached_to_field (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Attached To Field" -msgstr "" +msgstr "Mezőhöz Csatolt" #. Label of the attached_to_name (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Attached To Name" -msgstr "" +msgstr "Névhez Csatolt" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Attachment" -msgstr "" +msgstr "Csatolmány" #. 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 "Csatolmány Korlát (MB)" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "" @@ -2631,20 +2860,20 @@ msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Attachment Removed" -msgstr "" +msgstr "Csatolmány Eltávolítva" #. Label of the attachments (Code) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "" @@ -2665,6 +2894,10 @@ 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 "Hitelesítés URL Adatok" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" msgstr "" #. Label of the backend_app_flow (Check) field in DocType 'Email Account' @@ -2684,7 +2917,7 @@ msgid "Authentication" msgstr "" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " +msgid "Authentication Apps you can use are:" msgstr "" #: frappe/email/doctype/email_account/email_account.py:339 @@ -2798,11 +3031,11 @@ msgstr "" msgid "Auto Repeat Day" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "" @@ -2810,11 +3043,16 @@ msgstr "" msgid "Auto Repeat Schedule" msgstr "" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "" @@ -2858,7 +3096,7 @@ msgstr "" msgid "Auto follow documents that you create" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "Az automatikus ismétlés sikertelen. Kérjük, engedélyezze az automatikus ismétlést a problémák megoldása után." @@ -2906,7 +3144,7 @@ msgstr "" msgid "Automatically Assign Documents to Users" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "Automatikusan alkalmazott szűrő a friss adatokra. Ezt a viselkedést a listanézet beállításai között kikapcsolhatja." @@ -2920,11 +3158,6 @@ msgstr "" msgid "Automation" msgstr "" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3096,7 +3329,7 @@ msgstr "" #. Label of the background_jobs_queue (Autocomplete) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Background Jobs Queue" -msgstr "" +msgstr "Háttérfeladatok Várólista" #: frappe/public/js/frappe/list/bulk_operations.js:87 msgid "Background Print (required for >25 documents)" @@ -3196,8 +3429,8 @@ msgstr "" #. Label of the based_on (Link) field in DocType 'Language' #: frappe/core/doctype/language/language.json -#: frappe/printing/page/print/print.js:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "" @@ -3314,10 +3547,8 @@ msgstr "" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "" @@ -3347,64 +3578,6 @@ msgstr "" msgid "Blocked" msgstr "" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3501,13 +3674,6 @@ msgstr "" msgid "Breadcrumbs" msgstr "" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3565,15 +3731,15 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" msgstr "" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "" @@ -3588,7 +3754,7 @@ msgstr "" msgid "Bulk Update" msgstr "" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "" @@ -3600,7 +3766,7 @@ msgstr "" msgid "Bulk operations only support up to 500 documents." msgstr "" -#: frappe/model/workflow.py:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "" @@ -3611,7 +3777,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Button" -msgstr "" +msgstr "Gomb" #. Label of the button_gradients (Check) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json @@ -3730,16 +3896,6 @@ msgstr "" msgid "CSV" msgstr "" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3790,11 +3946,6 @@ msgstr "" msgid "Call To Action URL" msgstr "" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -3812,7 +3963,7 @@ msgid "Camera" msgstr "" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3848,7 +3999,7 @@ msgstr "" msgid "Can not rename as column {0} is already present on DocType." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "" @@ -3872,14 +4023,15 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3897,16 +4049,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -3944,11 +4098,11 @@ msgstr "" msgid "Cannot Remove" msgstr "" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3956,7 +4110,7 @@ msgstr "" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "" @@ -3964,11 +4118,11 @@ msgstr "" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1013 +#: frappe/model/document.py:1017 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -3976,11 +4130,11 @@ msgstr "" msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "" @@ -3992,11 +4146,11 @@ msgstr "" msgid "Cannot create private workspace of other users" msgstr "" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4031,7 +4185,7 @@ msgstr "" msgid "Cannot delete {0}" msgstr "" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" msgstr "" @@ -4039,7 +4193,7 @@ msgstr "" msgid "Cannot edit Standard Dashboards" msgstr "" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "" @@ -4051,7 +4205,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" -#: frappe/model/document.py:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "" @@ -4059,8 +4213,8 @@ msgstr "" msgid "Cannot edit filters for standard charts" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "" @@ -4068,27 +4222,27 @@ msgstr "" msgid "Cannot edit standard fields" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:884 msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1132 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "" @@ -4100,11 +4254,11 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "" @@ -4112,7 +4266,7 @@ msgstr "" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "" @@ -4129,11 +4283,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4201,15 +4355,6 @@ msgstr "" msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4247,8 +4392,9 @@ msgstr "" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
    \n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " -msgstr "" +"Warning: Incorrectly updating counters can prevent documents from getting created." +msgstr "Egy meglévő sorozat kezdő/aktuális sorszámának módosítása.
    \n\n" +"Figyelmeztetés: A számlálók helytelen frissítése megakadályozhatja a dokumentumok létrehozását." #. Label of the changed_at (Datetime) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -4317,7 +4463,7 @@ msgstr "" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "" @@ -4350,7 +4496,7 @@ msgstr "" msgid "Check" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "" @@ -4358,7 +4504,7 @@ msgstr "" msgid "Check columns to select, drag to set order." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "" @@ -4389,7 +4535,7 @@ msgstr "" #. DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Checking this will hide custom doctypes and reports cards in Links section" -msgstr "" +msgstr "Ennek bejelölésével elrejti az egyéni doctype-ok és jelentéskártyákat a Linkek részben" #: 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." @@ -4399,11 +4545,6 @@ msgstr "" msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "" -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "" @@ -4411,19 +4552,19 @@ msgstr "" #. Label of the child_doctype (Data) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Child Doctype" -msgstr "" +msgstr "Gyermek DocType" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4452,6 +4593,7 @@ msgid "Choose authentication method to be used by all users" 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 msgid "City" msgstr "" @@ -4466,7 +4608,7 @@ msgstr "" msgid "Clear" msgstr "" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "" @@ -4478,7 +4620,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4504,7 +4646,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "" @@ -4516,11 +4658,15 @@ msgstr "" msgid "Click On Customize to add your first widget" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "" @@ -4551,24 +4697,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4746,7 +4892,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4801,7 +4947,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:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4857,11 +5003,11 @@ msgstr "" msgid "Column Name cannot be empty" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4888,7 +5034,7 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "" @@ -4930,16 +5076,6 @@ msgstr "" msgid "Comment can only be edited by the owner" msgstr "" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "" @@ -4947,7 +5083,7 @@ msgstr "" #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "" @@ -4956,7 +5092,7 @@ msgstr "" msgid "Comments and Communications will be associated with this linked document" msgstr "" -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "" @@ -5028,12 +5164,12 @@ msgid "Company Name" msgstr "" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "" @@ -5113,8 +5249,8 @@ msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5128,6 +5264,11 @@ msgstr "" msgid "Condition JSON" msgstr "" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5153,11 +5294,11 @@ msgstr "" msgid "Configuration" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5182,7 +5323,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5201,7 +5342,7 @@ msgstr "Hozzáférés megerősítése" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "" @@ -5228,7 +5369,7 @@ msgstr "" msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "" @@ -5246,8 +5387,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "" @@ -5298,6 +5439,10 @@ msgstr "" msgid "Contact" msgstr "" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
    {0}" +msgstr "" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5355,15 +5500,13 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5371,24 +5514,12 @@ msgstr "" msgid "Content" msgstr "" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "" @@ -5456,7 +5587,7 @@ msgstr "" msgid "Copy embed code" msgstr "" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "" @@ -5464,12 +5595,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "" + #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5477,7 +5612,7 @@ msgstr "" msgid "Core Modules {0} cannot be searched in Global Search." msgstr "" -#: frappe/printing/page/print/print.js:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "" @@ -5485,7 +5620,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "" -#: frappe/model/document.py:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "" @@ -5493,15 +5628,15 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " -msgstr "Nem sikerült elindulni: " +msgid "Could not start up:" +msgstr "Nem sikerült elindulni:" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "" @@ -5546,13 +5681,14 @@ msgstr "" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "" @@ -5584,13 +5720,13 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5604,7 +5740,7 @@ msgid "Create Card" msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "" @@ -5638,12 +5774,12 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5651,7 +5787,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "" @@ -5663,7 +5799,7 @@ msgstr "" msgid "Create a Reminder" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "" @@ -5671,11 +5807,11 @@ msgstr "" msgid "Create a new record" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "" @@ -5691,7 +5827,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "" @@ -5701,7 +5837,7 @@ msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "" @@ -5717,7 +5853,7 @@ msgstr "" msgid "Created By" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "" @@ -5729,7 +5865,7 @@ msgstr "" msgid "Created On" msgstr "" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "" @@ -5819,7 +5955,7 @@ msgstr "" #. Label of the current_job_id (Link) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Current Job ID" -msgstr "" +msgstr "Jelenlegi Feladat ID" #. Label of the current_value (Int) field in DocType 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -6038,7 +6174,7 @@ msgstr "" #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "" @@ -6066,14 +6202,14 @@ msgstr "" msgid "Customizations for {0} exported to:
    {1}" msgstr "" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6092,7 +6228,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "" @@ -6170,7 +6306,7 @@ msgstr "" msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "" -#: frappe/desk/doctype/event/event.py:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "" @@ -6217,7 +6353,7 @@ msgstr "" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "" @@ -6276,7 +6412,6 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6289,7 +6424,6 @@ msgstr "" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6325,7 +6459,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "" @@ -6356,7 +6490,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6494,11 +6628,11 @@ msgstr "" msgid "Debug Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "" @@ -6660,11 +6794,11 @@ msgstr "" msgid "Default display currency" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 msgid "Default value for {0} must be in the list of options." msgstr "" @@ -6698,6 +6832,12 @@ msgstr "" msgid "Defines actions on states and the next step and allowed roles." msgstr "" +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6715,22 +6855,27 @@ 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/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "" @@ -6739,6 +6884,12 @@ msgstr "" 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 +msgid "Delete Background Exported Reports After (Hours)" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6748,7 +6899,7 @@ msgstr "" msgid "Delete Data" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6762,7 +6913,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6771,7 +6922,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "" @@ -6804,12 +6955,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6828,7 +6979,7 @@ msgstr "" #. Label of the deleted_doctype (Data) field in DocType 'Deleted Document' #: frappe/core/doctype/deleted_document/deleted_document.json msgid "Deleted DocType" -msgstr "" +msgstr "Törölt DocType" #. Name of a DocType #: frappe/core/doctype/deleted_document/deleted_document.json @@ -6845,11 +6996,15 @@ msgstr "" msgid "Deleted Name" msgstr "" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Törölt!" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "" @@ -6864,8 +7019,8 @@ msgstr "" #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " -msgstr "" +msgid "Deletion Steps" +msgstr "Törlési lépések" #: frappe/core/doctype/page/page.py:110 #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 @@ -6881,7 +7036,7 @@ msgstr "" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "" @@ -6908,7 +7063,7 @@ msgstr "" msgid "Dependencies" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "" @@ -6943,7 +7098,6 @@ msgstr "" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -6964,7 +7118,6 @@ msgstr "" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -6974,11 +7127,6 @@ msgstr "" msgid "Description" msgstr "" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -7062,7 +7210,7 @@ msgstr "" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "" @@ -7123,11 +7271,6 @@ msgstr "" msgid "Disable Comment Count" msgstr "" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7145,11 +7288,6 @@ msgstr "" msgid "Disable Document Sharing" msgstr "" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "" @@ -7159,6 +7297,11 @@ msgstr "" msgid "Disable SMTP server authentication" msgstr "" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7204,7 +7347,6 @@ msgstr "" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7219,7 +7361,6 @@ msgstr "" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "" @@ -7230,7 +7371,7 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "" @@ -7248,7 +7389,7 @@ msgstr "Elvet" msgid "Discard {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "" @@ -7271,7 +7412,7 @@ msgstr "" msgid "Discussion Topic" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7307,19 +7448,23 @@ msgstr "" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " -msgstr "" +msgid "Do Not Create New User" +msgstr "Ne hozzon létre új felhasználót" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7410,7 +7555,7 @@ msgstr "" msgid "DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1577 +#: frappe/core/doctype/doctype/doctype.py:1578 msgid "DocType {0} provided for the field {1} must have atleast one Link field" msgstr "" @@ -7425,7 +7570,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 "" +msgstr "DocType Esemény" #. Name of a DocType #: frappe/custom/doctype/doctype_layout/doctype_layout.json @@ -7455,13 +7600,13 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/widgets/widget_dialog.js:479 msgid "DocType View" -msgstr "" +msgstr "DocType Nézet" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "" @@ -7470,7 +7615,7 @@ msgstr "" msgid "DocType is a Table / Form in the application." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "" @@ -7489,7 +7634,7 @@ msgstr "" #. Description of the 'Document Type' (Link) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "DocType on which this Workflow is applicable." -msgstr "" +msgstr "DocType melyre ez a munkafolyamat alkalmazható." #: frappe/public/js/frappe/views/kanban/kanban_settings.js:4 msgid "DocType required" @@ -7503,7 +7648,7 @@ msgstr "" msgid "DocType {} not found" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "" @@ -7517,7 +7662,7 @@ msgstr "" msgid "Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "" @@ -7579,31 +7724,29 @@ msgstr "" msgid "Document Links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7745,13 +7888,13 @@ msgstr "" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 msgid "Document Type and Function are required to create a number card" msgstr "" @@ -7788,7 +7931,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "" @@ -7796,15 +7939,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "" @@ -7946,13 +8089,13 @@ msgstr "" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "" @@ -7979,7 +8122,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "" @@ -8042,7 +8185,7 @@ msgstr "" msgid "Drag to add state" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "" @@ -8075,7 +8218,7 @@ msgstr "" msgid "Duplicate Filter Name" msgstr "" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "" @@ -8174,17 +8317,17 @@ msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8192,7 +8335,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8202,7 +8345,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8231,7 +8374,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8249,7 +8392,7 @@ msgstr "" msgid "Edit Footer" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "" @@ -8334,7 +8477,7 @@ msgstr "" msgid "Edit to add content" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "" @@ -8343,7 +8486,7 @@ msgstr "" msgid "Edit your workflow visually using the Workflow Builder." msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "" @@ -8351,7 +8494,7 @@ msgstr "" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "" @@ -8390,11 +8533,14 @@ msgstr "" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8403,6 +8549,7 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8412,6 +8559,8 @@ msgstr "" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "" @@ -8443,7 +8592,7 @@ msgstr "" msgid "Email Account Name" msgstr "" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "" @@ -8531,6 +8680,7 @@ msgid "Email IDs" msgstr "" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "" @@ -8574,9 +8724,9 @@ msgstr "" msgid "Email Rule" msgstr "" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" msgstr "" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' @@ -8642,11 +8792,11 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "" @@ -8685,7 +8835,7 @@ msgstr "" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8693,7 +8843,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -8712,7 +8862,7 @@ msgstr "" msgid "Enable Address Autocompletion" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "" @@ -8738,11 +8888,6 @@ msgstr "" msgid "Enable Dynamic Client Registration" msgstr "" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -8820,7 +8965,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 "Ütemezett Feladatok Engedélyezése" #: frappe/core/doctype/rq_job/rq_job_list.js:23 msgid "Enable Scheduler" @@ -8836,11 +8981,6 @@ msgstr "" msgid "Enable Social Login" msgstr "" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "" @@ -8848,7 +8988,7 @@ msgstr "" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "" @@ -8860,12 +9000,6 @@ msgstr "" msgid "Enable developer mode to create a standard Web Template" msgstr "" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "" - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -8888,6 +9022,7 @@ msgstr "" #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -8900,6 +9035,7 @@ msgstr "" #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "" @@ -8925,14 +9061,10 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "" - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." msgstr "" #. Description of the 'Queue in Background (BETA)' (Check) field in DocType @@ -8949,11 +9081,11 @@ msgstr "" msgid "Encrypt Backups" msgstr "" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "" @@ -8965,7 +9097,7 @@ msgstr "Vége" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -8981,6 +9113,10 @@ msgstr "" msgid "End Date cannot be before Start Date!" msgstr "" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9025,7 +9161,7 @@ msgstr "" msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "" @@ -9095,10 +9231,17 @@ msgstr "" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9108,7 +9251,7 @@ msgstr "" msgid "Error" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "" @@ -9128,7 +9271,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 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 "" @@ -9156,9 +9299,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "" @@ -9178,19 +9321,19 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "" @@ -9247,7 +9390,7 @@ msgstr "" msgid "Events" msgstr "" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "" @@ -9331,7 +9474,7 @@ msgstr "" msgid "Execute Console script" msgstr "" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "" @@ -9339,7 +9482,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "" @@ -9365,12 +9508,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9398,7 +9541,9 @@ msgid "Expire Notification On" msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "" @@ -9426,13 +9571,13 @@ msgstr "" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9469,7 +9614,7 @@ msgstr "" msgid "Export Import Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "" @@ -9478,11 +9623,11 @@ msgstr "" msgid "Export Type" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "" @@ -9490,6 +9635,10 @@ msgstr "" msgid "Export as zip" msgstr "" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "" @@ -9582,7 +9731,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 "Sikertelen Feladatok Száma" #. Label of the failed_jobs (Int) field in DocType 'System Health Report #. Workers' @@ -9595,7 +9744,7 @@ msgstr "" msgid "Failed Logins (Last 30 days)" msgstr "" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "" @@ -9612,7 +9761,7 @@ msgstr "" msgid "Failed to complete setup" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "" @@ -9621,15 +9770,15 @@ msgstr "" msgid "Failed to connect to server" msgstr "" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "" @@ -9637,8 +9786,8 @@ msgstr "" msgid "Failed to enable scheduler: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "" @@ -9654,7 +9803,7 @@ msgstr "" msgid "Failed to generate preview of series" msgstr "" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "" @@ -9674,11 +9823,11 @@ msgstr "" msgid "Failed to optimize image: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "" @@ -9728,12 +9877,6 @@ msgstr "" msgid "Fax" msgstr "" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "" @@ -9791,17 +9934,17 @@ msgstr "" #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "" @@ -9814,7 +9957,7 @@ msgstr "" msgid "Field Description" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9844,7 +9987,7 @@ msgstr "" msgid "Field Type" msgstr "" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "" @@ -9870,11 +10013,11 @@ msgstr "" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "" -#: frappe/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "" -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9892,20 +10035,20 @@ 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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "" @@ -9921,15 +10064,15 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "" @@ -9952,7 +10095,7 @@ msgstr "" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -9965,7 +10108,7 @@ msgstr "" msgid "Fields Multicheck" msgstr "" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "" @@ -9973,7 +10116,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10001,7 +10144,7 @@ msgstr "" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10014,7 +10157,7 @@ msgstr "" msgid "File" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "" @@ -10067,7 +10210,7 @@ msgstr "" msgid "File backup is ready" msgstr "" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "" @@ -10075,7 +10218,7 @@ msgstr "" msgid "File not attached" msgstr "" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "" @@ -10084,11 +10227,11 @@ msgstr "" msgid "File too big" msgstr "" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "" @@ -10102,10 +10245,10 @@ msgstr "" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10142,11 +10285,11 @@ msgstr "" msgid "Filter Values" msgstr "" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10164,7 +10307,6 @@ msgstr "" msgid "Filtered Records" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "" @@ -10179,7 +10321,9 @@ msgstr "" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10201,6 +10345,11 @@ msgstr "" msgid "Filters Display" msgstr "" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10213,11 +10362,11 @@ msgstr "" msgid "Filters Section" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "" @@ -10230,18 +10379,18 @@ msgstr "" msgid "Filters {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1427 +#: frappe/public/js/frappe/views/reports/report_view.js:1429 msgid "Filters:" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 msgid "Find '{0}' in ..." msgstr "" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 msgid "Find {0} in {1}" msgstr "" @@ -10265,8 +10414,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "" @@ -10275,10 +10428,6 @@ msgstr "" msgid "First Success Message" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:49 -msgid "First Transaction" -msgstr "" - #: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." msgstr "" @@ -10329,11 +10478,11 @@ msgstr "" msgid "Fold" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1450 +#: frappe/core/doctype/doctype/doctype.py:1451 msgid "Fold can not be at the end of the form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1448 +#: frappe/core/doctype/doctype/doctype.py:1449 msgid "Fold must come before a Section Break" msgstr "" @@ -10351,7 +10500,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "" -#: frappe/core/doctype/file/file.py:472 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "" @@ -10458,7 +10607,7 @@ msgstr "" msgid "Footer HTML" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:75 +#: frappe/printing/doctype/letter_head/letter_head.py:81 msgid "Footer HTML set from attachment {0}" msgstr "" @@ -10495,7 +10644,7 @@ msgstr "" msgid "Footer Template Values" msgstr "" -#: frappe/printing/page/print/print.js:116 +#: frappe/printing/page/print/print.js:129 msgid "Footer might not be visible as {0} option is disabled" msgstr "" @@ -10513,7 +10662,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 "" +msgstr "DocType Link / DocType Action esetén" #. Label of the for_document (Dynamic Link) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -10535,7 +10684,8 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "For Links, enter the DocType as range.\n" "For Select, enter list of Options, each on a new line." -msgstr "" +msgstr "A Linkek esetében adja meg a DocType-t tartományként.\n" +"A Select (Kiválasztás) esetében adja meg az Options (Opciók) listáját, mindegyik új sorban." #. Label of the for_user (Link) field in DocType 'List Filter' #. Label of the for_user (Link) field in DocType 'Notification Log' @@ -10553,8 +10703,8 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10580,12 +10730,6 @@ msgstr "" msgid "For help see Client Script API and Examples" msgstr "" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "" - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "" @@ -10600,7 +10744,7 @@ msgstr "" msgid "For updating, you can update only selective columns." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "" @@ -10655,7 +10799,7 @@ 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:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "" @@ -10715,6 +10859,11 @@ msgstr "" msgid "Format Data" msgstr "" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "" @@ -10742,7 +10891,15 @@ msgstr "" msgid "Frappe" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "" @@ -10831,7 +10988,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "" @@ -10858,18 +11015,16 @@ msgstr "" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "" @@ -10895,12 +11050,12 @@ msgstr "" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" +msgid "Further sub-groups can only be created under records marked as 'Group'" msgstr "" #: frappe/core/doctype/communication/communication.js:291 @@ -10960,7 +11115,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "" @@ -10968,8 +11123,14 @@ msgstr "" msgid "Generate Random Password" msgstr "" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "" @@ -10992,7 +11153,7 @@ msgstr "" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "" @@ -11128,7 +11289,7 @@ msgid "Go to this URL after completing the form" msgstr "" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "" @@ -11176,10 +11337,6 @@ msgstr "" msgid "Google Calendar" msgstr "" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
    {0}" -msgstr "" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "" @@ -11298,11 +11455,6 @@ msgstr "" msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "" -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11379,14 +11531,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11436,7 +11584,6 @@ msgstr "" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11447,9 +11594,8 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11553,7 +11699,7 @@ msgstr "" msgid "Header HTML" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "" @@ -11611,6 +11757,12 @@ msgstr "" msgid "Hello" msgstr "" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "Szia," + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11676,7 +11828,7 @@ msgstr "" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "" @@ -11712,7 +11864,7 @@ msgstr "" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11745,11 +11897,6 @@ msgstr "" msgid "Hide Buttons" msgstr "" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "" - #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json @@ -11760,7 +11907,7 @@ 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 "Az egyedi DocType-ok és Jelentések elrejtése" #. Label of the hide_days (Check) field in DocType 'DocField' #. Label of the hide_days (Check) field in DocType 'Custom Field' @@ -11829,7 +11976,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -11843,7 +11990,7 @@ msgstr "" msgid "Hide descendant records of For Value." msgstr "" -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "" @@ -11892,11 +12039,8 @@ 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:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -11984,16 +12128,16 @@ msgstr "" #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -12078,7 +12222,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 "" +msgstr "Ha a Szigorú felhasználói engedély be van jelölve, és a felhasználó engedélye definiálva van egy DocType felhasználó részére, akkor az összes olyan dokumentumot, ahol a kapcsolat értéke üres, nem jelenik meg az adott felhasználó részére" #. Description of the 'Don't Override Status' (Check) field in DocType #. 'Workflow' @@ -12089,9 +12233,9 @@ msgstr "" msgid "If Checked workflow status will not override status in list view" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "" @@ -12208,7 +12352,7 @@ msgstr "" #. Description of the 'Roles' (Table) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used." -msgstr "" +msgstr "Ha be van állítva, csak az ilyen szerepkörrel rendelkező felhasználók férhetnek hozzá a táblázathoz. Ha nincs beállítva, akkor a DocType vagy a Report jogosultságok lesznek használva." #. Description of the 'User Type' (Link) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -12219,6 +12363,10 @@ msgstr "" msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12250,7 +12398,11 @@ msgstr "" msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "" -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "" @@ -12307,12 +12459,12 @@ msgstr "" msgid "Ignored Apps" msgstr "" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "" @@ -12373,11 +12525,11 @@ msgstr "" msgid "Image Width" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 msgid "Image field must be a valid fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "" @@ -12399,15 +12551,15 @@ msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "" @@ -12433,7 +12585,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12561,7 +12713,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 "Listaszűrőben" #. Label of the in_list_view (Check) field in DocType 'DocField' #. Label of the in_list_view (Check) field in DocType 'Custom Field' @@ -12661,15 +12813,16 @@ msgstr "" msgid "Include Web View Link in Email" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "" @@ -12716,7 +12869,7 @@ msgstr "" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "" @@ -12728,7 +12881,7 @@ msgstr "" msgid "Incorrect URL" msgstr "" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "" @@ -12736,11 +12889,11 @@ msgstr "" msgid "Incorrect Verification code" msgstr "" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "" @@ -12752,7 +12905,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "" @@ -12827,7 +12980,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "" @@ -12843,7 +12996,7 @@ msgstr "" msgid "Insert Below" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "" @@ -12861,8 +13014,12 @@ msgstr "" msgid "Insert Style" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "" @@ -12879,7 +13036,7 @@ msgid "Installed Applications" msgstr "" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "" @@ -12896,19 +13053,19 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" msgstr "" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "" @@ -13003,7 +13160,7 @@ msgstr "" #. Label of the introspection_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Introspection URI" -msgstr "" +msgstr "Introspektív URI" #. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization #. Code' @@ -13012,9 +13169,9 @@ msgid "Invalid" msgstr "" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "" @@ -13022,7 +13179,7 @@ msgstr "" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "" @@ -13038,7 +13195,7 @@ msgstr "" msgid "Invalid Code. Please try again." msgstr "Érvénytelen kód. Kérjük próbáld újra." -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "" @@ -13058,16 +13215,20 @@ msgstr "" msgid "Invalid DocType: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13099,7 +13260,7 @@ msgstr "" msgid "Invalid Mail Server. Please rectify and try again." msgstr "" -#: frappe/model/naming.py:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "" @@ -13108,8 +13269,8 @@ msgstr "" msgid "Invalid Operation" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "" @@ -13121,25 +13282,25 @@ msgstr "" msgid "Invalid Output Format" msgstr "" -#: frappe/model/base_document.py:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "" @@ -13148,7 +13309,7 @@ msgstr "" msgid "Invalid Search Field {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "" @@ -13156,8 +13317,8 @@ msgstr "" msgid "Invalid Transition" msgstr "" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13169,49 +13330,53 @@ msgstr "" #: frappe/public/js/frappe/ui/field_group.js:137 msgid "Invalid Values" -msgstr "" +msgstr "Érvénytelen Értékek" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "" @@ -13223,31 +13388,27 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13255,11 +13416,11 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13267,20 +13428,28 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "" @@ -13288,6 +13457,10 @@ msgstr "" msgid "Invalid naming series {}: dot (.) missing" msgstr "" +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "" @@ -13296,19 +13469,27 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13316,7 +13497,7 @@ msgstr "" msgid "Invalid template file for import" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "" @@ -13325,20 +13506,20 @@ msgstr "" msgid "Invalid username or password" msgstr "" -#: frappe/model/naming.py:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "" @@ -13347,10 +13528,47 @@ msgstr "" msgid "Inverse" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "" @@ -13370,12 +13588,12 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Is Calendar and Gantt" -msgstr "" +msgstr "Naptár és Gantt" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "" @@ -13397,7 +13615,7 @@ msgstr "" #: frappe/core/doctype/role/role.json #: frappe/core/doctype/user_document_type/user_document_type.json msgid "Is Custom" -msgstr "" +msgstr "Egyedi" #. Label of the is_custom_field (Check) field in DocType 'Customize Form Field' #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -13417,7 +13635,7 @@ msgstr "" #. Label of the is_dynamic_url (Check) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Is Dynamic URL?" -msgstr "" +msgstr "Dinamikus URL?" #. Label of the is_folder (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json @@ -13428,10 +13646,14 @@ msgstr "" msgid "Is Global" msgstr "" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" -msgstr "" +msgstr "Rejtett" #. Label of the is_home_folder (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json @@ -13454,8 +13676,13 @@ msgstr "" msgid "Is Primary" msgstr "" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 msgid "Is Primary Contact" msgstr "" @@ -13486,7 +13713,7 @@ msgstr "" msgid "Is Published Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "" @@ -13494,13 +13721,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 "Lekérdezési Jelentés" #. 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 "Távoli kérés?" #. Label of the is_setup_complete (Check) field in DocType 'Installed #. Application' @@ -13511,7 +13738,7 @@ msgstr "" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "" @@ -13547,7 +13774,7 @@ msgstr "" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "" @@ -13559,7 +13786,7 @@ 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 "Rendszer Által Generált" #. Label of the istable (Check) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json @@ -13569,7 +13796,7 @@ 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 "Tábla Mező" #. Label of the is_tree (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -13681,27 +13908,27 @@ msgstr "" #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/rq_job/rq_job.json msgid "Job ID" -msgstr "" +msgstr "Feladat ID" #. Label of the job_id (Link) field in DocType 'Submission Queue' #: frappe/core/doctype/submission_queue/submission_queue.json msgid "Job Id" -msgstr "" +msgstr "Feladat 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 "Feladat Adatok" #. Label of the job_name (Data) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "Job Name" -msgstr "" +msgstr "Feladat Név" #. 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 "Feladat Állapot" #: frappe/core/doctype/rq_job/rq_job.js:24 msgid "Job Stopped Successfully" @@ -13736,7 +13963,7 @@ msgstr "" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Kanban" -msgstr "" +msgstr "Kanban" #. Name of a DocType #. Label of the kanban_board (Link) field in DocType 'Workspace Shortcut' @@ -13753,11 +13980,11 @@ msgstr "" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13778,12 +14005,14 @@ msgstr "" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -13836,13 +14065,13 @@ msgstr "" #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Auth" -msgstr "" +msgstr "LDAP Hitelesítés" #. Label of the ldap_custom_settings_section (Section Break) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Custom Settings" -msgstr "" +msgstr "LDAP Egyéni Beállítások" #. Label of the ldap_email_field (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -13880,7 +14109,7 @@ msgstr "" #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Group Member attribute" -msgstr "" +msgstr "LDAP Csoport Tag Attribútum" #. Label of the ldap_last_name_field (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -13919,7 +14148,7 @@ msgstr "" #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Search and Paths" -msgstr "" +msgstr "LDAP Keresés és Elérési Utak" #. Label of the ldap_security (Section Break) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -13930,7 +14159,7 @@ msgstr "" #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP Server Settings" -msgstr "" +msgstr "LDAP Szerver Beállításai" #. Label of the ldap_server_url (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -13963,12 +14192,12 @@ msgstr "" #. Label of the ldap_search_path_group (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP search path for Groups" -msgstr "" +msgstr "LDAP keresési útvonal a Csoportok számára" #. Label of the ldap_search_path_user (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "LDAP search path for Users" -msgstr "" +msgstr "LDAP keresési útvonal Felhasználók számára" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:102 msgid "LDAP settings incorrect. validation response was: {0}" @@ -14045,7 +14274,7 @@ msgstr "" msgid "Landing Page" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "" @@ -14053,10 +14282,13 @@ msgstr "" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14110,7 +14342,7 @@ 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 "Utolsó Szívverés" #. Label of the last_ip (Read Only) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -14144,8 +14376,12 @@ msgstr "" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "" @@ -14160,11 +14396,16 @@ msgstr "" msgid "Last Quarter" msgstr "" +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" + #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json msgid "Last Reset Password Key Generated On" -msgstr "" +msgstr "Utolsó Jelszó Visszaállítás Generálásának Dátuma" #. Label of the datetime_last_run (Datetime) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json @@ -14176,11 +14417,6 @@ msgstr "" msgid "Last Sync On" msgstr "" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14262,12 +14498,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 "Bal Alsó" #. 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 "Bal Közép" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:58 msgid "Left this conversation" @@ -14291,7 +14527,7 @@ msgstr "" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "" @@ -14340,8 +14576,8 @@ 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:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14369,7 +14605,7 @@ msgstr "" msgid "Letter Head Scripts" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "" @@ -14386,7 +14622,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "" @@ -14407,19 +14643,19 @@ msgstr "" #. Label of the license_type (Select) field in DocType 'Package' #: frappe/core/doctype/package/package.json msgid "License Type" -msgstr "" +msgstr "Licensz Típus" #. Option for the 'Desk Theme' (Select) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Light" -msgstr "" +msgstr "Világos" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Light Blue" -msgstr "" +msgstr "Világoskék" #. Label of the light_color (Link) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json @@ -14436,20 +14672,6 @@ msgstr "" msgid "Like" msgstr "" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "" @@ -14490,6 +14712,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14503,6 +14726,7 @@ msgstr "" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "" @@ -14514,13 +14738,13 @@ 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 "Hivatkozás Száma" #. Label of the link_details_section (Section Break) field in DocType #. 'Workspace Link' #: frappe/desk/doctype/workspace_link/workspace_link.json msgid "Link Details" -msgstr "" +msgstr "Hivatkozás Részletei" #. Label of the link_doctype (Link) field in DocType 'Activity Log' #. Label of the link_doctype (Link) field in DocType 'Communication Link' @@ -14529,7 +14753,7 @@ msgstr "" #: frappe/core/doctype/communication_link/communication_link.json #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Link DocType" -msgstr "" +msgstr "Elérési Link DocType" #. Label of the link_doctype (Link) field in DocType 'Dynamic Link' #: frappe/core/doctype/dynamic_link/dynamic_link.json @@ -14545,7 +14769,7 @@ msgstr "" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Link Field Results Limit" -msgstr "" +msgstr "Hivatkozásmező Találati Korlátja" #. Label of the link_fieldname (Data) field in DocType 'DocType Link' #: frappe/core/doctype/doctype_link/doctype_link.json @@ -14602,7 +14826,7 @@ msgstr "" #: frappe/public/js/frappe/views/workspace/workspace.js:410 #: frappe/public/js/frappe/widgets/widget_dialog.js:273 msgid "Link Type" -msgstr "" +msgstr "Hivatkozás Típusa" #: frappe/public/js/frappe/widgets/widget_dialog.js:359 msgid "Link Type in Row" @@ -14615,7 +14839,7 @@ msgstr "" #. Description of the 'Home Page' (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Link that is the website home page. Standard Links (home, login, products, blog, about, contact)" -msgstr "" +msgstr "A weboldal kezdőlapjára mutató hivatkozás. Szabványos hivatkozások a (home, login, products, blog, about, contact)" #. Description of the 'URL' (Data) field in DocType 'Top Bar Item' #: frappe/website/doctype/top_bar_item/top_bar_item.json @@ -14633,10 +14857,15 @@ msgstr "" msgid "Linked With" msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +msgstr "" + #. Label of the links (Table) field in DocType 'Address' #. Label of the links (Table) field in DocType 'Contact' #. Label of the links_section (Tab Break) field in DocType 'DocType' #. Label of the links (Table) field in DocType 'Customize Form' +#. Label of the links (Table) field in DocType 'Event' #. Label of the links (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14644,6 +14873,7 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "" @@ -14663,12 +14893,12 @@ msgstr "" #. 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "List / Search Settings" -msgstr "" +msgstr "Lista / Keresési Beállítások" #. Label of the list_columns (Table) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "List Columns" -msgstr "" +msgstr "Lista Oszlopok" #. Name of a DocType #: frappe/desk/doctype/list_filter/list_filter.json @@ -14685,7 +14915,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14708,7 +14938,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 "" +msgstr "Listázza mint [{ \"felirat\": _ ( \"Állások\"), \"útvonal\": \"munkahely\"}]" #. Description of the 'Send Notification to' (Small Text) field in DocType #. 'Email Account' @@ -14724,9 +14954,9 @@ msgstr "" #. Label of the list_setting_message (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "List setting message" -msgstr "" +msgstr "Lista beállítási üzenet" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "" @@ -14735,9 +14965,8 @@ msgstr "" msgid "Load Balancing" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14754,10 +14983,10 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "" @@ -14769,7 +14998,7 @@ msgstr "" msgid "Loading import file..." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "" @@ -14779,7 +15008,7 @@ msgstr "" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "" @@ -14807,7 +15036,7 @@ msgstr "" #. Label of the ref_doctype (Link) field in DocType 'Logs To Clear' #: frappe/core/doctype/logs_to_clear/logs_to_clear.json msgid "Log DocType" -msgstr "" +msgstr "Napló DocType" #: frappe/templates/emails/login_with_email_link.html:27 msgid "Log In To {0}" @@ -14816,7 +15045,7 @@ msgstr "" #. Label of the log_index (Int) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Log Index" -msgstr "" +msgstr "Napló Index" #. Name of a DocType #: frappe/core/doctype/log_setting_user/log_setting_user.json @@ -14840,7 +15069,7 @@ msgstr "" msgid "Log out" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "" @@ -14880,13 +15109,13 @@ msgstr "" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Login Methods" -msgstr "" +msgstr "Bejelentkezés Módszerek" #. 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 "Bejelentkezési Oldal" #: frappe/www/login.py:156 msgid "Login To {0}" @@ -14900,7 +15129,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -14908,7 +15137,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "" @@ -14943,7 +15172,7 @@ msgstr "" #: frappe/www/login.html:116 msgid "Login with Frappe Cloud" -msgstr "" +msgstr "Bejelentkezés Frappe Cloud Segítségével" #: frappe/www/login.html:49 msgid "Login with LDAP" @@ -14953,15 +15182,15 @@ msgstr "" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Login with email link" -msgstr "" +msgstr "Bejelentkezés e-mail linkkel" #. 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 "Bejelentkezés e-mail linkkel lejárati idő (percben)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -14980,7 +15209,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "" @@ -15009,7 +15238,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 "Törlendő Naplók" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -15046,7 +15275,7 @@ msgstr "" #. Option for the 'License Type' (Select) field in DocType 'Package' #: frappe/core/doctype/package/package.json msgid "MIT License" -msgstr "" +msgstr "MIT Licensz" #: frappe/desk/page/setup_wizard/install_fixtures.py:48 msgid "Madam" @@ -15081,17 +15310,20 @@ msgstr "" #. Label of the major (Int) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json msgid "Major" -msgstr "" +msgstr "Major" #. 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 +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "" #. Label of the make_attachment_public (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Make Attachment Public (by default)" -msgstr "" +msgstr "Csatolmány nyilvánossá tétele (alapértelmezés szerint)" #. Label of the make_attachments_public (Check) field in DocType 'DocType' #. Label of the make_attachments_public (Check) field in DocType 'Customize @@ -15099,13 +15331,13 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Make Attachments Public by Default" -msgstr "" +msgstr "Csatolmányok alapértelmezés szerint nyilvánossá tétele" #. 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 "A letiltás előtt mindenképpen konfiguráljon egy közösségi bejelentkezési kulcsot, hogy megakadályozza a zárolást." #: frappe/utils/password_strength.py:92 msgid "Make use of longer keyboard patterns" @@ -15158,9 +15390,9 @@ msgstr "" #. Label of the mandatory_depends_on (Code) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Mandatory Depends On (JS)" -msgstr "" +msgstr "Kötelezően függ (JS)" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "" @@ -15172,15 +15404,15 @@ msgstr "" msgid "Mandatory field: {0}" msgstr "" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "" @@ -15192,7 +15424,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 "Térkép" #: frappe/public/js/frappe/data_import/import_preview.js:194 #: frappe/public/js/frappe/data_import/import_preview.js:306 @@ -15219,22 +15451,22 @@ msgstr "" #. Label of the margin_bottom (Float) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Margin Bottom" -msgstr "" +msgstr "Alsó Margó" #. Label of the margin_left (Float) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Margin Left" -msgstr "" +msgstr "Bal Margó" #. Label of the margin_right (Float) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Margin Right" -msgstr "" +msgstr "Jobb Margó" #. Label of the margin_top (Float) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Margin Top" -msgstr "" +msgstr "Felső Margó" #. Label of the mariadb_variables_section (Section Break) field in DocType #. 'System Health Report' @@ -15261,10 +15493,8 @@ msgid "Mark as Unread" msgstr "" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15312,12 +15542,12 @@ msgstr "" #. Label of the max_file_size (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Max File Size (MB)" -msgstr "" +msgstr "Max Fájl Méret (MB)" #. Label of the max_height (Data) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Max Height" -msgstr "" +msgstr "Max Magasság" #. Label of the max_length (Int) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json @@ -15337,15 +15567,21 @@ msgstr "" #. Label of the max_attachment_size (Int) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Max attachment size" -msgstr "" +msgstr "Max csatolmány méret" #. Label of the max_auto_email_report_per_user (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Max auto email report per user" +msgstr "Max automatikus e-mail jelentés felhasználónként" + +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1342 +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "" @@ -15354,20 +15590,15 @@ msgstr "" msgid "Maximum" msgstr "" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "" -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "" -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "" @@ -15383,7 +15614,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15396,15 +15627,15 @@ msgstr "" msgid "Meeting" msgstr "" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" -msgstr "" +msgstr "Megfelel a Feltételeknek?" #. Group in Email Group's connections #: frappe/email/doctype/email_group/email_group.json msgid "Members" -msgstr "" +msgstr "Tagok" #. Label of the cache_memory_usage (Data) field in DocType 'System Health #. Report' @@ -15414,7 +15645,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63 msgid "Memory Usage in MB" -msgstr "" +msgstr "Memóriahasználat MB-ban" #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json @@ -15437,7 +15668,7 @@ msgstr "" msgid "Merge with existing" msgstr "" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "" @@ -15463,7 +15694,7 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15501,9 +15732,9 @@ msgstr "" #. Label of the message_type (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Message Type" -msgstr "" +msgstr "Üzenet Típusa" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "" @@ -15518,7 +15749,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 "A sikeres befejezéskor megjelenő üzenet" #. Label of the message_id (Code) field in DocType 'Unhandled Email' #: frappe/email/doctype/unhandled_email/unhandled_email.json @@ -15528,36 +15759,28 @@ msgstr "" #. Label of the messages (Code) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Messages" -msgstr "" +msgstr "Üzenetek" #. Label of the meta_section (Section Break) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Meta" -msgstr "" +msgstr "Meta" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "" @@ -15565,17 +15788,17 @@ msgstr "" #. Label of the meta_description (Small Text) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Meta description" -msgstr "" +msgstr "Meta leírás" #. Label of the meta_image (Attach Image) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Meta image" -msgstr "" +msgstr "Meta kép" #. Label of the meta_title (Data) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Meta title" -msgstr "" +msgstr "Meta cím" #: frappe/website/doctype/web_page/web_page.js:110 msgid "Meta title for SEO" @@ -15610,14 +15833,14 @@ msgstr "" msgid "Method Not Allowed" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Mid Center" -msgstr "" +msgstr "Középső középpont" #. Label of the middle_name (Data) field in DocType 'Contact' #. Label of the middle_name (Data) field in DocType 'User' @@ -15626,6 +15849,11 @@ msgstr "" msgid "Middle Name" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15654,7 +15882,7 @@ msgstr "" #. Label of the minor (Int) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json msgid "Minor" -msgstr "" +msgstr "Minor" #: frappe/public/js/frappe/form/controls/duration.js:30 msgctxt "Duration" @@ -15692,11 +15920,11 @@ msgstr "" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "" @@ -15732,14 +15960,15 @@ msgstr "" msgid "Mobile No" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "" + #. Label of the modal_trigger (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Modal Trigger" -msgstr "" - -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "" +msgstr "Modális Kiváltó" #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' @@ -15761,7 +15990,7 @@ msgstr "" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -15792,7 +16021,7 @@ msgstr "" #: frappe/custom/doctype/property_setter/property_setter.json #: frappe/website/doctype/web_page/web_page.json msgid "Module (for export)" -msgstr "" +msgstr "Modul (exportálásra)" #. Name of a DocType #. Label of a Link in the Build Workspace @@ -15805,7 +16034,7 @@ msgstr "" #. Label of the module_html (HTML) field in DocType 'Module Profile' #: frappe/core/doctype/module_profile/module_profile.json msgid "Module HTML" -msgstr "" +msgstr "HTML Modul" #. Label of the module_name (Data) field in DocType 'Module Def' #. Label of the module_name (Data) field in DocType 'Desktop Icon' @@ -15832,7 +16061,7 @@ 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 "Modulprofil Név" #: frappe/desk/doctype/module_onboarding/module_onboarding.py:69 msgid "Module onboarding progress reset" @@ -15882,7 +16111,7 @@ msgstr "" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Monospace" -msgstr "" +msgstr "Monospace" #: frappe/public/js/frappe/views/calendar/calendar.js:275 msgid "Month" @@ -15937,10 +16166,12 @@ msgstr "" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "" @@ -15959,7 +16190,7 @@ msgstr "" msgid "Most Used" msgstr "" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "" @@ -15970,7 +16201,7 @@ msgstr "" msgid "Move" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "" @@ -16006,20 +16237,20 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 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 "A következő lépésre lép, ha a kiemelt területen belülre kattint." #. Description of the 'Parent Element Selector' (Data) field in DocType 'Form #. Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Mozilla doesn't support :has() so you can pass parent selector here as workaround" -msgstr "" +msgstr "A Mozilla nem támogatja a :has() funkciót, így a szülői szelektor átadható itt, mint megoldás" #: frappe/desk/page/setup_wizard/install_fixtures.py:43 msgid "Mr" @@ -16033,7 +16264,7 @@ msgstr "" msgid "Ms" msgstr "" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "" @@ -16047,7 +16278,7 @@ msgstr "" #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Must be enclosed in '()' and include '{0}', which is a placeholder for the user/login name. i.e. (&(objectclass=user)(uid={0}))" -msgstr "" +msgstr "A '()'-ba kell zárni, és tartalmaznia kell a '{0}'-t, amely a felhasználó/bejelentkezés nevének helyőrzője. pl. (&(objectclass=user)(uid={0}))" #. Description of the 'Image Field' (Data) field in DocType 'DocType' #. Description of the 'Image Field' (Data) field in DocType 'Customize Form' @@ -16056,7 +16287,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "" @@ -16074,7 +16305,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16091,7 +16322,7 @@ msgstr "" #. Option for the 'Database Engine' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "MyISAM" -msgstr "" +msgstr "MyISAM" #: frappe/workflow/doctype/workflow/workflow.js:19 msgid "NOTE: If you add states or transitions in the table, it will be reflected in the Workflow Builder but you will have to position them manually. Also Workflow Builder is currently in BETA." @@ -16101,7 +16332,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 "" +msgstr "MEGJEGYZÉS: Ez a mező már elavult. Kérjük, állítsa be újra az LDAP-t, hogy az újabb beállításokkal működjön" #. Label of the fieldname (Data) field in DocType 'DocField' #. Label of the fieldname (Data) field in DocType 'Customize Form Field' @@ -16112,9 +16343,9 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16124,11 +16355,11 @@ msgstr "" msgid "Name (Doc Name)" msgstr "" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "" @@ -16140,7 +16371,7 @@ msgstr "" msgid "Name of the new Print Format" msgstr "" -#: frappe/model/naming.py:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "" @@ -16164,14 +16395,16 @@ msgstr "" msgid "Naming Options:\n" "
    1. field:[fieldname] - By Field
    2. naming_series: - By Naming Series (field called naming_series must be present)
    3. Prompt - Prompt user for a name
    4. [series] - Series by prefix (separated by a dot); for example PRE.#####
    5. \n" "
    6. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
    " -msgstr "" +msgstr "Elnevezési lehetőségek:\n" +"
    1. mező:[mezőnév] - Mező szerint
    2. névezési_sorozat: - Elnevezési sorozat szerint (a névezési_sorozat nevű mezőnek jelen kell lennie)
    3. Prompt - Név kérése a felhasználótól
    4. [sorozat] - Sorozat előtaggal (ponttal elválasztva); például PRE.#####
    5. \n" +"
    6. formátum:PÉLDA-{MM}több szó{fieldname1}-{fieldname2}-{#####} - Cserélje ki az összes zárójeles szót (mezőnevek, dátumszavak (NN, HH, ÉÉ), sorozat) az értékükre. A zárójeleken kívül bármilyen karakter használható.
    " #. 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 "Elnevezési Szabály" #. Label of the naming_series_tab (Tab Break) field in DocType 'Document Naming #. Settings' @@ -16179,7 +16412,7 @@ msgstr "" msgid "Naming Series" msgstr "" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "" @@ -16189,7 +16422,7 @@ msgstr "" #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Navbar" -msgstr "" +msgstr "Navigációs Sáv" #. Name of a DocType #: frappe/core/doctype/navbar_item/navbar_item.json @@ -16216,12 +16449,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16234,9 +16467,13 @@ msgstr "" #. 'User' #: frappe/core/doctype/user/user.json msgid "Navigation Settings" +msgstr "Navigációs Beállítások" + +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" msgstr "" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16244,7 +16481,7 @@ msgstr "" msgid "Negative Value" msgstr "" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16257,6 +16494,12 @@ msgstr "" msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +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 @@ -16265,7 +16508,7 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16286,10 +16529,6 @@ msgstr "" msgid "New Chart" msgstr "" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "" @@ -16298,15 +16537,15 @@ msgstr "" msgid "New Custom Block" msgstr "" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 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 "Új Dokumentum Űrlap" #: frappe/desk/doctype/notification_log/notification_log.py:154 msgid "New Document Shared {0}" @@ -16330,7 +16569,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "" @@ -16365,12 +16604,12 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "" @@ -16379,7 +16618,7 @@ msgstr "" msgid "New Quick List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "" @@ -16397,8 +16636,8 @@ msgstr "" msgid "New Users (Last 30 days)" msgstr "" -#: frappe/core/doctype/version/version_view.html:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "" @@ -16441,7 +16680,7 @@ msgstr "" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "New users will have to be manually registered by system managers." -msgstr "" +msgstr "Az új felhasználókat a rendszergazdáknak manuálisan kell regisztrálniuk." #. Description of the 'Set Value' (Small Text) field in DocType 'Property #. Setter' @@ -16455,13 +16694,13 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "" @@ -16477,7 +16716,7 @@ msgstr "" msgid "New {0} {1} created" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "" @@ -16485,7 +16724,7 @@ msgstr "" msgid "New {} releases for the following apps are available" msgstr "" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "" @@ -16498,7 +16737,7 @@ msgstr "" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16541,12 +16780,12 @@ 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 "Következő Végrehajtás" #. 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 "Következő Űrlap Túra" #: frappe/public/js/frappe/ui/filters/filter.js:696 msgid "Next Month" @@ -16573,7 +16812,7 @@ 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 "Következő Lépés Feltétele" #. Label of the next_sync_token (Password) field in DocType 'Google Calendar' #. Label of the next_sync_token (Password) field in DocType 'Google Contacts' @@ -16597,7 +16836,7 @@ 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 "Következő Kattintáskor" #. Option for the 'Standard' (Select) field in DocType 'Page' #. Option for the 'Is Standard' (Select) field in DocType 'Report' @@ -16605,14 +16844,15 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16662,6 +16902,10 @@ msgstr "" msgid "No Email Accounts Assigned" msgstr "" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "" @@ -16697,15 +16941,15 @@ msgstr "" msgid "No Label" msgstr "" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: frappe/public/js/frappe/list/bulk_operations.js:98 #: frappe/public/js/frappe/list/bulk_operations.js:170 #: frappe/utils/weasyprint.py:52 msgid "No Letterhead" msgstr "" -#: frappe/model/naming.py:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "" @@ -16713,7 +16957,7 @@ msgstr "" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "" @@ -16733,11 +16977,11 @@ msgstr "" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "" @@ -16753,11 +16997,11 @@ msgstr "" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16765,7 +17009,7 @@ msgstr "" msgid "No Suggestions" msgstr "" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "" @@ -16777,7 +17021,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "" @@ -16805,23 +17049,19 @@ msgstr "" msgid "No changes to update" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " -msgstr "" +msgid "No comments yet." +msgstr "Nincs még hozzászólás." #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "" @@ -16837,11 +17077,15 @@ msgstr "" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16865,7 +17109,7 @@ msgstr "" msgid "No matching records. Search something new" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "" @@ -16909,7 +17153,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "" @@ -16921,7 +17165,7 @@ msgstr "" msgid "No records deleted" msgstr "" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "" @@ -16937,7 +17181,7 @@ msgstr "" msgid "No rows" msgstr "" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -16957,11 +17201,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -16970,7 +17214,7 @@ msgid "No {0} mail" msgstr "" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -17006,14 +17250,14 @@ 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 "Normalizált Példányok" #. Label of the normalized_query (Data) field in DocType 'Recorder Query' #: frappe/core/doctype/recorder_query/recorder_query.json msgid "Normalized Query" -msgstr "" +msgstr "Normalizált Lekérdezés" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "" @@ -17034,14 +17278,14 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "" #. Label of the not_helpful (Int) field in DocType 'Help Article' #: frappe/website/doctype/help_article/help_article.json msgid "Not Helpful" -msgstr "" +msgstr "Nem Hasznos" #: frappe/public/js/frappe/ui/filters/filter.js:21 msgid "Not In" @@ -17060,20 +17304,19 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17082,10 +17325,10 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "" @@ -17117,7 +17360,7 @@ msgstr "" msgid "Not a valid User Image." msgstr "" -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "" @@ -17133,11 +17376,11 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "" @@ -17161,27 +17404,27 @@ msgstr "" msgid "Not in Developer Mode" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17216,7 +17459,7 @@ msgstr "" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17240,10 +17483,9 @@ msgstr "" msgid "Nothing left to undo" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "" @@ -17289,15 +17531,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17348,7 +17590,7 @@ msgstr "" msgid "Notify users with a popup when they log in" msgstr "" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "" @@ -17373,7 +17615,7 @@ msgstr "" #. Card' #: frappe/desk/doctype/workspace_number_card/workspace_number_card.json msgid "Number Card Name" -msgstr "" +msgstr "Számkártya Neve" #. Label of the number_cards_tab (Tab Break) field in DocType 'Workspace' #. Label of the number_cards (Table) field in DocType 'Workspace' @@ -17404,14 +17646,14 @@ msgstr "" #. Label of the number_of_queries (Int) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "Number of Queries" -msgstr "" +msgstr "Lekérdezések Száma" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17431,7 +17673,7 @@ msgstr "" #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Number of days after which the document Web View link shared on email will be expired" -msgstr "" +msgstr "Azon napok száma, amelyek elteltével az e-mailben megosztott dokumentum Webes megtekintés linkje lejár" #. Label of the cache_keys (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -17446,7 +17688,7 @@ msgstr "" #. Option for the 'Method' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "OAuth" -msgstr "" +msgstr "OAuth" #. Name of a DocType #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json @@ -17503,7 +17745,7 @@ msgstr "" #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "OPTIONS" -msgstr "" +msgstr "OPCIÓK" #: frappe/public/js/form_builder/components/Tabs.vue:190 msgid "OR" @@ -17513,18 +17755,18 @@ msgstr "" #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "OTP App" -msgstr "" +msgstr "OTP Alkalmazás" #. Label of the otp_issuer_name (Data) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "OTP Issuer Name" msgstr "" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "" @@ -17552,7 +17794,7 @@ msgstr "" #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Office 365" -msgstr "" +msgstr "Office 365" #: frappe/core/doctype/server_script/server_script.js:36 msgid "Official Documentation" @@ -17561,12 +17803,12 @@ msgstr "" #. Label of the offset_x (Int) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Offset X" -msgstr "" +msgstr "Eltolás X" #. Label of the offset_y (Int) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Offset Y" -msgstr "" +msgstr "Eltolás Y" #: frappe/database/query.py:121 msgid "Offset must be a non-negative integer" @@ -17601,7 +17843,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 "Engedélyezés Fizetéskor" #. Option for the 'DocType Event' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json @@ -17631,7 +17873,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 "" +msgstr "Ha ezt az opciót bejelöli, az URL-t jinja sablon karakterláncként kezeli a rendszer" #: frappe/public/js/frappe/ui/filters/filter.js:66 #: frappe/public/js/frappe/ui/filters/filter.js:72 @@ -17643,7 +17885,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "" @@ -17651,7 +17893,7 @@ msgstr "" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/public/js/frappe/widgets/widget_dialog.js:335 msgid "Onboard" -msgstr "" +msgstr "Betanítás" #: frappe/public/js/frappe/widgets/widget_dialog.js:232 msgid "Onboarding Name" @@ -17665,7 +17907,7 @@ msgstr "" #. Label of the onboarding_status (Small Text) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Onboarding Status" -msgstr "" +msgstr "Betanítás Állapot" #. Name of a DocType #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -17683,7 +17925,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "" @@ -17728,7 +17970,7 @@ msgstr "" msgid "Only Allow Edit For" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "" @@ -17745,7 +17987,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "" @@ -17753,7 +17995,7 @@ msgstr "" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/public/js/frappe/widgets/widget_dialog.js:328 msgid "Only for" -msgstr "" +msgstr "Csak a" #: 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." @@ -17764,19 +18006,19 @@ msgstr "" msgid "Only one {0} can be set as primary." msgstr "" -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17846,7 +18088,7 @@ msgstr "" msgid "Open Settings" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "" @@ -17864,7 +18106,7 @@ msgstr "" msgid "Open a module or tool" msgstr "" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "" @@ -17872,7 +18114,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17887,25 +18129,29 @@ msgstr "" #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "" #. Label of the openid_configuration (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "OpenID Configuration" +msgstr "OpenID Konfiguráció" + +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" msgstr "" #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" -msgstr "" +msgstr "OpenLDAP" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json @@ -17917,7 +18163,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "" @@ -17943,7 +18189,7 @@ msgstr "" msgid "Option 3" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "" @@ -17963,6 +18209,7 @@ msgstr "" #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -17971,11 +18218,12 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "" @@ -17984,7 +18232,7 @@ msgstr "" msgid "Options Help" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "" @@ -17992,7 +18240,7 @@ msgstr "" msgid "Options for select. Each option on a new line." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 msgid "Options for {0} must be set before setting the default value." msgstr "" @@ -18000,7 +18248,7 @@ msgstr "" msgid "Options is required for field {0} of type {1}" msgstr "" -#: frappe/model/base_document.py:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "" @@ -18009,14 +18257,14 @@ msgstr "" #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Orange" -msgstr "" +msgstr "Narancssárga" #. Label of the order (Code) field in DocType 'Kanban Board Column' #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Order" msgstr "" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18032,12 +18280,12 @@ msgstr "" msgid "Org History Heading" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "" @@ -18062,7 +18310,7 @@ msgstr "" #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Outgoing (SMTP) Settings" -msgstr "" +msgstr "Kimenő (SMTP) Beállítások" #. Label of the outgoing_emails_column (Column Break) field in DocType 'System #. Health Report' @@ -18075,13 +18323,13 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Outgoing Server" -msgstr "" +msgstr "Kimenő Szerver" #. 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 "Kimenő Levelek Beállításai" #: frappe/email/doctype/email_domain/email_domain.py:33 msgid "Outgoing email account not correct" @@ -18090,7 +18338,7 @@ msgstr "" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Outlook.com" -msgstr "" +msgstr "Outlook.com" #. Label of the output (Code) field in DocType 'Permission Inspector' #. Label of the output (Code) field in DocType 'System Console' @@ -18105,20 +18353,16 @@ msgstr "" msgid "Overview" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" -msgstr "" +msgstr "PATCH" #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/printing/page/print/print.js:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18134,7 +18378,7 @@ 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 "" +msgstr "PDF Oldalmagasság (mm-ben)" #. Label of the pdf_page_size (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json @@ -18144,7 +18388,7 @@ 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 "" +msgstr "PDF Oldalszélesség (mm-ben)" #. Label of the pdf_settings (Section Break) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json @@ -18159,32 +18403,32 @@ msgstr "" msgid "PDF generation failed because of broken image links" msgstr "" -#: frappe/printing/page/print/print.js:616 +#: frappe/printing/page/print/print.js:656 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:574 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 "" +msgstr "PID" #. Option for the 'Method' (Select) field in DocType 'Recorder' #. Option for the 'Request Method' (Select) field in DocType 'Webhook' #: frappe/core/doctype/recorder/recorder.json #: frappe/integrations/doctype/webhook/webhook.json msgid "POST" -msgstr "" +msgstr "POST" #. Option for the 'Method' (Select) field in DocType 'Recorder' #. Option for the 'Request Method' (Select) field in DocType 'Webhook' #: frappe/core/doctype/recorder/recorder.json #: frappe/integrations/doctype/webhook/webhook.json msgid "PUT" -msgstr "" +msgstr "PUT" #. Label of the package (Link) field in DocType 'Module Def' #. Name of a DocType @@ -18207,7 +18451,7 @@ msgstr "" #. Label of the package_name (Data) field in DocType 'Package' #: frappe/core/doctype/package/package.json msgid "Package Name" -msgstr "" +msgstr "Csomag Név" #. Name of a DocType #: frappe/core/doctype/package_release/package_release.json @@ -18250,7 +18494,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 "Oldaltörés" #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.js:92 @@ -18285,12 +18529,12 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/print_format_builder/PrintFormatControls.vue:63 msgid "Page Number" -msgstr "" +msgstr "Oldalszám" #. 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 "Oldal Útvonal" #. Label of the view_link_in_email (Section Break) field in DocType 'Print #. Settings' @@ -18309,7 +18553,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 "Oldal Címe" #: frappe/public/js/frappe/list/bulk_operations.js:80 msgid "Page Width (in mm)" @@ -18335,7 +18579,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:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "" @@ -18353,16 +18597,16 @@ msgstr "" #. Label of the parent_doctype (Link) field in DocType 'DocType Link' #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Parent DocType" -msgstr "" +msgstr "Szülő DocType" #. Label of the parent_document_type (Link) field in DocType 'Dashboard Chart' #. Label of the parent_document_type (Link) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json msgid "Parent Document Type" -msgstr "" +msgstr "Szülő Dokumentum Típus" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "" @@ -18370,20 +18614,20 @@ msgstr "" #. Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Parent Element Selector" -msgstr "" +msgstr "Szülő Elem Választó" #. 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 "Szülő Mező" #. Label of the nsm_parent_field (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype.py:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "" @@ -18392,14 +18636,14 @@ msgstr "" msgid "Parent Label" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 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 "Szülő Oldal" #: frappe/core/doctype/data_export/exporter.py:24 msgid "Parent Table" @@ -18428,7 +18672,7 @@ msgstr "" #. Label of the partial (Check) field in DocType 'Personal Data Deletion Step' #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Partial" -msgstr "" +msgstr "Részleges" #. Option for the 'Status' (Select) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json @@ -18438,7 +18682,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Partially Sent" -msgstr "" +msgstr "Részben Elküldve" #. Label of the participants (Section Break) field in DocType 'Event' #: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json @@ -18466,8 +18710,8 @@ msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18477,7 +18721,7 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "" @@ -18490,7 +18734,7 @@ msgstr "" msgid "Password Reset Link Generation Limit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18507,6 +18751,10 @@ msgstr "" msgid "Password is required or select Awaiting Password" msgstr "" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "" @@ -18515,7 +18763,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18523,11 +18771,11 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." msgstr "" @@ -18535,7 +18783,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "" @@ -18596,19 +18844,21 @@ msgstr "" #. Label of the payload_count (Int) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Payload Count" -msgstr "" +msgstr "Payload Count" #. Label of the peak_memory_usage (Int) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Peak Memory Usage" -msgstr "" +msgstr "Csúcs Memória Használat" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "" @@ -18684,7 +18934,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "" @@ -18716,7 +18966,7 @@ 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 "Jogosultság Lekérdzés" #. Label of the permission_rules (Section Break) field in DocType 'Custom Role' #: frappe/core/doctype/custom_role/custom_role.json @@ -18727,7 +18977,7 @@ msgstr "" #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "Permission Type" -msgstr "" +msgstr "Jogosultság Típusa" #. Label of the section_break_4 (Section Break) field in DocType 'Custom #. DocPerm' @@ -18744,16 +18994,16 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: frappe/core/page/permission_manager/permission_manager.js:221 #: frappe/core/workspace/users/users.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Permissions" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "" @@ -18788,7 +19038,7 @@ msgstr "" #. Action' #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Permitted Roles" -msgstr "" +msgstr "Engedélyezett Szerepkörök" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json @@ -18815,15 +19065,18 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -18836,13 +19089,13 @@ msgstr "" msgid "Phone No." msgstr "" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "" @@ -18861,7 +19114,7 @@ msgstr "" #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Pink" -msgstr "" +msgstr "Rózsaszín" #. Label of the placeholder (Data) field in DocType 'DocField' #. Label of the placeholder (Data) field in DocType 'Custom Field' @@ -18875,7 +19128,7 @@ msgstr "" #. Option for the 'Message Type' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Plain Text" -msgstr "" +msgstr "Egyszerű Szöveg" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json @@ -18902,11 +19155,11 @@ msgstr "" msgid "Please Set Chart" msgstr "" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "" @@ -18914,7 +19167,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18922,11 +19175,11 @@ msgstr "" msgid "Please attach a file first." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 msgid "Please attach an image file to set HTML for Footer." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "" @@ -18934,19 +19187,15 @@ msgstr "" msgid "Please attach the package" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "" - #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "" -#: frappe/model/base_document.py:951 +#: frappe/model/base_document.py:1008 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "" @@ -18978,11 +19227,11 @@ msgstr "" msgid "Please confirm your action to {0} this document." msgstr "" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "" @@ -18998,20 +19247,20 @@ msgstr "" msgid "Please do not change the template headings." msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "" @@ -19048,7 +19297,7 @@ msgstr "" msgid "Please enter Client Secret before social login is enabled" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "" @@ -19085,11 +19334,12 @@ msgstr "" msgid "Please enter your old password." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "" @@ -19097,11 +19347,11 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "" -#: frappe/model/document.py:988 +#: frappe/model/document.py:992 msgid "Please refresh to get the latest document." msgstr "" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:575 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19117,7 +19367,7 @@ msgstr "" msgid "Please save the document before removing assignment" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "" @@ -19125,7 +19375,7 @@ msgstr "" msgid "Please save to edit the template." msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "" @@ -19133,19 +19383,19 @@ msgstr "" msgid "Please select Entity Type first" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "" @@ -19153,7 +19403,7 @@ msgstr "" msgid "Please select a file or url" msgstr "" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" msgstr "" @@ -19165,7 +19415,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19181,7 +19431,7 @@ msgstr "" #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Please select the LDAP Directory being used" -msgstr "" +msgstr "Kérjük, válassza ki a használt LDAP könyvtárat" #: frappe/website/doctype/website_settings/website_settings.js:100 msgid "Please select {0}" @@ -19191,11 +19441,11 @@ msgstr "" msgid "Please set Email Address" msgstr "" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:589 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "" @@ -19203,7 +19453,7 @@ msgstr "" msgid "Please set filters value in Report Filter table." msgstr "" -#: frappe/model/naming.py:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "" @@ -19215,7 +19465,7 @@ msgstr "" msgid "Please set the series to be used." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -19229,7 +19479,7 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.py:432 msgid "Please setup default outgoing Email Account from Tools > Email Account" -msgstr "" +msgstr "Kérjük, állítsa be az alapértelmezett kimenő e-mail fiókot az Eszközök > E-mail fiók menüpontban" #: frappe/public/js/frappe/model/model.js:774 msgid "Please specify" @@ -19239,23 +19489,23 @@ msgstr "" msgid "Please specify a valid parent DocType for {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "" @@ -19276,7 +19526,7 @@ msgstr "" msgid "Please use following links to download file backup." msgstr "" -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" @@ -19294,13 +19544,13 @@ msgstr "" #. Label of the popover_element (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Popover Element" -msgstr "" +msgstr "Felugró Elem" #. 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 "Felugró vagy Modális Leírása" #. Label of the smtp_port (Data) field in DocType 'Email Account' #. Label of the incoming_port (Data) field in DocType 'Email Account' @@ -19311,7 +19561,7 @@ msgstr "" #: frappe/email/doctype/email_domain/email_domain.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json msgid "Port" -msgstr "" +msgstr "Port" #. Label of the menu (Table) field in DocType 'Portal Settings' #: frappe/website/doctype/portal_settings/portal_settings.json @@ -19330,7 +19580,7 @@ msgstr "" msgid "Portal Settings" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "" @@ -19358,23 +19608,16 @@ msgstr "" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "" #. Label of the posting_timestamp (Datetime) field in DocType 'Changelog Feed' #: frappe/desk/doctype/changelog_feed/changelog_feed.json msgid "Posting Timestamp" -msgstr "" +msgstr "Közzététel Időbélyeg" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19389,7 +19632,11 @@ msgstr "" msgid "Precision" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "" @@ -19430,14 +19677,14 @@ msgstr "" #. Name of a report #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json msgid "Prepared Report Analytics" -msgstr "" +msgstr "Elkészített Jelentés Analitika" #. Name of a role #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Prepared Report User" msgstr "" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "" @@ -19445,7 +19692,7 @@ msgstr "" msgid "Preparing Report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "" @@ -19466,7 +19713,7 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19480,13 +19727,6 @@ msgstr "" msgid "Preview HTML" msgstr "" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19500,7 +19740,7 @@ msgstr "" #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Preview of generated names" -msgstr "" +msgstr "A generált nevek előnézete" #: frappe/public/js/frappe/views/render_preview.js:19 msgid "Preview on {0}" @@ -19515,7 +19755,7 @@ msgid "Preview:" msgstr "" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19527,12 +19767,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "" @@ -19578,19 +19813,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:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19608,8 +19843,8 @@ 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:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19634,7 +19869,7 @@ msgstr "" #. Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format Builder Beta" -msgstr "" +msgstr "Nyomtatási Sablon Készítő Béta" #: frappe/utils/pdf.py:63 msgid "Print Format Error" @@ -19660,7 +19895,7 @@ msgstr "" msgid "Print Format Type" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19699,7 +19934,7 @@ msgstr "" msgid "Print Language" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "" @@ -19716,8 +19951,8 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "" @@ -19765,11 +20000,11 @@ msgstr "" msgid "Print with letterhead" msgstr "" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "" @@ -19779,11 +20014,11 @@ msgstr "" msgid "Printer Name" msgstr "" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "" @@ -19835,13 +20070,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 "" +msgstr "Protipp: Hivatkozás hozzáadása: {{ reference_doctype }} {{ reference_name }} a dokumentum hivatkozásának elküldéséhez" #: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22 msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "" @@ -19855,25 +20090,35 @@ msgstr "" #: frappe/desk/page/setup_wizard/install_fixtures.py:51 msgid "Prof" -msgstr "" +msgstr "Prof." #. Group in User's connections #: frappe/core/doctype/user/user.json msgid "Profile" +msgstr "Profil" + +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." msgstr "" #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: 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:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: 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/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "" @@ -19910,7 +20155,7 @@ msgstr "" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -19918,7 +20163,7 @@ 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 "" +msgstr "Adja meg a fájlfeltöltéshez engedélyezett fájlkiterjesztések listáját. Minden sornak egy engedélyezett fájltípust kell tartalmaznia. Ha nincs megadva, akkor minden fájlkiterjesztés engedélyezett. Példa:
    CSV
    JPG
    PNG" #. Label of the provider (Data) field in DocType 'User Social Login' #. Label of the provider (Select) field in DocType 'Geolocation Settings' @@ -19959,24 +20204,18 @@ msgstr "" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -19986,20 +20225,11 @@ msgstr "" msgid "Published" msgstr "" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json msgid "Publishing Dates" -msgstr "" +msgstr "Kiadás Dátuma" #: frappe/email/doctype/email_account/email_account.js:208 msgid "Pull Emails" @@ -20053,7 +20283,7 @@ msgstr "" #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Purple" -msgstr "" +msgstr "Lila" #. Name of a DocType #. Label of a Link in the Integrations Workspace @@ -20084,9 +20314,11 @@ msgid "Put on Hold" msgstr "" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" -msgstr "" +msgstr "Python" #: frappe/www/qrcode.html:3 msgid "QR Code" @@ -20096,8 +20328,8 @@ msgstr "" msgid "QR Code for Login Verification" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' @@ -20147,7 +20379,7 @@ msgstr "" msgid "Query analysis complete. Check suggested indexes." msgstr "" -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "" @@ -20156,7 +20388,7 @@ msgstr "" #: frappe/core/doctype/rq_job/rq_job.json #: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json msgid "Queue" -msgstr "" +msgstr "Várakozási Sor" #: frappe/utils/background_jobs.py:731 msgid "Queue Overloaded" @@ -20170,14 +20402,14 @@ 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 "Várakozási Sor Típus(ok)" #. Label of the queue_in_background (Check) field in DocType 'DocType' #. Label of the queue_in_background (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Queue in Background (BETA)" -msgstr "" +msgstr "Háttérben várakozás (BÉTA)" #: frappe/utils/background_jobs.py:556 msgid "Queue should be one of {0}" @@ -20186,7 +20418,7 @@ msgstr "" #. Label of the queue (Data) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Queue(s)" -msgstr "" +msgstr "Várakozási Sor(ok)" #. Option for the 'Status' (Select) field in DocType 'Prepared Report' #. Option for the 'Status' (Select) field in DocType 'Submission Queue' @@ -20200,12 +20432,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 "Sorba Állva Ekkor" #. Label of the queued_by (Data) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Queued By" -msgstr "" +msgstr "Sorba Állva Tőle" #: frappe/core/doctype/submission_queue/submission_queue.py:174 msgid "Queued for Submission. You can track the progress over {0}." @@ -20239,15 +20471,15 @@ msgstr "" #. List' #: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json msgid "Quick List Filter" -msgstr "" +msgstr "Gyorslista Szűrő" #. 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 "Gyorslisták" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20272,7 +20504,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Random" -msgstr "" +msgstr "Véletlenszerű" #: frappe/website/report/website_analytics/website_analytics.js:20 msgid "Range" @@ -20282,19 +20514,13 @@ msgstr "" #. Script' #: frappe/core/doctype/server_script/server_script.json msgid "Rate Limiting" -msgstr "" - -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "" +msgstr "Forgalom Korlátozása" #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Rate limit for email link login" -msgstr "" +msgstr "E-mail link bejelentkezési korlátja" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -20309,7 +20535,7 @@ msgstr "" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "" @@ -20326,7 +20552,7 @@ msgstr "" msgid "Raw Printing" msgstr "" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "" @@ -20343,8 +20569,8 @@ msgid "Re:" msgstr "" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "" @@ -20393,18 +20619,13 @@ msgstr "" #. Label of the read_only_depends_on (Code) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Read Only Depends On (JS)" -msgstr "" +msgstr "Csak olvasható, a következőtől függ (JS)" #: frappe/public/js/frappe/ui/toolbar/navbar.html:16 #: frappe/templates/includes/navbar/navbar_items.html:97 msgid "Read Only Mode" msgstr "" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20420,14 +20641,14 @@ msgstr "" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "" #. Label of the readme (Markdown Editor) field in DocType 'Package' #: frappe/core/doctype/package/package.json msgid "Readme" -msgstr "" +msgstr "Olvass El" #. Label of the realtime_socketio_section (Section Break) field in DocType #. 'System Health Report' @@ -20440,11 +20661,11 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20482,7 +20703,7 @@ msgstr "" msgid "Recent years are easy to guess." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "" @@ -20493,6 +20714,14 @@ msgstr "" msgid "Recipient" msgstr "" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20525,7 +20754,7 @@ msgstr "" msgid "Records for following doctypes will be filtered" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "" @@ -20542,10 +20771,15 @@ msgstr "" msgid "Redirect HTTP Status" msgstr "" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" -msgstr "" +msgstr "Átirányítás URI" #. Label of the redirect_uri_bound_to_authorization_code (Data) field in #. DocType 'OAuth Authorization Code' @@ -20575,12 +20809,12 @@ msgstr "" #. Description of the 'Welcome URL' (Data) field in DocType 'Email Group' #: frappe/email/doctype/email_group/email_group.json msgid "Redirect to this URL after successful confirmation." -msgstr "" +msgstr "Átirányítás erre az URL-re a sikeres megerősítés után." #. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Redirects" -msgstr "" +msgstr "Átirányítások" #: frappe/sessions.py:149 msgid "Redis cache server not running. Please contact Administrator / Tech support" @@ -20598,7 +20832,7 @@ msgstr "" #. Label of the ref_doctype (Link) field in DocType 'Report' #: frappe/core/doctype/report/report.json msgid "Ref DocType" -msgstr "" +msgstr "Hiv. DocType" #: frappe/desk/doctype/form_tour/form_tour.js:38 msgid "Referance Doctype and Dashboard Name both can't be used at the same time." @@ -20636,6 +20870,11 @@ msgstr "" msgid "Reference Datetime" msgstr "" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20646,7 +20885,7 @@ msgstr "" #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/submission_queue/submission_queue.json msgid "Reference DocType" -msgstr "" +msgstr "Hivatkozás DocType" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26 msgid "Reference DocType and Reference Name are required" @@ -20663,7 +20902,6 @@ msgstr "" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20704,9 +20942,9 @@ msgstr "" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20724,9 +20962,9 @@ msgstr "" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20756,7 +20994,6 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -20804,15 +21041,15 @@ msgstr "" msgid "Referrer" msgstr "" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "" @@ -20826,6 +21063,10 @@ msgstr "" msgid "Refresh Google Sheet" msgstr "" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -20837,18 +21078,18 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "" @@ -20867,18 +21108,18 @@ msgstr "" #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "Relay Settings" -msgstr "" +msgstr "Relay Beállítások" #. Group in Package's connections #: frappe/core/doctype/package/package.json msgid "Release" -msgstr "" +msgstr "Kiadás" #. 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 "Kiadási Megjegyzések" #: frappe/core/doctype/communication/communication.js:48 #: frappe/core/doctype/communication/communication.js:159 @@ -21025,7 +21266,7 @@ msgstr "" msgid "Rename {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "" @@ -21045,7 +21286,7 @@ 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 "Fejléc és Lábléc Ismétlése" #. Label of the repeat_on (Select) field in DocType 'Event' #: frappe/desk/doctype/event/event.json @@ -21065,7 +21306,7 @@ msgstr "" #. Label of the repeat_on_days (Table) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Repeat on Days" -msgstr "" +msgstr "Ismétlés a Napokon" #. Label of the repeat_on_last_day (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json @@ -21156,9 +21397,9 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "" @@ -21228,11 +21469,11 @@ 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:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "" @@ -21247,7 +21488,7 @@ msgstr "" #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Report Reference Doctype" -msgstr "" +msgstr "Jelentés Hivatkozás DocType" #. Label of the report_type (Select) field in DocType 'Report' #. Label of the report_type (Data) field in DocType 'Onboarding Step' @@ -21256,7 +21497,7 @@ msgstr "" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Report Type" -msgstr "" +msgstr "Jelentés Típusa" #: frappe/public/js/frappe/list/base_list.js:203 msgid "Report View" @@ -21266,21 +21507,21 @@ msgstr "" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 msgid "Report cannot be set for Single types" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 -#: frappe/desk/doctype/number_card/number_card.js:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21292,24 +21533,24 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "" @@ -21317,7 +21558,7 @@ msgstr "" msgid "Report {0} is disabled" msgstr "" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "" @@ -21328,7 +21569,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:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "" @@ -21336,7 +21577,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "" @@ -21352,10 +21593,13 @@ msgstr "" #: frappe/integrations/doctype/webhook/webhook.js:101 msgid "Request Body" -msgstr "" +msgstr "Kérés Törzse" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "" @@ -21363,29 +21607,29 @@ msgstr "" #. Request' #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Request Description" -msgstr "" +msgstr "Kérés Leírása" #. 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 "Kérés Fejléce" #. Label of the request_id (Data) field in DocType 'Integration Request' #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Request ID" -msgstr "" +msgstr "Kérés Azonosító" #. 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 "Kérés Limit" #. Label of the request_method (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Request Method" -msgstr "" +msgstr "Kérés Metódusa" #. Label of the request_structure (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json @@ -21407,6 +21651,11 @@ msgstr "" msgid "Request URL" msgstr "" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21422,13 +21671,13 @@ msgstr "" #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Requires any valid fdn path. i.e. ou=groups,dc=example,dc=com" -msgstr "" +msgstr "Érvényes fdn elérési utat igényel, pl. ou=groups,dc=example,dc=com" #. Description of the 'LDAP search path for Users' (Data) field in DocType #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Requires any valid fdn path. i.e. ou=users,dc=example,dc=com" -msgstr "" +msgstr "Érvényes fdn elérési utat igényel. Pl. ou=users,dc=example,dc=com" #: frappe/core/doctype/communication/communication.js:279 msgid "Res: {0}" @@ -21458,11 +21707,11 @@ msgstr "" msgid "Reset Dashboard Customizations" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "" @@ -21470,11 +21719,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21489,13 +21738,13 @@ msgstr "" #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Reset Password Link Expiry Duration" -msgstr "" +msgstr "Jelszó Visszaállítása Link Lejárati Időtartama" #. 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 "Jelszó Visszaállítás Saboln" #: frappe/core/page/permission_manager/permission_manager.js:116 msgid "Reset Permissions for {0}?" @@ -21509,7 +21758,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21547,6 +21796,7 @@ msgid "Resource TOS URI" msgstr "" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21556,11 +21806,6 @@ msgstr "" msgid "Response" msgstr "" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "" - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21619,7 +21864,7 @@ msgstr "" msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "" @@ -21653,14 +21898,14 @@ msgstr "" msgid "Reverse Icon Color" msgstr "" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "" #. Label of the revocation_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Revocation URI" -msgstr "" +msgstr "Visszavonás URI" #: frappe/www/third_party_apps.html:47 msgid "Revoke" @@ -21671,9 +21916,7 @@ msgstr "" msgid "Revoked" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21697,12 +21940,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 "Jobb Alul" #. 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 "Jobb Közép" #. Label of the robots_txt (Code) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json @@ -21714,6 +21957,7 @@ msgstr "" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21727,6 +21971,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21765,7 +22010,7 @@ msgstr "" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "" @@ -21775,7 +22020,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21818,6 +22063,7 @@ msgstr "" #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -21827,6 +22073,7 @@ msgstr "" #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -21837,7 +22084,7 @@ msgstr "" #. Label of the roles_permissions_tab (Tab Break) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Roles & Permissions" -msgstr "" +msgstr "Szerepkörök és Jogosultságok" #. Label of the roles (Table) field in DocType 'Role Profile' #. Label of the roles (Table) field in DocType 'User' @@ -21863,7 +22110,7 @@ msgstr "" msgid "Roles can be set for users from their User page." msgstr "" -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "" @@ -21875,7 +22122,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 "" +msgstr "Kerekítési Módszer" #. Label of the route (Data) field in DocType 'DocType' #. Option for the 'Action Type' (Select) field in DocType 'DocType Action' @@ -21883,8 +22130,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -21896,8 +22141,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -21920,26 +22163,26 @@ msgstr "" #. Description of the 'Home Page' (Data) field in DocType 'Role' #: frappe/core/doctype/role/role.json msgid "Route: Example \"/app\"" -msgstr "" +msgstr "Útvonal: Példa: \"/app\"" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "" @@ -21948,15 +22191,10 @@ msgstr "" msgid "Row Format" msgstr "" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "" - #. Label of the row_indexes (Code) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Row Indexes" -msgstr "" +msgstr "Sor Indexek" #. Label of the row_name (Data) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json @@ -21967,7 +22205,7 @@ msgstr "" msgid "Row Number" msgstr "" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "" @@ -21975,30 +22213,33 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Added" msgstr "" #. Label of the rows_removed_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22041,21 +22282,21 @@ 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 "Csak naponta futtassa a feladatokat, ha inaktív (napokig)" #. 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 "Csak akkor futtassa az ütemezett feladatokat, ha be van jelölve" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 msgid "Runtime in Minutes" -msgstr "" +msgstr "Futási Idő Percben" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 msgid "Runtime in Seconds" -msgstr "" +msgstr "Futási Idő Másodpercben" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Two Factor Authentication method' (Select) field in DocType @@ -22065,7 +22306,7 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/email/doctype/notification/notification.json msgid "SMS" -msgstr "" +msgstr "SMS" #. Label of the sms_gateway_url (Small Text) field in DocType 'SMS Settings' #: frappe/core/doctype/sms_settings/sms_settings.json @@ -22089,9 +22330,9 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" -msgstr "" +msgstr "SMS sikeresen elküldve" #: frappe/templates/includes/login/login.js:369 msgid "SMS was not sent. Please contact Administrator." @@ -22104,7 +22345,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "SQL" -msgstr "" +msgstr "SQL" #. Description of the 'Condition' (Small Text) field in DocType 'Bulk Update' #: frappe/desk/doctype/bulk_update/bulk_update.json @@ -22120,12 +22361,12 @@ msgstr "" #. Label of the sql_output (HTML) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "SQL Output" -msgstr "" +msgstr "SQL Kimenet" #. Label of the sql_queries (Table) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "SQL Queries" -msgstr "" +msgstr "SQL Lekérdezés" #. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -22167,7 +22408,7 @@ msgstr "" msgid "Salutation" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "" @@ -22195,20 +22436,20 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22217,16 +22458,12 @@ msgstr "" msgid "Save" msgstr "" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "" @@ -22234,18 +22471,18 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "" #. Label of the save_on_complete (Check) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "Save on Completion" -msgstr "" +msgstr "Mentés Befejezéskor" #: frappe/public/js/frappe/form/form_tour.js:295 msgid "Save the document." @@ -22263,7 +22500,7 @@ msgstr "" msgid "Saved Filters" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22315,12 +22552,12 @@ msgstr "" #. Label of the scheduled_against (Link) field in DocType 'Scheduler Event' #: frappe/core/doctype/scheduler_event/scheduler_event.json msgid "Scheduled Against" -msgstr "" +msgstr "Ütemezett Időpont" #. 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 "Ütemezett Feladat" #. Name of a DocType #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json @@ -22342,7 +22579,7 @@ msgstr "" msgid "Scheduled Jobs Logs" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "" @@ -22365,7 +22602,7 @@ msgstr "" msgid "Scheduler Event" msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "" @@ -22378,7 +22615,7 @@ msgstr "" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "" @@ -22393,7 +22630,7 @@ msgstr "" #. Label of the scope (Data) field in DocType 'OAuth Scope' #: frappe/integrations/doctype/oauth_scope/oauth_scope.json msgid "Scope" -msgstr "" +msgstr "Hatáskör" #. Label of the sb_scope_section (Section Break) field in DocType 'Connected #. App' @@ -22443,7 +22680,7 @@ 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 "Szkript Típusa" #. Description of a DocType #: frappe/website/doctype/website_script/website_script.json @@ -22460,12 +22697,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 "Szkriptelés / Stílus" #. Label of the scripts_section (Section Break) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Scripts" -msgstr "" +msgstr "Szkriptek" #. Label of the search_section (Section Break) field in DocType 'System #. Settings' @@ -22483,7 +22720,7 @@ msgstr "" #. Label of the search_bar (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Search Bar" -msgstr "" +msgstr "Kereső Sáv" #. Label of the search_fields (Data) field in DocType 'DocType' #. Label of the search_fields (Data) field in DocType 'Customize Form' @@ -22510,7 +22747,7 @@ msgstr "" msgid "Search by filename or extension" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "" @@ -22589,7 +22826,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 "Szakasz ID" #: frappe/public/js/form_builder/components/Section.vue:28 #: frappe/public/js/print_format_builder/PrintFormatSection.vue:8 @@ -22610,7 +22847,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "" @@ -22619,7 +22856,7 @@ msgstr "" msgid "See on Website" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "" @@ -22666,7 +22903,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/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22674,28 +22911,28 @@ msgstr "" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 msgid "Select Column" msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "" @@ -22728,7 +22965,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 "" +msgstr "DocType Kiválasztása" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:50 #: frappe/workflow/page/workflow_builder/workflow_builder.js:50 @@ -22754,12 +22991,15 @@ msgstr "" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "" @@ -22772,7 +23012,7 @@ msgstr "" msgid "Select Filters" msgstr "" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "" @@ -22795,7 +23035,7 @@ 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 "Listanézet Kiválasztása" #: frappe/public/js/frappe/data_import/data_exporter.js:158 msgid "Select Mandatory" @@ -22805,15 +23045,15 @@ msgstr "" msgid "Select Module" msgstr "" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 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 "Oldal Kiválasztása" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 #: frappe/public/js/frappe/views/communication.js:160 @@ -22827,7 +23067,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 "Jelentés Kiválasztása" #: frappe/printing/page/print_format_builder/print_format_builder.js:631 msgid "Select Table Columns for {0}" @@ -22850,7 +23090,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 "Munkaterület Kiválasztása" #. Label of the select_workspaces_section (Section Break) field in DocType #. 'Workspace Settings' @@ -22871,14 +23111,14 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." +msgid "Select a group {0} first." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 msgid "Select a valid Subject field for creating documents from Email" msgstr "" @@ -22908,13 +23148,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22948,7 +23188,7 @@ msgstr "" msgid "Select {0}" msgstr "" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "" @@ -23130,23 +23370,23 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Sender Email Field" -msgstr "" +msgstr "Feladó E-mail Címe Mező" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "" #. Label of the sender_name (Data) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Sender Name" -msgstr "" +msgstr "Feladó Neve" #. 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 "Feladó Neve Mező" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -23175,7 +23415,7 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Sent Folder Name" -msgstr "" +msgstr "Elküldött Mappa Neve" #. Label of the sent_on (Date) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json @@ -23226,7 +23466,7 @@ msgstr "" msgid "Series counter for {} updated to {} successfully" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "" @@ -23236,7 +23476,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23255,7 +23495,7 @@ msgstr "" msgid "Server Script" msgstr "" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23302,23 +23542,23 @@ msgstr "" msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "" #. Label of the session_expiry (Data) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Session Expiry (idle timeout)" -msgstr "" +msgstr "Munkamenet Lejárata (tétlenségi időkorlát)" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "" @@ -23344,12 +23584,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23360,7 +23600,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23372,7 +23612,7 @@ msgstr "" #. DocType 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Set Naming Series options on your transactions." -msgstr "" +msgstr "Állítsa be a Névsorozat beállításait a tranzakciókon." #. Label of the new_password (Password) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -23414,7 +23654,7 @@ msgstr "" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23424,16 +23664,16 @@ msgstr "" msgid "Set Value" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "" @@ -23446,33 +23686,36 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Set by user" -msgstr "" +msgstr "Felhasználó által beállítva" #: frappe/public/js/frappe/utils/dashboard_utils.js:162 msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "" -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" -msgstr "" +msgstr "Csak egyszer állítsa be" #. Description of the 'Max attachment size' (Int) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Set size in MB" -msgstr "" +msgstr "Beállított méret MB-ban" #. Description of the 'Filters Configuration' (Code) field in DocType 'Number #. Card' @@ -23495,7 +23738,24 @@ msgid "Set the filters here. For example:\n" "\treqd: 1\n" "}]\n" "
    " -msgstr "" +msgstr "Állítsd be itt a szűrőket. Például:\n" +"
    \n"
    +"[{\n"
    +"\tmezőnév: \"vállalat\",\n"
    +"\tcímke: __(\"Cég\"),\n"
    +"\tmezőtípus: \"Link\",\n"
    +"\topciók: \"Cég\",\n"
    +"\tdefault: frappe.defaults.get_user_default(\"Cég\"),\n"
    +"\treqd: 1\n"
    +"},\n"
    +"{\n"
    +"\tmezőnév: \"fiók\",\n"
    +"\tcímke: __(\"Fiók\"),\n"
    +"\tmezőtípus: \"Link\",\n"
    +"\topciók: \"Fiók\",\n"
    +"\tkövetelmény: 1\n"
    +"}]\n"
    +"
    " #. Description of the 'Method' (Data) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json @@ -23507,7 +23767,14 @@ msgid "Set the path to a whitelisted function that will return the data for the "\t\"route_options\": {\"from_date\": \"2023-05-23\"},\n" "\t\"route\": [\"query-report\", \"Permitted Documents For User\"]\n" "}" -msgstr "" +msgstr "Állítsd be egy fehérlistás függvény elérési útját, amely a számkártya adatait a következő formátumban adja vissza:\n\n" +"
    \n"
    +"{\n"
    +"\t\"value\": value,\n"
    +"\t\"fieldtype\": \"Pénznem\",\n"
    +"\t\"route_options\": {\"from_date\": \"2023-05-23\"},\n"
    +"\t\"route\": [\"query-report\", \"Felhasználó számára engedélyezett dokumentumok\"]\n"
    +"}
    " #: frappe/contacts/doctype/address_template/address_template.py:33 msgid "Setting this Address Template as default as there is no other default" @@ -23555,14 +23822,9 @@ msgstr "" msgid "Settings for the About Us Page" msgstr "" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "" @@ -23578,8 +23840,8 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "" @@ -23593,11 +23855,11 @@ msgstr "" #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Setup Series for transactions" -msgstr "" +msgstr "Sorozatok Beállítása Tranzakciókhoz" #: frappe/desk/page/setup_wizard/setup_wizard.js:236 msgid "Setup failed" -msgstr "" +msgstr "Beállítás Sikertelen" #. Label of the share (Check) field in DocType 'Custom DocPerm' #. Label of the share (Check) field in DocType 'DocPerm' @@ -23648,11 +23910,6 @@ msgstr "" msgid "Shop" msgstr "" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "" @@ -23672,11 +23929,6 @@ msgstr "" msgid "Show" msgstr "" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23689,7 +23941,7 @@ 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 "Abszolút Értékek Megjelenítése" #: frappe/public/js/frappe/form/templates/form_sidebar.html:73 msgid "Show All" @@ -23708,7 +23960,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 "Pénznem Szimbólum Megjelenítése a Jobb Oldalon" #. Label of the show_dashboard (Check) field in DocType 'DocField' #. Label of the show_dashboard (Check) field in DocType 'Custom Field' @@ -23729,20 +23981,26 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 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 "Első Dokumentum Túra Megjelenítése" #. 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 "Űrlap Túra Megjelenítése" #. Label of the allow_error_traceback (Check) field in DocType 'System #. Settings' @@ -23774,7 +24032,7 @@ msgstr "" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Show Language Picker" -msgstr "" +msgstr "Nyelvválasztó Megjelenítése" #. Label of the line_breaks (Check) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json @@ -23788,7 +24046,7 @@ 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 "Csak a sikertelen naplók megjelenítése" #. Label of the show_percentage_stats (Check) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json @@ -23816,7 +24074,7 @@ 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 "Folyamatlista Megjelenítése" #. Label of the show_protected_resource_metadata (Check) field in DocType #. 'OAuth Settings' @@ -23857,7 +24115,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "" @@ -23872,9 +24130,9 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Show Title in Link Fields" -msgstr "" +msgstr "Cím Megjelenítése a Link Mezőkben" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "" @@ -23904,7 +24162,7 @@ msgstr "" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Show account deletion link in My Account page" -msgstr "" +msgstr "Fiók törlése link megjelenítése a Fiókom oldalon" #: frappe/core/doctype/version/version.js:6 msgid "Show all Versions" @@ -23914,10 +24172,6 @@ msgstr "" msgid "Show all activity" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "" - #. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" @@ -23932,7 +24186,7 @@ msgstr "" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Show footer on login" -msgstr "" +msgstr "Lábléc megjelenítése bejelentkezéskor" #. Description of the 'Show Full Form?' (Check) field in DocType 'Onboarding #. Step' @@ -23959,15 +24213,15 @@ 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 "Dokumentum linkjének megjelenítése" #. Label of the show_list (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Show list" msgstr "" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "" @@ -23996,7 +24250,7 @@ msgstr "" msgid "Show {0} List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "" @@ -24008,7 +24262,7 @@ msgstr "" #. Label of the form_sidebar (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Sidebar" -msgstr "" +msgstr "Oldalsáv" #. Label of the sidebar_items (Table) field in DocType 'Website Sidebar' #: frappe/website/doctype/website_sidebar/website_sidebar.json @@ -24029,9 +24283,9 @@ msgstr "" #. DocType 'Email Group' #: frappe/email/doctype/email_group/email_group.json msgid "Sign Up and Confirmation" -msgstr "" +msgstr "Feliratkozás és Megerősítés" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "" @@ -24043,7 +24297,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 "Feliratkozások" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -24068,22 +24322,22 @@ msgstr "" msgid "Signups have been disabled for this website." msgstr "" -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" msgstr "" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" msgstr "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' @@ -24091,13 +24345,13 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "" #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "" @@ -24105,7 +24359,7 @@ msgstr "" msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "" -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "" @@ -24136,7 +24390,7 @@ msgstr "" #. Label of the skipped (Check) field in DocType 'Patch Log' #: frappe/core/doctype/patch_log/patch_log.json msgid "Skipped" -msgstr "" +msgstr "Átugorva" #: frappe/core/doctype/data_import/importer.py:952 msgid "Skipping Duplicate Column {0}" @@ -24161,7 +24415,7 @@ 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 "" +msgstr "Skype" #. Option for the 'Channel' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json @@ -24306,7 +24560,7 @@ msgstr "" #. Description of the 'Sent Folder Name' (Data) field in DocType 'Email Domain' #: frappe/email/doctype/email_domain/email_domain.json msgid "Some mailboxes require a different Sent Folder Name e.g. \"INBOX.Sent\"" -msgstr "" +msgstr "Néhány postafiókhoz eltérő Elküldött mappanév szükséges, pl. \"INBOX.Sent\"" #: frappe/public/js/frappe/desk.js:20 msgid "Some of the features might not work in your browser. Please update your browser to the latest version." @@ -24324,11 +24578,11 @@ msgstr "" msgid "Something went wrong." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 msgid "Sorry! I could not find what you were looking for." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "" @@ -24352,27 +24606,30 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Sort Options" -msgstr "" +msgstr "Rendezési Beállítások" #. Label of the sort_order (Select) field in DocType 'Customize Form' #: frappe/custom/doctype/customize_form/customize_form.json msgid "Sort Order" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 msgid "Sort field {0} must be a valid fieldname" msgstr "" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' -#: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24397,6 +24654,12 @@ msgstr "" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "SparkPost" +msgstr "SparkPost" + +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" msgstr "" #: frappe/custom/doctype/custom_field/custom_field.js:83 @@ -24416,15 +24679,15 @@ msgstr "" #. 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin." -msgstr "" +msgstr "Adja meg azokat a tartományokat vagy eredeteket, amelyek beágyazhatják ezt az űrlapot. Adjon meg soronként egy tartományt (pl. https://example.com). Ha nem ad meg tartományt, az űrlap csak ugyanazon az eredeten ágyazható be." #. Label of the splash_image (Attach Image) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Splash Image" -msgstr "" +msgstr "Nyitókép" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -24456,11 +24719,11 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "" @@ -24472,7 +24735,7 @@ msgstr "" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "" @@ -24480,11 +24743,11 @@ msgstr "" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "" -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "" @@ -24516,8 +24779,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:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "" @@ -24525,7 +24788,7 @@ msgstr "" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24565,7 +24828,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 "" +msgstr "StartTLS" #. Option for the 'Status' (Select) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json @@ -24575,7 +24838,7 @@ msgstr "" #. Label of the started_at (Datetime) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "Started At" -msgstr "" +msgstr "Kezdés Ideje" #: frappe/desk/page/setup_wizard/setup_wizard.js:286 msgid "Starting Frappe ..." @@ -24590,6 +24853,7 @@ msgstr "" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24598,7 +24862,7 @@ msgstr "" msgid "State" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "" @@ -24626,7 +24890,7 @@ msgstr "" #. Label of the statistics_section (Section Break) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Statistics" -msgstr "" +msgstr "Statisztikák" #. Label of the stats_section (Section Break) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json @@ -24654,6 +24918,7 @@ msgstr "" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24678,6 +24943,7 @@ msgstr "" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24685,8 +24951,8 @@ msgstr "" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24723,7 +24989,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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24751,6 +25017,10 @@ msgstr "" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Store Attached PDF Document" +msgstr "Csatolt PDF Dokumentum Tárolása" + +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." msgstr "" #. Description of the 'Last Known Versions' (Text) field in DocType 'User' @@ -24762,7 +25032,7 @@ msgstr "" #. in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Stores the datetime when the last reset password key was generated." -msgstr "" +msgstr "Tárolja azt az időpontot, amikor az utolsó visszaállított jelszó kulcsot generálták." #: frappe/utils/password_strength.py:97 msgid "Straight rows of keys are easy to guess" @@ -24772,7 +25042,7 @@ msgstr "" #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Strip EXIF tags from uploaded images" -msgstr "" +msgstr "EXIF címkék eltávolítása a feltöltött képekről" #: frappe/public/js/frappe/form/controls/password.js:89 msgid "Strong" @@ -24831,7 +25101,7 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -24847,7 +25117,7 @@ msgstr "" msgid "Subject Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "" @@ -24861,6 +25131,7 @@ msgstr "" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24869,10 +25140,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24882,7 +25154,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24906,7 +25178,7 @@ msgstr "" msgid "Submit an Issue" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "" @@ -24914,13 +25186,13 @@ msgstr "" #. Label of the button_label (Data) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Submit button label" -msgstr "" +msgstr "Beküldés gomb címkéje" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" -msgstr "" +msgstr "Beküldés Létrehozáskor" #: frappe/public/js/frappe/widgets/onboarding_widget.js:395 msgid "Submit this document to complete this step." @@ -24930,7 +25202,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24939,11 +25211,11 @@ msgstr "" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "" @@ -24966,9 +25238,7 @@ msgid "Subsidiary" msgstr "" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "" @@ -24982,7 +25252,7 @@ msgstr "" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25007,7 +25277,7 @@ msgstr "" #. Label of the success_uri (Data) field in DocType 'Token Cache' #: frappe/integrations/doctype/token_cache/token_cache.json msgid "Success URI" -msgstr "" +msgstr "Siker URI" #. Label of the success_url (Data) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -25017,27 +25287,23 @@ msgstr "" #. Label of the success_message (Text) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Success message" -msgstr "" +msgstr "Sikeres művelet üzenetet" #. Label of the success_title (Data) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Success title" -msgstr "" - -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "" +msgstr "Siker címe" #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" -msgstr "" +msgstr "Sikeres Feladatok Száma" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "" @@ -25079,7 +25345,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "" @@ -25135,7 +25401,7 @@ msgstr "" #: frappe/public/js/frappe/list/list_sidebar.js:319 msgid "Switch to Frappe CRM for smarter sales" -msgstr "" +msgstr "Váltson Frappe CRM-re az okosabb értékesítésért" #: frappe/public/js/frappe/ui/capture.js:281 msgid "Switching Camera" @@ -25164,7 +25430,7 @@ msgstr "" #. Label of the sync_as_public (Check) field in DocType 'Google Calendar' #: frappe/integrations/doctype/google_calendar/google_calendar.json msgid "Sync events from Google as public" -msgstr "" +msgstr "Események szinkronizálása a Google-ból nyilvánosként" #: frappe/custom/doctype/customize_form/customize_form.js:256 msgid "Sync on Migrate" @@ -25201,7 +25467,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25324,6 +25590,7 @@ msgstr "" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25406,8 +25673,9 @@ msgstr "" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" -msgstr "" +msgstr "Rendszergazda" #: frappe/desk/page/backups/backups.js:38 msgid "System Manager privileges required." @@ -25451,7 +25719,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Tab Break" -msgstr "" +msgstr "Tabulátor Törés" #: frappe/public/js/form_builder/components/Tabs.vue:135 msgid "Tab Label" @@ -25479,16 +25747,16 @@ msgstr "" msgid "Table Break" msgstr "" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "" #. Label of the table_fieldname (Data) field in DocType 'DocType Link' #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Table Fieldname" -msgstr "" +msgstr "Tábla Mezőneve" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "" @@ -25510,18 +25778,18 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 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 "" +msgstr "Tabloid" #. Name of a DocType #: frappe/desk/doctype/tag/tag.json @@ -25556,11 +25824,18 @@ msgstr "" msgid "Target" msgstr "" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25578,13 +25853,13 @@ msgstr "" #. Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "Team Members Subtitle" -msgstr "" +msgstr "Csapat Tagok Alcíme" #. Label of the telemetry_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Telemetry" -msgstr "" +msgstr "Telemetria" #. Label of the template (Link) field in DocType 'Auto Repeat' #. Label of the template (Code) field in DocType 'Address Template' @@ -25606,7 +25881,7 @@ msgstr "" #. Template' #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json msgid "Template File" -msgstr "" +msgstr "Sablon Fájl" #. Label of the template_options (Code) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json @@ -25622,7 +25897,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "" @@ -25694,7 +25969,7 @@ msgid "Thank you for reaching out to us. We will get back to you at the earliest "{0}" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "" @@ -25718,7 +25993,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "" @@ -25727,19 +26002,20 @@ msgstr "" msgid "The Client ID obtained from the Google Cloud Console under \n" "\"APIs & Services\" > \"Credentials\"\n" "" -msgstr "" +msgstr "A Google Cloud Console-ból a \"API-k & Szolgáltatások\" > \"Hitelesítő adatok\"\n" +"alatt beszerzett ügyfél-azonosító" -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." -msgstr "" +msgstr "A következő ütemezett dátum nem lehet későbbi, mint a befejezési dátum." #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:29 msgid "The Push Relay Server URL key (`push_relay_server_url`) is missing in your site config" @@ -25757,7 +26033,7 @@ msgstr "" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "The application name will be used in the Login page." -msgstr "" +msgstr "Az alkalmazás neve a bejelentkezési oldalon fog megjelenni." #: frappe/public/js/frappe/views/interaction.js:323 msgid "The attachments could not be correctly linked to the new document" @@ -25768,7 +26044,8 @@ msgstr "" msgid "The browser API key obtained from the Google Cloud Console under \n" "\"APIs & Services\" > \"Credentials\"\n" "" -msgstr "" +msgstr "A Google Cloud Console-ból a \"API-k & Szolgáltatások\" > \"Hitelesítő adatok\"\n" +"alatt beszerzett böngésző API-kulcs" #: frappe/database/database.py:474 msgid "The changes have been reverted." @@ -25778,7 +26055,7 @@ msgstr "" msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "" -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "" @@ -25786,7 +26063,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:658 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25810,13 +26087,13 @@ msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json msgid "The document type selected is a child table, so the parent document type is required." -msgstr "" +msgstr "A kiválasztott dokumentumtípus egy gyermektábla, ezért a szülő dokumentumtípus megadása kötelező." #: frappe/core/doctype/user_type/user_type.py:110 msgid "The field {0} is mandatory" msgstr "" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "" @@ -25864,12 +26141,12 @@ 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 "A következő túra ott kezdődik, ahol a felhasználó abbahagyta." #. 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 "A kérés lejártáig hátralévő másodpercek száma" #: frappe/www/update-password.html:101 msgid "The password of your account has expired." @@ -25884,17 +26161,23 @@ msgstr "" msgid "The project number obtained from Google Cloud Console under \n" "\"IAM & Admin\" > \"Settings\"\n" "" +msgstr "A Google Cloud Console-ból a \n" +"\"IAM & Admin\" > \"Beállítások\"\n" +"alatt lekérdezett projektszám" + +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

    Click here to download:
    {0}

    This link will expire in {1} hours." msgstr "" -#: frappe/core/doctype/user/user.py:993 +#: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:995 +#: frappe/core/doctype/user/user.py:1002 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25906,7 +26189,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:338 +#: frappe/utils/response.py:336 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25927,7 +26210,7 @@ msgstr "" msgid "The webhook will be triggered if this expression is true" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "" @@ -25967,16 +26250,16 @@ 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:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "" @@ -25988,15 +26271,19 @@ msgstr "" msgid "There is no data to be exported" msgstr "" +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26008,7 +26295,7 @@ msgstr "" msgid "There was an error building this page" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "" @@ -26020,11 +26307,11 @@ msgstr "" msgid "There were errors while creating the document. Please try again." msgstr "" -#: frappe/public/js/frappe/views/communication.js:840 +#: frappe/public/js/frappe/views/communication.js:843 msgid "There were errors while sending email. Please try again." msgstr "" -#: frappe/model/naming.py:494 +#: frappe/model/naming.py:502 msgid "There were some errors setting the name, please contact the administrator" msgstr "" @@ -26032,7 +26319,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 "" +msgstr "Ezek a bejelentések egy bezárható értesítésben jelennek meg a navigációs sáv alatt." #. Description of the 'Metadata' (Section Break) field in DocType 'OAuth #. Settings' @@ -26044,7 +26331,7 @@ msgstr "" #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "These settings are required if 'Custom' LDAP Directory is used" -msgstr "" +msgstr "Ezek a beállítások kötelezőek, ha az \"Egyéni\" LDAP-címtárat használja" #. Description of the 'Defaults' (Section Break) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -26065,7 +26352,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "" @@ -26073,6 +26360,10 @@ msgstr "" msgid "This Month" msgstr "" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "" @@ -26098,6 +26389,11 @@ msgstr "" msgid "This cannot be undone" msgstr "" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +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" @@ -26112,11 +26408,11 @@ msgstr "" msgid "This doctype has no orphan fields to trim" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26156,9 +26452,13 @@ msgid "This field will appear only if the fieldname defined here has value OR th "myfield\n" "eval:doc.myfield=='My Value'\n" "eval:doc.age>18" -msgstr "" +msgstr "Ez a mező csak akkor jelenik meg, ha az itt definiált mezőnév tartalmaz értéket VAGY a szabályok igazak \n" +"(példák):\n" +"myfield\n" +"eval:doc.myfield=='Saját Érték'\n" +"eval:doc.age>18" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26174,7 +26474,7 @@ msgstr "" msgid "This form has been modified after you have loaded it" msgstr "" -#: frappe/public/js/frappe/form/form.js:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "" @@ -26193,7 +26493,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26217,12 +26517,6 @@ msgstr "" msgid "This is an automatically generated reply" msgstr "" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "" - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "" @@ -26241,7 +26535,7 @@ msgstr "" msgid "This link is invalid or expired. Please make sure you have pasted correctly." msgstr "" -#: frappe/printing/page/print/print.js:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "" @@ -26249,7 +26543,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26257,7 +26551,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "" @@ -26288,7 +26582,7 @@ msgstr "" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " +msgid "This value specifies the max number of rows that can be rendered in report view." msgstr "" #: frappe/website/doctype/web_page/web_page.js:85 @@ -26320,10 +26614,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " -msgstr "" +msgid "This will terminate the job immediately and might be dangerous, are you sure?" +msgstr "Ez azonnal megszakítja a feladatot, és veszélyes lehet, biztos benne?" -#: frappe/core/doctype/user/user.py:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "" @@ -26390,18 +26684,20 @@ 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 "Futtatás Hossza" #. 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 "Időablak (másodperc)" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26420,7 +26716,7 @@ msgstr "" #. Label of the time_in_queries (Float) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "Time in Queries" -msgstr "" +msgstr "Lekérdezésekben Eltöltött Idő" #. Description of the 'Expiry time of QR Code Image Page' (Int) field in #. DocType 'System Settings' @@ -26439,7 +26735,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Timed Out" -msgstr "" +msgstr "Időtúllépés" #: frappe/public/js/frappe/ui/theme_switcher.js:64 msgid "Timeless Night" @@ -26448,12 +26744,12 @@ msgstr "" #. Label of the timeline (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Timeline" -msgstr "" +msgstr "Idővonal" #. Label of the timeline_doctype (Link) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json msgid "Timeline DocType" -msgstr "" +msgstr "Idővonal DocType" #. Label of the timeline_field (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -26472,18 +26768,18 @@ msgstr "" msgid "Timeline Name" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 msgid "Timeline field must be a Link or Dynamic Link" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 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 "Időtúllépés" #. Label of the timeout (Int) field in DocType 'Report' #: frappe/core/doctype/report/report.json @@ -26502,10 +26798,7 @@ msgid "Timespan" msgstr "" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "" @@ -26525,9 +26818,6 @@ msgstr "" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26552,9 +26842,6 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26577,7 +26864,7 @@ msgstr "" msgid "Title Prefix" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "" @@ -26618,13 +26905,15 @@ 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 "" +msgstr "A dinamikus tárgy hozzáadásához használj jinja címkéket, mint például a\n\n" +"
    Új {{ doc.doctype }} #{{ doc.name }}
    " #. Description of the 'Subject' (Data) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "To add dynamic subject, use jinja tags like\n\n" "
    {{ doc.name }} Delivered
    " -msgstr "" +msgstr "A dinamikus tárgy hozzáadásához használj jinja címkéket, mint például a\n\n" +"
    {{ doc.name }} kézbesítve
    " #. Description of the 'JSON Request Body' (Code) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json @@ -26633,7 +26922,11 @@ msgid "To add dynamic values from the document, use jinja tags like\n\n" "
    { \"id\": \"{{ doc.name }}\" }\n"
     "
    \n" "" -msgstr "" +msgstr "A dinamikus értékek hozzáadásához használj jinja címkéket, mint például a\n\n" +"
    \n" +"
    { \"id\": \"{{ doc.name }}\" }\n"
    +"
    \n" +"
    " #: frappe/email/doctype/auto_email_report/auto_email_report.py:109 msgid "To allow more reports update limit in System Settings." @@ -26649,7 +26942,7 @@ msgstr "" #. Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "To begin the date range at the start of the chosen period. For example, if 'Year' is selected as the period, the report will start from January 1st of the current year." -msgstr "" +msgstr "A dátumtartomány a kiválasztott időszak kezdeténél kezdődik. Például, ha az \"Év\" van kiválasztva időszakként, a jelentés a folyó év január 1-jével kezdődik." #: frappe/automation/doctype/auto_repeat/auto_repeat.js:35 msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}." @@ -26671,7 +26964,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "" @@ -26700,12 +26993,12 @@ msgstr "" #. 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "To use Google Indexing, enable Google Settings." -msgstr "" +msgstr "A Google indexelés használatához engedélyezze a <0>Google-beállításokat." #. Description of the 'Slack Channel' (Link) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "To use Slack Channel, add a Slack Webhook URL." -msgstr "" +msgstr "A Slack-csatorna használatához adjon hozzá egy Slack Webhook URL-t." #: frappe/public/js/frappe/utils/diffview.js:44 msgid "To version" @@ -26726,7 +27019,7 @@ msgstr "" msgid "Today" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "" @@ -26742,11 +27035,11 @@ msgstr "" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26760,7 +27053,7 @@ msgstr "" #. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Token" -msgstr "" +msgstr "Token" #. Name of a DocType #: frappe/integrations/doctype/token_cache/token_cache.json @@ -26776,12 +27069,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 "Token Típusa" #. Label of the token_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Token URI" -msgstr "" +msgstr "Toke URI" #: frappe/utils/oauth.py:184 msgid "Token is missing" @@ -26792,7 +27085,7 @@ msgid "Tomorrow" msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "" @@ -26808,7 +27101,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26826,7 +27119,7 @@ msgstr "" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13 msgid "Top 10" -msgstr "" +msgstr "Első 10" #. Name of a DocType #: frappe/website/doctype/top_bar_item/top_bar_item.json @@ -26844,7 +27137,7 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/print_format_builder/PrintFormatControls.vue:245 msgid "Top Center" -msgstr "" +msgstr "Középen Felül" #. Label of the top_errors (Table) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -26855,7 +27148,7 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/print_format_builder/PrintFormatControls.vue:244 msgid "Top Left" -msgstr "" +msgstr "Bal Felül" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #. Option for the 'Page Number' (Select) field in DocType 'Print Format' @@ -26863,17 +27156,17 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/print_format_builder/PrintFormatControls.vue:246 msgid "Top Right" -msgstr "" +msgstr "Jobb felül" #. Label of the topic (Link) field in DocType 'Discussion Reply' #: frappe/website/doctype/discussion_reply/discussion_reply.json msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -26911,30 +27204,30 @@ 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 "Teljes Munka Idő" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " +msgid "Total number of emails to sync in initial sync process" msgstr "" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "" #. Label of the trace_id (Data) field in DocType 'Error Log' #: frappe/core/doctype/error_log/error_log.json msgid "Trace ID" -msgstr "" +msgstr "Nyomkövetési ID" #. Label of the traceback (Code) field in DocType 'Patch Log' #: frappe/core/doctype/patch_log/patch_log.json @@ -26966,14 +27259,14 @@ 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 "Lépések Követése" #. 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 "Megtekintések Követése" #. Description of the 'Track Email Status' (Check) field in DocType 'Email #. Account' @@ -26981,7 +27274,9 @@ msgstr "" msgid "Track if your email has been opened by the recipient.\n" "
    \n" "Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered \"Opened\"" -msgstr "" +msgstr "Nyomon követheti, hogy a címzett megnyitotta-e az e-mailt.\n" +"
    \n" +"Megjegyzés: Ha több címzettnek küld, még ha 1 címzett olvassa is el az e-mailt, akkor is \"megnyitottnak\" minősül." #. Description of a DocType #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -26993,26 +27288,10 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "" @@ -27026,6 +27305,11 @@ msgstr "" msgid "Transition Rules" msgstr "" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" @@ -27040,18 +27324,18 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" -msgstr "" +msgstr "Adatok Fordítása" #. Label of the translated_doctype (Check) field in DocType 'DocType' #. Label of the translated_doctype (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Translate Link Fields" -msgstr "" +msgstr "Hivatkozás Mezők Fordítása" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "" @@ -27119,7 +27403,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 "" +msgstr "Érvényes metódusok, például a \"before_insert\", \"after_update\" stb. aktiválása (a kiválasztott DocType-tól függ)" #: frappe/custom/doctype/customize_form/customize_form.js:144 msgid "Trim Table" @@ -27133,10 +27417,10 @@ msgstr "" #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Try a Naming Series" -msgstr "" +msgstr "Próbáljon ki egy névsorozatot" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "" @@ -27202,7 +27486,7 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27237,7 +27521,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 "Felület Túra" #. Label of the uid (Int) field in DocType 'Communication' #. Label of the uid (Data) field in DocType 'Email Flag Queue' @@ -27246,14 +27530,14 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "UID" -msgstr "" +msgstr "UID" #. Label of the uidnext (Int) field in DocType 'Email Account' #. Label of the uidnext (Data) field in DocType 'IMAP Folder' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/imap_folder/imap_folder.json msgid "UIDNEXT" -msgstr "" +msgstr "UIDNEXT" #. Label of the uidvalidity (Data) field in DocType 'Email Account' #. Label of the uidvalidity (Data) field in DocType 'IMAP Folder' @@ -27271,7 +27555,8 @@ msgstr "" #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n" "
    e.g. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook" -msgstr "" +msgstr "URI-k az engedélyezési kód fogadásához, miután a felhasználó engedélyezi a hozzáférést, valamint a hibaüzenetek. Általában egy REST végpont, amelyet a kliensalkalmazás tesz elérhetővé.\n" +"
    pl. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook" #. Option for the 'Type' (Select) field in DocType 'Workspace' #. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' @@ -27288,14 +27573,14 @@ msgstr "" #: frappe/website/doctype/top_bar_item/top_bar_item.json #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL" -msgstr "" +msgstr "URL" #. Description of the 'Documentation Link' (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "URL for documentation or help" msgstr "" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "" @@ -27398,7 +27683,7 @@ msgstr "" msgid "Unable to update event" msgstr "" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "" @@ -27407,7 +27692,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27423,7 +27708,7 @@ msgstr "" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27470,7 +27755,7 @@ msgstr "" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "" @@ -27482,8 +27767,7 @@ msgstr "" msgid "Unlock Reference Document" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "" @@ -27499,7 +27783,7 @@ msgstr "" msgid "Unread Notification Sent" msgstr "" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "" @@ -27537,8 +27821,8 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27558,7 +27842,7 @@ msgstr "" msgid "Unzipping files..." msgstr "" -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "" @@ -27572,7 +27856,7 @@ msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "" @@ -27580,7 +27864,7 @@ msgstr "" #. Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Amendment Naming" -msgstr "" +msgstr "Módosítás Elnevezésének Frissítése" #. Option for the 'Import Type' (Select) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json @@ -27606,11 +27890,16 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Update Series Counter" -msgstr "" +msgstr "Széria Szám Frissítése" #. Label of the update_series_start (Button) field in DocType 'Document Naming #. Settings' @@ -27648,7 +27937,7 @@ msgstr "" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "" @@ -27656,7 +27945,7 @@ msgstr "" msgid "Updated Successfully" msgstr "" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "" @@ -27664,7 +27953,7 @@ msgstr "" msgid "Updated successfully" msgstr "" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "" @@ -27703,14 +27992,14 @@ msgstr "" #: frappe/public/js/billing.bundle.js:131 msgid "Upgrade plan" -msgstr "" +msgstr "Díjcsomag Bővítése" #: frappe/public/js/frappe/list/list_sidebar.js:331 msgid "Upgrade your support experience with Frappe Helpdesk" -msgstr "" +msgstr "Fejleszd támogatási élményedet a Frappe Helpdesk segítségével" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27720,11 +28009,11 @@ msgstr "" msgid "Upload Image" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "" @@ -27743,7 +28032,7 @@ msgstr "" #: frappe/desk/doctype/onboarding_step/onboarding_step.json #, python-format msgid "Use % for any non empty value." -msgstr "" +msgstr "Használjon % jelet minden nem üres értékhez." #. Label of the ascii_encode_password (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -27754,12 +28043,12 @@ msgstr "" #. Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Use First Day of Period" -msgstr "" +msgstr "Használja az Időszak Első Napját" #. Label of the use_html (Check) field in DocType 'Email Template' #: frappe/email/doctype/email_template/email_template.json msgid "Use HTML" -msgstr "" +msgstr "HTML használata" #. Label of the use_imap (Check) field in DocType 'Email Account' #. Label of the use_imap (Check) field in DocType 'Email Domain' @@ -27772,7 +28061,7 @@ msgstr "" #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Use Number Format from Currency" -msgstr "" +msgstr "Szám Formátum Használata a Pénznemekből" #. Label of the use_post (Check) field in DocType 'SMS Settings' #: frappe/core/doctype/sms_settings/sms_settings.json @@ -27798,7 +28087,7 @@ msgstr "" #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/email_domain/email_domain.json msgid "Use STARTTLS" -msgstr "" +msgstr "STARTTLS használata" #. Label of the use_tls (Check) field in DocType 'Email Account' #. Label of the use_tls (Check) field in DocType 'Email Domain' @@ -27814,22 +28103,18 @@ 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 "Használjon más E-mail azonosítót" #. Description of the 'Detect CSV type' (Check) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "" -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "" @@ -27847,10 +28132,12 @@ msgstr "" #. Label of the used_oauth (Check) field in DocType 'User Email' #: frappe/core/doctype/user_email/user_email.json msgid "Used OAuth" -msgstr "" +msgstr "OAuth-ot Használt" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -27859,6 +28146,7 @@ msgstr "" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -27873,11 +28161,12 @@ msgstr "" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -27886,6 +28175,7 @@ msgstr "" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -27902,17 +28192,11 @@ msgstr "" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "" - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "" @@ -27942,7 +28226,7 @@ msgstr "" msgid "User Cannot Search" msgstr "" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "" @@ -27954,7 +28238,7 @@ msgstr "" #. Label of the user_details_tab (Tab Break) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "User Details" -msgstr "" +msgstr "Felhasználói Adatok" #. Name of a report #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.json @@ -27994,7 +28278,7 @@ msgstr "" #. Group' #: frappe/core/doctype/user_group/user_group.json msgid "User Group Members" -msgstr "" +msgstr "Felhasználói Csoport Tagok" #. Label of the userid (Data) field in DocType 'User Social Login' #: frappe/core/doctype/user_social_login/user_social_login.json @@ -28006,11 +28290,6 @@ msgstr "" msgid "User ID Property" msgstr "" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28019,7 +28298,7 @@ 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 "Felhasználói Azonosító Mező" #: frappe/core/doctype/user_type/user_type.py:283 msgid "User Id Field is mandatory in the user type {0}" @@ -28030,6 +28309,11 @@ msgstr "" msgid "User Image" msgstr "" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "" @@ -28048,12 +28332,12 @@ msgstr "" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28066,10 +28350,12 @@ msgstr "" msgid "User Permissions created successfully" msgstr "" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" -msgstr "" +msgstr "Felhasználói Szerepkör" #. Name of a DocType #: frappe/core/doctype/user_role_profile/user_role_profile.json @@ -28132,6 +28418,10 @@ msgstr "" msgid "User does not have permission to create the new {0}" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "" @@ -28162,7 +28452,7 @@ msgstr "" msgid "User {0} cannot be disabled" msgstr "" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "" @@ -28183,7 +28473,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "" @@ -28191,7 +28481,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28202,7 +28492,7 @@ msgstr "" #. Label of the userinfo_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Userinfo URI" -msgstr "" +msgstr "Felhasználói információ URI" #. Label of the username (Data) field in DocType 'User' #. Label of the username (Data) field in DocType 'User Social Login' @@ -28212,7 +28502,7 @@ msgstr "" msgid "Username" msgstr "" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "" @@ -28257,7 +28547,7 @@ msgstr "" #. Label of the utilization_percent (Percent) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Utilization %" -msgstr "" +msgstr "Kihasználtság %" #. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization #. Code' @@ -28296,7 +28586,7 @@ msgstr "" msgid "Validate SSL Certificate" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "" @@ -28319,8 +28609,8 @@ msgstr "" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28352,7 +28642,7 @@ msgstr "" msgid "Value To Be Set" msgstr "" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "" @@ -28368,11 +28658,11 @@ msgstr "" msgid "Value for a check field can be either 0 or 1" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" -#: frappe/model/base_document.py:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "" @@ -28397,7 +28687,7 @@ msgstr "" msgid "Value to Validate" msgstr "" -#: frappe/model/base_document.py:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "" @@ -28414,20 +28704,20 @@ msgstr "" msgid "Value {0} must in {1} format" msgstr "" -#: frappe/core/doctype/version/version_view.html:8 +#: frappe/core/doctype/version/version_view.html:9 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 "" +msgstr "Verdana" #: frappe/templates/includes/login/login.js:333 msgid "Verification" msgstr "" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "" @@ -28489,27 +28779,19 @@ msgstr "" msgid "View Audit Trail" msgstr "" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" #: frappe/core/doctype/file/file.js:4 msgid "View File" -msgstr "" +msgstr "Fájl Megtekintése" #: frappe/public/js/frappe/ui/notifications/notifications.js:220 msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "" @@ -28519,7 +28801,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28545,7 +28827,7 @@ msgstr "" #. Label of the view_switcher (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "View Switcher" -msgstr "" +msgstr "Nézetváltó" #. Label of a standard navbar item #. Type: Action @@ -28566,7 +28848,7 @@ msgstr "" msgid "View this in your browser" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "" @@ -28592,7 +28874,7 @@ msgstr "" #. Label of the is_virtual (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Virtual" -msgstr "" +msgstr "Virtuális" #: frappe/model/virtual_doctype.py:76 msgid "Virtual DocType {} requires a static method called {} found {}" @@ -28605,7 +28887,7 @@ msgstr "" #. Label of the visibility_section (Section Break) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Visibility" -msgstr "" +msgstr "Láthatóság" #: frappe/public/js/frappe/form/templates/timeline_message_box.html:41 msgid "Visible to website/portal users." @@ -28623,7 +28905,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 "Látogató Azonosító" #: frappe/templates/discussions/reply_section.html:39 msgid "Want to discuss?" @@ -28635,6 +28917,7 @@ msgid "Warehouse" msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "" @@ -28643,7 +28926,7 @@ msgstr "" msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "" @@ -28654,7 +28937,7 @@ msgstr "" #. Description of the 'Counter' (Int) field in DocType 'Document Naming Rule' #: frappe/core/doctype/document_naming_rule/document_naming_rule.json msgid "Warning: Updating counter may lead to document name conflicts if not done properly" -msgstr "" +msgstr "Figyelmeztetés: A számláló frissítése dokumentumnév-ütközésekhez vezethet, ha nem megfelelően történik" #: frappe/website/doctype/help_article/templates/help_article.html:24 msgid "Was this article helpful?" @@ -28729,7 +29012,7 @@ msgstr "" msgid "Web Page Block" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "" @@ -28821,7 +29104,7 @@ msgstr "" #. Label of the sb_condition (Section Break) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "Webhook Trigger" -msgstr "" +msgstr "Webhook Trigger" #. Label of the webhook_url (Data) field in DocType 'Slack Webhook URL' #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json @@ -28832,7 +29115,7 @@ msgstr "" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "" @@ -28845,10 +29128,6 @@ msgstr "" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -28890,9 +29169,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 "Webhely Keresési Mező" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "" @@ -28954,7 +29233,7 @@ msgstr "" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Website Theme image link" -msgstr "" +msgstr "Webhely Téma Kép Hivatkozás" #. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System #. Health Report' @@ -29031,7 +29310,7 @@ msgstr "" #. Label of the welcome_url (Data) field in DocType 'Email Group' #: frappe/email/doctype/email_group/email_group.json msgid "Welcome URL" -msgstr "" +msgstr "Üdvözlő URL" #. Name of a Workspace #: frappe/core/workspace/welcome_workspace/welcome_workspace.json @@ -29054,19 +29333,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 "Ha engedélyezi, ez lehetővé teszi a vendégeknek, hogy fájlokat töltsenek fel az alkalmazásba. Ezt engedélyezheti, ha fájlokat szeretne gyűjteni a felhasználótól anélkül, hogy be kellene jelentkeznie, például a munkaalkalmazások webes űrlapján." #. Description of the 'Store Attached PDF Document' (Check) field in DocType #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "When sending document using email, store the PDF on Communication. Warning: This can increase your storage usage." -msgstr "" +msgstr "Dokumentum e-mailben történő küldésekor a PDF-et a Kommunikáció szolgáltatásban tárolja. Figyelem: Ez növelheti a tárhelyhasználatot." #. Description of the 'Force Web Capture Mode for Uploads' (Check) field in #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected." -msgstr "" +msgstr "Fájlok feltöltésekor kényszerítse ki a webalapú képrögzítés használatát. Ha ez nincs bejelölve, akkor az alapértelmezett viselkedés a mobil natív kamerájának használata, amikor mobilhasználatot észlel." #: frappe/core/page/permission_manager/permission_manager_help.html:18 msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number." @@ -29107,12 +29386,7 @@ msgstr "" #. Filter' #: frappe/core/doctype/report_filter/report_filter.json msgid "Will add \"%\" before and after the query" -msgstr "" - -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "" +msgstr "A lekérdezés előtt és után \"%\"-ot ad hozzá a lekérdezéshez" #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" @@ -29126,9 +29400,9 @@ msgstr "" #. in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." -msgstr "" +msgstr "Az inaktív webhelyek esetében az ütemezett feladatok csak naponta egyszer fognak futni. Állítsa 0-ra, hogy elkerülje az ütemező automatikus kikapcsolását." -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "" @@ -29136,12 +29410,12 @@ msgstr "" #. Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Worker Information" -msgstr "" +msgstr "Dolgozó Információ" #. Label of the worker_name (Data) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Worker Name" -msgstr "" +msgstr "Dolgozó Név" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #. Group in DocType's connections @@ -29195,7 +29469,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 "Munkafolyamat Szerkesztő ID" #: frappe/workflow/doctype/workflow/workflow.js:11 msgid "Workflow Builder allows you to create workflows visually. You can drag and drop states and link them to create transitions. Also you can update thieir properties from the sidebar." @@ -29204,9 +29478,9 @@ msgstr "" #. Label of the workflow_data (JSON) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Workflow Data" -msgstr "" +msgstr "Munkafolyamat Adatok" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "" @@ -29232,11 +29506,11 @@ msgstr "" msgid "Workflow State Field" msgstr "" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "" @@ -29244,15 +29518,30 @@ msgstr "" msgid "Workflow States Don't Exist" msgstr "" -#: frappe/model/workflow.py:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29268,13 +29557,13 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29342,13 +29631,13 @@ msgstr "" #. Option for the 'View' (Select) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "Workspaces" -msgstr "" +msgstr "Munkaterületek" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "" @@ -29367,11 +29656,11 @@ msgstr "" msgid "Write" msgstr "" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "" @@ -29383,32 +29672,32 @@ 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 "" +msgstr "XLSX" #. Label of the y_axis (Table) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Y Axis" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" msgstr "" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 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 "" +msgstr "Yahoo Mail" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Yandex.Mail" -msgstr "" +msgstr "Yandex.Mail" #. Label of the heatmap_year (Select) field in DocType 'Dashboard Chart' #. Label of the year (Data) field in DocType 'Company History' @@ -29440,7 +29729,7 @@ msgstr "" #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Yellow" -msgstr "" +msgstr "Sárga" #. Option for the 'Standard' (Select) field in DocType 'Page' #. Option for the 'Is Standard' (Select) field in DocType 'Report' @@ -29448,16 +29737,17 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29485,6 +29775,18 @@ msgstr "" msgid "You Liked" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "" @@ -29495,7 +29797,7 @@ msgstr "" #: frappe/integrations/frappe_providers/frappecloud_billing.py:28 msgid "You are not allowed to access this resource" -msgstr "" +msgstr "Nincs hozzáférésed ehhez az erőforráshoz" #: frappe/permissions.py:431 msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" @@ -29523,20 +29825,20 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29560,7 +29862,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:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29586,13 +29888,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " +msgid "You can also copy-paste this" msgstr "" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "" +#: frappe/templates/emails/user_invitation_expired.html:8 +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 "" @@ -29605,11 +29911,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29629,9 +29935,9 @@ msgstr "" msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "" -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." -msgstr "" +msgstr "Csak JPG, PNG, PDF, TXT, CSV vagy Microsoft dokumentumokat tölthet fel." #: frappe/core/doctype/data_export/exporter.py:199 msgid "You can only upload upto 5000 records in one go. (may be less in some cases)" @@ -29645,9 +29951,9 @@ msgstr "" #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "You can set a high value here if multiple users will be logging in from the same network." -msgstr "" +msgstr "Itt magas értéket állíthat be, ha több felhasználó fog bejelentkezni ugyanarról a hálózatról." -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "" @@ -29659,11 +29965,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29681,7 +29987,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:385 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29711,7 +30017,7 @@ msgstr "" msgid "You created this" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "" @@ -29724,15 +30030,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29744,11 +30050,11 @@ msgstr "" msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "" @@ -29756,19 +30062,19 @@ msgstr "" msgid "You don't have permission to get a report on: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " +msgid "You have a new message from:" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29776,11 +30082,7 @@ msgstr "" msgid "You have not entered a value. The field will be set to empty." msgstr "" -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "" @@ -29800,7 +30102,7 @@ msgstr "" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29817,21 +30119,21 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "" #: frappe/model/document.py:358 msgid "You need the '{0}' permission on {1} {2} to perform this action." -msgstr "" +msgstr "A művelet végrehajtásához szükséged van a '{0}' engedélyre a {1} {2} fiókon." #: frappe/desk/doctype/workspace/workspace.py:127 msgid "You need to be Workspace Manager to delete a public workspace." -msgstr "" +msgstr "Nyilvános munkaterület törléséhez munkaterület-kezelőnek kell lenned." #: frappe/desk/doctype/workspace/workspace.py:76 msgid "You need to be Workspace Manager to edit this document" @@ -29845,7 +30147,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "" @@ -29853,12 +30155,12 @@ msgstr "" msgid "You need to be logged in to access this page" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "" #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " +msgid "You need to create these first:" msgstr "" #: frappe/www/login.html:76 @@ -29883,21 +30185,29 @@ msgstr "" #: frappe/model/rename_doc.py:391 msgid "You need write permission on {0} {1} to merge" -msgstr "" +msgstr "Írási jogosultság szükséges a {0} {1} oldalon az egyesítéshez" #: frappe/model/rename_doc.py:386 msgid "You need write permission on {0} {1} to rename" -msgstr "" +msgstr "Írási jogosultság szükséges a {0} {1} oldalon az átnevezéshez" #: frappe/client.py:449 msgid "You need {0} permission to fetch values from {1} {2}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "" @@ -29928,10 +30238,26 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "" @@ -29961,7 +30287,7 @@ msgstr "" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "" @@ -29985,10 +30311,22 @@ msgstr "" msgid "Your email address" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "" @@ -30011,7 +30349,11 @@ msgstr "" msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "" -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "" @@ -30033,14 +30375,14 @@ msgstr "" msgid "Zero means send records updated at anytime" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" -msgstr "" +msgstr "[ {0} által végrehajtott művelet]" #. Label of the _doctype (Link) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "_doctype" -msgstr "" +msgstr "_doctype" #. Label of the _report (Link) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json @@ -30055,20 +30397,16 @@ msgstr "" msgid "`job_id` paramater is required for deduplication." msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" -msgstr "" +msgstr "after_insert" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "amend" -msgstr "" +msgstr "módosítás" #: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 msgid "and" @@ -30091,9 +30429,9 @@ msgstr "" #. Label of the profile (Code) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "cProfile Output" -msgstr "" +msgstr "cProfil Kimenet" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "" @@ -30101,12 +30439,12 @@ msgstr "" #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "cancel" -msgstr "" +msgstr "mégse" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "canceled" -msgstr "" +msgstr "törölve" #: frappe/templates/includes/list/filters.html:19 msgid "clear" @@ -30120,12 +30458,12 @@ msgstr "" #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "create" -msgstr "" +msgstr "létrehozás" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "cyan" -msgstr "" +msgstr "cián" #: frappe/public/js/frappe/form/controls/duration.js:218 #: frappe/public/js/frappe/utils/utils.js:1119 @@ -30168,18 +30506,18 @@ msgstr "" #: frappe/core/doctype/rq_job/rq_job.json #: frappe/core/doctype/rq_worker/rq_worker.json msgid "default" -msgstr "" +msgstr "alapértelmezett" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "deferred" -msgstr "" +msgstr "halasztott" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "delete" -msgstr "" +msgstr "töröl" #: frappe/public/js/frappe/ui/sort_selector.html:5 #: frappe/public/js/frappe/ui/sort_selector.js:48 @@ -30238,12 +30576,12 @@ msgstr "" msgid "email" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "" @@ -30251,7 +30589,7 @@ msgstr "" #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "export" -msgstr "" +msgstr "exportálás" #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' @@ -30262,23 +30600,23 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "failed" -msgstr "" +msgstr "sikertelen" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "fairlogin" -msgstr "" +msgstr "fairlogin" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "finished" -msgstr "" +msgstr "kész" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "gray" -msgstr "" +msgstr "szürke" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json @@ -30288,7 +30626,7 @@ msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "grey" -msgstr "" +msgstr "szürke" #: frappe/utils/backups.py:399 msgid "gzip not found in PATH! This is required to take a backup." @@ -30300,7 +30638,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "" @@ -30313,12 +30651,7 @@ msgstr "" #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "import" -msgstr "" - -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "" +msgstr "import" #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" @@ -30328,14 +30661,14 @@ msgstr "" msgid "just now" msgstr "" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "light-blue" -msgstr "" +msgstr "világoskék" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json @@ -30346,7 +30679,7 @@ msgstr "" #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "linkedin" -msgstr "" +msgstr "linkedin" #. Option for the 'Type' (Select) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json @@ -30357,7 +30690,7 @@ msgstr "" msgid "logged in" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30366,7 +30699,7 @@ msgstr "" #: frappe/core/doctype/rq_job/rq_job.json #: frappe/core/doctype/rq_worker/rq_worker.json msgid "long" -msgstr "" +msgstr "hosszú" #: frappe/public/js/frappe/form/controls/duration.js:220 #: frappe/public/js/frappe/utils/utils.js:1127 @@ -30378,11 +30711,6 @@ msgstr "" msgid "merged {0} into {1}" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "" - #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json @@ -30406,7 +30734,7 @@ msgstr "" msgid "module name..." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "" @@ -30422,12 +30750,12 @@ msgstr "" #. Label of the nonce (Data) field in DocType 'OAuth Authorization Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "nonce" -msgstr "" +msgstr "egyszer" #. Label of the notified (Check) field in DocType 'Reminder' #: frappe/automation/doctype/reminder/reminder.json msgid "notified" -msgstr "" +msgstr "értesített" #: frappe/public/js/frappe/utils/pretty_date.js:25 msgid "now" @@ -30440,37 +30768,37 @@ msgstr "" #. Label of the old_parent (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "old_parent" -msgstr "" +msgstr "old_parent" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_cancel" -msgstr "" +msgstr "on_cancel" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_change" -msgstr "" +msgstr "on_change" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_submit" -msgstr "" +msgstr "on_submit" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_trash" -msgstr "" +msgstr "on_trash" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_update" -msgstr "" +msgstr "on_update" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_update_after_submit" -msgstr "" +msgstr "on_update_after_submit" #: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90 #: frappe/www/login.py:112 @@ -30490,13 +30818,13 @@ msgstr "" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "pink" -msgstr "" +msgstr "rózsaszín" #. Option for the 'Code challenge method' (Select) field in DocType 'OAuth #. Authorization Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "plain" -msgstr "" +msgstr "egyszerű" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' @@ -30507,7 +30835,7 @@ msgstr "" #. Label of the processlist (HTML) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "processlist" -msgstr "" +msgstr "folyamatlista" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json @@ -30522,23 +30850,19 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "queued" -msgstr "" +msgstr "várakozik" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "read" -msgstr "" +msgstr "olvasás" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "red" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "" @@ -30547,7 +30871,7 @@ msgstr "" #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "report" -msgstr "" +msgstr "jelentés" #. Label of the response (HTML) field in DocType 'Custom Role' #: frappe/core/doctype/custom_role/custom_role.json @@ -30568,18 +30892,18 @@ msgstr "" #. Authorization Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "s256" -msgstr "" +msgstr "s256" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "scheduled" -msgstr "" +msgstr "ütemezett" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "select" -msgstr "" +msgstr "választás" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' @@ -30592,28 +30916,28 @@ msgstr "" #: frappe/core/doctype/rq_job/rq_job.json #: frappe/core/doctype/rq_worker/rq_worker.json msgid "short" -msgstr "" +msgstr "rövid" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json msgid "started" -msgstr "" +msgstr "elkezdődött" #: frappe/desk/page/setup_wizard/setup_wizard.js:201 msgid "starting the setup..." @@ -30623,25 +30947,25 @@ msgstr "" #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "string value, i.e. group" -msgstr "" +msgstr "karakterlánc érték, pl: csoport" #. 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 "karakterlánc érték, pl: tag" #. Description of the 'Custom Group Search' (Data) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "string value, i.e. {0} or uid={0},ou=users,dc=example,dc=com" -msgstr "" +msgstr "karakterlánc érték, pl: {0} vagy uid={0},ou=felhasználók,dc=példa,dc=com" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "submit" -msgstr "" +msgstr "elküld" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:173 msgid "tag name..., e.g. #tag" @@ -30659,11 +30983,15 @@ msgstr "" msgid "this shouldn't break" msgstr "" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "a böngészőbe" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json msgid "twitter" -msgstr "" +msgstr "twitter" #: frappe/public/js/frappe/change_log.html:7 msgid "updated to {0}" @@ -30680,13 +31008,13 @@ 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 "version_table" #: frappe/automation/doctype/assignment_rule/assignment_rule.py:382 msgid "via Assignment Rule" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "" @@ -30698,9 +31026,9 @@ msgstr "" #. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event' #: frappe/desk/doctype/event/event.json msgid "via Google Meet" -msgstr "" +msgstr "Google Meet-en keresztül" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "" @@ -30726,22 +31054,27 @@ msgstr "" #. Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "when clicked on element it will focus popover if present." -msgstr "" +msgstr "az elemre kattintva a felugró ablakra fókuszál, ha jelen van." #. Option for the 'PDF Generator' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "" +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "write" -msgstr "" +msgstr "ír" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json @@ -30764,11 +31097,11 @@ msgstr "" msgid "{0}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "" @@ -30794,19 +31127,19 @@ msgstr "" msgid "{0} Calendar" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "" @@ -30830,6 +31163,10 @@ msgstr "" msgid "{0} List" msgstr "" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "" @@ -30842,7 +31179,7 @@ msgstr "" msgid "{0} Name" msgstr "" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "" @@ -30852,11 +31189,10 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "" @@ -30881,7 +31217,15 @@ msgstr "" msgid "{0} added" msgstr "" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "" @@ -30893,7 +31237,7 @@ msgstr "" msgid "{0} already unsubscribed for {1} {2}" msgstr "" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "" @@ -30901,7 +31245,7 @@ msgstr "" msgid "{0} are currently {1}" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "" @@ -30918,7 +31262,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -30933,7 +31277,7 @@ msgstr "" #: frappe/model/document.py:548 msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." -msgstr "" +msgstr "{0} nem módosítható, mert nincs visszavonva. Kérjük, törölje a dokumentumot a módosítás létrehozása előtt." #: frappe/public/js/form_builder/store.js:190 msgid "{0} cannot be hidden and mandatory without any default value" @@ -30960,11 +31304,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." msgstr "" @@ -30977,7 +31317,7 @@ msgstr "" msgid "{0} created this" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "" @@ -30999,7 +31339,7 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31031,7 +31371,7 @@ msgstr "" msgid "{0} hours ago" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "" @@ -31040,23 +31380,23 @@ msgstr "" msgid "{0} in row {1} cannot have both URL and child items" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "" @@ -31065,27 +31405,27 @@ msgstr "" msgid "{0} is currently {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "" @@ -31093,7 +31433,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31113,12 +31453,12 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "" @@ -31126,15 +31466,15 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "" @@ -31150,55 +31490,59 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 -#: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: 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/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31231,43 +31575,43 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" -msgstr "" +msgstr "{0} a '{1}' kezdetűnek kell lennie." + +#: frappe/model/document.py:1566 +msgid "{0} must be equal to '{1}'" +msgstr "{0} egyenlőnek kell lennie '{1}'" #: frappe/model/document.py:1562 -msgid "{0} must be equal to '{1}'" -msgstr "" - -#: frappe/model/document.py:1558 msgid "{0} must be none of {1}" -msgstr "" +msgstr "{0} nem lehet a(z) {1} egyike sem" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" -msgstr "" +msgstr "{0} kell lennie {1} {2}" #: frappe/core/doctype/language/language.py:79 msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "" @@ -31280,11 +31624,11 @@ msgid "{0} not found" msgstr "" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31293,7 +31637,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "" @@ -31317,6 +31661,10 @@ msgstr "" msgid "{0} records will be exported" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31326,15 +31674,29 @@ msgstr "" msgid "{0} removed their assignment." msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" +msgstr "{0}, sor #{1}:" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "" @@ -31354,11 +31716,11 @@ msgstr "" msgid "{0} shared this document with {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "" @@ -31371,8 +31733,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "" @@ -31382,7 +31744,7 @@ msgstr "" #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "" @@ -31390,7 +31752,7 @@ msgstr "" msgid "{0} un-shared this document with {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "" @@ -31426,15 +31788,15 @@ msgstr "" msgid "{0} {1} added to Dashboard {2}" msgstr "" -#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "" @@ -31450,91 +31812,91 @@ msgstr "" msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" -#: frappe/model/base_document.py:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "" #: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192 msgid "{0}/{1} complete | Please leave this tab open until completion." -msgstr "" +msgstr "{0}/{1} kész | Kérjük, hagyja ezt a fület nyitva a befejezésig." -#: frappe/model/base_document.py:1120 +#: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 msgid "{0}: Cannot set import as {1} is not importable" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 +#: 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:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "" @@ -31542,7 +31904,7 @@ msgstr "" msgid "{0}: Other permission rules may also apply" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "" @@ -31550,7 +31912,7 @@ msgstr "" msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "" @@ -31563,11 +31925,11 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "" @@ -31591,7 +31953,7 @@ msgstr "" msgid "{count} rows selected" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "" @@ -31599,11 +31961,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
    {}" msgstr "" @@ -31629,7 +31991,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/id.po b/frappe/locale/id.po index 69f71893f1..ce8c313ad5 100644 --- a/frappe/locale/id.po +++ b/frappe/locale/id.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-25 22:40\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Indonesian\n" "MIME-Version: 1.0\n" @@ -18,10 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: id_ID\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr "ke browser Anda" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json @@ -61,7 +57,7 @@ msgstr "" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" msgstr "" @@ -74,7 +70,7 @@ msgstr "" msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "'Di Pencarian Global' tidak dibolehkan jenis {0} pada baris {1}" @@ -82,19 +78,23 @@ msgstr "'Di Pencarian Global' tidak dibolehkan jenis {0} pada baris {1}" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "'Tampilan Daftar' tidak diperbolehkan jenis {0} di baris {1}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" msgstr "'Penerima' belum ditentukan" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "'{0}' tidak diperbolehkan untuk jenis {1} di baris {2}" @@ -102,11 +102,11 @@ msgstr "'{0}' tidak diperbolehkan untuk jenis {1} di baris {2}" msgid "(Mandatory)" msgstr "" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "** Gagal: {0} ke {1}: {2}" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" msgstr "" @@ -122,7 +122,7 @@ msgstr "" msgid "0 is highest" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "" @@ -140,15 +140,11 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "1 Acara Kalender Google disinkronkan." -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "1 komentar" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "" @@ -157,17 +153,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "1 jam yang lalu" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "1 menit yang lalu" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "1 bulan lalu" @@ -179,37 +175,47 @@ msgstr "" msgid "1 record will be exported" msgstr "1 catatan akan diekspor" -#: frappe/tests/test_utils.py:711 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "" + +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "1 minggu yang lalu" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "1 tahun yang lalu" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "" @@ -225,7 +231,7 @@ msgstr "" msgid "5 Records" msgstr "5 catatan" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "" @@ -245,6 +251,13 @@ msgstr "" msgid "<=" msgstr "" +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "" @@ -254,6 +267,16 @@ msgstr "" msgid "
    Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
    " msgstr "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

    Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

    " +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

    Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

    " +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -479,7 +502,7 @@ msgid "

    To interact with above HTML you will have to use `root_element` as a p "" msgstr "" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

    " msgstr "" @@ -546,7 +569,7 @@ msgstr "" msgid ">=" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" @@ -555,15 +578,16 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" -msgstr "Postingan unggulan harus memiliki gambar sampul" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "" @@ -576,7 +600,7 @@ msgstr "" msgid "A new account has been created for you at {0}" msgstr "Sebuah akun baru telah dibuat untuk Anda di {0}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "{0} {1} berulang telah dibuat untuk Anda melalui Ulangi Otomatis {2}." @@ -675,13 +699,17 @@ msgstr "" msgid "API Endpoint Args" msgstr "" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -700,6 +728,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -720,7 +752,7 @@ msgstr "" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -767,6 +799,20 @@ msgstr "Sekitar {0} menit tersisa" msgid "About {0} seconds remaining" msgstr "Tentang {0} detik tersisa" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "Terima Undangan" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "Diterima pada" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -792,7 +838,7 @@ msgstr "" msgid "Access Token URL" msgstr "" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Akses tidak diizinkan dari Alamat IP ini" @@ -856,7 +902,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "aksi Gagal" @@ -908,7 +954,7 @@ msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Tindakan" @@ -965,7 +1011,7 @@ msgstr "Log Aktivitas" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -976,7 +1022,7 @@ msgstr "Log Aktivitas" msgid "Add" msgstr "Tambahkan" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -988,7 +1034,7 @@ msgstr "Tambah / Perbarui" msgid "Add A New Rule" msgstr "Tambah Aturan Baru" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Tambahkan lampiran" @@ -1008,7 +1054,7 @@ msgstr "" msgid "Add Border at Top" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "" @@ -1021,10 +1067,10 @@ msgid "Add Child" msgstr "Tambah Anak" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "Tambahkan Kolom" @@ -1068,7 +1114,7 @@ msgstr "" #: frappe/public/js/frappe/form/grid.js:66 msgid "Add Multiple" -msgstr "Tambahkan Beberapa" +msgstr "Tambah Beberapa" #: frappe/core/page/permission_manager/permission_manager.js:445 msgid "Add New Permission Rule" @@ -1083,7 +1129,7 @@ msgstr "Tambahkan Peserta" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "" @@ -1116,12 +1162,12 @@ msgstr "Tambahkan Pelanggan" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "" @@ -1210,7 +1256,7 @@ msgstr "" msgid "Add page break" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "Tambahkan skrip untuk Tabel Anak" @@ -1246,12 +1292,12 @@ msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_column.html:20 msgid "Add {0}" -msgstr "" +msgstr "Tambah {0}" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" -msgstr "" +msgstr "Tambah {0}" #. Option for the 'Status' (Select) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -1291,6 +1337,7 @@ msgstr "" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1299,16 +1346,18 @@ msgstr "Alamat" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" -msgstr "Alamat Baris 1" +msgstr "Baris Alamat 1" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "Alamat Baris 2" +msgstr "Baris Alamat 2" #. Name of a DocType #: frappe/contacts/doctype/address_template/address_template.json @@ -1356,7 +1405,7 @@ msgstr "" msgid "Adds a custom field to a DocType" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "Administrasi" @@ -1370,7 +1419,6 @@ msgstr "Administrasi" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1383,11 +1431,11 @@ msgstr "Administrasi" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Administrator mengakses {0} pada {1} melalui IP Address {2}." @@ -1408,8 +1456,8 @@ msgstr "" msgid "Advanced Control" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" msgstr "Pencarian Lanjutan" @@ -1468,7 +1516,7 @@ msgstr "" msgid "After Submit" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "" @@ -1495,11 +1543,11 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1564,7 +1612,7 @@ msgstr "Semua Gambar yang dilampirkan pada Slideshow Situs Web harus umum" msgid "All Records" msgstr "Semua Rekaman" -#: frappe/public/js/frappe/form/form.js:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "" @@ -1624,8 +1672,8 @@ msgstr "" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " -msgstr "" +msgid "Allow Consecutive Login Attempts" +msgstr "Izinkan Upaya Login Berturut-turut" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 msgid "Allow Google Calendar Access" @@ -1645,11 +1693,6 @@ msgstr "" msgid "Allow Guest to View" msgstr "" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1698,7 +1741,7 @@ msgid "Allow Print for Cancelled" msgstr "" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "Memungkinkan Print untuk Draft" @@ -1930,7 +1973,7 @@ msgstr "" msgid "Allows skipping authorization if a user has active tokens." msgstr "" -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "Sudah Terdaftar" @@ -1938,11 +1981,11 @@ msgstr "Sudah Terdaftar" msgid "Already in the following Users ToDo list:{0}" msgstr "Sudah ada di daftar ToDo Pengguna berikut: {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "Juga menambahkan field mata uang dependen {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "Juga menambahkan bidang dependensi status {0}" @@ -1951,6 +1994,12 @@ msgstr "Juga menambahkan bidang dependensi status {0}" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2002,10 +2051,8 @@ msgstr "" msgid "Amended Documents" msgstr "" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "" @@ -2029,6 +2076,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 msgid "An error occurred while setting Session Defaults" msgstr "Terjadi kesalahan saat mengatur Sesi Default" @@ -2122,10 +2174,12 @@ msgid "App Logo" msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2196,6 +2250,10 @@ msgstr "" msgid "Application Version" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2205,7 +2263,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Terapkan Aturan Penugasan" @@ -2253,7 +2311,7 @@ msgstr "" msgid "Apply to all Documents Types" msgstr "Berlaku untuk semua Jenis Dokumen" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "Menerapkan: {0}" @@ -2286,7 +2344,11 @@ msgstr "" msgid "Archived Columns" msgstr "Kolom diarsipkan" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2314,11 +2376,15 @@ msgctxt "Confirmation dialog message" msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:191 msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2326,7 +2392,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "Anda yakin ingin menggabungkan {0} dengan {1}?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2381,6 +2447,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2390,7 +2462,7 @@ msgstr "" msgid "Assign To" msgstr "Tugaskan Kepada" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Tugaskan Kepada" @@ -2453,6 +2525,11 @@ msgstr "Ditugaskan Kepada" msgid "Assigned To/Owner" msgstr "Ditugaskan Untuk / Owner" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "" @@ -2522,7 +2599,13 @@ msgstr "" msgid "Assignments" msgstr "Tugas" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -2602,7 +2685,7 @@ msgstr "" msgid "Attached To Name" msgstr "" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "" @@ -2618,7 +2701,7 @@ msgstr "" msgid "Attachment Limit (MB)" msgstr "" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "" @@ -2636,15 +2719,15 @@ 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:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "Lampiran" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "Mencoba Koneksi ke Baki QZ ..." -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "Mencoba meluncurkan QZ Tray ..." @@ -2667,6 +2750,10 @@ msgstr "" msgid "Auth URL Data" msgstr "" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "" + #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authenticate as Service Principal" @@ -2684,8 +2771,8 @@ msgid "Authentication" msgstr "pembuktian keaslian" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " -msgstr "Aplikasi Otentikasi yang dapat Anda gunakan adalah:" +msgid "Authentication Apps you can use are:" +msgstr "" #: frappe/email/doctype/email_account/email_account.py:339 msgid "Authentication failed while receiving emails from Email Account: {0}." @@ -2798,11 +2885,11 @@ msgstr "Ulangi Otomatis" msgid "Auto Repeat Day" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "Ulangi Pembuatan Dokumen Otomatis Gagal" @@ -2810,11 +2897,16 @@ msgstr "Ulangi Pembuatan Dokumen Otomatis Gagal" msgid "Auto Repeat Schedule" msgstr "" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "Ulangi Otomatis dibuat untuk dokumen ini" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "Ulangi Otomatis gagal untuk {0}" @@ -2858,7 +2950,7 @@ msgstr "" msgid "Auto follow documents that you create" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "" @@ -2906,7 +2998,7 @@ msgstr "Tautan Otomatis hanya dapat diaktifkan jika Incoming diaktifkan." msgid "Automatically Assign Documents to Users" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "" @@ -2920,11 +3012,6 @@ msgstr "" msgid "Automation" msgstr "Otomatisasi" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3180,7 +3267,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Barcode" -msgstr "Kode batang" +msgstr "Kode Batang" #. Label of the base_dn (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -3196,8 +3283,8 @@ msgstr "" #. Label of the based_on (Link) field in DocType 'Language' #: frappe/core/doctype/language/language.json -#: frappe/printing/page/print/print.js:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "Berdasarkan" @@ -3314,10 +3401,8 @@ msgstr "" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "" @@ -3347,64 +3432,6 @@ msgstr "" msgid "Blocked" msgstr "" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "Kategori Blog" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "Posting Blog" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "Pengaturan Blog" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3471,7 +3498,7 @@ msgstr "" #. Label of the brand (Section Break) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Brand" -msgstr "Merek" +msgstr "Brand" #. Label of the brand_html (Code) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json @@ -3501,13 +3528,6 @@ msgstr "" msgid "Breadcrumbs" msgstr "" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3565,15 +3585,15 @@ msgstr "Hapus Massal" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "Sunting Massal {0}" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" msgstr "" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "" @@ -3588,7 +3608,7 @@ msgstr "" msgid "Bulk Update" msgstr "Perbarui Massal" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "" @@ -3600,7 +3620,7 @@ msgstr "" msgid "Bulk operations only support up to 500 documents." msgstr "" -#: frappe/model/workflow.py:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "" @@ -3730,16 +3750,6 @@ msgstr "" msgid "CSV" msgstr "" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3790,11 +3800,6 @@ msgstr "" msgid "Call To Action URL" msgstr "" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -3812,11 +3817,11 @@ msgid "Camera" msgstr "Kamera" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" -msgstr "Promosi" +msgstr "Kampanye" #. Label of the campaign_description (Small Text) field in DocType 'UTM #. Campaign' @@ -3848,7 +3853,7 @@ msgstr "" msgid "Can not rename as column {0} is already present on DocType." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "" @@ -3872,14 +3877,15 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "Batalkan" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Batalkan" @@ -3897,16 +3903,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "Batalkan Semua Dokumen" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Batalkan {0} dokumen?" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -3944,11 +3952,11 @@ msgstr "" msgid "Cannot Remove" msgstr "Tidak bisa Hapus" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3956,7 +3964,7 @@ msgstr "" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "Tidak dapat membatalkan sebelum mengirimkan. Lihat Transition {0}" @@ -3964,11 +3972,11 @@ msgstr "Tidak dapat membatalkan sebelum mengirimkan. Lihat Transition {0}" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1013 +#: frappe/model/document.py:1017 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -3976,11 +3984,11 @@ msgstr "" msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "Tidak dapat mengubah keadaan Dibatalkan Dokumen. Transisi baris {0}" -#: frappe/core/doctype/doctype/doctype.py:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "" @@ -3992,11 +4000,11 @@ msgstr "tidak dapat membuat {0} terhadap dokumen anak: {1}" msgid "Cannot create private workspace of other users" msgstr "" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "Tidak dapat menghapus Rumah dan Lampiran folder" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "Tidak dapat menghapus atau membatalkan karena {0} {1} dikaitkan dengan {2} {3} {4}" @@ -4031,7 +4039,7 @@ msgstr "" msgid "Cannot delete {0}" msgstr "Tidak dapat menghapus {0}" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" msgstr "Tidak dapat menghapus {0} karena memiliki node anak" @@ -4039,7 +4047,7 @@ msgstr "Tidak dapat menghapus {0} karena memiliki node anak" msgid "Cannot edit Standard Dashboards" msgstr "" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "Tidak dapat mengedit Pemberitahuan Standar. Untuk mengedit, nonaktifkan ini dan gandakan" @@ -4051,7 +4059,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "tidak dapat mengedit laporan standar. Silakan menggandakan dan membuat laporan baru" -#: frappe/model/document.py:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "Tidak dapat mengedit dokumen dibatalkan" @@ -4059,8 +4067,8 @@ msgstr "Tidak dapat mengedit dokumen dibatalkan" msgid "Cannot edit filters for standard charts" msgstr "Tidak dapat mengedit filter untuk bagan standar" -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "" @@ -4068,27 +4076,27 @@ msgstr "" msgid "Cannot edit standard fields" msgstr "Tidak dapat mengedit bidang standar" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:884 msgid "Cannot have multiple printers mapped to a single print format." msgstr "Tidak dapat memetakan banyak printer ke format cetak tunggal." -#: frappe/public/js/frappe/form/grid.js:1132 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "Tidak dapat menghubungkan dokumen dibatalkan: {0}" @@ -4100,11 +4108,11 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "Tidak dapat mencocokkan kolom {0} dengan bidang apa pun" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "Tidak dapat memindahkan baris" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "Tidak dapat menghapus bidang ID" @@ -4112,7 +4120,7 @@ msgstr "Tidak dapat menghapus bidang ID" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "" @@ -4129,11 +4137,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "Tidak dapat memperbarui {0}" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" -msgstr "tidak bisa menggunakan sub-query dalam rangka oleh" +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." +msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4201,15 +4209,6 @@ msgstr "" msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "Integritas Rantai" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4247,7 +4246,7 @@ msgstr "" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
    \n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " +"Warning: Incorrectly updating counters can prevent documents from getting created." msgstr "" #. Label of the changed_at (Datetime) field in DocType 'Permission Log' @@ -4317,7 +4316,7 @@ msgstr "" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "Jenis bagan" @@ -4350,7 +4349,7 @@ msgstr "" msgid "Check" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "Periksa Permintaan URL" @@ -4358,7 +4357,7 @@ msgstr "Periksa Permintaan URL" msgid "Check columns to select, drag to set order." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "Periksa Log Kesalahan untuk informasi lebih lanjut: {0}" @@ -4399,11 +4398,6 @@ msgstr "Memeriksa ini akan menerbitkan halaman di situs web Anda dan akan terlih msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "Memeriksa ini akan menampilkan area teks tempat Anda dapat menulis javascript khusus yang akan berjalan di halaman ini." -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "" @@ -4413,17 +4407,17 @@ msgstr "" msgid "Child Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Tabel Anak ditampilkan sebagai Kotak di DocTypes lain" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4452,6 +4446,7 @@ msgid "Choose authentication method to be used by all users" 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 msgid "City" msgstr "Kota" @@ -4466,7 +4461,7 @@ msgstr "" msgid "Clear" msgstr "Bersih" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "" @@ -4478,7 +4473,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4504,7 +4499,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "Hapus Izin Pengguna" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "" @@ -4516,11 +4511,15 @@ msgstr "Menghapus tanggal akhir, karena tidak boleh di masa lalu untuk halaman y msgid "Click On Customize to add your first widget" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "" @@ -4551,24 +4550,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "Klik pada {0} untuk menghasilkan Refresh Token." #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "Klik tabel untuk mengedit" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4746,7 +4745,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Jatuh" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Perkecil Semua" @@ -4801,7 +4800,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:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4857,11 +4856,11 @@ msgstr "Kolom Nama" msgid "Column Name cannot be empty" msgstr "Nama kolom tidak boleh kosong" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4888,7 +4887,7 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "Kolom berdasarkan" @@ -4930,16 +4929,6 @@ msgstr "" msgid "Comment can only be edited by the owner" msgstr "Komentar hanya bisa diedit oleh pemiliknya" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "" @@ -4947,7 +4936,7 @@ msgstr "" #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "Komentar" @@ -4956,7 +4945,7 @@ msgstr "Komentar" msgid "Comments and Communications will be associated with this linked document" msgstr "" -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "Komentar tidak dapat memiliki tautan atau alamat email" @@ -5028,12 +5017,12 @@ msgid "Company Name" msgstr "Nama Perusahaan" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "" @@ -5113,8 +5102,8 @@ msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5128,6 +5117,11 @@ msgstr "" msgid "Condition JSON" msgstr "" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5153,11 +5147,11 @@ msgstr "" msgid "Configuration" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "Konfigurasikan Bagan" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5182,7 +5176,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Menegaskan" @@ -5201,7 +5195,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "Konfirmasi password baru" @@ -5228,7 +5222,7 @@ msgstr "Dikonfirmasi" msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "" @@ -5246,8 +5240,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "Terhubung ke Baki QZ!" @@ -5298,6 +5292,10 @@ msgstr "" msgid "Contact" msgstr "Kontak" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
    {0}" +msgstr "" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5355,15 +5353,13 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5371,24 +5367,12 @@ msgstr "" msgid "Content" msgstr "" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "" @@ -5456,7 +5440,7 @@ msgstr "" msgid "Copy embed code" msgstr "" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "" @@ -5464,12 +5448,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "" + #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "Core DocTypes tidak dapat dikustomisasi." @@ -5477,7 +5465,7 @@ msgstr "Core DocTypes tidak dapat dikustomisasi." msgid "Core Modules {0} cannot be searched in Global Search." msgstr "Modul Inti {0} tidak dapat dicari dalam Pencarian Global." -#: frappe/printing/page/print/print.js:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "" @@ -5485,7 +5473,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "Tidak dapat terhubung ke server email keluar" -#: frappe/model/document.py:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "Tidak dapat menemukan {0}" @@ -5493,15 +5481,15 @@ msgstr "Tidak dapat menemukan {0}" msgid "Could not map column {0} to field {1}" msgstr "Tidak dapat memetakan kolom {0} ke bidang {1}" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " -msgstr "" +msgid "Could not start up:" +msgstr "Tidak dapat memulai:" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "Tidak dapat menyimpan, harap periksa data yang telah Anda masukkan" @@ -5546,13 +5534,14 @@ msgstr "" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "Negara" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "" @@ -5584,13 +5573,13 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Buat" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5604,7 +5593,7 @@ msgid "Create Card" msgstr "Buat Kartu" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "Buat Bagan" @@ -5638,12 +5627,12 @@ msgstr "" msgid "Create New" msgstr "Buat New" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Buat New" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5651,7 +5640,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "Buat Email Pengguna" @@ -5663,7 +5652,7 @@ msgstr "" msgid "Create a Reminder" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "" @@ -5671,11 +5660,11 @@ msgstr "" msgid "Create a new record" msgstr "Buat catatan baru" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "Buat baru {0}" @@ -5691,7 +5680,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "Buat {0} pertama Anda" @@ -5701,7 +5690,7 @@ msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "" @@ -5717,7 +5706,7 @@ msgstr "" msgid "Created By" msgstr "Dibuat Oleh" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "Dibuat Bidang Kustom {0} pada {1}" @@ -5729,7 +5718,7 @@ msgstr "Dibuat Bidang Kustom {0} pada {1}" msgid "Created On" msgstr "Dibuat pada" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "Membuat {0}" @@ -6038,7 +6027,7 @@ msgstr "" #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "Kustom?" @@ -6066,14 +6055,14 @@ msgstr "Penyesuaian ulang Reset" msgid "Customizations for {0} exported to:
    {1}" msgstr "Penyesuaian untuk {0} diekspor ke:
    {1}" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "Sesuaikan" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "Sesuaikan" @@ -6092,7 +6081,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "Sesuaikan Form" @@ -6170,7 +6159,7 @@ msgstr "Sehari-hari" msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "Harian Kegiatan Digest dikirim untuk Kalender Acara di mana pengingat ditetapkan." -#: frappe/desk/doctype/event/event.py:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "Acara Harian harus selesai pada Hari yang Sama." @@ -6217,7 +6206,7 @@ msgstr "" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "Dasbor" @@ -6276,7 +6265,6 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6289,7 +6277,6 @@ msgstr "" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6325,7 +6312,7 @@ msgstr "" msgid "Data Import Template" msgstr "Impor Template Data" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "Data Terlalu Panjang" @@ -6356,7 +6343,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6494,11 +6481,11 @@ msgstr "Yth {0}" msgid "Debug Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "" @@ -6516,7 +6503,7 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Default" -msgstr "Standar" +msgstr "Default" #: frappe/contacts/doctype/address_template/address_template.py:41 msgid "Default Address Template cannot be deleted" @@ -6660,11 +6647,11 @@ msgstr "" msgid "Default display currency" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "Default untuk jenis bidang 'Cek' {0} harus berupa '0' atau '1'" -#: frappe/core/doctype/doctype/doctype.py:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 msgid "Default value for {0} must be in the list of options." msgstr "Nilai bawaan untuk {0} harus ada di daftar opsi." @@ -6698,6 +6685,12 @@ msgstr "" msgid "Defines actions on states and the next step and allowed roles." msgstr "" +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6715,22 +6708,27 @@ 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/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Hapus" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Hapus" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "Hapus" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "" @@ -6739,6 +6737,12 @@ msgstr "" 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 +msgid "Delete Background Exported Reports After (Hours)" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6748,7 +6752,7 @@ msgstr "" msgid "Delete Data" msgstr "Hapus Data" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6762,7 +6766,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6771,7 +6775,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "Hapus komentar?" @@ -6804,12 +6808,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "Hapus data ini untuk bisa mengirim ke alamat surel ini" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Hapus {0} item secara permanen?" @@ -6845,11 +6849,15 @@ msgstr "" msgid "Deleted Name" msgstr "" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Dihapus!" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "Menghapus {0}" @@ -6864,8 +6872,8 @@ msgstr "" #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " -msgstr "" +msgid "Deletion Steps" +msgstr "Langkah Penghapusan" #: frappe/core/doctype/page/page.py:110 #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 @@ -6881,7 +6889,7 @@ msgstr "" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "" @@ -6908,7 +6916,7 @@ msgstr "Departemen" msgid "Dependencies" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "" @@ -6943,7 +6951,6 @@ msgstr "" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -6964,7 +6971,6 @@ msgstr "" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -6974,11 +6980,6 @@ msgstr "" msgid "Description" msgstr "Deskripsi" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -6988,7 +6989,7 @@ msgstr "" #. Label of the designation (Data) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Designation" -msgstr "Penunjukan" +msgstr "Jabatan" #. Label of the desk_access (Check) field in DocType 'Role' #: frappe/core/doctype/role/role.json @@ -7062,7 +7063,7 @@ msgstr "Ikon Desktop sudah ada" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "Penjelasan" @@ -7123,11 +7124,6 @@ msgstr "" msgid "Disable Comment Count" msgstr "" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7145,11 +7141,6 @@ msgstr "" msgid "Disable Document Sharing" msgstr "" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "Nonaktifkan Laporan" @@ -7159,6 +7150,11 @@ msgstr "Nonaktifkan Laporan" msgid "Disable SMTP server authentication" msgstr "" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7204,7 +7200,6 @@ msgstr "" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7219,7 +7214,6 @@ msgstr "" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "Dinonaktifkan" @@ -7230,7 +7224,7 @@ msgstr "Balas Otomatis Dinonaktifkan" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "Membuang" @@ -7248,7 +7242,7 @@ msgstr "Membuang" msgid "Discard {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "" @@ -7271,7 +7265,7 @@ msgstr "" msgid "Discussion Topic" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7307,19 +7301,23 @@ msgstr "" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " -msgstr "" +msgid "Do Not Create New User" +msgstr "Jangan Buat Pengguna Baru" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "Jangan edit header yang sudah ada di template" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7410,7 +7408,7 @@ msgstr "" msgid "DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1577 +#: frappe/core/doctype/doctype/doctype.py:1578 msgid "DocType {0} provided for the field {1} must have atleast one Link field" msgstr "DocType {0} yang disediakan untuk bidang {1} harus memiliki minimal satu bidang Tautan" @@ -7457,11 +7455,11 @@ msgstr "" msgid "DocType View" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "DocType tidak dapat digabungkan" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "DOCTYPE hanya dapat diganti oleh Administrator" @@ -7470,7 +7468,7 @@ msgstr "DOCTYPE hanya dapat diganti oleh Administrator" msgid "DocType is a Table / Form in the application." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "DocType harus Submittable untuk Doc Event yang dipilih" @@ -7503,7 +7501,7 @@ msgstr "" msgid "DocType {} not found" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "Nama DocType tidak boleh dimulai atau diakhiri dengan spasi" @@ -7517,7 +7515,7 @@ msgstr "" msgid "Doctype" msgstr "DOCTYPE" -#: frappe/core/doctype/doctype/doctype.py:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "" @@ -7579,31 +7577,29 @@ msgstr "" msgid "Document Links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7745,13 +7741,13 @@ msgstr "" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "Jenis Dokumen" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 msgid "Document Type and Function are required to create a number card" msgstr "" @@ -7788,7 +7784,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "" @@ -7796,15 +7792,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "" @@ -7935,7 +7931,7 @@ msgstr "" #: frappe/public/js/print_format_builder/HTMLEditor.vue:5 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52 msgid "Done" -msgstr "Matang" +msgstr "Selesai" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -7946,13 +7942,13 @@ msgstr "" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "Unduh" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "Unduh" @@ -7979,7 +7975,7 @@ msgstr "Unduh Tautan" msgid "Download PDF" msgstr "Unduh PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "Unduh Laporan" @@ -8042,7 +8038,7 @@ msgstr "" msgid "Drag to add state" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "" @@ -8075,7 +8071,7 @@ msgstr "" msgid "Duplicate Filter Name" msgstr "Nama filter duplikat" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "Nama Duplikat" @@ -8174,17 +8170,17 @@ msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8192,7 +8188,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8202,7 +8198,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8231,7 +8227,7 @@ msgstr "Mengedit Custom HTML" msgid "Edit DocType" msgstr "mengedit DocType" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "mengedit DocType" @@ -8249,7 +8245,7 @@ msgstr "" msgid "Edit Footer" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "Mengedit Format" @@ -8334,7 +8330,7 @@ msgstr "" msgid "Edit to add content" msgstr "Edit untuk menambahkan konten" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "" @@ -8343,7 +8339,7 @@ msgstr "" msgid "Edit your workflow visually using the Workflow Builder." msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "" @@ -8351,7 +8347,7 @@ msgstr "" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "diedit Grid" @@ -8390,11 +8386,14 @@ msgstr "" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8403,6 +8402,7 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8412,6 +8412,8 @@ msgstr "" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "Surel" @@ -8443,7 +8445,7 @@ msgstr "" msgid "Email Account Name" msgstr "" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "Akun surel ditambahkan beberapa kali" @@ -8531,6 +8533,7 @@ msgid "Email IDs" msgstr "" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "Id Email" @@ -8574,9 +8577,9 @@ msgstr "" msgid "Email Rule" msgstr "Aturan Surel" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" msgstr "" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' @@ -8642,11 +8645,11 @@ msgstr "Email telah ditandai sebagai spam" msgid "Email has been moved to trash" msgstr "Email telah dipindahkan ke sampah" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "Surel tidak dikirim ke {0} (tidak berlangganan / dinonaktifkan)" @@ -8685,7 +8688,7 @@ msgstr "" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8693,7 +8696,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -8712,7 +8715,7 @@ msgstr "" msgid "Enable Address Autocompletion" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "Aktifkan Perbolehkan Ulangi Otomatis untuk doctype {0} di Customize Form" @@ -8738,11 +8741,6 @@ msgstr "" msgid "Enable Dynamic Client Registration" msgstr "" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -8836,11 +8834,6 @@ msgstr "" msgid "Enable Social Login" msgstr "" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "Aktifkan Tampilan Halaman Pelacakan" @@ -8848,7 +8841,7 @@ msgstr "Aktifkan Tampilan Halaman Pelacakan" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "Aktifkan Dua Faktor Auth" @@ -8860,12 +8853,6 @@ msgstr "" msgid "Enable developer mode to create a standard Web Template" msgstr "Aktifkan mode pengembang untuk membuat Template Web standar" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "" - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -8888,6 +8875,7 @@ msgstr "" #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -8900,6 +8888,7 @@ msgstr "" #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "Diaktifkan" @@ -8925,14 +8914,10 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "" - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." msgstr "" #. Description of the 'Queue in Background (BETA)' (Check) field in DocType @@ -8949,11 +8934,11 @@ msgstr "" msgid "Encrypt Backups" msgstr "" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "" @@ -8965,7 +8950,7 @@ msgstr "" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -8981,6 +8966,10 @@ msgstr "" msgid "End Date cannot be before Start Date!" msgstr "Tanggal Akhir tidak boleh sebelum Tanggal Mulai!" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9025,7 +9014,7 @@ msgstr "Masukkan Id Klien dan Rahasia Klien di Pengaturan Google." msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "Masukkan Penerima Surel" @@ -9095,10 +9084,17 @@ msgstr "" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9108,7 +9104,7 @@ msgstr "" msgid "Error" msgstr "Kesalahan" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "Kesalahan" @@ -9128,7 +9124,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 msgid "Error connecting to QZ Tray Application...

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

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

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

    Klik di sini untuk Mengunduh dan menginstal Baki QZ .
    Klik di sini untuk mempelajari lebih lanjut tentang Pencetakan Mentah ." @@ -9156,9 +9152,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "Kesalahan dalam Notifikasi" @@ -9178,19 +9174,19 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "Kesalahan saat menyambung ke akun email {0}" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Kesalahan saat mengevaluasi Pemberitahuan {0}. Silakan perbaiki template Anda." -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "Kesalahan: Nilai yang hilang untuk {0}: {1}" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "" @@ -9247,7 +9243,7 @@ msgstr "" msgid "Events" msgstr "" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "Acara Dalam Kalender Hari ini" @@ -9331,7 +9327,7 @@ msgstr "Menjalankan" msgid "Execute Console script" msgstr "Jalankan skrip Konsol" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "" @@ -9339,7 +9335,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "Waktu Eksekusi: {0} dtk" @@ -9365,12 +9361,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Memperluas" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Melebarkan semua" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9398,7 +9394,9 @@ msgid "Expire Notification On" msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "" @@ -9426,13 +9424,13 @@ msgstr "" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Ekspor" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Ekspor" @@ -9469,7 +9467,7 @@ msgstr "" msgid "Export Import Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "Laporan Ekspor: {0}" @@ -9478,11 +9476,11 @@ msgstr "Laporan Ekspor: {0}" msgid "Export Type" msgstr "Jenis ekspor" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "" @@ -9490,6 +9488,10 @@ msgstr "" msgid "Export as zip" msgstr "" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "Ekspor tidak diperbolehkan. Anda perlu {0} peran untuk ekspor." @@ -9595,7 +9597,7 @@ msgstr "" msgid "Failed Logins (Last 30 days)" msgstr "" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "Transaksi Gagal" @@ -9612,7 +9614,7 @@ msgstr "Gagal mengubah kata sandi." msgid "Failed to complete setup" msgstr "Gagal menyelesaikan penyiapan" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "" @@ -9621,15 +9623,15 @@ msgstr "" msgid "Failed to connect to server" msgstr "Gagal terhubung ke server" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "Gagal mendekode token, berikan token berenkode base64 yang valid." -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "" @@ -9637,8 +9639,8 @@ msgstr "" msgid "Failed to enable scheduler: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "" @@ -9654,7 +9656,7 @@ msgstr "" msgid "Failed to generate preview of series" msgstr "" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "" @@ -9674,11 +9676,11 @@ msgstr "" msgid "Failed to optimize image: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "" @@ -9728,12 +9730,6 @@ msgstr "" msgid "Fax" msgstr "" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "Unggulan" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "Umpan balik" @@ -9791,17 +9787,17 @@ msgstr "Mengambil dokumen Penelusuran Global default." #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "Bidang" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" msgstr "Bidang "rute" adalah wajib untuk Tampilan Web" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "" @@ -9814,7 +9810,7 @@ msgstr "Kolom \"nilai\" adalah wajib. Silakan tentukan nilai untuk diperbarui" msgid "Field Description" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9844,7 +9840,7 @@ msgstr "" msgid "Field Type" msgstr "" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "" @@ -9870,11 +9866,11 @@ msgstr "" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "" -#: frappe/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "Bidang {0} tidak ditemukan" -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9892,20 +9888,20 @@ 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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "Fieldname dibatasi 64 karakter ({0})" @@ -9921,15 +9917,15 @@ msgstr "Fieldname yang akan menjadi DocType untuk bidang link ini." msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "Fieldname {0} tidak dapat memiliki karakter khusus seperti {1}" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "Fieldname {0} bertentangan dengan objek meta" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "Fieldname {0} dibatasi" @@ -9952,7 +9948,7 @@ msgstr "Fieldname {0} dibatasi" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -9965,7 +9961,7 @@ msgstr "" msgid "Fields Multicheck" msgstr "" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "" @@ -9973,7 +9969,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10001,7 +9997,7 @@ msgstr "" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "Fieldtype tidak dapat diubah dari {0} ke {1} di baris {2}" @@ -10014,7 +10010,7 @@ msgstr "Fieldtype tidak dapat diubah dari {0} ke {1} di baris {2}" msgid "File" msgstr "Mengajukan" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "" @@ -10067,7 +10063,7 @@ msgstr "" msgid "File backup is ready" msgstr "File cadangan sudah siap" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "Nama file tidak boleh memuat {0}" @@ -10075,7 +10071,7 @@ msgstr "Nama file tidak boleh memuat {0}" msgid "File not attached" msgstr "Berkas tidak terpasang" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "Ukuran file melebihi ukuran maksimum yang diperbolehkan dari {0} MB" @@ -10084,11 +10080,11 @@ msgstr "Ukuran file melebihi ukuran maksimum yang diperbolehkan dari {0} MB" msgid "File too big" msgstr "File terlalu besar" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "Berkas {0} tidak ada" @@ -10102,10 +10098,10 @@ msgstr "" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10142,11 +10138,11 @@ msgstr "Nama filter" msgid "Filter Values" msgstr "" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10164,7 +10160,6 @@ msgstr "" msgid "Filtered Records" msgstr "Catatan yang Difilter" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "Disaring oleh "{0}"" @@ -10179,7 +10174,9 @@ msgstr "Disaring oleh "{0}"" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10201,6 +10198,11 @@ msgstr "" msgid "Filters Display" msgstr "" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10213,11 +10215,11 @@ msgstr "" msgid "Filters Section" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "Filter diterapkan untuk {0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "filter tersimpan" @@ -10230,18 +10232,18 @@ msgstr "" msgid "Filters {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1427 +#: frappe/public/js/frappe/views/reports/report_view.js:1429 msgid "Filters:" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 msgid "Find '{0}' in ..." msgstr "" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 msgid "Find {0} in {1}" msgstr "Cari {0} pada {1}" @@ -10265,8 +10267,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "Nama Depan" @@ -10275,10 +10281,6 @@ msgstr "Nama Depan" msgid "First Success Message" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:49 -msgid "First Transaction" -msgstr "Transaksi Pertama" - #: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." msgstr "Data kolom pertama harus kosong." @@ -10329,11 +10331,11 @@ msgstr "" msgid "Fold" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1450 +#: frappe/core/doctype/doctype/doctype.py:1451 msgid "Fold can not be at the end of the form" msgstr "Lipat tidak bisa di akhir formulir" -#: frappe/core/doctype/doctype/doctype.py:1448 +#: frappe/core/doctype/doctype/doctype.py:1449 msgid "Fold must come before a Section Break" msgstr "Lipat harus datang sebelum Bagian istirahat" @@ -10351,7 +10353,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "Nama folder tidak boleh menyertakan '/' (garis miring)" -#: frappe/core/doctype/file/file.py:472 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "Folder {0} tidak kosong" @@ -10458,7 +10460,7 @@ msgstr "" msgid "Footer HTML" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:75 +#: frappe/printing/doctype/letter_head/letter_head.py:81 msgid "Footer HTML set from attachment {0}" msgstr "" @@ -10495,7 +10497,7 @@ msgstr "" msgid "Footer Template Values" msgstr "" -#: frappe/printing/page/print/print.js:116 +#: frappe/printing/page/print/print.js:129 msgid "Footer might not be visible as {0} option is disabled" msgstr "" @@ -10553,8 +10555,8 @@ msgstr "untuk Pengguna" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 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)." @@ -10580,12 +10582,6 @@ msgstr "" msgid "For help see Client Script API and Examples" msgstr "" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "" - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "Untuk informasi lebih lanjut, {0}." @@ -10600,7 +10596,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:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "Untuk {0} pada tingkat {1} dalam {2} berturut-turut {3}" @@ -10655,7 +10651,7 @@ 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:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "" @@ -10715,6 +10711,11 @@ msgstr "" msgid "Format Data" msgstr "" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "Meneruskan" @@ -10742,7 +10743,15 @@ msgstr "" msgid "Frappe" msgstr "Frape" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "Frappe Kerangka" @@ -10831,7 +10840,7 @@ msgstr "Dari Tanggal" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "Dari Jenis Dokumen" @@ -10858,18 +10867,16 @@ msgstr "" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "Nama Lengkap" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "" @@ -10895,13 +10902,13 @@ msgstr "Fungsi Berdasarkan" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" -msgstr "Node lebih lanjut dapat hanya dibuat di bawah tipe node 'Grup'" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -10960,7 +10967,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "Hasilkan Laporan Baru" @@ -10968,8 +10975,14 @@ msgstr "Hasilkan Laporan Baru" msgid "Generate Random Password" msgstr "" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "" @@ -10992,7 +11005,7 @@ msgstr "" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "Dapatkan Pemberitahuan untuk Hari ini" @@ -11128,7 +11141,7 @@ msgid "Go to this URL after completing the form" msgstr "" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "Pergi ke {0}" @@ -11176,10 +11189,6 @@ msgstr "" msgid "Google Calendar" msgstr "Kalender Google" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
    {0}" -msgstr "" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "Google Kalender - Tidak dapat membuat Kalender untuk {0}, kode kesalahan {1}." @@ -11298,11 +11307,6 @@ msgstr "URL Google Spreadsheet tidak valid atau tidak dapat diakses publik." msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "URL Google Spreadsheet harus diakhiri dengan "gid = {number}". Salin dan tempel URL dari bilah alamat browser dan coba lagi." -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11379,14 +11383,10 @@ 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:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "Node Grup" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11436,7 +11436,6 @@ msgstr "" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11447,9 +11446,8 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11553,7 +11551,7 @@ msgstr "" msgid "Header HTML" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "Set HTML header dari lampiran {0}" @@ -11611,6 +11609,12 @@ msgstr "" msgid "Hello" msgstr "" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "" + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11676,7 +11680,7 @@ msgstr "" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "" @@ -11712,7 +11716,7 @@ msgstr "" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11745,11 +11749,6 @@ msgstr "" msgid "Hide Buttons" msgstr "" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "" - #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json @@ -11829,7 +11828,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -11843,7 +11842,7 @@ msgstr "Sembunyikan Akhir Pekan" msgid "Hide descendant records of For Value." msgstr "" -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "Sembunyikan detail" @@ -11892,11 +11891,8 @@ 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:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -11984,16 +11980,16 @@ msgstr "" #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -12089,9 +12085,9 @@ msgstr "" msgid "If Checked workflow status will not override status in list view" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "Jika Owner" @@ -12219,6 +12215,10 @@ msgstr "" msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12250,7 +12250,11 @@ msgstr "Jika Anda mengunggah data baru, \"Seri Penamaan\" menjadi wajib, jika ad msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "Jika Anda mengunggah catatan baru, biarkan kolom \"nama\" (ID) kosong." -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "" @@ -12307,12 +12311,12 @@ msgstr "" msgid "Ignored Apps" msgstr "" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "Status Dokumen Ilegal untuk {0}" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "Query SQL Ilegal" @@ -12373,11 +12377,11 @@ msgstr "" msgid "Image Width" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 msgid "Image field must be a valid fieldname" msgstr "bidang gambar harus fieldname valid" -#: frappe/core/doctype/doctype/doctype.py:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "bidang gambar harus dari jenis Lampirkan gambar" @@ -12399,15 +12403,15 @@ msgstr "Gambar" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "" @@ -12433,7 +12437,7 @@ msgstr "" msgid "Import" msgstr "Impor" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "Impor" @@ -12661,15 +12665,16 @@ msgstr "Sertakan Tema dari Aplikasi" msgid "Include Web View Link in Email" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "Termasuk lekukan" @@ -12716,7 +12721,7 @@ msgstr "Akun email masuk tidak benar" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "Rincian login tidak lengkap" @@ -12728,7 +12733,7 @@ msgstr "Konfigurasi Salah" msgid "Incorrect URL" msgstr "URL salah" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "Pengguna atau Kata Sandi salah" @@ -12736,11 +12741,11 @@ msgstr "Pengguna atau Kata Sandi salah" msgid "Incorrect Verification code" msgstr "Kode Verifikasi salah" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "" @@ -12752,7 +12757,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "Indeks" @@ -12827,7 +12832,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "Masukkan Setelah" @@ -12843,7 +12848,7 @@ msgstr "Masukkan Setelah bidang '{0}' disebutkan dalam Custom Field ' msgid "Insert Below" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "Masukkan Kolom Sebelum {0}" @@ -12861,8 +12866,12 @@ msgstr "" msgid "Insert Style" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "" @@ -12879,7 +12888,7 @@ msgid "Installed Applications" msgstr "Aplikasi Terinstal" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "" @@ -12896,19 +12905,19 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "Izin tidak cukup untuk {0}" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" msgstr "" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "" @@ -13012,9 +13021,9 @@ msgid "Invalid" msgstr "" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "Ekspresi "depend_on" tidak valid" @@ -13022,7 +13031,7 @@ msgstr "Ekspresi "depend_on" tidak valid" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "Ekspresi "depend_on" tidak valid yang disetel dalam filter {0}" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "" @@ -13038,7 +13047,7 @@ msgstr "CSV Format valid" msgid "Invalid Code. Please try again." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "" @@ -13058,16 +13067,20 @@ msgstr "" msgid "Invalid DocType: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13099,7 +13112,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:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "" @@ -13108,8 +13121,8 @@ msgstr "" msgid "Invalid Operation" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "Opsi Tidak Valid" @@ -13121,25 +13134,25 @@ msgstr "" msgid "Invalid Output Format" msgstr "Output Format valid" -#: frappe/model/base_document.py:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "kata sandi salah" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "Permintaan tidak valid" @@ -13148,7 +13161,7 @@ msgstr "Permintaan tidak valid" msgid "Invalid Search Field {0}" msgstr "Bidang Penelusuran Tidak Valid {0}" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "" @@ -13156,8 +13169,8 @@ msgstr "" msgid "Invalid Transition" msgstr "" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13171,47 +13184,51 @@ msgstr "Valid Nama Pengguna atau Dukungan Password. Harap memperbaiki dan coba l msgid "Invalid Values" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "Kolom tidak valid" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "" @@ -13223,31 +13240,27 @@ 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:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "Nama bidang tidak valid {0}" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "fieldname tidak valid '{0}' di autoname" @@ -13255,11 +13268,11 @@ msgstr "fieldname tidak valid '{0}' di autoname" msgid "Invalid file path: {0}" msgstr "Path file tidak valid: {0}" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13267,20 +13280,28 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "Filter tidak valid: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "Json yang tidak valid ditambahkan dalam opsi ubahsuaian: {0}" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "" @@ -13288,6 +13309,10 @@ msgstr "" msgid "Invalid naming series {}: dot (.) missing" msgstr "" +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "Konten tidak valid atau rusak untuk diimpor" @@ -13296,19 +13321,27 @@ msgstr "Konten tidak valid atau rusak untuk diimpor" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13316,7 +13349,7 @@ msgstr "" msgid "Invalid template file for import" msgstr "File template tidak valid untuk impor" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "" @@ -13325,20 +13358,20 @@ msgstr "" msgid "Invalid username or password" msgstr "username dan password salah" -#: frappe/model/naming.py:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "Kondisi {0} tidak valid" @@ -13347,10 +13380,47 @@ msgstr "Kondisi {0} tidak valid" msgid "Inverse" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "Undang sebagai Pengguna" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "Diundang Sebagai" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "Aku S" @@ -13375,7 +13445,7 @@ msgstr "" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "Apakah Anak Table" @@ -13428,6 +13498,10 @@ msgstr "" msgid "Is Global" msgstr "Apakah global" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Apakah Group?" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13454,8 +13528,13 @@ msgstr "" msgid "Is Primary" msgstr "" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 msgid "Is Primary Contact" msgstr "" @@ -13486,7 +13565,7 @@ msgstr "" msgid "Is Published Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "Apakah Diterbitkan lapangan harus fieldname valid" @@ -13511,7 +13590,7 @@ msgstr "" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "Tunggal" @@ -13547,7 +13626,7 @@ msgstr "" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "Apakah Submittable" @@ -13753,11 +13832,11 @@ msgstr "Kolom papan Kanban" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "Nama papan kanban" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13778,12 +13857,14 @@ msgstr "" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -14045,7 +14126,7 @@ msgstr "Label adalah wajib" msgid "Landing Page" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "Pemandangan" @@ -14053,10 +14134,13 @@ msgstr "Pemandangan" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Bahasa" @@ -14144,8 +14228,12 @@ msgstr "" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "Nama Belakang" @@ -14160,6 +14248,11 @@ msgstr "" msgid "Last Quarter" msgstr "" +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" + #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json @@ -14176,11 +14269,6 @@ msgstr "" msgid "Last Sync On" msgstr "" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14291,7 +14379,7 @@ msgstr "" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "Panjang {0} harus antara 1 dan 1000" @@ -14340,8 +14428,8 @@ 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:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14369,7 +14457,7 @@ msgstr "" msgid "Letter Head Scripts" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "" @@ -14386,7 +14474,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "" @@ -14436,20 +14524,6 @@ msgstr "" msgid "Like" msgstr "Suka" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "Menyukai" @@ -14490,6 +14564,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14503,6 +14578,7 @@ msgstr "" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "" @@ -14633,10 +14709,15 @@ msgstr "" msgid "Linked With" msgstr "Terhubung Dengan" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +msgstr "" + #. Label of the links (Table) field in DocType 'Address' #. Label of the links (Table) field in DocType 'Contact' #. Label of the links_section (Tab Break) field in DocType 'DocType' #. Label of the links (Table) field in DocType 'Customize Form' +#. Label of the links (Table) field in DocType 'Event' #. Label of the links (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14644,6 +14725,7 @@ msgstr "Terhubung Dengan" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "" @@ -14685,7 +14767,7 @@ msgstr "Daftar filter" msgid "List Settings" msgstr "Pengaturan Daftar" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Pengaturan Daftar" @@ -14726,7 +14808,7 @@ msgstr "" msgid "List setting message" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "" @@ -14735,9 +14817,8 @@ msgstr "" msgid "Load Balancing" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Muat lebih banyak" @@ -14754,10 +14835,10 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "Memuat" @@ -14769,7 +14850,7 @@ msgstr "" msgid "Loading import file..." msgstr "Memuat file impor ..." -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "" @@ -14779,7 +14860,7 @@ msgstr "" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "Memuat..." @@ -14840,7 +14921,7 @@ msgstr "Masuk untuk mengakses halaman ini." msgid "Log out" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "Keluar" @@ -14900,7 +14981,7 @@ msgstr "Kode Verifikasi Masuk dari {}" msgid "Login and view in Browser" msgstr "Login dan lihat di Browser" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -14908,7 +14989,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "Login tidak diizinkan untuk saat ini" @@ -14961,7 +15042,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -14980,7 +15061,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "Keluar dari Semua Sesi" @@ -15084,7 +15165,10 @@ msgid "Major" 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 +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "" @@ -15160,7 +15244,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "Informasi wajib hilang:" @@ -15172,15 +15256,15 @@ msgstr "bidang wajib: menetapkan peran untuk" msgid "Mandatory field: {0}" msgstr "bidang wajib: {0}" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "bidang wajib yang dibutuhkan dalam tabel {0}, Row {1}" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "Bidang wajib yang dibutuhkan dalam {0}" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "" @@ -15261,10 +15345,8 @@ msgid "Mark as Unread" msgstr "Tandai sebagai Belum dibaca" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15345,7 +15427,13 @@ msgstr "" msgid "Max auto email report per user" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "Max lebar untuk jenis mata uang adalah 100px berturut-turut {0}" @@ -15354,20 +15442,15 @@ msgstr "Max lebar untuk jenis mata uang adalah 100px berturut-turut {0}" msgid "Maximum" msgstr "" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "" -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "" -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "Maksimum {0} baris diperbolehkan" @@ -15383,7 +15466,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15396,7 +15479,7 @@ msgstr "Sedang" msgid "Meeting" msgstr "" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "" @@ -15437,7 +15520,7 @@ msgstr "" msgid "Merge with existing" msgstr "Merger dengan yang ada" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "Penggabungan ini hanya mungkin antara kelompok-to-Grup atau Leaf Node-to-Leaf Node" @@ -15463,7 +15546,7 @@ msgstr "Penggabungan ini hanya mungkin antara kelompok-to-Grup atau Leaf Node-to #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15503,7 +15586,7 @@ msgstr "Pesan terkirim" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "Pesan terpotong" @@ -15535,29 +15618,21 @@ msgstr "" msgid "Meta" msgstr "" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "Deskripsi meta" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "Gambar Meta" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "Judul Meta" @@ -15610,7 +15685,7 @@ msgstr "" msgid "Method Not Allowed" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "" @@ -15626,6 +15701,11 @@ msgstr "" msgid "Middle Name" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15692,11 +15772,11 @@ msgstr "" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "hilang Fields" @@ -15732,15 +15812,16 @@ msgstr "" msgid "Mobile No" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "Nomor handphone" + #. Label of the modal_trigger (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Modal Trigger" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "dimodifikasi By" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15761,7 +15842,7 @@ msgstr "dimodifikasi By" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -15937,10 +16018,12 @@ msgstr "" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "" @@ -15959,7 +16042,7 @@ msgstr "" msgid "Most Used" msgstr "sebagian Digunakan" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "" @@ -15970,7 +16053,7 @@ msgstr "" msgid "Move" msgstr "Bergerak" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "Pindah ke" @@ -16006,7 +16089,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "Pindah ke Nomor Baris" @@ -16033,7 +16116,7 @@ msgstr "" msgid "Ms" msgstr "" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "Beberapa node akar tidak diperbolehkan." @@ -16056,7 +16139,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "Harus memiliki ijin laporan untuk mengakses laporan ini." @@ -16074,7 +16157,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16112,9 +16195,9 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16124,11 +16207,11 @@ msgstr "Nama" msgid "Name (Doc Name)" msgstr "" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "Nama tidak boleh berisi karakter khusus seperti {0}" @@ -16140,7 +16223,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:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "Nama {0} tidak dapat {1}" @@ -16179,7 +16262,7 @@ msgstr "" msgid "Naming Series" msgstr "" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "Penamaan Seri wajib" @@ -16216,12 +16299,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Navigasikan daftar ke bawah" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Navigasikan daftar ke atas" @@ -16236,7 +16319,11 @@ msgstr "" msgid "Navigation Settings" msgstr "" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16244,7 +16331,7 @@ msgstr "" msgid "Negative Value" msgstr "Nilai Negatif" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16257,6 +16344,12 @@ msgstr "Bersarang kesalahan set. Silahkan hubungi Administrator." msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +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 @@ -16265,7 +16358,7 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16286,10 +16379,6 @@ msgstr "" msgid "New Chart" msgstr "" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "Komentar Baru pada {0}: {1}" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "" @@ -16298,8 +16387,8 @@ msgstr "" msgid "New Custom Block" msgstr "" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" msgstr "" @@ -16330,7 +16419,7 @@ msgstr "Acara baru" msgid "New Folder" msgstr "Folder baru" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "Papan Kanban baru" @@ -16365,12 +16454,12 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "Kata sandi Baru" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "Nama Format Cetak Baru" @@ -16379,7 +16468,7 @@ msgstr "Nama Format Cetak Baru" msgid "New Quick List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "New nama Laporan" @@ -16397,8 +16486,8 @@ msgstr "" msgid "New Users (Last 30 days)" msgstr "" -#: frappe/core/doctype/version/version_view.html:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "" @@ -16455,13 +16544,13 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "" @@ -16477,7 +16566,7 @@ msgstr "Baru {0} {1} ditambahkan ke Dasbor {2}" msgid "New {0} {1} created" msgstr "{0} {1} baru dibuat" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "Baru {0}: {1}" @@ -16485,7 +16574,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:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "" @@ -16498,7 +16587,7 @@ msgstr "Surat edaran Manajer" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16605,14 +16694,15 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16662,6 +16752,10 @@ msgstr "Tidak ada Akun Surel" msgid "No Email Accounts Assigned" msgstr "" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "Tidak ada Email" @@ -16697,15 +16791,15 @@ msgstr "Tidak ada Pengguna LDAP yang ditemukan untuk email: {0}" msgid "No Label" msgstr "" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: frappe/public/js/frappe/list/bulk_operations.js:98 #: frappe/public/js/frappe/list/bulk_operations.js:170 #: frappe/utils/weasyprint.py:52 msgid "No Letterhead" msgstr "" -#: frappe/model/naming.py:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "Tidak Ada Nama Yang Ditentukan untuk {0}" @@ -16713,7 +16807,7 @@ msgstr "Tidak Ada Nama Yang Ditentukan untuk {0}" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "Tidak ada izin yang ditentukan" @@ -16733,11 +16827,11 @@ msgstr "Tidak Ada Diagram yang Diizinkan di Dasbor ini" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "Tidak Ada Printer." @@ -16753,11 +16847,11 @@ msgstr "" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16765,7 +16859,7 @@ msgstr "" msgid "No Suggestions" msgstr "" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "Tidak ada Tags" @@ -16777,7 +16871,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "Tidak ada pemberitahuan untuk hari ini" @@ -16805,23 +16899,19 @@ msgstr "" msgid "No changes to update" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "Belum ada komentar" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " -msgstr "" +msgid "No comments yet." +msgstr "Belum ada komentar." #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "Tidak ada kontak yang tertaut ke dokumen" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "Tidak ada data untuk diekspor" @@ -16837,11 +16927,15 @@ msgstr "Tidak ditemukan dokumen yang ditandai dengan {0}" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "Tidak ada akun email yang dikaitkan dengan Pengguna. Silakan tambahkan akun di bawah Pengguna> Kotak Masuk Email." +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16865,7 +16959,7 @@ msgstr "Tidak ada catatan lebih lanjut" msgid "No matching records. Search something new" msgstr "Tidak ada catatan yang cocok. Cari sesuatu yang baru" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "Tidak ada lagi item untuk ditampilkan" @@ -16909,7 +17003,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "Tidak ada izin untuk '{0}' {1}" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "Tidak ada izin untuk membaca {0}" @@ -16921,7 +17015,7 @@ msgstr "Tidak ada izin untuk {0} {1} {2}" msgid "No records deleted" msgstr "Tidak ada catatan yang dihapus" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "Tidak ada catatan di {0}" @@ -16937,7 +17031,7 @@ msgstr "Tidak ada catatan yang akan diekspor" msgid "No rows" msgstr "" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -16957,11 +17051,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -16970,7 +17064,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:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -17013,7 +17107,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "Tidak Diizinkan" @@ -17034,7 +17128,7 @@ msgstr "Bukan Descendants Of" msgid "Not Equals" msgstr "Tidak sama dengan" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "Tidak ditemukan" @@ -17060,20 +17154,19 @@ msgstr "Tidak terkait dengan catatan apapun" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "Tidak Diijinkan" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17082,10 +17175,10 @@ msgstr "Tidak Diterbitkan" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "Tidak Disimpan" @@ -17117,7 +17210,7 @@ msgstr "Bukan Nilai Comma Separated valid (CSV file)" msgid "Not a valid User Image." msgstr "Bukan Gambar Pengguna yang valid." -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "Bukan Aksi Alur Kerja yang valid" @@ -17133,11 +17226,11 @@ msgstr "Tidak aktif" msgid "Not allowed for {0}: {1}" msgstr "Tidak diizinkan untuk {0}: {1}" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "Tidak diizinkan melampirkan dokumen {0}, harap aktifkan Izinkan Pencetakan Untuk {0} di Setelan Cetak" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "" @@ -17161,27 +17254,27 @@ msgstr "Tidak ditemukan" msgid "Not in Developer Mode" msgstr "Tidak dalam Mode Developer" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 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:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Tidak diperbolehkan" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "Tidak diizinkan untuk melihat {0}" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17216,7 +17309,7 @@ msgstr "" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17240,10 +17333,9 @@ msgstr "" msgid "Nothing left to undo" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "Tidak ada yang menunjukkan" @@ -17289,15 +17381,15 @@ msgstr "Pemberitahuan Dokumen Berlangganan" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17348,7 +17440,7 @@ msgstr "" msgid "Notify users with a popup when they log in" msgstr "" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "Sekarang" @@ -17406,12 +17498,12 @@ msgstr "" msgid "Number of Queries" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17520,11 +17612,11 @@ msgstr "" msgid "OTP Issuer Name" msgstr "" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "OTP Secret telah di-reset. Registrasi ulang akan diminta pada login berikutnya." @@ -17643,7 +17735,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "" @@ -17683,7 +17775,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 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." @@ -17728,7 +17820,7 @@ msgstr "Hanya Administrator yang diizinkan menggunakan Perekam" msgid "Only Allow Edit For" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "Hanya Opsi yang diperbolehkan untuk bidang Data adalah:" @@ -17745,7 +17837,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "" @@ -17764,19 +17856,19 @@ msgstr "Hanya bidang wajib diperlukan untuk catatan baru. Anda dapat menghapus k msgid "Only one {0} can be set as primary." msgstr "Hanya satu {0} yang dapat ditetapkan sebagai utama." -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Hanya DocTypes standar yang boleh disesuaikan dari Formulir Kustomisasi." -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17846,7 +17938,7 @@ msgstr "" msgid "Open Settings" msgstr "Buka Pengaturan" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "" @@ -17864,7 +17956,7 @@ msgstr "" msgid "Open a module or tool" msgstr "Buka modul atau alat" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "" @@ -17872,7 +17964,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Buka item daftar" @@ -17887,13 +17979,13 @@ 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:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "Terbuka {0}" @@ -17902,6 +17994,10 @@ msgstr "Terbuka {0}" msgid "OpenID Configuration" msgstr "" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" @@ -17917,7 +18013,7 @@ msgstr "" msgid "Operation" msgstr "Operasi" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "Operator harus menjadi salah satu dari {0}" @@ -17943,7 +18039,7 @@ msgstr "Opsi 2" msgid "Option 3" msgstr "Opsi 3" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "Opsi {0} untuk bidang {1} bukan tabel anak" @@ -17963,6 +18059,7 @@ msgstr "" #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -17971,11 +18068,12 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 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'" @@ -17984,7 +18082,7 @@ msgstr "Jenis Options 'Dynamic Link' lapangan harus mengarah ke Link Field lain msgid "Options Help" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "" @@ -17992,7 +18090,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:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 msgid "Options for {0} must be set before setting the default value." msgstr "Opsi untuk {0} harus disetel sebelum menyetel nilai bawaan." @@ -18000,7 +18098,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:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "Pilihan tidak diatur untuk bidang tautan {0}" @@ -18016,7 +18114,7 @@ msgstr "" msgid "Order" msgstr "" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18032,12 +18130,12 @@ msgstr "" msgid "Org History Heading" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "Orientasi" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "" @@ -18105,10 +18203,6 @@ msgstr "" msgid "Overview" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "Pemilik" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" @@ -18116,9 +18210,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:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18159,11 +18253,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:616 +#: frappe/printing/page/print/print.js:656 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:574 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18335,7 +18429,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:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "Halaman {0} dari {1}" @@ -18362,7 +18456,7 @@ msgstr "" msgid "Parent Document Type" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "" @@ -18379,11 +18473,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:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "Bidang Induk (Pohon)" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "Bidang Induk harus nama bidang yang valid" @@ -18392,7 +18486,7 @@ msgstr "Bidang Induk harus nama bidang yang valid" msgid "Parent Label" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 msgid "Parent Missing" msgstr "" @@ -18466,8 +18560,8 @@ msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18477,7 +18571,7 @@ msgstr "" msgid "Password" msgstr "Kata sandi" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "" @@ -18490,7 +18584,7 @@ msgstr "" msgid "Password Reset Link Generation Limit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18507,6 +18601,10 @@ msgstr "" msgid "Password is required or select Awaiting Password" msgstr "Sandi diperlukan atau pilih Menunggu sandi" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "" @@ -18515,7 +18613,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18523,11 +18621,11 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." msgstr "" @@ -18535,7 +18633,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "Sandi tidak cocok!" @@ -18605,10 +18703,12 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "Menunggu" @@ -18684,7 +18784,7 @@ 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:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "Kesalahan izin" @@ -18744,16 +18844,16 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "" @@ -18815,15 +18915,18 @@ msgstr "Permintaan Unduhan Data Pribadi" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -18836,13 +18939,13 @@ msgstr "Telepon" msgid "Phone No." msgstr "" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "Pilih Kolom" @@ -18902,11 +19005,11 @@ msgstr "Silakan Instal perpustakaan ldap3 melalui pip untuk menggunakan fungsion msgid "Please Set Chart" msgstr "Silakan Tetapkan Bagan" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "Harap Perbarui Pengaturan SMS" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "Silakan tambahkan subjek ke email Anda" @@ -18914,7 +19017,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:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "Minta administrator untuk memverifikasi Anda sign-up" @@ -18922,11 +19025,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:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 msgid "Please attach an image file to set HTML for Footer." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "" @@ -18934,19 +19037,15 @@ msgstr "" msgid "Please attach the package" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "" - #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "Silakan periksa nilai filter yang disetel untuk Dasbor: {}" -#: frappe/model/base_document.py:951 +#: frappe/model/base_document.py:1008 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:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "Silahkan cek email Anda untuk verifikasi" @@ -18978,11 +19077,11 @@ 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:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "Harap buat Kartu terlebih dahulu" @@ -18998,20 +19097,20 @@ msgstr "" msgid "Please do not change the template headings." msgstr "Harap jangan mengubah judul Template." -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" msgstr "Silakan duplikat ini untuk membuat perubahan" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "Aktifkan pop-up" @@ -19048,7 +19147,7 @@ msgstr "Harap masukkan ID Klien sebelum login sosial diaktifkan" msgid "Please enter Client Secret before social login is enabled" msgstr "Silakan masukkan Rahasia Klien sebelum login sosial diaktifkan" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "" @@ -19085,11 +19184,12 @@ msgstr "" msgid "Please enter your old password." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "Silakan temukan lampiran {0}: {1}" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "" @@ -19097,11 +19197,11 @@ 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:988 +#: frappe/model/document.py:992 msgid "Please refresh to get the latest document." msgstr "Silahkan refresh untuk mendapatkan dokumen terbaru." -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:575 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19117,7 +19217,7 @@ msgstr "Silakan menyimpan dokumen sebelum penugasan" msgid "Please save the document before removing assignment" msgstr "Silakan menyimpan dokumen sebelum mengeluarkan penugasan" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "Harap menyimpan laporan pertama" @@ -19125,7 +19225,7 @@ msgstr "Harap menyimpan laporan pertama" msgid "Please save to edit the template." msgstr "Harap simpan untuk mengedit template." -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "Silakan pilih DOCTYPE pertama" @@ -19133,19 +19233,19 @@ msgstr "Silakan pilih DOCTYPE pertama" msgid "Please select Entity Type first" msgstr "Silakan pilih Tipe Entitas terlebih dahulu" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "Harap pilih Skor Minimum Kata Sandi" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "" @@ -19153,7 +19253,7 @@ msgstr "" msgid "Please select a file or url" msgstr "Silahkan pilih file atau url" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" msgstr "Silakan pilih file csv dengan data yang valid" @@ -19165,7 +19265,7 @@ msgstr "Pilih filter tanggal yang valid" msgid "Please select applicable Doctypes" msgstr "Silakan pilih DOCTYPE yang berlaku" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Silakan pilih minimal 1 kolom dari {0} untuk menyortir / group" @@ -19191,11 +19291,11 @@ msgstr "Silahkan pilih {0}" msgid "Please set Email Address" msgstr "Silahkan tetapkan Alamat Email" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:589 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:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "Silakan set filter" @@ -19203,7 +19303,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:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "" @@ -19215,7 +19315,7 @@ msgstr "Harap tetapkan dokumen berikut di Dasbor ini sebagai standar terlebih da msgid "Please set the series to be used." msgstr "Silakan mengatur seri yang akan digunakan." -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "Tolong atur SMS sebelum menyetelnya sebagai metode otentikasi, melalui Pengaturan SMS" @@ -19239,23 +19339,23 @@ msgstr "Silakan tentukan" msgid "Please specify a valid parent DocType for {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "Silakan tentukan tanggal yang lapangan harus diperiksa" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "Silakan tentukan mana bidang nilai harus diperiksa" @@ -19276,7 +19376,7 @@ msgstr "" msgid "Please use following links to download file backup." msgstr "" -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" @@ -19330,7 +19430,7 @@ msgstr "" msgid "Portal Settings" msgstr "Pengaturan Portal" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "Potret" @@ -19358,6 +19458,7 @@ msgstr "" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "kode Pos" @@ -19366,15 +19467,7 @@ msgstr "kode Pos" msgid "Posting Timestamp" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "Posting oleh {0}" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "Posting mengajukan di bawah {0}" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19389,7 +19482,11 @@ msgstr "" msgid "Precision" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "Presisi harus antara 1 dan 6" @@ -19437,7 +19534,7 @@ msgstr "" msgid "Prepared Report User" msgstr "Pengguna Laporan yang Disiapkan" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "" @@ -19445,7 +19542,7 @@ msgstr "" msgid "Preparing Report" msgstr "Mempersiapkan Laporan" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "" @@ -19466,7 +19563,7 @@ msgstr "Tekan Enter untuk menyimpan" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19480,13 +19577,6 @@ msgstr "Pratayang" msgid "Preview HTML" msgstr "" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19515,7 +19605,7 @@ msgid "Preview:" msgstr "" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19527,12 +19617,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "Kembali" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "" @@ -19578,19 +19663,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:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: 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:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Mencetak" @@ -19608,8 +19693,8 @@ 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:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19660,7 +19745,7 @@ msgstr "" msgid "Print Format Type" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19699,7 +19784,7 @@ msgstr "" msgid "Print Language" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "Cetak Terkirim ke printer!" @@ -19716,8 +19801,8 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "Pengaturan Cetak" @@ -19765,11 +19850,11 @@ msgstr "" msgid "Print with letterhead" msgstr "" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "Pemetaan Printer" @@ -19779,11 +19864,11 @@ msgstr "Pemetaan Printer" msgid "Printer Name" msgstr "" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "Pengaturan Printer" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "" @@ -19841,7 +19926,7 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "Tetap melanjutkan" @@ -19862,18 +19947,28 @@ msgstr "" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Profil berhasil diperbarui." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "Kemajuan" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "Proyek" #. Label of the property (Data) field in DocType 'Property Setter' -#: frappe/core/doctype/version/version_view.html:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: frappe/core/doctype/version/version_view.html:13 +#: frappe/core/doctype/version/version_view.html:38 +#: frappe/core/doctype/version/version_view.html:75 #: frappe/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "" @@ -19910,7 +20005,7 @@ msgstr "" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -19959,24 +20054,18 @@ msgstr "" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "Menerbitkan" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -19986,15 +20075,6 @@ msgstr "Menerbitkan" msgid "Published" msgstr "Diterbitkan" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "Diterbitkan di" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json @@ -20084,7 +20164,9 @@ msgid "Put on Hold" msgstr "" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "" @@ -20096,9 +20178,9 @@ msgstr "Kode QR" msgid "QR Code for Login Verification" msgstr "Kode QR untuk Verifikasi Login" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " -msgstr "Baki QZ Gagal:" +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" +msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' @@ -20147,7 +20229,7 @@ msgstr "Laporan \"Query\"" msgid "Query analysis complete. Check suggested indexes." msgstr "" -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "" @@ -20247,7 +20329,7 @@ msgstr "" msgid "Quick Lists" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20284,12 +20366,6 @@ msgstr "Jarak" msgid "Rate Limiting" msgstr "" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20309,7 +20385,7 @@ msgstr "" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "Perintah Mentah" @@ -20326,7 +20402,7 @@ msgstr "" msgid "Raw Printing" msgstr "" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "" @@ -20343,8 +20419,8 @@ msgid "Re:" msgstr "" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "" @@ -20400,11 +20476,6 @@ msgstr "" msgid "Read Only Mode" msgstr "" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20420,7 +20491,7 @@ msgstr "" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "" @@ -20440,11 +20511,11 @@ msgstr "" msgid "Reason" msgstr "Alasan" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "Membangun kembali" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20482,7 +20553,7 @@ msgstr "" msgid "Recent years are easy to guess." msgstr "tahun terakhir mudah ditebak." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "" @@ -20493,6 +20564,14 @@ msgstr "" msgid "Recipient" msgstr "" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20525,7 +20604,7 @@ msgstr "" msgid "Records for following doctypes will be filtered" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "" @@ -20542,6 +20621,11 @@ msgstr "Merah" msgid "Redirect HTTP Status" msgstr "" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20636,6 +20720,11 @@ msgstr "Referensi Tanggal" msgid "Reference Datetime" msgstr "" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "Dokumen Referensi" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20663,7 +20752,6 @@ msgstr "" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20704,9 +20792,9 @@ msgstr "" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20724,9 +20812,9 @@ msgstr "" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20756,7 +20844,6 @@ msgstr "Tipe Dokumen Referensi" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -20804,15 +20891,15 @@ msgstr "Referensi: {0} {1}" msgid "Referrer" msgstr "Perujuk" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Segarkan" @@ -20826,6 +20913,10 @@ msgstr "Segarkan Semua" msgid "Refresh Google Sheet" msgstr "" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -20837,18 +20928,18 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "Refreshing ..." -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "Terdaftar tapi dinonaktifkan" @@ -21025,7 +21116,7 @@ msgstr "" msgid "Rename {0}" msgstr "Ubah nama {0}" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "Mengganti nama file dan mengganti kode dalam pengontrol, harap periksa!" @@ -21156,9 +21247,9 @@ msgstr "Membalas semua" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "Laporan" @@ -21228,11 +21319,11 @@ 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:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "Nama Laporan" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "" @@ -21266,21 +21357,21 @@ msgstr "" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 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:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "Laporan tidak memiliki data, harap modifikasi filter atau ubah Nama Laporan" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 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:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21292,24 +21383,24 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "Laporan berhasil diperbarui" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 msgid "Report was not saved (there were errors)" msgstr "Laporan tidak disimpan (ada kesalahan)" -#: frappe/public/js/frappe/views/reports/query_report.js:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 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:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "Laporan {0}" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "" @@ -21317,7 +21408,7 @@ msgstr "" msgid "Report {0} is disabled" msgstr "Laporan {0} dinonaktifkan" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "" @@ -21328,7 +21419,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:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "Laporan" @@ -21336,7 +21427,7 @@ msgstr "Laporan" msgid "Reports & Masters" msgstr "Laporan & Master" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "Laporan sudah dalam Antrian" @@ -21355,7 +21446,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "" @@ -21407,6 +21501,11 @@ msgstr "" msgid "Request URL" msgstr "" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21458,11 +21557,11 @@ msgstr "Atur Ulang Grafik" msgid "Reset Dashboard Customizations" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "Setel Ulang Bidang" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "Setel ulang Kata Sandi LDAP" @@ -21470,11 +21569,11 @@ msgstr "Setel ulang Kata Sandi LDAP" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "Setel ulang OTP Secret" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21509,7 +21608,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21547,6 +21646,7 @@ msgid "Resource TOS URI" msgstr "" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21556,11 +21656,6 @@ msgstr "" msgid "Response" msgstr "" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "" - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21619,7 +21714,7 @@ msgstr "" msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "Batasan" @@ -21653,7 +21748,7 @@ msgstr "Kembali ke layar Verifikasi dan masukkan kode yang ditampilkan oleh apli msgid "Reverse Icon Color" msgstr "" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "Mengembalikan panjang ke {0} untuk '{1}' dalam '{2}'. Menyetel panjang sebagai {3} akan menyebabkan pemotongan data." @@ -21671,9 +21766,7 @@ msgstr "Mencabut" msgid "Revoked" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21714,6 +21807,7 @@ msgstr "" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21727,6 +21821,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21765,7 +21860,7 @@ msgstr "Peran Izin Page dan Laporan" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "Izin peran" @@ -21775,7 +21870,7 @@ msgstr "Izin peran" msgid "Role Permissions Manager" msgstr "Pengelola Perizinan Peran" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Pengelola Perizinan Peran" @@ -21818,6 +21913,7 @@ msgstr "" #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -21827,6 +21923,7 @@ msgstr "" #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -21863,7 +21960,7 @@ msgstr "" msgid "Roles can be set for users from their User page." msgstr "" -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "Akar {0} tidak dapat dihapus" @@ -21883,8 +21980,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -21896,8 +21991,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -21922,24 +22015,24 @@ msgstr "" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "Baris" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "Row # {0}:" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "" @@ -21948,11 +22041,6 @@ msgstr "" msgid "Row Format" msgstr "" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "" - #. Label of the row_indexes (Code) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Row Indexes" @@ -21967,7 +22055,7 @@ msgstr "" msgid "Row Number" msgstr "" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "" @@ -21975,30 +22063,33 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "Baris {0}: Tidak diizinkan untuk menonaktifkan Wajib untuk bidang standar" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "Baris {0}: Tidak diizinkan untuk mengaktifkan Memungkinkan Submit untuk bidang standar" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Added" msgstr "" #. Label of the rows_removed_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22089,7 +22180,7 @@ msgstr "Parameter SMS" msgid "SMS Settings" msgstr "Pengaturan SMS" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "" @@ -22167,7 +22258,7 @@ msgstr "" msgid "Salutation" msgstr "Panggilan" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "Bidang yang sama sudah masuk lebih dari satu kali" @@ -22195,20 +22286,20 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22217,16 +22308,12 @@ msgstr "" msgid "Save" msgstr "Simpan" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "Simpan Saja" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "Disimpan Sebagai" @@ -22234,11 +22321,11 @@ msgstr "Disimpan Sebagai" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "Menyimpan laporan" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "Simpan filter" @@ -22263,7 +22350,7 @@ msgstr "Disimpan" msgid "Saved Filters" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22342,7 +22429,7 @@ msgstr "Jenis Pekerjaan yang Dijadwalkan" msgid "Scheduled Jobs Logs" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "Eksekusi terjadwal untuk skrip {0} telah diperbarui" @@ -22365,7 +22452,7 @@ msgstr "" msgid "Scheduler Event" msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "Penjadwal Tidak Aktif" @@ -22378,7 +22465,7 @@ msgstr "" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "Penjadwal tidak aktif. Tidak dapat mengimpor data." @@ -22510,7 +22597,7 @@ msgstr "" msgid "Search by filename or extension" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "kolom pencarian {0} tidak valid" @@ -22610,7 +22697,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "Lihat semua laporan sebelumnya." @@ -22619,7 +22706,7 @@ msgstr "Lihat semua laporan sebelumnya." msgid "See on Website" msgstr "Lihat di Website" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "" @@ -22666,7 +22753,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/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22674,28 +22761,28 @@ msgstr "Pilih" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "Pilih Lampiran" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "Pilih Tabel Anak" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 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:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "Pilih Kolom" @@ -22754,12 +22841,15 @@ msgstr "Pilih Bidang" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "Pilih Fields" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "Pilih Bidang Untuk Disisipkan" @@ -22772,7 +22862,7 @@ msgstr "Pilih Fields To Update" msgid "Select Filters" msgstr "Pilih Filter" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "Pilih Google Kalender tempat acara harus disinkronkan." @@ -22805,8 +22895,8 @@ msgstr "pilih wajib" msgid "Select Module" msgstr "Pilih Modul" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "" @@ -22871,14 +22961,14 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "Pilih simpul kelompok terlebih dahulu." +msgid "Select a group {0} first." +msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 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:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 msgid "Select a valid Subject field for creating documents from Email" msgstr "Pilih bidang Subjek yang valid untuk membuat dokumen dari Email" @@ -22908,13 +22998,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:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Pilih item daftar" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Pilih beberapa item daftar" @@ -22948,7 +23038,7 @@ msgstr "" msgid "Select {0}" msgstr "Pilih {0}" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "Persetujuan diri tidak diizinkan" @@ -23132,7 +23222,7 @@ msgstr "" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "Sender Field harus memiliki opsi Email in" @@ -23226,7 +23316,7 @@ msgstr "" msgid "Series counter for {} updated to {} successfully" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: 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}" @@ -23236,7 +23326,7 @@ msgstr "Seri {0} sudah digunakan dalam {1}" msgid "Server Action" msgstr "" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "server error" @@ -23255,7 +23345,7 @@ msgstr "" msgid "Server Script" msgstr "Skrip Server" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23302,7 +23392,7 @@ msgstr "Default Sesi" msgid "Session Defaults Saved" msgstr "Default Sesi Disimpan" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "Sesi berakhir" @@ -23311,14 +23401,14 @@ msgstr "Sesi berakhir" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "Sesi kadaluarsa harus dalam format {0}" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "Tetapkan" @@ -23344,12 +23434,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "Setel Filter Dinamis" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23360,7 +23450,7 @@ msgstr "Tetapkan Filter" msgid "Set Filters for {0}" msgstr "Setel Filter untuk {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23414,7 +23504,7 @@ msgstr "Set Kuantitas" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23424,16 +23514,16 @@ msgstr "" msgid "Set Value" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "Set sebagai Default" @@ -23452,18 +23542,21 @@ msgstr "" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "" -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23555,14 +23648,9 @@ msgstr "" msgid "Settings for the About Us Page" msgstr "" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "Pengaturan" @@ -23578,8 +23666,8 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "Atur Email Otomatis" @@ -23648,11 +23736,6 @@ msgstr "Alamat Pengiriman" msgid "Shop" msgstr "" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "pola keyboard pendek mudah ditebak" @@ -23672,11 +23755,6 @@ msgstr "" msgid "Show" msgstr "Menunjukkan" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23729,7 +23807,13 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23857,7 +23941,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "Tampilkan Tag" @@ -23874,7 +23958,7 @@ msgstr "" msgid "Show Title in Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "Tampilkan Total" @@ -23914,10 +23998,6 @@ msgstr "Tampilkan semua Versi" msgid "Show all activity" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "" - #. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" @@ -23966,8 +24046,8 @@ msgstr "" msgid "Show list" msgstr "" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "Tampilkan lebih detail" @@ -23996,7 +24076,7 @@ msgstr "" msgid "Show {0} List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "Hanya menampilkan bidang numerik dari Laporan" @@ -24031,7 +24111,7 @@ msgstr "" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "Sign Up dinonaktifkan" @@ -24068,22 +24148,22 @@ msgstr "Pendaftaran Dinonaktifkan" msgid "Signups have been disabled for this website." msgstr "Pendaftaran telah dinonaktifkan untuk situs web ini." -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" msgstr "" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" msgstr "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' @@ -24091,13 +24171,13 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "Single DocTypes tidak dapat dikustomisasi." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Jenis tunggal hanya memiliki satu record tabel tidak terkait. Nilai yang disimpan dalam tabSingles" @@ -24105,7 +24185,7 @@ msgstr "Jenis tunggal hanya memiliki satu record tabel tidak terkait. Nilai yang msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "" -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "Ukuran" @@ -24324,11 +24404,11 @@ msgstr "Sesuatu yang salah terjadi selama pembuatan token. Klik pada {0} untuk m msgid "Something went wrong." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 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:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "Mohon Maaf! Anda tidak diizinkan untuk melihat halaman ini." @@ -24359,20 +24439,23 @@ msgstr "" msgid "Sort Order" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 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/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "Sumber" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24399,6 +24482,12 @@ msgstr "" msgid "SparkPost" msgstr "" +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "Karakter spesial tidak diperbolehkan" @@ -24423,8 +24512,8 @@ msgstr "" msgid "Splash Image" msgstr "" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "sr" @@ -24456,11 +24545,11 @@ msgstr "" msgid "Standard" msgstr "Standar" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "DocType standar tidak dapat memiliki format cetak standar, gunakan Customize Form" @@ -24472,7 +24561,7 @@ msgstr "Standar Tidak Ditetapkan" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "Format Cetak Standar tidak dapat diperbarui" @@ -24480,11 +24569,11 @@ msgstr "Format Cetak Standar tidak dapat diperbarui" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "Gaya Cetak Standar tidak dapat diubah. Silahkan duplikat untuk mengedit." -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "" @@ -24516,8 +24605,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:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "Mulai" @@ -24525,7 +24614,7 @@ msgstr "Mulai" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24590,6 +24679,7 @@ msgstr "" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24598,7 +24688,7 @@ msgstr "" msgid "State" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "" @@ -24654,6 +24744,7 @@ msgstr "" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24678,6 +24769,7 @@ msgstr "" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24685,8 +24777,8 @@ msgstr "" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24723,7 +24815,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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24753,6 +24845,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +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." @@ -24831,7 +24927,7 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -24847,7 +24943,7 @@ msgstr "Perihal" msgid "Subject Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 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" @@ -24861,6 +24957,7 @@ msgstr "" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24869,10 +24966,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: 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:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Kirim" @@ -24882,7 +24980,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Kirim" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Kirim" @@ -24906,7 +25004,7 @@ msgstr "" msgid "Submit an Issue" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "" @@ -24918,7 +25016,7 @@ msgstr "" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "" @@ -24930,7 +25028,7 @@ msgstr "Kirimkan dokumen ini untuk menyelesaikan langkah ini." msgid "Submit this document to confirm" msgstr "Menyerahkan dokumen ini untuk mengkonfirmasi" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Kirim {0} dokumen?" @@ -24939,11 +25037,11 @@ msgstr "Kirim {0} dokumen?" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "Dikirim" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "Dikirim Dokumen tidak dapat dikonversi kembali untuk menyusun. Transisi baris {0}" @@ -24966,9 +25064,7 @@ msgid "Subsidiary" msgstr "" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "" @@ -24982,7 +25078,7 @@ msgstr "" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25024,20 +25120,16 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "Keberhasilan! Anda baik untuk pergi 👍" - #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" msgstr "" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "Transaksi yang berhasil" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "Sukses: {0} ke {1}" @@ -25079,7 +25171,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "Disarankan Username: {0}" @@ -25201,7 +25293,7 @@ msgstr "Sinkronisasi" msgid "Syncing {0} of {1}" msgstr "Menyinkronkan {0} dari {1}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25324,6 +25416,7 @@ msgstr "" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25406,6 +25499,7 @@ msgstr "" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" msgstr "" @@ -25479,7 +25573,7 @@ msgstr "Tabel" msgid "Table Break" msgstr "" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "" @@ -25488,7 +25582,7 @@ msgstr "" msgid "Table Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "" @@ -25510,11 +25604,11 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "Tabel diperbarui" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 msgid "Table {0} cannot be empty" msgstr "Tabel {0} tidak boleh kosong" @@ -25556,11 +25650,18 @@ msgstr "Memotret" msgid "Target" msgstr "" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "Tugas" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "Tugas" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25622,7 +25723,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "Dinonaktifkan Sementara" @@ -25694,7 +25795,7 @@ msgid "Thank you for reaching out to us. We will get back to you at the earliest "{0}" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "" @@ -25718,7 +25819,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:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "Format CSV bersifat case sensitive" @@ -25729,15 +25830,15 @@ msgid "The Client ID obtained from the Google Cloud Console under " msgstr "" -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "Kondisi '{0}' tidak valid" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." msgstr "" @@ -25778,7 +25879,7 @@ msgstr "" msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "Kolom {0} memiliki {1} format tanggal yang berbeda. Secara otomatis menyetel {2} sebagai format bawaan karena ini yang paling umum. Harap ubah nilai lain di kolom ini ke format ini." -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "Komentar tidak boleh kosong" @@ -25786,7 +25887,7 @@ msgstr "Komentar tidak boleh kosong" msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:658 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25816,7 +25917,7 @@ msgstr "" msgid "The field {0} is mandatory" msgstr "" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "" @@ -25886,15 +25987,19 @@ msgid "The project number obtained from Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

    Click here to download:
    {0}

    This link will expire in {1} hours." +msgstr "" + +#: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:995 +#: frappe/core/doctype/user/user.py:1002 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "Sumber daya yang Anda cari tidak tersedia" @@ -25906,7 +26011,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:338 +#: frappe/utils/response.py:336 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25927,7 +26032,7 @@ msgstr "" msgid "The webhook will be triggered if this expression is true" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "{0} sudah diulang otomatis {1}" @@ -25967,16 +26072,16 @@ 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:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "Hanya ada satu Fold dalam bentuk" @@ -25988,15 +26093,19 @@ 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 +msgid "There is no task called \"{}\"" +msgstr "" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 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:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26008,7 +26117,7 @@ msgstr "Harus ada minimal aturan satu izin." msgid "There was an error building this page" msgstr "Terjadi kesalahan saat membangun halaman ini" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "Terjadi kesalahan saat menyimpan filter" @@ -26020,11 +26129,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:840 +#: frappe/public/js/frappe/views/communication.js:843 msgid "There were errors while sending email. Please try again." msgstr "Ada kesalahan saat mengirim email. Silakan coba lagi." -#: frappe/model/naming.py:494 +#: frappe/model/naming.py:502 msgid "There were some errors setting the name, please contact the administrator" msgstr "Ada beberapa kesalahan pengaturan nama, silahkan hubungi administrator" @@ -26065,7 +26174,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "Mata uang ini dinonaktifkan. Aktifkan untuk digunakan dalam transaksi" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "Papan Kanban ini akan menjadi pribadi" @@ -26073,6 +26182,10 @@ msgstr "Papan Kanban ini akan menjadi pribadi" msgid "This Month" msgstr "Bulan Ini" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "Kuartal Ini" @@ -26098,6 +26211,11 @@ msgstr "Tindakan ini hanya diperbolehkan untuk {}" msgid "This cannot be undone" msgstr "Ini tidak dapat dibatalkan" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +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" @@ -26112,11 +26230,11 @@ msgstr "" msgid "This doctype has no orphan fields to trim" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26158,7 +26276,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26174,7 +26292,7 @@ msgstr "" 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:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "" @@ -26193,7 +26311,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 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." @@ -26217,12 +26335,6 @@ msgstr "" msgid "This is an automatically generated reply" msgstr "Ini adalah balasan secara otomatis" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "" - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "Hal ini mirip dengan password yang umum digunakan." @@ -26241,7 +26353,7 @@ 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:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "Ini dapat dicetak pada beberapa halaman" @@ -26249,7 +26361,7 @@ msgstr "Ini dapat dicetak pada beberapa halaman" msgid "This month" msgstr "Bulan ini" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26257,7 +26369,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "Laporan ini dibuat pada {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "Laporan ini dihasilkan {0}." @@ -26288,8 +26400,8 @@ msgstr "" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " -msgstr "" +msgid "This value specifies the max number of rows that can be rendered in report view." +msgstr "Nilai ini menentukan jumlah maksimum baris yang dapat dirender dalam tampilan laporan." #: frappe/website/doctype/web_page/web_page.js:85 msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish" @@ -26320,10 +26432,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " -msgstr "" +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:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "Terhempas" @@ -26399,9 +26511,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26472,11 +26586,11 @@ msgstr "" msgid "Timeline Name" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 msgid "Timeline field must be a Link or Dynamic Link" msgstr "bidang Timeline harus Link atau Dynamic Link" -#: frappe/core/doctype/doctype/doctype.py:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "bidang Timeline harus fieldname valid" @@ -26502,10 +26616,7 @@ msgid "Timespan" msgstr "Rentang waktu" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "" @@ -26525,9 +26636,6 @@ msgstr "" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26552,9 +26660,6 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26577,7 +26682,7 @@ msgstr "" msgid "Title Prefix" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "Judul lapangan harus fieldname valid" @@ -26671,7 +26776,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "Untuk mendapatkan laporan yang diperbarui, klik pada {0}." @@ -26726,7 +26831,7 @@ msgstr "To Do" msgid "Today" msgstr "Hari ini" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "" @@ -26742,11 +26847,11 @@ msgstr "" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26792,7 +26897,7 @@ msgid "Tomorrow" msgstr "Besok" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "" @@ -26808,7 +26913,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 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" @@ -26870,10 +26975,10 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -26916,18 +27021,18 @@ msgstr "" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " -msgstr "" +msgid "Total number of emails to sync in initial sync process" +msgstr "Total jumlah email yang akan disinkronkan dalam proses sinkronisasi awal" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "Total" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "Total Row" @@ -26993,26 +27098,10 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "Log Transaksi" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "Laporan Log Transaksi" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "" @@ -27026,6 +27115,11 @@ msgstr "" msgid "Transition Rules" msgstr "" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" @@ -27040,7 +27134,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27051,7 +27145,7 @@ msgstr "" msgid "Translate Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "" @@ -27135,8 +27229,8 @@ msgstr "" msgid "Try a Naming Series" msgstr "" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "" @@ -27202,7 +27296,7 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27295,7 +27389,7 @@ msgstr "" msgid "URL for documentation or help" msgstr "" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "" @@ -27398,7 +27492,7 @@ msgstr "" msgid "Unable to update event" msgstr "Tidak dapat memperbarui acara" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "Tidak dapat menulis format file untuk {0}" @@ -27407,7 +27501,7 @@ msgstr "Tidak dapat menulis format file untuk {0}" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27423,7 +27517,7 @@ msgstr "" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27470,7 +27564,7 @@ msgstr "Kolom diketahui: {0}" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "Pengguna tidak dikenal" @@ -27482,8 +27576,7 @@ msgstr "" msgid "Unlock Reference Document" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "" @@ -27499,7 +27592,7 @@ msgstr "" msgid "Unread Notification Sent" msgstr "" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "" @@ -27537,8 +27630,8 @@ msgstr "" msgid "Unsubscribed" msgstr "Berhenti berlangganan" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27558,7 +27651,7 @@ msgstr "Buka file {0}" msgid "Unzipping files..." msgstr "Membuka ritsleting file ..." -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "Acara Mendatang untuk Hari Ini" @@ -27572,7 +27665,7 @@ msgstr "Acara Mendatang untuk Hari Ini" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Perbaruan" @@ -27606,6 +27699,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27648,7 +27746,7 @@ msgstr "" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "Diperbarui" @@ -27656,7 +27754,7 @@ msgstr "Diperbarui" msgid "Updated Successfully" msgstr "Berhasil Diperbarui" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "Diperbarui Ke Versi Baru 🎉" @@ -27664,7 +27762,7 @@ msgstr "Diperbarui Ke Versi Baru 🎉" msgid "Updated successfully" msgstr "Berhasil diperbarui" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "Memperbarui" @@ -27709,8 +27807,8 @@ msgstr "" msgid "Upgrade your support experience with Frappe Helpdesk" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27720,11 +27818,11 @@ msgstr "Mengunggah" msgid "Upload Image" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "" @@ -27821,15 +27919,11 @@ msgstr "" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "Penggunaan sub-query atau fungsi dibatasi" -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "" @@ -27850,7 +27944,9 @@ msgid "Used OAuth" msgstr "" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -27859,6 +27955,7 @@ msgstr "" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -27873,11 +27970,12 @@ msgstr "" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -27886,6 +27984,7 @@ msgstr "" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -27902,17 +28001,11 @@ msgstr "" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "Pengguna" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "" - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "Pengguna {0} 'sudah memiliki peran' {1} '" @@ -27942,7 +28035,7 @@ msgstr "" msgid "User Cannot Search" msgstr "" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "" @@ -28006,11 +28099,6 @@ msgstr "" msgid "User ID Property" msgstr "" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28030,6 +28118,11 @@ msgstr "" msgid "User Image" msgstr "" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "" @@ -28048,12 +28141,12 @@ msgstr "Pengguna Izin" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "Permissions Pengguna" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Permissions Pengguna" @@ -28066,7 +28159,9 @@ msgstr "" msgid "User Permissions created successfully" msgstr "" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "" @@ -28132,6 +28227,10 @@ msgstr "" msgid "User does not have permission to create the new {0}" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "Pengguna wajib untuk Berbagi" @@ -28162,7 +28261,7 @@ msgstr "Pengguna {0} tidak dapat dihapus" msgid "User {0} cannot be disabled" msgstr "Pengguna {0} tidak dapat dinonaktifkan" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "Pengguna {0} tidak dapat diganti" @@ -28183,7 +28282,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "Pengguna {0} telah meminta penghapusan data" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "" @@ -28191,7 +28290,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "Pengguna {0} dinonaktifkan" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28212,7 +28311,7 @@ msgstr "" msgid "Username" msgstr "Nama pengguna" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "Nama pengguna {0} sudah ada" @@ -28296,7 +28395,7 @@ msgstr "" msgid "Validate SSL Certificate" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "Kesalahan Validasi" @@ -28319,8 +28418,8 @@ msgstr "" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28352,7 +28451,7 @@ msgstr "" msgid "Value To Be Set" msgstr "" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "Nilai tidak dapat diubah untuk {0}" @@ -28368,11 +28467,11 @@ msgstr "Nilai tidak boleh negatif untuk {0}: {1}" msgid "Value for a check field can be either 0 or 1" msgstr "Nilai untuk bidang pemeriksaan dapat berupa 0 atau 1" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 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:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "Nilai untuk {0} tidak bisa daftar" @@ -28397,7 +28496,7 @@ msgstr "" msgid "Value to Validate" msgstr "" -#: frappe/model/base_document.py:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "Nilai terlalu besar" @@ -28414,7 +28513,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:8 +#: frappe/core/doctype/version/version_view.html:9 msgid "Values Changed" msgstr "Nilai Berubah" @@ -28427,7 +28526,7 @@ msgstr "" msgid "Verification" msgstr "" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "" @@ -28489,15 +28588,7 @@ msgstr "Lihat semua" msgid "View Audit Trail" msgstr "" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "Lihat Komentar" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" @@ -28509,7 +28600,7 @@ msgstr "" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "Lihat Daftar" @@ -28519,7 +28610,7 @@ msgstr "Lihat Daftar" msgid "View Log" msgstr "Melihat log" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Lihat Dokumen yang Diizinkan" @@ -28566,7 +28657,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:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "" @@ -28635,6 +28726,7 @@ msgid "Warehouse" msgstr "Gudang" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Peringatan" @@ -28643,7 +28735,7 @@ msgstr "Peringatan" msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "" @@ -28729,7 +28821,7 @@ msgstr "Halaman web" msgid "Web Page Block" msgstr "Blok Halaman Web" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "" @@ -28832,7 +28924,7 @@ msgstr "" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "Situs Web" @@ -28845,10 +28937,6 @@ msgstr "Analisis Situs Web" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -28892,7 +28980,7 @@ msgstr "Script Website" msgid "Website Search Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "" @@ -29109,11 +29197,6 @@ msgstr "" msgid "Will add \"%\" before and after the query" msgstr "" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "" - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "Akan menjadi ID login anda" @@ -29128,7 +29211,7 @@ msgstr "Hanya akan ditampilkan jika judul bagian diaktifkan" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "Dengan kepala Surat" @@ -29206,7 +29289,7 @@ msgstr "" msgid "Workflow Data" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "" @@ -29232,11 +29315,11 @@ msgstr "Status Alur Kerja" msgid "Workflow State Field" msgstr "" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "Negara Alur Kerja tidak diatur" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "Transisi status Workflow tidak diizinkan dari {0} ke {1}" @@ -29244,15 +29327,30 @@ msgstr "Transisi status Workflow tidak diizinkan dari {0} ke {1}" msgid "Workflow States Don't Exist" msgstr "" -#: frappe/model/workflow.py:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "Status Alur Kerja" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "Transisi Alur Kerja" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29268,13 +29366,13 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29344,11 +29442,11 @@ msgstr "" msgid "Workspaces" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "" @@ -29367,11 +29465,11 @@ msgstr "Membungkus" msgid "Write" msgstr "" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "Nilai Ambil Dari Salah" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "Bidang Axis X" @@ -29390,13 +29488,13 @@ msgstr "" msgid "Y Axis" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" 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:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "" @@ -29448,16 +29546,17 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Ya" @@ -29485,6 +29584,18 @@ msgstr "Anda" msgid "You Liked" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "Anda terhubung ke internet." @@ -29523,20 +29634,20 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "Anda tidak diizinkan mengekspor {} doctype" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "Anda tidak diizinkan untuk mencetak laporan ini" -#: frappe/public/js/frappe/views/communication.js:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "Anda tidak diizinkan mengirim email yang terkait dokumen ini" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "Anda tidak diizinkan memperbarui Dokumen Web Form ini" @@ -29560,7 +29671,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:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29586,13 +29697,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " -msgstr "Anda juga dapat menyalin-menempel ini" +msgid "You can also copy-paste this" +msgstr "" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "Anda juga dapat menyalin-menempel ini {0} ke peramban Anda" +#: frappe/templates/emails/user_invitation_expired.html:8 +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 "" @@ -29605,11 +29720,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29629,7 +29744,7 @@ msgstr "" msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "" -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "" @@ -29647,7 +29762,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "Anda dapat mencoba mengubah filter laporan Anda." @@ -29659,11 +29774,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "Anda tidak dapat menyetel 'Pilihan' untuk bidang {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "Anda tidak dapat mengatur 'Translatable' untuk field {0}" @@ -29681,7 +29796,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "Anda tidak dapat membuat bagan dasbor dari satu DocTypes" -#: frappe/custom/doctype/customize_form/customize_form.py:385 +#: 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}" @@ -29711,7 +29826,7 @@ msgstr "" msgid "You created this" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "" @@ -29724,15 +29839,15 @@ msgstr "" 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." -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "Anda tidak memiliki izin yang cukup untuk menyelesaikan tindakan" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29744,11 +29859,11 @@ msgstr "Anda tidak memiliki izin untuk membatalkan semua dokumen yang ditautkan. msgid "You don't have access to Report: {0}" msgstr "Anda tidak memiliki akses ke Laporan: {0}" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "Anda tidak memiliki izin untuk mengakses file ini" @@ -29756,19 +29871,19 @@ msgstr "Anda tidak memiliki izin untuk mengakses file ini" msgid "You don't have permission to get a report on: {0}" msgstr "Anda tidak memiliki izin untuk mendapatkan laporan tentang: {0}" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "Anda tidak memiliki izin untuk mengakses dokumen ini" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " -msgstr "Anda memiliki pesan baru dari:" +msgid "You have a new message from:" +msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "Anda telah berhasil keluar" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29776,11 +29891,7 @@ msgstr "" msgid "You have not entered a value. The field will be set to empty." msgstr "" -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "" @@ -29800,7 +29911,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:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29817,11 +29928,11 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "Anda harus login untuk mengirimkan formulir ini" @@ -29845,7 +29956,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "Anda perlu berada dalam mode developer untuk mengedit Formulir Web Standar" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "Anda harus login dan memiliki Peran Manager Sistem untuk dapat mengakses back-up." @@ -29853,13 +29964,13 @@ msgstr "Anda harus login dan memiliki Peran Manager Sistem untuk dapat mengakses msgid "You need to be logged in to access this page" msgstr "Anda harus login untuk mengakses halaman ini" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "Anda harus login untuk mengakses ini {0}." #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " -msgstr "" +msgid "You need to create these first:" +msgstr "Anda perlu membuat ini terlebih dahulu:" #: frappe/www/login.html:76 msgid "You need to enable JavaScript for your app to work." @@ -29893,11 +30004,19 @@ msgstr "" msgid "You need {0} permission to fetch values from {1} {2}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "Tampaknya Anda baik untuk pergi!" @@ -29928,10 +30047,26 @@ msgstr "Anda berhenti mengikuti dokumen ini" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "" @@ -29961,7 +30096,7 @@ msgstr "Pintasan Anda" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "Akun Anda telah dikunci dan akan dilanjutkan setelah {0} detik" @@ -29985,10 +30120,22 @@ msgstr "Permintaan koneksi Anda ke Google Kalender berhasil diterima" msgid "Your email address" msgstr "Alamat email anda" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "Id login Anda" @@ -30011,7 +30158,11 @@ msgstr "" msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "Permintaan Anda telah diterima. Kami akan segera menanggapi. Jika Anda memiliki informasi tambahan, silakan balas email ini." -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "Sesi Anda telah kedaluwarsa, silahkan login kembali untuk melanjutkan" @@ -30033,7 +30184,7 @@ msgstr "Nol" msgid "Zero means send records updated at anytime" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" msgstr "" @@ -30055,10 +30206,6 @@ msgstr "" msgid "`job_id` paramater is required for deduplication." msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30093,7 +30240,7 @@ msgstr "" msgid "cProfile Output" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "kalender" @@ -30238,12 +30385,12 @@ msgstr "" msgid "email" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "Kotak Masuk Surel" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "kosong" @@ -30300,7 +30447,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "pusat" @@ -30315,11 +30462,6 @@ msgstr "" msgid "import" msgstr "" -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "" - #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "" @@ -30328,7 +30470,7 @@ msgstr "" msgid "just now" msgstr "baru saja" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "" @@ -30357,7 +30499,7 @@ msgstr "" msgid "logged in" msgstr "Login" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30378,11 +30520,6 @@ msgstr "" msgid "merged {0} into {1}" msgstr "digabung {0} ke {1}" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "" - #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json @@ -30406,7 +30543,7 @@ msgstr "" msgid "module name..." msgstr "nama modul ..." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "baru" @@ -30535,10 +30672,6 @@ msgstr "" msgid "red" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "berganti nama dari {0} ke {1}" @@ -30594,19 +30727,19 @@ msgstr "" msgid "short" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "sejak bulan lalu" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "sejak minggu lalu" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "sejak tahun lalu" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "Dari Kemarin" @@ -30659,6 +30792,10 @@ msgstr "" msgid "this shouldn't break" msgstr "" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30686,7 +30823,7 @@ msgstr "" msgid "via Assignment Rule" msgstr "melalui Aturan Penugasan" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "" @@ -30700,7 +30837,7 @@ msgstr "melalui Impor Data" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "melalui Notifikasi" @@ -30733,10 +30870,15 @@ msgstr "" msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "" +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json @@ -30764,11 +30906,11 @@ msgstr "" msgid "{0}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "" @@ -30794,19 +30936,19 @@ msgstr "" msgid "{0} Calendar" msgstr "{0} Kalender" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "{0} Bagan" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "{0} Dasbor" -#: frappe/public/js/frappe/form/grid_row.js:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "{0} Bidang" @@ -30830,6 +30972,10 @@ msgstr "" msgid "{0} List" msgstr "{0} Daftar" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "" @@ -30842,7 +30988,7 @@ msgstr "" msgid "{0} Name" msgstr "{0} Nama" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "" @@ -30852,11 +30998,10 @@ msgstr "" msgid "{0} Report" msgstr "{0} Laporan" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "{0} Pengaturan" @@ -30881,7 +31026,15 @@ msgstr "" msgid "{0} added" msgstr "{0} ditambahkan" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0} sudah ada. Pilih nama lain" @@ -30893,7 +31046,7 @@ msgstr "{0} sudah berhenti berlangganan" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0} sudah berhenti berlangganan untuk {1} {2}" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "{0} dan {1}" @@ -30901,7 +31054,7 @@ msgstr "{0} dan {1}" msgid "{0} are currently {1}" msgstr "{0} saat ini {1}" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "{0} wajib diisi" @@ -30918,7 +31071,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -30960,11 +31113,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "{0} komentar" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." msgstr "" @@ -30977,7 +31126,7 @@ msgstr "{0} berhasil dibuat" msgid "{0} created this" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "" @@ -30999,7 +31148,7 @@ msgstr "{0} tidak ada di baris {1}" 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" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31031,7 +31180,7 @@ msgstr "{0} telah meninggalkan percakapan di {1} {2}" msgid "{0} hours ago" msgstr "{0} jam yang lalu" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "" @@ -31040,23 +31189,23 @@ 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:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "{0} adalah kolom wajib" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "{0} adalah bidang Data yang tidak valid." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "{0} adalah alamat email yang tidak valid di 'Penerima'" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "" @@ -31065,27 +31214,27 @@ msgstr "" msgid "{0} is currently {1}" msgstr "{0} saat ini {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "" @@ -31093,7 +31242,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "{0} wajib diisi" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31113,12 +31262,12 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 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:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "{0} bukan Alamat Email valid" @@ -31126,15 +31275,15 @@ msgstr "{0} bukan Alamat Email valid" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "{0} bukanlah Nama yang valid" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "{0} bukan Nomor Telepon yang valid" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 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." @@ -31150,55 +31299,59 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} bukan format laporan yang valid. Format laporan harus salah satu dari yang berikut {1}" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "{0} sekarang menjadi format cetak standar untuk doctype {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 -#: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: 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/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} item dipilih" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31231,35 +31384,35 @@ msgstr "{0} menit yang lalu" msgid "{0} months ago" msgstr "{0} bulan yang lalu" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "{0} harus setelah {1}" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} harus merupakan salah satu {1}" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "{0} harus diatur terlebih dahulu" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "{0} harus merupakan kode unik" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "" @@ -31267,7 +31420,7 @@ msgstr "" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "{0} bukan Keadaan yang berlaku" @@ -31280,11 +31433,11 @@ msgid "{0} not found" msgstr "{0} tidak ditemukan" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} dari {1}" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} dari {1} ({2} baris dengan anak-anak)" @@ -31293,7 +31446,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "{0} atau {1}" @@ -31317,6 +31470,10 @@ msgstr "{0} catatan dihapus" msgid "{0} records will be exported" msgstr "{0} catatan akan diekspor" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31326,15 +31483,29 @@ msgstr "" msgid "{0} removed their assignment." msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" +msgstr "Baris {0} #{1}:" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "{0} berhasil disimpan" @@ -31354,11 +31525,11 @@ msgstr "{0} berbagi dokumen ini dengan semua orang" msgid "{0} shared this document with {1}" msgstr "{0} berbagi dokumen ini dengan {1}" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "{0} tidak boleh sama dengan {1}" @@ -31371,8 +31542,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "{0} Pelanggan telah ditambahkan" @@ -31382,7 +31553,7 @@ msgstr "{0} untuk berhenti menerima email jenis ini" #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "{0} sampai {1}" @@ -31390,7 +31561,7 @@ msgstr "{0} sampai {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} berhenti berbagi dokumen ini dengan {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} diperbarui" @@ -31426,15 +31597,15 @@ msgstr "{0} {1} ditambahkan" msgid "{0} {1} added to Dashboard {2}" msgstr "{0} {1} ditambahkan ke Dasbor {2}" -#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "{0} {1} sudah ada" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "{0} {1} tidak dapat \"{2}\". Seharusnya salah satu dari \"{3}\"" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "{0} {1} tidak bisa menjadi node tumpuan karena memiliki node anak" @@ -31450,11 +31621,11 @@ msgstr "{0} {1} ditautkan dengan dokumen yang dikirimkan berikut: {2}" msgid "{0} {1} not found" msgstr "{0} {1} tidak ditemukan" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 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:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "{0}, Baris {1}" @@ -31462,79 +31633,79 @@ msgstr "{0}, Baris {1}" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "" -#: frappe/model/base_document.py:1120 +#: frappe/model/base_document.py:1181 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:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "{0}: Tidak dapat melakukan Perubahan tanpa Pembatalan terlebih dahulu" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 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:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 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:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "{0}: Tidak dapat mengatur Pembatalan tanpa melakukan penyerahan" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "{0}: Tidak dapat melakukan Impor tanpa dibuat terlebih dahulu" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 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:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 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:405 +#: 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:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 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:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 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:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 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:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 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:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "{0}: Fieldtype {1} untuk {2} tidak boleh unik" -#: frappe/core/doctype/doctype/doctype.py:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "{0}: Tidak ada perizinan dasar yang ditetapkan" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 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:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 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:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 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:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 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}" @@ -31542,7 +31713,7 @@ 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:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 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" @@ -31550,7 +31721,7 @@ msgstr "{0}: Izin pada tingkat 0 harus ditetapkan sebelum tingkat yang lebih tin msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "" @@ -31563,11 +31734,11 @@ 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:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "{0}: Fieldtype {1} untuk {2} tidak dapat diindeks" @@ -31591,7 +31762,7 @@ msgstr "" msgid "{count} rows selected" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "{{{0}}} bukan pola nama-kolom yang sah. Seharusnya {{field_name}}." @@ -31599,11 +31770,11 @@ msgstr "{{{0}}} bukan pola nama-kolom yang sah. Seharusnya {{field_name}}." msgid "{} Complete" msgstr "{} Selesai" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
    {}" msgstr "" @@ -31629,7 +31800,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "{} bukan string tanggal yang valid." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/it.po b/frappe/locale/it.po index 6d0fd6c7dd..88f8679897 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-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-21 21:50\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Italian\n" "MIME-Version: 1.0\n" @@ -18,21 +18,17 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: it_IT\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr "" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid "!=" -msgstr "" +msgstr "!=" #. Description of the 'Org History Heading' (Data) field in DocType 'About Us #. Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "\"Company History\"" -msgstr "" +msgstr "\"Storia dell'azienda\"" #: frappe/core/doctype/data_export/exporter.py:202 msgid "\"Parent\" signifies the parent table in which this row must be added" @@ -42,7 +38,7 @@ msgstr "" #. Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "\"Team Members\" or \"Management\"" -msgstr "" +msgstr "\"Membri del team\" o \"Dirigenza\"" #: frappe/public/js/frappe/form/form.js:1090 msgid "\"amended_from\" field must be present to do an amendment." @@ -50,184 +46,195 @@ msgstr "" #: frappe/utils/csvutils.py:246 msgid "\"{0}\" is not a valid Google Sheets URL" -msgstr "" +msgstr "\"{0}\" non è un URL valido di Google Fogli" #: frappe/public/js/frappe/ui/toolbar/tag_utils.js:21 #: frappe/public/js/frappe/ui/toolbar/tag_utils.js:22 msgid "#{0}" -msgstr "" +msgstr "#{0}" #: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:36 msgid "${values.doctype_name} has been added to queue for optimization" -msgstr "" +msgstr "${values.doctype_name} è stato aggiunto alla coda per l'ottimizzazione" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" -msgstr "" +msgstr "© Frappe Technologies Pvt. Ltd. e collaboratori" #. Label of the head_html (Code) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "<head> HTML" -msgstr "" +msgstr "<head> HTML" #: frappe/public/js/form_builder/store.js:206 msgid "'In Global Search' is not allowed for field {0} of type {1}" -msgstr "" +msgstr "'Nella Ricerca Globale' non è consentito per il campo {0} di tipo {1}" -#: frappe/core/doctype/doctype/doctype.py:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 msgid "'In Global Search' not allowed for type {0} in row {1}" -msgstr "" +msgstr "'Nella Ricerca Globale' non consentito per il tipo {0} nella riga {1}" #: frappe/public/js/form_builder/store.js:198 msgid "'In List View' is not allowed for field {0} of type {1}" -msgstr "" +msgstr "'Nella Vista Elenco' non è consentito per il campo {0} di tipo {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" -msgstr "" +msgstr "'Nella Vista Elenco' non consentito per il tipo {0} nella riga {1}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" +msgstr "'Destinatari' non specificati" + +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" msgstr "" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" -msgstr "" +msgstr "'{0}' non è un URL valido" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" -msgstr "" +msgstr "'{0}' non consentito per il tipo {1} nella riga {2}" #: frappe/public/js/frappe/data_import/data_exporter.js:302 msgid "(Mandatory)" -msgstr "" +msgstr "(Obbligatorio)" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" -msgstr "" +msgstr "** Fallito: {0} a {1}: {2}" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" -msgstr "" +msgstr "+ Aggiungi / Rimuovi Campi" #. Description of the 'Doc Status' (Select) field in DocType 'Workflow Document #. State' #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json msgid "0 - Draft; 1 - Submitted; 2 - Cancelled" -msgstr "" +msgstr "0 - Bozza; 1 - Inviata; 2 - Annullata" #. Description of the 'Priority' (Int) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "0 is highest" -msgstr "" +msgstr "0 è il più alto" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" -msgstr "" +msgstr "1 = Vero e 0 = Falso" #. Description of the 'Fraction Units' (Int) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json msgid "1 Currency = [?] Fraction\n" "For e.g. 1 USD = 100 Cent" -msgstr "" +msgstr "1 Valuta = [?] Frazione\n" +"Ad esempio 1 USD = 100 Centesimi" #: frappe/public/js/frappe/form/reminders.js:19 msgid "1 Day" -msgstr "" +msgstr "1 Giorno" #: frappe/integrations/doctype/google_calendar/google_calendar.py:374 msgid "1 Google Calendar Event synced." -msgstr "" +msgstr "1 Evento di Google Calendar sincronizzato." -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" -msgstr "" +msgstr "1 giorno fa" #: frappe/public/js/frappe/form/reminders.js:17 msgid "1 hour" -msgstr "" +msgstr "1 ora" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" -msgstr "" +msgstr "1 ora fa" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" -msgstr "" +msgstr "1 minuto fa" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" -msgstr "" +msgstr "1 mese fa" #: frappe/public/js/print_format_builder/PrintFormat.vue:3 msgid "1 of 2" -msgstr "" +msgstr "1 di 2" #: frappe/public/js/frappe/data_import/data_exporter.js:227 msgid "1 record will be exported" +msgstr "Verrà esportato 1 record" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" msgstr "" -#: frappe/tests/test_utils.py:711 -msgid "1 second ago" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" msgstr "" +#: frappe/tests/test_utils.py:840 +msgid "1 second ago" +msgstr "1 secondo fa" + #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" -msgstr "" +msgstr "1 settimana fa" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" -msgstr "" +msgstr "1 anno fa" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" -msgstr "" +msgstr "2 ore fa" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" -msgstr "" +msgstr "2 mesi fa" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" -msgstr "" +msgstr "2 settimane fa" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" -msgstr "" +msgstr "2 anni fa" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" -msgstr "" +msgstr "3 minuti fa" #: frappe/public/js/frappe/form/reminders.js:16 msgid "30 minutes" -msgstr "" +msgstr "30 minuti" #: frappe/public/js/frappe/form/reminders.js:18 msgid "4 hours" -msgstr "" +msgstr "4 ore" #: frappe/public/js/frappe/data_import/data_exporter.js:37 msgid "5 Records" -msgstr "" +msgstr "5 record" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" -msgstr "" +msgstr "5 giorni fa" #: frappe/desk/doctype/bulk_update/bulk_update.py:36 msgid "; not allowed in condition" @@ -237,23 +244,40 @@ 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 "<=" + +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" msgstr "" #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" -msgstr "" +msgstr "{0} non è un URL valido" #. Content of the 'Help' (HTML) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "
    Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
    " msgstr "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

    Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

    " +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

    Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

    " +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -314,7 +338,20 @@ msgid "

    Custom CSS Help

    \n\n" "

    1. Add border to sections except the last section

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

    Aiuto CSS personalizzato

    \n\n" +"

    Note:

    \n\n" +"
      \n" +"
    1. Tutti i gruppi di campi (etichetta + valore) sono attributi impostati data-fieldtype e data-fieldname
    2. \n" +"
    3. A tutti i valori viene assegnata la classe value
    4. \n" +"
    5. A tutte le interruzioni di sezione viene assegnata la classe section-break
    6. \n" +"
    7. Tutte le interruzioni di colonna hanno la classe column-break
    8. \n" +"
    \n\n" +"

    Esempi

    \n\n" +"

    1. Allinea a sinistra gli interi

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

    1. Aggiungi un bordo alle sezioni eccetto l'ultima sezione

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

    Print Format Help

    \n" "\t\t\n" "\t\n" "\n" -msgstr "" +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" #. Description of the 'Template' (Code) field in DocType 'Address Template' #: frappe/contacts/doctype/address_template/address_template.json @@ -417,7 +519,17 @@ msgid "

    Email Reply Example

    \n\n" "

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

    \n\n" "

    Templating

    \n\n" "

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

    \n" -msgstr "" +msgstr "

    Esempio di risposta via email

    \n\n" +"
    Ordine in ritardo\n\n"
    +"La transazione {{ name }} ha superato la data di scadenza. Si prega di intraprendere le azioni necessarie.\n\n"
    +"Dettagli\n\n"
    +"- Cliente: {{ customer }}\n"
    +"- Importo: {{ grand_total }}\n"
    +"
    \n\n" +"

    Come ottenere i nomi dei campi

    \n\n" +"

    I nomi dei campi che puoi utilizzare nel tuo modello di email sono i campi nel documento da cui stai inviando l'email. Puoi scoprire i campi di qualsiasi documento tramite Impostazioni > Personalizza la visualizzazione del modulo e seleziona il tipo di documento (ad esempio, Fattura di vendita)

    \n\n" +"

    Modelli

    \n\n" +"

    I modelli sono compilati utilizzando il linguaggio di template Jinja. Per saperne di più su Jinja, leggi questa documentazione.

    \n" #. Content of the 'html_5' (HTML) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json @@ -479,7 +591,7 @@ msgid "

    To interact with above HTML you will have to use `root_element` as a p "" msgstr "" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

    " msgstr "" @@ -532,21 +644,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:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" @@ -555,15 +667,16 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." msgstr "" #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "" @@ -576,7 +689,7 @@ msgstr "" msgid "A new account has been created for you at {0}" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "" @@ -603,62 +716,62 @@ msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "A0" -msgstr "" +msgstr "A0" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "A1" -msgstr "" +msgstr "A1" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "A2" -msgstr "" +msgstr "A2" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "A3" -msgstr "" +msgstr "A3" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "A4" -msgstr "" +msgstr "A4" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "A5" -msgstr "" +msgstr "A5" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "A6" -msgstr "" +msgstr "A6" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "A7" -msgstr "" +msgstr "A7" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "A8" -msgstr "" +msgstr "A8" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "A9" -msgstr "" +msgstr "A9" #. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "ALL" -msgstr "" +msgstr "TUTTO" #. Option for the 'Script Type' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "API" -msgstr "" +msgstr "API" #. Label of the api_access (Section Break) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -675,13 +788,17 @@ msgstr "" msgid "API Endpoint Args" msgstr "" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -700,6 +817,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -720,7 +841,7 @@ msgstr "" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -731,24 +852,24 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "ASC" -msgstr "" +msgstr "ASC" #. Label of a standard help item #. Type: Action #: frappe/hooks.py msgid "About" -msgstr "" +msgstr "Informazioni" #: frappe/www/about.html:11 frappe/www/about.html:18 msgid "About Us" -msgstr "" +msgstr "Chi Siamo" #. Name of a DocType #. Label of a Link in the Website Workspace #: frappe/website/doctype/about_us_settings/about_us_settings.json #: frappe/website/workspace/website/website.json msgid "About Us Settings" -msgstr "" +msgstr "Impostazioni Chi siamo" #. Name of a DocType #: frappe/website/doctype/about_us_team_member/about_us_team_member.json @@ -757,14 +878,28 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.js:27 msgid "About {0} minute remaining" -msgstr "" +msgstr "Circa {0} minuto rimanente" #: frappe/core/doctype/data_import/data_import.js:28 msgid "About {0} minutes remaining" -msgstr "" +msgstr "Mancano circa {0} minuti" #: frappe/core/doctype/data_import/data_import.js:25 msgid "About {0} seconds remaining" +msgstr "Circa {0} secondi rimanenti" + +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "Accetta l'Invito" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "Accettato" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" msgstr "" #. Label of the access_control_section (Section Break) field in DocType 'Web @@ -778,7 +913,7 @@ msgstr "" #: frappe/core/doctype/access_log/access_log.json #: frappe/core/workspace/users/users.json msgid "Access Log" -msgstr "" +msgstr "Log Accessi" #. Label of the access_token (Data) field in DocType 'OAuth Bearer Token' #. Label of the access_token (Password) field in DocType 'Token Cache' @@ -792,7 +927,7 @@ msgstr "" msgid "Access Token URL" msgstr "" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "" @@ -800,20 +935,20 @@ msgstr "" #. Account' #: frappe/email/doctype/email_account/email_account.json msgid "Account" -msgstr "" +msgstr "Account" #. Label of the account_deletion_settings_section (Section Break) field in #. DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Account Deletion Settings" -msgstr "" +msgstr "Impostazioni di Eliminazione Account" #. Name of a role #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/contacts/doctype/contact/contact.json #: frappe/geo/doctype/currency/currency.json msgid "Accounts Manager" -msgstr "" +msgstr "Responsabile Contabilità" #. Name of a role #: frappe/automation/doctype/auto_repeat/auto_repeat.json @@ -821,7 +956,7 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/geo/doctype/currency/currency.json msgid "Accounts User" -msgstr "" +msgstr "Account Utente" #: frappe/public/js/frappe/form/dashboard.js:510 msgid "Accurate count can not be fetched, click here to view all documents" @@ -844,7 +979,7 @@ msgstr "" #: frappe/workflow/doctype/workflow_transition/workflow_transition.json #: frappe/workflow/page/workflow_builder/workflow_builder.js:37 msgid "Action" -msgstr "" +msgstr "Azione" #. Label of the action (Small Text) field in DocType 'DocType Action' #: frappe/core/doctype/doctype_action/doctype_action.json @@ -856,7 +991,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "" @@ -908,7 +1043,7 @@ msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "" @@ -927,7 +1062,7 @@ msgstr "" #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json #: frappe/workflow/doctype/workflow/workflow_list.js:5 msgid "Active" -msgstr "" +msgstr "Attivo" #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json @@ -961,11 +1096,11 @@ msgstr "" #: frappe/core/workspace/build/build.json #: frappe/core/workspace/users/users.json msgid "Activity Log" -msgstr "" +msgstr "Log Attività" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -974,24 +1109,24 @@ msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" -msgstr "" +msgstr "Aggiungi" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" -msgstr "" +msgstr "Aggiungi / Rimuovi colonne" #: frappe/core/doctype/user_permission/user_permission_list.js:4 msgid "Add / Update" -msgstr "" +msgstr "Aggiungi / Aggiorna" #: frappe/core/page/permission_manager/permission_manager.js:442 msgid "Add A New Rule" -msgstr "" +msgstr "Aggiungi Una Nuova Regola" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" -msgstr "" +msgstr "Aggiungi Allegato" #. Label of the add_background_image (Check) field in DocType 'Web Page Block' #: frappe/website/doctype/web_page_block/web_page_block.json @@ -1008,7 +1143,7 @@ msgstr "" msgid "Add Border at Top" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "" @@ -1021,10 +1156,10 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "" @@ -1045,7 +1180,7 @@ msgstr "" #. Label of the set_meta_tags (Button) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Add Custom Tags" -msgstr "" +msgstr "Aggiungi Tag Personalizzati" #: frappe/public/js/frappe/widgets/widget_dialog.js:188 #: frappe/public/js/frappe/widgets/widget_dialog.js:716 @@ -1060,7 +1195,7 @@ msgstr "" #: frappe/public/js/frappe/ui/group_by/group_by.js:230 #: frappe/public/js/frappe/ui/group_by/group_by.js:430 msgid "Add Group" -msgstr "" +msgstr "Aggiungi Gruppo" #: frappe/core/doctype/recorder/recorder.js:30 msgid "Add Indexes" @@ -1068,7 +1203,7 @@ msgstr "" #: frappe/public/js/frappe/form/grid.js:66 msgid "Add Multiple" -msgstr "" +msgstr "Aggiunta Multipla" #: frappe/core/page/permission_manager/permission_manager.js:445 msgid "Add New Permission Rule" @@ -1083,9 +1218,9 @@ msgstr "" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" -msgstr "" +msgstr "Aggiungi Ruoli" #: frappe/public/js/frappe/form/grid.js:66 msgid "Add Row" @@ -1116,12 +1251,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "" @@ -1151,7 +1286,7 @@ msgstr "" #: frappe/public/js/frappe/ui/filters/filter_list.js:299 msgid "Add a Filter" -msgstr "" +msgstr "Aggiungi un Filtro" #: frappe/core/page/permission_manager/permission_manager_help.html:9 msgid "Add a New Role" @@ -1210,7 +1345,7 @@ msgstr "" msgid "Add page break" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "" @@ -1246,12 +1381,12 @@ msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_column.html:20 msgid "Add {0}" -msgstr "" +msgstr "Aggiungi {0}" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" -msgstr "" +msgstr "Aggiungi {0}" #. Option for the 'Status' (Select) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -1262,7 +1397,7 @@ msgstr "" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Added HTML in the <head> section of the web page, primarily used for website verification and SEO" -msgstr "" +msgstr "Aggiunge HTML nella sezione <head> della pagina web, utilizzato principalmente per la verifica del sito web e per la SEO" #: frappe/core/doctype/log_settings/log_settings.py:81 msgid "Added default log doctypes: {}" @@ -1271,7 +1406,7 @@ msgstr "" #: frappe/public/js/frappe/form/link_selector.js:180 #: frappe/public/js/frappe/form/link_selector.js:202 msgid "Added {0} ({1})" -msgstr "" +msgstr "Aggiunto {0} ({1})" #. Label of the additional_permissions (Section Break) field in DocType 'Custom #. DocPerm' @@ -1291,6 +1426,7 @@ msgstr "" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1299,16 +1435,18 @@ msgstr "" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" -msgstr "" +msgstr "Indirizzo" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "Indirizzo 2" #. Name of a DocType #: frappe/contacts/doctype/address_template/address_template.json @@ -1335,7 +1473,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 "" +msgstr "Indirizzo e altre informazioni legali che potresti voler inserire nel piè di pagina." #: frappe/contacts/doctype/address/address.py:206 msgid "Addresses" @@ -1356,7 +1494,7 @@ msgstr "" msgid "Adds a custom field to a DocType" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "" @@ -1370,7 +1508,6 @@ msgstr "" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1383,11 +1520,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1406,12 +1543,12 @@ msgstr "" #. Permission' #: frappe/core/doctype/user_permission/user_permission.json msgid "Advanced Control" -msgstr "" +msgstr "Controllo Avanzato" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" -msgstr "" +msgstr "Ricerca Avanzata" #. Label of the sb_advanced (Section Break) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -1468,7 +1605,7 @@ msgstr "" msgid "After Submit" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "" @@ -1495,11 +1632,11 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1512,7 +1649,7 @@ 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 "" +msgstr "Allinea le Etichette a Destra" #. Label of the right (Check) field in DocType 'Top Bar Item' #: frappe/website/doctype/top_bar_item/top_bar_item.json @@ -1564,7 +1701,7 @@ msgstr "" msgid "All Records" msgstr "" -#: frappe/public/js/frappe/form/form.js:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "" @@ -1596,7 +1733,7 @@ msgstr "" #: frappe/integrations/doctype/social_login_key/social_login_key.json #: frappe/templates/includes/oauth_confirmation.html:16 msgid "Allow" -msgstr "" +msgstr "Permettere" #: frappe/website/doctype/website_settings/website_settings.py:160 msgid "Allow API Indexing Access" @@ -1624,8 +1761,8 @@ msgstr "" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " -msgstr "" +msgid "Allow Consecutive Login Attempts" +msgstr "Consenti tentativi di accesso consecutivi" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 msgid "Allow Google Calendar Access" @@ -1645,16 +1782,11 @@ msgstr "" msgid "Allow Guest to View" msgstr "" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Allow Guests to Upload Files" -msgstr "" +msgstr "Consenti agli Ospiti di Caricare file" #. Label of the allow_import (Check) field in DocType 'DocType' #. Label of the allow_import (Check) field in DocType 'Customize Form' @@ -1698,7 +1830,7 @@ msgid "Allow Print for Cancelled" msgstr "" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "" @@ -1721,7 +1853,7 @@ msgstr "" #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "Allow Roles" -msgstr "" +msgstr "Consenti Ruoli" #. Label of the allow_self_approval (Check) field in DocType 'Workflow #. Transition' @@ -1828,7 +1960,7 @@ msgstr "" #. Form' #: frappe/website/doctype/web_form/web_form.json msgid "Allow saving if mandatory fields are not filled" -msgstr "" +msgstr "Consenti il salvataggio anche se i campi obbligatori non sono compilati" #: frappe/desk/page/setup_wizard/setup_wizard.js:424 msgid "Allow sending usage data for improving applications" @@ -1930,7 +2062,7 @@ msgstr "" msgid "Allows skipping authorization if a user has active tokens." msgstr "" -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "" @@ -1938,11 +2070,11 @@ msgstr "" msgid "Already in the following Users ToDo list:{0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "" @@ -1951,6 +2083,12 @@ msgstr "" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2002,10 +2140,8 @@ msgstr "" msgid "Amended Documents" msgstr "" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "" @@ -2029,6 +2165,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2056,13 +2197,13 @@ msgstr "" #. Settings' #: frappe/core/doctype/navbar_settings/navbar_settings.json msgid "Announcement Widget" -msgstr "" +msgstr "Widget di Annuncio" #. Label of the announcements_section (Section Break) field in DocType 'Navbar #. Settings' #: frappe/core/doctype/navbar_settings/navbar_settings.json msgid "Announcements" -msgstr "" +msgstr "Annunci" #. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json @@ -2108,7 +2249,7 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json msgid "App" -msgstr "" +msgstr "Applicazione" #. Label of the app_id (Data) field in DocType 'Google Settings' #: frappe/integrations/doctype/google_settings/google_settings.json @@ -2119,17 +2260,19 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/navbar.html:8 #: frappe/website/doctype/website_settings/website_settings.json msgid "App Logo" -msgstr "" +msgstr "Logo dell'App" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" -msgstr "" +msgstr "Nome dell'App" #. Label of the app_name (Data) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -2182,7 +2325,7 @@ 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 "" +msgstr "Logo dell'Applicazione" #. Label of the app_name (Data) field in DocType 'Installed Application' #. Label of the app_name (Data) field in DocType 'System Settings' @@ -2196,6 +2339,10 @@ msgstr "" msgid "Application Version" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2205,14 +2352,14 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" #: frappe/public/js/frappe/ui/filters/filter_list.js:318 msgid "Apply Filters" -msgstr "" +msgstr "Applica Filtri" #. Label of the apply_strict_user_permissions (Check) field in DocType 'System #. Settings' @@ -2229,7 +2376,7 @@ msgstr "" #. Permission' #: frappe/core/doctype/user_permission/user_permission.json msgid "Apply To All Document Types" -msgstr "" +msgstr "Applica a Tutti i Tipi di Documento" #. Label of the apply_user_permission_on (Link) field in DocType 'User Type' #: frappe/core/doctype/user_type/user_type.json @@ -2253,7 +2400,7 @@ msgstr "" msgid "Apply to all Documents Types" msgstr "" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "" @@ -2266,12 +2413,12 @@ msgstr "" #: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18 #: frappe/website/js/website.js:619 frappe/www/me.html:80 msgid "Apps" -msgstr "" +msgstr "Applicazioni" #: frappe/public/js/frappe/utils/number_systems.js:41 msgctxt "Number system" msgid "Ar" -msgstr "" +msgstr "Ar" #: frappe/public/js/frappe/views/kanban/kanban_column.html:14 msgid "Archive" @@ -2286,7 +2433,11 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2314,11 +2465,15 @@ msgctxt "Confirmation dialog message" msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:185 -msgid "Are you sure you want to discard the changes?" +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:968 +#: frappe/public/js/frappe/web_form/web_form.js:191 +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:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2326,7 +2481,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2367,7 +2522,7 @@ msgstr "" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Arial" -msgstr "" +msgstr "Arial" #: frappe/core/page/permission_manager/permission_manager_help.html:11 msgid "As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User." @@ -2381,6 +2536,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2390,14 +2551,14 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" #: frappe/public/js/frappe/form/sidebar/assign_to.js:193 msgid "Assign To User Group" -msgstr "" +msgstr "Assegna al Gruppo Utente" #. Label of the assign_to_users_section (Section Break) field in DocType #. 'Assignment Rule' @@ -2415,7 +2576,7 @@ msgstr "" #: frappe/public/js/frappe/form/sidebar/assign_to.js:174 msgid "Assign to me" -msgstr "" +msgstr "Assegna a me" #: frappe/automation/doctype/assignment_rule/assignment_rule.js:53 msgid "Assign to the one who has the least assignments" @@ -2453,6 +2614,11 @@ msgstr "" msgid "Assigned To/Owner" msgstr "" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "" @@ -2522,7 +2688,13 @@ msgstr "" msgid "Assignments" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "Asincrono" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -2545,7 +2717,7 @@ msgstr "" #: frappe/public/js/frappe/form/controls/attach.js:5 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Attach" -msgstr "" +msgstr "Allega" #: frappe/public/js/frappe/views/communication.js:155 msgid "Attach Document Print" @@ -2576,7 +2748,7 @@ msgstr "" #: frappe/public/js/frappe/file_uploader/WebLink.vue:10 msgid "Attach a web link" -msgstr "" +msgstr "Allega un collegamento web" #: frappe/website/doctype/website_slideshow/website_slideshow.js:8 msgid "Attach files / urls and add in table." @@ -2602,7 +2774,7 @@ msgstr "" msgid "Attached To Name" msgstr "" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "" @@ -2618,7 +2790,7 @@ msgstr "" msgid "Attachment Limit (MB)" msgstr "" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "" @@ -2636,15 +2808,15 @@ 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:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "" @@ -2667,6 +2839,10 @@ msgstr "" msgid "Auth URL Data" msgstr "" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "" + #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authenticate as Service Principal" @@ -2681,11 +2857,11 @@ msgstr "" #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Authentication" -msgstr "" +msgstr "Autenticazione" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " -msgstr "" +msgid "Authentication Apps you can use are:" +msgstr "Le app di autenticazione che puoi utilizzare sono:" #: frappe/email/doctype/email_account/email_account.py:339 msgid "Authentication failed while receiving emails from Email Account: {0}." @@ -2769,7 +2945,7 @@ msgstr "" #. Provider Settings' #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json msgid "Auto" -msgstr "" +msgstr "Auto" #. Label of a Link in the Tools Workspace #. Name of a DocType @@ -2798,11 +2974,11 @@ msgstr "" msgid "Auto Repeat Day" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "" @@ -2810,11 +2986,16 @@ msgstr "" msgid "Auto Repeat Schedule" msgstr "" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "" @@ -2858,7 +3039,7 @@ msgstr "" msgid "Auto follow documents that you create" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "" @@ -2885,7 +3066,7 @@ msgstr "" #. 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Automated Message" -msgstr "" +msgstr "Messaggio Automatico" #. Option for the 'Desk Theme' (Select) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -2906,25 +3087,20 @@ msgstr "" msgid "Automatically Assign Documents to Users" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "" #. Label of the auto_account_deletion (Int) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Automatically delete account within (hours)" -msgstr "" +msgstr "Elimina automaticamente l'account entro (ore)" #. Label of a Card Break in the Tools Workspace #: frappe/automation/workspace/tools/tools.json msgid "Automation" msgstr "" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -2976,62 +3152,62 @@ msgstr "" #: frappe/public/js/frappe/utils/number_systems.js:9 msgctxt "Number system" msgid "B" -msgstr "" +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 "" +msgstr "B0" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "B1" -msgstr "" +msgstr "B1" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "B10" -msgstr "" +msgstr "B10" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "B2" -msgstr "" +msgstr "B2" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "B3" -msgstr "" +msgstr "B3" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "B4" -msgstr "" +msgstr "B4" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "B5" -msgstr "" +msgstr "B5" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "B6" -msgstr "" +msgstr "B6" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "B7" -msgstr "" +msgstr "B7" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "B8" -msgstr "" +msgstr "B8" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "B9" -msgstr "" +msgstr "B9" #. Label of the bcc (Code) field in DocType 'Communication' #. Label of the bcc (Code) field in DocType 'Notification Recipient' @@ -3056,7 +3232,7 @@ msgstr "" #: frappe/www/404.html:26 msgid "Back to Home" -msgstr "" +msgstr "Torna alla Home" #: frappe/www/login.html:201 frappe/www/login.html:232 msgid "Back to Login" @@ -3070,7 +3246,7 @@ msgstr "" #: frappe/website/doctype/social_link_settings/social_link_settings.json #: frappe/website/doctype/website_theme/website_theme.json msgid "Background Color" -msgstr "" +msgstr "Colore di Sfondo" #. Label of the background_image (Attach Image) field in DocType 'Web Page #. Block' @@ -3085,13 +3261,13 @@ msgstr "" #: frappe/desk/doctype/system_health_report/system_health_report.json #: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 msgid "Background Jobs" -msgstr "" +msgstr "Processi in Background" #. Label of the background_jobs_check (Data) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Background Jobs Check" -msgstr "" +msgstr "Controllo dei Processi in Background" #. Label of the background_jobs_queue (Autocomplete) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json @@ -3109,7 +3285,7 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Background Workers" -msgstr "" +msgstr "Processi in Background" #: frappe/desk/page/backups/backups.js:28 msgid "Backup Encryption Key" @@ -3149,12 +3325,12 @@ msgstr "" #. Label of the banner (Section Break) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Banner" -msgstr "" +msgstr "Banner" #. Label of the banner_html (Code) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Banner HTML" -msgstr "" +msgstr "Banner HTML" #. Label of the banner_image (Attach Image) field in DocType 'User' #. Label of the banner_image (Attach Image) field in DocType 'Web Form' @@ -3166,12 +3342,12 @@ msgstr "" #. Description of the 'Banner HTML' (Code) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Banner is above the Top Menu Bar." -msgstr "" +msgstr "Il Banner si trova sopra la Barra del Menu in Alto." #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Bar" -msgstr "" +msgstr "Bar" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -3196,8 +3372,8 @@ msgstr "" #. Label of the based_on (Link) field in DocType 'Language' #: frappe/core/doctype/language/language.json -#: frappe/printing/page/print/print.js:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "" @@ -3288,7 +3464,7 @@ msgstr "" #. Label of the beta (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Beta" -msgstr "" +msgstr "Beta" #: frappe/utils/password_strength.py:73 msgid "Better add a few more letters or another word" @@ -3314,17 +3490,15 @@ msgstr "" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" -msgstr "" +msgstr "Biografia" #. Label of the birth_date (Date) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Birth Date" -msgstr "" +msgstr "Data di Nascita" #: frappe/public/js/frappe/data_import/data_exporter.js:41 msgid "Blank Template" @@ -3347,64 +3521,6 @@ msgstr "" msgid "Blocked" msgstr "" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3424,7 +3540,7 @@ msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json msgid "Bot" -msgstr "" +msgstr "Bot" #: frappe/printing/page/print_format_builder/print_format_builder.js:126 msgid "Both DocType and Name required" @@ -3471,17 +3587,17 @@ msgstr "" #. Label of the brand (Section Break) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Brand" -msgstr "" +msgstr "Identità" #. Label of the brand_html (Code) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Brand HTML" -msgstr "" +msgstr "HTML Brand" #. 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 "Immagine del Brand" #. Label of the brand_logo (Attach Image) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -3492,7 +3608,8 @@ msgstr "" #: frappe/website/doctype/website_settings/website_settings.json msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n" "has a transparent background and use the <img /> tag. Keep size as 200px x 30px" -msgstr "" +msgstr "Il brand è ciò che appare in alto a sinistra della barra degli strumenti. Se si tratta di un'immagine, assicurati che\n" +"abbia uno sfondo trasparente e usa il tag <img />. Mantieni le dimensioni a 200px x 30px." #. Label of the breadcrumbs (Code) field in DocType 'Web Form' #. Label of the breadcrumbs (Code) field in DocType 'Web Page' @@ -3501,13 +3618,6 @@ msgstr "" msgid "Breadcrumbs" msgstr "" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3537,7 +3647,7 @@ msgstr "" #. Name of a Workspace #: frappe/core/workspace/build/build.json msgid "Build" -msgstr "" +msgstr "Crea" #. Description of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json @@ -3559,21 +3669,21 @@ msgstr "" #: frappe/core/doctype/user_permission/user_permission_list.js:142 msgid "Bulk Delete" -msgstr "" +msgstr "Eliminazione in Blocco" #: frappe/public/js/frappe/list/bulk_operations.js:321 msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" msgstr "" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "" @@ -3588,7 +3698,7 @@ msgstr "" msgid "Bulk Update" msgstr "" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "" @@ -3600,7 +3710,7 @@ msgstr "" msgid "Bulk operations only support up to 500 documents." msgstr "" -#: frappe/model/workflow.py:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "" @@ -3616,17 +3726,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 "" +msgstr "Sfumature dei Pulsanti" #. 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 "Angoli dei Pulsanti Arrotondati" #. Label of the button_shadows (Check) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Button Shadows" -msgstr "" +msgstr "Ombre dei Pulsanti" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' @@ -3675,7 +3785,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 "" +msgstr "C5E" #: frappe/templates/print_formats/standard_macros.html:220 msgid "CANCELLED" @@ -3686,12 +3796,12 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/notification_recipient/notification_recipient.json msgid "CC" -msgstr "" +msgstr "CC" #: frappe/public/js/frappe/views/communication.js:77 msgctxt "Email Recipients" msgid "CC" -msgstr "" +msgstr "CC" #. Label of the cmd (Data) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json @@ -3710,7 +3820,7 @@ msgstr "" #: frappe/printing/doctype/print_style/print_style.json #: frappe/website/doctype/web_page/web_page.json msgid "CSS" -msgstr "" +msgstr "CSS" #. Label of the css_class (Small Text) field in DocType 'Web Page Block' #: frappe/website/doctype/web_page_block/web_page_block.json @@ -3728,27 +3838,17 @@ msgstr "" #: frappe/core/doctype/data_export/data_export.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "CSV" -msgstr "" - -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "" +msgstr "CSV" #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Cache" -msgstr "" +msgstr "Cache" #: frappe/sessions.py:35 msgid "Cache Cleared" -msgstr "" +msgstr "Cache Svuotata" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:181 msgid "Calculate" @@ -3761,7 +3861,7 @@ msgstr "" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Calendar" -msgstr "" +msgstr "Calendario" #. Label of the calendar_name (Data) field in DocType 'Google Calendar' #: frappe/integrations/doctype/google_calendar/google_calendar.json @@ -3783,17 +3883,12 @@ 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 "Invito all'Azione" #. Label of the call_to_action_url (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Call To Action URL" -msgstr "" - -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "" +msgstr "URL Di Invito all'Azione" #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' @@ -3809,10 +3904,10 @@ msgstr "" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:150 #: frappe/public/js/frappe/ui/capture.js:334 msgid "Camera" -msgstr "" +msgstr "Fotocamera" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3827,28 +3922,28 @@ msgstr "" #: frappe/public/js/frappe/form/templates/set_sharing.html:4 #: frappe/public/js/frappe/form/templates/set_sharing.html:50 msgid "Can Read" -msgstr "" +msgstr "Lettura" #: frappe/public/js/frappe/form/templates/set_sharing.html:7 #: frappe/public/js/frappe/form/templates/set_sharing.html:53 msgid "Can Share" -msgstr "" +msgstr "Condivisione" #: frappe/public/js/frappe/form/templates/set_sharing.html:6 #: frappe/public/js/frappe/form/templates/set_sharing.html:52 msgid "Can Submit" -msgstr "" +msgstr "Conferma" #: frappe/public/js/frappe/form/templates/set_sharing.html:5 #: frappe/public/js/frappe/form/templates/set_sharing.html:51 msgid "Can Write" -msgstr "" +msgstr "Scrittura" #: frappe/custom/doctype/custom_field/custom_field.py:410 msgid "Can not rename as column {0} is already present on DocType." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "" @@ -3872,22 +3967,23 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" -msgstr "" +msgstr "Annulla" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" -msgstr "" +msgstr "Annulla" #: frappe/public/js/frappe/ui/messages.js:68 msgctxt "Secondary button in warning dialog" msgid "Cancel" -msgstr "" +msgstr "Annulla" #: frappe/public/js/frappe/form/form.js:979 msgid "Cancel All" @@ -3897,16 +3993,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -3944,11 +4042,11 @@ msgstr "" msgid "Cannot Remove" msgstr "" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3956,7 +4054,7 @@ msgstr "" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "" @@ -3964,11 +4062,11 @@ msgstr "" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1013 +#: frappe/model/document.py:1017 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -3976,11 +4074,11 @@ msgstr "" msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "" @@ -3992,11 +4090,11 @@ msgstr "" msgid "Cannot create private workspace of other users" msgstr "" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4031,7 +4129,7 @@ msgstr "" msgid "Cannot delete {0}" msgstr "" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" msgstr "" @@ -4039,7 +4137,7 @@ msgstr "" msgid "Cannot edit Standard Dashboards" msgstr "" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "" @@ -4051,16 +4149,16 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" -#: frappe/model/document.py:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:378 msgid "Cannot edit filters for standard charts" -msgstr "" +msgstr "Impossibile modificare i filtri per i grafici standard" -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "" @@ -4068,27 +4166,27 @@ msgstr "" msgid "Cannot edit standard fields" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:884 msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1132 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "" @@ -4100,11 +4198,11 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "" @@ -4112,7 +4210,7 @@ msgstr "" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "" @@ -4129,11 +4227,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4147,12 +4245,12 @@ msgstr "" #: frappe/public/js/frappe/ui/capture.js:294 msgid "Capture" -msgstr "" +msgstr "Cattura" #. Label of the card (Link) field in DocType 'Number Card Link' #: frappe/desk/doctype/number_card_link/number_card_link.json msgid "Card" -msgstr "" +msgstr "Scheda" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #: frappe/desk/doctype/workspace_link/workspace_link.json @@ -4165,12 +4263,12 @@ msgstr "" #: frappe/public/js/frappe/widgets/widget_dialog.js:262 msgid "Card Links" -msgstr "" +msgstr "Collegamenti Scheda" #. Label of the cards (Table) field in DocType 'Dashboard' #: frappe/desk/doctype/dashboard/dashboard.json msgid "Cards" -msgstr "" +msgstr "Schede" #. Label of the category (Data) field in DocType 'Desktop Icon' #. Label of the category (Link) field in DocType 'Help Article' @@ -4201,15 +4299,6 @@ msgstr "" msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4218,7 +4307,7 @@ msgstr "" #: frappe/tests/test_translate.py:112 msgctxt "Coins" msgid "Change" -msgstr "" +msgstr "Cambia" #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:38 msgid "Change Image" @@ -4247,8 +4336,9 @@ msgstr "" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
    \n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " -msgstr "" +"Warning: Incorrectly updating counters can prevent documents from getting created." +msgstr "Modifica il numero di sequenza iniziale/attuale di una serie esistente.
    \n\n" +"Attenzione: l'aggiornamento errato dei contatori può impedire la creazione dei documenti." #. Label of the changed_at (Datetime) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -4300,7 +4390,7 @@ msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:289 #: frappe/public/js/frappe/widgets/widget_dialog.js:137 msgid "Chart Name" -msgstr "" +msgstr "Nome del Grafico" #. Label of the chart_options (Code) field in DocType 'Dashboard' #. Label of the chart_options_section (Section Break) field in DocType @@ -4308,7 +4398,7 @@ msgstr "" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Chart Options" -msgstr "" +msgstr "Opzioni grafico" #. Label of the source (Link) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -4317,16 +4407,16 @@ msgstr "" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" -msgstr "" +msgstr "Tipo di Grafico" #. Label of the charts (Table) field in DocType 'Dashboard' #. Label of the charts (Table) field in DocType 'Workspace' #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/workspace/workspace.json msgid "Charts" -msgstr "" +msgstr "Grafici" #. Option for the 'Type' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json @@ -4350,7 +4440,7 @@ msgstr "" msgid "Check" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "" @@ -4358,7 +4448,7 @@ msgstr "" msgid "Check columns to select, drag to set order." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "" @@ -4389,7 +4479,7 @@ msgstr "" #. DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Checking this will hide custom doctypes and reports cards in Links section" -msgstr "" +msgstr "Selezionando questa opzione verranno nascosti i doctype personalizzati e le schede dei report nella sezione Collegamenti" #: 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." @@ -4399,11 +4489,6 @@ msgstr "" msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "" -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "" @@ -4413,17 +4498,17 @@ msgstr "" msgid "Child Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4433,7 +4518,7 @@ msgstr "" #: frappe/public/js/frappe/views/workspace/workspace.js:571 msgid "Choose a block or continue typing" -msgstr "" +msgstr "Scegli un blocco o scrivi" #: frappe/public/js/form_builder/components/controls/DataControl.vue:18 #: frappe/public/js/frappe/form/controls/color.js:5 @@ -4443,7 +4528,7 @@ msgstr "" #: frappe/public/js/form_builder/components/controls/DataControl.vue:21 #: frappe/public/js/frappe/form/controls/icon.js:5 msgid "Choose an icon" -msgstr "" +msgstr "Scegli un icona" #. Description of the 'Two Factor Authentication method' (Select) field in #. DocType 'System Settings' @@ -4452,6 +4537,7 @@ msgid "Choose authentication method to be used by all users" 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 msgid "City" msgstr "" @@ -4466,7 +4552,7 @@ msgstr "" msgid "Clear" msgstr "" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "" @@ -4478,14 +4564,14 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" #: frappe/public/js/frappe/ui/keyboard.js:287 msgid "Clear Cache and Reload" -msgstr "" +msgstr "Cancella Cache e Ricarica" #: frappe/core/doctype/error_log/error_log_list.js:12 msgid "Clear Error Logs" @@ -4493,7 +4579,7 @@ msgstr "" #: frappe/public/js/frappe/ui/filters/filter_list.js:299 msgid "Clear Filters" -msgstr "" +msgstr "Cancella Filtri" #. Label of the days (Int) field in DocType 'Logs To Clear' #: frappe/core/doctype/logs_to_clear/logs_to_clear.json @@ -4504,7 +4590,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "" @@ -4516,11 +4602,15 @@ msgstr "" msgid "Click On Customize to add your first widget" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:147 -msgid "Click here" +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/website/doctype/web_form/templates/web_form.html:154 +msgid "Click here" +msgstr "Clicca qui" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "" @@ -4551,26 +4641,26 @@ msgid "Click on {0} to generate Refresh Token." msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" -msgstr "" +msgstr "Fai clic per ordinare per {0}" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json @@ -4605,7 +4695,7 @@ msgstr "" #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Client ID" -msgstr "" +msgstr "Client ID" #. Label of the client_id (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json @@ -4632,7 +4722,7 @@ msgstr "" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/website/doctype/web_page/web_page.js:103 msgid "Client Script" -msgstr "" +msgstr "Script Client" #. Label of the client_secret (Password) field in DocType 'Connected App' #. Label of the client_secret (Password) field in DocType 'Google Settings' @@ -4643,7 +4733,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 "Client Secret" #. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth #. Client' @@ -4670,7 +4760,7 @@ msgstr "" #. Label of the client_script (Code) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Client script" -msgstr "" +msgstr "Script del Client" #: frappe/core/doctype/communication/communication.js:39 #: frappe/desk/doctype/todo/todo.js:23 @@ -4678,7 +4768,7 @@ msgstr "" #: frappe/public/js/frappe/ui/messages.js:251 #: frappe/website/js/bootstrap-4.js:24 msgid "Close" -msgstr "" +msgstr "Vicino" #. Label of the close_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json @@ -4697,7 +4787,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json msgid "Closed" -msgstr "" +msgstr "Chiuso" #: frappe/templates/discussions/comment_box.html:25 #: frappe/templates/discussions/reply_section.html:53 @@ -4744,9 +4834,9 @@ msgstr "" #: frappe/public/js/frappe/form/controls/code.js:184 msgctxt "Shrink code field." msgid "Collapse" -msgstr "" +msgstr "Riduci" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4801,14 +4891,14 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json #: frappe/website/doctype/social_link_settings/social_link_settings.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Color" -msgstr "" +msgstr "Colore" #. Label of the column (Data) field in DocType 'Recorder Suggested Index' #: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json @@ -4857,11 +4947,11 @@ msgstr "" msgid "Column Name cannot be empty" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4888,7 +4978,7 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "" @@ -4899,7 +4989,7 @@ msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Comm10E" -msgstr "" +msgstr "Comm10E" #. Name of a DocType #. Option for the 'Comment Type' (Select) field in DocType 'Comment' @@ -4930,16 +5020,6 @@ msgstr "" msgid "Comment can only be edited by the owner" msgstr "" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "" @@ -4947,7 +5027,7 @@ msgstr "" #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "" @@ -4956,7 +5036,7 @@ msgstr "" msgid "Comments and Communications will be associated with this linked document" msgstr "" -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "" @@ -4989,7 +5069,7 @@ msgstr "" #: frappe/email/doctype/email_queue/email_queue.json #: frappe/tests/test_translate.py:35 frappe/tests/test_translate.py:119 msgid "Communication" -msgstr "" +msgstr "Comunicazione" #. Name of a DocType #: frappe/core/doctype/communication_link/communication_link.json @@ -4999,12 +5079,12 @@ msgstr "" #. Label of a Link in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Communication Logs" -msgstr "" +msgstr "Log Comunicazione" #. Label of the communication_type (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Communication Type" -msgstr "" +msgstr "Tipo di Comunicazione" #: frappe/integrations/frappe_providers/frappecloud_billing.py:32 msgid "Communication secret not set" @@ -5025,15 +5105,15 @@ msgstr "" #. Label of the company_name (Data) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Company Name" -msgstr "" +msgstr "Nome Azienda" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "" @@ -5049,7 +5129,7 @@ msgstr "" #: frappe/public/js/frappe/form/sidebar/assign_to.js:203 msgid "Complete By" -msgstr "" +msgstr "Completato Da" #: frappe/core/doctype/user/user.py:479 #: frappe/templates/emails/new_user.html:10 @@ -5113,8 +5193,8 @@ msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5128,6 +5208,11 @@ msgstr "" msgid "Condition JSON" msgstr "" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5153,11 +5238,11 @@ msgstr "" msgid "Configuration" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" -msgstr "" +msgstr "Configura Grafico" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5182,15 +5267,15 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" -msgstr "" +msgstr "Conferma" #: frappe/public/js/frappe/ui/messages.js:31 msgctxt "Title of confirmation dialog" msgid "Confirm" -msgstr "" +msgstr "Conferma" #: frappe/integrations/oauth2.py:138 msgid "Confirm Access" @@ -5201,13 +5286,13 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "" #: frappe/www/update-password.html:55 msgid "Confirm Password" -msgstr "" +msgstr "Ripeti Password" #: frappe/templates/emails/data_deletion_approval.html:6 #: frappe/templates/emails/delete_data_confirmation.html:7 @@ -5228,7 +5313,7 @@ msgstr "" msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "" @@ -5246,8 +5331,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "" @@ -5298,6 +5383,10 @@ msgstr "" msgid "Contact" msgstr "" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
    {0}" +msgstr "" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5355,15 +5444,13 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5371,24 +5458,12 @@ msgstr "" msgid "Content" msgstr "" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "" @@ -5446,7 +5521,7 @@ msgstr "" #: frappe/public/js/frappe/utils/utils.js:1036 msgid "Copied to clipboard." -msgstr "" +msgstr "Copiato negli appunti." #: frappe/public/js/frappe/form/templates/timeline_message_box.html:93 msgid "Copy Link" @@ -5456,20 +5531,24 @@ msgstr "" msgid "Copy embed code" msgstr "" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "" #: frappe/public/js/frappe/form/toolbar.js:507 msgid "Copy to Clipboard" +msgstr "Copia negli Appunti" + +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" msgstr "" #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" -msgstr "" +msgstr "Copyright" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5477,7 +5556,7 @@ msgstr "" msgid "Core Modules {0} cannot be searched in Global Search." msgstr "" -#: frappe/printing/page/print/print.js:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "" @@ -5485,7 +5564,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "" -#: frappe/model/document.py:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "" @@ -5493,17 +5572,17 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " -msgstr "" +msgid "Could not start up:" +msgstr "Impossibile avviare:" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" -msgstr "" +msgstr "Impossibile salvare, controlla i dati inseriti" #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' @@ -5516,7 +5595,7 @@ msgstr "" #: frappe/public/js/frappe/ui/group_by/group_by.js:328 #: frappe/workflow/doctype/workflow/workflow.js:162 msgid "Count" -msgstr "" +msgstr "Q.tà" #: frappe/public/js/frappe/widgets/widget_dialog.js:540 msgid "Count Customizations" @@ -5546,13 +5625,14 @@ msgstr "" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "" @@ -5570,7 +5650,7 @@ msgstr "" #: frappe/public/js/frappe/utils/number_systems.js:45 msgctxt "Number system" msgid "Cr" -msgstr "" +msgstr "Cr" #. Label of the create (Check) field in DocType 'Custom DocPerm' #. Label of the create (Check) field in DocType 'DocPerm' @@ -5584,29 +5664,29 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" -msgstr "" +msgstr "Creare" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" -msgstr "" +msgstr "Crea e Continua" #: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:49 msgid "Create Address" -msgstr "" +msgstr "Crea Indirizzo" #: frappe/public/js/frappe/views/reports/query_report.js:187 #: frappe/public/js/frappe/views/reports/query_report.js:232 msgid "Create Card" -msgstr "" +msgstr "Crea Scheda" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" -msgstr "" +msgstr "Crea Grafico" #: frappe/public/js/form_builder/components/controls/TableControl.vue:62 msgid "Create Child Doctype" @@ -5620,64 +5700,64 @@ msgstr "" #. Option for the 'Action' (Select) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Create Entry" -msgstr "" +msgstr "Crea Voce" #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:59 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:195 msgid "Create Letter Head" -msgstr "" +msgstr "Crea Intestazione" #. 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 "Crea Log" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:41 #: frappe/public/js/frappe/views/treeview.js:378 #: frappe/workflow/page/workflow_builder/workflow_builder.js:41 msgid "Create New" -msgstr "" +msgstr "Crea Nuovo" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" -msgstr "" +msgstr "Crea Nuovo" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" #: frappe/public/js/frappe/list/list_view_select.js:204 msgid "Create New Kanban Board" -msgstr "" +msgstr "Crea Nuova Bacheca Kanban" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" -msgstr "" +msgstr "Crea E-mail Utente" #: frappe/printing/page/print_format_builder/print_format_builder_start.html:16 msgid "Create a New Format" -msgstr "" +msgstr "Crea un Nuovo Formato" #: frappe/public/js/frappe/form/reminders.js:9 msgid "Create a Reminder" -msgstr "" +msgstr "Crea un Promemoria" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." -msgstr "" +msgstr "Crea un nuovo ..." #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:156 msgid "Create a new record" -msgstr "" +msgstr "Crea un nuovo record" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" -msgstr "" +msgstr "Crea un nuovo {0}" #: frappe/www/login.html:162 msgid "Create a {0} Account" @@ -5689,11 +5769,11 @@ msgstr "" #: frappe/workflow/page/workflow_builder/workflow_builder.js:34 msgid "Create or Edit Workflow" -msgstr "" +msgstr "Crea o Modifica Flusso di Lavoro" -#: frappe/public/js/frappe/list/list_view.js:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" -msgstr "" +msgstr "Crea il tuo primo {0}" #: frappe/workflow/doctype/workflow/workflow.js:16 msgid "Create your workflow visually using the Workflow Builder." @@ -5701,7 +5781,7 @@ msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "" @@ -5715,9 +5795,9 @@ msgstr "" #: frappe/public/js/frappe/model/meta.js:206 #: frappe/public/js/frappe/model/model.js:123 msgid "Created By" -msgstr "" +msgstr "Creato Da" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "" @@ -5727,9 +5807,9 @@ msgstr "" #: frappe/public/js/frappe/model/model.js:125 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:479 msgid "Created On" -msgstr "" +msgstr "Creato Il" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "" @@ -5743,7 +5823,7 @@ msgstr "" #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/server_script/server_script.json msgid "Cron" -msgstr "" +msgstr "Cron" #. Label of the cron_format (Data) field in DocType 'Scheduled Job Type' #. Label of the cron_format (Data) field in DocType 'Server Script' @@ -5758,7 +5838,7 @@ msgstr "" #: frappe/public/js/frappe/file_uploader/ImageCropper.vue:34 msgid "Crop" -msgstr "" +msgstr "Raccolto" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Ctrl + Down" @@ -5814,7 +5894,7 @@ msgstr "" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Current" -msgstr "" +msgstr "Attuale" #. Label of the current_job_id (Link) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json @@ -5884,7 +5964,7 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/website/doctype/web_form/web_form.json msgid "Custom CSS" -msgstr "" +msgstr "CSS Personalizzato" #. Label of the custom_configuration_section (Section Break) field in DocType #. 'Number Card' @@ -5895,7 +5975,7 @@ msgstr "" #. Label of the custom_delimiters (Check) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Custom Delimiters" -msgstr "" +msgstr "Separatori Personalizzati" #. Name of a DocType #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -5920,7 +6000,7 @@ msgstr "" #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/custom_field/custom_field.json msgid "Custom Field" -msgstr "" +msgstr "Campo Personalizzato" #: frappe/custom/doctype/custom_field/custom_field.py:220 msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account." @@ -5938,12 +6018,12 @@ msgstr "" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Custom Footer" -msgstr "" +msgstr "Piè di pagina Personalizzato" #. Label of the custom_format (Check) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Custom Format" -msgstr "" +msgstr "Formato Personalizzato" #. Label of the ldap_custom_group_search (Data) field in DocType 'LDAP #. Settings' @@ -5990,12 +6070,12 @@ msgstr "" #. Label of the custom_options (Code) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Custom Options" -msgstr "" +msgstr "Opzioni personalizzate" #. Label of the custom_overrides (Code) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom Overrides" -msgstr "" +msgstr "Sostituzioni Personalizzate" #. Option for the 'Report Type' (Select) field in DocType 'Report' #: frappe/core/doctype/report/report.json @@ -6014,7 +6094,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 "" +msgstr "SCSS Personalizzato" #. Label of the custom_sidebar_menu (Section Break) field in DocType 'Portal #. Settings' @@ -6025,7 +6105,7 @@ msgstr "" #. Label of a Link in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Custom Translation" -msgstr "" +msgstr "Traduzione Personalizzata" #: frappe/custom/doctype/custom_field/custom_field.py:423 msgid "Custom field renamed to {0} successfully." @@ -6038,7 +6118,7 @@ msgstr "" #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "" @@ -6066,17 +6146,17 @@ msgstr "" msgid "Customizations for {0} exported to:
    {1}" msgstr "" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" -msgstr "" +msgstr "Personalizza" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" -msgstr "" +msgstr "Personalizza" #: frappe/custom/doctype/customize_form/customize_form.js:89 msgid "Customize Child Table" @@ -6092,9 +6172,9 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" -msgstr "" +msgstr "Personalizza Modulo" #: frappe/custom/doctype/customize_form/customize_form.js:100 msgid "Customize Form - {0}" @@ -6119,26 +6199,26 @@ msgstr "" #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Cyan" -msgstr "" +msgstr "Ciano" #. Option for the 'Method' (Select) field in DocType 'Recorder' #. Option for the 'Request Method' (Select) field in DocType 'Webhook' #: frappe/core/doctype/recorder/recorder.json #: frappe/integrations/doctype/webhook/webhook.json msgid "DELETE" -msgstr "" +msgstr "ELIMINA" #. Option for the 'Default Sort Order' (Select) field in DocType 'DocType' #. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "DESC" -msgstr "" +msgstr "DESCRIZIONE" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "DLE" -msgstr "" +msgstr "DLE" #: frappe/templates/print_formats/standard_macros.html:215 msgid "DRAFT" @@ -6170,7 +6250,7 @@ msgstr "" msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "" -#: frappe/desk/doctype/event/event.py:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "" @@ -6194,12 +6274,12 @@ msgstr "" #. Option for the 'Desk Theme' (Select) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Dark" -msgstr "" +msgstr "Scuro" #. Label of the dark_color (Link) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Dark Color" -msgstr "" +msgstr "Colore Scuro" #: frappe/public/js/frappe/ui/theme_switcher.js:65 msgid "Dark Theme" @@ -6217,10 +6297,10 @@ msgstr "" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" -msgstr "" +msgstr "Dashboard" #. Label of a Link in the Build Workspace #. Name of a DocType @@ -6228,7 +6308,7 @@ msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8 msgid "Dashboard Chart" -msgstr "" +msgstr "Grafico Dashboard" #. Name of a DocType #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json @@ -6250,12 +6330,12 @@ msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/number_card/number_card.json msgid "Dashboard Manager" -msgstr "" +msgstr "Gestore Dashboard" #. Label of the dashboard_name (Data) field in DocType 'Dashboard' #: frappe/desk/doctype/dashboard/dashboard.json msgid "Dashboard Name" -msgstr "" +msgstr "Nome Dashboard" #. Name of a DocType #: frappe/desk/doctype/dashboard_settings/dashboard_settings.json @@ -6264,7 +6344,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:204 msgid "Dashboard View" -msgstr "" +msgstr "Vista Dashboard" #. Label of the tab_break_2 (Tab Break) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json @@ -6276,7 +6356,6 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6289,7 +6368,6 @@ msgstr "" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6314,7 +6392,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 "Importazione Dati" #. Name of a DocType #: frappe/core/doctype/data_import_log/data_import_log.json @@ -6325,7 +6403,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "" @@ -6334,7 +6412,7 @@ msgstr "" #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Database" -msgstr "" +msgstr "Database" #. Label of the engine (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json @@ -6354,9 +6432,9 @@ msgstr "" #. Name of a report #: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json msgid "Database Storage Usage By Tables" -msgstr "" +msgstr "Spazio Database Usato Per Tabella" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6367,7 +6445,7 @@ msgstr "" #. Label of the database_version (Data) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Database Version" -msgstr "" +msgstr "Versione Database" #. Label of the communication_date (Datetime) field in DocType 'Activity Log' #. Label of the communication_date (Datetime) field in DocType 'Communication' @@ -6388,7 +6466,7 @@ msgstr "" #: frappe/public/js/frappe/views/interaction.js:80 #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Date" -msgstr "" +msgstr "Data" #. Label of the date_format (Select) field in DocType 'Language' #. Label of the date_format (Select) field in DocType 'System Settings' @@ -6451,7 +6529,7 @@ msgstr "" #: frappe/public/js/frappe/form/controls/duration.js:27 msgctxt "Duration" msgid "Days" -msgstr "" +msgstr "Giorni" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json @@ -6494,11 +6572,11 @@ msgstr "" msgid "Debug Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "" @@ -6660,17 +6738,17 @@ msgstr "" msgid "Default display currency" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 msgid "Default value for {0} must be in the list of options." msgstr "" #: frappe/core/doctype/session_default_settings/session_default_settings.py:38 msgid "Default {0}" -msgstr "" +msgstr "{0} Predefinito" #. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -6698,6 +6776,12 @@ msgstr "" msgid "Defines actions on states and the next step and allowed roles." msgstr "" +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6715,21 +6799,26 @@ 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/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" -msgstr "" +msgstr "Eliminare" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" -msgstr "" +msgstr "Eliminare" + +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "Elimina" #: frappe/www/me.html:65 msgid "Delete Account" @@ -6739,6 +6828,12 @@ msgstr "" 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 +msgid "Delete Background Exported Reports After (Hours)" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6748,7 +6843,7 @@ msgstr "" msgid "Delete Data" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6762,7 +6857,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6771,7 +6866,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "" @@ -6804,12 +6899,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6845,11 +6940,15 @@ msgstr "" msgid "Deleted Name" msgstr "" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Eliminato!" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "" @@ -6864,8 +6963,8 @@ msgstr "" #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " -msgstr "" +msgid "Deletion Steps" +msgstr "Passaggi di eliminazione" #: frappe/core/doctype/page/page.py:110 #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 @@ -6875,26 +6974,26 @@ msgstr "" #. Label of the delimiter_options (Data) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Delimiter Options" -msgstr "" +msgstr "Opzioni Separatore" #: frappe/utils/csvutils.py:76 msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "" #. Label of the delivery_status (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Delivery Status" -msgstr "" +msgstr "Stato Consegna" #. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json #: frappe/templates/includes/oauth_confirmation.html:17 msgid "Deny" -msgstr "" +msgstr "Non consentire" #. Label of the department (Data) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json @@ -6908,9 +7007,9 @@ msgstr "" msgid "Dependencies" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" -msgstr "" +msgstr "Dipendenze e Licenze" #. Label of the depends_on (Code) field in DocType 'Custom Field' #. Label of the depends_on (Code) field in DocType 'Customize Form Field' @@ -6943,7 +7042,6 @@ msgstr "" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -6964,7 +7062,6 @@ msgstr "" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -6972,12 +7069,7 @@ msgstr "" #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json #: frappe/www/attribution.html:24 msgid "Description" -msgstr "" - -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "" +msgstr "Descrizione" #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' @@ -6993,7 +7085,7 @@ msgstr "" #. Label of the desk_access (Check) field in DocType 'Role' #: frappe/core/doctype/role/role.json msgid "Desk Access" -msgstr "" +msgstr "Accesso Scrivania" #. Label of the desk_settings_section (Section Break) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -7062,7 +7154,7 @@ msgstr "" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "" @@ -7070,7 +7162,7 @@ msgstr "" #. Label of the use_csv_sniffer (Check) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Detect CSV type" -msgstr "" +msgstr "Rileva tipo CSV" #: frappe/core/page/permission_manager/permission_manager.js:494 msgid "Did not add" @@ -7123,11 +7215,6 @@ msgstr "" msgid "Disable Comment Count" msgstr "" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7145,11 +7232,6 @@ msgstr "" msgid "Disable Document Sharing" msgstr "" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "" @@ -7159,6 +7241,11 @@ msgstr "" msgid "Disable SMTP server authentication" msgstr "" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7204,7 +7291,6 @@ msgstr "" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7219,7 +7305,6 @@ msgstr "" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "" @@ -7230,27 +7315,27 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" -msgstr "" +msgstr "Annulla" #: frappe/website/doctype/web_form/templates/web_form.html:44 msgctxt "Button in web form" msgid "Discard" -msgstr "" +msgstr "Annulla" #: frappe/public/js/frappe/views/communication.js:30 msgctxt "Discard Email" msgid "Discard" -msgstr "" +msgstr "Annulla" #: frappe/public/js/frappe/form/form.js:848 msgid "Discard {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" -msgstr "" +msgstr "Annullare?" #: frappe/desk/form/save.py:75 msgid "Discarded" @@ -7271,7 +7356,7 @@ msgstr "" msgid "Discussion Topic" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7280,7 +7365,7 @@ msgstr "" #: frappe/public/js/frappe/widgets/onboarding_widget.js:572 msgctxt "Stop showing the onboarding widget." msgid "Dismiss" -msgstr "" +msgstr "Rimuovi" #. Label of the display (Section Break) field in DocType 'DocField' #. Label of the updates_tab (Tab Break) field in DocType 'System Settings' @@ -7289,7 +7374,7 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Display" -msgstr "" +msgstr "Display" #. Label of the depends_on (Code) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json @@ -7307,19 +7392,23 @@ msgstr "" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " -msgstr "" +msgid "Do Not Create New User" +msgstr "Non creare un nuovo utente" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7410,7 +7499,7 @@ msgstr "" msgid "DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1577 +#: frappe/core/doctype/doctype/doctype.py:1578 msgid "DocType {0} provided for the field {1} must have atleast one Link field" msgstr "" @@ -7457,11 +7546,11 @@ msgstr "" msgid "DocType View" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "" @@ -7470,7 +7559,7 @@ msgstr "" msgid "DocType is a Table / Form in the application." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "" @@ -7503,7 +7592,7 @@ msgstr "" msgid "DocType {} not found" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "" @@ -7517,7 +7606,7 @@ msgstr "" msgid "Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "" @@ -7579,38 +7668,36 @@ msgstr "" msgid "Document Links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/document_follow/document_follow.json #: frappe/public/js/frappe/form/form_tour.js:62 msgid "Document Name" -msgstr "" +msgstr "Nome Documento" #: frappe/client.py:406 msgid "Document Name must be a string" @@ -7672,7 +7759,7 @@ msgstr "" #: frappe/core/report/document_share_report/document_share_report.json #: frappe/core/workspace/users/users.json msgid "Document Share Report" -msgstr "" +msgstr "Report Condivisione Documento" #. Label of the states (Table) field in DocType 'DocType' #. Label of the document_states_section (Section Break) field in DocType @@ -7745,13 +7832,13 @@ msgstr "" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" -msgstr "" +msgstr "Tipo Documento" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 msgid "Document Type and Function are required to create a number card" msgstr "" @@ -7788,7 +7875,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "" @@ -7796,17 +7883,17 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" -msgstr "" +msgstr "Il documento è in bozza" #: frappe/public/js/frappe/form/workflow.js:45 msgid "Document is only editable by users with role" @@ -7946,65 +8033,65 @@ msgstr "" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" -msgstr "" +msgstr "Scaricamento" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" -msgstr "" +msgstr "Scaricamento" #. Label of a Link in the Tools Workspace #: frappe/automation/workspace/tools/tools.json #: frappe/desk/page/backups/backups.js:4 msgid "Download Backups" -msgstr "" +msgstr "Scarica i backup" #: frappe/templates/emails/download_data.html:6 msgid "Download Data" -msgstr "" +msgstr "Scarica Dati" #: frappe/desk/page/backups/backups.js:14 msgid "Download Files Backup" -msgstr "" +msgstr "Scarica file di backup" #: frappe/templates/emails/download_data.html:9 msgid "Download Link" -msgstr "" +msgstr "Scarica Link" #: frappe/public/js/frappe/list/bulk_operations.js:134 msgid "Download PDF" -msgstr "" +msgstr "Scarica il pdf" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" -msgstr "" +msgstr "Scarica Report" #. Label of the download_template (Button) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json msgid "Download Template" -msgstr "" +msgstr "Scarica Modello" #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:61 #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:69 #: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48 msgid "Download Your Data" -msgstr "" +msgstr "Scarica i tuoi Dati" #: frappe/core/doctype/prepared_report/prepared_report.js:49 msgid "Download as CSV" -msgstr "" +msgstr "Scarica come CSV" #: frappe/contacts/doctype/contact/contact.js:98 msgid "Download vCard" -msgstr "" +msgstr "Scarica vCard" #: frappe/contacts/doctype/contact/contact_list.js:4 msgid "Download vCards" -msgstr "" +msgstr "Scarica le vCard" #: frappe/desk/page/setup_wizard/install_fixtures.py:46 msgid "Dr" @@ -8020,7 +8107,7 @@ msgstr "" #: frappe/public/js/frappe/views/workspace/blocks/spacer.js:44 #: frappe/public/js/frappe/widgets/base_widget.js:33 msgid "Drag" -msgstr "" +msgstr "Sposta" #: frappe/public/js/form_builder/components/Tabs.vue:189 msgid "Drag & Drop a section here from another tab" @@ -8028,7 +8115,7 @@ msgstr "" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:14 msgid "Drag and drop files here or upload from" -msgstr "" +msgstr "Trascina e rilascia i file qui o caricali da" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:76 msgid "Drag columns to set order. Column width is set in percentage. The total width should not be more than 100. Columns marked in red will be removed." @@ -8042,20 +8129,20 @@ msgstr "" msgid "Drag to add state" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" -msgstr "" +msgstr "Rilascia i file qui" #. Label of the section_break_2 (Section Break) field in DocType 'Navbar #. Settings' #: frappe/core/doctype/navbar_settings/navbar_settings.json msgid "Dropdowns" -msgstr "" +msgstr "Menu a Discesa" #. Label of the date (Date) field in DocType 'ToDo' #: frappe/desk/doctype/todo/todo.json msgid "Due Date" -msgstr "" +msgstr "Data di Scadenza" #. Label of the due_date_based_on (Select) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json @@ -8065,7 +8152,7 @@ msgstr "" #: frappe/public/js/frappe/form/grid_row_form.js:42 #: frappe/public/js/frappe/form/toolbar.js:422 msgid "Duplicate" -msgstr "" +msgstr "Duplicato" #: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:53 msgid "Duplicate Entry" @@ -8075,13 +8162,13 @@ msgstr "" msgid "Duplicate Filter Name" msgstr "" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "" #: frappe/public/js/frappe/form/grid.js:66 msgid "Duplicate Row" -msgstr "" +msgstr "Duplica Riga" #: frappe/public/js/frappe/form/form.js:209 msgid "Duplicate current row" @@ -8156,12 +8243,12 @@ msgstr "" #. Label of the dynamic_route (Check) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Dynamic Route" -msgstr "" +msgstr "Percorso Dinamico" #. Label of the dynamic_template (Check) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Dynamic Template" -msgstr "" +msgstr "Modello Dinamico" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "ESC" @@ -8174,38 +8261,38 @@ msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 #: frappe/workflow/page/workflow_builder/workflow_builder.js:84 msgid "Edit" -msgstr "" +msgstr "Modifica" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" -msgstr "" +msgstr "Modifica" #: frappe/website/doctype/web_form/templates/web_form.html:23 msgctxt "Button in web form" msgid "Edit" -msgstr "" +msgstr "Modifica" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" -msgstr "" +msgstr "Modifica" #: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:66 msgid "Edit Address in Form" @@ -8225,33 +8312,33 @@ msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder.js:727 msgid "Edit Custom HTML" -msgstr "" +msgstr "Modifica HTML personalizzato" #: frappe/public/js/frappe/form/toolbar.js:619 msgid "Edit DocType" -msgstr "" +msgstr "Modifica DocType" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" -msgstr "" +msgstr "Modifica DocType" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:42 #: frappe/workflow/page/workflow_builder/workflow_builder.js:42 msgid "Edit Existing" -msgstr "" +msgstr "Modifica Esistente" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:55 msgid "Edit Filters" -msgstr "" +msgstr "Modifica Filtri" #: frappe/public/js/print_format_builder/PrintFormat.vue:29 msgid "Edit Footer" -msgstr "" +msgstr "Modifica Piè di Pagina" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" -msgstr "" +msgstr "Modifica formato" #: frappe/public/js/frappe/form/quick_entry.js:326 msgid "Edit Full Form" @@ -8297,7 +8384,7 @@ msgstr "" #: frappe/www/me.html:38 msgid "Edit Profile" -msgstr "" +msgstr "Modifica Profilo" #: frappe/printing/page/print_format_builder/print_format_builder.js:173 msgid "Edit Properties" @@ -8320,7 +8407,7 @@ msgstr "" #: frappe/website/doctype/web_page_block/web_page_block.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Edit Values" -msgstr "" +msgstr "Modifica Valori" #: frappe/desk/doctype/note/note.js:11 msgid "Edit mode" @@ -8334,16 +8421,16 @@ msgstr "" msgid "Edit to add content" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" -msgstr "" +msgstr "Modifica la tua risposta" #: frappe/workflow/doctype/workflow/workflow.js:18 msgid "Edit your workflow visually using the Workflow Builder." msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "" @@ -8351,14 +8438,14 @@ msgstr "" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Editing Row" -msgstr "" +msgstr "Modifica Riga" #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:14 #: frappe/public/js/workflow_builder/workflow_builder.bundle.js:20 @@ -8369,7 +8456,7 @@ msgstr "" #. Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Eg. smsgateway.com/api/send_sms.cgi" -msgstr "" +msgstr "Ad esempio smsgateway.com/api/send_sms.cgi" #: frappe/rate_limiter.py:152 msgid "Either key or IP flag is required." @@ -8390,11 +8477,14 @@ msgstr "" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8403,6 +8493,7 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8412,9 +8503,11 @@ msgstr "" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" -msgstr "" +msgstr "E-mail" #. Label of a Link in the Tools Workspace #. Label of the email_account (Link) field in DocType 'Communication' @@ -8443,7 +8536,7 @@ msgstr "" msgid "Email Account Name" msgstr "" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "" @@ -8531,9 +8624,10 @@ msgid "Email IDs" msgstr "" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" -msgstr "" +msgstr "Id Email" #. Label of the email_inbox (Section Break) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json @@ -8574,9 +8668,9 @@ msgstr "" msgid "Email Rule" msgstr "" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" msgstr "" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' @@ -8601,7 +8695,7 @@ msgstr "" #. Label of the email_status (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Email Status" -msgstr "" +msgstr "Stato dell'e-mail" #. Label of the email_sync_option (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -8642,11 +8736,11 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "" @@ -8685,7 +8779,7 @@ msgstr "" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8693,7 +8787,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -8712,7 +8806,7 @@ msgstr "" msgid "Enable Address Autocompletion" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "" @@ -8730,7 +8824,7 @@ 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 "Abilita Commenti" #. Label of the enable_dynamic_client_registration (Check) field in DocType #. 'OAuth Settings' @@ -8738,11 +8832,6 @@ msgstr "" msgid "Enable Dynamic Client Registration" msgstr "" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -8759,7 +8848,7 @@ msgstr "" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Enable Google indexing" -msgstr "" +msgstr "Abilita l'indicizzazione di Google" #. Label of the enable_incoming (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -8836,11 +8925,6 @@ msgstr "" msgid "Enable Social Login" msgstr "" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "" @@ -8848,7 +8932,7 @@ msgstr "" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "" @@ -8860,12 +8944,6 @@ msgstr "" msgid "Enable developer mode to create a standard Web Template" msgstr "" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "" - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -8876,7 +8954,7 @@ msgstr "" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Enable in-app website tracking" -msgstr "" +msgstr "Abilita il monitoraggio del sito web in-app" #. Label of the enabled (Check) field in DocType 'Language' #. Label of the enabled (Check) field in DocType 'User' @@ -8888,6 +8966,7 @@ msgstr "" #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -8900,8 +8979,9 @@ msgstr "" #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" -msgstr "" +msgstr "Abilitato" #: frappe/core/doctype/rq_job/rq_job_list.js:29 msgid "Enabled Scheduler" @@ -8925,14 +9005,10 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "" - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." msgstr "" #. Description of the 'Queue in Background (BETA)' (Check) field in DocType @@ -8949,11 +9025,11 @@ msgstr "" msgid "Encrypt Backups" msgstr "" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "" @@ -8965,7 +9041,7 @@ msgstr "" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -8981,6 +9057,10 @@ msgstr "" msgid "End Date cannot be before Start Date!" msgstr "" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9025,7 +9105,7 @@ msgstr "" msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "" @@ -9056,19 +9136,19 @@ msgstr "" #. Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)" -msgstr "" +msgstr "Inserisci qui i parametri statici della URL (ad esempio mittente=ERPNext, nome utente=ERPNext, password=1234 ecc.)" #. Description of the 'Message Parameter' (Data) field in DocType 'SMS #. Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Enter url parameter for message" -msgstr "" +msgstr "Inserisci il parametro URL per il messaggio" #. Description of the 'Receiver Parameter' (Data) field in DocType 'SMS #. Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Enter url parameter for receiver nos" -msgstr "" +msgstr "Inserisci il parametro URL per il numero del destinatario" #: frappe/public/js/frappe/ui/messages.js:341 msgid "Enter your password" @@ -9084,7 +9164,7 @@ msgstr "" #: frappe/public/js/frappe/ui/filters/filter.js:16 msgid "Equals" -msgstr "" +msgstr "Uguali" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Data Import' @@ -9095,10 +9175,17 @@ msgstr "" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9106,12 +9193,12 @@ msgstr "" #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/ui/messages.js:22 msgid "Error" -msgstr "" +msgstr "Errore" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" -msgstr "" +msgstr "Errore" #. Name of a DocType #: frappe/core/doctype/error_log/error_log.json @@ -9121,14 +9208,14 @@ msgstr "" #. Label of a Link in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Error Logs" -msgstr "" +msgstr "Log Errori" #. Label of the error_message (Text) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 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 "" @@ -9156,9 +9243,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "" @@ -9178,19 +9265,19 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "" @@ -9245,9 +9332,9 @@ msgstr "" #: frappe/public/js/frappe/ui/notifications/notifications.js:56 msgid "Events" -msgstr "" +msgstr "Eventi" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "" @@ -9255,13 +9342,13 @@ msgstr "" #: frappe/core/doctype/docshare/docshare.json #: frappe/public/js/frappe/form/templates/set_sharing.html:11 msgid "Everyone" -msgstr "" +msgstr "Tutti" #. Description of the 'Custom Options' (Code) field in DocType 'Dashboard #. Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"]" -msgstr "" +msgstr "Esempio: \"colori\": [\"#d1d8dd\", \"#ff5858\"]" #. Label of the exact_copies (Int) field in DocType 'Recorder Query' #: frappe/core/doctype/recorder_query/recorder_query.json @@ -9331,7 +9418,7 @@ msgstr "" msgid "Execute Console script" msgstr "" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "" @@ -9339,7 +9426,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "" @@ -9358,19 +9445,19 @@ msgstr "" #: frappe/public/js/frappe/views/treeview.js:137 #: frappe/public/js/frappe/widgets/base_widget.js:159 msgid "Expand" -msgstr "" +msgstr "Espandi" #: frappe/public/js/frappe/form/controls/code.js:185 msgctxt "Enlarge code field." msgid "Expand" -msgstr "" +msgstr "Espandi" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9398,7 +9485,9 @@ msgid "Expire Notification On" msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "" @@ -9426,16 +9515,16 @@ msgstr "" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" -msgstr "" +msgstr "Esportare" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" -msgstr "" +msgstr "Esportare" #: frappe/public/js/frappe/data_import/data_exporter.js:245 msgid "Export 1 record" @@ -9453,7 +9542,7 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/public/js/frappe/data_import/data_exporter.js:14 msgid "Export Data" -msgstr "" +msgstr "Esporta Dati" #: frappe/core/doctype/data_import/data_import.js:86 #: frappe/public/js/frappe/data_import/import_preview.js:199 @@ -9469,7 +9558,7 @@ msgstr "" msgid "Export Import Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "" @@ -9478,11 +9567,11 @@ msgstr "" msgid "Export Type" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "" @@ -9490,9 +9579,13 @@ msgstr "" msgid "Export as zip" msgstr "" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." -msgstr "" +msgstr "Esportazione non consentita. È necessario il ruolo {0} per esportare." #. Description of the 'Export without main header' (Check) field in DocType #. 'Data Export' @@ -9543,7 +9636,7 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/views/workspace/workspace.js:426 msgid "External Link" -msgstr "" +msgstr "Collegamento Esterno" #. Label of the section_break_18 (Section Break) field in DocType 'Connected #. App' @@ -9555,13 +9648,13 @@ msgstr "" #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Facebook" -msgstr "" +msgstr "Facebook" #. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Fail" -msgstr "" +msgstr "Errore" #. Option for the 'Status' (Select) field in DocType 'Activity Log' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' @@ -9572,7 +9665,7 @@ msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.json #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Failed" -msgstr "" +msgstr "Fallito" #. Label of the failed_emails (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -9588,14 +9681,14 @@ msgstr "" #. Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Failed Jobs" -msgstr "" +msgstr "Processi Falliti" #. Label of the failed_logins (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Failed Logins (Last 30 days)" -msgstr "" +msgstr "Accessi Falliti (Ultimi 30 giorni)" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "" @@ -9612,7 +9705,7 @@ msgstr "" msgid "Failed to complete setup" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "" @@ -9621,15 +9714,15 @@ msgstr "" msgid "Failed to connect to server" msgstr "" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "" @@ -9637,8 +9730,8 @@ msgstr "" msgid "Failed to enable scheduler: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "" @@ -9654,7 +9747,7 @@ msgstr "" msgid "Failed to generate preview of series" msgstr "" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "" @@ -9674,11 +9767,11 @@ msgstr "" msgid "Failed to optimize image: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "" @@ -9706,7 +9799,7 @@ msgstr "" #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Failing Scheduled Jobs (last 7 days)" -msgstr "" +msgstr "Lavori Pianificati Falliti (ultimi 7 giorni)" #: frappe/core/doctype/data_import/data_import.js:459 msgid "Failure" @@ -9726,13 +9819,7 @@ msgstr "" #. Label of the fax (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Fax" -msgstr "" - -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "" +msgstr "Fax" #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" @@ -9791,17 +9878,17 @@ msgstr "" #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "" @@ -9814,7 +9901,7 @@ msgstr "" msgid "Field Description" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9844,7 +9931,7 @@ msgstr "" msgid "Field Type" msgstr "" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "" @@ -9870,11 +9957,11 @@ msgstr "" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "" -#: frappe/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "" -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9892,20 +9979,20 @@ 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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "" @@ -9921,15 +10008,15 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "" @@ -9952,7 +10039,7 @@ msgstr "" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -9965,7 +10052,7 @@ msgstr "" msgid "Fields Multicheck" msgstr "" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "" @@ -9973,7 +10060,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10001,7 +10088,7 @@ msgstr "" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10012,9 +10099,9 @@ msgstr "" #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/form_tour/form_tour.json msgid "File" -msgstr "" +msgstr "File" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "" @@ -10067,7 +10154,7 @@ msgstr "" msgid "File backup is ready" msgstr "" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "" @@ -10075,7 +10162,7 @@ msgstr "" msgid "File not attached" msgstr "" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "" @@ -10084,11 +10171,11 @@ msgstr "" msgid "File too big" msgstr "" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "" @@ -10097,15 +10184,15 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/system_settings/system_settings.json msgid "Files" -msgstr "" +msgstr "File" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10113,7 +10200,7 @@ msgstr "" #: frappe/public/js/frappe/list/list_sidebar.html:36 msgid "Filter By" -msgstr "" +msgstr "Filtra per" #. Label of the filter_data (Section Break) field in DocType 'Auto Email #. Report' @@ -10135,18 +10222,18 @@ msgstr "" #: frappe/desk/doctype/list_filter/list_filter.json #: frappe/public/js/frappe/list/list_filter.js:33 msgid "Filter Name" -msgstr "" +msgstr "Nome Filtro" #. Label of the filter_values (HTML) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json msgid "Filter Values" msgstr "" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10164,7 +10251,6 @@ msgstr "" msgid "Filtered Records" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "" @@ -10179,7 +10265,9 @@ msgstr "" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10201,6 +10289,11 @@ msgstr "" msgid "Filters Display" msgstr "" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10213,11 +10306,11 @@ msgstr "" msgid "Filters Section" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "" @@ -10230,18 +10323,18 @@ msgstr "" msgid "Filters {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1427 +#: frappe/public/js/frappe/views/reports/report_view.js:1429 msgid "Filters:" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 msgid "Find '{0}' in ..." msgstr "" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 msgid "Find {0} in {1}" msgstr "" @@ -10265,20 +10358,20 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" -msgstr "" +msgstr "Nome di battesimo" #. Label of the first_success_message (Data) field in DocType 'Success Action' #: frappe/core/doctype/success_action/success_action.json msgid "First Success Message" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:49 -msgid "First Transaction" -msgstr "" - #: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." msgstr "" @@ -10294,7 +10387,7 @@ msgstr "" #. Label of the flag (Data) field in DocType 'Language' #: frappe/core/doctype/language/language.json msgid "Flag" -msgstr "" +msgstr "Bandiera" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' @@ -10327,13 +10420,13 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Fold" -msgstr "" +msgstr "Comprimi" -#: frappe/core/doctype/doctype/doctype.py:1450 +#: frappe/core/doctype/doctype/doctype.py:1451 msgid "Fold can not be at the end of the form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1448 +#: frappe/core/doctype/doctype/doctype.py:1449 msgid "Fold must come before a Section Break" msgstr "" @@ -10351,7 +10444,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "" -#: frappe/core/doctype/file/file.py:472 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "" @@ -10396,12 +10489,12 @@ msgstr "" #. Label of the font (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Font" -msgstr "" +msgstr "Font" #. Label of the font_properties (Data) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Font Properties" -msgstr "" +msgstr "Proprietà Carattere" #. Label of the font_size (Int) field in DocType 'Print Format' #. Label of the font_size (Float) field in DocType 'Print Settings' @@ -10411,7 +10504,7 @@ msgstr "" #: frappe/public/js/print_format_builder/PrintFormatControls.vue:45 #: frappe/website/doctype/website_theme/website_theme.json msgid "Font Size" -msgstr "" +msgstr "Dimensione Carattere" #. Label of the section_break_8 (Section Break) field in DocType 'Print #. Settings' @@ -10435,7 +10528,7 @@ msgstr "" #. Label of the footer_powered (Small Text) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Footer \"Powered By\"" -msgstr "" +msgstr "Piè di pagina \"Powered By\"" #. Label of the footer_source (Select) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -10451,14 +10544,14 @@ msgstr "" #. 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Footer Details" -msgstr "" +msgstr "Dettagli del Piè di Pagina" #. Label of the footer (HTML Editor) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Footer HTML" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:75 +#: frappe/printing/doctype/letter_head/letter_head.py:81 msgid "Footer HTML set from attachment {0}" msgstr "" @@ -10472,12 +10565,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 "" +msgstr "Elementi del piè di pagina" #. Label of the footer_logo (Attach Image) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Footer Logo" -msgstr "" +msgstr "Logo del Piè di Pagina" #. Label of the footer_script (Code) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -10487,7 +10580,7 @@ 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 "Modello di Piè di Pagina" #. Label of the footer_template_values (Code) field in DocType 'Website #. Settings' @@ -10495,7 +10588,7 @@ msgstr "" msgid "Footer Template Values" msgstr "" -#: frappe/printing/page/print/print.js:116 +#: frappe/printing/page/print/print.js:129 msgid "Footer might not be visible as {0} option is disabled" msgstr "" @@ -10546,15 +10639,15 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/desk/doctype/workspace/workspace.json msgid "For User" -msgstr "" +msgstr "Per l'Utente" #. 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 "Valore" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10580,15 +10673,9 @@ msgstr "" msgid "For help see Client Script API and Examples" msgstr "" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "" - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." -msgstr "" +msgstr "Per ulteriori informazioni, {0}." #. Description of the 'Email To' (Small Text) field in DocType 'Auto Email #. Report' @@ -10600,7 +10687,7 @@ msgstr "" msgid "For updating, you can update only selective columns." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "" @@ -10655,10 +10742,10 @@ 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:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" -msgstr "" +msgstr "Modulo" #. Label of the form_builder (HTML) field in DocType 'DocType' #. Label of the form_builder (HTML) field in DocType 'Customize Form' @@ -10715,6 +10802,11 @@ msgstr "" msgid "Format Data" msgstr "" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "" @@ -10742,9 +10834,17 @@ msgstr "" msgid "Frappe" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "Blog Frappe" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "Forum Frappe" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" -msgstr "" +msgstr "Frappe Framework" #: frappe/public/js/frappe/ui/theme_switcher.js:59 msgid "Frappe Light" @@ -10768,7 +10868,7 @@ msgstr "" #. Type: Route #: frappe/hooks.py msgid "Frappe Support" -msgstr "" +msgstr "Supporto Frappe" #: frappe/website/doctype/web_page/web_page.js:92 msgid "Frappe page builder using components" @@ -10777,7 +10877,7 @@ msgstr "" #: frappe/public/js/frappe/file_uploader/ImageCropper.vue:112 msgctxt "Image Cropper" msgid "Free" -msgstr "" +msgstr "Gratuito" #. Label of the frequency (Select) field in DocType 'Auto Repeat' #. Label of the frequency (Select) field in DocType 'Scheduled Job Type' @@ -10831,14 +10931,14 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "" #. Label of the sender_full_name (Data) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "From Full Name" -msgstr "" +msgstr "Da Nome Completo" #. Label of the from_user (Link) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json @@ -10852,24 +10952,22 @@ 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 "Intero" #. Label of the full_name (Data) field in DocType 'Contact' #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" -msgstr "" +msgstr "Nome e Cognome" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "" @@ -10877,7 +10975,7 @@ 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 "Larghezza Intera" #. Label of the function (Select) field in DocType 'Number Card' #. Label of the report_function (Select) field in DocType 'Number Card' @@ -10895,12 +10993,12 @@ msgstr "" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" +msgid "Further sub-groups can only be created under records marked as 'Group'" msgstr "" #: frappe/core/doctype/communication/communication.js:291 @@ -10949,7 +11047,7 @@ msgstr "" #: frappe/desk/page/setup_wizard/install_fixtures.py:32 msgid "Genderqueer" -msgstr "" +msgstr "Non Binario" #: frappe/www/contact.html:29 msgid "General" @@ -10960,7 +11058,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "" @@ -10968,8 +11066,14 @@ msgstr "" msgid "Generate Random Password" msgstr "" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "" @@ -10992,7 +11096,7 @@ msgstr "" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "" @@ -11033,7 +11137,7 @@ msgstr "" #: frappe/public/js/frappe/list/list_sidebar.js:305 msgid "Get more insights with" -msgstr "" +msgstr "Ottieni maggiori informazioni con" #. Description of the 'Email Threads on Assigned Document' (Check) field in #. DocType 'Notification Settings' @@ -11055,7 +11159,7 @@ msgstr "" #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "GitHub" -msgstr "" +msgstr "GitHub" #: frappe/website/doctype/web_page/web_page.js:92 msgid "Github flavoured markdown syntax" @@ -11108,7 +11212,7 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.js:18 msgid "Go to Workspace" -msgstr "" +msgstr "Vai all'Area di lavoro" #: frappe/public/js/frappe/form/form.js:144 msgid "Go to next record" @@ -11128,7 +11232,7 @@ msgid "Go to this URL after completing the form" msgstr "" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "" @@ -11152,18 +11256,18 @@ msgstr "" #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Google" -msgstr "" +msgstr "Google" #. Label of the google_analytics_id (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Google Analytics ID" -msgstr "" +msgstr "ID di Google Analytics" #. Label of the google_analytics_anonymize_ip (Check) field in DocType 'Website #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Google Analytics anonymise IP" -msgstr "" +msgstr "Anonimizzazione IP di Google Analytics" #. Label of the sb_00 (Section Break) field in DocType 'Event' #. Label of the google_calendar (Link) field in DocType 'Event' @@ -11174,11 +11278,7 @@ msgstr "" #: frappe/integrations/doctype/google_calendar/google_calendar.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Calendar" -msgstr "" - -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
    {0}" -msgstr "" +msgstr "Calendario Google" #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." @@ -11233,7 +11333,7 @@ msgstr "" #: frappe/integrations/doctype/google_contacts/google_contacts.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Contacts" -msgstr "" +msgstr "Contatti Google" #: frappe/integrations/doctype/google_contacts/google_contacts.py:137 msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}." @@ -11250,19 +11350,19 @@ msgstr "" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 msgid "Google Drive" -msgstr "" +msgstr "Google Drive" #. Label of the section_break_7 (Section Break) field in DocType 'Google #. Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "Google Drive Picker" -msgstr "" +msgstr "Selezione Google Drive" #. Label of the google_drive_picker_enabled (Check) field in DocType 'Google #. Settings' #: frappe/integrations/doctype/google_settings/google_settings.json msgid "Google Drive Picker Enabled" -msgstr "" +msgstr "Selezione Google Drive Abilitata" #. Label of the font (Data) field in DocType 'Print Format' #. Label of the google_font (Data) field in DocType 'Website Theme' @@ -11270,7 +11370,7 @@ msgstr "" #: frappe/public/js/print_format_builder/PrintFormatControls.vue:28 #: frappe/website/doctype/website_theme/website_theme.json msgid "Google Font" -msgstr "" +msgstr "Carattere Google" #. Label of the google_meet_link (Small Text) field in DocType 'Event' #: frappe/desk/doctype/event/event.json @@ -11280,7 +11380,7 @@ msgstr "" #. Label of a Card Break in the Integrations Workspace #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Services" -msgstr "" +msgstr "Servizi Google" #. Name of a DocType #. Label of a Link in the Integrations Workspace @@ -11288,7 +11388,7 @@ msgstr "" #: frappe/integrations/doctype/google_settings/google_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Google Settings" -msgstr "" +msgstr "Impostazioni Google" #: frappe/utils/csvutils.py:226 msgid "Google Sheets URL is invalid or not publicly accessible." @@ -11298,11 +11398,6 @@ msgstr "" msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "" -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11318,7 +11413,7 @@ msgstr "" #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Gray" -msgstr "" +msgstr "Grigio" #: frappe/public/js/frappe/ui/filters/filter.js:23 msgid "Greater Than" @@ -11357,7 +11452,7 @@ msgstr "" #: frappe/core/doctype/doctype_link/doctype_link.json #: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json msgid "Group" -msgstr "" +msgstr "Gruppo" #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -11379,14 +11474,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11404,26 +11495,26 @@ msgstr "" #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "HEAD" -msgstr "" +msgstr "HEAD" #. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json msgid "HERE" -msgstr "" +msgstr "QUI" #. Option for the 'Time Format' (Select) field in DocType 'Language' #. Option for the 'Time Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json msgid "HH:mm" -msgstr "" +msgstr "HH:mm" #. Option for the 'Time Format' (Select) field in DocType 'Language' #. Option for the 'Time Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json msgid "HH:mm:ss" -msgstr "" +msgstr "HH:mm:ss" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -11436,7 +11527,6 @@ msgstr "" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11447,14 +11537,13 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "HTML" -msgstr "" +msgstr "HTML" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -11482,7 +11571,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 "" +msgstr "Metà" #. Option for the 'Repeat On' (Select) field in DocType 'Event' #. Option for the 'Period' (Select) field in DocType 'Auto Email Report' @@ -11500,7 +11589,7 @@ msgstr "" #. Label of the handled_emails (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Handled Emails" -msgstr "" +msgstr "Email Gestite" #. Label of the has_attachment (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json @@ -11546,14 +11635,14 @@ msgstr "" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_slideshow/website_slideshow.json msgid "Header" -msgstr "" +msgstr "Intestazione" #. Label of the content (HTML Editor) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Header HTML" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "" @@ -11565,7 +11654,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 "" +msgstr "Intestazione e Navigazione" #. Label of the section_break_38 (Tab Break) field in DocType 'Website #. Settings' @@ -11611,6 +11700,12 @@ msgstr "" msgid "Hello" msgstr "" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "Ciao," + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11639,13 +11734,13 @@ msgstr "" #: frappe/website/doctype/help_category/help_category.json #: frappe/website/workspace/website/website.json msgid "Help Category" -msgstr "" +msgstr "Categoria di Aiuto" #. Label of the help_dropdown (Table) field in DocType 'Navbar Settings' #: frappe/core/doctype/navbar_settings/navbar_settings.json #: frappe/public/js/frappe/ui/toolbar/navbar.html:84 msgid "Help Dropdown" -msgstr "" +msgstr "Menu Aiuto" #. Label of the help_html (HTML) field in DocType 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -11669,14 +11764,14 @@ msgstr "" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Helvetica" -msgstr "" +msgstr "Helvetica" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "" @@ -11712,7 +11807,7 @@ msgstr "" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11724,7 +11819,7 @@ msgstr "" #: frappe/templates/includes/login/login.js:82 #: frappe/www/update-password.html:117 msgid "Hide" -msgstr "" +msgstr "Nascondi" #. Label of the hide_block (Check) field in DocType 'Web Page Block' #: frappe/website/doctype/web_page_block/web_page_block.json @@ -11745,11 +11840,6 @@ msgstr "" msgid "Hide Buttons" msgstr "" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "" - #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json @@ -11760,7 +11850,7 @@ 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 "Nascondi DocType e Report Personalizzati" #. Label of the hide_days (Check) field in DocType 'DocField' #. Label of the hide_days (Check) field in DocType 'Custom Field' @@ -11794,7 +11884,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 "Nascondi Login" #: frappe/public/js/form_builder/form_builder.bundle.js:43 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 @@ -11829,7 +11919,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -11843,7 +11933,7 @@ msgstr "" msgid "Hide descendant records of For Value." msgstr "" -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "" @@ -11861,7 +11951,7 @@ 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 "Nascondi la registrazione nel Piè di Pagina" #. Label of the hide_navbar (Check) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -11886,30 +11976,27 @@ msgstr "" #: frappe/www/update-password.html:301 msgid "Hint: Include symbols, numbers and capital letters in the password" -msgstr "" +msgstr "Suggerimento: Includi simboli, numeri e lettere maiuscole nella password" #. Label of the home_tab (Tab Break) field in DocType 'Website Settings' #: frappe/public/js/frappe/file_uploader/FileBrowser.vue:38 #: frappe/public/js/frappe/views/file/file_view.js:67 #: frappe/public/js/frappe/views/file/file_view.js:88 -#: frappe/public/js/frappe/views/pageview.js:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 #: frappe/www/message.html:29 msgid "Home" -msgstr "" +msgstr "Home" #. Label of the home_page (Data) field in DocType 'Role' #. Label of the home_page (Data) field in DocType 'Website Settings' #: frappe/core/doctype/role/role.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Home Page" -msgstr "" +msgstr "Pagina Iniziale" #. Label of the home_settings (Code) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -11984,19 +12071,19 @@ msgstr "" #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" -msgstr "" +msgstr "ID" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" -msgstr "" +msgstr "ID" #: frappe/public/js/print_format_builder/PrintFormatControls.vue:169 msgid "ID (name)" @@ -12072,7 +12159,7 @@ msgstr "" #. Label of the idx (Int) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "Idx" -msgstr "" +msgstr "Idx" #. Description of the 'Apply Strict User Permissions' (Check) field in DocType #. 'System Settings' @@ -12089,9 +12176,9 @@ msgstr "" msgid "If Checked workflow status will not override status in list view" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "" @@ -12108,7 +12195,7 @@ msgstr "" #. 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 "Se selezionato, i valori numerici negativi di Valuta, Quantità o Conteggio verranno mostrati come positivi" #. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth #. Client' @@ -12208,7 +12295,7 @@ msgstr "" #. Description of the 'Roles' (Table) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used." -msgstr "" +msgstr "Se impostato, solo gli utenti con questi ruoli possono accedere a questo grafico. Se non impostato, verranno utilizzate le autorizzazioni DocType o Report." #. Description of the 'User Type' (Link) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -12219,6 +12306,10 @@ msgstr "" msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12250,7 +12341,11 @@ msgstr "" msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "" -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "" @@ -12271,7 +12366,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 "" +msgstr "Se i tuoi dati sono in formato HTML, copia e incolla esattamente il codice HTML con i tag." #. Label of the ignore_user_permissions (Check) field in DocType 'DocField' #. Label of the ignore_user_permissions (Check) field in DocType 'Custom Field' @@ -12307,12 +12402,12 @@ msgstr "" msgid "Ignored Apps" msgstr "" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "" @@ -12365,7 +12460,7 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:208 msgid "Image View" -msgstr "" +msgstr "Vista Immagine" #. Label of the image_width (Float) field in DocType 'Letter Head' #. Label of the footer_image_width (Float) field in DocType 'Letter Head' @@ -12373,11 +12468,11 @@ msgstr "" msgid "Image Width" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 msgid "Image field must be a valid fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "" @@ -12399,15 +12494,15 @@ msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "" @@ -12431,18 +12526,18 @@ msgstr "" #: frappe/core/doctype/recorder/recorder_list.js:16 #: frappe/email/doctype/email_group/email_group.js:31 msgid "Import" -msgstr "" +msgstr "Importa" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" -msgstr "" +msgstr "Importa" #. Label of a Link in the Tools Workspace #. Label of a shortcut in the Tools Workspace #: frappe/automation/workspace/tools/tools.json msgid "Import Data" -msgstr "" +msgstr "Importa Dati" #: frappe/email/doctype/email_group/email_group.js:14 msgid "Import Email From" @@ -12597,7 +12692,7 @@ msgstr "" #. Label of the in_reply_to (Link) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "In Reply To" -msgstr "" +msgstr "In Risposta A" #. Label of the in_standard_filter (Check) field in DocType 'Custom Field' #. Label of the in_standard_filter (Check) field in DocType 'Customize Form @@ -12650,26 +12745,27 @@ 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 "Includi la Ricerca nella Barra Superiore" #: frappe/website/doctype/website_theme/website_theme.js:61 msgid "Include Theme from Apps" -msgstr "" +msgstr "Includi Tema dalle App" #. Label of the attach_view_link (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Include Web View Link in Email" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "" @@ -12693,7 +12789,7 @@ msgstr "" #. DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Incoming Emails (Last 7 days)" -msgstr "" +msgstr "Email In Arrivo (Ultimi 7 giorni)" #. Label of the email_server (Data) field in DocType 'Email Account' #. Label of the email_server (Data) field in DocType 'Email Domain' @@ -12710,13 +12806,13 @@ msgstr "" #: frappe/email/doctype/email_domain/email_domain.py:32 msgid "Incoming email account not correct" -msgstr "" +msgstr "Account email in arrivo non corretto" #: frappe/model/virtual_doctype.py:79 frappe/model/virtual_doctype.py:92 msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "" @@ -12728,7 +12824,7 @@ msgstr "" msgid "Incorrect URL" msgstr "" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "" @@ -12736,11 +12832,11 @@ msgstr "" msgid "Incorrect Verification code" msgstr "" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "" @@ -12752,7 +12848,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "" @@ -12796,7 +12892,7 @@ msgstr "" #: frappe/core/doctype/comment/comment.json #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Info" -msgstr "" +msgstr "Informazioni" #: frappe/core/doctype/data_export/exporter.py:144 msgid "Info:" @@ -12810,7 +12906,7 @@ msgstr "" #. Option for the 'Database Engine' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "InnoDB" -msgstr "" +msgstr "InnoDB" #. Description of the 'New Role' (Data) field in DocType 'Role Replication' #: frappe/core/doctype/role_replication/role_replication.json @@ -12823,11 +12919,11 @@ msgstr "" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Insert Above" -msgstr "" +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:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "" @@ -12841,15 +12937,15 @@ msgstr "" #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Insert Below" -msgstr "" +msgstr "Inserisci Sotto" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "" #: frappe/public/js/frappe/form/controls/markdown_editor.js:82 msgid "Insert Image in Markdown" -msgstr "" +msgstr "Inserisci immagine in Markdown" #. Option for the 'Import Type' (Select) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json @@ -12859,10 +12955,14 @@ 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 "Inserisci Stile" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "Instagram" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "" @@ -12879,9 +12979,9 @@ msgid "Installed Applications" msgstr "" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" -msgstr "" +msgstr "App Installate" #. Label of the instructions (HTML) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json @@ -12896,19 +12996,19 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" msgstr "" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "" @@ -12927,12 +13027,12 @@ msgstr "" #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Int" -msgstr "" +msgstr "Int" #. Name of a DocType #: frappe/integrations/doctype/integration_request/integration_request.json msgid "Integration Request" -msgstr "" +msgstr "Richiesta Integrazione" #. Group in User's connections #. Name of a Workspace @@ -12941,7 +13041,7 @@ msgstr "" #: frappe/integrations/workspace/integrations/integrations.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Integrations" -msgstr "" +msgstr "Integrazioni" #. Description of the 'Delivery Status' (Select) field in DocType #. 'Communication' @@ -12952,12 +13052,12 @@ msgstr "" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Inter" -msgstr "" +msgstr "Inter" #. Label of the interest (Small Text) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Interests" -msgstr "" +msgstr "Interessi" #. Option for the 'Level' (Select) field in DocType 'Help Article' #: frappe/website/doctype/help_article/help_article.json @@ -12971,7 +13071,7 @@ msgstr "" #. Description of a DocType #: frappe/core/doctype/docshare/docshare.json msgid "Internal record of document shares" -msgstr "" +msgstr "Registro interno condivisioni documenti" #. Label of the intro_video_url (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -13009,12 +13109,12 @@ msgstr "" #. Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "Invalid" -msgstr "" +msgstr "Non valido" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "" @@ -13022,7 +13122,7 @@ msgstr "" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "" @@ -13038,7 +13138,7 @@ msgstr "" msgid "Invalid Code. Please try again." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "" @@ -13058,16 +13158,20 @@ msgstr "" msgid "Invalid DocType: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13085,7 +13189,7 @@ msgstr "" #: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 msgid "Invalid Link" -msgstr "" +msgstr "Link non Valido" #: frappe/www/login.py:128 msgid "Invalid Login Token" @@ -13099,7 +13203,7 @@ msgstr "" msgid "Invalid Mail Server. Please rectify and try again." msgstr "" -#: frappe/model/naming.py:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "" @@ -13108,8 +13212,8 @@ msgstr "" msgid "Invalid Operation" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "" @@ -13121,25 +13225,25 @@ msgstr "" msgid "Invalid Output Format" msgstr "" -#: frappe/model/base_document.py:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" -msgstr "" +msgstr "Password non Valida" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "" @@ -13148,7 +13252,7 @@ msgstr "" msgid "Invalid Search Field {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "" @@ -13156,12 +13260,12 @@ msgstr "" msgid "Invalid Transition" msgstr "" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" -msgstr "" +msgstr "URL non valido" #: frappe/email/receive.py:157 msgid "Invalid User Name or Support Password. Please rectify and try again." @@ -13171,47 +13275,51 @@ msgstr "" msgid "Invalid Values" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "" @@ -13223,31 +13331,27 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13255,11 +13359,11 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13267,20 +13371,28 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "" @@ -13288,6 +13400,10 @@ msgstr "" msgid "Invalid naming series {}: dot (.) missing" msgstr "" +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "" @@ -13296,19 +13412,27 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13316,7 +13440,7 @@ msgstr "" msgid "Invalid template file for import" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "" @@ -13325,20 +13449,20 @@ msgstr "" msgid "Invalid username or password" msgstr "" -#: frappe/model/naming.py:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" msgid "Invalid values for fields:" -msgstr "" +msgstr "Valori non validi per i campi:" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "" @@ -13347,10 +13471,47 @@ msgstr "" msgid "Inverse" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "" @@ -13375,7 +13536,7 @@ msgstr "" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "" @@ -13397,7 +13558,7 @@ msgstr "" #: frappe/core/doctype/role/role.json #: frappe/core/doctype/user_document_type/user_document_type.json msgid "Is Custom" -msgstr "" +msgstr "È Personalizzato" #. Label of the is_custom_field (Check) field in DocType 'Customize Form Field' #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -13428,10 +13589,14 @@ msgstr "" msgid "Is Global" msgstr "" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" -msgstr "" +msgstr "È Nascosto" #. Label of the is_home_folder (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json @@ -13454,8 +13619,13 @@ msgstr "" msgid "Is Primary" msgstr "" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 msgid "Is Primary Contact" msgstr "" @@ -13486,7 +13656,7 @@ msgstr "" msgid "Is Published Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "" @@ -13511,7 +13681,7 @@ msgstr "" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "" @@ -13547,7 +13717,7 @@ msgstr "" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "" @@ -13602,12 +13772,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 "" +msgstr "Etichetta Elemento" #. Label of the item_type (Select) field in DocType 'Navbar Item' #: frappe/core/doctype/navbar_item/navbar_item.json msgid "Item Type" -msgstr "" +msgstr "Tipo Elemento" #: frappe/utils/nestedset.py:229 msgid "Item cannot be added to its own descendants" @@ -13616,7 +13786,7 @@ msgstr "" #. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "JS" -msgstr "" +msgstr "JS" #. Label of the js_message (HTML) field in DocType 'Custom HTML Block' #: frappe/desk/doctype/custom_html_block/custom_html_block.json @@ -13634,7 +13804,7 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/integrations/doctype/webhook/webhook.json msgid "JSON" -msgstr "" +msgstr "JSON" #. Label of the webhook_json (Code) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json @@ -13648,7 +13818,7 @@ msgstr "" #. Label of the js (Code) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "JavaScript" -msgstr "" +msgstr "JavaScript" #. Description of the 'Javascript' (Code) field in DocType 'Report' #: frappe/core/doctype/report/report.json @@ -13665,7 +13835,7 @@ msgstr "" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_script/website_script.json msgid "Javascript" -msgstr "" +msgstr "Javascript" #: frappe/www/login.html:74 msgid "Javascript is disabled on your browser" @@ -13674,7 +13844,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 "" +msgstr "Jinja" #. Label of the job_id (Data) field in DocType 'Prepared Report' #. Label of the job_id (Data) field in DocType 'RQ Job' @@ -13722,21 +13892,21 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:398 #: frappe/public/js/frappe/form/toolbar.js:833 msgid "Jump to field" -msgstr "" +msgstr "Vai al campo" #: frappe/public/js/frappe/utils/number_systems.js:17 #: frappe/public/js/frappe/utils/number_systems.js:31 #: frappe/public/js/frappe/utils/number_systems.js:53 msgctxt "Number system" msgid "K" -msgstr "" +msgstr "K" #. Option for the 'Select List View' (Select) field in DocType 'Form Tour' #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Kanban" -msgstr "" +msgstr "Kanban" #. Name of a DocType #. Label of the kanban_board (Link) field in DocType 'Workspace Shortcut' @@ -13753,18 +13923,18 @@ msgstr "" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" -msgstr "" +msgstr "Impostazioni Kanban" #: frappe/public/js/frappe/list/base_list.js:206 msgid "Kanban View" -msgstr "" +msgstr "Vista Kanban" #. Description of a DocType #: frappe/core/doctype/activity_log/activity_log.json @@ -13774,16 +13944,18 @@ msgstr "" #. Description of a DocType #: frappe/core/doctype/communication/communication.json msgid "Keeps track of all communications" -msgstr "" +msgstr "Tiene traccia di tutte le comunicazioni" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -13795,7 +13967,7 @@ msgstr "" #. Type: Action #: frappe/hooks.py frappe/public/js/frappe/ui/keyboard.js:130 msgid "Keyboard Shortcuts" -msgstr "" +msgstr "Scorciatoie Tastiera" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' @@ -13830,7 +14002,7 @@ msgstr "" #: frappe/public/js/frappe/utils/number_systems.js:49 msgctxt "Number system" msgid "L" -msgstr "" +msgstr "L" #. Label of the ldap_auth_section (Section Break) field in DocType 'LDAP #. Settings' @@ -13942,7 +14114,7 @@ msgstr "" #: frappe/integrations/doctype/ldap_settings/ldap_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "LDAP Settings" -msgstr "" +msgstr "Impostazioni LDAP" #. Label of the ldap_user_creation_and_mapping_section (Section Break) field in #. DocType 'LDAP Settings' @@ -14043,9 +14215,9 @@ 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 "Pagina di Destinazione" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "" @@ -14053,13 +14225,16 @@ msgstr "" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" -msgstr "" +msgstr "Lingua" #. Label of the language_code (Data) field in DocType 'Language' #: frappe/core/doctype/language/language.json @@ -14100,7 +14275,7 @@ msgstr "" #. Label of the last_active (Datetime) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Last Active" -msgstr "" +msgstr "Ultimo Attivo" #. Label of the last_execution (Datetime) field in DocType 'Scheduled Job Type' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json @@ -14144,10 +14319,14 @@ msgstr "" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" -msgstr "" +msgstr "Cognome" #. Label of the last_password_reset_date (Date) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -14160,6 +14339,11 @@ msgstr "" msgid "Last Quarter" msgstr "" +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" + #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json @@ -14176,15 +14360,10 @@ msgstr "" msgid "Last Sync On" msgstr "" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" -msgstr "" +msgstr "Ultima Sincronizzazione Il" #: frappe/model/meta.py:57 frappe/public/js/frappe/model/meta.js:205 #: frappe/public/js/frappe/model/model.js:130 @@ -14194,7 +14373,7 @@ msgstr "" #: frappe/model/meta.py:56 frappe/public/js/frappe/model/meta.js:204 #: frappe/public/js/frappe/model/model.js:126 msgid "Last Updated On" -msgstr "" +msgstr "Ultimo Aggiornamento Il" #. Label of the last_user (Link) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json @@ -14242,7 +14421,7 @@ msgstr "" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json msgid "Ledger" -msgstr "" +msgstr "Libro Mastro" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #. Option for the 'Align' (Select) field in DocType 'Letter Head' @@ -14285,19 +14464,19 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Length" -msgstr "" +msgstr "Lunghezza" #: frappe/public/js/frappe/ui/chart.js:11 msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "" #: frappe/public/js/frappe/widgets/chart_widget.js:729 msgid "Less" -msgstr "" +msgstr "Meno" #: frappe/public/js/frappe/ui/filters/filter.js:24 msgid "Less Than" @@ -14340,8 +14519,8 @@ 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:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14369,7 +14548,7 @@ msgstr "" msgid "Letter Head Scripts" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "" @@ -14386,7 +14565,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "" @@ -14402,7 +14581,7 @@ msgstr "" #. Label of the license (Markdown Editor) field in DocType 'Package' #: frappe/core/doctype/package/package.json frappe/www/attribution.html:36 msgid "License" -msgstr "" +msgstr "Licenza" #. Label of the license_type (Select) field in DocType 'Package' #: frappe/core/doctype/package/package.json @@ -14424,7 +14603,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 "Colore Chiaro" #: frappe/public/js/frappe/ui/theme_switcher.js:60 msgid "Light Theme" @@ -14436,20 +14615,6 @@ msgstr "" msgid "Like" msgstr "" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "" @@ -14476,7 +14641,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Line" -msgstr "" +msgstr "Linea" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' @@ -14490,6 +14655,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14503,8 +14669,9 @@ msgstr "" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" -msgstr "" +msgstr "Collegamento" #. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json @@ -14529,7 +14696,7 @@ msgstr "" #: frappe/core/doctype/communication_link/communication_link.json #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Link DocType" -msgstr "" +msgstr "Link DocType" #. Label of the link_doctype (Link) field in DocType 'Dynamic Link' #: frappe/core/doctype/dynamic_link/dynamic_link.json @@ -14589,7 +14756,7 @@ msgstr "" #: frappe/public/js/frappe/widgets/widget_dialog.js:281 #: frappe/public/js/frappe/widgets/widget_dialog.js:427 msgid "Link To" -msgstr "" +msgstr "Collegamento a" #: frappe/public/js/frappe/widgets/widget_dialog.js:363 msgid "Link To in Row" @@ -14602,7 +14769,7 @@ msgstr "" #: frappe/public/js/frappe/views/workspace/workspace.js:410 #: frappe/public/js/frappe/widgets/widget_dialog.js:273 msgid "Link Type" -msgstr "" +msgstr "Tipo Collegamento" #: frappe/public/js/frappe/widgets/widget_dialog.js:359 msgid "Link Type in Row" @@ -14615,7 +14782,7 @@ msgstr "" #. Description of the 'Home Page' (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Link that is the website home page. Standard Links (home, login, products, blog, about, contact)" -msgstr "" +msgstr "Link che rimanda alla home page del sito. Link Standard (home, login, prodotti, blog, informazioni, contatti)" #. Description of the 'URL' (Data) field in DocType 'Top Bar Item' #: frappe/website/doctype/top_bar_item/top_bar_item.json @@ -14633,10 +14800,15 @@ msgstr "" msgid "Linked With" msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +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 (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14644,6 +14816,7 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "" @@ -14657,7 +14830,7 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/utils/utils.js:926 msgid "List" -msgstr "" +msgstr "Lista" #. Label of the list__search_settings_section (Section Break) field in DocType #. 'DocField' @@ -14683,16 +14856,16 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.json #: frappe/website/doctype/web_form/web_form.json msgid "List Settings" -msgstr "" +msgstr "Impostazioni Lista" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" -msgstr "" +msgstr "Impostazioni Lista" #: frappe/public/js/frappe/list/base_list.js:202 msgid "List View" -msgstr "" +msgstr "Vista Elenco" #. Name of a DocType #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -14726,7 +14899,7 @@ msgstr "" msgid "List setting message" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "" @@ -14735,12 +14908,11 @@ msgstr "" msgid "Load Balancing" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" -msgstr "" +msgstr "Carica altro" #: frappe/public/js/frappe/form/footer/form_timeline.js:215 msgctxt "Form timeline" @@ -14754,12 +14926,12 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" -msgstr "" +msgstr "Caricamento" #: frappe/public/js/frappe/widgets/widget_dialog.js:107 msgid "Loading Filters..." @@ -14769,7 +14941,7 @@ msgstr "" msgid "Loading import file..." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "" @@ -14779,15 +14951,15 @@ msgstr "" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." -msgstr "" +msgstr "Caricamento..." #. Label of the location (Data) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Location" -msgstr "" +msgstr "Luogo" #. Label of the log (Code) field in DocType 'Package Import' #: frappe/core/doctype/package_import/package_import.json @@ -14838,9 +15010,9 @@ msgstr "" #: frappe/hooks.py #: frappe/website/doctype/website_settings/website_settings.py:182 msgid "Log out" -msgstr "" +msgstr "Esci" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "" @@ -14856,7 +15028,7 @@ msgstr "" #: frappe/website/page_renderers/not_permitted_page.py:24 #: frappe/www/login.html:45 msgid "Login" -msgstr "" +msgstr "Login" #. Label of the login_after (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -14886,7 +15058,7 @@ msgstr "" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Login Page" -msgstr "" +msgstr "Pagina di Accesso" #: frappe/www/login.py:156 msgid "Login To {0}" @@ -14900,7 +15072,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -14908,7 +15080,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "" @@ -14961,7 +15133,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -14978,9 +15150,9 @@ msgstr "" #: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 #: frappe/www/me.html:84 msgid "Logout" -msgstr "" +msgstr "Esci" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "" @@ -14999,7 +15171,7 @@ msgstr "" #. Label of a Card Break in the Users Workspace #: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json msgid "Logs" -msgstr "" +msgstr "Log" #. Name of a DocType #: frappe/core/doctype/logs_to_clear/logs_to_clear.json @@ -15026,11 +15198,11 @@ msgstr "" #: frappe/www/third_party_apps.html:59 msgid "Looks like you haven’t added any third party apps." -msgstr "" +msgstr "Sembra che tu non abbia aggiunto app di terze parti." #: frappe/public/js/frappe/ui/notifications/notifications.js:315 msgid "Looks like you haven’t received any notifications." -msgstr "" +msgstr "Sembra che tu non abbia ricevuto alcuna notifica." #. Option for the 'Priority' (Select) field in DocType 'ToDo' #: frappe/desk/doctype/todo/todo.json @@ -15041,7 +15213,7 @@ msgstr "" #: frappe/public/js/frappe/utils/number_systems.js:13 msgctxt "Number system" msgid "M" -msgstr "" +msgstr "M" #. Option for the 'License Type' (Select) field in DocType 'Package' #: frappe/core/doctype/package/package.json @@ -15055,28 +15227,28 @@ 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 "Sezione Principale" #. Label of the main_section_html (HTML Editor) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Main Section (HTML)" -msgstr "" +msgstr "Sezione Principale (HTML)" #. Label of the main_section_md (Markdown Editor) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Main Section (Markdown)" -msgstr "" +msgstr "Sezione Principale (Markdown)" #. Name of a role #: frappe/contacts/doctype/contact/contact.json msgid "Maintenance Manager" -msgstr "" +msgstr "Responsabile Manutenzione" #. Name of a role #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json msgid "Maintenance User" -msgstr "" +msgstr "Utente Manutenzione" #. Label of the major (Int) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json @@ -15084,7 +15256,10 @@ msgid "Major" 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 +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "" @@ -15121,11 +15296,11 @@ msgstr "" #: frappe/desk/page/setup_wizard/install_fixtures.py:28 msgid "Male" -msgstr "" +msgstr "Maschio" #: frappe/www/me.html:56 msgid "Manage 3rd party apps" -msgstr "" +msgstr "Gestisci app di terze parti" #. Description of a Card Break in the Tools Workspace #: frappe/automation/workspace/tools/tools.json @@ -15160,7 +15335,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "" @@ -15172,18 +15347,18 @@ msgstr "" msgid "Mandatory field: {0}" msgstr "" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" -msgstr "" +msgstr "Campi obbligatori richiesti:" #: frappe/core/doctype/data_export/exporter.py:142 msgid "Mandatory:" @@ -15210,7 +15385,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 "" +msgstr "Mappa i parametri del percorso nelle variabili del modulo. Esempio /project/<name>" #: frappe/core/doctype/data_import/importer.py:924 msgid "Mapping column {0} to field {1}" @@ -15219,22 +15394,22 @@ msgstr "" #. Label of the margin_bottom (Float) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Margin Bottom" -msgstr "" +msgstr "Margine Inferiore" #. Label of the margin_left (Float) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Margin Left" -msgstr "" +msgstr "Margine Sinistro" #. Label of the margin_right (Float) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Margin Right" -msgstr "" +msgstr "Margine Destro" #. Label of the margin_top (Float) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Margin Top" -msgstr "" +msgstr "Margine Superiore" #. Label of the mariadb_variables_section (Section Break) field in DocType #. 'System Health Report' @@ -15261,14 +15436,12 @@ msgid "Mark as Unread" msgstr "" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" -msgstr "" +msgstr "Markdown" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -15279,7 +15452,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 "" +msgstr "Editor Markdown" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json @@ -15291,7 +15464,7 @@ msgstr "" #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json msgid "Marketing Manager" -msgstr "" +msgstr "Responsabile Marketing" #: frappe/desk/page/setup_wizard/install_fixtures.py:50 msgid "Master" @@ -15345,7 +15518,13 @@ msgstr "" msgid "Max auto email report per user" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "" @@ -15354,26 +15533,21 @@ msgstr "" msgid "Maximum" msgstr "" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "" -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "" -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:221 msgid "Me" -msgstr "" +msgstr "Io" #: frappe/core/page/permission_manager/permission_manager_help.html:14 msgid "Meaning of Submit, Cancel, Amend" @@ -15383,7 +15557,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15394,9 +15568,9 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/desk/doctype/event/event.json msgid "Meeting" -msgstr "" +msgstr "Riunione" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "" @@ -15410,7 +15584,7 @@ msgstr "" #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Memory Usage" -msgstr "" +msgstr "Utilizzo Memoria" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63 msgid "Memory Usage in MB" @@ -15430,14 +15604,14 @@ msgstr "" #: frappe/public/js/frappe/ui/page.html:41 #: frappe/public/js/frappe/ui/page.js:162 msgid "Menu" -msgstr "" +msgstr "Menu" #: frappe/public/js/frappe/form/toolbar.js:242 #: frappe/public/js/frappe/model/model.js:705 msgid "Merge with existing" -msgstr "" +msgstr "Unisci con esistente" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "" @@ -15463,19 +15637,19 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json #: frappe/www/message.html:3 msgid "Message" -msgstr "" +msgstr "Messaggio" #: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78 msgctxt "Default title of the message dialog" msgid "Message" -msgstr "" +msgstr "Messaggio" #. Label of the message_examples (HTML) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json @@ -15487,12 +15661,12 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json msgid "Message ID" -msgstr "" +msgstr "ID messaggio" #. Label of the message_parameter (Data) field in DocType 'SMS Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Message Parameter" -msgstr "" +msgstr "Parametro Messaggio" #: frappe/templates/includes/contact.js:36 msgid "Message Sent" @@ -15503,7 +15677,7 @@ msgstr "" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "" @@ -15533,31 +15707,23 @@ 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 "Meta" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" -msgstr "" +msgstr "Meta tag" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "" @@ -15608,9 +15774,9 @@ msgstr "" #: frappe/__init__.py:468 msgid "Method Not Allowed" -msgstr "" +msgstr "Metodo Non Consentito" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "" @@ -15624,6 +15790,11 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/user/user.json msgid "Middle Name" +msgstr "Secondo Nome" + +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" msgstr "" #. Name of a DocType @@ -15659,7 +15830,7 @@ msgstr "" #: frappe/public/js/frappe/form/controls/duration.js:30 msgctxt "Duration" msgid "Minutes" -msgstr "" +msgstr "Minuti" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json @@ -15686,19 +15857,19 @@ msgstr "" #: frappe/desk/page/setup_wizard/install_fixtures.py:49 msgid "Miss" -msgstr "" +msgstr "Signora" #: frappe/desk/form/meta.py:194 msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" -msgstr "" +msgstr "Campi Mancanti" #: frappe/email/doctype/auto_email_report/auto_email_report.py:131 msgid "Missing Filters Required" @@ -15710,18 +15881,18 @@ msgstr "" #: frappe/www/update-password.html:134 frappe/www/update-password.html:141 msgid "Missing Value" -msgstr "" +msgstr "Valore Mancante" #: frappe/public/js/frappe/ui/field_group.js:124 #: frappe/public/js/frappe/widgets/widget_dialog.js:374 #: frappe/public/js/workflow_builder/store.js:97 #: frappe/workflow/doctype/workflow/workflow.js:71 msgid "Missing Values Required" -msgstr "" +msgstr "Campi Obbligatori Mancanti" #: frappe/www/login.py:107 msgid "Mobile" -msgstr "" +msgstr "Cellulare" #. Label of the mobile_no (Data) field in DocType 'Contact' #. Label of the mobile_no (Data) field in DocType 'User' @@ -15732,15 +15903,16 @@ msgstr "" msgid "Mobile No" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "Numero di Cellulare" + #. Label of the modal_trigger (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Modal Trigger" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15761,7 +15933,7 @@ msgstr "" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -15779,7 +15951,7 @@ msgstr "" #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_theme/website_theme.json msgid "Module" -msgstr "" +msgstr "Modulo" #. Label of the module (Link) field in DocType 'Server Script' #. Label of the module (Link) field in DocType 'Client Script' @@ -15792,7 +15964,7 @@ msgstr "" #: frappe/custom/doctype/property_setter/property_setter.json #: frappe/website/doctype/web_page/web_page.json msgid "Module (for export)" -msgstr "" +msgstr "Modulo (per l'esportazione)" #. Name of a DocType #. Label of a Link in the Build Workspace @@ -15800,7 +15972,7 @@ msgstr "" #: frappe/core/doctype/module_def/module_def.json #: frappe/core/workspace/build/build.json msgid "Module Def" -msgstr "" +msgstr "Definizione Modulo" #. Label of the module_html (HTML) field in DocType 'Module Profile' #: frappe/core/doctype/module_profile/module_profile.json @@ -15819,7 +15991,7 @@ msgstr "" #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/module_onboarding/module_onboarding.json msgid "Module Onboarding" -msgstr "" +msgstr "Modulo Primo Avvio" #. Name of a DocType #. Label of the module_profile (Link) field in DocType 'User' @@ -15827,12 +15999,12 @@ msgstr "" #: frappe/core/doctype/module_profile/module_profile.json #: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json msgid "Module Profile" -msgstr "" +msgstr "Profilo del Modulo" #. 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 "Nome del Profilo del Modulo" #: frappe/desk/doctype/module_onboarding/module_onboarding.py:69 msgid "Module onboarding progress reset" @@ -15851,7 +16023,7 @@ msgstr "" #: frappe/core/doctype/package/package.json #: frappe/core/workspace/build/build.json msgid "Modules" -msgstr "" +msgstr "Moduli" #. Label of the modules_html (HTML) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -15937,12 +16109,14 @@ msgstr "" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" -msgstr "" +msgstr "Ulteriori Informazioni" #: frappe/website/doctype/help_article/templates/help_article.html:19 #: frappe/website/doctype/help_article/templates/help_article.html:33 @@ -15957,9 +16131,9 @@ msgstr "" #: frappe/public/js/frappe/ui/sort_selector.js:193 msgid "Most Used" -msgstr "" +msgstr "Più Usato" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "" @@ -15968,9 +16142,9 @@ msgstr "" #: frappe/core/doctype/communication/communication.js:212 #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Move" -msgstr "" +msgstr "Muovi" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "" @@ -16006,7 +16180,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "" @@ -16023,7 +16197,7 @@ msgstr "" #: frappe/desk/page/setup_wizard/install_fixtures.py:43 msgid "Mr" -msgstr "" +msgstr "Sig." #: frappe/desk/page/setup_wizard/install_fixtures.py:47 msgid "Mrs" @@ -16031,9 +16205,9 @@ msgstr "" #: frappe/desk/page/setup_wizard/install_fixtures.py:44 msgid "Ms" -msgstr "" +msgstr "SM" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "" @@ -16056,7 +16230,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "" @@ -16071,18 +16245,18 @@ msgstr "" #: frappe/desk/page/setup_wizard/install_fixtures.py:45 msgid "Mx" -msgstr "" +msgstr "Mx" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" -msgstr "" +msgstr "Il Mio Account" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:57 msgid "My Device" -msgstr "" +msgstr "Il mio Dispositivo" #: frappe/public/js/frappe/ui/apps_switcher.js:71 msgid "My Workspaces" @@ -16112,9 +16286,9 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16124,11 +16298,11 @@ msgstr "" msgid "Name (Doc Name)" msgstr "" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "" @@ -16140,7 +16314,7 @@ msgstr "" msgid "Name of the new Print Format" msgstr "" -#: frappe/model/naming.py:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "" @@ -16179,7 +16353,7 @@ msgstr "" msgid "Naming Series" msgstr "" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "" @@ -16189,7 +16363,7 @@ msgstr "" #: frappe/website/doctype/web_template/web_template.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Navbar" -msgstr "" +msgstr "Barra di Navigazione" #. Name of a DocType #: frappe/core/doctype/navbar_item/navbar_item.json @@ -16201,14 +16375,14 @@ msgstr "" #: frappe/core/doctype/navbar_settings/navbar_settings.json #: frappe/core/workspace/build/build.json msgid "Navbar Settings" -msgstr "" +msgstr "Impostazioni Barra di Navigazione" #. 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 "Modello di Barra di Navigazione" #. Label of the navbar_template_values (Code) field in DocType 'Website #. Settings' @@ -16216,12 +16390,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16236,7 +16410,11 @@ msgstr "" msgid "Navigation Settings" msgstr "" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16244,7 +16422,7 @@ msgstr "" msgid "Negative Value" msgstr "" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16257,6 +16435,12 @@ msgstr "" msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +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 @@ -16265,12 +16449,12 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 msgid "New" -msgstr "" +msgstr "Nuovo" #: frappe/public/js/frappe/views/interaction.js:15 msgid "New Activity" @@ -16286,10 +16470,6 @@ msgstr "" msgid "New Chart" msgstr "" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "" @@ -16298,8 +16478,8 @@ msgstr "" msgid "New Custom Block" msgstr "" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" msgstr "" @@ -16330,7 +16510,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "" @@ -16351,7 +16531,7 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:218 #: frappe/public/js/frappe/model/model.js:713 msgid "New Name" -msgstr "" +msgstr "Nuovo Nome" #: frappe/desk/doctype/notification_log/notification_log.py:151 msgid "New Notification" @@ -16365,12 +16545,12 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" -msgstr "" +msgstr "Nuova Password" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "" @@ -16379,7 +16559,7 @@ msgstr "" msgid "New Quick List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "" @@ -16397,8 +16577,8 @@ msgstr "" msgid "New Users (Last 30 days)" msgstr "" -#: frappe/core/doctype/version/version_view.html:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "" @@ -16431,7 +16611,7 @@ msgstr "" #: frappe/www/update-password.html:92 msgid "New password cannot be same as old password" -msgstr "" +msgstr "La nuova password non può essere uguale alla vecchia" #: frappe/utils/change_log.py:389 msgid "New updates are available" @@ -16441,7 +16621,7 @@ msgstr "" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "New users will have to be manually registered by system managers." -msgstr "" +msgstr "I nuovi utenti dovranno essere registrati manualmente dai gestori del sistema." #. Description of the 'Set Value' (Small Text) field in DocType 'Property #. Setter' @@ -16455,15 +16635,15 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" -msgstr "" +msgstr "Nuovo {0}" #: frappe/public/js/frappe/views/reports/query_report.js:393 msgid "New {0} Created" @@ -16477,7 +16657,7 @@ msgstr "" msgid "New {0} {1} created" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "" @@ -16485,31 +16665,31 @@ msgstr "" msgid "New {} releases for the following apps are available" msgstr "" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." -msgstr "" +msgstr "L'utente appena creato {0} non ha ruoli abilitati." #. Name of a role #: frappe/email/doctype/email_group/email_group.json #: frappe/email/doctype/email_group_member/email_group_member.json #: frappe/website/doctype/utm_campaign/utm_campaign.json msgid "Newsletter Manager" -msgstr "" +msgstr "Responsabile Newsletter" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 #: frappe/website/web_template/slideshow/slideshow.html:44 msgid "Next" -msgstr "" +msgstr "Successivo" #: frappe/public/js/frappe/ui/slides.js:359 msgctxt "Go to next slide" msgid "Next" -msgstr "" +msgstr "Successivo" #: frappe/public/js/frappe/ui/filters/filter.js:684 msgid "Next 14 Days" @@ -16605,31 +16785,32 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" -msgstr "" +msgstr "No" #: frappe/public/js/frappe/ui/filters/filter.js:546 msgctxt "Checkbox is not checked" msgid "No" -msgstr "" +msgstr "No" #: frappe/public/js/frappe/ui/messages.js:37 msgctxt "Dismiss confirmation dialog" msgid "No" -msgstr "" +msgstr "No" #: frappe/www/third_party_apps.html:56 msgid "No Active Sessions" -msgstr "" +msgstr "Nessuna Sessione Attiva" #. Label of the no_copy (Check) field in DocType 'DocField' #. Label of the no_copy (Check) field in DocType 'Custom Field' @@ -16662,6 +16843,10 @@ msgstr "" msgid "No Email Accounts Assigned" msgstr "" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "" @@ -16680,7 +16865,7 @@ msgstr "" #: frappe/public/js/frappe/ui/capture.js:262 msgid "No Images" -msgstr "" +msgstr "Nessuna Immagine" #: frappe/integrations/doctype/ldap_settings/ldap_settings.py:363 msgid "No LDAP User found for email: {0}" @@ -16697,23 +16882,23 @@ msgstr "" msgid "No Label" msgstr "" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: frappe/public/js/frappe/list/bulk_operations.js:98 #: frappe/public/js/frappe/list/bulk_operations.js:170 #: frappe/utils/weasyprint.py:52 msgid "No Letterhead" msgstr "" -#: frappe/model/naming.py:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "" #: frappe/public/js/frappe/ui/notifications/notifications.js:315 msgid "No New notifications" -msgstr "" +msgstr "Nessuna Nuova Notifica" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "" @@ -16733,11 +16918,11 @@ msgstr "" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "" @@ -16753,31 +16938,31 @@ msgstr "" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" -msgstr "" +msgstr "Nessun Ruolo Specificato" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" -msgstr "" +msgstr "Campo Selezione Non Trovato" #: frappe/core/doctype/recorder/recorder.py:179 msgid "No Suggestions" msgstr "" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "" #: frappe/public/js/frappe/ui/notifications/notifications.js:442 msgid "No Upcoming Events" -msgstr "" +msgstr "Nessun Evento Imminente" #: frappe/public/js/frappe/form/templates/address_list.html:43 msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "" @@ -16805,23 +16990,19 @@ msgstr "" msgid "No changes to update" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " -msgstr "" +msgid "No comments yet." +msgstr "Nessun commento ancora." #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "" @@ -16837,13 +17018,17 @@ msgstr "" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." -msgstr "" +msgstr "Nessun campo trovato che possa essere utilizzato come colonna Kanban. Utilizza Personalizza Modulo per aggiungere un campo personalizzato di tipo \"Seleziona\"." #: frappe/utils/file_manager.py:143 msgid "No file attached" @@ -16851,7 +17036,7 @@ msgstr "" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:134 msgid "No filters found" -msgstr "" +msgstr "Nessun filtro trovato" #: frappe/public/js/frappe/ui/filters/filter_list.js:299 msgid "No filters selected" @@ -16865,9 +17050,9 @@ msgstr "" msgid "No matching records. Search something new" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" -msgstr "" +msgstr "Non ci sono più elementi da visualizzare" #: frappe/utils/password_strength.py:45 msgid "No need for symbols, digits, or uppercase letters." @@ -16909,7 +17094,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "" @@ -16921,7 +17106,7 @@ msgstr "" msgid "No records deleted" msgstr "" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "" @@ -16935,9 +17120,9 @@ msgstr "" #: frappe/public/js/frappe/form/grid.js:66 msgid "No rows" -msgstr "" +msgstr "Nessuna riga" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -16957,23 +17142,23 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" -msgstr "" +msgstr "Nessun {0} trovato" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." -msgstr "" +msgstr "Nessun {0} trovato con i filtri corrispondenti. Cancella i filtri per vedere tutti i {0}." #: frappe/public/js/frappe/views/inbox/inbox_view.js:171 msgid "No {0} mail" msgstr "" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." -msgstr "" +msgstr "Num." #. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json @@ -17013,7 +17198,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "" @@ -17034,7 +17219,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -17060,20 +17245,19 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17082,12 +17266,12 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" -msgstr "" +msgstr "Non Salvato" #: frappe/core/doctype/error_log/error_log_list.js:7 msgid "Not Seen" @@ -17117,7 +17301,7 @@ msgstr "" msgid "Not a valid User Image." msgstr "" -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "" @@ -17133,11 +17317,11 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "" @@ -17161,27 +17345,27 @@ msgstr "" msgid "Not in Developer Mode" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17216,7 +17400,7 @@ msgstr "" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17230,7 +17414,7 @@ msgstr "" #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "Nothing New" -msgstr "" +msgstr "Nessuna Novità" #: frappe/public/js/frappe/form/undo_manager.js:43 msgid "Nothing left to redo" @@ -17240,10 +17424,9 @@ msgstr "" msgid "Nothing left to undo" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "" @@ -17278,7 +17461,7 @@ msgstr "" #: frappe/desk/doctype/notification_settings/notification_settings.json #: frappe/public/js/frappe/ui/notifications/notifications.js:37 msgid "Notification Settings" -msgstr "" +msgstr "Impostazioni di Notifica" #. Name of a DocType #: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json @@ -17289,15 +17472,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17348,7 +17531,7 @@ msgstr "" msgid "Notify users with a popup when they log in" msgstr "" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "" @@ -17362,7 +17545,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/public/js/frappe/widgets/widget_dialog.js:628 msgid "Number Card" -msgstr "" +msgstr "Scheda Numerica" #. Name of a DocType #: frappe/desk/doctype/number_card_link/number_card_link.json @@ -17406,12 +17589,12 @@ msgstr "" msgid "Number of Queries" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17446,7 +17629,7 @@ msgstr "" #. Option for the 'Method' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "OAuth" -msgstr "" +msgstr "OAuth" #. Name of a DocType #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json @@ -17463,12 +17646,12 @@ msgstr "" #: frappe/integrations/doctype/oauth_client/oauth_client.json #: frappe/integrations/workspace/integrations/integrations.json msgid "OAuth Client" -msgstr "" +msgstr "Client 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 "" +msgstr "OAuth Client ID" #. Name of a DocType #: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json @@ -17484,7 +17667,7 @@ msgstr "" #: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "OAuth Provider Settings" -msgstr "" +msgstr "Impostazioni OAuth Provider" #. Name of a DocType #: frappe/integrations/doctype/oauth_scope/oauth_scope.json @@ -17507,7 +17690,7 @@ msgstr "" #: frappe/public/js/form_builder/components/Tabs.vue:190 msgid "OR" -msgstr "" +msgstr "O" #. Option for the 'Two Factor Authentication method' (Select) field in DocType #. 'System Settings' @@ -17520,11 +17703,11 @@ msgstr "" msgid "OTP Issuer Name" msgstr "" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "" @@ -17574,7 +17757,7 @@ msgstr "" #: frappe/www/update-password.html:38 msgid "Old Password" -msgstr "" +msgstr "Vecchia Password" #: frappe/custom/doctype/custom_field/custom_field.py:412 msgid "Old and new fieldnames are same." @@ -17643,7 +17826,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "" @@ -17683,7 +17866,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "" @@ -17728,7 +17911,7 @@ msgstr "" msgid "Only Allow Edit For" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "" @@ -17745,7 +17928,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "" @@ -17764,19 +17947,19 @@ msgstr "" msgid "Only one {0} can be set as primary." msgstr "" -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17804,12 +17987,12 @@ msgstr "" #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Open" -msgstr "" +msgstr "Apri" #: frappe/desk/doctype/todo/todo_list.js:14 msgctxt "Access" msgid "Open" -msgstr "" +msgstr "Apri" #: frappe/public/js/frappe/ui/keyboard.js:207 #: frappe/public/js/frappe/ui/keyboard.js:217 @@ -17846,9 +18029,9 @@ msgstr "" msgid "Open Settings" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" -msgstr "" +msgstr "Applicazioni Open Source per il Web" #. Label of the open_in_new_tab (Check) field in DocType 'Top Bar Item' #: frappe/website/doctype/top_bar_item/top_bar_item.json @@ -17864,7 +18047,7 @@ msgstr "" msgid "Open a module or tool" msgstr "" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "" @@ -17872,7 +18055,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17887,13 +18070,13 @@ msgstr "" #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "" @@ -17902,10 +18085,14 @@ msgstr "" msgid "OpenID Configuration" msgstr "" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" -msgstr "" +msgstr "OpenLDAP" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json @@ -17915,9 +18102,9 @@ msgstr "" #. Label of the operation (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json msgid "Operation" -msgstr "" +msgstr "Operazione" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "" @@ -17925,7 +18112,7 @@ msgstr "" #: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:8 #: frappe/public/js/frappe/file_uploader/FilePreview.vue:28 msgid "Optimize" -msgstr "" +msgstr "Ottimizza" #: frappe/core/doctype/file/file.js:106 msgid "Optimizing image..." @@ -17943,7 +18130,7 @@ msgstr "" msgid "Option 3" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "" @@ -17963,6 +18150,7 @@ msgstr "" #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -17971,11 +18159,12 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "" @@ -17984,7 +18173,7 @@ msgstr "" msgid "Options Help" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "" @@ -17992,7 +18181,7 @@ msgstr "" msgid "Options for select. Each option on a new line." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 msgid "Options for {0} must be set before setting the default value." msgstr "" @@ -18000,7 +18189,7 @@ msgstr "" msgid "Options is required for field {0} of type {1}" msgstr "" -#: frappe/model/base_document.py:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "" @@ -18016,7 +18205,7 @@ msgstr "" msgid "Order" msgstr "" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18032,12 +18221,12 @@ msgstr "" msgid "Org History Heading" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "" @@ -18068,7 +18257,7 @@ msgstr "" #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Outgoing Emails (Last 7 days)" -msgstr "" +msgstr "Email In Uscita (Ultimi 7 giorni)" #. Label of the smtp_server (Data) field in DocType 'Email Account' #. Label of the smtp_server (Data) field in DocType 'Email Domain' @@ -18090,7 +18279,7 @@ msgstr "" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Outlook.com" -msgstr "" +msgstr "Outlook.com" #. Label of the output (Code) field in DocType 'Permission Inspector' #. Label of the output (Code) field in DocType 'System Console' @@ -18103,11 +18292,7 @@ msgstr "" #: frappe/public/js/frappe/form/templates/form_dashboard.html:5 msgid "Overview" -msgstr "" - -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "" +msgstr "Panoramica" #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json @@ -18116,11 +18301,11 @@ msgstr "" #. Option for the 'Format' (Select) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json -#: frappe/printing/page/print/print.js:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" -msgstr "" +msgstr "PDF" #: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191 msgid "PDF Generation in Progress" @@ -18129,7 +18314,7 @@ msgstr "" #. Label of the pdf_generator (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "PDF Generator" -msgstr "" +msgstr "Generatore PDF" #. Label of the pdf_page_height (Float) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json @@ -18159,25 +18344,25 @@ msgstr "" msgid "PDF generation failed because of broken image links" msgstr "" -#: frappe/printing/page/print/print.js:616 +#: frappe/printing/page/print/print.js:656 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:574 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 "" +msgstr "PID" #. Option for the 'Method' (Select) field in DocType 'Recorder' #. Option for the 'Request Method' (Select) field in DocType 'Webhook' #: frappe/core/doctype/recorder/recorder.json #: frappe/integrations/doctype/webhook/webhook.json msgid "POST" -msgstr "" +msgstr "POST" #. Option for the 'Method' (Select) field in DocType 'Recorder' #. Option for the 'Request Method' (Select) field in DocType 'Webhook' @@ -18195,14 +18380,14 @@ msgstr "" #: frappe/core/doctype/package_release/package_release.json #: frappe/core/workspace/build/build.json frappe/www/attribution.html:34 msgid "Package" -msgstr "" +msgstr "Pacchetto" #. Name of a DocType #. Label of a Link in the Build Workspace #: frappe/core/doctype/package_import/package_import.json #: frappe/core/workspace/build/build.json msgid "Package Import" -msgstr "" +msgstr "Importazione Pacchetto" #. Label of the package_name (Data) field in DocType 'Package' #: frappe/core/doctype/package/package.json @@ -18217,7 +18402,7 @@ msgstr "" #. Label of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Packages" -msgstr "" +msgstr "Pacchetti" #. Description of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json @@ -18244,7 +18429,7 @@ msgstr "" #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Page" -msgstr "" +msgstr "Pagina" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/public/js/print_format_builder/PrintFormatSection.vue:63 @@ -18266,7 +18451,7 @@ msgstr "" #. Label of the page_html (Section Break) field in DocType 'Page' #: frappe/core/doctype/page/page.json msgid "Page HTML" -msgstr "" +msgstr "Pagina HTML" #: frappe/public/js/frappe/list/bulk_operations.js:73 msgid "Page Height (in mm)" @@ -18285,7 +18470,7 @@ msgstr "" #: frappe/printing/doctype/print_format/print_format.json #: frappe/public/js/print_format_builder/PrintFormatControls.vue:63 msgid "Page Number" -msgstr "" +msgstr "Numero di Pagina" #. Label of the page_route (Small Text) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json @@ -18326,19 +18511,19 @@ msgstr "" #: frappe/public/js/frappe/views/container.js:52 frappe/www/404.html:23 msgid "Page not found" -msgstr "" +msgstr "Pagina non trovata" #. Description of a DocType #: frappe/website/doctype/web_page/web_page.json msgid "Page to show on the website\n" -msgstr "" +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:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" -msgstr "" +msgstr "Pagina {0} di {1}" #. Label of the parameter (Data) field in DocType 'SMS Parameter' #: frappe/core/doctype/sms_parameter/sms_parameter.json @@ -18348,21 +18533,21 @@ msgstr "" #: frappe/public/js/frappe/model/model.js:142 #: frappe/public/js/frappe/views/workspace/workspace.js:434 msgid "Parent" -msgstr "" +msgstr "Principale" #. Label of the parent_doctype (Link) field in DocType 'DocType Link' #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Parent DocType" -msgstr "" +msgstr "DocType Principale" #. 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 "Tipo Documento Principale" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "" @@ -18379,27 +18564,27 @@ msgstr "" #. Label of the nsm_parent_field (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype.py:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "" #. Label of the parent_label (Select) field in DocType 'Top Bar Item' #: frappe/website/doctype/top_bar_item/top_bar_item.json msgid "Parent Label" -msgstr "" +msgstr "Etichetta Principale" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 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 "Pagina Principale" #: frappe/core/doctype/data_export/exporter.py:24 msgid "Parent Table" @@ -18449,7 +18634,7 @@ msgstr "" #. Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Pass" -msgstr "" +msgstr "Riuscito" #. Option for the 'Status' (Select) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json @@ -18466,8 +18651,8 @@ msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18477,7 +18662,7 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "" @@ -18490,7 +18675,7 @@ msgstr "" msgid "Password Reset Link Generation Limit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18507,6 +18692,10 @@ msgstr "" msgid "Password is required or select Awaiting Password" msgstr "" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "" @@ -18515,27 +18704,27 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "" #: frappe/www/update-password.html:191 msgid "Password set" -msgstr "" +msgstr "Password impostata" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." msgstr "" #: frappe/www/update-password.html:93 msgid "Passwords do not match" -msgstr "" +msgstr "Le password non corrispondono" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "" @@ -18605,13 +18794,15 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" -msgstr "" +msgstr "In Attesa" #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Request' @@ -18622,13 +18813,13 @@ msgstr "" #. Label of the pending_emails (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Pending Emails" -msgstr "" +msgstr "Email in Sospeso" #. Label of the pending_jobs (Int) field in DocType 'System Health Report #. Queue' #: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json msgid "Pending Jobs" -msgstr "" +msgstr "Processi in Attesa" #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Request' @@ -18684,7 +18875,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "" @@ -18711,7 +18902,7 @@ msgstr "" #. Label of a shortcut in the Users Workspace #: frappe/core/workspace/users/users.json msgid "Permission Manager" -msgstr "" +msgstr "Gestore Permessi" #. Option for the 'Script Type' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json @@ -18744,16 +18935,16 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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 "" +msgstr "Permessi" -#: frappe/core/doctype/doctype/doctype.py:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "" @@ -18782,7 +18973,7 @@ msgstr "" #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.json #: frappe/core/workspace/users/users.json msgid "Permitted Documents For User" -msgstr "" +msgstr "Documenti Consentiti per Utente" #. Label of the permitted_roles (Table MultiSelect) field in DocType 'Workflow #. Action' @@ -18798,7 +18989,7 @@ msgstr "" #. Name of a DocType #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json msgid "Personal Data Deletion Request" -msgstr "" +msgstr "Richiesta di Cancellazione dei Dati Personali" #. Name of a DocType #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -18808,41 +18999,44 @@ msgstr "" #. Name of a DocType #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Personal Data Download Request" -msgstr "" +msgstr "Richiesta di Download dei Dati Personali" #. Label of the phone (Data) field in DocType 'Address' #. Label of the phone (Data) field in DocType 'Contact' #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Phone" -msgstr "" +msgstr "Telefono" #. Label of the phone_no (Data) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Phone No." msgstr "" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "" @@ -18861,7 +19055,7 @@ msgstr "" #: frappe/core/doctype/doctype_state/doctype_state.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json msgid "Pink" -msgstr "" +msgstr "Rosa" #. Label of the placeholder (Data) field in DocType 'DocField' #. Label of the placeholder (Data) field in DocType 'Custom Field' @@ -18880,7 +19074,7 @@ msgstr "" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Plant" -msgstr "" +msgstr "Impianto" #: frappe/email/doctype/email_account/email_account.py:544 msgid "Please Authorize OAuth for Email Account {0}" @@ -18902,11 +19096,11 @@ msgstr "" msgid "Please Set Chart" msgstr "" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "" @@ -18914,7 +19108,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18922,11 +19116,11 @@ msgstr "" msgid "Please attach a file first." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 msgid "Please attach an image file to set HTML for Footer." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "" @@ -18934,19 +19128,15 @@ msgstr "" msgid "Please attach the package" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "" - #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "" -#: frappe/model/base_document.py:951 +#: frappe/model/base_document.py:1008 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "" @@ -18960,7 +19150,7 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.js:23 msgid "Please click Edit on the Workspace for best results" -msgstr "" +msgstr "Per ottenere risultati ottimali, fare clic su Modifica nell'Area di Lavoro" #: frappe/core/doctype/data_import/data_import.js:158 msgid "Please click on 'Export Errored Rows', fix the errors and import again." @@ -18978,11 +19168,11 @@ msgstr "" msgid "Please confirm your action to {0} this document." msgstr "" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "" @@ -18998,20 +19188,20 @@ msgstr "" msgid "Please do not change the template headings." msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "" @@ -19048,7 +19238,7 @@ msgstr "" msgid "Please enter Client Secret before social login is enabled" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "" @@ -19066,7 +19256,7 @@ msgstr "" #: frappe/www/update-password.html:259 msgid "Please enter the password" -msgstr "" +msgstr "Inserisci la password" #: frappe/public/js/frappe/desk.js:217 msgctxt "Email Account" @@ -19079,17 +19269,18 @@ msgstr "" #: frappe/www/update-password.html:142 msgid "Please enter your new password." -msgstr "" +msgstr "Inserisci la tua nuova password." #: frappe/www/update-password.html:135 msgid "Please enter your old password." -msgstr "" +msgstr "Inserisci la tua vecchia password." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "" @@ -19097,11 +19288,11 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "" -#: frappe/model/document.py:988 +#: frappe/model/document.py:992 msgid "Please refresh to get the latest document." msgstr "" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:575 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19117,7 +19308,7 @@ msgstr "" msgid "Please save the document before removing assignment" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "" @@ -19125,7 +19316,7 @@ msgstr "" msgid "Please save to edit the template." msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "" @@ -19133,19 +19324,19 @@ msgstr "" msgid "Please select Entity Type first" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "" @@ -19153,7 +19344,7 @@ msgstr "" msgid "Please select a file or url" msgstr "" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" msgstr "" @@ -19165,7 +19356,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19191,19 +19382,19 @@ msgstr "" msgid "Please set Email Address" msgstr "" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:589 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" -msgstr "" +msgstr "Si prega di impostare i filtri" #: frappe/email/doctype/auto_email_report/auto_email_report.py:263 msgid "Please set filters value in Report Filter table." msgstr "" -#: frappe/model/naming.py:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "" @@ -19215,7 +19406,7 @@ msgstr "" msgid "Please set the series to be used." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -19239,23 +19430,23 @@ msgstr "" msgid "Please specify a valid parent DocType for {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "" @@ -19276,7 +19467,7 @@ msgstr "" msgid "Please use following links to download file backup." msgstr "" -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" @@ -19311,7 +19502,7 @@ msgstr "" #: frappe/email/doctype/email_domain/email_domain.json #: frappe/printing/doctype/network_printer_settings/network_printer_settings.json msgid "Port" -msgstr "" +msgstr "Porta" #. Label of the menu (Table) field in DocType 'Portal Settings' #: frappe/website/doctype/portal_settings/portal_settings.json @@ -19328,9 +19519,9 @@ msgstr "" #: frappe/website/doctype/portal_settings/portal_settings.json #: frappe/website/workspace/website/website.json msgid "Portal Settings" -msgstr "" +msgstr "Impostazioni del Portale" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "" @@ -19358,6 +19549,7 @@ msgstr "" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "" @@ -19366,15 +19558,7 @@ msgstr "" msgid "Posting Timestamp" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19389,7 +19573,11 @@ msgstr "" msgid "Precision" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "" @@ -19437,7 +19625,7 @@ msgstr "" msgid "Prepared Report User" msgstr "" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "" @@ -19445,7 +19633,7 @@ msgstr "" msgid "Preparing Report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "" @@ -19466,27 +19654,20 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 #: frappe/public/js/frappe/ui/capture.js:236 msgid "Preview" -msgstr "" +msgstr "Anteprima" #. Label of the preview_html (HTML) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Preview HTML" msgstr "" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19515,24 +19696,19 @@ msgid "Preview:" msgstr "" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 msgid "Previous" -msgstr "" +msgstr "Precedente" #: frappe/public/js/frappe/ui/slides.js:351 msgctxt "Go to previous slide" msgid "Previous" -msgstr "" +msgstr "Precedente" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "" @@ -19548,7 +19724,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 "Colore Primario" #: frappe/public/js/frappe/form/templates/contact_list.html:23 msgid "Primary Contact" @@ -19578,22 +19754,22 @@ 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:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" -msgstr "" +msgstr "Stampa" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" -msgstr "" +msgstr "Stampa" #: frappe/public/js/frappe/list/bulk_operations.js:48 msgid "Print Documents" @@ -19608,8 +19784,8 @@ 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:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19648,7 +19824,7 @@ msgstr "" #. Label of the print_format_for (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "Print Format For" -msgstr "" +msgstr "Formato Stampa Per" #. Label of the print_format_help (HTML) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json @@ -19660,7 +19836,7 @@ msgstr "" msgid "Print Format Type" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19674,7 +19850,7 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/printing/doctype/print_heading/print_heading.json msgid "Print Heading" -msgstr "" +msgstr "Intestazione di Stampa" #. Label of the print_hide (Check) field in DocType 'DocField' #. Label of the print_hide (Check) field in DocType 'Custom Field' @@ -19699,7 +19875,7 @@ msgstr "" msgid "Print Language" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "" @@ -19716,11 +19892,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" -msgstr "" +msgstr "Impostazioni di Stampa" #. Label of the print_style_section (Section Break) field in DocType 'Print #. Settings' @@ -19765,11 +19941,11 @@ msgstr "" msgid "Print with letterhead" msgstr "" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "" @@ -19779,18 +19955,18 @@ msgstr "" msgid "Printer Name" msgstr "" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "" #. Label of a Card Break in the Tools Workspace #: frappe/automation/workspace/tools/tools.json msgid "Printing" -msgstr "" +msgstr "Stampa" #: frappe/utils/print_format.py:291 msgid "Printing failed" @@ -19808,7 +19984,7 @@ msgstr "" #: frappe/public/js/frappe/form/sidebar/assign_to.js:211 #: frappe/website/doctype/web_page/web_page.json msgid "Priority" -msgstr "" +msgstr "Priorità" #. Label of the private (Check) field in DocType 'Custom HTML Block' #. Option for the 'Event Type' (Select) field in DocType 'Event' @@ -19819,13 +19995,13 @@ msgstr "" #: frappe/desk/doctype/note/note_list.js:8 #: frappe/public/js/frappe/file_uploader/FilePreview.vue:35 msgid "Private" -msgstr "" +msgstr "Privato" #. Label of the private_files_size (Float) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Private Files (MB)" -msgstr "" +msgstr "File Privati (MB)" #: frappe/templates/emails/file_backup_notification.html:6 msgid "Private Files Backup:" @@ -19841,7 +20017,7 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "" @@ -19855,25 +20031,35 @@ msgstr "" #: frappe/desk/page/setup_wizard/install_fixtures.py:51 msgid "Prof" -msgstr "" +msgstr "Prof" #. Group in User's connections #: frappe/core/doctype/user/user.json msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Profilo aggiornato con successo." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" -msgstr "" +msgstr "Progetto" #. Label of the property (Data) field in DocType 'Property Setter' -#: frappe/core/doctype/version/version_view.html:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: frappe/core/doctype/version/version_view.html:13 +#: frappe/core/doctype/version/version_view.html:38 +#: frappe/core/doctype/version/version_view.html:75 #: frappe/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "" @@ -19910,7 +20096,7 @@ msgstr "" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -19918,7 +20104,7 @@ 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 "" +msgstr "Fornisci un elenco delle estensioni di file consentite per il caricamento. Ogni riga deve contenere un tipo di file consentito. Se non impostato, sono consentite tutte le estensioni. Esempio:
    CSV
    JPG
    PNG" #. Label of the provider (Data) field in DocType 'User Social Login' #. Label of the provider (Select) field in DocType 'Geolocation Settings' @@ -19945,13 +20131,13 @@ msgstr "" #: frappe/public/js/frappe/views/interaction.js:78 #: frappe/public/js/frappe/views/workspace/workspace.js:440 msgid "Public" -msgstr "" +msgstr "Pubblico" #. Label of the public_files_size (Float) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Public Files (MB)" -msgstr "" +msgstr "File Pubblici (MB)" #: frappe/templates/emails/file_backup_notification.html:5 msgid "Public Files Backup:" @@ -19959,24 +20145,18 @@ msgstr "" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -19984,22 +20164,13 @@ msgstr "" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/web_page/web_page_list.js:5 msgid "Published" -msgstr "" - -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "" +msgstr "Pubblicato" #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json msgid "Publishing Dates" -msgstr "" +msgstr "Date di Pubblicazione" #: frappe/email/doctype/email_account/email_account.js:208 msgid "Pull Emails" @@ -20034,19 +20205,19 @@ msgstr "" #. Name of a role #: frappe/contacts/doctype/contact/contact.json msgid "Purchase Manager" -msgstr "" +msgstr "Responsabile Acquisti" #. Name of a role #: frappe/contacts/doctype/contact/contact.json msgid "Purchase Master Manager" -msgstr "" +msgstr "Direttore Acquisti" #. Name of a role #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json #: frappe/geo/doctype/currency/currency.json msgid "Purchase User" -msgstr "" +msgstr "Utente Acquisti" #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' @@ -20060,12 +20231,12 @@ msgstr "" #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Push Notification Settings" -msgstr "" +msgstr "Impostazioni Notifica Push" #. Label of a Card Break in the Integrations Workspace #: frappe/integrations/workspace/integrations/integrations.json msgid "Push Notifications" -msgstr "" +msgstr "Notifiche Push" #. Label of the push_to_google_calendar (Check) field in DocType 'Google #. Calendar' @@ -20084,7 +20255,9 @@ msgid "Put on Hold" msgstr "" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "" @@ -20096,9 +20269,9 @@ msgstr "" msgid "QR Code for Login Verification" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " -msgstr "" +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" +msgstr "Errore nel vassoio QZ:" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' @@ -20147,7 +20320,7 @@ msgstr "" msgid "Query analysis complete. Check suggested indexes." msgstr "" -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "" @@ -20218,7 +20391,7 @@ msgstr "" #. Label of the queues (Data) field in DocType 'System Health Report Workers' #: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json msgid "Queues" -msgstr "" +msgstr "Code" #: frappe/desk/doctype/bulk_update/bulk_update.py:85 msgid "Queuing {0} for Submission" @@ -20247,7 +20420,7 @@ msgstr "" msgid "Quick Lists" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20284,12 +20457,6 @@ msgstr "" msgid "Rate Limiting" msgstr "" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20309,7 +20476,7 @@ msgstr "" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "" @@ -20326,7 +20493,7 @@ msgstr "" msgid "Raw Printing" msgstr "" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "" @@ -20343,8 +20510,8 @@ msgid "Re:" msgstr "" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "" @@ -20363,7 +20530,7 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_flag_queue/email_flag_queue.json msgid "Read" -msgstr "" +msgstr "Leggere" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the read_only (Check) field in DocType 'DocField' @@ -20400,27 +20567,22 @@ msgstr "" msgid "Read Only Mode" msgstr "" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" -msgstr "" +msgstr "Letto dal Destinatario" #. 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 "Letto dal Destinatario Il" #: frappe/desk/doctype/note/note.js:10 msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "" @@ -20440,11 +20602,11 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20476,13 +20638,13 @@ 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 "Parametro Ricevente" #: frappe/utils/password_strength.py:123 msgid "Recent years are easy to guess." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "" @@ -20493,6 +20655,14 @@ msgstr "" msgid "Recipient" msgstr "" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20525,7 +20695,7 @@ msgstr "" msgid "Records for following doctypes will be filtered" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "" @@ -20542,6 +20712,11 @@ msgstr "" msgid "Redirect HTTP Status" msgstr "" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20588,7 +20763,7 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:530 msgid "Redo" -msgstr "" +msgstr "Ripeti" #: frappe/public/js/frappe/form/form.js:164 #: frappe/public/js/frappe/form/toolbar.js:538 @@ -20636,6 +20811,11 @@ msgstr "" msgid "Reference Datetime" msgstr "" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20663,7 +20843,6 @@ msgstr "" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20704,9 +20883,9 @@ msgstr "" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20724,9 +20903,9 @@ msgstr "" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20756,7 +20935,6 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -20771,7 +20949,7 @@ msgstr "" #: frappe/core/doctype/comment/comment.json #: frappe/core/doctype/communication/communication.json msgid "Reference Owner" -msgstr "" +msgstr "Proprietario di Riferimento" #. Label of the reference_report (Data) field in DocType 'Report' #. Label of the reference_report (Link) field in DocType 'Onboarding Step' @@ -20804,15 +20982,15 @@ msgstr "" msgid "Referrer" msgstr "" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "" @@ -20826,6 +21004,10 @@ msgstr "" msgid "Refresh Google Sheet" msgstr "" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -20837,18 +21019,18 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "" @@ -20878,7 +21060,7 @@ msgstr "" #. Release' #: frappe/core/doctype/package_release/package_release.json msgid "Release Notes" -msgstr "" +msgstr "Note di Rilascio" #: frappe/core/doctype/communication/communication.js:48 #: frappe/core/doctype/communication/communication.js:159 @@ -20899,19 +21081,19 @@ msgstr "" #: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py #: frappe/public/js/frappe/form/toolbar.js:447 msgid "Reload" -msgstr "" +msgstr "Ricarica" #: frappe/public/js/frappe/form/controls/attach.js:16 msgid "Reload File" -msgstr "" +msgstr "Ricarica File" #: frappe/public/js/frappe/list/base_list.js:249 msgid "Reload List" -msgstr "" +msgstr "Ricarica Elenco" #: frappe/public/js/frappe/views/reports/query_report.js:100 msgid "Reload Report" -msgstr "" +msgstr "Ricarica Report" #. Label of the remember_last_selected_value (Check) field in DocType #. 'DocField' @@ -20930,7 +21112,7 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:479 msgid "Remind Me" -msgstr "" +msgstr "Promemoria" #: frappe/public/js/frappe/form/reminders.js:13 msgid "Remind Me In" @@ -21014,7 +21196,7 @@ msgstr "" #: frappe/public/js/frappe/model/model.js:723 #: frappe/public/js/frappe/views/treeview.js:311 msgid "Rename" -msgstr "" +msgstr "Rinominare" #: frappe/custom/doctype/custom_field/custom_field.js:116 #: frappe/custom/doctype/custom_field/custom_field.js:136 @@ -21025,7 +21207,7 @@ msgstr "" msgid "Rename {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "" @@ -21107,7 +21289,7 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/communication/communication.json msgid "Replied" -msgstr "" +msgstr "Ha risposto" #. Label of the reply (Text Editor) field in DocType 'Discussion Reply' #: frappe/core/doctype/communication/communication.js:57 @@ -21156,12 +21338,12 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" -msgstr "" +msgstr "Report" #. Option for the 'Report Type' (Select) field in DocType 'Report' #. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' @@ -21169,7 +21351,7 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/public/js/frappe/list/list_view_select.js:66 msgid "Report Builder" -msgstr "" +msgstr "Creazione Report" #. Name of a DocType #: frappe/core/doctype/report_column/report_column.json @@ -21215,7 +21397,7 @@ msgstr "" #: frappe/core/doctype/report/report.json #: frappe/email/doctype/auto_email_report/auto_email_report.json msgid "Report Manager" -msgstr "" +msgstr "Responsabile Report" #. Label of the report_name (Data) field in DocType 'Access Log' #. Label of the report_name (Data) field in DocType 'Prepared Report' @@ -21228,11 +21410,11 @@ 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:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" -msgstr "" +msgstr "Nome del Rapporto" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "" @@ -21260,27 +21442,27 @@ msgstr "" #: frappe/public/js/frappe/list/base_list.js:203 msgid "Report View" -msgstr "" +msgstr "Vista Report" #: frappe/public/js/frappe/form/templates/form_sidebar.html:26 msgid "Report bug" -msgstr "" +msgstr "Segnala un problema" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 msgid "Report cannot be set for Single types" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 -#: frappe/desk/doctype/number_card/number_card.js:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21292,24 +21474,24 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "" @@ -21317,7 +21499,7 @@ msgstr "" msgid "Report {0} is disabled" msgstr "" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "" @@ -21328,7 +21510,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:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "" @@ -21336,7 +21518,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "" @@ -21355,7 +21537,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "" @@ -21407,6 +21592,11 @@ msgstr "" msgid "Request URL" msgstr "" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21456,13 +21646,13 @@ msgstr "" #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:39 msgid "Reset Dashboard Customizations" -msgstr "" +msgstr "Reimposta Personalizzazioni Dashboard" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "" @@ -21470,15 +21660,15 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" -msgstr "" +msgstr "Reimposta Password" #. Label of the reset_password_key (Data) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -21509,7 +21699,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21547,6 +21737,7 @@ msgid "Resource TOS URI" msgstr "" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21556,11 +21747,6 @@ msgstr "" msgid "Response" msgstr "" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "" - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21605,21 +21791,21 @@ msgstr "" #: frappe/core/doctype/module_def/module_def.json #: frappe/core/doctype/page/page.json frappe/core/doctype/role/role.json msgid "Restrict To Domain" -msgstr "" +msgstr "Limita Al Dominio" #. 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 "Limita al Dominio" #. Description of the 'Restrict IP' (Small Text) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "" @@ -21653,7 +21839,7 @@ msgstr "" msgid "Reverse Icon Color" msgstr "" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "" @@ -21671,9 +21857,7 @@ msgstr "" msgid "Revoked" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21686,13 +21870,13 @@ msgstr "" #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/website/doctype/web_page/web_page.json msgid "Right" -msgstr "" +msgstr "Destra" #: frappe/printing/page/print_format_builder/print_format_builder.js:484 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:156 msgctxt "alignment" msgid "Right" -msgstr "" +msgstr "Destra" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json @@ -21707,13 +21891,14 @@ msgstr "" #. Label of the robots_txt (Code) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Robots.txt" -msgstr "" +msgstr "Robots.txt" #. Label of the role (Link) field in DocType 'Custom DocPerm' #. Label of the roles (Table) field in DocType 'Custom Role' #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21727,6 +21912,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21738,7 +21924,7 @@ msgstr "" #: frappe/website/doctype/portal_menu_item/portal_menu_item.json #: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json msgid "Role" -msgstr "" +msgstr "Ruolo" #: frappe/core/doctype/role/role.js:8 msgid "Role 'All' will be given to all system + website users." @@ -21753,19 +21939,19 @@ msgstr "" #: frappe/core/doctype/role/role.json #: frappe/core/doctype/role_profile/role_profile.json msgid "Role Name" -msgstr "" +msgstr "Nome del Ruolo" #. Name of a DocType #. Label of a Link in the Users Workspace #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/workspace/users/users.json msgid "Role Permission for Page and Report" -msgstr "" +msgstr "Permessi per Pagina e Report" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "" @@ -21773,12 +21959,12 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:4 #: frappe/core/workspace/users/users.json msgid "Role Permissions Manager" -msgstr "" +msgstr "Gestore Permessi Ruolo" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" -msgstr "" +msgstr "Gestione Permessi Ruolo" #. Name of a DocType #. Label of the role_profile_name (Link) field in DocType 'User' @@ -21789,7 +21975,7 @@ msgstr "" #: frappe/core/doctype/user_role_profile/user_role_profile.json #: frappe/core/workspace/users/users.json msgid "Role Profile" -msgstr "" +msgstr "Tipologia Profilo" #. Label of the role_profiles (Table MultiSelect) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -21818,6 +22004,7 @@ msgstr "" #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -21827,17 +22014,18 @@ msgstr "" #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json #: frappe/desk/doctype/workspace/workspace.json msgid "Roles" -msgstr "" +msgstr "Ruoli" #. Label of the roles_permissions_tab (Tab Break) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Roles & Permissions" -msgstr "" +msgstr "Ruoli e Permessi" #. Label of the roles (Table) field in DocType 'Role Profile' #. Label of the roles (Table) field in DocType 'User' @@ -21863,14 +22051,14 @@ msgstr "" msgid "Roles can be set for users from their User page." msgstr "" -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "" #. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Round Robin" -msgstr "" +msgstr "Round Robin" #. Label of the rounding_method (Select) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -21883,8 +22071,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -21896,8 +22082,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -21915,31 +22099,31 @@ 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 "Reindirizzamenti Percorso" #. Description of the 'Home Page' (Data) field in DocType 'Role' #: frappe/core/doctype/role/role.json msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "" @@ -21948,11 +22132,6 @@ msgstr "" msgid "Row Format" msgstr "" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "" - #. Label of the row_indexes (Code) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Row Indexes" @@ -21967,7 +22146,7 @@ msgstr "" msgid "Row Number" msgstr "" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "" @@ -21975,37 +22154,40 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Added" msgstr "" #. Label of the rows_removed_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" #. Label of the rule (Select) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Rule" -msgstr "" +msgstr "Regola" #. Label of the section_break_3 (Section Break) field in DocType 'Document #. Naming Rule' @@ -22070,7 +22252,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 "" +msgstr "URL Gateway SMS" #. Name of a DocType #: frappe/core/doctype/sms_log/sms_log.json @@ -22087,9 +22269,9 @@ msgstr "" #: frappe/core/doctype/sms_settings/sms_settings.json #: frappe/integrations/workspace/integrations/integrations.json msgid "SMS Settings" -msgstr "" +msgstr "Impostazioni SMS" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "" @@ -22104,7 +22286,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json msgid "SQL" -msgstr "" +msgstr "SQL" #. Description of the 'Condition' (Small Text) field in DocType 'Bulk Update' #: frappe/desk/doctype/bulk_update/bulk_update.json @@ -22144,7 +22326,7 @@ msgstr "" #. Name of a role #: frappe/contacts/doctype/contact/contact.json msgid "Sales Master Manager" -msgstr "" +msgstr "Direttore Vendite" #. Name of a role #: frappe/contacts/doctype/address/address.json @@ -22167,7 +22349,7 @@ msgstr "" msgid "Salutation" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "" @@ -22195,20 +22377,20 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22217,28 +22399,24 @@ msgstr "" msgid "Save" msgstr "" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" -msgstr "" +msgstr "Salva Con Nome" #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:63 msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "" @@ -22257,26 +22435,26 @@ msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 #: frappe/public/js/frappe/views/workspace/workspace.js:684 msgid "Saved" -msgstr "" +msgstr "Salvato" #: frappe/public/js/frappe/list/list_sidebar.html:88 msgid "Saved Filters" -msgstr "" +msgstr "Filtri Salvati" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" -msgstr "" +msgstr "Salvataggio" #: frappe/public/js/frappe/form/save.js:9 msgctxt "Freeze message while saving a document" msgid "Saving" -msgstr "" +msgstr "Risparmio" #: frappe/custom/doctype/customize_form/customize_form.js:411 msgid "Saving Customization..." -msgstr "" +msgstr "Salvataggio della Personalizzazione..." #: frappe/desk/doctype/module_onboarding/module_onboarding.js:8 msgid "Saving this will export this document as well as the steps linked here as json." @@ -22286,7 +22464,7 @@ msgstr "" #: frappe/public/js/print_format_builder/store.js:36 #: frappe/public/js/workflow_builder/store.js:73 msgid "Saving..." -msgstr "" +msgstr "Risparmio..." #: frappe/public/js/frappe/scanner/index.js:72 msgid "Scan QRCode" @@ -22303,7 +22481,7 @@ msgstr "" #: frappe/public/js/frappe/views/communication.js:97 msgid "Schedule Send At" -msgstr "" +msgstr "Pianifica Invio" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' @@ -22335,14 +22513,14 @@ msgstr "" #: frappe/core/workspace/build/build.json #: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json msgid "Scheduled Job Type" -msgstr "" +msgstr "Tipo di Processo Pianificato" #. Label of a Link in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Scheduled Jobs Logs" -msgstr "" +msgstr "Log Processi Pianificati" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "" @@ -22365,20 +22543,20 @@ msgstr "" msgid "Scheduler Event" msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "" #. Label of the scheduler_status (Data) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Scheduler Status" -msgstr "" +msgstr "Stato Scheduler" #: frappe/utils/scheduler.py:247 msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "" @@ -22433,7 +22611,7 @@ msgstr "" #. Name of a role #: frappe/core/doctype/server_script/server_script.json msgid "Script Manager" -msgstr "" +msgstr "Gestore Script" #. Option for the 'Report Type' (Select) field in DocType 'Report' #: frappe/core/doctype/report/report.json @@ -22455,7 +22633,7 @@ msgstr "" #: frappe/core/workspace/build/build.json #: frappe/website/doctype/web_page/web_page.json msgid "Scripting" -msgstr "" +msgstr "Script" #. Label of the section_break_6 (Section Break) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json @@ -22504,13 +22682,13 @@ msgstr "" #: frappe/public/js/frappe/file_uploader/FileBrowser.vue:132 msgid "Search Results" -msgstr "" +msgstr "Risultati della Ricerca" #: frappe/public/js/frappe/file_uploader/FileBrowser.vue:13 msgid "Search by filename or extension" -msgstr "" +msgstr "Cerca per nome file o estensione" -#: frappe/core/doctype/doctype/doctype.py:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "" @@ -22538,7 +22716,7 @@ msgstr "" #: frappe/public/js/frappe/ui/toolbar/navbar.html:29 msgid "Search or type a command ({0})" -msgstr "" +msgstr "Cerca o digita un comando ({0})" #: frappe/public/js/form_builder/components/SearchBox.vue:8 msgid "Search properties..." @@ -22610,7 +22788,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "" @@ -22619,10 +22797,10 @@ msgstr "" msgid "See on Website" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" -msgstr "" +msgstr "Vedi le risposte precedenti" #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:49 msgid "See the document at {0}" @@ -22666,36 +22844,36 @@ 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/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" -msgstr "" +msgstr "Seleziona" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" -msgstr "" +msgstr "Seleziona Tutto" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" -msgstr "" +msgstr "Seleziona Allegati" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 msgid "Select Column" msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "" @@ -22737,7 +22915,7 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:179 msgid "Select Document Type or Role to start." -msgstr "" +msgstr "Selezionare Tipo di documento o Ruolo per iniziare." #: frappe/core/page/permission_manager/permission_manager_help.html:34 msgid "Select Document Types to set which User Permissions are used to limit access." @@ -22754,12 +22932,15 @@ msgstr "" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "" @@ -22770,9 +22951,9 @@ msgstr "" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:21 msgid "Select Filters" -msgstr "" +msgstr "Seleziona Filtri" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "" @@ -22805,8 +22986,8 @@ msgstr "" msgid "Select Module" msgstr "" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "" @@ -22871,14 +23052,14 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." +msgid "Select a group {0} first." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 msgid "Select a valid Subject field for creating documents from Email" msgstr "" @@ -22888,7 +23069,7 @@ msgstr "" #: frappe/www/apps.html:10 msgid "Select an app to continue" -msgstr "" +msgstr "Seleziona un'app per continuare" #: frappe/printing/page/print_format_builder/print_format_builder_start.html:2 msgid "Select an existing format to edit or start a new format." @@ -22898,7 +23079,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 "" +msgstr "Per risultati ottimali, seleziona un'immagine di circa 150px di larghezza con sfondo trasparente." #: frappe/public/js/frappe/list/bulk_operations.js:36 msgid "Select atleast 1 record for printing" @@ -22908,13 +23089,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22948,18 +23129,18 @@ msgstr "" msgid "Select {0}" msgstr "" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "" #: frappe/www/contact.html:41 msgid "Send" -msgstr "" +msgstr "Invia" #: frappe/public/js/frappe/views/communication.js:26 msgctxt "Send Email" msgid "Send" -msgstr "" +msgstr "Invia" #. Description of the 'Minutes Offset' (Int) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json @@ -22971,7 +23152,7 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/email/doctype/email_queue/email_queue.json msgid "Send After" -msgstr "" +msgstr "Invia Dopo" #. Label of the event (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json @@ -23032,7 +23213,7 @@ msgstr "" #: frappe/public/js/frappe/views/communication.js:150 msgid "Send Read Receipt" -msgstr "" +msgstr "Invia Ricevuta di Lettura" #. Label of the send_system_notification (Check) field in DocType #. 'Notification' @@ -23048,7 +23229,7 @@ msgstr "" #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Send Welcome Email" -msgstr "" +msgstr "Invia Email di Benvenuto" #. Description of the 'Reference Date' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json @@ -23095,7 +23276,7 @@ msgstr "" #: frappe/public/js/frappe/views/communication.js:144 msgid "Send me a copy" -msgstr "" +msgstr "Inviami una copia" #. Label of the send_if_data (Check) field in DocType 'Auto Email Report' #: frappe/email/doctype/auto_email_report/auto_email_report.json @@ -23118,7 +23299,7 @@ msgstr "" #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/notification/notification.json msgid "Sender" -msgstr "" +msgstr "Mittente" #. Label of the sender_email (Data) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json @@ -23132,7 +23313,7 @@ msgstr "" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "" @@ -23151,7 +23332,7 @@ msgstr "" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Sendgrid" -msgstr "" +msgstr "Sendgrid" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #. Option for the 'Status' (Select) field in DocType 'Email Queue' @@ -23185,7 +23366,7 @@ msgstr "" #. Label of the read_receipt (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Sent Read Receipt" -msgstr "" +msgstr "Conferma di Lettura Inviata" #. Label of the sent_to (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json @@ -23195,7 +23376,7 @@ msgstr "" #. Label of the sent_or_received (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Sent or Received" -msgstr "" +msgstr "Inviato o Ricevuto" #. Option for the 'Event Category' (Select) field in DocType 'Event' #: frappe/desk/doctype/event/event.json @@ -23210,7 +23391,7 @@ msgstr "" #. Label of the sequence_id (Float) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Sequence Id" -msgstr "" +msgstr "Id Sequenza" #. Label of the naming_series_options (Text) field in DocType 'Document Naming #. Settings' @@ -23226,7 +23407,7 @@ msgstr "" msgid "Series counter for {} updated to {} successfully" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "" @@ -23236,7 +23417,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23253,9 +23434,9 @@ msgstr "" #: frappe/core/doctype/server_script/server_script.json #: frappe/core/workspace/build/build.json msgid "Server Script" -msgstr "" +msgstr "Script Server" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23287,7 +23468,7 @@ msgstr "" #. Name of a DocType #: frappe/core/doctype/session_default_settings/session_default_settings.json msgid "Session Default Settings" -msgstr "" +msgstr "Impostazioni Sessione Predefinita" #. Label of a standard navbar item #. Type: Action @@ -23296,13 +23477,13 @@ msgstr "" #: frappe/core/doctype/session_default_settings/session_default_settings.json #: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 msgid "Session Defaults" -msgstr "" +msgstr "Predefiniti Sessione" #: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 msgid "Session Defaults Saved" -msgstr "" +msgstr "Predefiniti Sessione Salvati" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "" @@ -23311,14 +23492,14 @@ msgstr "" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "" @@ -23341,15 +23522,15 @@ 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 "" +msgstr "Imposta le opzioni predefinite per tutti i grafici su questa dashboard (es: \"colori\": [\"#d1d8dd\", \"#ff5858\"])" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23360,7 +23541,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23412,28 +23593,28 @@ 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 "Imposta Ruolo Per" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" -msgstr "" +msgstr "Imposta Autorizzazioni Utente" #. Label of the value (Small Text) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Set Value" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" -msgstr "" +msgstr "Imposta come privato" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" -msgstr "" +msgstr "Imposta tutto come pubblico" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "" @@ -23452,18 +23633,21 @@ msgstr "" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "" -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23538,12 +23722,12 @@ msgstr "" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/workspace/website/website.json frappe/www/me.html:20 msgid "Settings" -msgstr "" +msgstr "Impostazioni" #. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings' #: frappe/core/doctype/navbar_settings/navbar_settings.json msgid "Settings Dropdown" -msgstr "" +msgstr "Menu Impostazioni" #. Description of a DocType #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -23555,14 +23739,9 @@ msgstr "" msgid "Settings for the About Us Page" msgstr "" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "" @@ -23578,10 +23757,10 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" -msgstr "" +msgstr "Imposta E-mail Automatica" #. Label of the setup_complete (Check) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -23611,7 +23790,7 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/public/js/frappe/form/templates/form_sidebar.html:90 msgid "Share" -msgstr "" +msgstr "Condividi" #: frappe/public/js/frappe/form/sidebar/share.js:107 msgid "Share With" @@ -23619,11 +23798,11 @@ msgstr "" #: frappe/public/js/frappe/form/templates/set_sharing.html:49 msgid "Share this document with" -msgstr "" +msgstr "Condividi questo documento con" #: frappe/public/js/frappe/form/sidebar/share.js:45 msgid "Share {0} with" -msgstr "" +msgstr "Condividi {0} con" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json @@ -23641,17 +23820,12 @@ msgstr "" #: frappe/public/js/frappe/form/templates/address_list.html:31 msgid "Shipping Address" -msgstr "" +msgstr "indirizzo di spedizione" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json msgid "Shop" -msgstr "" - -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "" +msgstr "Negozio" #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" @@ -23662,7 +23836,7 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/public/js/frappe/form/grid_row_form.js:42 msgid "Shortcuts" -msgstr "" +msgstr "Scorciatoie" #: frappe/public/js/frappe/widgets/base_widget.js:46 #: frappe/public/js/frappe/widgets/base_widget.js:178 @@ -23670,12 +23844,7 @@ msgstr "" #: frappe/www/update-password.html:49 frappe/www/update-password.html:60 #: frappe/www/update-password.html:120 msgid "Show" -msgstr "" - -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "" +msgstr "Mostra" #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' @@ -23689,11 +23858,11 @@ 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 "Mostra Valori Assoluti" #: frappe/public/js/frappe/form/templates/form_sidebar.html:73 msgid "Show All" -msgstr "" +msgstr "Mostra Tutto" #. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth #. Settings' @@ -23729,7 +23898,13 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23762,7 +23937,7 @@ msgstr "" #: frappe/public/js/frappe/ui/keyboard.js:234 msgid "Show Keyboard Shortcuts" -msgstr "" +msgstr "Mostra Scorciatoie Tastiera" #. Label of the show_labels (Check) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json @@ -23774,21 +23949,21 @@ msgstr "" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Show Language Picker" -msgstr "" +msgstr "Mostra Selettore Lingua" #. 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 "Mostra Interruzioni di Riga dopo le Sezioni" #: frappe/public/js/frappe/form/toolbar.js:410 msgid "Show Links" -msgstr "" +msgstr "Mostra Collegamenti" #. 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 "Mostra Solo i Log con Errori" #. Label of the show_percentage_stats (Check) field in DocType 'Number Card' #: frappe/desk/doctype/number_card/number_card.json @@ -23797,7 +23972,7 @@ msgstr "" #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30 msgid "Show Permissions" -msgstr "" +msgstr "Mostra Permessi" #: frappe/public/js/form_builder/form_builder.bundle.js:31 #: frappe/public/js/form_builder/form_builder.bundle.js:43 @@ -23843,12 +24018,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 "Mostra Intestazioni di Sezione" #. Label of the show_sidebar (Check) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Show Sidebar" -msgstr "" +msgstr "Mostra Barra Laterale" #. Label of the show_social_login_key_as_authorization_server (Check) field in #. DocType 'OAuth Settings' @@ -23857,14 +24032,14 @@ msgid "Show Social Login Key as Authorization Server" msgstr "" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "" #. Label of the show_title (Check) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Show Title" -msgstr "" +msgstr "Mostra Titolo" #. 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 @@ -23874,7 +24049,7 @@ msgstr "" msgid "Show Title in Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "" @@ -23890,7 +24065,7 @@ msgstr "" #. Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Show Values over Chart" -msgstr "" +msgstr "Mostra Valori sul Grafico" #: frappe/public/js/frappe/data_import/import_preview.js:204 msgid "Show Warnings" @@ -23904,7 +24079,7 @@ msgstr "" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Show account deletion link in My Account page" -msgstr "" +msgstr "Mostra il link per l'eliminazione dell'account nella pagina Il Mio Account" #: frappe/core/doctype/version/version.js:6 msgid "Show all Versions" @@ -23914,10 +24089,6 @@ msgstr "" msgid "Show all activity" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "" - #. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" @@ -23932,7 +24103,7 @@ msgstr "" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Show footer on login" -msgstr "" +msgstr "Mostra piè di pagina all'accesso" #. Description of the 'Show Full Form?' (Check) field in DocType 'Onboarding #. Step' @@ -23966,8 +24137,8 @@ msgstr "" msgid "Show list" msgstr "" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "" @@ -23990,15 +24161,15 @@ msgstr "" #. Description of the 'Title Prefix' (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Show title in browser window as \"Prefix - title\"" -msgstr "" +msgstr "Mostra il titolo nella finestra del browser come \"Prefisso - titolo\"" #: frappe/public/js/frappe/widgets/onboarding_widget.js:148 msgid "Show {0} List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" -msgstr "" +msgstr "Mostra solo Campi numerici dal Report" #: frappe/public/js/frappe/data_import/import_preview.js:153 msgid "Showing only first {0} rows out of {1}" @@ -24023,7 +24194,7 @@ msgstr "" #. Label of the section_break_17 (Section Break) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Sidebar and Comments" -msgstr "" +msgstr "Barra Laterale e Commenti" #. Label of the sign_up_and_confirmation_section (Section Break) field in #. DocType 'Email Group' @@ -24031,7 +24202,7 @@ msgstr "" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "" @@ -24068,22 +24239,22 @@ msgstr "" msgid "Signups have been disabled for this website." msgstr "" -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" msgstr "" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" msgstr "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' @@ -24091,13 +24262,13 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "" #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "" @@ -24105,9 +24276,9 @@ msgstr "" msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "" -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" -msgstr "" +msgstr "Taglia" #. Label of the size (Float) field in DocType 'System Health Report Tables' #: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json @@ -24161,12 +24332,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 "" +msgstr "Skype" #. Option for the 'Channel' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Slack" -msgstr "" +msgstr "Slack" #. Label of the slack_webhook_url (Link) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json @@ -24182,13 +24353,13 @@ msgstr "" #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Slack Webhook URL" -msgstr "" +msgstr "Webhook URL Slack" #. Label of the slideshow (Link) field in DocType 'Web Page' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Slideshow" -msgstr "" +msgstr "Slideshow" #. Label of the slideshow_items (Table) field in DocType 'Website Slideshow' #: frappe/website/doctype/website_slideshow/website_slideshow.json @@ -24212,7 +24383,7 @@ msgstr "" #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json msgid "Slug" -msgstr "" +msgstr "Slug" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' @@ -24259,7 +24430,7 @@ msgstr "" #: frappe/integrations/doctype/social_login_key/social_login_key.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Social Login Key" -msgstr "" +msgstr "Chiave Accesso Social" #. Label of the social_login_provider (Select) field in DocType 'Social Login #. Key' @@ -24324,11 +24495,11 @@ msgstr "" msgid "Something went wrong." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 msgid "Sorry! I could not find what you were looking for." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "" @@ -24359,20 +24530,23 @@ msgstr "" msgid "Sort Order" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 msgid "Sort field {0} must be a valid fieldname" msgstr "" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' -#: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "Codice Sorgente" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24382,21 +24556,27 @@ msgstr "" #: frappe/core/doctype/translation/translation.json #: frappe/public/js/frappe/views/translation_manager.js:38 msgid "Source Text" -msgstr "" +msgstr "Testo Originale" #: frappe/public/js/frappe/views/workspace/blocks/spacer.js:23 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:174 msgid "Spacer" -msgstr "" +msgstr "Separatore" #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Spam" -msgstr "" +msgstr "Spam" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "SparkPost" +msgstr "SparkPost" + +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" msgstr "" #: frappe/custom/doctype/custom_field/custom_field.js:83 @@ -24421,13 +24601,13 @@ 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 "" +msgstr "Immagine Iniziale" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" -msgstr "" +msgstr "Sig" #: frappe/public/js/print_format_builder/Field.vue:143 #: frappe/public/js/print_format_builder/Field.vue:164 @@ -24454,13 +24634,13 @@ msgstr "" #: frappe/printing/doctype/print_style/print_style.json #: frappe/website/doctype/web_template/web_template.json msgid "Standard" -msgstr "" +msgstr "Standard" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "" @@ -24470,9 +24650,9 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:132 msgid "Standard Permissions" -msgstr "" +msgstr "Autorizzazioni Standard" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "" @@ -24480,11 +24660,11 @@ msgstr "" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "" -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "" @@ -24516,8 +24696,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:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "" @@ -24525,7 +24705,7 @@ msgstr "" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24552,7 +24732,7 @@ msgstr "" #: frappe/templates/includes/comments/comments.html:8 msgid "Start a new discussion" -msgstr "" +msgstr "Inizia una nuova discussione" #: frappe/core/doctype/data_export/exporter.py:22 msgid "Start entering data below this line" @@ -24565,7 +24745,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 "" +msgstr "StartTLS" #. Option for the 'Status' (Select) field in DocType 'Prepared Report' #: frappe/core/doctype/prepared_report/prepared_report.json @@ -24590,6 +24770,7 @@ msgstr "" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24598,7 +24779,7 @@ msgstr "" msgid "State" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "" @@ -24621,7 +24802,7 @@ msgstr "" #. Label of the parameters (Table) field in DocType 'SMS Settings' #: frappe/core/doctype/sms_settings/sms_settings.json msgid "Static Parameters" -msgstr "" +msgstr "Parametri Statici" #. Label of the statistics_section (Section Break) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json @@ -24654,6 +24835,7 @@ msgstr "" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24678,6 +24860,7 @@ msgstr "" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24685,17 +24868,17 @@ msgstr "" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "Status" -msgstr "" +msgstr "Stati" #: frappe/www/update-password.html:188 msgid "Status Updated" -msgstr "" +msgstr "Stato Aggiornato" #: frappe/email/doctype/email_queue/email_queue.js:37 msgid "Status Updated. The email will be picked up in the next scheduled run." @@ -24708,7 +24891,7 @@ 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 "" +msgstr "Fase" #. Label of the steps (Table) field in DocType 'Form Tour' #. Label of the steps (Table) field in DocType 'Module Onboarding' @@ -24723,18 +24906,18 @@ msgstr "" #. Label of the sticky (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" #: frappe/core/doctype/recorder/recorder_list.js:87 msgid "Stop" -msgstr "" +msgstr "Stop" #. Label of the stopped (Check) field in DocType 'Scheduled Job Type' #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json msgid "Stopped" -msgstr "" +msgstr "Arrestato" #. Label of the db_storage_usage (Float) field in DocType 'System Health #. Report' @@ -24745,7 +24928,7 @@ msgstr "" #. Label of the top_db_tables (Table) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Storage Usage By Table" -msgstr "" +msgstr "Spazio Usato Per Tabella" #. Label of the store_attached_pdf_document (Check) field in DocType 'System #. Settings' @@ -24753,6 +24936,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +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." @@ -24772,7 +24959,7 @@ msgstr "" #. DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Strip EXIF tags from uploaded images" -msgstr "" +msgstr "Rimuovi i tag EXIF dalle immagini caricate" #: frappe/public/js/frappe/form/controls/password.js:89 msgid "Strong" @@ -24783,7 +24970,7 @@ msgstr "" #: frappe/website/doctype/web_page/web_page.json #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Style" -msgstr "" +msgstr "Stile" #. Label of the section_break_9 (Section Break) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json @@ -24798,7 +24985,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 "" +msgstr "Stile" #. Description of the 'Fraction' (Data) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json @@ -24809,7 +24996,7 @@ msgstr "" #. Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Sub-domain provided by erpnext.com" -msgstr "" +msgstr "Sottodominio fornito da erpnext.com" #. Label of the subdomain (Small Text) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json @@ -24831,12 +25018,12 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 msgid "Subject" -msgstr "" +msgstr "Soggetto" #. Label of the subject_field (Data) field in DocType 'DocType' #. Label of the subject_field (Data) field in DocType 'Customize Form' @@ -24847,7 +25034,7 @@ msgstr "" msgid "Subject Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "" @@ -24861,6 +25048,7 @@ msgstr "" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24869,33 +25057,34 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" -msgstr "" +msgstr "Conferma" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" -msgstr "" +msgstr "Conferma" #: frappe/website/doctype/web_form/templates/web_form.html:47 msgctxt "Button in web form" msgid "Submit" -msgstr "" +msgstr "Conferma" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" -msgstr "" +msgstr "Conferma" #: frappe/public/js/frappe/ui/messages.js:97 msgctxt "Primary action of prompt dialog" msgid "Submit" -msgstr "" +msgstr "Conferma" #: frappe/public/js/frappe/desk.js:227 msgctxt "Submit password for Email Account" msgid "Submit" -msgstr "" +msgstr "Conferma" #. Label of the submit_after_import (Check) field in DocType 'Data Import' #: frappe/core/doctype/data_import/data_import.json @@ -24906,7 +25095,7 @@ msgstr "" msgid "Submit an Issue" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "" @@ -24918,7 +25107,7 @@ msgstr "" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "" @@ -24930,7 +25119,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24939,11 +25128,11 @@ msgstr "" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" -msgstr "" +msgstr "Confermato" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "" @@ -24966,9 +25155,7 @@ msgid "Subsidiary" msgstr "" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "" @@ -24982,7 +25169,7 @@ msgstr "" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -24992,7 +25179,7 @@ msgstr "" #: frappe/workflow/doctype/workflow_action/workflow_action.py:171 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Success" -msgstr "" +msgstr "Completato" #. Name of a DocType #: frappe/core/doctype/success_action/success_action.json @@ -25024,20 +25211,16 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "" - #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" msgstr "" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "" @@ -25079,7 +25262,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "" @@ -25122,7 +25305,7 @@ msgstr "" #: frappe/public/js/frappe/ui/capture.js:276 msgid "Switch Camera" -msgstr "" +msgstr "Cambia Fotocamera" #: frappe/public/js/frappe/desk.js:96 #: frappe/public/js/frappe/ui/theme_switcher.js:11 @@ -25139,7 +25322,7 @@ msgstr "" #: frappe/public/js/frappe/ui/capture.js:281 msgid "Switching Camera" -msgstr "" +msgstr "Cambio Fotocamera" #. Label of the symbol (Data) field in DocType 'Currency' #: frappe/geo/doctype/currency/currency.json @@ -25151,7 +25334,7 @@ msgstr "" #: frappe/integrations/doctype/google_calendar/google_calendar.json #: frappe/integrations/doctype/google_contacts/google_contacts.json msgid "Sync" -msgstr "" +msgstr "Sincronizza" #: frappe/integrations/doctype/google_calendar/google_calendar.js:28 msgid "Sync Calendar" @@ -25201,7 +25384,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25224,12 +25407,12 @@ msgstr "" #. Type: Route #: frappe/hooks.py msgid "System Health" -msgstr "" +msgstr "Stato Sistema" #. Name of a DocType #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "System Health Report" -msgstr "" +msgstr "Rapporto Stato del Sistema" #. Name of a DocType #: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json @@ -25259,7 +25442,7 @@ msgstr "" #. Label of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json msgid "System Logs" -msgstr "" +msgstr "Log di Sistema" #. Name of a role #: frappe/automation/doctype/assignment_rule/assignment_rule.json @@ -25324,6 +25507,7 @@ msgstr "" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25406,8 +25590,9 @@ msgstr "" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" -msgstr "" +msgstr "Amministratore Sistema" #: frappe/desk/page/backups/backups.js:38 msgid "System Manager privileges required." @@ -25421,7 +25606,7 @@ msgstr "" #. Label of the system_page (Check) field in DocType 'Page' #: frappe/core/doctype/page/page.json msgid "System Page" -msgstr "" +msgstr "Pagina di Sistema" #. Name of a DocType #: frappe/core/doctype/system_settings/system_settings.json @@ -25437,7 +25622,7 @@ msgstr "" #: frappe/public/js/frappe/utils/number_systems.js:5 msgctxt "Number system" msgid "T" -msgstr "" +msgstr "T" #. Label of the tos_uri (Data) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -25479,7 +25664,7 @@ msgstr "" msgid "Table Break" msgstr "" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "" @@ -25488,7 +25673,7 @@ msgstr "" msgid "Table Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "" @@ -25510,18 +25695,18 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 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 "" +msgstr "Quotidiano" #. Name of a DocType #: frappe/desk/doctype/tag/tag.json @@ -25543,23 +25728,30 @@ msgstr "" #: frappe/public/js/frappe/model/model.js:133 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:171 msgid "Tags" -msgstr "" +msgstr "Etichette" #: frappe/public/js/frappe/ui/capture.js:220 msgid "Take Photo" -msgstr "" +msgstr "Scatta Foto" #. Label of the target (Data) field in DocType 'Portal Menu Item' #. Label of the target (Small Text) field in DocType 'Website Route Redirect' #: frappe/website/doctype/portal_menu_item/portal_menu_item.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json msgid "Target" -msgstr "" +msgstr "Destinazione" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" -msgstr "" +msgstr "Compito" + +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "Attività" #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' @@ -25595,7 +25787,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 "Modelli" #: frappe/core/doctype/data_import/importer.py:483 #: frappe/core/doctype/data_import/importer.py:610 @@ -25622,7 +25814,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "" @@ -25656,17 +25848,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 "" +msgstr "Testo" #. Label of the text_align (Select) field in DocType 'Web Page' #: frappe/website/doctype/web_page/web_page.json msgid "Text Align" -msgstr "" +msgstr "Allineamento del Testo" #. Label of the text_color (Link) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Text Color" -msgstr "" +msgstr "Colore del Testo" #. Label of the text_content (Code) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json @@ -25694,7 +25886,7 @@ msgid "Thank you for reaching out to us. We will get back to you at the earliest "{0}" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "" @@ -25718,7 +25910,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "" @@ -25729,15 +25921,15 @@ msgid "The Client ID obtained from the Google Cloud Console under " msgstr "" -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." msgstr "" @@ -25751,7 +25943,7 @@ msgstr "" #: frappe/public/js/frappe/desk.js:162 msgid "The application has been updated to a new version, please refresh this page" -msgstr "" +msgstr "L'applicazione è stata aggiornata a una nuova versione, è necessario ricaricare la pagina" #. Description of the 'Application Name' (Data) field in DocType 'System #. Settings' @@ -25778,7 +25970,7 @@ msgstr "" msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "" -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "" @@ -25786,7 +25978,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:658 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25816,7 +26008,7 @@ msgstr "" msgid "The field {0} is mandatory" msgstr "" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "" @@ -25873,7 +26065,7 @@ msgstr "" #: frappe/www/update-password.html:101 msgid "The password of your account has expired." -msgstr "" +msgstr "La password del tuo account è scaduta." #: 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." @@ -25886,15 +26078,19 @@ msgid "The project number obtained from Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

    Click here to download:
    {0}

    This link will expire in {1} hours." +msgstr "" + +#: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:995 +#: frappe/core/doctype/user/user.py:1002 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25906,7 +26102,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:338 +#: frappe/utils/response.py:336 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25927,7 +26123,7 @@ msgstr "" msgid "The webhook will be triggered if this expression is true" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "" @@ -25938,7 +26134,7 @@ msgstr "" #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/doctype/website_theme/website_theme.json msgid "Theme" -msgstr "" +msgstr "Tema" #: frappe/public/js/frappe/ui/theme_switcher.js:130 msgid "Theme Changed" @@ -25948,7 +26144,7 @@ msgstr "" #. Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Theme Configuration" -msgstr "" +msgstr "Configurazione del Tema" #. Label of the theme_url (Data) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json @@ -25961,22 +26157,22 @@ msgstr "" #: frappe/public/js/frappe/ui/notifications/notifications.js:442 msgid "There are no upcoming events for you." -msgstr "" +msgstr "Non ci sono eventi in programma per te." #: frappe/website/web_template/discussions/discussions.html:3 msgid "There are no {0} for this {1}, why don't you start one!" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "" @@ -25988,15 +26184,19 @@ msgstr "" msgid "There is no data to be exported" msgstr "" -#: frappe/public/js/frappe/ui/notifications/notifications.js:492 -msgid "There is nothing new to show you right now." +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" msgstr "" -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/public/js/frappe/ui/notifications/notifications.js:492 +msgid "There is nothing new to show you right now." +msgstr "Al momento non c'è nulla di nuovo da mostrare." + +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26008,9 +26208,9 @@ msgstr "" msgid "There was an error building this page" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" -msgstr "" +msgstr "Si è verificato un errore durante il salvataggio dei filtri" #: frappe/public/js/frappe/form/sidebar/attachments.js:216 msgid "There were errors" @@ -26020,11 +26220,11 @@ msgstr "" msgid "There were errors while creating the document. Please try again." msgstr "" -#: frappe/public/js/frappe/views/communication.js:840 +#: frappe/public/js/frappe/views/communication.js:843 msgid "There were errors while sending email. Please try again." msgstr "" -#: frappe/model/naming.py:494 +#: frappe/model/naming.py:502 msgid "There were some errors setting the name, please contact the administrator" msgstr "" @@ -26032,7 +26232,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 "" +msgstr "Questi annunci appariranno all'interno di un avviso ignorabile sotto la barra di navigazione." #. Description of the 'Metadata' (Section Break) field in DocType 'OAuth #. Settings' @@ -26053,7 +26253,7 @@ msgstr "" #: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14 msgid "Third Party Apps" -msgstr "" +msgstr "App di Terze Parti" #. Label of the third_party_authentication (Section Break) field in DocType #. 'User' @@ -26065,7 +26265,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "" @@ -26073,6 +26273,10 @@ msgstr "" msgid "This Month" msgstr "" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "" @@ -26098,6 +26302,11 @@ msgstr "" msgid "This cannot be undone" msgstr "" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +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" @@ -26106,17 +26315,17 @@ 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 "Questo grafico sarà disponibile a tutti gli utenti se questa opzione è impostata" #: frappe/custom/doctype/customize_form/customize_form.js:212 msgid "This doctype has no orphan fields to trim" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26126,7 +26335,7 @@ msgstr "" #: frappe/public/js/frappe/form/form.js:1305 msgid "This document has unsaved changes which might not appear in final PDF.
    Consider saving the document before printing." -msgstr "" +msgstr "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:1102 msgid "This document is already amended, you cannot ammend it again" @@ -26147,7 +26356,7 @@ msgstr "" #: frappe/public/js/frappe/form/templates/form_sidebar.html:23 msgid "This feature is brand new and still experimental" -msgstr "" +msgstr "Questa funzionalità è completamente nuova e ancora sperimentale" #. Description of the 'Depends On' (Code) field in DocType 'Customize Form #. Field' @@ -26158,7 +26367,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26174,7 +26383,7 @@ msgstr "" msgid "This form has been modified after you have loaded it" msgstr "" -#: frappe/public/js/frappe/form/form.js:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "" @@ -26193,7 +26402,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26217,12 +26426,6 @@ msgstr "" msgid "This is an automatically generated reply" msgstr "" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "" - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "" @@ -26241,7 +26444,7 @@ msgstr "" msgid "This link is invalid or expired. Please make sure you have pasted correctly." msgstr "" -#: frappe/printing/page/print/print.js:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "" @@ -26249,7 +26452,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26257,7 +26460,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "" @@ -26288,7 +26491,7 @@ msgstr "" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " +msgid "This value specifies the max number of rows that can be rendered in report view." msgstr "" #: frappe/website/doctype/web_page/web_page.js:85 @@ -26309,7 +26512,7 @@ msgstr "" #: frappe/www/third_party_apps.html:23 msgid "This will log out {0} from all other devices" -msgstr "" +msgstr "Questo disconnetterà {0} da tutti gli altri dispositivi" #: frappe/templates/emails/delete_data_confirmation.html:3 msgid "This will permanently remove your data." @@ -26320,10 +26523,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " -msgstr "" +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:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "" @@ -26385,7 +26588,7 @@ 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 "Serie Temporali Basate Su" #. Label of the time_taken (Duration) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json @@ -26399,13 +26602,15 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" -msgstr "" +msgstr "Fuso Orario" #. Label of the time_zones (Text) field in DocType 'Country' #: frappe/geo/doctype/country/country.json @@ -26472,11 +26677,11 @@ msgstr "" msgid "Timeline Name" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 msgid "Timeline field must be a Link or Dynamic Link" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "" @@ -26502,10 +26707,7 @@ msgid "Timespan" msgstr "" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "" @@ -26525,9 +26727,6 @@ msgstr "" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26552,9 +26751,6 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26575,9 +26771,9 @@ 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 "Prefisso del Titolo" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "" @@ -26590,12 +26786,12 @@ msgstr "" #: frappe/core/doctype/permission_log/permission_log.js:12 #: frappe/public/js/frappe/views/inbox/inbox_view.js:70 msgid "To" -msgstr "" +msgstr "A" #: frappe/public/js/frappe/views/communication.js:53 msgctxt "Email Recipients" msgid "To" -msgstr "" +msgstr "A" #. Label of the to_date (Date) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -26612,7 +26808,7 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/todo/todo_list.js:6 msgid "To Do" -msgstr "" +msgstr "Cose da Fare" #. Description of the 'Subject' (Data) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json @@ -26643,7 +26839,7 @@ msgstr "" #. 'Communication' #: frappe/core/doctype/communication/communication.json msgid "To and CC" -msgstr "" +msgstr "A e CC" #. Description of the 'Use First Day of Period' (Check) field in DocType 'Auto #. Email Report' @@ -26671,7 +26867,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "" @@ -26700,7 +26896,7 @@ msgstr "" #. 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "To use Google Indexing, enable Google Settings." -msgstr "" +msgstr "Per utilizzare l'indicizzazione di Google, abilita Impostazioni Google." #. Description of the 'Slack Channel' (Link) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json @@ -26718,7 +26914,7 @@ msgstr "" #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.json msgid "ToDo" -msgstr "" +msgstr "DaFare" #: frappe/public/js/frappe/form/controls/date.js:58 #: frappe/public/js/frappe/ui/filters/filter.js:733 @@ -26726,7 +26922,7 @@ msgstr "" msgid "Today" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "" @@ -26734,7 +26930,7 @@ msgstr "" #. Type: Action #: frappe/hooks.py msgid "Toggle Full Width" -msgstr "" +msgstr "Cambia Visualizzazione" #: frappe/public/js/frappe/views/file/file_view.js:33 msgid "Toggle Grid View" @@ -26742,20 +26938,20 @@ msgstr "" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" -msgstr "" +msgstr "Cambia Barra Laterale" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" -msgstr "" +msgstr "Cambia Barra Laterale" #. Label of a standard navbar item #. Type: Action #: frappe/hooks.py msgid "Toggle Theme" -msgstr "" +msgstr "Cambia Tema" #. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json @@ -26792,7 +26988,7 @@ msgid "Tomorrow" msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "" @@ -26808,7 +27004,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26816,7 +27012,7 @@ msgstr "" #. Label of a Card Break in the Tools Workspace #: frappe/automation/workspace/tools/tools.json msgid "Tools" -msgstr "" +msgstr "Strumenti" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json @@ -26836,7 +27032,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 "Elementi della Barra Superiore" #. Option for the 'Position' (Select) field in DocType 'Form Tour Step' #. Option for the 'Page Number' (Select) field in DocType 'Print Format' @@ -26849,7 +27045,7 @@ msgstr "" #. Label of the top_errors (Table) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Top Errors" -msgstr "" +msgstr "Errori Principali" #. Option for the 'Page Number' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json @@ -26870,10 +27066,10 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -26881,22 +27077,22 @@ msgstr "" #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Total Background Workers" -msgstr "" +msgstr "Totale Processi in Background" #. Label of the total_errors (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Total Errors (last 1 day)" -msgstr "" +msgstr "Errori Totali (ultimo giorno)" #: frappe/public/js/frappe/ui/capture.js:259 msgid "Total Images" -msgstr "" +msgstr "Immagini Totali" #. Label of the total_outgoing_emails (Int) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Total Outgoing Emails" -msgstr "" +msgstr "Totale Email in Uscita" #. Label of the total_subscribers (Int) field in DocType 'Email Group' #: frappe/email/doctype/email_group/email_group.json @@ -26916,18 +27112,18 @@ msgstr "" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " -msgstr "" +msgid "Total number of emails to sync in initial sync process" +msgstr "Numero totale di email da sincronizzare nel processo di sincronizzazione iniziale" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "" @@ -26993,29 +27189,13 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" -msgstr "" +msgstr "Transgender" #: frappe/public/js/workflow_builder/components/Properties.vue:19 msgid "Transition Properties" @@ -27026,6 +27206,11 @@ msgstr "" msgid "Transition Rules" msgstr "" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" @@ -27040,7 +27225,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27051,7 +27236,7 @@ msgstr "" msgid "Translate Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "" @@ -27062,12 +27247,12 @@ msgstr "" #. Label of the translated_text (Code) field in DocType 'Translation' #: frappe/core/doctype/translation/translation.json msgid "Translated Text" -msgstr "" +msgstr "Testo Tradotto" #. Name of a DocType #: frappe/core/doctype/translation/translation.json msgid "Translation" -msgstr "" +msgstr "Traduzione" #: frappe/public/js/frappe/views/translation_manager.js:46 msgid "Translations" @@ -27076,7 +27261,7 @@ msgstr "" #. Name of a role #: frappe/core/doctype/translation/translation.json msgid "Translator" -msgstr "" +msgstr "Traduttore" #. Option for the 'Email Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json @@ -27088,7 +27273,7 @@ msgstr "" #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json msgid "Tree" -msgstr "" +msgstr "Albero" #: frappe/public/js/frappe/list/base_list.js:210 msgid "Tree View" @@ -27135,8 +27320,8 @@ msgstr "" msgid "Try a Naming Series" msgstr "" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "" @@ -27170,7 +27355,7 @@ msgstr "" #: frappe/core/doctype/role/role.json #: frappe/core/doctype/system_settings/system_settings.json msgid "Two Factor Authentication" -msgstr "" +msgstr "Autenticazione a Due Fattori" #. Label of the two_factor_method (Select) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -27202,7 +27387,7 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27212,7 +27397,7 @@ msgstr "" #: frappe/public/js/frappe/form/controls/comment.js:90 msgid "Type a reply / comment" -msgstr "" +msgstr "Digita una risposta / commento" #: frappe/templates/includes/search_template.html:51 msgid "Type something in the search box to search" @@ -27246,14 +27431,14 @@ msgstr "" #: frappe/email/doctype/email_flag_queue/email_flag_queue.json #: frappe/email/doctype/unhandled_email/unhandled_email.json msgid "UID" -msgstr "" +msgstr "UID" #. Label of the uidnext (Int) field in DocType 'Email Account' #. Label of the uidnext (Data) field in DocType 'IMAP Folder' #: frappe/email/doctype/email_account/email_account.json #: frappe/email/doctype/imap_folder/imap_folder.json msgid "UIDNEXT" -msgstr "" +msgstr "UIDNEXT" #. Label of the uidvalidity (Data) field in DocType 'Email Account' #. Label of the uidvalidity (Data) field in DocType 'IMAP Folder' @@ -27288,14 +27473,14 @@ msgstr "" #: frappe/website/doctype/top_bar_item/top_bar_item.json #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json msgid "URL" -msgstr "" +msgstr "URL" #. Description of the 'Documentation Link' (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "URL for documentation or help" msgstr "" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "" @@ -27364,7 +27549,7 @@ msgstr "" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "UUID" -msgstr "" +msgstr "UUID" #: frappe/desk/form/document_follow.py:79 msgid "Un-following document {0}" @@ -27376,7 +27561,7 @@ msgstr "" #: frappe/public/js/frappe/ui/capture.js:338 msgid "Unable to load camera." -msgstr "" +msgstr "Impossibile caricare la fotocamera." #: frappe/public/js/frappe/model/model.js:230 msgid "Unable to load: {0}" @@ -27398,7 +27583,7 @@ msgstr "" msgid "Unable to update event" msgstr "" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "" @@ -27407,7 +27592,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27417,13 +27602,13 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:518 msgid "Undo" -msgstr "" +msgstr "Annulla" #: frappe/public/js/frappe/form/toolbar.js:526 msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27440,7 +27625,7 @@ msgstr "" #. Label of the unhandled_emails (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Unhandled Emails" -msgstr "" +msgstr "Email non Gestite" #. Label of the unique (Check) field in DocType 'DocField' #. Label of the unique (Check) field in DocType 'Custom Field' @@ -27470,7 +27655,7 @@ msgstr "" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "" @@ -27482,8 +27667,7 @@ msgstr "" msgid "Unlock Reference Document" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "" @@ -27499,14 +27683,14 @@ msgstr "" msgid "Unread Notification Sent" msgstr "" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "" #: frappe/public/js/frappe/data_import/data_exporter.js:159 #: frappe/public/js/frappe/form/controls/multicheck.js:166 msgid "Unselect All" -msgstr "" +msgstr "Deseleziona Tutto" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json @@ -27537,8 +27721,8 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27558,7 +27742,7 @@ msgstr "" msgid "Unzipping files..." msgstr "" -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "" @@ -27572,7 +27756,7 @@ msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "" @@ -27606,6 +27790,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27648,7 +27837,7 @@ msgstr "" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "" @@ -27656,7 +27845,7 @@ msgstr "" msgid "Updated Successfully" msgstr "" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "" @@ -27664,7 +27853,7 @@ msgstr "" msgid "Updated successfully" msgstr "" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "" @@ -27709,34 +27898,34 @@ msgstr "" msgid "Upgrade your support experience with Frappe Helpdesk" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" -msgstr "" +msgstr "Carica" #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:93 msgid "Upload Image" -msgstr "" +msgstr "Carica Immagine" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" -msgstr "" +msgstr "Carica file" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" -msgstr "" +msgstr "Carica {0} file" #. Label of the uploaded_to_dropbox (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Uploaded To Dropbox" -msgstr "" +msgstr "Caricato su Dropbox" #. Label of the uploaded_to_google_drive (Check) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Uploaded To Google Drive" -msgstr "" +msgstr "Caricato su Google Drive" #. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding #. Step' @@ -27777,12 +27966,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 "" +msgstr "Utilizza POST" #. Label of the use_report_chart (Check) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Use Report Chart" -msgstr "" +msgstr "Usa il Grafico del Report" #. Label of the use_ssl (Check) field in DocType 'Email Account' #. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Account' @@ -27821,15 +28010,11 @@ msgstr "" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "" -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "" @@ -27850,7 +28035,9 @@ msgid "Used OAuth" msgstr "" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -27859,6 +28046,7 @@ msgstr "" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -27873,11 +28061,12 @@ msgstr "" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -27886,6 +28075,7 @@ msgstr "" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -27902,17 +28092,11 @@ msgstr "" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "" - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "" @@ -27942,7 +28126,7 @@ msgstr "" msgid "User Cannot Search" msgstr "" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "" @@ -27954,7 +28138,7 @@ msgstr "" #. Label of the user_details_tab (Tab Break) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "User Details" -msgstr "" +msgstr "Dettagli Utente" #. Name of a report #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.json @@ -27983,7 +28167,7 @@ msgstr "" #. Name of a DocType #: frappe/core/doctype/user_group/user_group.json msgid "User Group" -msgstr "" +msgstr "Gruppo Utente" #. Name of a DocType #: frappe/core/doctype/user_group_member/user_group_member.json @@ -28006,11 +28190,6 @@ msgstr "" msgid "User ID Property" msgstr "" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28028,11 +28207,16 @@ msgstr "" #. Label of the user_image (Attach Image) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "User Image" +msgstr "Immagine Utente" + +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" msgstr "" #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" -msgstr "" +msgstr "Menu Utente" #. Label of the user_name (Data) field in DocType 'Personal Data Download #. Request' @@ -28043,20 +28227,20 @@ msgstr "" #. Name of a DocType #: frappe/core/doctype/user_permission/user_permission.json msgid "User Permission" -msgstr "" +msgstr "Autorizzazione Utente" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" -msgstr "" +msgstr "Autorizzazioni Utente" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" -msgstr "" +msgstr "Autorizzazioni Utente" #: frappe/core/page/permission_manager/permission_manager_help.html:32 msgid "User Permissions are used to limit users to specific records." @@ -28066,7 +28250,9 @@ msgstr "" msgid "User Permissions created successfully" msgstr "" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "" @@ -28074,7 +28260,7 @@ msgstr "" #. Name of a DocType #: frappe/core/doctype/user_role_profile/user_role_profile.json msgid "User Role Profile" -msgstr "" +msgstr "Profilo Ruolo Utente" #. Name of a DocType #: frappe/core/doctype/user_select_document_type/user_select_document_type.json @@ -28085,7 +28271,7 @@ msgstr "" #. Type: Action #: frappe/hooks.py msgid "User Settings" -msgstr "" +msgstr "Impostazioni Utente" #. Name of a DocType #: frappe/core/doctype/user_social_login/user_social_login.json @@ -28103,7 +28289,7 @@ msgstr "" #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:83 msgid "User Type" -msgstr "" +msgstr "Tipo Utente" #. Label of the user_type_modules (Table) field in DocType 'User Type' #. Name of a DocType @@ -28132,6 +28318,10 @@ msgstr "" msgid "User does not have permission to create the new {0}" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "" @@ -28162,7 +28352,7 @@ msgstr "" msgid "User {0} cannot be disabled" msgstr "" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "" @@ -28183,7 +28373,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "" @@ -28191,7 +28381,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28210,9 +28400,9 @@ msgstr "" #: frappe/core/doctype/user_social_login/user_social_login.json #: frappe/www/login.py:110 msgid "Username" -msgstr "" +msgstr "Nome Utente" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "" @@ -28296,9 +28486,9 @@ msgstr "" msgid "Validate SSL Certificate" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" -msgstr "" +msgstr "Errore di Validazione" #. Label of the validity (Select) field in DocType 'OAuth Authorization Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json @@ -28319,8 +28509,8 @@ msgstr "" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28335,7 +28525,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 "Valore Basato Su" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json @@ -28352,7 +28542,7 @@ msgstr "" msgid "Value To Be Set" msgstr "" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "" @@ -28368,11 +28558,11 @@ msgstr "" msgid "Value for a check field can be either 0 or 1" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" -#: frappe/model/base_document.py:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "" @@ -28397,7 +28587,7 @@ msgstr "" msgid "Value to Validate" msgstr "" -#: frappe/model/base_document.py:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "" @@ -28414,20 +28604,20 @@ msgstr "" msgid "Value {0} must in {1} format" msgstr "" -#: frappe/core/doctype/version/version_view.html:8 +#: frappe/core/doctype/version/version_view.html:9 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 "" +msgstr "Verdana" #: frappe/templates/includes/login/login.js:333 msgid "Verification" msgstr "" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "" @@ -28468,7 +28658,7 @@ msgstr "" #: frappe/public/js/frappe/desk.js:166 msgid "Version Updated" -msgstr "" +msgstr "Versione Aggiornata" #. Label of the video_url (Data) field in DocType 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -28478,7 +28668,7 @@ msgstr "" #. Label of the view_name (Select) field in DocType 'Form Tour' #: frappe/desk/doctype/form_tour/form_tour.json msgid "View" -msgstr "" +msgstr "Vista" #: frappe/core/doctype/success_action/success_action.js:60 #: frappe/public/js/frappe/form/success_action.js:89 @@ -28489,17 +28679,9 @@ msgstr "" msgid "View Audit Trail" msgstr "" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" -msgstr "" +msgstr "Visualizza Permessi Documento" #: frappe/core/doctype/file/file.js:4 msgid "View File" @@ -28509,7 +28691,7 @@ msgstr "" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "" @@ -28519,10 +28701,10 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" -msgstr "" +msgstr "Visualizza Documenti Consentiti" #. Label of the view_properties (Button) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json @@ -28552,7 +28734,7 @@ msgstr "" #: frappe/hooks.py #: frappe/website/doctype/website_settings/website_settings.js:16 msgid "View Website" -msgstr "" +msgstr "Visualizza il Sito Web" #: frappe/www/confirm_workflow_action.html:12 msgid "View document" @@ -28566,7 +28748,7 @@ msgstr "" msgid "View this in your browser" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "" @@ -28575,7 +28757,7 @@ msgstr "" #: frappe/desk/doctype/calendar_view/calendar_view_list.js:10 #: frappe/desk/doctype/dashboard/dashboard_list.js:10 msgid "View {0}" -msgstr "" +msgstr "Visualizza {0}" #. Label of the viewed_by (Data) field in DocType 'View Log' #: frappe/core/doctype/view_log/view_log.json @@ -28635,6 +28817,7 @@ msgid "Warehouse" msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "" @@ -28643,7 +28826,7 @@ msgstr "" msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "" @@ -28691,7 +28874,7 @@ msgstr "" #: frappe/public/js/frappe/form/controls/password.js:87 msgid "Weak" -msgstr "" +msgstr "Debole" #. Name of a DocType #. Label of a Link in the Website Workspace @@ -28699,7 +28882,7 @@ msgstr "" #: frappe/website/doctype/web_form/web_form.json #: frappe/website/workspace/website/website.json msgid "Web Form" -msgstr "" +msgstr "Modulo Web" #. Name of a DocType #: frappe/website/doctype/web_form_field/web_form_field.json @@ -28722,14 +28905,14 @@ msgstr "" #: frappe/website/doctype/web_page/web_page.json #: frappe/website/workspace/website/website.json msgid "Web Page" -msgstr "" +msgstr "Pagina Web" #. 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:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "" @@ -28741,14 +28924,14 @@ msgstr "" #. Label of a Card Break in the Website Workspace #: frappe/website/workspace/website/website.json msgid "Web Site" -msgstr "" +msgstr "Sito Web" #. Label of the web_template (Link) field in DocType 'Web Page Block' #. Name of a DocType #: frappe/website/doctype/web_page_block/web_page_block.json #: frappe/website/doctype/web_template/web_template.json msgid "Web Template" -msgstr "" +msgstr "Modello Web" #. Name of a DocType #: frappe/website/doctype/web_template_field/web_template_field.json @@ -28777,7 +28960,7 @@ msgstr "" #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/integrations/workspace/integrations/integrations.json msgid "Webhook" -msgstr "" +msgstr "Webhook" #. Label of the sb_webhook_data (Section Break) field in DocType 'Webhook' #. Name of a DocType @@ -28806,7 +28989,7 @@ msgstr "" #: frappe/core/workspace/build/build.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json msgid "Webhook Request Log" -msgstr "" +msgstr "Log Richieste Webhook" #. Label of the webhook_secret (Password) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json @@ -28832,7 +29015,7 @@ msgstr "" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "" @@ -28845,10 +29028,6 @@ msgstr "" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -28861,7 +29040,7 @@ msgstr "" #: frappe/website/doctype/website_slideshow/website_slideshow.json #: frappe/website/doctype/website_theme/website_theme.json msgid "Website Manager" -msgstr "" +msgstr "Responsabile Sito Web" #. Name of a DocType #: frappe/website/doctype/website_meta_tag/website_meta_tag.json @@ -28885,14 +29064,14 @@ msgstr "" #: frappe/website/doctype/website_script/website_script.json #: frappe/website/workspace/website/website.json msgid "Website Script" -msgstr "" +msgstr "Script del Sito Web" #. Label of the website_search_field (Data) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json msgid "Website Search Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "" @@ -28901,7 +29080,7 @@ msgstr "" #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/workspace/website/website.json msgid "Website Settings" -msgstr "" +msgstr "Impostazioni del Sito Web" #. Label of the website_sidebar (Link) field in DocType 'Web Form' #. Label of the website_sidebar (Link) field in DocType 'Web Page' @@ -28912,7 +29091,7 @@ msgstr "" #: frappe/website/doctype/website_sidebar/website_sidebar.json #: frappe/website/workspace/website/website.json msgid "Website Sidebar" -msgstr "" +msgstr "Barra Laterale Sito Web" #. Name of a DocType #: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json @@ -28924,7 +29103,7 @@ msgstr "" #: frappe/website/doctype/website_slideshow/website_slideshow.json #: frappe/website/workspace/website/website.json msgid "Website Slideshow" -msgstr "" +msgstr "Slideshow Sito Web" #. Name of a DocType #: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json @@ -28938,7 +29117,7 @@ msgstr "" #: frappe/website/doctype/website_theme/website_theme.json #: frappe/website/workspace/website/website.json msgid "Website Theme" -msgstr "" +msgstr "Tema del Sito Web" #. Name of a DocType #: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json @@ -29048,7 +29227,7 @@ msgstr "" #: frappe/public/js/frappe/ui/notifications/notifications.js:62 msgid "What's New" -msgstr "" +msgstr "Cosa c'è di nuovo" #. Description of the 'Allow Guests to Upload Files' (Check) field in DocType #. 'System Settings' @@ -29109,11 +29288,6 @@ msgstr "" msgid "Will add \"%\" before and after the query" msgstr "" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "" - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "" @@ -29128,7 +29302,7 @@ msgstr "" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "" @@ -29151,7 +29325,7 @@ msgstr "" #: frappe/public/js/workflow_builder/store.js:129 #: frappe/workflow/doctype/workflow/workflow.json msgid "Workflow" -msgstr "" +msgstr "Flusso di Lavoro" #. Name of a DocType #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -29206,7 +29380,7 @@ msgstr "" msgid "Workflow Data" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "" @@ -29232,11 +29406,11 @@ msgstr "" msgid "Workflow State Field" msgstr "" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "" @@ -29244,15 +29418,30 @@ msgstr "" msgid "Workflow States Don't Exist" msgstr "" -#: frappe/model/workflow.py:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29268,13 +29457,13 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" -msgstr "" +msgstr "Area di Lavoro" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29298,7 +29487,7 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_settings/workspace_settings.json msgid "Workspace Manager" -msgstr "" +msgstr "Responsabile Area di Lavoro" #. Name of a DocType #: frappe/desk/doctype/workspace_number_card/workspace_number_card.json @@ -29316,7 +29505,7 @@ msgstr "" #: frappe/desk/doctype/workspace_settings/workspace_settings.json #: frappe/hooks.py msgid "Workspace Settings" -msgstr "" +msgstr "Impostazioni Area Lavoro" #. Label of the workspace_setup_completed (Check) field in DocType 'Workspace #. Settings' @@ -29344,11 +29533,11 @@ msgstr "" msgid "Workspaces" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "" @@ -29365,15 +29554,15 @@ msgstr "" #: frappe/core/doctype/docshare/docshare.json #: frappe/core/doctype/user_document_type/user_document_type.json msgid "Write" -msgstr "" +msgstr "Scrivi" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" -msgstr "" +msgstr "Campo Asse X" #. Label of the x_field (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -29383,32 +29572,32 @@ 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 "" +msgstr "XLSX" #. Label of the y_axis (Table) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Y Axis" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" -msgstr "" +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:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 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 "" +msgstr "Yahoo Mail" #. Option for the 'Service' (Select) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Yandex.Mail" -msgstr "" +msgstr "Yandex.Mail" #. Label of the heatmap_year (Select) field in DocType 'Dashboard Chart' #. Label of the year (Data) field in DocType 'Company History' @@ -29448,29 +29637,30 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" -msgstr "" +msgstr "Sì" #: frappe/public/js/frappe/ui/messages.js:32 msgctxt "Approve confirmation dialog" msgid "Yes" -msgstr "" +msgstr "Sì" #: frappe/public/js/frappe/ui/filters/filter.js:545 msgctxt "Checkbox is checked" msgid "Yes" -msgstr "" +msgstr "Sì" #: frappe/public/js/frappe/ui/filters/filter.js:727 msgid "Yesterday" @@ -29485,6 +29675,18 @@ msgstr "" msgid "You Liked" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "" @@ -29523,20 +29725,20 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29560,7 +29762,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:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29586,13 +29788,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " -msgstr "" +msgid "You can also copy-paste this" +msgstr "Puoi anche copiare e incollare questo" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "" +#: frappe/templates/emails/user_invitation_expired.html:8 +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 "" @@ -29605,11 +29811,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29619,7 +29825,7 @@ msgstr "" #: frappe/public/js/frappe/form/controls/markdown_editor.js:75 msgid "You can only insert images in Markdown fields" -msgstr "" +msgstr "È possibile inserire immagini solo nei campi Markdown" #: frappe/public/js/frappe/list/bulk_operations.js:42 msgid "You can only print upto {0} documents at a time" @@ -29629,7 +29835,7 @@ msgstr "" msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "" -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "" @@ -29647,7 +29853,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "" @@ -29659,11 +29865,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29681,13 +29887,13 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:385 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125 msgid "You changed the value of {0}" -msgstr "" +msgstr "Hai cambiato il valore di {0}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114 msgid "You changed the value of {0} {1}" @@ -29711,7 +29917,7 @@ msgstr "" msgid "You created this" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "" @@ -29724,15 +29930,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29744,11 +29950,11 @@ msgstr "" msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "" @@ -29756,19 +29962,19 @@ msgstr "" msgid "You don't have permission to get a report on: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " -msgstr "" +msgid "You have a new message from:" +msgstr "Hai ricevuto un nuovo messaggio da:" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29776,11 +29982,7 @@ msgstr "" msgid "You have not entered a value. The field will be set to empty." msgstr "" -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "" @@ -29800,9 +30002,9 @@ msgstr "" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" -msgstr "" +msgstr "Non hai ancora creato un {0}" #: frappe/rate_limiter.py:166 msgid "You hit the rate limit because of too many requests. Please try after sometime." @@ -29817,11 +30019,11 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "" @@ -29845,7 +30047,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "" @@ -29853,13 +30055,13 @@ msgstr "" msgid "You need to be logged in to access this page" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "" #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " -msgstr "" +msgid "You need to create these first:" +msgstr "Per prima cosa devi creare quanto segue:" #: frappe/www/login.html:76 msgid "You need to enable JavaScript for your app to work." @@ -29893,11 +30095,19 @@ msgstr "" msgid "You need {0} permission to fetch values from {1} {2}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "" @@ -29928,10 +30138,26 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "YouTube" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "" @@ -29961,7 +30187,7 @@ msgstr "" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "" @@ -29985,21 +30211,33 @@ msgstr "" msgid "Your email address" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "" #: frappe/www/update-password.html:192 msgid "Your new password has been set successfully." -msgstr "" +msgstr "La nuova password è stata impostata correttamente." #: frappe/www/update-password.html:172 msgid "Your old password is incorrect." -msgstr "" +msgstr "La vecchia password non è corretta." #. Description of the 'Email Footer Address' (Small Text) field in DocType #. 'System Settings' @@ -30011,7 +30249,11 @@ msgstr "" msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "" -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "" @@ -30025,7 +30267,7 @@ msgstr "" #: frappe/utils/data.py:1558 msgid "Zero" -msgstr "" +msgstr "Zero" #. Description of the 'Only Send Records Updated in Last X Hours' (Int) field #. in DocType 'Auto Email Report' @@ -30033,14 +30275,14 @@ msgstr "" msgid "Zero means send records updated at anytime" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" msgstr "" #. Label of the _doctype (Link) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json msgid "_doctype" -msgstr "" +msgstr "_doctype" #. Label of the _report (Link) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json @@ -30055,10 +30297,6 @@ msgstr "" msgid "`job_id` paramater is required for deduplication." msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30077,12 +30315,12 @@ msgstr "" #: frappe/public/js/frappe/ui/sort_selector.html:5 #: frappe/public/js/frappe/ui/sort_selector.js:48 msgid "ascending" -msgstr "" +msgstr "crescente" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "blue" -msgstr "" +msgstr "blu" #: frappe/public/js/frappe/form/workflow.js:35 msgid "by Role" @@ -30093,7 +30331,7 @@ msgstr "" msgid "cProfile Output" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "" @@ -30131,7 +30369,7 @@ msgstr "" #: frappe/public/js/frappe/utils/utils.js:1119 msgctxt "Days (Field: Duration)" msgid "d" -msgstr "" +msgstr "d" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json @@ -30179,12 +30417,12 @@ msgstr "" #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "delete" -msgstr "" +msgstr "elimina" #: frappe/public/js/frappe/ui/sort_selector.html:5 #: frappe/public/js/frappe/ui/sort_selector.js:48 msgid "descending" -msgstr "" +msgstr "decrescente" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163 msgid "document type..., e.g. customer" @@ -30238,12 +30476,12 @@ msgstr "" msgid "email" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "" @@ -30251,7 +30489,7 @@ msgstr "" #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "export" -msgstr "" +msgstr "esporta" #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' @@ -30268,7 +30506,7 @@ msgstr "" #. Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "fairlogin" -msgstr "" +msgstr "fairlogin" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json @@ -30298,27 +30536,22 @@ msgstr "" #: frappe/public/js/frappe/utils/utils.js:1123 msgctxt "Hours (Field: Duration)" msgid "h" -msgstr "" +msgstr "h" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "" #. Label of the icon (Data) field in DocType 'Page' #: frappe/core/doctype/page/page.json msgid "icon" -msgstr "" +msgstr "icona" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "import" -msgstr "" - -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "" +msgstr "importa" #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" @@ -30328,7 +30561,7 @@ msgstr "" msgid "just now" msgstr "" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "" @@ -30357,7 +30590,7 @@ msgstr "" msgid "logged in" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30372,17 +30605,12 @@ msgstr "" #: frappe/public/js/frappe/utils/utils.js:1127 msgctxt "Minutes (Field: Duration)" msgid "m" -msgstr "" +msgstr "M" #: frappe/model/rename_doc.py:215 msgid "merged {0} into {1}" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "" - #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json @@ -30406,9 +30634,9 @@ msgstr "" msgid "module name..." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" -msgstr "" +msgstr "nuovo" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:158 msgid "new type of document" @@ -30422,7 +30650,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 "" +msgstr "valore unico" #. Label of the notified (Check) field in DocType 'Reminder' #: frappe/automation/doctype/reminder/reminder.json @@ -30435,7 +30663,7 @@ msgstr "" #: frappe/public/js/frappe/form/grid_pagination.js:116 msgid "of" -msgstr "" +msgstr "di" #. Label of the old_parent (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json @@ -30445,7 +30673,7 @@ msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_cancel" -msgstr "" +msgstr "on_cancel" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json @@ -30455,7 +30683,7 @@ msgstr "" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "on_submit" -msgstr "" +msgstr "on_submit" #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json @@ -30528,17 +30756,13 @@ msgstr "" #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "read" -msgstr "" +msgstr "leggi" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "red" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "" @@ -30568,7 +30792,7 @@ msgstr "" #. Authorization Code' #: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json msgid "s256" -msgstr "" +msgstr "s256" #. Option for the 'Status' (Select) field in DocType 'RQ Job' #: frappe/core/doctype/rq_job/rq_job.json @@ -30579,7 +30803,7 @@ msgstr "" #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "select" -msgstr "" +msgstr "seleziona" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' @@ -30594,19 +30818,19 @@ msgstr "" msgid "short" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "" @@ -30659,6 +30883,10 @@ msgstr "" msgid "this shouldn't break" msgstr "" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "al tuo browser" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30686,7 +30914,7 @@ msgstr "" msgid "via Assignment Rule" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "" @@ -30700,7 +30928,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "" @@ -30731,17 +30959,22 @@ msgstr "" #. Option for the 'PDF Generator' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json msgid "wkhtmltopdf" +msgstr "wkhtmltopdf" + +#: frappe/printing/page/print/print.js:662 +msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "" -#: frappe/printing/page/print/print.js:622 -msgid "wkhtmltopdf 0.12.x (with patched qt)." +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" msgstr "" #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json msgid "write" -msgstr "" +msgstr "scrivi" #. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json @@ -30762,13 +30995,13 @@ msgstr "" #: frappe/desk/doctype/event/event.js:87 #: frappe/public/js/frappe/form/footer/form_timeline.js:547 msgid "{0}" -msgstr "" +msgstr "{0}" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "" @@ -30794,19 +31027,19 @@ msgstr "" msgid "{0} Calendar" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "" @@ -30830,6 +31063,10 @@ msgstr "" msgid "{0} List" msgstr "" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "" @@ -30842,7 +31079,7 @@ msgstr "" msgid "{0} Name" msgstr "" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "" @@ -30852,11 +31089,10 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "" @@ -30881,7 +31117,15 @@ msgstr "" msgid "{0} added" msgstr "" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "" @@ -30893,7 +31137,7 @@ msgstr "" msgid "{0} already unsubscribed for {1} {2}" msgstr "" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "" @@ -30901,7 +31145,7 @@ msgstr "" msgid "{0} are currently {1}" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "" @@ -30918,7 +31162,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -30960,11 +31204,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." msgstr "" @@ -30975,9 +31215,9 @@ msgstr "" #: frappe/public/js/frappe/form/footer/form_timeline.js:141 #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:95 msgid "{0} created this" -msgstr "" +msgstr "Creato da {0}" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "" @@ -30999,7 +31239,7 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31009,7 +31249,7 @@ msgstr "" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101 msgid "{0} from {1} to {2}" -msgstr "" +msgstr "{0} da {1} a {2}" #: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:165 msgid "{0} from {1} to {2} in row #{3}" @@ -31031,32 +31271,32 @@ msgstr "" msgid "{0} hours ago" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" -msgstr "" +msgstr "{0} se non vieni reindirizzato entro {1} secondi" #: frappe/website/doctype/website_settings/website_settings.py:102 #: frappe/website/doctype/website_settings/website_settings.py:122 msgid "{0} in row {1} cannot have both URL and child items" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "" @@ -31065,27 +31305,27 @@ msgstr "" msgid "{0} is currently {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "" @@ -31093,7 +31333,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31113,12 +31353,12 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "" @@ -31126,15 +31366,15 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "" @@ -31150,62 +31390,66 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 -#: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: 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/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" #: frappe/public/js/frappe/form/footer/form_timeline.js:152 #: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106 msgid "{0} last edited this" -msgstr "" +msgstr "Ultima modifica di {0}" #: frappe/core/doctype/activity_log/feed.py:13 msgid "{0} logged in" @@ -31231,35 +31475,35 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "" @@ -31267,7 +31511,7 @@ msgstr "" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "" @@ -31280,11 +31524,11 @@ msgid "{0} not found" msgstr "" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" -msgstr "" +msgstr "{0} di {1}" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31293,7 +31537,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "" @@ -31317,6 +31561,10 @@ msgstr "" msgid "{0} records will be exported" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31326,15 +31574,29 @@ msgstr "" msgid "{0} removed their assignment." msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" +msgstr "{0} riga #{1}:" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "" @@ -31354,11 +31616,11 @@ msgstr "" msgid "{0} shared this document with {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "" @@ -31371,8 +31633,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "" @@ -31382,7 +31644,7 @@ msgstr "" #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "" @@ -31390,7 +31652,7 @@ msgstr "" msgid "{0} un-shared this document with {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "" @@ -31426,15 +31688,15 @@ msgstr "" msgid "{0} {1} added to Dashboard {2}" msgstr "" -#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "" @@ -31450,11 +31712,11 @@ msgstr "" msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" -#: frappe/model/base_document.py:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "" @@ -31462,79 +31724,79 @@ msgstr "" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "" -#: frappe/model/base_document.py:1120 +#: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 msgid "{0}: Cannot set import as {1} is not importable" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 +#: 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:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "" @@ -31542,7 +31804,7 @@ msgstr "" msgid "{0}: Other permission rules may also apply" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "" @@ -31550,7 +31812,7 @@ msgstr "" msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "" @@ -31563,11 +31825,11 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "" @@ -31591,7 +31853,7 @@ msgstr "" msgid "{count} rows selected" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "" @@ -31599,11 +31861,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
    {}" msgstr "" @@ -31629,7 +31891,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" @@ -31644,5 +31906,5 @@ msgstr "" #: frappe/public/js/frappe/file_uploader/FileBrowser.vue:5 #: frappe/public/js/frappe/file_uploader/WebLink.vue:4 msgid "← Back to upload files" -msgstr "" +msgstr "← Torna al caricamento dei file" diff --git a/frappe/locale/main.pot b/frappe/locale/main.pot index b7dd8d302f..74f08a4df4 100644 --- a/frappe/locale/main.pot +++ b/frappe/locale/main.pot @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Frappe Framework VERSION\n" "Report-Msgid-Bugs-To: developers@frappe.io\n" -"POT-Creation-Date: 2025-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-20 09:35+0000\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-05 09:33+0000\n" "Last-Translator: developers@frappe.io\n" "Language-Team: developers@frappe.io\n" "MIME-Version: 1.0\n" @@ -16,10 +16,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.16.0\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr "" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json @@ -59,7 +55,7 @@ msgstr "" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" msgstr "" @@ -72,7 +68,7 @@ msgstr "" msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "" @@ -80,19 +76,23 @@ msgstr "" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" msgstr "" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "" @@ -100,11 +100,11 @@ msgstr "" msgid "(Mandatory)" msgstr "" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" msgstr "" @@ -120,7 +120,7 @@ msgstr "" msgid "0 is highest" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "" @@ -139,15 +139,11 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "" @@ -156,17 +152,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "" @@ -178,37 +174,47 @@ msgstr "" msgid "1 record will be exported" msgstr "" -#: frappe/tests/test_utils.py:711 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "" + +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "" @@ -224,7 +230,7 @@ msgstr "" msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "" @@ -244,6 +250,14 @@ msgstr "" msgid "<=" msgstr "" +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "" +"\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "" @@ -253,6 +267,16 @@ msgstr "" msgid "
    Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
    " msgstr "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

    Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

    " +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

    Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

    " +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -509,7 +533,7 @@ msgid "" "" msgstr "" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

    " msgstr "" @@ -581,7 +605,7 @@ msgstr "" msgid ">=" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" @@ -590,15 +614,16 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." msgstr "" #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "" @@ -611,7 +636,7 @@ msgstr "" msgid "A new account has been created for you at {0}" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "" @@ -711,13 +736,17 @@ msgstr "" msgid "API Endpoint Args" msgstr "" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -736,6 +765,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -756,7 +789,7 @@ msgstr "" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -803,6 +836,20 @@ msgstr "" msgid "About {0} seconds remaining" msgstr "" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -828,7 +875,7 @@ msgstr "" msgid "Access Token URL" msgstr "" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "" @@ -892,7 +939,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "" @@ -944,7 +991,7 @@ msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "" @@ -1001,7 +1048,7 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -1012,7 +1059,7 @@ msgstr "" msgid "Add" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -1024,7 +1071,7 @@ msgstr "" msgid "Add A New Rule" msgstr "" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "" @@ -1044,7 +1091,7 @@ msgstr "" msgid "Add Border at Top" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "" @@ -1057,10 +1104,10 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "" @@ -1119,7 +1166,7 @@ msgstr "" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "" @@ -1152,12 +1199,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "" @@ -1246,7 +1293,7 @@ msgstr "" msgid "Add page break" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "" @@ -1284,7 +1331,7 @@ msgstr "" msgid "Add {0}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" msgstr "" @@ -1327,6 +1374,7 @@ msgstr "" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1335,6 +1383,7 @@ msgstr "" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "" @@ -1342,6 +1391,7 @@ msgstr "" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "" @@ -1392,7 +1442,7 @@ msgstr "" msgid "Adds a custom field to a DocType" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "" @@ -1406,7 +1456,6 @@ msgstr "" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1419,11 +1468,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1444,8 +1493,8 @@ msgstr "" msgid "Advanced Control" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" msgstr "" @@ -1504,7 +1553,7 @@ msgstr "" msgid "After Submit" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "" @@ -1531,11 +1580,11 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1600,7 +1649,7 @@ msgstr "" msgid "All Records" msgstr "" -#: frappe/public/js/frappe/form/form.js:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "" @@ -1660,7 +1709,7 @@ msgstr "" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " +msgid "Allow Consecutive Login Attempts" msgstr "" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 @@ -1681,11 +1730,6 @@ msgstr "" msgid "Allow Guest to View" msgstr "" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1734,7 +1778,7 @@ msgid "Allow Print for Cancelled" msgstr "" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "" @@ -1968,7 +2012,7 @@ msgstr "" msgid "Allows skipping authorization if a user has active tokens." msgstr "" -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "" @@ -1976,11 +2020,11 @@ msgstr "" msgid "Already in the following Users ToDo list:{0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "" @@ -1989,6 +2033,12 @@ msgstr "" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2040,10 +2090,8 @@ msgstr "" msgid "Amended Documents" msgstr "" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "" @@ -2067,6 +2115,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2160,10 +2213,12 @@ msgid "App Logo" msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2234,6 +2289,10 @@ msgstr "" msgid "Application Version" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2243,7 +2302,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2291,7 +2350,7 @@ msgstr "" msgid "Apply to all Documents Types" msgstr "" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "" @@ -2324,7 +2383,11 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2352,11 +2415,15 @@ msgctxt "Confirmation dialog message" msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:191 msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2364,7 +2431,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2419,6 +2486,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2428,7 +2501,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2491,6 +2564,11 @@ msgstr "" msgid "Assigned To/Owner" msgstr "" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "" @@ -2560,7 +2638,13 @@ msgstr "" msgid "Assignments" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -2640,7 +2724,7 @@ msgstr "" msgid "Attached To Name" msgstr "" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "" @@ -2656,7 +2740,7 @@ msgstr "" msgid "Attachment Limit (MB)" msgstr "" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "" @@ -2674,15 +2758,15 @@ 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:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "" @@ -2705,6 +2789,10 @@ msgstr "" msgid "Auth URL Data" msgstr "" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "" + #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authenticate as Service Principal" @@ -2722,7 +2810,7 @@ msgid "Authentication" msgstr "" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " +msgid "Authentication Apps you can use are:" msgstr "" #: frappe/email/doctype/email_account/email_account.py:339 @@ -2836,11 +2924,11 @@ msgstr "" msgid "Auto Repeat Day" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "" @@ -2848,11 +2936,16 @@ msgstr "" msgid "Auto Repeat Schedule" msgstr "" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "" @@ -2896,7 +2989,7 @@ msgstr "" msgid "Auto follow documents that you create" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "" @@ -2944,7 +3037,7 @@ msgstr "" msgid "Automatically Assign Documents to Users" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "" @@ -2958,11 +3051,6 @@ msgstr "" msgid "Automation" msgstr "" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3234,8 +3322,8 @@ msgstr "" #. Label of the based_on (Link) field in DocType 'Language' #: frappe/core/doctype/language/language.json -#: frappe/printing/page/print/print.js:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "" @@ -3352,10 +3440,8 @@ msgstr "" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "" @@ -3385,64 +3471,6 @@ msgstr "" msgid "Blocked" msgstr "" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3540,13 +3568,6 @@ msgstr "" msgid "Breadcrumbs" msgstr "" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3604,15 +3625,15 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" msgstr "" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "" @@ -3627,7 +3648,7 @@ msgstr "" msgid "Bulk Update" msgstr "" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "" @@ -3639,7 +3660,7 @@ msgstr "" msgid "Bulk operations only support up to 500 documents." msgstr "" -#: frappe/model/workflow.py:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "" @@ -3769,16 +3790,6 @@ msgstr "" msgid "CSV" msgstr "" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3829,11 +3840,6 @@ msgstr "" msgid "Call To Action URL" msgstr "" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -3851,7 +3857,7 @@ msgid "Camera" msgstr "" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3887,7 +3893,7 @@ msgstr "" msgid "Can not rename as column {0} is already present on DocType." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "" @@ -3911,14 +3917,15 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3936,16 +3943,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -3983,11 +3992,11 @@ msgstr "" msgid "Cannot Remove" msgstr "" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3995,7 +4004,7 @@ msgstr "" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "" @@ -4003,11 +4012,11 @@ msgstr "" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1013 +#: frappe/model/document.py:1017 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -4015,11 +4024,11 @@ msgstr "" msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "" @@ -4031,11 +4040,11 @@ msgstr "" msgid "Cannot create private workspace of other users" msgstr "" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4070,7 +4079,7 @@ msgstr "" msgid "Cannot delete {0}" msgstr "" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" msgstr "" @@ -4078,7 +4087,7 @@ msgstr "" msgid "Cannot edit Standard Dashboards" msgstr "" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "" @@ -4090,7 +4099,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" -#: frappe/model/document.py:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "" @@ -4098,8 +4107,8 @@ msgstr "" msgid "Cannot edit filters for standard charts" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "" @@ -4107,27 +4116,27 @@ msgstr "" msgid "Cannot edit standard fields" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:884 msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1132 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "" @@ -4139,11 +4148,11 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "" @@ -4151,7 +4160,7 @@ msgstr "" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "" @@ -4168,11 +4177,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4240,15 +4249,6 @@ msgstr "" msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4288,7 +4288,7 @@ msgstr "" msgid "" "Change the starting / current sequence number of an existing series.
    \n" "\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " +"Warning: Incorrectly updating counters can prevent documents from getting created." msgstr "" #. Label of the changed_at (Datetime) field in DocType 'Permission Log' @@ -4358,7 +4358,7 @@ msgstr "" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "" @@ -4391,7 +4391,7 @@ msgstr "" msgid "Check" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "" @@ -4399,7 +4399,7 @@ msgstr "" msgid "Check columns to select, drag to set order." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "" @@ -4440,11 +4440,6 @@ msgstr "" msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "" -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "" @@ -4454,17 +4449,17 @@ msgstr "" msgid "Child Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4493,6 +4488,7 @@ msgid "Choose authentication method to be used by all users" 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 msgid "City" msgstr "" @@ -4507,7 +4503,7 @@ msgstr "" msgid "Clear" msgstr "" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "" @@ -4519,7 +4515,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4545,7 +4541,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "" @@ -4557,11 +4553,15 @@ msgstr "" msgid "Click On Customize to add your first widget" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "" @@ -4592,24 +4592,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4787,7 +4787,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4842,7 +4842,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4898,11 +4898,11 @@ msgstr "" msgid "Column Name cannot be empty" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4929,7 +4929,7 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "" @@ -4971,16 +4971,6 @@ msgstr "" msgid "Comment can only be edited by the owner" msgstr "" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "" @@ -4988,7 +4978,7 @@ msgstr "" #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "" @@ -4997,7 +4987,7 @@ msgstr "" msgid "Comments and Communications will be associated with this linked document" msgstr "" -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "" @@ -5069,12 +5059,12 @@ msgid "Company Name" msgstr "" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "" @@ -5154,8 +5144,8 @@ msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5169,6 +5159,11 @@ msgstr "" msgid "Condition JSON" msgstr "" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5194,11 +5189,11 @@ msgstr "" msgid "Configuration" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5226,7 +5221,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5245,7 +5240,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "" @@ -5272,7 +5267,7 @@ msgstr "" msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "" @@ -5290,8 +5285,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "" @@ -5342,6 +5337,10 @@ msgstr "" msgid "Contact" msgstr "" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
    {0}" +msgstr "" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5399,15 +5398,13 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5415,24 +5412,12 @@ msgstr "" msgid "Content" msgstr "" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "" @@ -5500,7 +5485,7 @@ msgstr "" msgid "Copy embed code" msgstr "" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "" @@ -5508,12 +5493,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "" + #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5521,7 +5510,7 @@ msgstr "" msgid "Core Modules {0} cannot be searched in Global Search." msgstr "" -#: frappe/printing/page/print/print.js:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "" @@ -5529,7 +5518,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "" -#: frappe/model/document.py:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "" @@ -5537,15 +5526,15 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " +msgid "Could not start up:" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "" @@ -5590,13 +5579,14 @@ msgstr "" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "" @@ -5628,13 +5618,13 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5648,7 +5638,7 @@ msgid "Create Card" msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "" @@ -5682,12 +5672,12 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5695,7 +5685,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "" @@ -5707,7 +5697,7 @@ msgstr "" msgid "Create a Reminder" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "" @@ -5715,11 +5705,11 @@ msgstr "" msgid "Create a new record" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "" @@ -5735,7 +5725,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "" @@ -5745,7 +5735,7 @@ msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "" @@ -5761,7 +5751,7 @@ msgstr "" msgid "Created By" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "" @@ -5773,7 +5763,7 @@ msgstr "" msgid "Created On" msgstr "" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "" @@ -6082,7 +6072,7 @@ msgstr "" #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "" @@ -6110,14 +6100,14 @@ msgstr "" msgid "Customizations for {0} exported to:
    {1}" msgstr "" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6136,7 +6126,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "" @@ -6214,7 +6204,7 @@ msgstr "" msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "" -#: frappe/desk/doctype/event/event.py:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "" @@ -6261,7 +6251,7 @@ msgstr "" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "" @@ -6320,7 +6310,6 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6333,7 +6322,6 @@ msgstr "" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6369,7 +6357,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "" @@ -6400,7 +6388,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6538,11 +6526,11 @@ msgstr "" msgid "Debug Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "" @@ -6704,11 +6692,11 @@ msgstr "" msgid "Default display currency" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 msgid "Default value for {0} must be in the list of options." msgstr "" @@ -6742,6 +6730,12 @@ msgstr "" msgid "Defines actions on states and the next step and allowed roles." msgstr "" +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6759,22 +6753,27 @@ 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/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "" @@ -6783,6 +6782,12 @@ msgstr "" 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 +msgid "Delete Background Exported Reports After (Hours)" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6792,7 +6797,7 @@ msgstr "" msgid "Delete Data" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6806,7 +6811,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6815,7 +6820,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "" @@ -6848,12 +6853,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6889,11 +6894,15 @@ msgstr "" msgid "Deleted Name" msgstr "" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "" @@ -6908,7 +6917,7 @@ msgstr "" #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " +msgid "Deletion Steps" msgstr "" #: frappe/core/doctype/page/page.py:110 @@ -6925,7 +6934,7 @@ msgstr "" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "" @@ -6952,7 +6961,7 @@ msgstr "" msgid "Dependencies" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "" @@ -6987,7 +6996,6 @@ msgstr "" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -7008,7 +7016,6 @@ msgstr "" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -7018,11 +7025,6 @@ msgstr "" msgid "Description" msgstr "" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -7106,7 +7108,7 @@ msgstr "" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "" @@ -7167,11 +7169,6 @@ msgstr "" msgid "Disable Comment Count" msgstr "" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7189,11 +7186,6 @@ msgstr "" msgid "Disable Document Sharing" msgstr "" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "" @@ -7203,6 +7195,11 @@ msgstr "" msgid "Disable SMTP server authentication" msgstr "" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7248,7 +7245,6 @@ msgstr "" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7263,7 +7259,6 @@ msgstr "" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "" @@ -7274,7 +7269,7 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "" @@ -7292,7 +7287,7 @@ msgstr "" msgid "Discard {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "" @@ -7315,7 +7310,7 @@ msgstr "" msgid "Discussion Topic" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7351,19 +7346,23 @@ msgstr "" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " +msgid "Do Not Create New User" msgstr "" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7455,7 +7454,7 @@ msgstr "" msgid "DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1577 +#: frappe/core/doctype/doctype/doctype.py:1578 msgid "DocType {0} provided for the field {1} must have atleast one Link field" msgstr "" @@ -7502,11 +7501,11 @@ msgstr "" msgid "DocType View" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "" @@ -7515,7 +7514,7 @@ msgstr "" msgid "DocType is a Table / Form in the application." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "" @@ -7548,7 +7547,7 @@ msgstr "" msgid "DocType {} not found" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "" @@ -7562,7 +7561,7 @@ msgstr "" msgid "Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "" @@ -7624,31 +7623,29 @@ msgstr "" msgid "Document Links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7790,13 +7787,13 @@ msgstr "" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 msgid "Document Type and Function are required to create a number card" msgstr "" @@ -7833,7 +7830,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "" @@ -7841,15 +7838,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "" @@ -7991,13 +7988,13 @@ msgstr "" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "" @@ -8024,7 +8021,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "" @@ -8087,7 +8084,7 @@ msgstr "" msgid "Drag to add state" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "" @@ -8120,7 +8117,7 @@ msgstr "" msgid "Duplicate Filter Name" msgstr "" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "" @@ -8219,17 +8216,17 @@ msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8237,7 +8234,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8247,7 +8244,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8276,7 +8273,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8294,7 +8291,7 @@ msgstr "" msgid "Edit Footer" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "" @@ -8379,7 +8376,7 @@ msgstr "" msgid "Edit to add content" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "" @@ -8388,7 +8385,7 @@ msgstr "" msgid "Edit your workflow visually using the Workflow Builder." msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "" @@ -8396,7 +8393,7 @@ msgstr "" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "" @@ -8435,11 +8432,14 @@ msgstr "" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8448,6 +8448,7 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8457,6 +8458,8 @@ msgstr "" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "" @@ -8488,7 +8491,7 @@ msgstr "" msgid "Email Account Name" msgstr "" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "" @@ -8576,6 +8579,7 @@ msgid "Email IDs" msgstr "" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "" @@ -8619,9 +8623,9 @@ msgstr "" msgid "Email Rule" msgstr "" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" msgstr "" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' @@ -8687,11 +8691,11 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "" @@ -8730,7 +8734,7 @@ msgstr "" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8738,7 +8742,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -8757,7 +8761,7 @@ msgstr "" msgid "Enable Address Autocompletion" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "" @@ -8783,11 +8787,6 @@ msgstr "" msgid "Enable Dynamic Client Registration" msgstr "" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -8881,11 +8880,6 @@ msgstr "" msgid "Enable Social Login" msgstr "" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "" @@ -8893,7 +8887,7 @@ msgstr "" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "" @@ -8905,12 +8899,6 @@ msgstr "" msgid "Enable developer mode to create a standard Web Template" msgstr "" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "" - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "" @@ -8934,6 +8922,7 @@ msgstr "" #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -8946,6 +8935,7 @@ msgstr "" #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "" @@ -8971,14 +8961,10 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "" - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." msgstr "" #. Description of the 'Queue in Background (BETA)' (Check) field in DocType @@ -8995,11 +8981,11 @@ msgstr "" msgid "Encrypt Backups" msgstr "" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "" @@ -9011,7 +8997,7 @@ msgstr "" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -9027,6 +9013,10 @@ msgstr "" msgid "End Date cannot be before Start Date!" msgstr "" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9071,7 +9061,7 @@ msgstr "" msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "" @@ -9141,10 +9131,17 @@ msgstr "" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9154,7 +9151,7 @@ msgstr "" msgid "Error" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "" @@ -9174,7 +9171,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 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 "" @@ -9202,9 +9199,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "" @@ -9224,19 +9221,19 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "" @@ -9293,7 +9290,7 @@ msgstr "" msgid "Events" msgstr "" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "" @@ -9377,7 +9374,7 @@ msgstr "" msgid "Execute Console script" msgstr "" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "" @@ -9385,7 +9382,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "" @@ -9411,12 +9408,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9444,7 +9441,9 @@ msgid "Expire Notification On" msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "" @@ -9472,13 +9471,13 @@ msgstr "" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9515,7 +9514,7 @@ msgstr "" msgid "Export Import Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "" @@ -9524,11 +9523,11 @@ msgstr "" msgid "Export Type" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "" @@ -9536,6 +9535,10 @@ msgstr "" msgid "Export as zip" msgstr "" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "" @@ -9641,7 +9644,7 @@ msgstr "" msgid "Failed Logins (Last 30 days)" msgstr "" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "" @@ -9658,7 +9661,7 @@ msgstr "" msgid "Failed to complete setup" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "" @@ -9667,15 +9670,15 @@ msgstr "" msgid "Failed to connect to server" msgstr "" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "" @@ -9683,8 +9686,8 @@ msgstr "" msgid "Failed to enable scheduler: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "" @@ -9700,7 +9703,7 @@ msgstr "" msgid "Failed to generate preview of series" msgstr "" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "" @@ -9720,11 +9723,11 @@ msgstr "" msgid "Failed to optimize image: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "" @@ -9774,12 +9777,6 @@ msgstr "" msgid "Fax" msgstr "" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "" @@ -9837,17 +9834,17 @@ msgstr "" #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "" @@ -9860,7 +9857,7 @@ msgstr "" msgid "Field Description" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9890,7 +9887,7 @@ msgstr "" msgid "Field Type" msgstr "" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "" @@ -9916,11 +9913,11 @@ msgstr "" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "" -#: frappe/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "" -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9938,20 +9935,20 @@ 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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "" @@ -9967,15 +9964,15 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "" @@ -9998,7 +9995,7 @@ msgstr "" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -10011,7 +10008,7 @@ msgstr "" msgid "Fields Multicheck" msgstr "" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "" @@ -10019,7 +10016,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10047,7 +10044,7 @@ msgstr "" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10060,7 +10057,7 @@ msgstr "" msgid "File" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "" @@ -10113,7 +10110,7 @@ msgstr "" msgid "File backup is ready" msgstr "" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "" @@ -10121,7 +10118,7 @@ msgstr "" msgid "File not attached" msgstr "" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "" @@ -10130,11 +10127,11 @@ msgstr "" msgid "File too big" msgstr "" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "" @@ -10148,10 +10145,10 @@ msgstr "" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10188,11 +10185,11 @@ msgstr "" msgid "Filter Values" msgstr "" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10210,7 +10207,6 @@ msgstr "" msgid "Filtered Records" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "" @@ -10225,7 +10221,9 @@ msgstr "" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10247,6 +10245,11 @@ msgstr "" msgid "Filters Display" msgstr "" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10259,11 +10262,11 @@ msgstr "" msgid "Filters Section" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "" @@ -10276,18 +10279,18 @@ msgstr "" msgid "Filters {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1427 +#: frappe/public/js/frappe/views/reports/report_view.js:1429 msgid "Filters:" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 msgid "Find '{0}' in ..." msgstr "" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 msgid "Find {0} in {1}" msgstr "" @@ -10311,8 +10314,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "" @@ -10321,10 +10328,6 @@ msgstr "" msgid "First Success Message" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:49 -msgid "First Transaction" -msgstr "" - #: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." msgstr "" @@ -10375,11 +10378,11 @@ msgstr "" msgid "Fold" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1450 +#: frappe/core/doctype/doctype/doctype.py:1451 msgid "Fold can not be at the end of the form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1448 +#: frappe/core/doctype/doctype/doctype.py:1449 msgid "Fold must come before a Section Break" msgstr "" @@ -10397,7 +10400,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "" -#: frappe/core/doctype/file/file.py:472 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "" @@ -10504,7 +10507,7 @@ msgstr "" msgid "Footer HTML" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:75 +#: frappe/printing/doctype/letter_head/letter_head.py:81 msgid "Footer HTML set from attachment {0}" msgstr "" @@ -10541,7 +10544,7 @@ msgstr "" msgid "Footer Template Values" msgstr "" -#: frappe/printing/page/print/print.js:116 +#: frappe/printing/page/print/print.js:129 msgid "Footer might not be visible as {0} option is disabled" msgstr "" @@ -10600,8 +10603,8 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10627,12 +10630,6 @@ msgstr "" msgid "For help see Client Script API and Examples" msgstr "" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "" - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "" @@ -10647,7 +10644,7 @@ msgstr "" msgid "For updating, you can update only selective columns." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "" @@ -10702,7 +10699,7 @@ 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:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "" @@ -10762,6 +10759,11 @@ msgstr "" msgid "Format Data" msgstr "" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "" @@ -10789,7 +10791,15 @@ msgstr "" msgid "Frappe" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "" @@ -10878,7 +10888,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "" @@ -10905,18 +10915,16 @@ msgstr "" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "" @@ -10942,12 +10950,12 @@ msgstr "" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" +msgid "Further sub-groups can only be created under records marked as 'Group'" msgstr "" #: frappe/core/doctype/communication/communication.js:291 @@ -11007,7 +11015,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "" @@ -11015,8 +11023,14 @@ msgstr "" msgid "Generate Random Password" msgstr "" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "" @@ -11039,7 +11053,7 @@ msgstr "" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "" @@ -11175,7 +11189,7 @@ msgid "Go to this URL after completing the form" msgstr "" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "" @@ -11223,10 +11237,6 @@ msgstr "" msgid "Google Calendar" msgstr "" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
    {0}" -msgstr "" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "" @@ -11345,11 +11355,6 @@ msgstr "" msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "" -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11426,14 +11431,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11483,7 +11484,6 @@ msgstr "" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11494,9 +11494,8 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11600,7 +11599,7 @@ msgstr "" msgid "Header HTML" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "" @@ -11658,6 +11657,12 @@ msgstr "" msgid "Hello" msgstr "" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "" + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11723,7 +11728,7 @@ msgstr "" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "" @@ -11759,7 +11764,7 @@ msgstr "" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11792,11 +11797,6 @@ msgstr "" msgid "Hide Buttons" msgstr "" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "" - #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json @@ -11876,7 +11876,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -11890,7 +11890,7 @@ msgstr "" msgid "Hide descendant records of For Value." msgstr "" -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "" @@ -11939,11 +11939,8 @@ 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:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -12031,16 +12028,16 @@ msgstr "" #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -12136,9 +12133,9 @@ msgstr "" msgid "If Checked workflow status will not override status in list view" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "" @@ -12266,6 +12263,10 @@ msgstr "" msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12297,7 +12298,11 @@ msgstr "" msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "" -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "" @@ -12354,12 +12359,12 @@ msgstr "" msgid "Ignored Apps" msgstr "" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "" @@ -12420,11 +12425,11 @@ msgstr "" msgid "Image Width" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 msgid "Image field must be a valid fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "" @@ -12446,15 +12451,15 @@ msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "" @@ -12480,7 +12485,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12708,15 +12713,16 @@ msgstr "" msgid "Include Web View Link in Email" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "" @@ -12763,7 +12769,7 @@ msgstr "" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "" @@ -12775,7 +12781,7 @@ msgstr "" msgid "Incorrect URL" msgstr "" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "" @@ -12783,11 +12789,11 @@ msgstr "" msgid "Incorrect Verification code" msgstr "" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "" @@ -12799,7 +12805,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "" @@ -12874,7 +12880,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "" @@ -12890,7 +12896,7 @@ msgstr "" msgid "Insert Below" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "" @@ -12908,8 +12914,12 @@ msgstr "" msgid "Insert Style" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "" @@ -12926,7 +12936,7 @@ msgid "Installed Applications" msgstr "" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "" @@ -12943,19 +12953,19 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" msgstr "" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "" @@ -13059,9 +13069,9 @@ msgid "Invalid" msgstr "" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "" @@ -13069,7 +13079,7 @@ msgstr "" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "" @@ -13085,7 +13095,7 @@ msgstr "" msgid "Invalid Code. Please try again." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "" @@ -13105,16 +13115,20 @@ msgstr "" msgid "Invalid DocType: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13146,7 +13160,7 @@ msgstr "" msgid "Invalid Mail Server. Please rectify and try again." msgstr "" -#: frappe/model/naming.py:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "" @@ -13155,8 +13169,8 @@ msgstr "" msgid "Invalid Operation" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "" @@ -13168,25 +13182,25 @@ msgstr "" msgid "Invalid Output Format" msgstr "" -#: frappe/model/base_document.py:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "" @@ -13195,7 +13209,7 @@ msgstr "" msgid "Invalid Search Field {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "" @@ -13203,8 +13217,8 @@ msgstr "" msgid "Invalid Transition" msgstr "" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13218,47 +13232,51 @@ msgstr "" msgid "Invalid Values" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "" @@ -13270,31 +13288,27 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13302,11 +13316,11 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13314,20 +13328,28 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "" @@ -13335,6 +13357,10 @@ msgstr "" msgid "Invalid naming series {}: dot (.) missing" msgstr "" +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "" @@ -13343,19 +13369,27 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13363,7 +13397,7 @@ msgstr "" msgid "Invalid template file for import" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "" @@ -13372,20 +13406,20 @@ msgstr "" msgid "Invalid username or password" msgstr "" -#: frappe/model/naming.py:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "" @@ -13394,10 +13428,47 @@ msgstr "" msgid "Inverse" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "" @@ -13422,7 +13493,7 @@ msgstr "" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "" @@ -13475,6 +13546,10 @@ msgstr "" msgid "Is Global" msgstr "" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13501,8 +13576,13 @@ msgstr "" msgid "Is Primary" msgstr "" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 msgid "Is Primary Contact" msgstr "" @@ -13533,7 +13613,7 @@ msgstr "" msgid "Is Published Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "" @@ -13558,7 +13638,7 @@ msgstr "" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "" @@ -13594,7 +13674,7 @@ msgstr "" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "" @@ -13800,11 +13880,11 @@ msgstr "" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13825,12 +13905,14 @@ msgstr "" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -14092,7 +14174,7 @@ msgstr "" msgid "Landing Page" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "" @@ -14100,10 +14182,13 @@ msgstr "" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14191,8 +14276,12 @@ msgstr "" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "" @@ -14207,6 +14296,11 @@ msgstr "" msgid "Last Quarter" msgstr "" +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" + #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json @@ -14223,11 +14317,6 @@ msgstr "" msgid "Last Sync On" msgstr "" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14338,7 +14427,7 @@ msgstr "" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "" @@ -14387,8 +14476,8 @@ 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:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14416,7 +14505,7 @@ msgstr "" msgid "Letter Head Scripts" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "" @@ -14433,7 +14522,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "" @@ -14483,20 +14572,6 @@ msgstr "" msgid "Like" msgstr "" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "" @@ -14537,6 +14612,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14550,6 +14626,7 @@ msgstr "" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "" @@ -14680,10 +14757,15 @@ msgstr "" msgid "Linked With" msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +msgstr "" + #. Label of the links (Table) field in DocType 'Address' #. Label of the links (Table) field in DocType 'Contact' #. Label of the links_section (Tab Break) field in DocType 'DocType' #. Label of the links (Table) field in DocType 'Customize Form' +#. Label of the links (Table) field in DocType 'Event' #. Label of the links (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14691,6 +14773,7 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "" @@ -14732,7 +14815,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14773,7 +14856,7 @@ msgstr "" msgid "List setting message" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "" @@ -14782,9 +14865,8 @@ msgstr "" msgid "Load Balancing" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14801,10 +14883,10 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "" @@ -14816,7 +14898,7 @@ msgstr "" msgid "Loading import file..." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "" @@ -14826,7 +14908,7 @@ msgstr "" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "" @@ -14887,7 +14969,7 @@ msgstr "" msgid "Log out" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "" @@ -14947,7 +15029,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -14955,7 +15037,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "" @@ -15008,7 +15090,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -15027,7 +15109,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "" @@ -15131,7 +15213,10 @@ msgid "Major" 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 +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "" @@ -15207,7 +15292,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "" @@ -15219,15 +15304,15 @@ msgstr "" msgid "Mandatory field: {0}" msgstr "" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "" @@ -15308,10 +15393,8 @@ msgid "Mark as Unread" msgstr "" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15392,7 +15475,13 @@ msgstr "" msgid "Max auto email report per user" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "" @@ -15401,20 +15490,15 @@ msgstr "" msgid "Maximum" msgstr "" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "" -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "" -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "" @@ -15430,7 +15514,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15443,7 +15527,7 @@ msgstr "" msgid "Meeting" msgstr "" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "" @@ -15484,7 +15568,7 @@ msgstr "" msgid "Merge with existing" msgstr "" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "" @@ -15510,7 +15594,7 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15550,7 +15634,7 @@ msgstr "" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "" @@ -15582,29 +15666,21 @@ msgstr "" msgid "Meta" msgstr "" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "" @@ -15657,7 +15733,7 @@ msgstr "" msgid "Method Not Allowed" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "" @@ -15673,6 +15749,11 @@ msgstr "" msgid "Middle Name" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15739,11 +15820,11 @@ msgstr "" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "" @@ -15779,15 +15860,16 @@ msgstr "" msgid "Mobile No" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "" + #. Label of the modal_trigger (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Modal Trigger" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15808,7 +15890,7 @@ msgstr "" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -15984,10 +16066,12 @@ msgstr "" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "" @@ -16006,7 +16090,7 @@ msgstr "" msgid "Most Used" msgstr "" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "" @@ -16017,7 +16101,7 @@ msgstr "" msgid "Move" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "" @@ -16053,7 +16137,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "" @@ -16080,7 +16164,7 @@ msgstr "" msgid "Ms" msgstr "" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "" @@ -16103,7 +16187,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "" @@ -16121,7 +16205,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16159,9 +16243,9 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16171,11 +16255,11 @@ msgstr "" msgid "Name (Doc Name)" msgstr "" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "" @@ -16187,7 +16271,7 @@ msgstr "" msgid "Name of the new Print Format" msgstr "" -#: frappe/model/naming.py:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "" @@ -16227,7 +16311,7 @@ msgstr "" msgid "Naming Series" msgstr "" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "" @@ -16264,12 +16348,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16284,7 +16368,11 @@ msgstr "" msgid "Navigation Settings" msgstr "" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16292,7 +16380,7 @@ msgstr "" msgid "Negative Value" msgstr "" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16305,6 +16393,12 @@ msgstr "" msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +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 @@ -16313,7 +16407,7 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16334,10 +16428,6 @@ msgstr "" msgid "New Chart" msgstr "" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "" @@ -16346,8 +16436,8 @@ msgstr "" msgid "New Custom Block" msgstr "" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" msgstr "" @@ -16378,7 +16468,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "" @@ -16413,12 +16503,12 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "" @@ -16427,7 +16517,7 @@ msgstr "" msgid "New Quick List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "" @@ -16445,8 +16535,8 @@ msgstr "" msgid "New Users (Last 30 days)" msgstr "" -#: frappe/core/doctype/version/version_view.html:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "" @@ -16504,13 +16594,13 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "" @@ -16526,7 +16616,7 @@ msgstr "" msgid "New {0} {1} created" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "" @@ -16534,7 +16624,7 @@ msgstr "" msgid "New {} releases for the following apps are available" msgstr "" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "" @@ -16547,7 +16637,7 @@ msgstr "" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16654,14 +16744,15 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16711,6 +16802,10 @@ msgstr "" msgid "No Email Accounts Assigned" msgstr "" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "" @@ -16746,15 +16841,15 @@ msgstr "" msgid "No Label" msgstr "" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: frappe/public/js/frappe/list/bulk_operations.js:98 #: frappe/public/js/frappe/list/bulk_operations.js:170 #: frappe/utils/weasyprint.py:52 msgid "No Letterhead" msgstr "" -#: frappe/model/naming.py:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "" @@ -16762,7 +16857,7 @@ msgstr "" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "" @@ -16782,11 +16877,11 @@ msgstr "" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "" @@ -16802,11 +16897,11 @@ msgstr "" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16814,7 +16909,7 @@ msgstr "" msgid "No Suggestions" msgstr "" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "" @@ -16826,7 +16921,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "" @@ -16854,23 +16949,19 @@ msgstr "" msgid "No changes to update" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " +msgid "No comments yet." msgstr "" #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "" @@ -16886,11 +16977,15 @@ msgstr "" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16914,7 +17009,7 @@ msgstr "" msgid "No matching records. Search something new" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "" @@ -16958,7 +17053,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "" @@ -16970,7 +17065,7 @@ msgstr "" msgid "No records deleted" msgstr "" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "" @@ -16986,7 +17081,7 @@ msgstr "" msgid "No rows" msgstr "" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -17006,11 +17101,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -17019,7 +17114,7 @@ msgid "No {0} mail" msgstr "" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -17062,7 +17157,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "" @@ -17083,7 +17178,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -17109,20 +17204,19 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17131,10 +17225,10 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "" @@ -17166,7 +17260,7 @@ msgstr "" msgid "Not a valid User Image." msgstr "" -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "" @@ -17182,11 +17276,11 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "" @@ -17210,27 +17304,27 @@ msgstr "" msgid "Not in Developer Mode" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17265,7 +17359,7 @@ msgstr "" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17289,10 +17383,9 @@ msgstr "" msgid "Nothing left to undo" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "" @@ -17338,15 +17431,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17397,7 +17490,7 @@ msgstr "" msgid "Notify users with a popup when they log in" msgstr "" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "" @@ -17455,12 +17548,12 @@ msgstr "" msgid "Number of Queries" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17569,11 +17662,11 @@ msgstr "" msgid "OTP Issuer Name" msgstr "" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "" @@ -17692,7 +17785,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "" @@ -17732,7 +17825,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "" @@ -17777,7 +17870,7 @@ msgstr "" msgid "Only Allow Edit For" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "" @@ -17794,7 +17887,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "" @@ -17813,19 +17906,19 @@ msgstr "" msgid "Only one {0} can be set as primary." msgstr "" -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17895,7 +17988,7 @@ msgstr "" msgid "Open Settings" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "" @@ -17913,7 +18006,7 @@ msgstr "" msgid "Open a module or tool" msgstr "" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "" @@ -17921,7 +18014,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17936,13 +18029,13 @@ msgstr "" #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "" @@ -17951,6 +18044,10 @@ msgstr "" msgid "OpenID Configuration" msgstr "" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" @@ -17966,7 +18063,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "" @@ -17992,7 +18089,7 @@ msgstr "" msgid "Option 3" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "" @@ -18012,6 +18109,7 @@ msgstr "" #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -18020,11 +18118,12 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "" @@ -18033,7 +18132,7 @@ msgstr "" msgid "Options Help" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "" @@ -18041,7 +18140,7 @@ msgstr "" msgid "Options for select. Each option on a new line." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 msgid "Options for {0} must be set before setting the default value." msgstr "" @@ -18049,7 +18148,7 @@ msgstr "" msgid "Options is required for field {0} of type {1}" msgstr "" -#: frappe/model/base_document.py:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "" @@ -18065,7 +18164,7 @@ msgstr "" msgid "Order" msgstr "" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18081,12 +18180,12 @@ msgstr "" msgid "Org History Heading" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "" @@ -18154,10 +18253,6 @@ msgstr "" msgid "Overview" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" @@ -18165,9 +18260,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:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18208,11 +18303,11 @@ msgstr "" msgid "PDF generation failed because of broken image links" msgstr "" -#: frappe/printing/page/print/print.js:616 +#: frappe/printing/page/print/print.js:656 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:574 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18384,7 +18479,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:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "" @@ -18411,7 +18506,7 @@ msgstr "" msgid "Parent Document Type" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "" @@ -18428,11 +18523,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:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "" @@ -18441,7 +18536,7 @@ msgstr "" msgid "Parent Label" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 msgid "Parent Missing" msgstr "" @@ -18515,8 +18610,8 @@ msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18526,7 +18621,7 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "" @@ -18539,7 +18634,7 @@ msgstr "" msgid "Password Reset Link Generation Limit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18556,6 +18651,10 @@ msgstr "" msgid "Password is required or select Awaiting Password" msgstr "" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "" @@ -18564,7 +18663,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18572,11 +18671,11 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." msgstr "" @@ -18584,7 +18683,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "" @@ -18654,10 +18753,12 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "" @@ -18733,7 +18834,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "" @@ -18793,16 +18894,16 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: frappe/core/page/permission_manager/permission_manager.js:221 #: frappe/core/workspace/users/users.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Permissions" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "" @@ -18864,15 +18965,18 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -18885,13 +18989,13 @@ msgstr "" msgid "Phone No." msgstr "" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "" @@ -18951,11 +19055,11 @@ msgstr "" msgid "Please Set Chart" msgstr "" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "" @@ -18963,7 +19067,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18971,11 +19075,11 @@ msgstr "" msgid "Please attach a file first." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 msgid "Please attach an image file to set HTML for Footer." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "" @@ -18983,19 +19087,15 @@ msgstr "" msgid "Please attach the package" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "" - #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "" -#: frappe/model/base_document.py:951 +#: frappe/model/base_document.py:1008 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "" @@ -19027,11 +19127,11 @@ msgstr "" msgid "Please confirm your action to {0} this document." msgstr "" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "" @@ -19047,20 +19147,20 @@ msgstr "" msgid "Please do not change the template headings." msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "" @@ -19097,7 +19197,7 @@ msgstr "" msgid "Please enter Client Secret before social login is enabled" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "" @@ -19134,11 +19234,12 @@ msgstr "" msgid "Please enter your old password." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "" @@ -19146,11 +19247,11 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "" -#: frappe/model/document.py:988 +#: frappe/model/document.py:992 msgid "Please refresh to get the latest document." msgstr "" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:575 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19166,7 +19267,7 @@ msgstr "" msgid "Please save the document before removing assignment" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "" @@ -19174,7 +19275,7 @@ msgstr "" msgid "Please save to edit the template." msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "" @@ -19182,19 +19283,19 @@ msgstr "" msgid "Please select Entity Type first" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "" @@ -19202,7 +19303,7 @@ msgstr "" msgid "Please select a file or url" msgstr "" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" msgstr "" @@ -19214,7 +19315,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19240,11 +19341,11 @@ msgstr "" msgid "Please set Email Address" msgstr "" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:589 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "" @@ -19252,7 +19353,7 @@ msgstr "" msgid "Please set filters value in Report Filter table." msgstr "" -#: frappe/model/naming.py:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "" @@ -19264,7 +19365,7 @@ msgstr "" msgid "Please set the series to be used." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -19288,23 +19389,23 @@ msgstr "" msgid "Please specify a valid parent DocType for {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "" @@ -19325,7 +19426,7 @@ msgstr "" msgid "Please use following links to download file backup." msgstr "" -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" @@ -19379,7 +19480,7 @@ msgstr "" msgid "Portal Settings" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "" @@ -19407,6 +19508,7 @@ msgstr "" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "" @@ -19415,15 +19517,7 @@ msgstr "" msgid "Posting Timestamp" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19438,7 +19532,11 @@ msgstr "" msgid "Precision" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "" @@ -19486,7 +19584,7 @@ msgstr "" msgid "Prepared Report User" msgstr "" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "" @@ -19494,7 +19592,7 @@ msgstr "" msgid "Preparing Report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "" @@ -19515,7 +19613,7 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19529,13 +19627,6 @@ msgstr "" msgid "Preview HTML" msgstr "" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19564,7 +19655,7 @@ msgid "Preview:" msgstr "" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19576,12 +19667,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "" @@ -19627,19 +19713,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:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19657,8 +19743,8 @@ 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:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19709,7 +19795,7 @@ msgstr "" msgid "Print Format Type" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19748,7 +19834,7 @@ msgstr "" msgid "Print Language" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "" @@ -19765,8 +19851,8 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "" @@ -19814,11 +19900,11 @@ msgstr "" msgid "Print with letterhead" msgstr "" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "" @@ -19828,11 +19914,11 @@ msgstr "" msgid "Printer Name" msgstr "" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "" @@ -19890,7 +19976,7 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "" @@ -19911,18 +19997,28 @@ msgstr "" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "" + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: 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:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: 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/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "" @@ -19959,7 +20055,7 @@ msgstr "" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -20008,24 +20104,18 @@ msgstr "" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -20035,15 +20125,6 @@ msgstr "" msgid "Published" msgstr "" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json @@ -20133,7 +20214,9 @@ msgid "Put on Hold" msgstr "" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "" @@ -20145,8 +20228,8 @@ msgstr "" msgid "QR Code for Login Verification" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' @@ -20196,7 +20279,7 @@ msgstr "" msgid "Query analysis complete. Check suggested indexes." msgstr "" -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "" @@ -20296,7 +20379,7 @@ msgstr "" msgid "Quick Lists" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20333,12 +20416,6 @@ msgstr "" msgid "Rate Limiting" msgstr "" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20358,7 +20435,7 @@ msgstr "" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "" @@ -20375,7 +20452,7 @@ msgstr "" msgid "Raw Printing" msgstr "" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "" @@ -20392,8 +20469,8 @@ msgid "Re:" msgstr "" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "" @@ -20449,11 +20526,6 @@ msgstr "" msgid "Read Only Mode" msgstr "" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20469,7 +20541,7 @@ msgstr "" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "" @@ -20489,11 +20561,11 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20531,7 +20603,7 @@ msgstr "" msgid "Recent years are easy to guess." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "" @@ -20542,6 +20614,14 @@ msgstr "" msgid "Recipient" msgstr "" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20574,7 +20654,7 @@ msgstr "" msgid "Records for following doctypes will be filtered" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "" @@ -20591,6 +20671,11 @@ msgstr "" msgid "Redirect HTTP Status" msgstr "" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20685,6 +20770,11 @@ msgstr "" msgid "Reference Datetime" msgstr "" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20712,7 +20802,6 @@ msgstr "" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20753,9 +20842,9 @@ msgstr "" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20773,9 +20862,9 @@ msgstr "" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20805,7 +20894,6 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -20853,15 +20941,15 @@ msgstr "" msgid "Referrer" msgstr "" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "" @@ -20875,6 +20963,10 @@ msgstr "" msgid "Refresh Google Sheet" msgstr "" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -20886,18 +20978,18 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "" @@ -21074,7 +21166,7 @@ msgstr "" msgid "Rename {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "" @@ -21205,9 +21297,9 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "" @@ -21277,11 +21369,11 @@ 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:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "" @@ -21315,21 +21407,21 @@ msgstr "" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 msgid "Report cannot be set for Single types" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 -#: frappe/desk/doctype/number_card/number_card.js:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21341,24 +21433,24 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "" @@ -21366,7 +21458,7 @@ msgstr "" msgid "Report {0} is disabled" msgstr "" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "" @@ -21377,7 +21469,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:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "" @@ -21385,7 +21477,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "" @@ -21404,7 +21496,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "" @@ -21456,6 +21551,11 @@ msgstr "" msgid "Request URL" msgstr "" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21507,11 +21607,11 @@ msgstr "" msgid "Reset Dashboard Customizations" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "" @@ -21519,11 +21619,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21558,7 +21658,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21596,6 +21696,7 @@ msgid "Resource TOS URI" msgstr "" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21605,11 +21706,6 @@ msgstr "" msgid "Response" msgstr "" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "" - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21668,7 +21764,7 @@ msgstr "" msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "" @@ -21702,7 +21798,7 @@ msgstr "" msgid "Reverse Icon Color" msgstr "" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "" @@ -21720,9 +21816,7 @@ msgstr "" msgid "Revoked" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21763,6 +21857,7 @@ msgstr "" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21776,6 +21871,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21814,7 +21910,7 @@ msgstr "" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "" @@ -21824,7 +21920,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21867,6 +21963,7 @@ msgstr "" #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -21876,6 +21973,7 @@ msgstr "" #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -21912,7 +22010,7 @@ msgstr "" msgid "Roles can be set for users from their User page." msgstr "" -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "" @@ -21932,8 +22030,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -21945,8 +22041,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -21971,24 +22065,24 @@ msgstr "" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "" @@ -21997,11 +22091,6 @@ msgstr "" msgid "Row Format" msgstr "" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "" - #. Label of the row_indexes (Code) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Row Indexes" @@ -22016,7 +22105,7 @@ msgstr "" msgid "Row Number" msgstr "" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "" @@ -22024,30 +22113,33 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Added" msgstr "" #. Label of the rows_removed_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22138,7 +22230,7 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "" @@ -22216,7 +22308,7 @@ msgstr "" msgid "Salutation" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "" @@ -22244,20 +22336,20 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22266,16 +22358,12 @@ msgstr "" msgid "Save" msgstr "" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "" @@ -22283,11 +22371,11 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "" @@ -22312,7 +22400,7 @@ msgstr "" msgid "Saved Filters" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22391,7 +22479,7 @@ msgstr "" msgid "Scheduled Jobs Logs" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "" @@ -22414,7 +22502,7 @@ msgstr "" msgid "Scheduler Event" msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "" @@ -22427,7 +22515,7 @@ msgstr "" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "" @@ -22559,7 +22647,7 @@ msgstr "" msgid "Search by filename or extension" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "" @@ -22659,7 +22747,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "" @@ -22668,7 +22756,7 @@ msgstr "" msgid "See on Website" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "" @@ -22715,7 +22803,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/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22723,28 +22811,28 @@ msgstr "" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 msgid "Select Column" msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "" @@ -22803,12 +22891,15 @@ msgstr "" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "" @@ -22821,7 +22912,7 @@ msgstr "" msgid "Select Filters" msgstr "" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "" @@ -22854,8 +22945,8 @@ msgstr "" msgid "Select Module" msgstr "" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "" @@ -22920,14 +23011,14 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." +msgid "Select a group {0} first." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 msgid "Select a valid Subject field for creating documents from Email" msgstr "" @@ -22957,13 +23048,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22997,7 +23088,7 @@ msgstr "" msgid "Select {0}" msgstr "" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "" @@ -23181,7 +23272,7 @@ msgstr "" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "" @@ -23275,7 +23366,7 @@ msgstr "" msgid "Series counter for {} updated to {} successfully" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "" @@ -23285,7 +23376,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23304,7 +23395,7 @@ msgstr "" msgid "Server Script" msgstr "" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23351,7 +23442,7 @@ msgstr "" msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "" @@ -23360,14 +23451,14 @@ msgstr "" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "" @@ -23393,12 +23484,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23409,7 +23500,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23463,7 +23554,7 @@ msgstr "" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23473,16 +23564,16 @@ msgstr "" msgid "Set Value" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "" @@ -23501,18 +23592,21 @@ msgstr "" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "" -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23607,14 +23701,9 @@ msgstr "" msgid "Settings for the About Us Page" msgstr "" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "" @@ -23630,8 +23719,8 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "" @@ -23700,11 +23789,6 @@ msgstr "" msgid "Shop" msgstr "" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "" @@ -23724,11 +23808,6 @@ msgstr "" msgid "Show" msgstr "" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23781,7 +23860,13 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23909,7 +23994,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "" @@ -23926,7 +24011,7 @@ msgstr "" msgid "Show Title in Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "" @@ -23966,10 +24051,6 @@ msgstr "" msgid "Show all activity" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "" - #. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" @@ -24018,8 +24099,8 @@ msgstr "" msgid "Show list" msgstr "" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "" @@ -24048,7 +24129,7 @@ msgstr "" msgid "Show {0} List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "" @@ -24083,7 +24164,7 @@ msgstr "" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "" @@ -24120,22 +24201,22 @@ msgstr "" msgid "Signups have been disabled for this website." msgstr "" -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" msgstr "" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" msgstr "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' @@ -24143,13 +24224,13 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "" #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "" @@ -24157,7 +24238,7 @@ msgstr "" msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "" -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "" @@ -24376,11 +24457,11 @@ msgstr "" msgid "Something went wrong." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 msgid "Sorry! I could not find what you were looking for." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "" @@ -24411,20 +24492,23 @@ msgstr "" msgid "Sort Order" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 msgid "Sort field {0} must be a valid fieldname" msgstr "" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' -#: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24451,6 +24535,12 @@ msgstr "" msgid "SparkPost" msgstr "" +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "" @@ -24475,8 +24565,8 @@ msgstr "" msgid "Splash Image" msgstr "" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -24508,11 +24598,11 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "" @@ -24524,7 +24614,7 @@ msgstr "" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "" @@ -24532,11 +24622,11 @@ msgstr "" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "" -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "" @@ -24568,8 +24658,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:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "" @@ -24577,7 +24667,7 @@ msgstr "" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24642,6 +24732,7 @@ msgstr "" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24650,7 +24741,7 @@ msgstr "" msgid "State" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "" @@ -24706,6 +24797,7 @@ msgstr "" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24730,6 +24822,7 @@ msgstr "" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24737,8 +24830,8 @@ msgstr "" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24775,7 +24868,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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24805,6 +24898,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +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." @@ -24883,7 +24980,7 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -24899,7 +24996,7 @@ msgstr "" msgid "Subject Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "" @@ -24913,6 +25010,7 @@ msgstr "" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24921,10 +25019,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24934,7 +25033,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24958,7 +25057,7 @@ msgstr "" msgid "Submit an Issue" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "" @@ -24970,7 +25069,7 @@ msgstr "" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "" @@ -24982,7 +25081,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24991,11 +25090,11 @@ msgstr "" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "" @@ -25018,9 +25117,7 @@ msgid "Subsidiary" msgstr "" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "" @@ -25034,7 +25131,7 @@ msgstr "" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25076,20 +25173,16 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "" - #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" msgstr "" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "" @@ -25131,7 +25224,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "" @@ -25253,7 +25346,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25376,6 +25469,7 @@ msgstr "" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25458,6 +25552,7 @@ msgstr "" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" msgstr "" @@ -25531,7 +25626,7 @@ msgstr "" msgid "Table Break" msgstr "" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "" @@ -25540,7 +25635,7 @@ msgstr "" msgid "Table Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "" @@ -25562,11 +25657,11 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 msgid "Table {0} cannot be empty" msgstr "" @@ -25608,11 +25703,18 @@ msgstr "" msgid "Target" msgstr "" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25674,7 +25776,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "" @@ -25750,7 +25852,7 @@ msgid "" "{0}" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "" @@ -25774,7 +25876,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "" @@ -25786,15 +25888,15 @@ msgid "" "" msgstr "" -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." msgstr "" @@ -25836,7 +25938,7 @@ msgstr "" msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "" -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "" @@ -25844,7 +25946,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:658 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25874,7 +25976,7 @@ msgstr "" msgid "The field {0} is mandatory" msgstr "" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "" @@ -25945,15 +26047,19 @@ msgid "" "" msgstr "" -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

    Click here to download:
    {0}

    This link will expire in {1} hours." +msgstr "" + +#: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:995 +#: frappe/core/doctype/user/user.py:1002 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25965,7 +26071,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:338 +#: frappe/utils/response.py:336 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25986,7 +26092,7 @@ msgstr "" msgid "The webhook will be triggered if this expression is true" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "" @@ -26026,16 +26132,16 @@ 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:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "" @@ -26047,15 +26153,19 @@ msgstr "" msgid "There is no data to be exported" msgstr "" +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26067,7 +26177,7 @@ msgstr "" msgid "There was an error building this page" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "" @@ -26079,11 +26189,11 @@ msgstr "" msgid "There were errors while creating the document. Please try again." msgstr "" -#: frappe/public/js/frappe/views/communication.js:840 +#: frappe/public/js/frappe/views/communication.js:843 msgid "There were errors while sending email. Please try again." msgstr "" -#: frappe/model/naming.py:494 +#: frappe/model/naming.py:502 msgid "There were some errors setting the name, please contact the administrator" msgstr "" @@ -26124,7 +26234,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "" @@ -26132,6 +26242,10 @@ msgstr "" msgid "This Month" msgstr "" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "" @@ -26157,6 +26271,11 @@ msgstr "" msgid "This cannot be undone" msgstr "" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +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" @@ -26171,11 +26290,11 @@ msgstr "" msgid "This doctype has no orphan fields to trim" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26219,7 +26338,7 @@ msgid "" "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26235,7 +26354,7 @@ msgstr "" msgid "This form has been modified after you have loaded it" msgstr "" -#: frappe/public/js/frappe/form/form.js:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "" @@ -26254,7 +26373,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26278,12 +26397,6 @@ msgstr "" msgid "This is an automatically generated reply" msgstr "" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "" - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "" @@ -26302,7 +26415,7 @@ msgstr "" msgid "This link is invalid or expired. Please make sure you have pasted correctly." msgstr "" -#: frappe/printing/page/print/print.js:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "" @@ -26310,7 +26423,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26318,7 +26431,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "" @@ -26349,7 +26462,7 @@ msgstr "" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " +msgid "This value specifies the max number of rows that can be rendered in report view." msgstr "" #: frappe/website/doctype/web_page/web_page.js:85 @@ -26381,10 +26494,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " +msgid "This will terminate the job immediately and might be dangerous, are you sure?" msgstr "" -#: frappe/core/doctype/user/user.py:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "" @@ -26460,9 +26573,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26533,11 +26648,11 @@ msgstr "" msgid "Timeline Name" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 msgid "Timeline field must be a Link or Dynamic Link" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "" @@ -26563,10 +26678,7 @@ msgid "Timespan" msgstr "" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "" @@ -26586,9 +26698,6 @@ msgstr "" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26613,9 +26722,6 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26638,7 +26744,7 @@ msgstr "" msgid "Title Prefix" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "" @@ -26738,7 +26844,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "" @@ -26793,7 +26899,7 @@ msgstr "" msgid "Today" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "" @@ -26809,11 +26915,11 @@ msgstr "" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26859,7 +26965,7 @@ msgid "Tomorrow" msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "" @@ -26875,7 +26981,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26937,10 +27043,10 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -26983,18 +27089,18 @@ msgstr "" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " +msgid "Total number of emails to sync in initial sync process" msgstr "" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "" @@ -27061,26 +27167,10 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "" @@ -27094,6 +27184,11 @@ msgstr "" msgid "Transition Rules" msgstr "" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" @@ -27108,7 +27203,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27119,7 +27214,7 @@ msgstr "" msgid "Translate Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "" @@ -27203,8 +27298,8 @@ msgstr "" msgid "Try a Naming Series" msgstr "" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "" @@ -27270,7 +27365,7 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27364,7 +27459,7 @@ msgstr "" msgid "URL for documentation or help" msgstr "" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "" @@ -27467,7 +27562,7 @@ msgstr "" msgid "Unable to update event" msgstr "" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "" @@ -27476,7 +27571,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27492,7 +27587,7 @@ msgstr "" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27540,7 +27635,7 @@ msgstr "" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "" @@ -27552,8 +27647,7 @@ msgstr "" msgid "Unlock Reference Document" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "" @@ -27569,7 +27663,7 @@ msgstr "" msgid "Unread Notification Sent" msgstr "" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "" @@ -27607,8 +27701,8 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27628,7 +27722,7 @@ msgstr "" msgid "Unzipping files..." msgstr "" -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "" @@ -27642,7 +27736,7 @@ msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "" @@ -27676,6 +27770,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27718,7 +27817,7 @@ msgstr "" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "" @@ -27726,7 +27825,7 @@ msgstr "" msgid "Updated Successfully" msgstr "" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "" @@ -27734,7 +27833,7 @@ msgstr "" msgid "Updated successfully" msgstr "" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "" @@ -27779,8 +27878,8 @@ msgstr "" msgid "Upgrade your support experience with Frappe Helpdesk" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27790,11 +27889,11 @@ msgstr "" msgid "Upload Image" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "" @@ -27891,15 +27990,11 @@ msgstr "" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "" -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "" @@ -27920,7 +28015,9 @@ msgid "Used OAuth" msgstr "" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -27929,6 +28026,7 @@ msgstr "" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -27943,11 +28041,12 @@ msgstr "" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -27956,6 +28055,7 @@ msgstr "" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -27972,17 +28072,11 @@ msgstr "" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "" - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "" @@ -28012,7 +28106,7 @@ msgstr "" msgid "User Cannot Search" msgstr "" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "" @@ -28076,11 +28170,6 @@ msgstr "" msgid "User ID Property" msgstr "" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28100,6 +28189,11 @@ msgstr "" msgid "User Image" msgstr "" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "" @@ -28118,12 +28212,12 @@ msgstr "" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28136,7 +28230,9 @@ msgstr "" msgid "User Permissions created successfully" msgstr "" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "" @@ -28202,6 +28298,10 @@ msgstr "" msgid "User does not have permission to create the new {0}" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "" @@ -28232,7 +28332,7 @@ msgstr "" msgid "User {0} cannot be disabled" msgstr "" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "" @@ -28253,7 +28353,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "" @@ -28261,7 +28361,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28282,7 +28382,7 @@ msgstr "" msgid "Username" msgstr "" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "" @@ -28366,7 +28466,7 @@ msgstr "" msgid "Validate SSL Certificate" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "" @@ -28389,8 +28489,8 @@ msgstr "" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28422,7 +28522,7 @@ msgstr "" msgid "Value To Be Set" msgstr "" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "" @@ -28438,11 +28538,11 @@ msgstr "" msgid "Value for a check field can be either 0 or 1" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" -#: frappe/model/base_document.py:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "" @@ -28467,7 +28567,7 @@ msgstr "" msgid "Value to Validate" msgstr "" -#: frappe/model/base_document.py:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "" @@ -28484,7 +28584,7 @@ msgstr "" msgid "Value {0} must in {1} format" msgstr "" -#: frappe/core/doctype/version/version_view.html:8 +#: frappe/core/doctype/version/version_view.html:9 msgid "Values Changed" msgstr "" @@ -28497,7 +28597,7 @@ msgstr "" msgid "Verification" msgstr "" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "" @@ -28559,15 +28659,7 @@ msgstr "" msgid "View Audit Trail" msgstr "" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" @@ -28579,7 +28671,7 @@ msgstr "" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "" @@ -28589,7 +28681,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28636,7 +28728,7 @@ msgstr "" msgid "View this in your browser" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "" @@ -28705,6 +28797,7 @@ msgid "Warehouse" msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "" @@ -28713,7 +28806,7 @@ msgstr "" msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "" @@ -28799,7 +28892,7 @@ msgstr "" msgid "Web Page Block" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "" @@ -28902,7 +28995,7 @@ msgstr "" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "" @@ -28915,10 +29008,6 @@ msgstr "" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -28962,7 +29051,7 @@ msgstr "" msgid "Website Search Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "" @@ -29179,11 +29268,6 @@ msgstr "" msgid "Will add \"%\" before and after the query" msgstr "" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "" - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "" @@ -29198,7 +29282,7 @@ msgstr "" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "" @@ -29276,7 +29360,7 @@ msgstr "" msgid "Workflow Data" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "" @@ -29302,11 +29386,11 @@ msgstr "" msgid "Workflow State Field" msgstr "" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "" @@ -29314,15 +29398,30 @@ msgstr "" msgid "Workflow States Don't Exist" msgstr "" -#: frappe/model/workflow.py:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29338,13 +29437,13 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29414,11 +29513,11 @@ msgstr "" msgid "Workspaces" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "" @@ -29437,11 +29536,11 @@ msgstr "" msgid "Write" msgstr "" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "" @@ -29460,13 +29559,13 @@ msgstr "" msgid "Y Axis" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" msgstr "" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "" @@ -29518,16 +29617,17 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29555,6 +29655,18 @@ msgstr "" msgid "You Liked" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "" @@ -29593,20 +29705,20 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29630,7 +29742,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:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29656,13 +29768,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " +msgid "You can also copy-paste this" msgstr "" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "" +#: frappe/templates/emails/user_invitation_expired.html:8 +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 "" @@ -29675,11 +29791,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29699,7 +29815,7 @@ msgstr "" msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "" -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "" @@ -29717,7 +29833,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "" @@ -29729,11 +29845,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29751,7 +29867,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:385 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29781,7 +29897,7 @@ msgstr "" msgid "You created this" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "" @@ -29794,15 +29910,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29814,11 +29930,11 @@ msgstr "" msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "" @@ -29826,19 +29942,19 @@ msgstr "" msgid "You don't have permission to get a report on: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " +msgid "You have a new message from:" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29846,11 +29962,7 @@ msgstr "" msgid "You have not entered a value. The field will be set to empty." msgstr "" -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "" @@ -29870,7 +29982,7 @@ msgstr "" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29887,11 +29999,11 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "" @@ -29915,7 +30027,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "" @@ -29923,12 +30035,12 @@ msgstr "" msgid "You need to be logged in to access this page" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "" #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " +msgid "You need to create these first:" msgstr "" #: frappe/www/login.html:76 @@ -29963,11 +30075,19 @@ msgstr "" msgid "You need {0} permission to fetch values from {1} {2}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "" @@ -29998,10 +30118,26 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "" @@ -30031,7 +30167,7 @@ msgstr "" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "" @@ -30055,10 +30191,22 @@ msgstr "" msgid "Your email address" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "" @@ -30081,7 +30229,11 @@ msgstr "" msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "" -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "" @@ -30103,7 +30255,7 @@ msgstr "" msgid "Zero means send records updated at anytime" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" msgstr "" @@ -30125,10 +30277,6 @@ msgstr "" msgid "`job_id` paramater is required for deduplication." msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30163,7 +30311,7 @@ msgstr "" msgid "cProfile Output" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "" @@ -30308,12 +30456,12 @@ msgstr "" msgid "email" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "" @@ -30370,7 +30518,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "" @@ -30385,11 +30533,6 @@ msgstr "" msgid "import" msgstr "" -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "" - #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "" @@ -30398,7 +30541,7 @@ msgstr "" msgid "just now" msgstr "" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "" @@ -30427,7 +30570,7 @@ msgstr "" msgid "logged in" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30448,11 +30591,6 @@ msgstr "" msgid "merged {0} into {1}" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "" - #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json @@ -30476,7 +30614,7 @@ msgstr "" msgid "module name..." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "" @@ -30605,10 +30743,6 @@ msgstr "" msgid "red" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "" @@ -30664,19 +30798,19 @@ msgstr "" msgid "short" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "" @@ -30729,6 +30863,10 @@ msgstr "" msgid "this shouldn't break" msgstr "" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30756,7 +30894,7 @@ msgstr "" msgid "via Assignment Rule" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "" @@ -30770,7 +30908,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "" @@ -30803,10 +30941,15 @@ msgstr "" msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "" +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json @@ -30834,11 +30977,11 @@ msgstr "" msgid "{0}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "" @@ -30864,19 +31007,19 @@ msgstr "" msgid "{0} Calendar" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "" @@ -30900,6 +31043,10 @@ msgstr "" msgid "{0} List" msgstr "" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "" @@ -30912,7 +31059,7 @@ msgstr "" msgid "{0} Name" msgstr "" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "" @@ -30922,11 +31069,10 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "" @@ -30951,7 +31097,15 @@ msgstr "" msgid "{0} added" msgstr "" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "" @@ -30963,7 +31117,7 @@ msgstr "" msgid "{0} already unsubscribed for {1} {2}" msgstr "" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "" @@ -30971,7 +31125,7 @@ msgstr "" msgid "{0} are currently {1}" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "" @@ -30988,7 +31142,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -31030,11 +31184,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." msgstr "" @@ -31047,7 +31197,7 @@ msgstr "" msgid "{0} created this" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "" @@ -31069,7 +31219,7 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31101,7 +31251,7 @@ msgstr "" msgid "{0} hours ago" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "" @@ -31110,23 +31260,23 @@ msgstr "" msgid "{0} in row {1} cannot have both URL and child items" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "" @@ -31135,27 +31285,27 @@ msgstr "" msgid "{0} is currently {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "" @@ -31163,7 +31313,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31183,12 +31333,12 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "" @@ -31196,15 +31346,15 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "" @@ -31220,55 +31370,59 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 -#: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: 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/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31301,35 +31455,35 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "" @@ -31337,7 +31491,7 @@ msgstr "" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "" @@ -31350,11 +31504,11 @@ msgid "{0} not found" msgstr "" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31363,7 +31517,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "" @@ -31387,6 +31541,10 @@ msgstr "" msgid "{0} records will be exported" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31396,15 +31554,29 @@ msgstr "" msgid "{0} removed their assignment." msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "" @@ -31424,11 +31596,11 @@ msgstr "" msgid "{0} shared this document with {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "" @@ -31441,8 +31613,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "" @@ -31452,7 +31624,7 @@ msgstr "" #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "" @@ -31460,7 +31632,7 @@ msgstr "" msgid "{0} un-shared this document with {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "" @@ -31496,15 +31668,15 @@ msgstr "" msgid "{0} {1} added to Dashboard {2}" msgstr "" -#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "" @@ -31520,11 +31692,11 @@ msgstr "" msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" -#: frappe/model/base_document.py:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "" @@ -31532,79 +31704,79 @@ msgstr "" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "" -#: frappe/model/base_document.py:1120 +#: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 msgid "{0}: Cannot set import as {1} is not importable" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 +#: 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:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "" @@ -31612,7 +31784,7 @@ msgstr "" msgid "{0}: Other permission rules may also apply" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "" @@ -31620,7 +31792,7 @@ msgstr "" msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "" @@ -31633,11 +31805,11 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "" @@ -31661,7 +31833,7 @@ msgstr "" msgid "{count} rows selected" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "" @@ -31669,11 +31841,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
    {}" msgstr "" @@ -31699,7 +31871,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/my.po b/frappe/locale/my.po new file mode 100644 index 0000000000..c92da95ee7 --- /dev/null +++ b/frappe/locale/my.po @@ -0,0 +1,31819 @@ +msgid "" +msgstr "" +"Project-Id-Version: frappe\n" +"Report-Msgid-Bugs-To: developers@frappe.io\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-11 00:22\n" +"Last-Translator: developers@frappe.io\n" +"Language-Team: Burmese\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.16.0\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project-ID: 639578\n" +"X-Crowdin-Language: my\n" +"X-Crowdin-File: /[frappe.frappe] develop/frappe/locale/main.pot\n" +"X-Crowdin-File-ID: 52\n" +"Language: my_MM\n" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "!=" +msgstr "" + +#. Description of the 'Org History Heading' (Data) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "\"Company History\"" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:202 +msgid "\"Parent\" signifies the parent table in which this row must be added" +msgstr "" + +#. Description of the 'Team Members Heading' (Data) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "\"Team Members\" or \"Management\"" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1090 +msgid "\"amended_from\" field must be present to do an amendment." +msgstr "" + +#: frappe/utils/csvutils.py:246 +msgid "\"{0}\" is not a valid Google Sheets URL" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:21 +#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:22 +msgid "#{0}" +msgstr "" + +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:36 +msgid "${values.doctype_name} has been added to queue for optimization" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "© Frappe Technologies Pvt. Ltd. and contributors" +msgstr "" + +#. Label of the head_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "<head> HTML" +msgstr "" + +#: frappe/public/js/form_builder/store.js:206 +msgid "'In Global Search' is not allowed for field {0} of type {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1355 +msgid "'In Global Search' not allowed for type {0} in row {1}" +msgstr "" + +#: frappe/public/js/form_builder/store.js:198 +msgid "'In List View' is not allowed for field {0} of type {1}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:367 +msgid "'In List View' not allowed for type {0} in row {1}" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 +msgid "'Recipients' not specified" +msgstr "" + +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "" + +#: frappe/utils/__init__.py:261 +msgid "'{0}' is not a valid URL" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1349 +msgid "'{0}' not allowed for type {1} in row {2}" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:302 +msgid "(Mandatory)" +msgstr "" + +#: frappe/model/rename_doc.py:703 +msgid "** Failed: {0} to {1}: {2}" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:133 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 +msgid "+ Add / Remove Fields" +msgstr "" + +#. Description of the 'Doc Status' (Select) field in DocType 'Workflow Document +#. State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "0 - Draft; 1 - Submitted; 2 - Cancelled" +msgstr "" + +#. Description of the 'Priority' (Int) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "0 is highest" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:893 +msgid "1 = True & 0 = False" +msgstr "" + +#. Description of the 'Fraction Units' (Int) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "1 Currency = [?] Fraction\n" +"For e.g. 1 USD = 100 Cent" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:19 +msgid "1 Day" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:374 +msgid "1 Google Calendar Event synced." +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:963 +msgid "1 Report" +msgstr "" + +#: frappe/tests/test_utils.py:845 +msgid "1 day ago" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:17 +msgid "1 hour" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:52 +#: frappe/tests/test_utils.py:843 +msgid "1 hour ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:48 +#: frappe/tests/test_utils.py:841 +msgid "1 minute ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:66 +#: frappe/tests/test_utils.py:849 +msgid "1 month ago" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:3 +msgid "1 of 2" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:227 +msgid "1 record will be exported" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "" + +#: frappe/tests/test_utils.py:840 +msgid "1 second ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:62 +#: frappe/tests/test_utils.py:847 +msgid "1 week ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:70 +#: frappe/tests/test_utils.py:851 +msgid "1 year ago" +msgstr "" + +#: frappe/tests/test_utils.py:844 +msgid "2 hours ago" +msgstr "" + +#: frappe/tests/test_utils.py:850 +msgid "2 months ago" +msgstr "" + +#: frappe/tests/test_utils.py:848 +msgid "2 weeks ago" +msgstr "" + +#: frappe/tests/test_utils.py:852 +msgid "2 years ago" +msgstr "" + +#: frappe/tests/test_utils.py:842 +msgid "3 minutes ago" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:16 +msgid "30 minutes" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:18 +msgid "4 hours" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:37 +msgid "5 Records" +msgstr "" + +#: frappe/tests/test_utils.py:846 +msgid "5 days ago" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:36 +msgid "; not allowed in condition" +msgstr "" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "<" +msgstr "" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "<=" +msgstr "" + +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:601 +msgid "{0} is not a valid URL" +msgstr "" + +#. Content of the 'Help' (HTML) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "
    Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
    " +msgstr "" + +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

    Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

    " +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

    Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

    " +msgstr "" + +#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "
    \n" +" Edit list of Series in the box. Rules:\n" +"
      \n" +"
    • Each Series Prefix on a new line.
    • \n" +"
    • Allowed special characters are \"/\" and \"-\"
    • \n" +"
    • \n" +" Optionally, set the number of digits in the series using dot (.)\n" +" followed by hashes (#). For example, \".####\" means that the series\n" +" will have four digits. Default is five digits.\n" +"
    • \n" +"
    • \n" +" You can also use variables in the series name by putting them\n" +" between (.) dots\n" +"
      \n" +" Supported Variables:\n" +"
        \n" +"
      • .YYYY. - Year in 4 digits
      • \n" +"
      • .YY. - Year in 2 digits
      • \n" +"
      • .MM. - Month
      • \n" +"
      • .DD. - Day of month
      • \n" +"
      • .WW. - Week of the year
      • \n" +"
      • \n" +" .{fieldname}. - fieldname on the document e.g.\n" +" branch\n" +"
      • \n" +"
      • .FY. - Fiscal Year (requires ERPNext to be installed)
      • \n" +"
      • .ABBR. - Company Abbreviation (requires ERPNext to be installed)
      • \n" +"
      \n" +"
    • \n" +"
    \n" +" Examples:\n" +"
      \n" +"
    • INV-
    • \n" +"
    • INV-10-
    • \n" +"
    • INVK-
    • \n" +"
    • INV-.YYYY.-.{branch}.-.MM.-.####
    • \n" +"
    \n" +"
    \n" +"
    \n" +msgstr "" + +#. Content of the 'Custom HTML Help' (HTML) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "

    Custom CSS Help

    \n\n" +"

    Notes:

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

    Examples

    \n\n" +"

    1. Left align integers

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

    1. Add border to sections except the last section

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

    Print Format Help

    \n" +"
    \n" +"

    Introduction

    \n" +"

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

    \n" +"

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

    \n" +"
    \n" +"

    References

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

    Example

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

    Common Functions

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

    Default Template

    \n" +"

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

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

    Email Reply Example

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

    How to get fieldnames

    \n\n" +"

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

    \n\n" +"

    Templating

    \n\n" +"

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

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

    Condition Examples:

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

    Condition Examples:

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

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

    For Example:

    \n" +"

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

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

    Set context before rendering a template. Example:

    \n" +"

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

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

    For example:

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

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

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

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

    \n" +"

    Allowed functions:\n" +"

    \n" +"

    Example:

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

    " +msgstr "" + +#. Header text in the Welcome Workspace Workspace +#: frappe/core/workspace/welcome_workspace/welcome_workspace.json +msgid "Hi," +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:39 +msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." +msgstr "" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "=" +msgstr "" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid ">" +msgstr "" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid ">=" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1035 +msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" +msgstr "" + +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:175 +msgid "A field with the name {0} already exists in {1}" +msgstr "" + +#: frappe/core/doctype/file/file.py:269 +msgid "A file with same name {} already exists" +msgstr "" + +#. Description of the 'Scopes' (Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A list of resources which the Client App will have access to after the user allows it.
    e.g. project" +msgstr "" + +#: frappe/templates/emails/new_user.html:5 +msgid "A new account has been created for you at {0}" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 +msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." +msgstr "" + +#. Description of the 'Symbol' (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "A symbol for this currency. For e.g. $" +msgstr "" + +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:49 +msgid "A template already exists for field {0} of {1}" +msgstr "" + +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
    \n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "" + +#: frappe/utils/password_strength.py:169 +msgid "A word by itself is easy to guess." +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A0" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A1" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A2" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A3" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A4" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A5" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A6" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A7" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A8" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A9" +msgstr "" + +#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "ALL" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "API" +msgstr "" + +#. Label of the api_access (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "API Access" +msgstr "" + +#. Label of the api_endpoint (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "API Endpoint" +msgstr "" + +#. Label of the api_endpoint_args (Code) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "API Endpoint Args" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "" + +#. Label of the api_key (Data) field in DocType 'User' +#. Label of the api_key (Data) field in DocType 'Email Account' +#. Label of the api_key (Password) field in DocType 'Geolocation Settings' +#. Label of the api_key (Data) field in DocType 'Google Settings' +#. Label of the sb_01 (Section Break) field in DocType 'Google Settings' +#. Label of the api_key (Data) field in DocType 'Push Notification Settings' +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "API Key" +msgstr "" + +#. Description of the 'Authentication' (Section Break) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "API Key and Secret to interact with the relay server. These will be auto-generated when the first push notification is sent from any of the apps installed on this site." +msgstr "" + +#. Description of the 'API Key' (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "API Key cannot be regenerated" +msgstr "" + +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "" + +#. Label of the api_logging_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "API Logging" +msgstr "" + +#. Label of the api_method (Data) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "API Method" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/api_request_log/api_request_log.json +msgid "API Request Log" +msgstr "" + +#. Label of the api_secret (Password) field in DocType 'User' +#. Label of the api_secret (Password) field in DocType 'Email Account' +#. Label of the api_secret (Password) field in DocType 'Push Notification +#. Settings' +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "API Secret" +msgstr "" + +#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType' +#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "ASC" +msgstr "" + +#. Label of a standard help item +#. Type: Action +#: frappe/hooks.py +msgid "About" +msgstr "" + +#: frappe/www/about.html:11 frappe/www/about.html:18 +msgid "About Us" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/website/workspace/website/website.json +msgid "About Us Settings" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +msgid "About Us Team Member" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:27 +msgid "About {0} minute remaining" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:28 +msgid "About {0} minutes remaining" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:25 +msgid "About {0} seconds remaining" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "" + +#. Label of the access_control_section (Section Break) field in DocType 'Web +#. Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Access Control" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/workspace/users/users.json +msgid "Access Log" +msgstr "" + +#. Label of the access_token (Data) field in DocType 'OAuth Bearer Token' +#. Label of the access_token (Password) field in DocType 'Token Cache' +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Access Token" +msgstr "" + +#. Label of the access_token_url (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Access Token URL" +msgstr "" + +#: frappe/auth.py:494 +msgid "Access not allowed from this IP Address" +msgstr "" + +#. Label of the account_section (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Account" +msgstr "" + +#. Label of the account_deletion_settings_section (Section Break) field in +#. DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Account Deletion Settings" +msgstr "" + +#. Name of a role +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Accounts Manager" +msgstr "" + +#. Name of a role +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Accounts User" +msgstr "" + +#: frappe/public/js/frappe/form/dashboard.js:510 +msgid "Accurate count can not be fetched, click here to view all documents" +msgstr "" + +#. Label of the action (Select) field in DocType 'Amended Document Naming +#. Settings' +#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' +#. Label of the action (Data) field in DocType 'Navbar Item' +#. Label of the action (Select) field in DocType 'Onboarding Step' +#. Label of the action (Select) field in DocType 'Email Flag Queue' +#. Label of the action (Link) field in DocType 'Workflow Transition' +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_group/email_group.js:34 +#: frappe/email/doctype/email_group/email_group.js:63 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +#: frappe/workflow/page/workflow_builder/workflow_builder.js:37 +msgid "Action" +msgstr "" + +#. Label of the action (Small Text) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json +msgid "Action / Route" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:305 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:376 +msgid "Action Complete" +msgstr "" + +#: frappe/model/document.py:1888 +msgid "Action Failed" +msgstr "" + +#. Label of the action_label (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Action Label" +msgstr "" + +#. Label of the action_timeout (Int) field in DocType 'Success Action' +#: frappe/core/doctype/success_action/success_action.json +msgid "Action Timeout (Seconds)" +msgstr "" + +#. Label of the action_type (Select) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json +msgid "Action Type" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.py:120 +msgid "Action {0} completed successfully on {1} {2}. View it {3}" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.py:116 +msgid "Action {0} failed on {1} {2}. View it {3}" +msgstr "" + +#. Label of the actions_section (Tab Break) field in DocType 'DocType' +#. Label of the actions (Table) field in DocType 'Customize Form' +#: frappe/core/doctype/communication/communication.js:66 +#: frappe/core/doctype/communication/communication.js:74 +#: frappe/core/doctype/communication/communication.js:82 +#: frappe/core/doctype/communication/communication.js:90 +#: frappe/core/doctype/communication/communication.js:99 +#: frappe/core/doctype/communication/communication.js:108 +#: frappe/core/doctype/communication/communication.js:131 +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/rq_job/rq_job_list.js:14 +#: frappe/core/doctype/rq_job/rq_job_list.js:39 +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:48 +#: frappe/custom/doctype/customize_form/customize_form.js:108 +#: frappe/custom/doctype/customize_form/customize_form.js:116 +#: frappe/custom/doctype/customize_form/customize_form.js:124 +#: frappe/custom/doctype/customize_form/customize_form.js:132 +#: frappe/custom/doctype/customize_form/customize_form.js:140 +#: frappe/custom/doctype/customize_form/customize_form.js:148 +#: frappe/custom/doctype/customize_form/customize_form.js:283 +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/public/js/frappe/ui/page.html:57 +#: frappe/public/js/frappe/views/reports/query_report.js: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:850 +msgid "Actions" +msgstr "" + +#. Label of the activate (Check) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json +msgid "Activate" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' +#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/recorder/recorder_list.js:207 +#: frappe/core/doctype/user/user_list.js:12 +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/workflow/doctype/workflow/workflow_list.js:5 +msgid "Active" +msgstr "" + +#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Active Directory" +msgstr "" + +#. Label of the active_domains_sb (Section Break) field in DocType 'Domain +#. Settings' +#. Label of the active_domains (Table) field in DocType 'Domain Settings' +#: frappe/core/doctype/domain_settings/domain_settings.json +msgid "Active Domains" +msgstr "" + +#. Label of the active_sessions (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/www/third_party_apps.html:34 +msgid "Active Sessions" +msgstr "" + +#. Group in User's connections +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/form/dashboard.js:22 +#: frappe/public/js/frappe/form/footer/form_timeline.js:60 +msgid "Activity" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/workspace/build/build.json +#: frappe/core/workspace/users/users.json +msgid "Activity Log" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:482 +#: frappe/email/doctype/email_group/email_group.js:60 +#: frappe/public/js/frappe/form/grid_row.js:502 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:101 +#: frappe/public/js/frappe/form/templates/set_sharing.html:68 +#: frappe/public/js/frappe/list/bulk_operations.js:437 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 +#: frappe/public/js/frappe/widgets/widget_dialog.js:30 +msgid "Add" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:455 +msgid "Add / Remove Columns" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:4 +msgid "Add / Update" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:442 +msgid "Add A New Rule" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:601 +#: frappe/public/js/frappe/views/interaction.js:159 +msgid "Add Attachment" +msgstr "" + +#. Label of the add_background_image (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Add Background Image" +msgstr "" + +#. Label of the add_border_at_bottom (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Add Border at Bottom" +msgstr "" + +#. Label of the add_border_at_top (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Add Border at Top" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.js:37 +msgid "Add Card to Dashboard" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:210 +msgid "Add Chart to Dashboard" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:301 +msgid "Add Child" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_board.html:4 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 +#: frappe/public/js/print_format_builder/Field.vue:112 +msgid "Add Column" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:127 +msgid "Add Contact" +msgstr "" + +#: frappe/desk/doctype/event/event.js:38 +msgid "Add Contacts" +msgstr "" + +#. Label of the add_container (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Add Container" +msgstr "" + +#. Label of the set_meta_tags (Button) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Add Custom Tags" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:188 +#: frappe/public/js/frappe/widgets/widget_dialog.js:716 +msgid "Add Filters" +msgstr "" + +#. Label of the add_shade (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Add Gray Background" +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:230 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 +msgid "Add Group" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.js:30 +msgid "Add Indexes" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Add Multiple" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:445 +msgid "Add New Permission Rule" +msgstr "" + +#: frappe/desk/doctype/event/event.js:35 frappe/desk/doctype/event/event.js:42 +msgid "Add Participants" +msgstr "" + +#. Label of the add_query_parameters (Check) field in DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Add Query Parameters" +msgstr "" + +#: frappe/core/doctype/user/user.py:819 +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:133 +msgid "Add Signature" +msgstr "" + +#. Label of the add_bottom_padding (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Add Space at Bottom" +msgstr "" + +#. Label of the add_top_padding (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Add Space at Top" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.js:38 +#: frappe/email/doctype/email_group/email_group.js:59 +msgid "Add Subscribers" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:425 +msgid "Add Tags" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2151 +msgctxt "Button in list view actions menu" +msgid "Add Tags" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:433 +msgid "Add Template" +msgstr "" + +#. Label of the add_total_row (Check) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Add Total Row" +msgstr "" + +#. Label of the add_translate_data (Check) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Add Translate Data" +msgstr "" + +#. Label of the add_unsubscribe_link (Check) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Add Unsubscribe Link" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:6 +msgid "Add User Permissions" +msgstr "" + +#. Label of the add_video_conferencing (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Add Video Conferencing" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:299 +msgid "Add a Filter" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:9 +msgid "Add a New Role" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:211 +msgid "Add a Row" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:30 +#: frappe/templates/includes/comments/comments.html:47 +msgid "Add a comment" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:28 +#: frappe/public/js/form_builder/components/Tabs.vue:192 +msgid "Add a new section" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:193 +msgid "Add a row above the current row" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:205 +msgid "Add a row at the bottom" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:201 +msgid "Add a row at the top" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:197 +msgid "Add a row below the current row" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:286 +msgid "Add a {0} Chart" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:271 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:115 +msgid "Add column" +msgstr "" + +#: frappe/public/js/form_builder/components/AddFieldButton.vue:9 +#: frappe/public/js/form_builder/components/AddFieldButton.vue:48 +msgid "Add field" +msgstr "" + +#: frappe/public/js/form_builder/components/Sidebar.vue:49 +#: frappe/public/js/form_builder/components/Tabs.vue:153 +msgid "Add new tab" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:125 +msgid "Add page break" +msgstr "" + +#: frappe/custom/doctype/client_script/client_script.js:18 +msgid "Add script for Child Table" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:111 +msgid "Add section above" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:265 +msgid "Add section below" +msgstr "" + +#: frappe/public/js/form_builder/components/Sidebar.vue:52 +#: frappe/public/js/form_builder/components/Tabs.vue:157 +msgid "Add tab" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:263 +#: frappe/public/js/frappe/views/reports/query_report.js:252 +msgid "Add to Dashboard" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:99 +msgid "Add to ToDo" +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:32 +msgid "Add to table" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:99 +msgid "Add to this activity by mailing to {0}" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_column.html:20 +msgid "Add {0}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:289 +msgctxt "Primary action in list view" +msgid "Add {0}" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Added" +msgstr "" + +#. Description of the '<head> HTML' (Code) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Added HTML in the <head> section of the web page, primarily used for website verification and SEO" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:81 +msgid "Added default log doctypes: {}" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:180 +#: frappe/public/js/frappe/form/link_selector.js:202 +msgid "Added {0} ({1})" +msgstr "" + +#. Label of the additional_permissions (Section Break) field in DocType 'Custom +#. DocPerm' +#. Label of the additional_permissions (Section Break) field in DocType +#. 'DocPerm' +#. Label of the additional_permissions_section (Section Break) field in DocType +#. 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "Additional Permissions" +msgstr "" + +#. Name of a DocType +#. Label of the address (Link) field in DocType 'Contact' +#. Label of the address (Section Break) field in DocType 'Contact Us Settings' +#. Label of the address (Small Text) field in DocType 'Website Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Address" +msgstr "" + +#. Label of the address_line1 (Data) field in DocType 'Address' +#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Address Line 1" +msgstr "" + +#. Label of the address_line2 (Data) field in DocType 'Address' +#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/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 "" + +#. Name of a DocType +#: frappe/contacts/doctype/address_template/address_template.json +msgid "Address Template" +msgstr "" + +#. Label of the address_title (Data) field in DocType 'Address' +#. Label of the address_title (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Address Title" +msgstr "" + +#: frappe/contacts/doctype/address/address.py:72 +msgid "Address Title is mandatory." +msgstr "" + +#. Label of the address_type (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Address Type" +msgstr "" + +#. Description of the 'Address' (Small Text) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Address and other legal information you may want to put in the footer." +msgstr "" + +#: frappe/contacts/doctype/address/address.py:206 +msgid "Addresses" +msgstr "" + +#. Name of a report +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.json +msgid "Addresses And Contacts" +msgstr "" + +#. Description of a DocType +#: frappe/custom/doctype/client_script/client_script.json +msgid "Adds a custom client script to a DocType" +msgstr "" + +#. Description of a DocType +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Adds a custom field to a DocType" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 +msgid "Administration" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/salutation/salutation.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/domain/domain.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/patch_log/patch_log.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/version/version.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Administrator" +msgstr "" + +#: frappe/core/doctype/user/user.py:1226 +msgid "Administrator Logged In" +msgstr "" + +#: frappe/core/doctype/user/user.py:1220 +msgid "Administrator accessed {0} on {1} via IP Address {2}." +msgstr "" + +#: frappe/desk/form/document_follow.py:52 +msgid "Administrator can't follow" +msgstr "" + +#. Label of the advanced (Section Break) field in DocType 'DocType' +#. Label of the advanced_tab (Tab Break) field in DocType 'System Settings' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Advanced" +msgstr "" + +#. Label of the advanced_control_section (Section Break) field in DocType 'User +#. Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "Advanced Control" +msgstr "" + +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 +msgid "Advanced Search" +msgstr "" + +#. Label of the sb_advanced (Section Break) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Advanced Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:64 +#: frappe/public/js/frappe/ui/filters/filter.js:70 +msgid "After" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Cancel" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Delete" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Discard" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Insert" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Rename" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Save" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Save (Submitted Document)" +msgstr "" + +#. Label of the section_break_5 (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "After Submission" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Submit" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:63 +msgid "Aggregate Field is required to create a number card" +msgstr "" + +#. Label of the aggregate_function_based_on (Select) field in DocType +#. 'Dashboard Chart' +#. Label of the aggregate_function_based_on (Select) field in DocType 'Number +#. Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Aggregate Function Based On" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:410 +msgid "Aggregate Function field is required to create a dashboard chart" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Alert" +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Alerts and Notifications" +msgstr "" + +#: frappe/database/query.py:1610 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1535 +msgid "Alias must be a string" +msgstr "" + +#. Label of the align (Select) field in DocType 'Letter Head' +#. Label of the footer_align (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Align" +msgstr "" + +#. Label of the align_labels_right (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Align Labels to the Right" +msgstr "" + +#. Label of the right (Check) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "Align Right" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:479 +msgid "Align Value" +msgstr "" + +#. Name of a role +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/gender/gender.json +#: frappe/contacts/doctype/salutation/salutation.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/file/file.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/tag_link/tag_link.json +#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "All" +msgstr "" + +#. Label of the all_day (Check) field in DocType 'Calendar View' +#. Label of the all_day (Check) field in DocType 'Event' +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json +#: frappe/public/js/frappe/ui/notifications/notifications.js:408 +msgid "All Day" +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.py:43 +msgid "All Images attached to Website Slideshow should be public" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:29 +msgid "All Records" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:2224 +msgid "All Submissions" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:452 +msgid "All customizations will be removed. Please confirm." +msgstr "" + +#: frappe/templates/includes/comments/comments.html:158 +msgid "All fields are necessary to submit the comment." +msgstr "" + +#. Description of the 'Document States' (Table) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "All possible Workflow States and roles of the workflow. Docstatus Options: 0 is \"Saved\", 1 is \"Submitted\" and 2 is \"Cancelled\"" +msgstr "" + +#: frappe/utils/password_strength.py:183 +msgid "All-uppercase is almost as easy to guess as all-lowercase." +msgstr "" + +#. Label of the allocated_to (Link) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +msgid "Allocated To" +msgstr "" + +#. Label of the allow (Link) field in DocType 'User Permission' +#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key' +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/templates/includes/oauth_confirmation.html:16 +msgid "Allow" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.py:160 +msgid "Allow API Indexing Access" +msgstr "" + +#. Label of the allow_auto_repeat (Check) field in DocType 'DocType' +#. Label of the allow_auto_repeat (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Allow Auto Repeat" +msgstr "" + +#. Label of the allow_bulk_edit (Check) field in DocType 'DocField' +#. Label of the allow_bulk_edit (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Allow Bulk Edit" +msgstr "" + +#. Label of the allow_edit (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Allow Bulk Editing" +msgstr "" + +#. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Consecutive Login Attempts" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:79 +msgid "Allow Google Calendar Access" +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:40 +msgid "Allow Google Contacts Access" +msgstr "" + +#. Label of the allow_guest (Check) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Allow Guest" +msgstr "" + +#. Label of the allow_guest_to_view (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Allow Guest to View" +msgstr "" + +#. Label of the allow_guests_to_upload_files (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Guests to Upload Files" +msgstr "" + +#. Label of the allow_import (Check) field in DocType 'DocType' +#. Label of the allow_import (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Allow Import (via Data Import Tool)" +msgstr "" + +#. Label of the allow_login_after_fail (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Login After Fail" +msgstr "" + +#. Label of the allow_login_using_mobile_number (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Login using Mobile Number" +msgstr "" + +#. Label of the allow_login_using_user_name (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Login using User Name" +msgstr "" + +#. Label of the sb_allow_modules (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allow Modules" +msgstr "" + +#. Label of the allow_older_web_view_links (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Older Web View Links (Insecure)" +msgstr "" + +#. Label of the allow_print_for_cancelled (Check) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Allow Print for Cancelled" +msgstr "" + +#. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Allow Print for Draft" +msgstr "" + +#. Label of the allow_read_on_all_link_options (Check) field in DocType 'Web +#. Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Allow Read On All Link Options" +msgstr "" + +#. Label of the allow_rename (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Allow Rename" +msgstr "" + +#. Label of the roles_permission (Section Break) field in DocType 'Role +#. Permission for Page and Report' +#. Label of the allow_roles (Table MultiSelect) field in DocType 'Module +#. Onboarding' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Allow Roles" +msgstr "" + +#. Label of the allow_self_approval (Check) field in DocType 'Workflow +#. Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Allow Self Approval" +msgstr "" + +#. Label of the enable_telemetry (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Sending Usage Data for Improving Applications" +msgstr "" + +#. Description of the 'Allow Self Approval' (Check) field in DocType 'Workflow +#. Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Allow approval for creator of the document" +msgstr "" + +#. Label of the allow_comments (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow comments" +msgstr "" + +#. Label of the allow_delete (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow delete" +msgstr "" + +#. Label of the email_append_to (Check) field in DocType 'DocType' +#. Label of the email_append_to (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Allow document creation via Email" +msgstr "" + +#. Label of the allow_edit (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow editing after submit" +msgstr "" + +#. Description of the 'Allow Bulk Editing' (Check) field in DocType 'List View +#. Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Allow editing even if the doctype has a workflow set up.\n\n" +"Does nothing if a workflow isn't set up." +msgstr "" + +#. Label of the allow_events_in_timeline (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Allow events in timeline" +msgstr "" + +#. Label of the allow_in_quick_entry (Check) field in DocType 'DocField' +#. Label of the allow_in_quick_entry (Check) field in DocType 'Custom Field' +#. Label of the allow_in_quick_entry (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Allow in Quick Entry" +msgstr "" + +#. Label of the allow_incomplete (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow incomplete forms" +msgstr "" + +#. Label of the allow_multiple (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow multiple responses" +msgstr "" + +#. Label of the allow_on_submit (Check) field in DocType 'DocField' +#. Label of the allow_on_submit (Check) field in DocType 'Custom Field' +#. Label of the allow_on_submit (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Allow on Submit" +msgstr "" + +#. Label of the deny_multiple_sessions (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow only one session per user" +msgstr "" + +#. Label of the allow_page_break_inside_tables (Check) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Allow page break inside tables" +msgstr "" + +#. Label of the allow_print (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow print" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:431 +msgid "Allow recording my first session to improve user experience" +msgstr "" + +#. Description of the 'Allow incomplete forms' (Check) field in DocType 'Web +#. Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow saving if mandatory fields are not filled" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:424 +msgid "Allow sending usage data for improving applications" +msgstr "" + +#. Description of the 'Login After' (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allow user to login only after this hour (0-24)" +msgstr "" + +#. Description of the 'Login Before' (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allow user to login only before this hour (0-24)" +msgstr "" + +#. Description of the 'Login with email link' (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow users to log in without a password, using a login link sent to their email" +msgstr "" + +#. Label of the allowed (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Allowed" +msgstr "" + +#. Label of the allowed_file_extensions (Small Text) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allowed File Extensions" +msgstr "" + +#. Label of the allowed_in_mentions (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allowed In Mentions" +msgstr "" + +#. Label of the allowed_modules_section (Section Break) field in DocType 'User +#. Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Allowed Modules" +msgstr "" + +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "" + +#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Allowed Roles" +msgstr "" + +#. Label of the allowed_embedding_domains (Small Text) field in DocType 'Web +#. Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allowed embedding domains" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1256 +msgid "Allowing DocType, DocType. Be careful!" +msgstr "" + +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414" +msgstr "" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "" + +#: frappe/core/doctype/user/user.py:1034 +msgid "Already Registered" +msgstr "" + +#: frappe/desk/form/assign_to.py:137 +msgid "Already in the following Users ToDo list:{0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:907 +msgid "Also adding the dependent currency field {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:920 +msgid "Also adding the status dependency field {0}" +msgstr "" + +#. Label of the login_id (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Alternative Email ID" +msgstr "" + +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + +#. Label of the always_bcc (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Always BCC Address" +msgstr "" + +#. Label of the add_draft_heading (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Always add \"Draft\" Heading for printing draft documents" +msgstr "" + +#. Label of the always_use_account_email_id_as_sender (Check) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Always use this email address as sender address" +msgstr "" + +#. Label of the always_use_account_name_as_sender_name (Check) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Always use this name as sender name" +msgstr "" + +#. Label of the amend (Check) field in DocType 'Custom DocPerm' +#. Label of the amend (Check) field in DocType 'DocPerm' +#. Label of the amend (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "Amend" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming +#. Settings' +#. Option for the 'Default Amendment Naming' (Select) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Amend Counter" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +msgid "Amended Document Naming Settings" +msgstr "" + +#. Label of the amended_documents_section (Section Break) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Amended Documents" +msgstr "" + +#. Label of the amended_from (Link) field in DocType 'Personal Data Download +#. Request' +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +msgid "Amended From" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:12 +msgctxt "Freeze message while amending a document" +msgid "Amending" +msgstr "" + +#. Label of the amend_naming_override (Table) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Amendment Naming Override" +msgstr "" + +#: frappe/model/document.py:551 +msgid "Amendment Not Allowed" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:207 +msgid "Amendment naming rules updated." +msgstr "" + +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 +msgid "An error occurred while setting Session Defaults" +msgstr "" + +#. Description of the 'FavIcon' (Attach) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" +msgstr "" + +#: frappe/templates/includes/oauth_confirmation.html:38 +msgid "An unexpected error occurred while authorizing {}." +msgstr "" + +#. Label of the analytics_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Analytics" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:35 +msgid "Ancestors Of" +msgstr "" + +#. Label of the announcement_widget (Text Editor) field in DocType 'Navbar +#. Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Announcement Widget" +msgstr "" + +#. Label of the announcements_section (Section Break) field in DocType 'Navbar +#. Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Announcements" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Annual" +msgstr "" + +#. Label of the anonymization_matrix (Code) field in DocType 'Personal Data +#. Deletion Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Anonymization Matrix" +msgstr "" + +#. Label of the anonymous (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Anonymous responses" +msgstr "" + +#: frappe/public/js/frappe/request.js:189 +msgid "Another transaction is blocking this one. Please try again in a few seconds." +msgstr "" + +#: frappe/model/rename_doc.py:379 +msgid "Another {0} with name {1} exists, select another name" +msgstr "" + +#. Description of the 'Raw Commands' (Code) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:36 +msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type." +msgstr "" + +#. Label of the app_tab (Tab Break) field in DocType 'System Settings' +#. Label of the app_section (Section Break) field in DocType 'User' +#. Label of the app (Data) field in DocType 'Desktop Icon' +#. Label of the app (Data) field in DocType 'Workspace' +#. Label of the app (Data) field in DocType 'Website Theme Ignore App' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json +msgid "App" +msgstr "" + +#. Label of the app_id (Data) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "App ID" +msgstr "" + +#. Label of the app_logo (Attach Image) field in DocType 'Website Settings' +#: frappe/public/js/frappe/ui/toolbar/navbar.html:8 +#: frappe/website/doctype/website_settings/website_settings.json +msgid "App Logo" +msgstr "" + +#. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' +#. Label of the app_name (Data) field in DocType 'Changelog Feed' +#. Label of the app_name (Data) field in DocType 'Website Settings' +#: frappe/core/doctype/installed_applications/installed_applications.js:27 +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "App Name" +msgstr "" + +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "" + +#: frappe/modules/utils.py:280 +msgid "App not found for module: {0}" +msgstr "" + +#: frappe/__init__.py:1113 +msgid "App {0} is not installed" +msgstr "" + +#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email +#. Account' +#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Append Emails to Sent Folder" +msgstr "" + +#. Label of the append_to (Link) field in DocType 'Email Account' +#. Label of the append_to (Link) field in DocType 'IMAP Folder' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "Append To" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:202 +msgid "Append To can be one of {0}" +msgstr "" + +#. Description of the 'Append To' (Link) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Append as communication against this DocType (must have fields: \"Sender\" and \"Subject\"). These fields can be defined in the email settings section of the appended doctype." +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:105 +msgid "Applicable Document Types" +msgstr "" + +#. Label of the applicable_for (Link) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "Applicable For" +msgstr "" + +#. Label of the app_logo (Attach Image) field in DocType 'Navbar Settings' +#. Label of the logo_section (Section Break) field in DocType 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Application Logo" +msgstr "" + +#. Label of the app_name (Data) field in DocType 'Installed Application' +#. Label of the app_name (Data) field in DocType 'System Settings' +#: frappe/core/doctype/installed_application/installed_application.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Application Name" +msgstr "" + +#. Label of the app_version (Data) field in DocType 'Installed Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Application Version" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "" + +#. Label of the doctype_or_field (Select) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Applied On" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:103 +msgid "Apply" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2136 +msgctxt "Button in list view actions menu" +msgid "Apply Assignment Rule" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:318 +msgid "Apply Filters" +msgstr "" + +#. Label of the apply_strict_user_permissions (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Apply Strict User Permissions" +msgstr "" + +#. Label of the view (Select) field in DocType 'Client Script' +#: frappe/custom/doctype/client_script/client_script.json +msgid "Apply To" +msgstr "" + +#. Label of the apply_to_all_doctypes (Check) field in DocType 'User +#. Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "Apply To All Document Types" +msgstr "" + +#. Label of the apply_user_permission_on (Link) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Apply User Permission On" +msgstr "" + +#. Label of the apply_document_permissions (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Apply document permissions" +msgstr "" + +#. Description of the 'If user is the owner' (Check) field in DocType 'Custom +#. DocPerm' +#. Description of the 'If user is the owner' (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +msgid "Apply this rule if the User is the Owner" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:75 +msgid "Apply to all Documents Types" +msgstr "" + +#: frappe/model/workflow.py:322 +msgid "Applying: {0}" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:115 +msgid "Approval Required" +msgstr "" + +#. Label of a standard navbar item +#. Type: Route +#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18 +#: frappe/website/js/website.js:619 frappe/www/me.html:80 +msgid "Apps" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:41 +msgctxt "Number system" +msgid "Ar" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_column.html:14 +msgid "Archive" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Archived" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:494 +msgid "Archived Columns" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2115 +msgid "Are you sure you want to clear the assignments?" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:294 +msgid "Are you sure you want to delete all rows?" +msgstr "" + +#: frappe/public/js/frappe/form/controls/attach.js:38 +#: frappe/public/js/frappe/form/sidebar/attachments.js:135 +msgid "Are you sure you want to delete the attachment?" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:197 +msgctxt "Confirmation dialog message" +msgid "Are you sure you want to delete the column? All the fields in the column will be moved to the previous column." +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:126 +msgctxt "Confirmation dialog message" +msgid "Are you sure you want to delete the section? All the columns along with fields in the section will be moved to the previous section." +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:65 +msgctxt "Confirmation dialog message" +msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:191 +msgid "Are you sure you want to discard the changes?" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:977 +msgid "Are you sure you want to generate a new report?" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:120 +msgid "Are you sure you want to merge {0} with {1}?" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 +msgid "Are you sure you want to proceed?" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:25 +msgid "Are you sure you want to re-enable scheduler?" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:163 +msgid "Are you sure you want to relink this communication to {0}?" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:10 +msgid "Are you sure you want to remove all failed jobs?" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:116 +msgid "Are you sure you want to remove the {0} filter?" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:268 +msgid "Are you sure you want to reset all customizations?" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:125 +msgid "Are you sure you want to save this document?" +msgstr "" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 +#: frappe/core/doctype/user_permission/user_permission_list.js:165 +msgid "Are you sure?" +msgstr "" + +#. Label of the arguments (Code) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Arguments" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Arial" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:11 +msgid "As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User." +msgstr "" + +#: frappe/desk/form/assign_to.py:107 +msgid "As document sharing is disabled, please give them the required permissions before assigning." +msgstr "" + +#: frappe/templates/emails/account_deletion_notification.html:3 +msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" +msgstr "" + +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + +#. Label of the assign_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Assign Condition" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 +msgid "Assign To" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2097 +msgctxt "Button in list view actions menu" +msgid "Assign To" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 +msgid "Assign To User Group" +msgstr "" + +#. Label of the assign_to_users_section (Section Break) field in DocType +#. 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Assign To Users" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:260 +msgid "Assign a user" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:52 +msgid "Assign one by one, in sequence" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:174 +msgid "Assign to me" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:53 +msgid "Assign to the one who has the least assignments" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:54 +msgid "Assign to the user set in this field" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Assigned" +msgstr "" + +#. Label of the assigned_by (Link) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:41 +msgid "Assigned By" +msgstr "" + +#. Label of the assigned_by_full_name (Read Only) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +msgid "Assigned By Full Name" +msgstr "" + +#: frappe/model/meta.py:62 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:49 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:71 +#: frappe/public/js/frappe/model/meta.js:210 +#: frappe/public/js/frappe/model/model.js:136 +#: frappe/public/js/frappe/views/interaction.js:82 +msgid "Assigned To" +msgstr "" + +#: frappe/desk/report/todo/todo.py:40 +msgid "Assigned To/Owner" +msgstr "" + +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:269 +msgid "Assigning..." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Assignment" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Assignment Completed" +msgstr "" + +#. Label of the sb (Section Break) field in DocType 'Assignment Rule' +#. Label of the assignment_days (Table) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Assignment Days" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Tools Workspace +#. Label of a shortcut in the Tools Workspace +#. Label of the assignment_rule (Link) field in DocType 'ToDo' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/todo/todo.json +msgid "Assignment Rule" +msgstr "" + +#. Name of a DocType +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +msgid "Assignment Rule Day" +msgstr "" + +#. Name of a DocType +#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +msgid "Assignment Rule User" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55 +msgid "Assignment Rule is not allowed on document type {0}" +msgstr "" + +#. Label of the assignment_rules_section (Section Break) field in DocType +#. 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Assignment Rules" +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.py:153 +msgid "Assignment Update on {0}" +msgstr "" + +#: frappe/desk/form/assign_to.py:78 +msgid "Assignment for {0} {1}" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:62 +msgid "Assignment of {0} removed by {1}" +msgstr "" + +#. Label of the enable_email_assignment (Check) field in DocType 'Notification +#. Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:255 +msgid "Assignments" +msgstr "" + +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:697 +msgid "At least one column is required to show in the grid." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:73 +msgid "At least one field is required in Web Form Fields Table" +msgstr "" + +#: frappe/core/doctype/data_export/data_export.js:44 +msgid "At least one field of Parent Document Type is mandatory" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/public/js/form_builder/components/controls/AttachControl.vue:15 +#: frappe/public/js/frappe/form/controls/attach.js:5 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Attach" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:155 +msgid "Attach Document Print" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Attach Image" +msgstr "" + +#. Label of the attach_package (Attach) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json +msgid "Attach Package" +msgstr "" + +#. Label of the attach_print (Check) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Attach Print" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/WebLink.vue:10 +msgid "Attach a web link" +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:8 +msgid "Attach files / urls and add in table." +msgstr "" + +#. Label of the attached_file (Code) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Attached File" +msgstr "" + +#. Label of the attached_to_doctype (Link) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Attached To DocType" +msgstr "" + +#. Label of the attached_to_field (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Attached To Field" +msgstr "" + +#. Label of the attached_to_name (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Attached To Name" +msgstr "" + +#: frappe/core/doctype/file/file.py:152 +msgid "Attached To Name must be a string or an integer" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Attachment" +msgstr "" + +#. Label of the attachment_limit (Int) field in DocType 'Email Account' +#. Label of the attachment_limit (Int) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Attachment Limit (MB)" +msgstr "" + +#: frappe/core/doctype/file/file.py:338 +#: frappe/public/js/frappe/form/sidebar/attachments.js:36 +msgid "Attachment Limit Reached" +msgstr "" + +#. Label of the attachment_link (HTML) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Attachment Link" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Attachment Removed" +msgstr "" + +#. Label of the attachments (Code) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/public/js/frappe/form/templates/form_sidebar.html:63 +#: frappe/website/doctype/web_form/templates/web_form.html:113 +msgid "Attachments" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:119 +msgid "Attempting Connection to QZ Tray..." +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:135 +msgid "Attempting to launch QZ Tray..." +msgstr "" + +#: frappe/www/attribution.html:9 +msgid "Attribution" +msgstr "" + +#. Name of a report +#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json +msgid "Audit System Hooks" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/audit_trail/audit_trail.json +msgid "Audit Trail" +msgstr "" + +#. Label of the auth_url_data (Code) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Auth URL Data" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "" + +#. Label of the backend_app_flow (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Authenticate as Service Principal" +msgstr "" + +#. Label of the authentication_column (Section Break) field in DocType 'Email +#. Account' +#. Label of the authentication_credential_section (Section Break) field in +#. DocType 'Push Notification Settings' +#. Label of a Card Break in the Integrations Workspace +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Authentication" +msgstr "" + +#: frappe/www/qrcode.html:19 +msgid "Authentication Apps you can use are:" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:339 +msgid "Authentication failed while receiving emails from Email Account: {0}." +msgstr "" + +#. Label of the author (Data) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Author" +msgstr "" + +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "" + +#. Label of the authorization_code (Password) field in DocType 'Google +#. Calendar' +#. Label of the authorization_code (Password) field in DocType 'Google +#. Contacts' +#. Label of the authorization_code (Data) field in DocType 'OAuth Authorization +#. Code' +#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Authorization Code" +msgstr "" + +#. Label of the authorization_uri (Small Text) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Authorization URI" +msgstr "" + +#: frappe/templates/includes/oauth_confirmation.html:35 +msgid "Authorization error for {}." +msgstr "" + +#. Label of the authorize_api_access (Button) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Authorize API Access" +msgstr "" + +#. Label of the authorize_api_indexing_access (Button) field in DocType +#. 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Authorize API Indexing Access" +msgstr "" + +#. Label of the authorize_google_calendar_access (Button) field in DocType +#. 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Authorize Google Calendar Access" +msgstr "" + +#. Label of the authorize_google_contacts_access (Button) field in DocType +#. 'Google Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Authorize Google Contacts Access" +msgstr "" + +#. Label of the authorize_url (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Authorize URL" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Authorized" +msgstr "" + +#: frappe/www/attribution.html:20 +msgid "Authors" +msgstr "" + +#: frappe/www/attribution.html:37 +msgid "Authors / Maintainers" +msgstr "" + +#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth +#. Provider Settings' +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +msgid "Auto" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Auto Email Report" +msgstr "" + +#. Label of the autoname (Data) field in DocType 'DocType' +#. Label of the autoname (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Auto Name" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Tools Workspace +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/workspace/tools/tools.json +#: frappe/public/js/frappe/utils/common.js:442 +msgid "Auto Repeat" +msgstr "" + +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +msgid "Auto Repeat Day" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 +msgid "Auto Repeat Day{0} {1} has been repeated." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 +msgid "Auto Repeat Document Creation Failed" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:117 +msgid "Auto Repeat Schedule" +msgstr "" + +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + +#: frappe/public/js/frappe/utils/common.js:434 +msgid "Auto Repeat created for this document" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 +msgid "Auto Repeat failed for {0}" +msgstr "" + +#. Label of the auto_reply (Section Break) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Auto Reply" +msgstr "" + +#. Label of the auto_reply_message (Text Editor) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Auto Reply Message" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:177 +msgid "Auto assignment failed: {0}" +msgstr "" + +#. Label of the follow_assigned_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Auto follow documents that are assigned to you" +msgstr "" + +#. Label of the follow_shared_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Auto follow documents that are shared with you" +msgstr "" + +#. Label of the follow_liked_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Auto follow documents that you Like" +msgstr "" + +#. Label of the follow_commented_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Auto follow documents that you comment on" +msgstr "" + +#. Label of the follow_created_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Auto follow documents that you create" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Autocomplete" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Autoincrement" +msgstr "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Automate processes and extend standard functionality using scripts and background jobs" +msgstr "" + +#. Option for the 'Communication Type' (Select) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Automated Message" +msgstr "" + +#. Option for the 'Desk Theme' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/ui/theme_switcher.js:69 +msgid "Automatic" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:772 +msgid "Automatic Linking can be activated only for one Email Account." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:766 +msgid "Automatic Linking can be activated only if Incoming is enabled." +msgstr "" + +#. Description of a DocType +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Automatically Assign Documents to Users" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:131 +msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." +msgstr "" + +#. Label of the auto_account_deletion (Int) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Automatically delete account within (hours)" +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Automation" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/form/controls/password.js:88 +#: frappe/public/js/frappe/ui/group_by/group_by.js:21 +msgid "Average" +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 +msgid "Average of {0}" +msgstr "" + +#: frappe/utils/password_strength.py:130 +msgid "Avoid dates and years that are associated with you." +msgstr "" + +#: frappe/utils/password_strength.py:124 +msgid "Avoid recent years." +msgstr "" + +#: frappe/utils/password_strength.py:117 +msgid "Avoid sequences like abc or 6543 as they are easy to guess" +msgstr "" + +#: frappe/utils/password_strength.py:124 +msgid "Avoid years that are associated with you." +msgstr "" + +#. Label of the awaiting_password (Check) field in DocType 'User Email' +#: frappe/core/doctype/user_email/user_email.json +msgid "Awaiting Password" +msgstr "" + +#. Label of the awaiting_password (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Awaiting password" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:195 +msgid "Awesome Work" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:353 +msgid "Awesome, now try making an entry yourself" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:9 +msgctxt "Number system" +msgid "B" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B0" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B1" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B10" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B2" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B3" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B4" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B5" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B6" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B7" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B8" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B9" +msgstr "" + +#. Label of the bcc (Code) field in DocType 'Communication' +#. Label of the bcc (Code) field in DocType 'Notification Recipient' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "BCC" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:87 +msgctxt "Email Recipients" +msgid "BCC" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:181 +msgid "Back" +msgstr "" + +#: frappe/templates/pages/integrations/gcalendar-success.html:13 +msgid "Back to Desk" +msgstr "" + +#: frappe/www/404.html:26 +msgid "Back to Home" +msgstr "" + +#: frappe/www/login.html:201 frappe/www/login.html:232 +msgid "Back to Login" +msgstr "" + +#. Label of the background_color (Color) field in DocType 'Number Card' +#. Label of the background_color (Color) field in DocType 'Social Link +#. Settings' +#. Label of the background_color (Link) field in DocType 'Website Theme' +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Background Color" +msgstr "" + +#. Label of the background_image (Attach Image) field in DocType 'Web Page +#. Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Background Image" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Label of the background_jobs_section (Section Break) field in DocType +#. 'System Health Report' +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 +msgid "Background Jobs" +msgstr "" + +#. Label of the background_jobs_check (Data) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Background Jobs Check" +msgstr "" + +#. Label of the background_jobs_queue (Autocomplete) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Background Jobs Queue" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:87 +msgid "Background Print (required for >25 documents)" +msgstr "" + +#. Label of the background_workers (Section Break) field in DocType 'System +#. Settings' +#. Label of the background_workers (Table) field in DocType 'System Health +#. Report' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Background Workers" +msgstr "" + +#: frappe/desk/page/backups/backups.js:28 +msgid "Backup Encryption Key" +msgstr "" + +#: frappe/desk/page/backups/backups.py:98 +msgid "Backup job is already queued. You will receive an email with the download link" +msgstr "" + +#. Label of the backups_tab (Tab Break) field in DocType 'System Settings' +#. Label of the backups_section (Section Break) field in DocType 'System Health +#. Report' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Backups" +msgstr "" + +#. Label of the backups_size (Float) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Backups (MB)" +msgstr "" + +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68 +msgid "Bad Cron Expression" +msgstr "" + +#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Banker's Rounding" +msgstr "" + +#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Banker's Rounding (legacy)" +msgstr "" + +#. Label of the banner (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Banner" +msgstr "" + +#. Label of the banner_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Banner HTML" +msgstr "" + +#. Label of the banner_image (Attach Image) field in DocType 'User' +#. Label of the banner_image (Attach Image) field in DocType 'Web Form' +#: frappe/core/doctype/user/user.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Banner Image" +msgstr "" + +#. Description of the 'Banner HTML' (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Banner is above the Top Menu Bar." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Bar" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Barcode" +msgstr "" + +#. Label of the base_dn (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Base Distinguished Name (DN)" +msgstr "" + +#. Label of the base_url (Data) field in DocType 'Geolocation Settings' +#. Label of the base_url (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Base URL" +msgstr "" + +#. Label of the based_on (Link) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 +msgid "Based On" +msgstr "" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Based on Field" +msgstr "" + +#. Label of the user (Link) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Based on Permissions For User" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Basic" +msgstr "" + +#. Label of the section_break_3 (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Basic Info" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:63 +#: frappe/public/js/frappe/ui/filters/filter.js:69 +msgid "Before" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Cancel" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Delete" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Discard" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Insert" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Print" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Rename" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Save" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Save (Submitted Document)" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Submit" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Validate" +msgstr "" + +#. Option for the 'Level' (Select) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Beginner" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:29 +msgid "Beginning with" +msgstr "" + +#. Label of the beta (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Beta" +msgstr "" + +#: frappe/utils/password_strength.py:73 +msgid "Better add a few more letters or another word" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:27 +msgid "Between" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Billing" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:27 +msgid "Billing Contact" +msgstr "" + +#. Label of the binary_logging (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Binary Logging" +msgstr "" + +#. Label of the bio (Small Text) field in DocType 'User' +#. Label of the bio (Small Text) field in DocType 'About Us Team Member' +#: frappe/core/doctype/user/user.json +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +msgid "Bio" +msgstr "" + +#. Label of the birth_date (Date) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Birth Date" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:41 +msgid "Blank Template" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/block_module/block_module.json +msgid "Block Module" +msgstr "" + +#. Label of the block_modules (Table) field in DocType 'Module Profile' +#. Label of the block_modules (Table) field in DocType 'User' +#: frappe/core/doctype/module_profile/module_profile.json +#: frappe/core/doctype/user/user.json +msgid "Block Modules" +msgstr "" + +#. Label of the blocked (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Blocked" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Blue" +msgstr "" + +#. Label of the bold (Check) field in DocType 'DocField' +#. Label of the bold (Check) field in DocType 'Custom Field' +#. Label of the bold (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Bold" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Bot" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:126 +msgid "Both DocType and Name required" +msgstr "" + +#: frappe/templates/includes/login/login.js:24 +#: frappe/templates/includes/login/login.js:96 +msgid "Both login and password required" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:154 +msgid "Bottom" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:248 +msgid "Bottom Center" +msgstr "" + +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:247 +msgid "Bottom Left" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:249 +msgid "Bottom Right" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Bounced" +msgstr "" + +#. Label of the brand (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand" +msgstr "" + +#. Label of the brand_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand HTML" +msgstr "" + +#. Label of the banner_image (Attach Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand Image" +msgstr "" + +#. Label of the brand_logo (Attach Image) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Brand Logo" +msgstr "" + +#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n" +"has a transparent background and use the <img /> tag. Keep size as 200px x 30px" +msgstr "" + +#. Label of the breadcrumbs (Code) field in DocType 'Web Form' +#. Label of the breadcrumbs (Code) field in DocType 'Web Page' +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Breadcrumbs" +msgstr "" + +#. Label of the browser (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:36 +msgid "Browser" +msgstr "" + +#. Label of the browser_version (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Browser Version" +msgstr "" + +#: frappe/public/js/frappe/desk.js:19 +msgid "Browser not supported" +msgstr "" + +#. Label of the brute_force_security (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Brute Force Security" +msgstr "" + +#. Label of the bufferpool_size (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Bufferpool Size" +msgstr "" + +#. Name of a Workspace +#: frappe/core/workspace/build/build.json +msgid "Build" +msgstr "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Build your own reports, print formats, and dashboards. Create personalized workspaces for easier navigation" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow_list.js:18 +msgid "Build {0}" +msgstr "" + +#: frappe/templates/includes/footer/footer_powered.html:1 +msgid "Built on {0}" +msgstr "" + +#. Label of the bulk_actions (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Bulk Actions" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:142 +msgid "Bulk Delete" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:321 +msgid "Bulk Edit" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1190 +msgid "Bulk Edit {0}" +msgstr "" + +#: frappe/desk/reportview.py:637 +msgid "Bulk Operation Failed" +msgstr "" + +#: frappe/desk/reportview.py:641 +msgid "Bulk Operation Successful" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:131 +msgid "Bulk PDF Export" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +msgid "Bulk Update" +msgstr "" + +#: frappe/model/workflow.py:310 +msgid "Bulk approval only support up to 500 documents." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:56 +msgid "Bulk operation is enqueued in background." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:68 +msgid "Bulk operations only support up to 500 documents." +msgstr "" + +#: frappe/model/workflow.py:299 +msgid "Bulk {0} is enqueued in background." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Button" +msgstr "" + +#. Label of the button_gradients (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Button Gradients" +msgstr "" + +#. Label of the button_rounded_corners (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Button Rounded Corners" +msgstr "" + +#. Label of the button_shadows (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Button Shadows" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "By \"Naming Series\" field" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:111 +#: frappe/website/doctype/web_page/web_page.js:118 +msgid "By default the title is used as meta title, adding a value here will override it." +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "By fieldname" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "By script" +msgstr "" + +#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in +#. DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Bypass Restricted IP Address Check If Two Factor Auth Enabled" +msgstr "" + +#. Label of the bypass_2fa_for_retricted_ip_users (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Bypass Two Factor Auth for users who login from restricted IP Address" +msgstr "" + +#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Bypass restricted IP Address check If Two Factor Auth Enabled" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "C5E" +msgstr "" + +#: frappe/templates/print_formats/standard_macros.html:220 +msgid "CANCELLED" +msgstr "" + +#. Label of the cc (Code) field in DocType 'Communication' +#. Label of the cc (Code) field in DocType 'Notification Recipient' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "CC" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:77 +msgctxt "Email Recipients" +msgid "CC" +msgstr "" + +#. Label of the cmd (Data) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "CMD" +msgstr "" + +#: frappe/public/js/frappe/color_picker/color_picker.js:20 +msgid "COLOR PICKER" +msgstr "" + +#. Label of the css_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Label of the css (Code) field in DocType 'Print Style' +#. Label of the css (Code) field in DocType 'Web Page' +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/website/doctype/web_page/web_page.json +msgid "CSS" +msgstr "" + +#. Label of the css_class (Small Text) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "CSS Class" +msgstr "" + +#. Description of the 'Element Selector' (Data) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "CSS selector for the element you want to highlight." +msgstr "" + +#. Option for the 'File Type' (Select) field in DocType 'Data Export' +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/core/doctype/data_export/data_export.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "CSV" +msgstr "" + +#. Label of the cache_section (Section Break) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Cache" +msgstr "" + +#: frappe/sessions.py:35 +msgid "Cache Cleared" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:181 +msgid "Calculate" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Calendar" +msgstr "" + +#. Label of the calendar_name (Data) field in DocType 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Calendar Name" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/public/js/frappe/list/base_list.js:207 +msgid "Calendar View" +msgstr "" + +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/contacts/doctype/contact/contact.js:55 +#: frappe/desk/doctype/event/event.json +msgid "Call" +msgstr "" + +#. Label of the call_to_action (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Call To Action" +msgstr "" + +#. Label of the call_to_action_url (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Call To Action URL" +msgstr "" + +#. Label of the callback_message (Small Text) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Callback Message" +msgstr "" + +#. Label of the callback_title (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Callback Title" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150 +#: frappe/public/js/frappe/ui/capture.js:334 +msgid "Camera" +msgstr "" + +#. Label of the campaign (Data) field in DocType 'Web Page View' +#: frappe/public/js/frappe/utils/utils.js:1766 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:39 +msgid "Campaign" +msgstr "" + +#. Label of the campaign_description (Small Text) field in DocType 'UTM +#. Campaign' +#: frappe/website/doctype/utm_campaign/utm_campaign.json +msgid "Campaign Description (Optional)" +msgstr "" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:4 +#: frappe/public/js/frappe/form/templates/set_sharing.html:50 +msgid "Can Read" +msgstr "" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:7 +#: frappe/public/js/frappe/form/templates/set_sharing.html:53 +msgid "Can Share" +msgstr "" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:6 +#: frappe/public/js/frappe/form/templates/set_sharing.html:52 +msgid "Can Submit" +msgstr "" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:5 +#: frappe/public/js/frappe/form/templates/set_sharing.html:51 +msgid "Can Write" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:410 +msgid "Can not rename as column {0} is already present on DocType." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1164 +msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" +msgstr "" + +#. Description of the 'Apply User Permission On' (Link) field in DocType 'User +#. Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Can only list down the document types which has been linked to the User document type." +msgstr "" + +#: frappe/desk/form/document_follow.py:48 +msgid "Can't follow since changes are not tracked." +msgstr "" + +#: frappe/model/rename_doc.py:366 +msgid "Can't rename {0} to {1} because {0} doesn't exist." +msgstr "" + +#. Label of the cancel (Check) field in DocType 'Custom DocPerm' +#. Label of the cancel (Check) field in DocType 'DocPerm' +#. Label of the cancel (Check) field in DocType 'User Document Type' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/doctype/doctype_list.js:131 +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/reminders.js:54 +msgid "Cancel" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2206 +msgctxt "Button in list view actions menu" +msgid "Cancel" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:68 +msgctxt "Secondary button in warning dialog" +msgid "Cancel" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:979 +msgid "Cancel All" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:966 +msgid "Cancel All Documents" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2211 +msgctxt "Title of confirmation dialog" +msgid "Cancel {0} documents?" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType 'ToDo' +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +#: frappe/desk/form/save.py:64 +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/public/js/frappe/model/indicator.js:78 +#: frappe/public/js/frappe/ui/filters/filter.js:540 +msgid "Cancelled" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:52 +msgid "Cancelled Document restored as Draft" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:13 +msgctxt "Freeze message while cancelling a document" +msgid "Cancelling" +msgstr "" + +#: frappe/desk/form/linked_with.py:381 +msgid "Cancelling documents" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:91 +msgid "Cancelling {0}" +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.py:265 +msgid "Cannot Download Report due to insufficient permissions" +msgstr "" + +#: frappe/client.py:452 +msgid "Cannot Fetch Values" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.py:156 +msgid "Cannot Remove" +msgstr "" + +#: frappe/model/base_document.py:1222 +msgid "Cannot Update After Submit" +msgstr "" + +#: frappe/core/doctype/file/file.py:646 +msgid "Cannot access file path {0}" +msgstr "" + +#: frappe/public/js/workflow_builder/utils.js:183 +msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:110 +msgid "Cannot cancel before submitting. See Transition {0}" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:294 +msgid "Cannot cancel {0}." +msgstr "" + +#: frappe/model/document.py:1017 +msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" +msgstr "" + +#: frappe/model/document.py:1031 +msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" +msgstr "" + +#: frappe/public/js/workflow_builder/utils.js:170 +msgid "Cannot change state of Cancelled Document ({0} State)" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:99 +msgid "Cannot change state of Cancelled Document. Transition row {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1154 +msgid "Cannot change to/from autoincrement autoname in Customize Form" +msgstr "" + +#: frappe/core/doctype/communication/communication.py:169 +msgid "Cannot create a {0} against a child document: {1}" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:272 +msgid "Cannot create private workspace of other users" +msgstr "" + +#: frappe/core/doctype/file/file.py:165 +msgid "Cannot delete Home and Attachments folders" +msgstr "" + +#: frappe/model/delete_doc.py:419 +msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:369 +msgid "Cannot delete standard action. You can hide it if you want" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:391 +msgid "Cannot delete standard document state." +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:321 +msgid "Cannot delete standard field {0}. You can hide it instead." +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:38 +#: frappe/public/js/form_builder/components/Section.vue:117 +#: frappe/public/js/form_builder/components/Section.vue:190 +#: frappe/public/js/form_builder/components/Tabs.vue:56 +msgid "Cannot delete standard field. You can hide it if you want" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:347 +msgid "Cannot delete standard link. You can hide it if you want" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:313 +msgid "Cannot delete system generated field {0}. You can hide it instead." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:215 +msgid "Cannot delete {0}" +msgstr "" + +#: frappe/utils/nestedset.py:312 +msgid "Cannot delete {0} as it has child nodes" +msgstr "" + +#: frappe/desk/doctype/dashboard/dashboard.py:48 +msgid "Cannot edit Standard Dashboards" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:202 +msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:388 +msgid "Cannot edit Standard charts" +msgstr "" + +#: frappe/core/doctype/report/report.py:72 +msgid "Cannot edit a standard report. Please duplicate and create a new report" +msgstr "" + +#: frappe/model/document.py:1037 +msgid "Cannot edit cancelled document" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:378 +msgid "Cannot edit filters for standard charts" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 +msgid "Cannot edit filters for standard number cards" +msgstr "" + +#: frappe/client.py:166 +msgid "Cannot edit standard fields" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 +msgid "Cannot enable {0} for a non-submittable doctype" +msgstr "" + +#: frappe/core/doctype/file/file.py:264 +msgid "Cannot find file {} on disk" +msgstr "" + +#: frappe/core/doctype/file/file.py:586 +msgid "Cannot get file contents of a Folder" +msgstr "" + +#: frappe/printing/page/print/print.js:884 +msgid "Cannot have multiple printers mapped to a single print format." +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1134 +msgid "Cannot import table with more than 5000 rows." +msgstr "" + +#: frappe/model/document.py:1105 +msgid "Cannot link cancelled document: {0}" +msgstr "" + +#: frappe/model/mapper.py:175 +msgid "Cannot map because following condition fails:" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:971 +msgid "Cannot match column {0} with any field" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:176 +msgid "Cannot move row" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:932 +msgid "Cannot remove ID field" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.py:132 +msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:235 +msgid "Cannot set Notification with event {0} on Document Type {1}" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:67 +msgid "Cannot share {0} with submit permission as the doctype {1} is not submittable" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:291 +msgid "Cannot submit {0}." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.js:26 +#: frappe/public/js/frappe/list/bulk_operations.js:366 +msgid "Cannot update {0}" +msgstr "" + +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." +msgstr "" + +#: frappe/model/db_query.py:1168 +msgid "Cannot use {0} in order/group by" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:297 +msgid "Cannot {0} {1}." +msgstr "" + +#: frappe/utils/password_strength.py:181 +msgid "Capitalization doesn't help very much." +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:294 +msgid "Capture" +msgstr "" + +#. Label of the card (Link) field in DocType 'Number Card Link' +#: frappe/desk/doctype/number_card_link/number_card_link.json +msgid "Card" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Card Break" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:262 +msgid "Card Label" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:262 +msgid "Card Links" +msgstr "" + +#. Label of the cards (Table) field in DocType 'Dashboard' +#: frappe/desk/doctype/dashboard/dashboard.json +msgid "Cards" +msgstr "" + +#. Label of the category (Data) field in DocType 'Desktop Icon' +#. Label of the category (Link) field in DocType 'Help Article' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/public/js/frappe/views/interaction.js:72 +#: frappe/website/doctype/help_article/help_article.json +msgid "Category" +msgstr "" + +#. Label of the category_description (Text) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json +msgid "Category Description" +msgstr "" + +#. Label of the category_name (Data) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json +msgid "Category Name" +msgstr "" + +#. Option for the 'Align' (Select) field in DocType 'Letter Head' +#. Option for the 'Text Align' (Select) field in DocType 'Web Page' +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Center" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:16 +msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:11 +#: frappe/tests/test_translate.py:111 +msgid "Change" +msgstr "" + +#: frappe/tests/test_translate.py:112 +msgctxt "Coins" +msgid "Change" +msgstr "" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:38 +msgid "Change Image" +msgstr "" + +#. Label of the label (Data) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Change Label (via Custom Translation)" +msgstr "" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:45 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:141 +msgid "Change Letter Head" +msgstr "" + +#. Label of the change_password (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Change Password" +msgstr "" + +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:27 +msgid "Change Print Format" +msgstr "" + +#. Description of the 'Update Series Counter' (Section Break) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Change the starting / current sequence number of an existing series.
    \n\n" +"Warning: Incorrectly updating counters can prevent documents from getting created." +msgstr "" + +#. Label of the changed_at (Datetime) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Changed at" +msgstr "" + +#. Label of the changed_by (Link) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Changed by" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +msgid "Changelog Feed" +msgstr "" + +#. Label of the changed_values (HTML) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Changes" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.js:5 +msgid "Changing any setting will reflect on all the email accounts associated with this domain." +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.js:67 +msgid "Changing rounding method on site with data can result in unexpected behaviour." +msgstr "" + +#. Label of the channel (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Channel" +msgstr "" + +#. Label of the chart (Link) field in DocType 'Dashboard Chart Link' +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Chart" +msgstr "" + +#. Label of the chart_config (Code) field in DocType 'Dashboard Settings' +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +msgid "Chart Configuration" +msgstr "" + +#. Label of the chart_name (Data) field in DocType 'Dashboard Chart' +#. Label of the chart_name (Link) field in DocType 'Workspace Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/workspace_chart/workspace_chart.json +#: frappe/public/js/frappe/views/reports/query_report.js:289 +#: frappe/public/js/frappe/widgets/widget_dialog.js:137 +msgid "Chart Name" +msgstr "" + +#. Label of the chart_options (Code) field in DocType 'Dashboard' +#. Label of the chart_options_section (Section Break) field in DocType +#. 'Dashboard Chart' +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Chart Options" +msgstr "" + +#. Label of the source (Link) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Chart Source" +msgstr "" + +#. Label of the chart_type (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/views/reports/report_view.js:510 +msgid "Chart Type" +msgstr "" + +#. Label of the charts (Table) field in DocType 'Dashboard' +#. Label of the charts (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/workspace/workspace.json +msgid "Charts" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Chat" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Check" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:99 +msgid "Check Request URL" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 +msgid "Check columns to select, drag to set order." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 +msgid "Check the Error Log for more information: {0}" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.js:147 +msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it." +msgstr "" + +#. Description of the 'User must always select' (Check) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Check this if you want to force the user to select a series before saving. There will be no default if you check this." +msgstr "" + +#. Description of the 'Show Full Number' (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." +msgstr "" + +#: frappe/public/js/frappe/desk.js:235 +msgid "Checking one moment" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.js:140 +msgid "Checking this will enable tracking page views for blogs, web pages, etc." +msgstr "" + +#. Description of the 'Hide Custom DocTypes and Reports' (Check) field in +#. DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Checking this will hide custom doctypes and reports cards in Links section" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:78 +msgid "Checking this will publish the page on your website and it'll be visible to everyone." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:104 +msgid "Checking this will show a text area where you can write custom javascript that will run on this page." +msgstr "" + +#: frappe/www/list.py:85 +msgid "Child DocTypes are not allowed" +msgstr "" + +#. Label of the child_doctype (Data) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Child Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1648 +msgid "Child Table {0} for field {1}" +msgstr "" + +#. Description of the 'Is Child Table' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:53 +msgid "Child Tables are shown as a Grid in other DocTypes" +msgstr "" + +#: frappe/database/query.py:662 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:651 +msgid "Choose Existing Card or create New Card" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:571 +msgid "Choose a block or continue typing" +msgstr "" + +#: frappe/public/js/form_builder/components/controls/DataControl.vue:18 +#: frappe/public/js/frappe/form/controls/color.js:5 +msgid "Choose a color" +msgstr "" + +#: frappe/public/js/form_builder/components/controls/DataControl.vue:21 +#: frappe/public/js/frappe/form/controls/icon.js:5 +msgid "Choose an icon" +msgstr "" + +#. Description of the 'Two Factor Authentication method' (Select) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Choose authentication method to be used by all users" +msgstr "" + +#. Label of the city (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "City" +msgstr "" + +#. Label of the city (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "City/Town" +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:12 +#: frappe/public/js/frappe/form/controls/attach.js:16 +msgid "Clear" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:438 +msgid "Clear & Add Template" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:114 +msgid "Clear & Add template" +msgstr "" + +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2112 +msgctxt "Button in list view actions menu" +msgid "Clear Assignment" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:287 +msgid "Clear Cache and Reload" +msgstr "" + +#: frappe/core/doctype/error_log/error_log_list.js:12 +msgid "Clear Error Logs" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:299 +msgid "Clear Filters" +msgstr "" + +#. Label of the days (Int) field in DocType 'Logs To Clear' +#: frappe/core/doctype/logs_to_clear/logs_to_clear.json +msgid "Clear Logs After (days)" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:144 +msgid "Clear User Permissions" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:439 +msgid "Clear the email message and add the template" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.py:215 +msgid "Clearing end date, as it cannot be in the past for published pages." +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:194 +msgid "Click On Customize to add your first widget" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 +msgid "Click here" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 +msgid "Click on a file to select it." +msgstr "" + +#: frappe/templates/emails/login_with_email_link.html:19 +msgid "Click on the button to log in to {0}" +msgstr "" + +#: frappe/templates/emails/data_deletion_approval.html:2 +msgid "Click on the link below to approve the request" +msgstr "" + +#: frappe/templates/emails/new_user.html:7 +msgid "Click on the link below to complete your registration and set a new password" +msgstr "" + +#: frappe/templates/emails/download_data.html:3 +msgid "Click on the link below to download your data" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:4 +msgid "Click on the link below to verify your request" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:118 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:41 +#: frappe/website/doctype/website_settings/website_settings.py:161 +msgid "Click on {0} to generate Refresh Token." +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 +#: frappe/desk/doctype/number_card/number_card.js:222 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:99 +#: frappe/website/doctype/web_form/web_form.js:236 +msgid "Click table to edit" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 +#: frappe/desk/doctype/number_card/number_card.js:419 +msgid "Click to Set Dynamic Filters" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 +#: frappe/desk/doctype/number_card/number_card.js:278 +#: frappe/website/doctype/web_form/web_form.js:262 +msgid "Click to Set Filters" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:741 +msgid "Click to sort by {0}" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Clicked" +msgstr "" + +#. Label of the client (Link) field in DocType 'OAuth Authorization Code' +#. Label of the client (Link) field in DocType 'OAuth Bearer Token' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "Client" +msgstr "" + +#. Label of the client_code_section (Section Break) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Client Code" +msgstr "" + +#. Label of the sb_client_credentials_section (Section Break) field in DocType +#. 'Connected App' +#. Label of the client_credentials (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Client Credentials" +msgstr "" + +#. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' +#. Label of the client_id (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Client ID" +msgstr "" + +#. Label of the client_id (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Client Id" +msgstr "" + +#. Label of the client_information (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Client Information" +msgstr "" + +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#. Label of the client_script (Code) field in DocType 'DocType Layout' +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/website/doctype/web_page/web_page.js:103 +msgid "Client Script" +msgstr "" + +#. Label of the client_secret (Password) field in DocType 'Connected App' +#. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' +#. Label of the client_secret (Password) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Client Secret" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "" + +#. Label of the client_urls (Section Break) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Client URLs" +msgstr "" + +#. Label of the client_script (Code) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Client script" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:39 +#: frappe/desk/doctype/todo/todo.js:23 +#: frappe/public/js/frappe/form/form_tour.js:17 +#: frappe/public/js/frappe/ui/messages.js:251 +#: frappe/website/js/bootstrap-4.js:24 +msgid "Close" +msgstr "" + +#. Label of the close_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Close Condition" +msgstr "" + +#: frappe/public/js/form_builder/components/FieldProperties.vue:79 +msgid "Close properties" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType 'ToDo' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +msgid "Closed" +msgstr "" + +#: frappe/templates/discussions/comment_box.html:25 +#: frappe/templates/discussions/reply_section.html:53 +#: frappe/templates/discussions/topic_modal.html:11 +msgid "Cmd+Enter to add comment" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the code (Data) field in DocType 'Country' +#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/geo/doctype/country/country.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Code" +msgstr "" + +#. Label of the code_challenge (Data) field in DocType 'OAuth Authorization +#. Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Code Challenge" +msgstr "" + +#. Label of the code_editor_type (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Code Editor Type" +msgstr "" + +#. Label of the code_challenge_method (Select) field in DocType 'OAuth +#. Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Code challenge method" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:276 +#: frappe/public/js/frappe/ui/sidebar.html:11 +#: frappe/public/js/frappe/widgets/base_widget.js:159 +msgid "Collapse" +msgstr "" + +#: frappe/public/js/frappe/form/controls/code.js:184 +msgctxt "Shrink code field." +msgid "Collapse" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/treeview.js:123 +msgid "Collapse All" +msgstr "" + +#. Label of the collapsible (Check) field in DocType 'DocField' +#. Label of the collapsible (Check) field in DocType 'Custom Field' +#. Label of the collapsible (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Collapsible" +msgstr "" + +#. Label of the collapsible_depends_on (Code) field in DocType 'Custom Field' +#. Label of the collapsible_depends_on (Code) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Collapsible Depends On" +msgstr "" + +#. Label of the collapsible_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Collapsible Depends On (JS)" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the color (Data) field in DocType 'DocType' +#. Label of the color (Select) field in DocType 'DocType State' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the color (Color) field in DocType 'Dashboard Chart' +#. Label of the color (Color) field in DocType 'Dashboard Chart Field' +#. Label of the color (Data) field in DocType 'Desktop Icon' +#. Label of the color (Color) field in DocType 'Event' +#. Label of the color (Color) field in DocType 'Number Card' +#. Label of the color (Color) field in DocType 'ToDo' +#. Label of the color (Color) field in DocType 'Workspace Shortcut' +#. Name of a DocType +#. Label of the color (Color) field in DocType 'Color' +#. Label of the color (Color) field in DocType 'Social Link Settings' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/views/reports/query_report.js:1241 +#: frappe/public/js/frappe/widgets/widget_dialog.js:546 +#: frappe/public/js/frappe/widgets/widget_dialog.js:694 +#: frappe/website/doctype/color/color.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Color" +msgstr "အရောင်" + +#. Label of the column (Data) field in DocType 'Recorder Suggested Index' +#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:7 +#: frappe/public/js/form_builder/components/Section.vue:270 +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8 +msgid "Column" +msgstr "" + +#: frappe/core/doctype/report/boilerplate/controller.py:28 +msgid "Column 1" +msgstr "" + +#: frappe/core/doctype/report/boilerplate/controller.py:33 +msgid "Column 2" +msgstr "" + +#: frappe/desk/doctype/kanban_board/kanban_board.py:84 +msgid "Column {0} already exist." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Column Break" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:140 +msgid "Column Labels:" +msgstr "" + +#. Label of the column_name (Data) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/data_export/exporter.py:25 +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Column Name" +msgstr "" + +#: frappe/desk/doctype/kanban_board/kanban_board.py:45 +msgid "Column Name cannot be empty" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:455 +msgid "Column Width" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:662 +msgid "Column width cannot be zero." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:380 +msgid "Column {0}" +msgstr "" + +#. Label of the columns (Int) field in DocType 'DocField' +#. Label of the columns_section (Section Break) field in DocType 'Report' +#. Label of the columns (Table) field in DocType 'Report' +#. Label of the columns (Int) field in DocType 'Custom Field' +#. Label of the columns (Int) field in DocType 'Customize Form Field' +#. Label of the columns (Table) field in DocType 'Kanban Board' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report/report.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +msgid "Columns" +msgstr "" + +#. Label of the columns (HTML Editor) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Columns / Fields" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 +msgid "Columns based on" +msgstr "" + +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 +msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Comm10E" +msgstr "" + +#. Name of a DocType +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/version/version_view.html:3 +#: frappe/public/js/frappe/form/controls/comment.js:9 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:237 +#: frappe/templates/includes/comments/comments.html:34 +msgid "Comment" +msgstr "" + +#. Label of the comment_by (Data) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Comment By" +msgstr "" + +#. Label of the comment_email (Data) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Comment Email" +msgstr "" + +#. Label of the comment_type (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Comment Type" +msgstr "" + +#: frappe/desk/form/utils.py:58 +msgid "Comment can only be edited by the owner" +msgstr "" + +#: frappe/desk/form/utils.py:75 +msgid "Comment publicity can only be updated by the original author or a System Manager." +msgstr "" + +#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 +#: frappe/public/js/frappe/model/meta.js:209 +#: frappe/public/js/frappe/model/model.js:135 +#: frappe/website/doctype/web_form/templates/web_form.html:129 +msgid "Comments" +msgstr "" + +#. Description of the 'Timeline Field' (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Comments and Communications will be associated with this linked document" +msgstr "" + +#: frappe/templates/includes/comments/comments.py:52 +msgid "Comments cannot have links or email addresses" +msgstr "" + +#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Commercial Rounding" +msgstr "" + +#. Label of the commit (Check) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "Commit" +msgstr "" + +#. Label of the committed (Check) field in DocType 'Console Log' +#: frappe/desk/doctype/console_log/console_log.json +msgid "Committed" +msgstr "" + +#: frappe/utils/password_strength.py:176 +msgid "Common names and surnames are easy to guess." +msgstr "" + +#. Name of a DocType +#. Option for the 'Communication Type' (Select) field in DocType +#. 'Communication' +#. Label of the communication (Data) field in DocType 'Email Flag Queue' +#. Label of the communication (Link) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/tests/test_translate.py:35 frappe/tests/test_translate.py:119 +msgid "Communication" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/communication_link/communication_link.json +msgid "Communication Link" +msgstr "" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Communication Logs" +msgstr "" + +#. Label of the communication_type (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Communication Type" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:32 +msgid "Communication secret not set" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/company_history/company_history.json +#: frappe/www/about.html:29 +msgid "Company History" +msgstr "" + +#. Label of the company_introduction (Text Editor) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Company Introduction" +msgstr "" + +#. Label of the company_name (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Company Name" +msgstr "" + +#: frappe/core/doctype/server_script/server_script.js:14 +#: frappe/custom/doctype/client_script/client_script.js:56 +#: frappe/public/js/frappe/utils/diffview.js:28 +msgid "Compare Versions" +msgstr "" + +#: frappe/core/doctype/server_script/server_script.py:159 +msgid "Compilation warning" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.py:123 +msgid "Compiled Successfully" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/www/complete_signup.html:21 +msgid "Complete" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:203 +msgid "Complete By" +msgstr "" + +#: frappe/core/doctype/user/user.py:479 +#: frappe/templates/emails/new_user.html:10 +msgid "Complete Registration" +msgstr "" + +#: frappe/public/js/frappe/ui/slides.js:355 +msgctxt "Finish the setup wizard" +msgid "Complete Setup" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#. Option for the 'Status' (Select) field in DocType 'Workflow Action' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/doctype/boilerplate/controller_list.html:31 +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/desk/doctype/event/event.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/utils/goal.py:117 +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Completed" +msgstr "" + +#. Label of the completed_by_role (Link) field in DocType 'Workflow Action' +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Completed By Role" +msgstr "" + +#. Label of the completed_by (Link) field in DocType 'Workflow Action' +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Completed By User" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#: frappe/website/doctype/web_template/web_template.json +msgid "Component" +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:184 +msgid "Compose Email" +msgstr "" + +#. Option for the 'Row Format' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Compressed" +msgstr "" + +#. Label of the condition (Select) field in DocType 'Document Naming Rule +#. Condition' +#. Label of the condition (Code) field in DocType 'Navbar Item' +#. Label of the condition (Small Text) field in DocType 'Bulk Update' +#. Label of the condition (Code) field in DocType 'Notification' +#. Label of the condition (Data) field in DocType 'Notification Recipient' +#. Label of the condition (Small Text) field in DocType 'Webhook' +#. Label of the condition (Code) field in DocType 'Workflow Transition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 +#: frappe/email/doctype/notification/notification.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/website/doctype/web_form/web_form.js:197 +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Condition" +msgstr "" + +#. Label of the condition_json (JSON) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Condition JSON" +msgstr "" + +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + +#. Label of the condition_description (HTML) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Condition description" +msgstr "" + +#. Label of the conditions (Table) field in DocType 'Document Naming Rule' +#. Label of the conditions (Section Break) field in DocType 'Workflow +#. Transition' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Conditions" +msgstr "" + +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "" + +#. Label of the configuration_section (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Configuration" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:492 +msgid "Configure Chart" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:407 +msgid "Configure Columns" +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:200 +msgid "Configure Recorder" +msgstr "" + +#: frappe/public/js/print_format_builder/Field.vue:103 +msgid "Configure columns for {0}" +msgstr "" + +#. Description of the 'Amended Documents' (Section Break) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Configure how amended documents will be named.
    \n\n" +"Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
    \n\n" +"Default Naming will make the amended document to behave same as new documents." +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Configure various aspects of how document naming works like naming series, current counter." +msgstr "" + +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 +#: frappe/www/update-password.html:66 +msgid "Confirm" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:31 +msgctxt "Title of confirmation dialog" +msgid "Confirm" +msgstr "" + +#: frappe/integrations/oauth2.py:138 +msgid "Confirm Access" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:93 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:101 +msgid "Confirm Deletion of Account" +msgstr "" + +#: frappe/core/doctype/user/user.js:184 +msgid "Confirm New Password" +msgstr "" + +#: frappe/www/update-password.html:55 +msgid "Confirm Password" +msgstr "" + +#: frappe/templates/emails/data_deletion_approval.html:6 +#: frappe/templates/emails/delete_data_confirmation.html:7 +msgid "Confirm Request" +msgstr "" + +#. Label of the confirmation_email_template (Link) field in DocType 'Email +#. Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Confirmation Email Template" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 +msgid "Confirmed" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:525 +msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.js:20 +msgid "Connect to {}" +msgstr "" + +#. Label of the connected_app (Link) field in DocType 'Email Account' +#. Name of a DocType +#. Label of the connected_app (Link) field in DocType 'Token Cache' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Connected App" +msgstr "" + +#. Label of the connected_user (Link) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Connected User" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 +msgid "Connected to QZ Tray!" +msgstr "" + +#: frappe/public/js/frappe/request.js:36 +msgid "Connection Lost" +msgstr "" + +#: frappe/templates/pages/integrations/gcalendar-success.html:3 +msgid "Connection Success" +msgstr "" + +#: frappe/public/js/frappe/dom.js:446 +msgid "Connection lost. Some features might not work." +msgstr "" + +#. Label of the connections_tab (Tab Break) field in DocType 'DocType' +#. Label of the connections_tab (Tab Break) field in DocType 'Module Def' +#. Label of the connections_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/form/dashboard.js:54 +msgid "Connections" +msgstr "" + +#. Label of the console (Code) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "Console" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/console_log/console_log.json +msgid "Console Log" +msgstr "" + +#: frappe/desk/doctype/console_log/console_log.py:24 +msgid "Console Logs can not be deleted" +msgstr "" + +#. Label of the constraints_section (Section Break) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Constraints" +msgstr "" + +#. Name of a DocType +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.js:113 +msgid "Contact" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
    {0}" +msgstr "" + +#. Label of the sb_01 (Section Break) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Contact Details" +msgstr "" + +#. Name of a DocType +#: frappe/contacts/doctype/contact_email/contact_email.json +msgid "Contact Email" +msgstr "" + +#. Label of the phone_nos (Table) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Contact Numbers" +msgstr "" + +#. Name of a DocType +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Contact Phone" +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:291 +msgid "Contact Synced with Google Contacts." +msgstr "" + +#: frappe/www/contact.html:4 +msgid "Contact Us" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/workspace/website/website.json +msgid "Contact Us Settings" +msgstr "" + +#. Description of the 'Query Options' (Small Text) field in DocType 'Contact Us +#. Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." +msgstr "" + +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "" + +#: frappe/utils/change_log.py:362 +msgid "Contains {0} security fix" +msgstr "" + +#: frappe/utils/change_log.py:360 +msgid "Contains {0} security fixes" +msgstr "" + +#. Label of the content (HTML Editor) field in DocType 'Comment' +#. Label of the content (Text Editor) field in DocType 'Note' +#. Label of the content (Long Text) field in DocType 'Workspace' +#. Label of the content (Text Editor) field in DocType 'Help Article' +#. Label of the section_title (Tab Break) field in DocType 'Web Page' +#. Label of the sb1 (Section Break) field in DocType 'Web Page' +#. Label of the content (Data) field in DocType 'Web Page View' +#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/utils/utils.js:1782 +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:41 +msgid "Content" +msgstr "" + +#. Label of the content_hash (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Content Hash" +msgstr "" + +#. Label of the content_type (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Content Type" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:86 +msgid "Content data shoud be a list" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:91 +msgid "Content type for building the page" +msgstr "" + +#. Label of the context (Data) field in DocType 'Translation' +#. Label of the context_section (Section Break) field in DocType 'Web Page' +#: frappe/core/doctype/translation/translation.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Context" +msgstr "" + +#. Label of the context_script (Code) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Context Script" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:204 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:232 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:272 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:312 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:361 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:383 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:423 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:531 +msgid "Continue" +msgstr "" + +#. Label of the contributed (Check) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Contributed" +msgstr "" + +#. Label of the contribution_docname (Data) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Contribution Document Name" +msgstr "" + +#. Label of the contribution_status (Select) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Contribution Status" +msgstr "" + +#. Description of the 'Sign ups' (Select) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1036 +msgid "Copied to clipboard." +msgstr "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:93 +msgid "Copy Link" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:29 +msgid "Copy embed code" +msgstr "" + +#: frappe/public/js/frappe/request.js:621 +msgid "Copy error to clipboard" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:507 +msgid "Copy to Clipboard" +msgstr "" + +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "" + +#. Label of the copyright (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Copyright" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:125 +msgid "Core DocTypes cannot be customized." +msgstr "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:36 +msgid "Core Modules {0} cannot be searched in Global Search." +msgstr "" + +#: frappe/printing/page/print/print.js:660 +msgid "Correct version :" +msgstr "" + +#: frappe/email/smtp.py:78 +msgid "Could not connect to outgoing email server" +msgstr "" + +#: frappe/model/document.py:1101 +msgid "Could not find {0}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:933 +msgid "Could not map column {0} to field {1}" +msgstr "" + +#: frappe/database/query.py:566 +msgid "Could not parse field: {0}" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:234 +msgid "Could not start up:" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:383 +msgid "Couldn't save, please check the data you have entered" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#. Label of the count (Int) field in DocType 'System Health Report Workers' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +#: frappe/public/js/frappe/ui/group_by/group_by.js:19 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 +#: frappe/workflow/doctype/workflow/workflow.js:162 +msgid "Count" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:540 +msgid "Count Customizations" +msgstr "" + +#. Label of the section_break_5 (Section Break) field in DocType 'Workspace +#. Shortcut' +#. Label of the stats_filter (Code) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:525 +msgid "Count Filter" +msgstr "" + +#: frappe/public/js/frappe/form/dashboard.js:509 +msgid "Count of linked documents" +msgstr "" + +#. Label of the counter (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Counter" +msgstr "" + +#. Label of the country (Link) field in DocType 'Address' +#. Label of the country (Link) field in DocType 'Address Template' +#. Label of the country (Link) field in DocType 'System Settings' +#. Name of a DocType +#. Label of the country (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/geo/doctype/country/country.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Country" +msgstr "" + +#: frappe/utils/__init__.py:132 +msgid "Country Code Required" +msgstr "" + +#. Label of the country_name (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "Country Name" +msgstr "" + +#. Label of the county (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "County" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:23 +#: frappe/public/js/frappe/utils/number_systems.js:45 +msgctxt "Number system" +msgid "Cr" +msgstr "" + +#. Label of the create (Check) field in DocType 'Custom DocPerm' +#. Label of the create (Check) field in DocType 'DocPerm' +#. Label of the create (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/communication/communication.js:117 +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 +#: frappe/public/js/frappe/form/reminders.js:49 +#: frappe/public/js/frappe/views/file/file_view.js:112 +#: frappe/public/js/frappe/views/interaction.js:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 +#: frappe/public/js/frappe/views/workspace/workspace.js:469 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:46 +msgid "Create" +msgstr "" + +#: frappe/core/doctype/doctype/doctype_list.js:103 +msgid "Create & Continue" +msgstr "" + +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:49 +msgid "Create Address" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 +msgid "Create Card" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 +msgid "Create Chart" +msgstr "" + +#: frappe/public/js/form_builder/components/controls/TableControl.vue:62 +msgid "Create Child Doctype" +msgstr "" + +#. Label of the create_contact (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Create Contacts from Incoming Emails" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Create Entry" +msgstr "" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:59 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:195 +msgid "Create Letter Head" +msgstr "" + +#. Label of the create_log (Check) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Create Log" +msgstr "" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:41 +#: frappe/public/js/frappe/views/treeview.js:378 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:41 +msgid "Create New" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:514 +msgctxt "Create a new document from list view" +msgid "Create New" +msgstr "" + +#: frappe/core/doctype/doctype/doctype_list.js:101 +msgid "Create New DocType" +msgstr "" + +#: frappe/public/js/frappe/list/list_view_select.js:204 +msgid "Create New Kanban Board" +msgstr "" + +#: frappe/core/doctype/user/user.js:264 +msgid "Create User Email" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_start.html:16 +msgid "Create a New Format" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:9 +msgid "Create a Reminder" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 +msgid "Create a new ..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:156 +msgid "Create a new record" +msgstr "" + +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 +#: frappe/public/js/frappe/form/link_selector.js:139 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 +msgid "Create a new {0}" +msgstr "" + +#: frappe/www/login.html:162 +msgid "Create a {0} Account" +msgstr "" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 +msgid "Create or Edit Print Format" +msgstr "" + +#: frappe/workflow/page/workflow_builder/workflow_builder.js:34 +msgid "Create or Edit Workflow" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:509 +msgid "Create your first {0}" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:16 +msgid "Create your workflow visually using the Workflow Builder." +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/views/file/file_view.js:370 +msgid "Created" +msgstr "" + +#. Label of the created_at (Datetime) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Created At" +msgstr "" + +#: frappe/model/meta.py:58 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:73 +#: frappe/public/js/frappe/model/meta.js:206 +#: frappe/public/js/frappe/model/model.js:123 +msgid "Created By" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:65 +msgid "Created Custom Field {0} in {1}" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241 +#: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:53 +#: frappe/public/js/frappe/model/meta.js:201 +#: frappe/public/js/frappe/model/model.js:125 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:479 +msgid "Created On" +msgstr "" + +#: frappe/public/js/frappe/desk.js:517 +#: frappe/public/js/frappe/views/treeview.js:393 +msgid "Creating {0}" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:41 +msgid "Creation of this document is only permitted in developer mode." +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Cron" +msgstr "" + +#. Label of the cron_format (Data) field in DocType 'Scheduled Job Type' +#. Label of the cron_format (Data) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Cron Format" +msgstr "" + +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62 +msgid "Cron format is required for job types with Cron frequency." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:34 +msgid "Crop" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Ctrl + Down" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Ctrl + Up" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:32 +msgid "Ctrl+Enter to add comment" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Label of the currency (Link) field in DocType 'System Settings' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the currency (Link) field in DocType 'Dashboard Chart' +#. Label of the currency (Link) field in DocType 'Number Card' +#. Name of a DocType +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:414 +#: frappe/geo/doctype/currency/currency.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Currency" +msgstr "" + +#. Label of the currency_name (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Currency Name" +msgstr "" + +#. Label of the currency_precision (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Currency Precision" +msgstr "" + +#. Description of a DocType +#: frappe/geo/doctype/currency/currency.json +msgid "Currency list stores the currency value, its symbol and fraction unit" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Current" +msgstr "" + +#. Label of the current_job_id (Link) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Current Job ID" +msgstr "" + +#. Label of the current_value (Int) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Current Value" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "Current status" +msgstr "" + +#: frappe/public/js/frappe/form/form_viewers.js:5 +msgid "Currently Viewing" +msgstr "" + +#. Label of the custom (Check) field in DocType 'DocType Action' +#. Label of the custom (Check) field in DocType 'DocType Link' +#. Label of the custom (Check) field in DocType 'DocType State' +#. Label of the custom (Check) field in DocType 'Module Def' +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Label of the custom (Check) field in DocType 'Desktop Icon' +#. Option for the 'Type' (Select) field in DocType 'Number Card' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_type/user_type_list.js:7 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/notification/notification.json +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/public/js/frappe/form/reminders.js:20 +msgid "Custom" +msgstr "" + +#. Label of the custom_base_url (Check) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Custom Base URL" +msgstr "" + +#. Label of the custom_block_name (Link) field in DocType 'Workspace Custom +#. Block' +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json +msgid "Custom Block Name" +msgstr "" + +#. Label of the custom_blocks_tab (Tab Break) field in DocType 'Workspace' +#. Label of the custom_blocks (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Custom Blocks" +msgstr "" + +#. Label of the css (Code) field in DocType 'Print Format' +#. Label of the custom_css (Code) field in DocType 'Web Form' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Custom CSS" +msgstr "" + +#. Label of the custom_configuration_section (Section Break) field in DocType +#. 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Custom Configuration" +msgstr "" + +#. Label of the custom_delimiters (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Custom Delimiters" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/custom_docperm/custom_docperm.json +msgid "Custom DocPerm" +msgstr "" + +#. Label of the custom_select_doctypes (Table) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Custom Document Types (Select Permission)" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:105 +msgid "Custom Document Types Limit Exceeded" +msgstr "" + +#: frappe/desk/desktop.py:524 +msgid "Custom Documents" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Custom Field" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:220 +msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account." +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:277 +msgid "Custom Fields can only be added to a standard DocType." +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:274 +msgid "Custom Fields cannot be added to core DocTypes." +msgstr "" + +#. Label of the custom_footer_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Custom Footer" +msgstr "" + +#. Label of the custom_format (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Custom Format" +msgstr "" + +#. Label of the ldap_custom_group_search (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Custom Group Search" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:122 +msgid "Custom Group Search if filled needs to contain the user placeholder {0}, eg uid={0},ou=users,dc=example,dc=com" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:190 +#: frappe/printing/page/print_format_builder/print_format_builder.js:728 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162 +msgid "Custom HTML" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +msgid "Custom HTML Block" +msgstr "" + +#. Label of the custom_html_help (HTML) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Custom HTML Help" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:114 +msgid "Custom LDAP Directoy Selected, please ensure 'LDAP Group Member attribute' and 'Group Object Class' are entered" +msgstr "" + +#. Label of the label (Data) field in DocType 'Web Form Field' +#. Label of the label (Data) field in DocType 'Web Form List Column' +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +msgid "Custom Label" +msgstr "" + +#. Label of the custom_menu (Table) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Custom Menu Items" +msgstr "" + +#. Label of the custom_options (Code) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Custom Options" +msgstr "" + +#. Label of the custom_overrides (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Custom Overrides" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Custom Report" +msgstr "" + +#: frappe/desk/desktop.py:525 +msgid "Custom Reports" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/custom_role/custom_role.json +msgid "Custom Role" +msgstr "" + +#. Label of the custom_scss (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Custom SCSS" +msgstr "" + +#. Label of the custom_sidebar_menu (Section Break) field in DocType 'Portal +#. Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Custom Sidebar Menu" +msgstr "" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Custom Translation" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:423 +msgid "Custom field renamed to {0} successfully." +msgstr "" + +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "" + +#. Label of the custom (Check) field in DocType 'DocType' +#. Label of the custom (Check) field in DocType 'Website Theme' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:83 +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Custom?" +msgstr "" + +#. Group in DocType's connections +#. Group in Module Def's connections +#. Label of a Card Break in the Build Workspace +#. Label of the customization_tab (Tab Break) field in DocType 'Web Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/workspace/build/build.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Customization" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:358 +msgid "Customizations Discarded" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:465 +msgid "Customizations Reset" +msgstr "" + +#: frappe/modules/utils.py:96 +msgid "Customizations for {0} exported to:
    {1}" +msgstr "" + +#: frappe/printing/page/print/print.js:184 +#: frappe/public/js/frappe/form/templates/print_layout.html:39 +#: frappe/public/js/frappe/form/toolbar.js:600 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 +msgid "Customize" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1949 +msgctxt "Button in list view menu" +msgid "Customize" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:89 +msgid "Customize Child Table" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:38 +msgid "Customize Dashboard" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:33 +#: frappe/core/doctype/doctype/doctype.js:61 +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +msgid "Customize Form" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:100 +msgid "Customize Form - {0}" +msgstr "" + +#. Name of a DocType +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Customize Form Field" +msgstr "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Customize properties, naming, fields and more for standard doctypes" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:144 +msgid "Cut" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Cyan" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#. Option for the 'Request Method' (Select) field in DocType 'Webhook' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/webhook/webhook.json +msgid "DELETE" +msgstr "" + +#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType' +#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "DESC" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "DLE" +msgstr "" + +#: frappe/templates/print_formats/standard_macros.html:215 +msgid "DRAFT" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Frequency' (Select) field in DocType 'User' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:398 +#: frappe/website/report/website_analytics/website_analytics.js:23 +msgid "Daily" +msgstr "" + +#: frappe/templates/emails/upcoming_events.html:8 +msgid "Daily Event Digest is sent for Calendar Events where reminders are set." +msgstr "" + +#: frappe/desk/doctype/event/event.py:104 +msgid "Daily Events should finish on the Same Day." +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Daily Long" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Daily Maintenance" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Danger" +msgstr "" + +#. Option for the 'Desk Theme' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Dark" +msgstr "" + +#. Label of the dark_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Dark Color" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:65 +msgid "Dark Theme" +msgstr "" + +#. Label of the dashboard (Check) field in DocType 'User' +#. Label of a Link in the Build Workspace +#. Name of a DocType +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/core/doctype/user/user.json +#: frappe/core/page/dashboard_view/dashboard_view.js:10 +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 +#: frappe/public/js/frappe/utils/utils.js:935 +msgid "Dashboard" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8 +msgid "Dashboard Chart" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json +msgid "Dashboard Chart Field" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Dashboard Chart Link" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgid "Dashboard Chart Source" +msgstr "" + +#. Name of a role +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Dashboard Manager" +msgstr "" + +#. Label of the dashboard_name (Data) field in DocType 'Dashboard' +#: frappe/desk/doctype/dashboard/dashboard.json +msgid "Dashboard Name" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +msgid "Dashboard Settings" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:204 +msgid "Dashboard View" +msgstr "" + +#. Label of the tab_break_2 (Tab Break) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Dashboards" +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#. Label of the data (Code) field in DocType 'Deleted Document' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Label of the data (Code) field in DocType 'Version' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the webhook_data (Table) field in DocType 'Webhook' +#. Label of the data (Code) field in DocType 'Webhook Request Log' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/deleted_document/deleted_document.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/core/doctype/version/version.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Data" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:59 +msgid "Data Clipped" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/data_export/data_export.json +msgid "Data Export" +msgstr "" + +#. Name of a DocType +#. Label of the data_import (Link) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/data_import_log/data_import_log.json +msgid "Data Import" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/data_import_log/data_import_log.json +msgid "Data Import Log" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:174 +msgid "Data Import Template" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:619 +msgid "Data Too Long" +msgstr "" + +#. Label of the database (Data) field in DocType 'System Health Report' +#. Label of the database_section (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Database" +msgstr "" + +#. Label of the engine (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Database Engine" +msgstr "" + +#. Label of the database_processes_section (Section Break) field in DocType +#. 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "Database Processes" +msgstr "" + +#: frappe/public/js/frappe/doctype/index.js:38 +msgid "Database Row Size Utilization" +msgstr "" + +#. Name of a report +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json +msgid "Database Storage Usage By Tables" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:251 +msgid "Database Table Row Size Limit" +msgstr "" + +#: frappe/public/js/frappe/doctype/index.js:40 +msgid "Database Table Row Size Utilization: {0}%, this limits number of fields you can add." +msgstr "" + +#. Label of the database_version (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Database Version" +msgstr "" + +#. Label of the communication_date (Datetime) field in DocType 'Activity Log' +#. Label of the communication_date (Datetime) field in DocType 'Communication' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/report/todo/todo.py:38 +#: frappe/public/js/frappe/views/interaction.js:80 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Date" +msgstr "" + +#. Label of the date_format (Select) field in DocType 'Language' +#. Label of the date_format (Select) field in DocType 'System Settings' +#. Label of the date_format (Data) field in DocType 'Country' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/geo/doctype/country/country.json +msgid "Date Format" +msgstr "" + +#. Label of the section_break_dfrx (Section Break) field in DocType 'Audit +#. Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/public/js/frappe/widgets/chart_widget.js:237 +msgid "Date Range" +msgstr "" + +#. Label of the date_and_number_format (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Date and Number Format" +msgstr "" + +#: frappe/public/js/frappe/form/controls/date.js:247 +msgid "Date {0} must be in format: {1}" +msgstr "" + +#: frappe/utils/password_strength.py:129 +msgid "Dates are often easy to guess." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Datetime" +msgstr "" + +#. Label of the day (Select) field in DocType 'Assignment Rule Day' +#. Label of the day (Select) field in DocType 'Auto Repeat Day' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/public/js/frappe/views/calendar/calendar.js:277 +msgid "Day" +msgstr "နေ့" + +#. Label of the day_of_week (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Day of Week" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Days After" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Days Before" +msgstr "" + +#. Label of the days_in_advance (Int) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Days Before or After" +msgstr "" + +#: frappe/public/js/frappe/request.js:252 +msgid "Deadlock Occurred" +msgstr "" + +#: frappe/templates/emails/password_reset.html:1 +msgid "Dear" +msgstr "" + +#: frappe/templates/emails/administrator_logged_in.html:1 +msgid "Dear System Manager," +msgstr "" + +#: frappe/templates/emails/account_deletion_notification.html:1 +#: frappe/templates/emails/delete_data_confirmation.html:1 +msgid "Dear User," +msgstr "" + +#: frappe/templates/emails/download_data.html:1 +msgid "Dear {0}" +msgstr "" + +#. Label of the debug_log (Code) field in DocType 'Scheduled Job Log' +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +msgid "Debug Log" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:318 +msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:310 +msgid "Decimal Separator must be a single character" +msgstr "" + +#. Label of the default (Small Text) field in DocType 'DocField' +#. Label of the default (Small Text) field in DocType 'Report Filter' +#. Label of the default (Small Text) field in DocType 'Customize Form Field' +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#. Label of the default (Data) field in DocType 'Web Form Field' +#. Label of the default (Small Text) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/templates/form_grid/fields.html:30 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Default" +msgstr "" + +#: frappe/contacts/doctype/address_template/address_template.py:41 +msgid "Default Address Template cannot be deleted" +msgstr "" + +#. Label of the default_amend_naming (Select) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Default Amendment Naming" +msgstr "" + +#. Label of the default_app (Select) field in DocType 'System Settings' +#. Label of the default_app (Select) field in DocType 'User' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +msgid "Default App" +msgstr "" + +#. Label of the default_email_template (Link) field in DocType 'DocType' +#. Label of the default_email_template (Link) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Default Email Template" +msgstr "" + +#: frappe/email/doctype/email_account/email_account_list.js:13 +msgid "Default Inbox" +msgstr "" + +#. Label of the default_incoming (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:224 +msgid "Default Incoming" +msgstr "" + +#. Label of the is_default (Check) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Default Letter Head" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming +#. Settings' +#. Option for the 'Default Amendment Naming' (Select) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Default Naming" +msgstr "" + +#. Label of the default_outgoing (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:232 +msgid "Default Outgoing" +msgstr "" + +#. Label of the default_portal_home (Data) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Default Portal Home" +msgstr "" + +#. Label of the default_print_format (Data) field in DocType 'DocType' +#. Label of the default_print_format (Link) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Default Print Format" +msgstr "" + +#. Label of the default_print_language (Link) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Default Print Language" +msgstr "" + +#. Label of the default_redirect_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Default Redirect URI" +msgstr "" + +#. Label of the default_role (Link) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Default Role at Time of Signup" +msgstr "" + +#: frappe/email/doctype/email_account/email_account_list.js:16 +msgid "Default Sending" +msgstr "" + +#: frappe/email/doctype/email_account/email_account_list.js:7 +msgid "Default Sending and Inbox" +msgstr "" + +#. Label of the sort_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Default Sort Field" +msgstr "" + +#. Label of the sort_order (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Default Sort Order" +msgstr "" + +#. Label of the field (Data) field in DocType 'Print Format Field Template' +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +msgid "Default Template For Field" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.js:28 +msgid "Default Theme" +msgstr "" + +#. Label of the default_role (Link) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Default User Role" +msgstr "" + +#. Label of the default_user_type (Link) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Default User Type" +msgstr "" + +#. Label of the default (Text) field in DocType 'Custom Field' +#. Label of the default_value (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Default Value" +msgstr "" + +#. Label of the default_view (Select) field in DocType 'DocType' +#. Label of the default_view (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Default View" +msgstr "" + +#. Label of the default_workspace (Link) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Default Workspace" +msgstr "" + +#. Description of the 'Currency' (Link) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Default display currency" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1377 +msgid "Default for 'Check' type of field {0} must be either '0' or '1'" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1390 +msgid "Default value for {0} must be in the list of options." +msgstr "" + +#: frappe/core/doctype/session_default_settings/session_default_settings.py:38 +msgid "Default {0}" +msgstr "" + +#. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Default: \"Contact Us\"" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/defaultvalue/defaultvalue.json +msgid "DefaultValue" +msgstr "" + +#. Label of the defaults_section (Section Break) field in DocType 'DocField' +#. Label of the sb2 (Section Break) field in DocType 'User' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/user/user.json +msgid "Defaults" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:243 +msgid "Defaults Updated" +msgstr "" + +#. Description of a DocType +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Defines actions on states and the next step and allowed roles." +msgstr "" + +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + +#. Description of a DocType +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Defines workflow states and rules for a document." +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Delayed" +msgstr "" + +#. Label of the delete (Check) field in DocType 'Custom DocPerm' +#. Label of the delete (Check) field in DocType 'DocPerm' +#. Label of the delete (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_permission/user_permission_list.js:189 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 +#: frappe/public/js/frappe/form/grid.js:66 +#: frappe/public/js/frappe/form/toolbar.js:464 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 +#: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 +#: frappe/templates/discussions/reply_card.html:35 +#: frappe/templates/discussions/reply_section.html:29 +msgid "Delete" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2174 +msgctxt "Button in list view actions menu" +msgid "Delete" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "" + +#: frappe/www/me.html:65 +msgid "Delete Account" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Delete All" +msgstr "" + +#. Label of the delete_background_exported_reports_after (Int) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Delete Background Exported Reports After (Hours)" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:196 +msgctxt "Title of confirmation dialog" +msgid "Delete Column" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:10 +msgid "Delete Data" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 +msgid "Delete Kanban Board" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:125 +msgctxt "Title of confirmation dialog" +msgid "Delete Section" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:64 +msgctxt "Title of confirmation dialog" +msgid "Delete Tab" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:944 +msgid "Delete and Generate New" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:203 +msgctxt "Button text" +msgid "Delete column" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 +msgid "Delete comment?" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:205 +msgctxt "Button text" +msgid "Delete entire column with fields" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:134 +msgctxt "Button text" +msgid "Delete entire section with fields" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:73 +msgctxt "Button text" +msgid "Delete entire tab with fields" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:132 +msgctxt "Button text" +msgid "Delete section" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:71 +msgctxt "Button text" +msgid "Delete tab" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:29 +msgid "Delete this record to allow sending to this email address" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2179 +msgctxt "Title of confirmation dialog" +msgid "Delete {0} item permanently?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2185 +msgctxt "Title of confirmation dialog" +msgid "Delete {0} items permanently?" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Step' +#: frappe/core/doctype/comment/comment.json +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Deleted" +msgstr "" + +#. Label of the deleted_doctype (Data) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Deleted DocType" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Deleted Document" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Deleted Documents" +msgstr "" + +#. Label of the deleted_name (Data) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Deleted Name" +msgstr "" + +#: frappe/desk/reportview.py:641 +msgid "Deleted all documents successfully" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "" + +#: frappe/desk/reportview.py:618 +msgid "Deleting {0}" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:202 +msgid "Deleting {0} records..." +msgstr "" + +#: frappe/public/js/frappe/model/model.js:692 +msgid "Deleting {0}..." +msgstr "" + +#. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Deletion Steps" +msgstr "" + +#: frappe/core/doctype/page/page.py:110 +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 +msgid "Deletion of this document is only permitted in developer mode." +msgstr "" + +#. Label of the delimiter_options (Data) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Delimiter Options" +msgstr "" + +#: frappe/utils/csvutils.py:76 +msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:306 +msgid "Delimiter must be a single character" +msgstr "" + +#. Label of the delivery_status (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Delivery Status" +msgstr "" + +#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/templates/includes/oauth_confirmation.html:17 +msgid "Deny" +msgstr "" + +#. Label of the department (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Department" +msgstr "" + +#. Label of the dependencies (Data) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:323 +#: frappe/www/attribution.html:29 +msgid "Dependencies" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Dependencies & Licenses" +msgstr "" + +#. Label of the depends_on (Code) field in DocType 'Custom Field' +#. Label of the depends_on (Code) field in DocType 'Customize Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Depends On" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:32 +msgid "Descendants Of" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:33 +msgid "Descendants Of (inclusive)" +msgstr "" + +#. Label of the description (Small Text) field in DocType 'Assignment Rule' +#. Label of the description (Small Text) field in DocType 'Reminder' +#. Label of the description (Small Text) field in DocType 'DocField' +#. Label of the description (Small Text) field in DocType 'DocType' +#. Label of the description (Text) field in DocType 'Customize Form Field' +#. Label of the description (Small Text) field in DocType 'Desktop Icon' +#. Label of the description (Text Editor) field in DocType 'Event' +#. Label of the description (HTML Editor) field in DocType 'Form Tour Step' +#. Label of the description_section (Section Break) field in DocType +#. 'Onboarding Step' +#. Label of the description (Markdown Editor) field in DocType 'Onboarding +#. Step' +#. Label of the description (Small Text) field in DocType 'Tag' +#. Label of the description (Text Editor) field in DocType 'ToDo' +#. Label of the description (HTML Editor) field in DocType 'Workspace Link' +#. Label of the description (Small Text) field in DocType 'Print Heading' +#. Label of the description (Small Text) field in DocType 'UTM Medium' +#. Label of the description (Small Text) field in DocType 'UTM Source' +#. Label of the description (Text) field in DocType 'Web Form Field' +#. Label of the meta_description (Small Text) field in DocType 'Web Page' +#. Label of the description (Text) field in DocType 'Website Slideshow Item' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/todo/todo.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/report/todo/todo.py:39 +#: frappe/printing/doctype/print_heading/print_heading.json +#: frappe/public/js/frappe/form/reminders.js:44 +#: frappe/public/js/frappe/widgets/widget_dialog.js:256 +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +#: frappe/www/attribution.html:24 +msgid "Description" +msgstr "" + +#. Description of the 'Description' (Section Break) field in DocType +#. 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Description to inform the user about any action that is going to be performed" +msgstr "" + +#. Label of the designation (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Designation" +msgstr "" + +#. Label of the desk_access (Check) field in DocType 'Role' +#: frappe/core/doctype/role/role.json +msgid "Desk Access" +msgstr "" + +#. Label of the desk_settings_section (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Desk Settings" +msgstr "" + +#. Label of the desk_theme (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Desk Theme" +msgstr "" + +#. Name of a role +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_group/user_group.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Desk User" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Desktop Icon" +msgstr "" + +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:225 +msgid "Desktop Icon already exists" +msgstr "" + +#. Label of the details_tab (Tab Break) field in DocType 'Module Def' +#. Label of the details (Code) field in DocType 'Scheduled Job Log' +#. Label of the details_tab (Tab Break) field in DocType 'Customize Form' +#. Label of the details (Section Break) field in DocType 'Event' +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json +#: frappe/public/js/form_builder/components/Tabs.vue:92 +#: frappe/public/js/form_builder/store.js:259 +#: frappe/public/js/form_builder/utils.js:38 +#: frappe/public/js/frappe/form/layout.js:152 +#: frappe/public/js/frappe/views/treeview.js:292 +msgid "Details" +msgstr "" + +#. Label of the use_csv_sniffer (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Detect CSV type" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:494 +msgid "Did not add" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:388 +msgid "Did not remove" +msgstr "" + +#: frappe/public/js/frappe/utils/diffview.js:57 +msgid "Diff" +msgstr "" + +#. Description of the 'States' (Section Break) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Different \"States\" this document can exist in. Like \"Open\", \"Pending Approval\" etc." +msgstr "" + +#. Label of the prefix_digits (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Digits" +msgstr "" + +#. Label of the ldap_directory_server (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Directory Server" +msgstr "" + +#. Label of the disable_auto_refresh (Check) field in DocType 'List View +#. Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Auto Refresh" +msgstr "" + +#. Label of the disable_automatic_recency_filters (Check) field in DocType +#. 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Automatic Recency Filters" +msgstr "" + +#. Label of the disable_change_log_notification (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Disable Change Log Notification" +msgstr "" + +#. Label of the disable_comment_count (Check) field in DocType 'List View +#. Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Comment Count" +msgstr "" + +#. Label of the disable_contact_us (Check) field in DocType 'Contact Us +#. Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Disable Contact Us Page" +msgstr "" + +#. Label of the disable_count (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Count" +msgstr "" + +#. Label of the disable_document_sharing (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Disable Document Sharing" +msgstr "" + +#: frappe/core/doctype/report/report.js:39 +msgid "Disable Report" +msgstr "" + +#. Label of the no_smtp_authentication (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Disable SMTP server authentication" +msgstr "" + +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + +#. Label of the disable_sidebar_stats (Check) field in DocType 'List View +#. Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Sidebar Stats" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.js:146 +msgid "Disable Signup for your site" +msgstr "" + +#. Label of the disable_standard_email_footer (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Disable Standard Email Footer" +msgstr "" + +#. Label of the disable_system_update_notification (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Disable System Update Notification" +msgstr "" + +#. Label of the disable_user_pass_login (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Disable Username/Password Login" +msgstr "" + +#. Label of the disable_signup (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Disable signups" +msgstr "" + +#. Label of the disabled (Check) field in DocType 'Assignment Rule' +#. Label of the disabled (Check) field in DocType 'Auto Repeat' +#. Option for the 'Status' (Select) field in DocType 'Auto Repeat' +#. Label of the disabled (Check) field in DocType 'Milestone Tracker' +#. Label of the disabled (Check) field in DocType 'Address' +#. Label of the disabled (Check) field in DocType 'Document Naming Rule' +#. Label of the disabled (Check) field in DocType 'Report' +#. Label of the disabled (Check) field in DocType 'Role' +#. Label of the disabled (Check) field in DocType 'Server Script' +#. Label of the disabled (Check) field in DocType 'Letter Head' +#. Label of the disabled (Check) field in DocType 'Print Format' +#. Label of the disabled (Check) field in DocType 'Print Style' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +#: frappe/contacts/doctype/address/address.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user_list.js:14 +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/public/js/frappe/form/templates/address_list.html:35 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 +msgid "Disabled" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:300 +msgid "Disabled Auto Reply" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:338 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 +#: frappe/public/js/frappe/views/workspace/workspace.js:351 +#: frappe/public/js/frappe/web_form/web_form.js:193 +msgid "Discard" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:44 +msgctxt "Button in web form" +msgid "Discard" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:30 +msgctxt "Discard Email" +msgid "Discard" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:848 +msgid "Discard {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:190 +msgid "Discard?" +msgstr "" + +#: frappe/desk/form/save.py:75 +msgid "Discarded" +msgstr "" + +#. Description of the 'Suggested Indexes' (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Disclaimer: These indexes are suggested based on data and queries performed during this recording. These suggestions may or may not help." +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/discussion_reply/discussion_reply.json +msgid "Discussion Reply" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/discussion_topic/discussion_topic.json +msgid "Discussion Topic" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 +#: frappe/templates/discussions/reply_card.html:16 +#: frappe/templates/discussions/reply_section.html:29 +msgid "Dismiss" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:572 +msgctxt "Stop showing the onboarding widget." +msgid "Dismiss" +msgstr "" + +#. Label of the display (Section Break) field in DocType 'DocField' +#. Label of the updates_tab (Tab Break) field in DocType 'System Settings' +#. Label of the display (Section Break) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Display" +msgstr "" + +#. Label of the depends_on (Code) field in DocType 'Web Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Display Depends On" +msgstr "" + +#. Label of the depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Display Depends On (JS)" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:180 +msgid "Divider" +msgstr "" + +#. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Do Not Create New User" +msgstr "" + +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Do not create new user if user with email does not exist in the system" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1195 +msgid "Do not edit headers which are preset in the template" +msgstr "" + +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.js:71 +msgid "Do you still want to proceed?" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:958 +msgid "Do you want to cancel all linked documents?" +msgstr "" + +#. Label of the webhook_docevent (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Doc Event" +msgstr "" + +#. Label of the sb_doc_events (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Doc Events" +msgstr "" + +#. Label of the doc_status (Select) field in DocType 'Workflow Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Doc Status" +msgstr "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocField" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/docperm/docperm.json +msgid "DocPerm" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/docshare/docshare.json +msgid "DocShare" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:264 +msgid "DocStatus of the following states have changed:
    {0}
    \n" +"\t\t\t\tDo you want to update the docstatus of existing documents in those states?
    \n" +"\t\t\t\tThis does not undo any effect bought in by the document's existing docstatus.\n" +"\t\t\t\t" +msgstr "" + +#. Label of the document_type (Link) field in DocType 'Amended Document Naming +#. Settings' +#. Label of the doctype_name (Link) field in DocType 'Audit Trail' +#. Name of a DocType +#. Group in Module Def's connections +#. Label of the ref_doctype (Link) field in DocType 'Permission Inspector' +#. Label of the ref_doctype (Link) field in DocType 'Version' +#. Label of a shortcut in the Build Workspace +#. Label of the dt (Link) field in DocType 'Client Script' +#. Label of the dt (Link) field in DocType 'Custom Field' +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#. Label of the doc_type (Link) field in DocType 'Property Setter' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' +#. Label of the document_type (Link) field in DocType 'Workspace Quick List' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Label of the webhook_doctype (Link) field in DocType 'Webhook' +#. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/data_export/exporter.py:26 +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/core/doctype/version/version.json +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:15 +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:38 +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:164 +#: frappe/website/doctype/website_slideshow/website_slideshow.js:18 +msgid "DocType" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1578 +msgid "DocType {0} provided for the field {1} must have atleast one Link field" +msgstr "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocType Action" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#. Label of the doctype_event (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "DocType Event" +msgstr "" + +#. Name of a DocType +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +msgid "DocType Layout" +msgstr "" + +#. Name of a DocType +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +msgid "DocType Layout Field" +msgstr "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocType Link" +msgstr "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocType State" +msgstr "" + +#. Label of the doc_view (Select) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:479 +msgid "DocType View" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:657 +msgid "DocType can not be merged" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:651 +msgid "DocType can only be renamed by Administrator" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/doctype/doctype.json +msgid "DocType is a Table / Form in the application." +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:83 +msgid "DocType must be Submittable for the selected Doc Event" +msgstr "" + +#: frappe/client.py:403 +msgid "DocType must be a string" +msgstr "" + +#: frappe/public/js/form_builder/store.js:154 +msgid "DocType must have atleast one field" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:57 +msgid "DocType not supported by Log Settings." +msgstr "" + +#. Description of the 'Document Type' (Link) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "DocType on which this Workflow is applicable." +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:4 +msgid "DocType required" +msgstr "" + +#: frappe/modules/utils.py:175 +msgid "DocType {0} does not exist." +msgstr "" + +#: frappe/modules/utils.py:238 +msgid "DocType {} not found" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1029 +msgid "DocType's name should not start or end with whitespace" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.js:67 +msgid "DocTypes cannot be modified, please use {0} instead" +msgstr "" + +#. Label of the ref_doctype (Link) field in DocType 'Document Follow' +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:682 +msgid "Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1023 +msgid "Doctype name is limited to {0} characters ({1})" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:3 +msgid "Doctype required" +msgstr "" + +#. Label of the reference_name (Data) field in DocType 'Milestone' +#. Label of the document (Dynamic Link) field in DocType 'Audit Trail' +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#. Label of the docname (Dynamic Link) field in DocType 'Permission Inspector' +#. Label of the document (Link) field in DocType 'Notification Subscribed +#. Document' +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json +#: frappe/public/js/frappe/views/render_preview.js:42 +msgid "Document" +msgstr "" + +#. Label of the actions (Table) field in DocType 'DocType' +#. Label of the document_actions_section (Section Break) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Document Actions" +msgstr "" + +#. Label of the document_follow_notifications_section (Section Break) field in +#. DocType 'User' +#. Name of a DocType +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/document_follow/document_follow.json +msgid "Document Follow" +msgstr "" + +#: frappe/desk/form/document_follow.py:94 +msgid "Document Follow Notification" +msgstr "" + +#. Label of the document_name (Data) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Document Link" +msgstr "" + +#. Label of the section_break_12 (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Document Linking" +msgstr "" + +#. Label of the links (Table) field in DocType 'DocType' +#. Label of the document_links_section (Section Break) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Document Links" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1212 +msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1232 +msgid "Document Links Row #{0}: Invalid doctype or fieldname." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1195 +msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1201 +msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" +msgstr "" + +#. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' +#. Label of the share_name (Dynamic Link) field in DocType 'DocShare' +#. Label of the docname (Data) field in DocType 'Version' +#. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' +#. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_permission/user_permission_list.js:36 +#: frappe/core/doctype/version/version.json +#: frappe/desk/doctype/tag_link/tag_link.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/public/js/frappe/form/form_tour.js:62 +msgid "Document Name" +msgstr "" + +#: frappe/client.py:406 +msgid "Document Name must be a string" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Document Naming Rule" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "Document Naming Rule Condition" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Document Naming Settings" +msgstr "" + +#: frappe/model/document.py:478 +msgid "Document Queued" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:38 +msgid "Document Restoration Summary" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:68 +msgid "Document Restored" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:354 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:396 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:415 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:434 +msgid "Document Saved" +msgstr "" + +#. Label of the enable_email_share (Check) field in DocType 'Notification +#. Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Document Share" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/document_share_key/document_share_key.json +msgid "Document Share Key" +msgstr "" + +#. Label of the document_share_key_expiry (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Document Share Key Expiry (in Days)" +msgstr "" + +#. Name of a report +#. Label of a Link in the Users Workspace +#: frappe/core/report/document_share_report/document_share_report.json +#: frappe/core/workspace/users/users.json +msgid "Document Share Report" +msgstr "" + +#. Label of the states (Table) field in DocType 'DocType' +#. Label of the document_states_section (Section Break) field in DocType +#. 'Customize Form' +#. Label of the states (Table) field in DocType 'Workflow' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Document States" +msgstr "" + +#: frappe/model/meta.py:54 frappe/public/js/frappe/model/meta.js:202 +#: frappe/public/js/frappe/model/model.js:137 +msgid "Document Status" +msgstr "" + +#. Label of the tag (Link) field in DocType 'Tag Link' +#: frappe/desk/doctype/tag_link/tag_link.json +msgid "Document Tag" +msgstr "" + +#. Label of the title (Data) field in DocType 'Tag Link' +#: frappe/desk/doctype/tag_link/tag_link.json +msgid "Document Title" +msgstr "" + +#. Label of the document_type (Link) field in DocType 'Assignment Rule' +#. Label of the reference_type (Link) field in DocType 'Milestone' +#. Label of the reminder_doctype (Link) field in DocType 'Reminder' +#. Label of the reference_doctype (Link) field in DocType 'Data Import' +#. Label of the share_doctype (Link) field in DocType 'DocShare' +#. Label of the document_type (Link) field in DocType 'Document Naming Rule' +#. Label of the ref_doctype (Link) field in DocType 'Session Default' +#. Label of the document_type (Link) field in DocType 'User Document Type' +#. Label of the document_type (Link) field in DocType 'User Select Document +#. Type' +#. Label of the document_type (Link) field in DocType 'DocType Layout' +#. Label of the document_type (Link) field in DocType 'Bulk Update' +#. Label of the document_type (Link) field in DocType 'Dashboard Chart' +#. Label of the document_type (Link) field in DocType 'Global Search DocType' +#. Label of the document_type (Link) field in DocType 'Notification Log' +#. Label of the document_type (Link) field in DocType 'Number Card' +#. Option for the 'Type' (Select) field in DocType 'Number Card' +#. Label of the document_type (Link) field in DocType 'Tag Link' +#. Label of the document_type (Link) field in DocType 'Notification' +#. Label of the document_type (Link) field in DocType 'Print Format Field +#. Template' +#. Label of the document_type (Data) field in DocType 'Personal Data Deletion +#. Step' +#. Label of the document_type (Link) field in DocType 'Workflow' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/session_default/session_default.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_permission/user_permission_list.js:26 +#: frappe/core/doctype/user_select_document_type/user_select_document_type.json +#: frappe/core/page/permission_manager/permission_manager.js:49 +#: frappe/core/page/permission_manager/permission_manager.js:218 +#: frappe/core/page/permission_manager/permission_manager.js:449 +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/tag_link/tag_link.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/public/js/frappe/roles_editor.js:68 +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Document Type" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:60 +msgid "Document Type and Function are required to create a number card" +msgstr "" + +#: frappe/permissions.py:149 +msgid "Document Type is not importable" +msgstr "" + +#: frappe/permissions.py:145 +msgid "Document Type is not submittable" +msgstr "" + +#. Label of the document_type (Link) field in DocType 'Milestone Tracker' +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Document Type to Track" +msgstr "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:40 +msgid "Document Type {0} has been repeated." +msgstr "" + +#. Label of the user_doctypes (Table) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Document Types" +msgstr "" + +#. Label of the select_doctypes (Table) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Document Types (Select Permissions Only)" +msgstr "" + +#. Label of the section_break_2 (Section Break) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Document Types and Permissions" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.py:163 +#: frappe/model/document.py:1959 +msgid "Document Unlocked" +msgstr "" + +#: frappe/desk/form/document_follow.py:56 +msgid "Document follow is not enabled for this user." +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1302 +msgid "Document has been cancelled" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1301 +msgid "Document has been submitted" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1300 +msgid "Document is in draft state" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "Document is only editable by users with role" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:182 +msgid "Document not Relinked" +msgstr "" + +#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:155 +msgid "Document renamed from {0} to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:164 +msgid "Document renaming from {0} to {1} has been queued" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:397 +msgid "Document type is required to create a dashboard chart" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:45 +msgid "Document {0} Already Restored" +msgstr "" + +#: frappe/workflow/doctype/workflow_action/workflow_action.py:203 +msgid "Document {0} has been set to state {1} by {2}" +msgstr "" + +#: frappe/client.py:430 +msgid "Document {0} {1} does not exist" +msgstr "" + +#. Label of the documentation (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Documentation Link" +msgstr "" + +#. Label of the documentation_url (Data) field in DocType 'DocField' +#. Label of the documentation_url (Data) field in DocType 'Module Onboarding' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Documentation URL" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_dashboard.html:17 +msgid "Documents" +msgstr "စာရွက်စာတမ်းများ" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:25 +msgid "Documents restored successfully" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:33 +msgid "Documents that failed to restore" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:29 +msgid "Documents that were already restored" +msgstr "" + +#. Name of a DocType +#. Label of the domain (Data) field in DocType 'Domain' +#. Label of the domain (Link) field in DocType 'Has Domain' +#. Label of the domain (Link) field in DocType 'Email Account' +#: frappe/core/doctype/domain/domain.json +#: frappe/core/doctype/has_domain/has_domain.json +#: frappe/email/doctype/email_account/email_account.json +msgid "Domain" +msgstr "" + +#. Label of the domain_name (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Domain Name" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/domain_settings/domain_settings.json +msgid "Domain Settings" +msgstr "" + +#. Label of the domains_html (HTML) field in DocType 'Domain Settings' +#: frappe/core/doctype/domain_settings/domain_settings.json +msgid "Domains HTML" +msgstr "" + +#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom +#. Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:272 +msgid "Don't Import" +msgstr "" + +#. Label of the override_status (Check) field in DocType 'Workflow' +#. Label of the avoid_status_override (Check) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow/workflow.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Don't Override Status" +msgstr "" + +#. Label of the mute_emails (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Don't Send Emails" +msgstr "" + +#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'DocField' +#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize +#. Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" +msgstr "" + +#: frappe/www/login.html:139 frappe/www/login.html:155 +#: frappe/www/update-password.html:70 +msgid "Don't have an account?" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:16 +#: frappe/public/js/frappe/ui/messages.js:238 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:17 +#: frappe/public/js/print_format_builder/HTMLEditor.vue:5 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52 +msgid "Done" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Donut" +msgstr "" + +#: frappe/public/js/form_builder/components/EditableInput.vue:43 +msgid "Double click to edit label" +msgstr "" + +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:8 +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Download" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:247 +msgctxt "Export report" +msgid "Download" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/page/backups/backups.js:4 +msgid "Download Backups" +msgstr "" + +#: frappe/templates/emails/download_data.html:6 +msgid "Download Data" +msgstr "" + +#: frappe/desk/page/backups/backups.js:14 +msgid "Download Files Backup" +msgstr "" + +#: frappe/templates/emails/download_data.html:9 +msgid "Download Link" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:134 +msgid "Download PDF" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:840 +msgid "Download Report" +msgstr "" + +#. Label of the download_template (Button) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Download Template" +msgstr "" + +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:61 +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:69 +#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48 +msgid "Download Your Data" +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.js:49 +msgid "Download as CSV" +msgstr "" + +#: frappe/contacts/doctype/contact/contact.js:98 +msgid "Download vCard" +msgstr "" + +#: frappe/contacts/doctype/contact/contact_list.js:4 +msgid "Download vCards" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:46 +msgid "Dr" +msgstr "" + +#: frappe/public/js/frappe/model/indicator.js:73 +#: frappe/public/js/frappe/ui/filters/filter.js:538 +msgid "Draft" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/blocks/header.js:46 +#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:136 +#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:44 +#: frappe/public/js/frappe/widgets/base_widget.js:33 +msgid "Drag" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:189 +msgid "Drag & Drop a section here from another tab" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:14 +msgid "Drag and drop files here or upload from" +msgstr "" + +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:76 +msgid "Drag columns to set order. Column width is set in percentage. The total width should not be more than 100. Columns marked in red will be removed." +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:3 +msgid "Drag elements from the sidebar to add. Drag them back to trash." +msgstr "" + +#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:296 +msgid "Drag to add state" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 +msgid "Drop files here" +msgstr "" + +#. Label of the section_break_2 (Section Break) field in DocType 'Navbar +#. Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Dropdowns" +msgstr "" + +#. Label of the date (Date) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +msgid "Due Date" +msgstr "" + +#. Label of the due_date_based_on (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Due Date Based On" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +#: frappe/public/js/frappe/form/toolbar.js:422 +msgid "Duplicate" +msgstr "" + +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:53 +msgid "Duplicate Entry" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:144 +msgid "Duplicate Filter Name" +msgstr "" + +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 +msgid "Duplicate Name" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Duplicate Row" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:209 +msgid "Duplicate current row" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:245 +msgid "Duplicate field" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the duration (Float) field in DocType 'Recorder' +#. Label of the duration (Float) field in DocType 'Recorder Query' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/recorder_query/recorder_query.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Duration" +msgstr "" + +#. Option for the 'Row Format' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Dynamic" +msgstr "" + +#. Label of the dynamic_filters_section (Section Break) field in DocType +#. 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Dynamic Filters" +msgstr "" + +#. Label of the dynamic_filters_json (Code) field in DocType 'Dashboard Chart' +#. Label of the dynamic_filters_json (Code) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Dynamic Filters JSON" +msgstr "" + +#. Label of the dynamic_filters_section (Section Break) field in DocType +#. 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Dynamic Filters Section" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Name of a DocType +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Dynamic Link" +msgstr "" + +#. Label of the dynamic_report_filters_section (Section Break) field in DocType +#. 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Dynamic Report Filters" +msgstr "" + +#. Label of the dynamic_route (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Dynamic Route" +msgstr "" + +#. Label of the dynamic_template (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Dynamic Template" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "ESC" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/page/dashboard_view/dashboard_view.js:169 +#: frappe/printing/page/print_format_builder/print_format_builder_start.html:8 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 +#: frappe/public/js/frappe/form/controls/markdown_editor.js:31 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 +#: frappe/public/js/frappe/views/workspace/workspace.js:64 +#: frappe/public/js/frappe/widgets/base_widget.js:64 +#: frappe/public/js/frappe/widgets/chart_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 +#: frappe/templates/discussions/reply_card.html:29 +#: frappe/templates/discussions/reply_section.html:29 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:46 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:84 +msgid "Edit" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2260 +msgctxt "Button in list view actions menu" +msgid "Edit" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:23 +msgctxt "Button in web form" +msgid "Edit" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:350 +msgctxt "Edit grid row" +msgid "Edit" +msgstr "" + +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:66 +msgid "Edit Address in Form" +msgstr "" + +#: frappe/templates/emails/auto_email_report.html:63 +msgid "Edit Auto Email Report Settings" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:38 +msgid "Edit Chart" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:50 +msgid "Edit Custom Block" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:727 +msgid "Edit Custom HTML" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:619 +msgid "Edit DocType" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1976 +msgctxt "Button in list view menu" +msgid "Edit DocType" +msgstr "" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:42 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:42 +msgid "Edit Existing" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:55 +msgid "Edit Filters" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:29 +msgid "Edit Footer" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:29 +msgid "Edit Format" +msgstr "" + +#: frappe/public/js/frappe/form/quick_entry.js:326 +msgid "Edit Full Form" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:27 +#: frappe/public/js/print_format_builder/Field.vue:83 +msgid "Edit HTML" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:9 +msgid "Edit Header" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:609 +#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:8 +msgid "Edit Heading" +msgstr "" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52 +msgid "Edit Letter Head" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:35 +msgid "Edit Letter Head Footer" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:42 +msgid "Edit Links" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:44 +msgid "Edit Number Card" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:46 +msgid "Edit Onboarding" +msgstr "" + +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:24 +msgid "Edit Print Format" +msgstr "" + +#: frappe/www/me.html:38 +msgid "Edit Profile" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:173 +msgid "Edit Properties" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:48 +msgid "Edit Quick List" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:40 +msgid "Edit Shortcut" +msgstr "" + +#. Label of the edit_values (Button) field in DocType 'Web Page Block' +#. Label of the edit_navbar_template_values (Button) field in DocType 'Website +#. Settings' +#. Label of the edit_footer_template_values (Button) field in DocType 'Website +#. Settings' +#: frappe/public/js/frappe/utils/web_template.js:5 +#: frappe/website/doctype/web_page_block/web_page_block.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Edit Values" +msgstr "" + +#: frappe/desk/doctype/note/note.js:11 +msgid "Edit mode" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:254 +msgid "Edit the {0} Doctype" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:721 +msgid "Edit to add content" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:470 +msgctxt "Button in web form" +msgid "Edit your response" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:18 +msgid "Edit your workflow visually using the Workflow Builder." +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:683 +#: frappe/public/js/frappe/widgets/widget_dialog.js:52 +msgid "Edit {0}" +msgstr "" + +#. Label of the editable_grid (Check) field in DocType 'DocType' +#. Label of the editable_grid (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:58 +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Editable Grid" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Editing Row" +msgstr "" + +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:14 +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:20 +msgid "Editing {0}" +msgstr "" + +#. Description of the 'SMS Gateway URL' (Small Text) field in DocType 'SMS +#. Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Eg. smsgateway.com/api/send_sms.cgi" +msgstr "" + +#: frappe/rate_limiter.py:152 +msgid "Either key or IP flag is required." +msgstr "" + +#. Label of the element_selector (Data) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Element Selector" +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Label of the email (Check) field in DocType 'Custom DocPerm' +#. Label of the email (Check) field in DocType 'DocPerm' +#. Option for the 'Two Factor Authentication method' (Select) field in DocType +#. 'System Settings' +#. Label of the email_tab (Tab Break) field in DocType 'System Settings' +#. Label of the email (Data) field in DocType 'User' +#. Label of the email_settings (Section Break) field in DocType 'User' +#. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' +#. Label of the email (Data) field in DocType 'Event Participants' +#. Label of the email (Data) field in DocType 'Email Group Member' +#. Label of the email (Data) field in DocType 'Email Unsubscribe' +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/success_action/success_action.js:59 +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/desk/doctype/event_participants/event_participants.json +#: frappe/email/doctype/email_group_member/email_group_member.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/success_action.js:85 +#: frappe/public/js/frappe/form/toolbar.js:382 +#: frappe/templates/includes/comments/comments.html:25 +#: frappe/templates/signup.html:9 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +#: frappe/www/login.html:8 frappe/www/login.py:104 +msgid "Email" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Label of the email_account (Link) field in DocType 'Communication' +#. Label of the email_account (Link) field in DocType 'User Email' +#. Name of a DocType +#. Label of the email_account (Data) field in DocType 'Email Flag Queue' +#. Label of the email_account (Link) field in DocType 'Email Queue' +#. Label of the email_account (Link) field in DocType 'Unhandled Email' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/communication.js:199 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_email/user_email.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Email Account" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:343 +msgid "Email Account Disabled." +msgstr "" + +#. Label of the email_account_name (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Email Account Name" +msgstr "" + +#: frappe/core/doctype/user/user.py:749 +msgid "Email Account added multiple times" +msgstr "" + +#: frappe/email/smtp.py:43 +msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:576 +msgid "Email Account {0} Disabled" +msgstr "" + +#. Label of the email_id (Data) field in DocType 'Address' +#. Label of the email_id (Data) field in DocType 'Contact' +#. Label of the email_id (Data) field in DocType 'Email Account' +#. Label of the email_id (Data) field in DocType 'Google Contacts' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:485 +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/www/complete_signup.html:11 frappe/www/login.html:184 +#: frappe/www/login.html:216 +msgid "Email Address" +msgstr "" + +#. Description of the 'Email Address' (Data) field in DocType 'Google Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Email Address whose Google Contacts are to be synced." +msgstr "" + +#: frappe/email/doctype/email_group/email_group.js:43 +msgid "Email Addresses" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Email Domain" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Email Flag Queue" +msgstr "" + +#. Label of the email_footer_address (Small Text) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Email Footer Address" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#. Label of the email_group (Link) field in DocType 'Email Group Member' +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/email_group/email_group.json +#: frappe/email/doctype/email_group_member/email_group_member.json +msgid "Email Group" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/email_group_member/email_group_member.json +msgid "Email Group Member" +msgstr "" + +#. Label of the email_header (Data) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Email Header" +msgstr "" + +#. Label of the email_id (Data) field in DocType 'Contact Email' +#. Label of the email_id (Data) field in DocType 'User Email' +#. Label of the email_id (Data) field in DocType 'Email Rule' +#: frappe/contacts/doctype/contact/contact.py:131 +#: frappe/contacts/doctype/contact_email/contact_email.json +#: frappe/core/doctype/user_email/user_email.json +#: frappe/email/doctype/email_rule/email_rule.json +msgid "Email ID" +msgstr "" + +#. Label of the email_ids (Table) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Email IDs" +msgstr "" + +#. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Email Id" +msgstr "" + +#. Label of the email_inbox (Section Break) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Email Inbox" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Email Queue" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +msgid "Email Queue Recipient" +msgstr "" + +#: frappe/email/queue.py:161 +msgid "Email Queue flushing aborted due to too many failures." +msgstr "" + +#. Description of a DocType +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Email Queue records." +msgstr "" + +#. Label of the email_reply_help (HTML) field in DocType 'Email Template' +#: frappe/email/doctype/email_template/email_template.json +msgid "Email Reply Help" +msgstr "" + +#. Label of the email_retry_limit (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Email Retry Limit" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/email_rule/email_rule.json +msgid "Email Rule" +msgstr "" + +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" +msgstr "" + +#. Label of the email_settings_sb (Section Break) field in DocType 'DocType' +#. Label of the email_settings_section (Section Break) field in DocType +#. 'Customize Form' +#. Label of the column_break_3 (Section Break) field in DocType 'Notification +#. Settings' +#. Label of the email_settings (Section Break) field in DocType 'Auto Email +#. Report' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Email Settings" +msgstr "" + +#. Label of the email_signature (Text Editor) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Email Signature" +msgstr "" + +#. Label of the email_status (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Email Status" +msgstr "" + +#. Label of the email_sync_option (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Email Sync Option" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Label of the email_template (Link) field in DocType 'Communication' +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/public/js/frappe/views/communication.js:107 +msgid "Email Template" +msgstr "" + +#. Label of the enable_email_threads_on_assigned_document (Check) field in +#. DocType 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Email Threads on Assigned Document" +msgstr "" + +#. Label of the email_to (Small Text) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Email To" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +msgid "Email Unsubscribe" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:342 +msgid "Email has been marked as spam" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:355 +msgid "Email has been moved to trash" +msgstr "" + +#: frappe/core/doctype/user/user.js:266 +msgid "Email is mandatory to create User Email" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:822 +msgid "Email not sent to {0} (unsubscribed / disabled)" +msgstr "" + +#: frappe/utils/oauth.py:163 +msgid "Email not verified with {0}" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue.js:19 +msgid "Email queue is currently suspended. Resume to automatically send other emails." +msgstr "" + +#. Label of the section_break_udjs (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Emails" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:216 +msgid "Emails Pulled" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:934 +msgid "Emails are already being pulled from this account." +msgstr "" + +#: frappe/email/queue.py:138 +msgid "Emails are muted" +msgstr "" + +#. Description of the 'Send Email Alert' (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Emails will be sent with next possible workflow actions" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:34 +msgid "Embed code copied" +msgstr "" + +#: frappe/database/query.py:1539 +msgid "Empty alias is not allowed" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:285 +msgid "Empty column" +msgstr "" + +#: frappe/database/query.py:1457 +msgid "Empty string arguments are not allowed" +msgstr "" + +#. Label of the enable (Check) field in DocType 'Google Calendar' +#. Label of the enable (Check) field in DocType 'Google Contacts' +#. Label of the enable (Check) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "Enable" +msgstr "" + +#. Label of the enable_address_autocompletion (Check) field in DocType +#. 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Enable Address Autocompletion" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 +msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" +msgstr "" + +#. Label of the enable_auto_reply (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Enable Auto Reply" +msgstr "" + +#. Label of the enable_automatic_linking (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Enable Automatic Linking in Documents" +msgstr "" + +#. Label of the enable_comments (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Enable Comments" +msgstr "" + +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "" + +#. Label of the enable_email_notifications (Check) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Enable Email Notifications" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:106 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:36 +#: frappe/website/doctype/website_settings/website_settings.py:129 +msgid "Enable Google API in Google Settings." +msgstr "" + +#. Label of the enable_google_indexing (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Enable Google indexing" +msgstr "" + +#. Label of the enable_incoming (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:225 +msgid "Enable Incoming" +msgstr "" + +#. Label of the enable_onboarding (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Enable Onboarding" +msgstr "" + +#. Label of the enable_outgoing (Check) field in DocType 'User Email' +#. Label of the enable_outgoing (Check) field in DocType 'Email Account' +#: frappe/core/doctype/user_email/user_email.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:233 +msgid "Enable Outgoing" +msgstr "" + +#. Label of the enable_password_policy (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Enable Password Policy" +msgstr "" + +#. Label of the enable_prepared_report (Check) field in DocType 'Role +#. Permission for Page and Report' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgid "Enable Prepared Report" +msgstr "" + +#. Label of the enable_print_server (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Enable Print Server" +msgstr "" + +#. Label of the enable_push_notification_relay (Check) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Enable Push Notification Relay" +msgstr "" + +#. Label of the enable_rate_limit (Check) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Enable Rate Limit" +msgstr "" + +#. Label of the enable_raw_printing (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Enable Raw Printing" +msgstr "" + +#: frappe/core/doctype/report/report.js:39 +msgid "Enable Report" +msgstr "" + +#. Label of the enable_scheduler (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Enable Scheduled Jobs" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:23 +msgid "Enable Scheduler" +msgstr "" + +#. Label of the enable_security (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Enable Security" +msgstr "" + +#. Label of the enable_social_login (Check) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Enable Social Login" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.js:139 +msgid "Enable Tracking Page Views" +msgstr "" + +#. Label of the enable_two_factor_auth (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/twofactor.py:438 +msgid "Enable Two Factor Auth" +msgstr "" + +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:28 +msgid "Enable developer mode to create a standard Print Template" +msgstr "" + +#: frappe/website/doctype/web_template/web_template.py:33 +msgid "Enable developer mode to create a standard Web Template" +msgstr "" + +#. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Enable if on click\n" +"opens modal." +msgstr "" + +#. Label of the enable_view_tracking (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Enable in-app website tracking" +msgstr "" + +#. Label of the enabled (Check) field in DocType 'Language' +#. Label of the enabled (Check) field in DocType 'User' +#. Label of the enabled (Check) field in DocType 'Client Script' +#. Label of the enabled (Check) field in DocType 'Notification Settings' +#. Label of the enabled (Check) field in DocType 'Auto Email Report' +#. Label of the enabled (Check) field in DocType 'Notification' +#. Label of the enabled (Check) field in DocType 'Currency' +#. Label of the enabled (Check) field in DocType 'LDAP Settings' +#. Label of the enabled (Check) field in DocType 'Webhook' +#. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/user/user.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/notification/notification.json +#: frappe/geo/doctype/currency/currency.json +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Enabled" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:29 +msgid "Enabled Scheduler" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:1010 +msgid "Enabled email inbox for user {0}" +msgstr "" + +#. Description of the 'Is Calendar and Gantt' (Check) field in DocType +#. 'DocType' +#. Description of the 'Is Calendar and Gantt' (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Enables Calendar and Gantt views." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:295 +msgid "Enabling auto reply on an incoming email account will send automated replies to all the synchronized emails. Do you wish to continue?" +msgstr "" + +#. Description of a DocType +#. Description of the 'Relay Settings' (Section Break) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "" + +#. Description of the 'Queue in Background (BETA)' (Check) field in DocType +#. 'DocType' +#. Description of the 'Queue in Background (BETA)' (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Enabling this will submit documents in background" +msgstr "" + +#. Label of the encrypt_backup (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Encrypt Backups" +msgstr "" + +#: frappe/utils/password.py:196 +msgid "Encryption key is in invalid format!" +msgstr "" + +#: frappe/utils/password.py:211 +msgid "Encryption key is invalid! Please check site_config.json" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:51 +msgid "End" +msgstr "" + +#. Label of the end_date (Date) field in DocType 'Auto Repeat' +#. Label of the end_date (Date) field in DocType 'Audit Trail' +#. Label of the end_date (Datetime) field in DocType 'Web Page' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/public/js/frappe/utils/common.js:416 +#: frappe/website/doctype/web_page/web_page.json +msgid "End Date" +msgstr "" + +#. Label of the end_date_field (Select) field in DocType 'Calendar View' +#: frappe/desk/doctype/calendar_view/calendar_view.json +msgid "End Date Field" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.py:208 +msgid "End Date cannot be before Start Date!" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + +#. Label of the ended_at (Datetime) field in DocType 'RQ Job' +#. Label of the ended_at (Datetime) field in DocType 'Submission Queue' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Ended At" +msgstr "" + +#. Label of the sb_endpoints_section (Section Break) field in DocType +#. 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Endpoints" +msgstr "" + +#. Label of the ends_on (Datetime) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Ends on" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Energy Point" +msgstr "" + +#. Label of the enqueued_by (Data) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Enqueued By" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:125 +msgid "Enqueued creation of indexes" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108 +msgid "Ensure the user and group search paths are correct." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:109 +msgid "Enter Client Id and Client Secret in Google Settings." +msgstr "" + +#: frappe/templates/includes/login/login.js:351 +msgid "Enter Code displayed in OTP App." +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:777 +msgid "Enter Email Recipient(s)" +msgstr "" + +#. Label of the doc_type (Link) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Enter Form Type" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:94 +msgctxt "Title of prompt dialog" +msgid "Enter Value" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:60 +msgid "Enter a name for this {0}" +msgstr "" + +#. Description of the 'User Defaults' (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Enter default value fields (keys) and values. If you add multiple values for a field, the first one will be picked. These defaults are also used to set \"match\" permission rules. To see list of fields, go to \"Customize Form\"." +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:111 +msgid "Enter folder name" +msgstr "" + +#. Description of the 'Static Parameters' (Table) field in DocType 'SMS +#. Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)" +msgstr "" + +#. Description of the 'Message Parameter' (Data) field in DocType 'SMS +#. Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Enter url parameter for message" +msgstr "" + +#. Description of the 'Receiver Parameter' (Data) field in DocType 'SMS +#. Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Enter url parameter for receiver nos" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:341 +msgid "Enter your password" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:22 +msgid "Entity Name" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:9 +msgid "Entity Type" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:16 +msgid "Equals" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#. Label of the error (Code) field in DocType 'Error Log' +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#. Label of the error (Code) field in DocType 'Email Queue' +#. Label of the error (Code) field in DocType 'Email Queue Recipient' +#. Label of the error (Code) field in DocType 'Integration Request' +#. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +#: frappe/desk/page/backups/backups.js:37 +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/ui/messages.js:22 +msgid "Error" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:264 +msgctxt "Title of error message in web form" +msgid "Error" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/error_log/error_log.json +msgid "Error Log" +msgstr "" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Error Logs" +msgstr "" + +#. Label of the error_message (Text) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Error Message" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:156 +msgid "Error connecting to QZ Tray Application...

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

    Click here to Download and install QZ Tray.
    Click here to learn more about Raw Printing." +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:32 +msgid "Error connecting via IMAP/POP3: {e}" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:33 +msgid "Error connecting via SMTP: {e}" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:101 +msgid "Error has occurred in {0}" +msgstr "" + +#: frappe/public/js/frappe/form/script_manager.js:199 +msgid "Error in Client Script" +msgstr "" + +#: frappe/public/js/frappe/form/script_manager.js:256 +msgid "Error in Client Script." +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:21 +msgid "Error in Header/Footer Script" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 +msgid "Error in Notification" +msgstr "" + +#: frappe/utils/pdf.py:59 +msgid "Error in print format on line {0}: {1}" +msgstr "" + +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:670 +msgid "Error while connecting to email account {0}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:779 +msgid "Error while evaluating Notification {0}. Please fix your template." +msgstr "" + +#: frappe/model/base_document.py:860 +msgid "Error: Data missing in table {0}" +msgstr "" + +#: frappe/model/base_document.py:870 +msgid "Error: Value missing for {0}: {1}" +msgstr "" + +#: frappe/model/base_document.py:864 +msgid "Error: {0} Row #{1}: Value missing for: {2}" +msgstr "" + +#. Label of the errors_generated_in_last_1_day_section (Section Break) field in +#. DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Errors" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Name of a DocType +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json +msgid "Event" +msgstr "" + +#. Label of the event_category (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Event Category" +msgstr "" + +#. Label of the event_frequency (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Event Frequency" +msgstr "" + +#. Label of the event_participants (Table) field in DocType 'Event' +#. Name of a DocType +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/event_participants/event_participants.json +msgid "Event Participants" +msgstr "" + +#. Label of the enable_email_event_reminders (Check) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Event Reminders" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:493 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:577 +msgid "Event Synced with Google Calendar." +msgstr "" + +#. Label of the event_type (Data) field in DocType 'Recorder' +#. Label of the event_type (Select) field in DocType 'Event' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/desk/doctype/event/event.json +msgid "Event Type" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:56 +msgid "Events" +msgstr "" + +#: frappe/desk/doctype/event/event.py:278 +msgid "Events in Today's Calendar" +msgstr "" + +#. Label of the everyone (Check) field in DocType 'DocShare' +#: frappe/core/doctype/docshare/docshare.json +#: frappe/public/js/frappe/form/templates/set_sharing.html:11 +msgid "Everyone" +msgstr "" + +#. Description of the 'Custom Options' (Code) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"]" +msgstr "" + +#. Label of the exact_copies (Int) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Exact Copies" +msgstr "" + +#. Label of the example (HTML) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Example" +msgstr "" + +#. Description of the 'Default Portal Home' (Data) field in DocType 'Portal +#. Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Example: \"/desk\"" +msgstr "" + +#. Description of the 'Path' (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Example: #Tree/Account" +msgstr "" + +#. Description of the 'Digits' (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Example: 00001" +msgstr "" + +#. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours." +msgstr "" + +#. Description of the 'Description' (Small Text) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Example: {{ subject }}" +msgstr "" + +#. Option for the 'File Type' (Select) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Excel" +msgstr "" + +#: frappe/public/js/frappe/form/controls/password.js:90 +msgid "Excellent" +msgstr "" + +#. Label of the exception (Text) field in DocType 'Data Import Log' +#. Label of the exc_info (Code) field in DocType 'RQ Job' +#. Label of the exception (Long Text) field in DocType 'Submission Queue' +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Exception" +msgstr "" + +#. Label of the execute_section (Section Break) field in DocType 'System +#. Console' +#: frappe/desk/doctype/system_console/system_console.js:17 +#: frappe/desk/doctype/system_console/system_console.js:22 +#: frappe/desk/doctype/system_console/system_console.json +msgid "Execute" +msgstr "" + +#: frappe/desk/doctype/system_console/system_console.js:10 +msgid "Execute Console script" +msgstr "" + +#: frappe/public/js/frappe/ui/dropdown_console.js:132 +msgid "Executing Code" +msgstr "" + +#: frappe/desk/doctype/system_console/system_console.js:18 +msgid "Executing..." +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2140 +msgid "Execution Time: {0} sec" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Executive" +msgstr "" + +#. Label of the existing_role (Link) field in DocType 'Role Replication' +#: frappe/core/doctype/role_replication/role_replication.json +msgid "Existing Role" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:115 +#: frappe/public/js/frappe/views/treeview.js:127 +#: frappe/public/js/frappe/views/treeview.js:137 +#: frappe/public/js/frappe/widgets/base_widget.js:159 +msgid "Expand" +msgstr "" + +#: frappe/public/js/frappe/form/controls/code.js:185 +msgctxt "Enlarge code field." +msgid "Expand" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/treeview.js:133 +msgid "Expand All" +msgstr "" + +#: frappe/database/query.py:354 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:23 +msgid "Experimental" +msgstr "" + +#. Option for the 'Level' (Select) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Expert" +msgstr "" + +#. Label of the expiration_time (Datetime) field in DocType 'OAuth +#. Authorization Code' +#. Label of the expiration_time (Datetime) field in DocType 'OAuth Bearer +#. Token' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "Expiration time" +msgstr "" + +#. Label of the expire_notification_on (Datetime) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Expire Notification On" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Expired" +msgstr "" + +#. Label of the expires_in (Int) field in DocType 'OAuth Bearer Token' +#. Label of the expires_in (Int) field in DocType 'Token Cache' +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Expires In" +msgstr "" + +#. Label of the expires_on (Date) field in DocType 'Document Share Key' +#: frappe/core/doctype/document_share_key/document_share_key.json +msgid "Expires On" +msgstr "" + +#. Label of the lifespan_qrcode_image (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Expiry time of QR Code Image Page" +msgstr "" + +#. Label of the export (Check) field in DocType 'Custom DocPerm' +#. Label of the export (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/recorder/recorder_list.js:37 +#: frappe/public/js/frappe/data_import/data_exporter.js:92 +#: frappe/public/js/frappe/data_import/data_exporter.js:243 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 +#: frappe/public/js/frappe/widgets/chart_widget.js:315 +msgid "Export" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2282 +msgctxt "Button in list view actions menu" +msgid "Export" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:245 +msgid "Export 1 record" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:262 +msgid "Export Custom Permissions" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:242 +msgid "Export Customizations" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +#: frappe/public/js/frappe/data_import/data_exporter.js:14 +msgid "Export Data" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:86 +#: frappe/public/js/frappe/data_import/import_preview.js:199 +msgid "Export Errored Rows" +msgstr "" + +#. Label of the export_from (Data) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Export From" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:518 +msgid "Export Import Log" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:245 +msgctxt "Export report" +msgid "Export Report: {0}" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:26 +msgid "Export Type" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1640 +msgid "Export all matching rows?" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1650 +msgid "Export all {0} rows?" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:154 +msgid "Export as zip" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + +#: frappe/public/js/frappe/utils/tools.js:11 +msgid "Export not allowed. You need {0} role to export." +msgstr "" + +#. Description of the 'Export without main header' (Check) field in DocType +#. 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Export the data without any header notes and column descriptions" +msgstr "" + +#. Label of the export_without_main_header (Check) field in DocType 'Data +#. Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Export without main header" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:247 +msgid "Export {0} records" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:263 +msgid "Exported permissions will be force-synced on every migrate overriding any other customization." +msgstr "" + +#. Label of the expose_recipients (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Expose Recipients" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Expression" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Expression (old style)" +msgstr "" + +#. Description of the 'Condition' (Data) field in DocType 'Notification +#. Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Expression, Optional" +msgstr "" + +#. Label of the external_link (Data) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/views/workspace/workspace.js:426 +msgid "External Link" +msgstr "" + +#. Label of the section_break_18 (Section Break) field in DocType 'Connected +#. App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Extra Parameters" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Facebook" +msgstr "" + +#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Fail" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' +#. Option for the 'Status' (Select) field in DocType 'Submission Queue' +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Failed" +msgstr "" + +#. Label of the failed_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Failed Emails" +msgstr "" + +#. Label of the failed_job_count (Int) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Failed Job Count" +msgstr "" + +#. Label of the failed_jobs (Int) field in DocType 'System Health Report +#. Workers' +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "Failed Jobs" +msgstr "" + +#. Label of the failed_logins (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Failed Logins (Last 30 days)" +msgstr "" + +#: frappe/model/workflow.py:362 +msgid "Failed Transactions" +msgstr "" + +#: frappe/utils/synchronization.py:46 +msgid "Failed to aquire lock: {}. Lock may be held by another process." +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:359 +msgid "Failed to change password." +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:232 +#: frappe/desk/page/setup_wizard/setup_wizard.py:42 +msgid "Failed to complete setup" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:141 +msgid "Failed to compute request body: {}" +msgstr "" + +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:46 +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:48 +msgid "Failed to connect to server" +msgstr "" + +#: frappe/auth.py:701 +msgid "Failed to decode token, please provide a valid base64-encoded token." +msgstr "" + +#: frappe/utils/password.py:210 +msgid "Failed to decrypt key {0}" +msgstr "" + +#: frappe/desk/reportview.py:635 +msgid "Failed to delete {0} documents: {1}" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:33 +msgid "Failed to enable scheduler: {0}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 +msgid "Failed to evaluate conditions: {}" +msgstr "" + +#: frappe/types/exporter.py:205 +msgid "Failed to export python type hints" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:249 +msgid "Failed to generate names from the series" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:75 +msgid "Failed to generate preview of series" +msgstr "" + +#: frappe/handler.py:76 +msgid "Failed to get method for command {0} with {1}" +msgstr "" + +#: frappe/api/v2.py:46 +msgid "Failed to get method {0} with {1}" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:59 +msgid "Failed to get site info" +msgstr "" + +#: frappe/model/virtual_doctype.py:63 +msgid "Failed to import virtual doctype {}, is controller file present?" +msgstr "" + +#: frappe/utils/image.py:75 +msgid "Failed to optimize image: {0}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:122 +msgid "Failed to render message: {}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:140 +msgid "Failed to render subject: {}" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:94 +msgid "Failed to request login to Frappe Cloud" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue.py:297 +msgid "Failed to send email with subject:" +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.py:43 +msgid "Failed to send notification email" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.py:24 +msgid "Failed to update global settings" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:74 +msgid "Failed while calling API {0}" +msgstr "" + +#. Label of the failing_scheduled_jobs (Table) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Failing Scheduled Jobs (last 7 days)" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:459 +msgid "Failure" +msgstr "" + +#. Label of the failure_rate (Percent) field in DocType 'System Health Report +#. Failing Jobs' +#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json +msgid "Failure Rate" +msgstr "" + +#. Label of the favicon (Attach) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "FavIcon" +msgstr "" + +#. Label of the fax (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Fax" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:33 +msgid "Feedback" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:29 +msgid "Female" +msgstr "" + +#. Label of the fetch_from (Small Text) field in DocType 'DocField' +#. Label of the fetch_from (Small Text) field in DocType 'Custom Field' +#. Label of the fetch_from (Small Text) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:29 +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:34 +msgid "Fetch From" +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:15 +msgid "Fetch Images" +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:13 +msgid "Fetch attached images from document" +msgstr "" + +#. Label of the fetch_if_empty (Check) field in DocType 'DocField' +#. Label of the fetch_if_empty (Check) field in DocType 'Custom Field' +#. Label of the fetch_if_empty (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Fetch on Save if Empty" +msgstr "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:61 +msgid "Fetching default Global Search documents." +msgstr "" + +#. Label of the field (Select) field in DocType 'Assignment Rule' +#. Label of the field (Select) field in DocType 'Document Naming Rule +#. Condition' +#. Label of the field (Select) field in DocType 'Bulk Update' +#. Label of the report_field (Select) field in DocType 'Number Card' +#. Label of the field (Select) field in DocType 'Onboarding Step' +#. Label of the fieldname (Select) field in DocType 'Web Form Field' +#. Label of the fieldname (Select) field in DocType 'Web Form List Column' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +#: frappe/core/doctype/permission_log/permission_log.js:12 +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/public/js/frappe/list/bulk_operations.js:327 +#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +msgid "Field" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:418 +msgid "Field \"route\" is mandatory for Web Views" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1527 +msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.js:17 +msgid "Field \"value\" is mandatory. Please specify value to be updated" +msgstr "" + +#. Label of the description (Text) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Field Description" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1078 +msgid "Field Missing" +msgstr "" + +#. Label of the field_name (Data) field in DocType 'Property Setter' +#. Label of the field_name (Select) field in DocType 'Kanban Board' +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +msgid "Field Name" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:141 +msgid "Field Orientation (Left-Right)" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:148 +msgid "Field Orientation (Top-Down)" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:233 +#: frappe/public/js/print_format_builder/utils.js:69 +msgid "Field Template" +msgstr "" + +#. Label of the fieldtype (Select) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/templates/form_grid/fields.html:40 +msgid "Field Type" +msgstr "" + +#: frappe/desk/reportview.py:202 +msgid "Field not permitted in query" +msgstr "" + +#. Description of the 'Workflow State Field' (Data) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)" +msgstr "" + +#. Label of the track_field (Select) field in DocType 'Milestone Tracker' +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Field to Track" +msgstr "" + +#: frappe/custom/doctype/property_setter/property_setter.py:51 +msgid "Field type cannot be changed for {0}" +msgstr "" + +#: frappe/database/database.py:919 +msgid "Field {0} does not exist on {1}" +msgstr "" + +#: frappe/desk/form/meta.py:184 +msgid "Field {0} is referring to non-existing doctype {1}." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1756 +msgid "Field {0} not found." +msgstr "" + +#: frappe/email/doctype/notification/notification.py:547 +msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" +msgstr "" + +#. Label of the fieldname (Data) field in DocType 'Report Column' +#. Label of the fieldname (Data) field in DocType 'Report Filter' +#. Label of the fieldname (Data) field in DocType 'Custom Field' +#. Label of the fieldname (Select) field in DocType 'DocType Layout Field' +#. Label of the fieldname (Select) field in DocType 'Form Tour Step' +#. Label of the fieldname (Select) field in DocType 'Webhook Data' +#. Label of the fieldname (Data) field in DocType 'Web Template Field' +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.js:120 +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/integrations/doctype/webhook_data/webhook_data.json +#: frappe/public/js/frappe/form/grid_row.js:455 +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Fieldname" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:271 +msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1077 +msgid "Fieldname called {0} must exist to enable autonaming" +msgstr "" + +#: frappe/database/schema.py:131 frappe/database/schema.py:408 +msgid "Fieldname is limited to 64 characters ({0})" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:197 +msgid "Fieldname not set for Custom Field" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:107 +msgid "Fieldname which will be the DocType for this link field." +msgstr "" + +#: frappe/public/js/form_builder/store.js:175 +msgid "Fieldname {0} appears multiple times" +msgstr "" + +#: frappe/database/schema.py:398 +msgid "Fieldname {0} cannot have special characters like {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1921 +msgid "Fieldname {0} conflicting with meta object" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:497 +#: frappe/public/js/form_builder/utils.js:302 +msgid "Fieldname {0} is restricted" +msgstr "" + +#. Label of the fields (Table) field in DocType 'DocType' +#. Label of the fields_section (Section Break) field in DocType 'DocType' +#. Label of the fields_tab (Tab Break) field in DocType 'DocType' +#. Label of the fields_section_break (Section Break) field in DocType +#. 'Customize Form' +#. Label of the fields (Table) field in DocType 'Customize Form' +#. Label of the fields (Table) field in DocType 'DocType Layout' +#. Label of the fields (Code) field in DocType 'Kanban Board' +#. Label of the fields_html (HTML) field in DocType 'List View Settings' +#. Label of the fields (Code) field in DocType 'List View Settings' +#. Label of the fields (Small Text) field in DocType 'Personal Data Deletion +#. Step' +#. Label of the fields (Table) field in DocType 'Web Template' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +#: frappe/public/js/frappe/list/list_settings.js:133 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +#: frappe/website/doctype/web_template/web_template.json +msgid "Fields" +msgstr "" + +#. Label of the fields_multicheck (HTML) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Fields Multicheck" +msgstr "" + +#: frappe/core/doctype/file/file.py:431 +msgid "Fields `file_name` or `file_url` must be set for File" +msgstr "" + +#: frappe/model/db_query.py:146 +msgid "Fields must be a list or tuple when as_list is enabled" +msgstr "" + +#: frappe/database/query.py:613 +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 "" + +#. Label of the fieldtype (Select) field in DocType 'Report Column' +#. Label of the fieldtype (Select) field in DocType 'Report Filter' +#. Label of the fieldtype (Data) field in DocType 'Form Tour Step' +#. Label of the fieldtype (Select) field in DocType 'Web Form Field' +#. Label of the fieldtype (Data) field in DocType 'Web Form List Column' +#. Label of the fieldtype (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Fieldtype" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:193 +msgid "Fieldtype cannot be changed from {0} to {1}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:593 +msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" +msgstr "" + +#. Label of a shortcut in the Tools Workspace +#. Name of a DocType +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/file/file.json +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "File" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 +msgid "File \"{0}\" was skipped because of invalid file type" +msgstr "" + +#: frappe/core/doctype/file/utils.py:128 +msgid "File '{0}' not found" +msgstr "" + +#. Label of the private_file_section (Section Break) field in DocType 'Access +#. Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "File Information" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:74 +msgid "File Manager" +msgstr "" + +#. Label of the file_name (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "File Name" +msgstr "" + +#. Label of the file_size (Int) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "File Size" +msgstr "" + +#. Label of the section_break_ryki (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "File Storage" +msgstr "" + +#. Label of the file_type (Data) field in DocType 'Access Log' +#. Label of the file_type (Select) field in DocType 'Data Export' +#. Label of the file_type (Data) field in DocType 'File' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/data_export/data_export.json +#: frappe/core/doctype/file/file.json +#: frappe/public/js/frappe/data_import/data_exporter.js:19 +msgid "File Type" +msgstr "" + +#. Label of the file_url (Code) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "File URL" +msgstr "" + +#: frappe/desk/page/backups/backups.py:107 +msgid "File backup is ready" +msgstr "" + +#: frappe/core/doctype/file/file.py:649 +msgid "File name cannot have {0}" +msgstr "" + +#: frappe/utils/csvutils.py:28 +msgid "File not attached" +msgstr "" + +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 +#: frappe/utils/file_manager.py:221 +msgid "File size exceeded the maximum allowed size of {0} MB" +msgstr "" + +#: frappe/public/js/frappe/request.js:198 +msgid "File too big" +msgstr "" + +#: frappe/core/doctype/file/file.py:390 +msgid "File type of {0} is not allowed" +msgstr "" + +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 +msgid "File {0} does not exist" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Label of the files_tab (Tab Break) field in DocType 'System Settings' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Files" +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.js:8 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: frappe/desk/doctype/number_card/number_card.js: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:969 +#: frappe/public/js/frappe/ui/filters/filter_list.js:134 +#: frappe/website/doctype/web_form/web_form.js:197 +msgid "Filter" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.html:36 +msgid "Filter By" +msgstr "" + +#. Label of the filter_data (Section Break) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Filter Data" +msgstr "" + +#. Label of the filter_list (HTML) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Filter List" +msgstr "" + +#. Label of the filter_meta (Text) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Filter Meta" +msgstr "" + +#. Label of the filter_name (Data) field in DocType 'List Filter' +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/public/js/frappe/list/list_filter.js:33 +msgid "Filter Name" +msgstr "" + +#. Label of the filter_values (HTML) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Filter Values" +msgstr "" + +#: frappe/database/query.py:360 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:427 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 +msgid "Filter..." +msgstr "" + +#. Label of the filtered_by (Data) field in DocType 'Personal Data Deletion +#. Step' +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Filtered By" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:33 +msgid "Filtered Records" +msgstr "" + +#: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 +msgid "Filtered by \"{0}\"" +msgstr "" + +#. Label of the filters (Code) field in DocType 'Access Log' +#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report' +#. Label of the filters (Small Text) field in DocType 'Prepared Report' +#. Label of the filters_section (Section Break) field in DocType 'Report' +#. Label of the filters (Table) field in DocType 'Report' +#. Label of the filters_section (Section Break) field in DocType 'Dashboard +#. Chart' +#. Label of the filters (Code) field in DocType 'Kanban Board' +#. Label of the filters (Long Text) field in DocType 'List Filter' +#. Label of the filters (Text) field in DocType 'Auto Email Report' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/notification/notification.json +msgid "Filters" +msgstr "" + +#. Label of the filters_config (Code) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Filters Configuration" +msgstr "" + +#. Label of the filters_display (HTML) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Filters Display" +msgstr "" + +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + +#. Label of the filters_json (Code) field in DocType 'Dashboard Chart' +#. Label of the filters_json (Code) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Filters JSON" +msgstr "" + +#. Label of the filters_section (Section Break) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Filters Section" +msgstr "" + +#: frappe/public/js/frappe/form/controls/link.js:514 +msgid "Filters applied for {0}" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 +msgid "Filters saved" +msgstr "" + +#. Description of the 'Script' (Code) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Filters will be accessible via filters.

    Send output as result = [result], or for old style data = [columns], [result]" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:133 +msgid "Filters {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1429 +msgid "Filters:" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 +msgid "Find '{0}' in ..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 +msgid "Find {0} in {1}" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Finished" +msgstr "" + +#. Label of the report_end_time (Datetime) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Finished At" +msgstr "" + +#. Label of the first_day_of_the_week (Select) field in DocType 'Language' +#. Label of the first_day_of_the_week (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "First Day of the Week" +msgstr "" + +#. Label of the first_name (Data) field in DocType 'Contact' +#. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 +msgid "First Name" +msgstr "" + +#. Label of the first_success_message (Data) field in DocType 'Success Action' +#: frappe/core/doctype/success_action/success_action.json +msgid "First Success Message" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:185 +msgid "First data column must be blank." +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:7 +msgid "First set the name and save the record." +msgstr "" + +#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:304 +msgid "Fit" +msgstr "" + +#. Label of the flag (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +msgid "Flag" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Float" +msgstr "" + +#. Label of the float_precision (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Float Precision" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Fold" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1451 +msgid "Fold can not be at the end of the form" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1449 +msgid "Fold must come before a Section Break" +msgstr "" + +#. Label of the folder (Link) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Folder" +msgstr "" + +#. Label of the folder_name (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "Folder Name" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:100 +msgid "Folder name should not include '/' (slash)" +msgstr "" + +#: frappe/core/doctype/file/file.py:497 +msgid "Folder {0} is not empty" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Folio" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:106 +#: frappe/public/js/frappe/form/toolbar.js:879 +msgid "Follow" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:101 +msgid "Followed by" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 +msgid "Following Report Filters have missing values:" +msgstr "" + +#: frappe/desk/form/document_follow.py:63 +msgid "Following document {0}" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:108 +msgid "Following fields are missing:" +msgstr "" + +#: frappe/public/js/frappe/ui/field_group.js:139 +msgid "Following fields have invalid values:" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:358 +msgid "Following fields have missing values" +msgstr "" + +#: frappe/public/js/frappe/ui/field_group.js:126 +msgid "Following fields have missing values:" +msgstr "" + +#. Label of the font (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Font" +msgstr "" + +#. Label of the font_properties (Data) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Font Properties" +msgstr "" + +#. Label of the font_size (Int) field in DocType 'Print Format' +#. Label of the font_size (Float) field in DocType 'Print Settings' +#. Label of the font_size (Data) field in DocType 'Website Theme' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:45 +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Font Size" +msgstr "" + +#. Label of the section_break_8 (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Fonts" +msgstr "" + +#. Label of the set_footer (Section Break) field in DocType 'Email Account' +#. Label of the footer_section (Section Break) field in DocType 'Letter Head' +#. Label of the footer (Text Editor) field in DocType 'About Us Settings' +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#. Label of the footer_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer" +msgstr "" + +#. Label of the footer_powered (Small Text) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer \"Powered By\"" +msgstr "" + +#. Label of the footer_source (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer Based On" +msgstr "" + +#. Label of the footer (Text Editor) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Footer Content" +msgstr "" + +#. Label of the footer_details_section (Section Break) field in DocType +#. 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer Details" +msgstr "" + +#. Label of the footer (HTML Editor) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer HTML" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:81 +msgid "Footer HTML set from attachment {0}" +msgstr "" + +#. Label of the footer_image_section (Section Break) field in DocType 'Letter +#. Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer Image" +msgstr "" + +#. Label of the footer (Section Break) field in DocType 'Website Settings' +#. Label of the footer_items (Table) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer Items" +msgstr "" + +#. Label of the footer_logo (Attach Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer Logo" +msgstr "" + +#. Label of the footer_script (Code) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer Script" +msgstr "" + +#. Label of the footer_template (Link) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer Template" +msgstr "" + +#. Label of the footer_template_values (Code) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer Template Values" +msgstr "" + +#: frappe/printing/page/print/print.js:129 +msgid "Footer might not be visible as {0} option is disabled" +msgstr "" + +#. Description of the 'Footer HTML' (HTML Editor) field in DocType 'Letter +#. Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer will display correctly only in PDF" +msgstr "" + +#. Label of the for_doctype (Link) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "For DocType" +msgstr "" + +#. Description of the 'Row Name' (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "For DocType Link / DocType Action" +msgstr "" + +#. Label of the for_document (Dynamic Link) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "For Document" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:155 +msgid "For Document Type" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:566 +msgid "For Example: {} Open" +msgstr "" + +#. Description of the 'Options' (Small Text) field in DocType 'DocField' +#. Description of the 'Options' (Small Text) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "For Links, enter the DocType as range.\n" +"For Select, enter list of Options, each on a new line." +msgstr "" + +#. Label of the for_user (Link) field in DocType 'List Filter' +#. Label of the for_user (Link) field in DocType 'Notification Log' +#. Label of the for_user (Data) field in DocType 'Workspace' +#: frappe/core/doctype/user_permission/user_permission_list.js:10 +#: frappe/core/doctype/user_permission/user_permission_list.js:148 +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/workspace/workspace.json +msgid "For User" +msgstr "" + +#. Label of the for_value (Dynamic Link) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "For Value" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 +msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:19 +msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment." +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:162 +msgid "For example:" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:752 +msgid "For example: If you want to include the document ID, use {0}" +msgstr "" + +#. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "For example: {} Open" +msgstr "" + +#. Description of the 'Client script' (Code) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "For help see Client Script API and Examples" +msgstr "" + +#: frappe/integrations/doctype/google_settings/google_settings.js:7 +msgid "For more information, {0}." +msgstr "" + +#. Description of the 'Email To' (Small Text) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "For multiple addresses, enter the address on different line. e.g. test@test.com ⏎ test1@test.com" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:197 +msgid "For updating, you can update only selective columns." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1765 +msgid "For {0} at level {1} in {2} in row {3}" +msgstr "" + +#. Label of the force (Check) field in DocType 'Package Import' +#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth +#. Provider Settings' +#: frappe/core/doctype/package_import/package_import.json +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +msgid "Force" +msgstr "" + +#. Label of the force_re_route_to_default_view (Check) field in DocType +#. 'DocType' +#. Label of the force_re_route_to_default_view (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Force Re-route to Default View" +msgstr "" + +#. Label of the force_show (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Force Show" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.js:13 +msgid "Force Stop job" +msgstr "" + +#. Label of the force_user_to_reset_password (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Force User to Reset Password" +msgstr "" + +#. Label of the force_web_capture_mode_for_uploads (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Force Web Capture Mode for Uploads" +msgstr "" + +#: frappe/www/login.html:37 +msgid "Forgot Password?" +msgstr "" + +#. Label of the form_builder_tab (Tab Break) field in DocType 'DocType' +#. Option for the 'Apply To' (Select) field in DocType 'Client Script' +#. Label of the form_tab (Tab Break) field in DocType 'Customize Form' +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Label of the form_tab (Tab Break) field in DocType 'Web Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/printing/page/print/print.js:96 +#: frappe/website/doctype/web_form/web_form.json +msgid "Form" +msgstr "" + +#. Label of the form_builder (HTML) field in DocType 'DocType' +#. Label of the form_builder (HTML) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Form Builder" +msgstr "" + +#. Label of the form_dict (Code) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Form Dict" +msgstr "" + +#. Label of the form_settings_section (Section Break) field in DocType +#. 'DocType' +#. Label of the form_settings_section (Section Break) field in DocType 'User' +#. Label of the form_settings_section (Section Break) field in DocType +#. 'Customize Form' +#. Label of the form_settings_section (Section Break) field in DocType 'Web +#. Form' +#: frappe/core/doctype/doctype/doctype.json frappe/core/doctype/user/user.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Form Settings" +msgstr "" + +#. Name of a DocType +#. Label of the form_tour (Link) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Form Tour" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Form Tour Step" +msgstr "" + +#. Option for the 'Request Structure' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Form URL-Encoded" +msgstr "" + +#. Label of the format (Data) field in DocType 'Workspace Shortcut' +#. Label of the format (Select) field in DocType 'Auto Email Report' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:565 +msgid "Format" +msgstr "" + +#. Label of the format_data (Code) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Format Data" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:70 +msgid "Forward" +msgstr "" + +#. Label of the forward_to_email (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Forward To Email Address" +msgstr "" + +#. Label of the fraction (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Fraction" +msgstr "" + +#. Label of the fraction_units (Int) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Fraction Units" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/www/login.html:64 frappe/www/login.html:162 frappe/www/login.py:53 +#: frappe/www/login.py:153 +msgid "Frappe" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 +msgid "Frappe Framework" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:59 +msgid "Frappe Light" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Frappe Mail" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:547 +msgid "Frappe Mail OAuth Error" +msgstr "" + +#. Label of the frappe_mail_site (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Frappe Mail Site" +msgstr "" + +#. Label of a standard help item +#. Type: Route +#: frappe/hooks.py +msgid "Frappe Support" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Frappe page builder using components" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:112 +msgctxt "Image Cropper" +msgid "Free" +msgstr "" + +#. Label of the frequency (Select) field in DocType 'Auto Repeat' +#. Label of the frequency (Select) field in DocType 'Scheduled Job Type' +#. Label of the document_follow_frequency (Select) field in DocType 'User' +#. Label of the frequency (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:5 +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:395 +msgid "Frequency" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the friday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Friday" +msgstr "" + +#. Label of the sender (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/permission_log/permission_log.js:12 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:70 +msgid "From" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:197 +msgctxt "Email Sender" +msgid "From" +msgstr "" + +#. Label of the from_date (Date) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/report/website_analytics/website_analytics.js:8 +msgid "From Date" +msgstr "" + +#. Label of the from_date_field (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "From Date Field" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1848 +msgid "From Document Type" +msgstr "" + +#. Label of the sender_full_name (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "From Full Name" +msgstr "" + +#. Label of the from_user (Link) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "From User" +msgstr "" + +#: frappe/public/js/frappe/utils/diffview.js:31 +msgid "From version" +msgstr "" + +#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Full" +msgstr "" + +#. Label of the full_name (Data) field in DocType 'Contact' +#. Label of the full_name (Data) field in DocType 'Activity Log' +#. Label of the full_name (Data) field in DocType 'User' +#. Label of the full_name (Data) field in DocType 'About Us Team Member' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:479 +#: frappe/templates/signup.html:4 +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +msgid "Full Name" +msgstr "" + +#: frappe/printing/page/print/print.js:80 +#: frappe/public/js/frappe/form/templates/print_layout.html:42 +msgid "Full Page" +msgstr "" + +#. Label of the full_width (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Full Width" +msgstr "" + +#. Label of the function (Select) field in DocType 'Number Card' +#. Label of the report_function (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/views/reports/query_report.js:246 +#: frappe/public/js/frappe/widgets/widget_dialog.js:699 +msgid "Function" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:706 +msgid "Function Based On" +msgstr "" + +#: frappe/__init__.py:466 +msgid "Function {0} is not whitelisted." +msgstr "" + +#: frappe/database/query.py:1419 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:419 +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:291 +msgid "Fw: {0}" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "GET" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "GMail" +msgstr "" + +#. Option for the 'License Type' (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "GNU Affero General Public License" +msgstr "" + +#. Option for the 'License Type' (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "GNU General Public License" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/public/js/frappe/views/gantt/gantt_view.js:10 +msgid "Gantt" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:205 +msgid "Gantt View" +msgstr "" + +#. Label of the gender (Link) field in DocType 'Contact' +#. Name of a DocType +#. Label of the gender (Data) field in DocType 'Gender' +#. Label of the gender (Link) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/gender/gender.json +#: frappe/core/doctype/user/user.json +msgid "Gender" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:32 +msgid "Genderqueer" +msgstr "" + +#: frappe/www/contact.html:29 +msgid "General" +msgstr "" + +#. Label of the generate_keys (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Generate Keys" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:882 +msgid "Generate New Report" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:394 +msgid "Generate Random Password" +msgstr "" + +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1827 +msgid "Generate Tracking URL" +msgstr "" + +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Geoapify" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Geolocation" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Geolocation Settings" +msgstr "" + +#: frappe/email/doctype/notification/notification.js:226 +msgid "Get Alerts for Today" +msgstr "" + +#: frappe/desk/page/backups/backups.js:21 +msgid "Get Backup Encryption Key" +msgstr "" + +#. Label of the get_contacts (Button) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Get Contacts" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:93 +msgid "Get Fields" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:32 +msgid "Get Header and Footer wkhtmltopdf variables" +msgstr "" + +#: frappe/public/js/frappe/form/multi_select_dialog.js:86 +msgid "Get Items" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.js:6 +msgid "Get OpenID Configuration" +msgstr "" + +#: frappe/www/printview.html:22 +msgid "Get PDF" +msgstr "" + +#. Description of the 'Try a Naming Series' (Data) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Get a preview of generated names with a series." +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.js:305 +msgid "Get more insights with" +msgstr "" + +#. Description of the 'Email Threads on Assigned Document' (Check) field in +#. DocType 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Get notified when an email is received on any of the documents assigned to you." +msgstr "" + +#. Description of the 'User Image' (Attach Image) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Get your globally recognized avatar from Gravatar.com" +msgstr "" + +#. Label of the git_branch (Data) field in DocType 'Installed Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Git Branch" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "GitHub" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Github flavoured markdown syntax" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json +msgid "Global Search DocType" +msgstr "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.js:24 +msgid "Global Search Document Types Reset." +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/global_search_settings/global_search_settings.json +msgid "Global Search Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:122 +msgid "Global Shortcuts" +msgstr "" + +#. Label of the global_unsubscribe (Check) field in DocType 'Email Unsubscribe' +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +msgid "Global Unsubscribe" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:843 +msgid "Go" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:241 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:321 +msgid "Go Back" +msgstr "" + +#: frappe/desk/doctype/notification_settings/notification_settings.js:17 +msgid "Go to Notification Settings List" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Go to Page" +msgstr "" + +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:41 +msgid "Go to Workflow" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.js:18 +msgid "Go to Workspace" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:144 +msgid "Go to next record" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:154 +msgid "Go to previous record" +msgstr "" + +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:53 +msgid "Go to the document" +msgstr "" + +#. Description of the 'Success URL' (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Go to this URL after completing the form" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.js:54 +#: frappe/custom/doctype/client_script/client_script.js:12 +msgid "Go to {0}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:92 +#: frappe/core/doctype/doctype/doctype.js:55 +#: frappe/custom/doctype/customize_form/customize_form.js:104 +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:42 +#: frappe/workflow/doctype/workflow/workflow.js:44 +msgid "Go to {0} List" +msgstr "" + +#: frappe/core/doctype/page/page.js:11 +msgid "Go to {0} Page" +msgstr "" + +#: frappe/utils/goal.py:115 frappe/utils/goal.py:122 +msgid "Goal" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Google" +msgstr "" + +#. Label of the google_analytics_id (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Google Analytics ID" +msgstr "" + +#. Label of the google_analytics_anonymize_ip (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Google Analytics anonymise IP" +msgstr "" + +#. Label of the sb_00 (Section Break) field in DocType 'Event' +#. Label of the google_calendar (Link) field in DocType 'Event' +#. Name of a DocType +#. Label of the sb_00 (Section Break) field in DocType 'Google Calendar' +#. Label of a Link in the Integrations Workspace +#: frappe/desk/doctype/event/event.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Calendar" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:266 +msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:610 +msgid "Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:305 +msgid "Google Calendar - Could not fetch event from Google Calendar, error code {0}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:252 +msgid "Google Calendar - Could not find Calendar for {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:232 +msgid "Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:496 +msgid "Google Calendar - Could not insert event in Google Calendar {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:580 +msgid "Google Calendar - Could not update Event {0} in Google Calendar, error code {1}." +msgstr "" + +#. Label of the google_calendar_event_id (Data) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Google Calendar Event ID" +msgstr "" + +#. Label of the google_calendar_id (Data) field in DocType 'Event' +#. Label of the google_calendar_id (Data) field in DocType 'Google Calendar' +#: frappe/desk/doctype/event/event.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Google Calendar ID" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:181 +msgid "Google Calendar has been configured." +msgstr "" + +#. Label of the sb_00 (Section Break) field in DocType 'Contact' +#. Label of the google_contacts (Link) field in DocType 'Contact' +#. Name of a DocType +#. Label of the sb_00 (Section Break) field in DocType 'Google Contacts' +#. Label of a Link in the Integrations Workspace +#: frappe/contacts/doctype/contact/contact.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Contacts" +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:137 +msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:294 +msgid "Google Contacts - Could not update contact in Google Contacts {0}, error code {1}." +msgstr "" + +#. Label of the google_contacts_id (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Google Contacts Id" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 +msgid "Google Drive" +msgstr "" + +#. Label of the section_break_7 (Section Break) field in DocType 'Google +#. Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "Google Drive Picker" +msgstr "" + +#. Label of the google_drive_picker_enabled (Check) field in DocType 'Google +#. Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "Google Drive Picker Enabled" +msgstr "" + +#. Label of the font (Data) field in DocType 'Print Format' +#. Label of the google_font (Data) field in DocType 'Website Theme' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:28 +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Google Font" +msgstr "" + +#. Label of the google_meet_link (Small Text) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Google Meet Link" +msgstr "" + +#. Label of a Card Break in the Integrations Workspace +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Services" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Settings" +msgstr "" + +#: frappe/utils/csvutils.py:226 +msgid "Google Sheets URL is invalid or not publicly accessible." +msgstr "" + +#: frappe/utils/csvutils.py:231 +msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." +msgstr "" + +#. Label of the grant_type (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Grant Type" +msgstr "" + +#: frappe/public/js/frappe/form/dashboard.js:34 +#: frappe/public/js/frappe/form/templates/form_dashboard.html:10 +msgid "Graph" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Gray" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:23 +msgid "Greater Than" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:25 +msgid "Greater Than Or Equal To" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Green" +msgstr "" + +#: frappe/public/js/form_builder/components/controls/TableControl.vue:53 +msgid "Grid Empty State" +msgstr "" + +#. Label of the grid_page_length (Int) field in DocType 'DocType' +#. Label of the grid_page_length (Int) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Grid Page Length" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:127 +msgid "Grid Shortcuts" +msgstr "" + +#. Label of the group (Data) field in DocType 'DocType Action' +#. Label of the group (Data) field in DocType 'DocType Link' +#. Label of the group (Data) field in DocType 'Website Sidebar Item' +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Group" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/report/website_analytics/website_analytics.js:32 +msgid "Group By" +msgstr "" + +#. Label of the group_by_based_on (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Group By Based On" +msgstr "" + +#. Label of the group_by_type (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Group By Type" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408 +msgid "Group By field is required to create a dashboard chart" +msgstr "" + +#: frappe/database/query.py:752 +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 "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Group your custom doctypes under modules" +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 +msgid "Grouped by {0}" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "HEAD" +msgstr "" + +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "HERE" +msgstr "" + +#. Option for the 'Time Format' (Select) field in DocType 'Language' +#. Option for the 'Time Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "HH:mm" +msgstr "" + +#. Option for the 'Time Format' (Select) field in DocType 'Language' +#. Option for the 'Time Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "HH:mm:ss" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the html_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Message Type' (Select) field in DocType 'Notification' +#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter +#. Head' +#. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' +#. Label of the html (Code) field in DocType 'Print Format' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/print_format_builder/Field.vue:86 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json +msgid "HTML" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "HTML Editor" +msgstr "" + +#. Label of the page (HTML Editor) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "HTML Page" +msgstr "" + +#. Description of the 'Header' (HTML Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "HTML for header section. Optional" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "HTML with jinja support" +msgstr "" + +#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Half" +msgstr "" + +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Half Yearly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/public/js/frappe/utils/common.js:402 +msgid "Half-yearly" +msgstr "" + +#. Label of the handled_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Handled Emails" +msgstr "" + +#. Label of the has_attachment (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Has Attachment" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/has_domain/has_domain.json +msgid "Has Domain" +msgstr "" + +#. Label of the has_next_condition (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Has Next Condition" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/has_role/has_role.json +msgid "Has Role" +msgstr "" + +#. Label of the has_setup_wizard (Check) field in DocType 'Installed +#. Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Has Setup Wizard" +msgstr "" + +#. Label of the has_web_view (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Has Web View" +msgstr "" + +#: frappe/templates/signup.html:19 +msgid "Have an account? Login" +msgstr "" + +#. Label of the header (Check) field in DocType 'SMS Parameter' +#. Label of the header_section (Section Break) field in DocType 'Letter Head' +#. Label of the header (HTML Editor) field in DocType 'Web Page' +#. Label of the header (HTML Editor) field in DocType 'Website Slideshow' +#: frappe/core/doctype/sms_parameter/sms_parameter.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Header" +msgstr "" + +#. Label of the content (HTML Editor) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Header HTML" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:69 +msgid "Header HTML set from attachment {0}" +msgstr "" + +#. Label of the header_script (Code) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Header Script" +msgstr "" + +#. Label of the sb2 (Section Break) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Header and Breadcrumbs" +msgstr "" + +#. Label of the section_break_38 (Tab Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Header, Robots" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "Header/Footer scripts can be used to add dynamic behaviours." +msgstr "" + +#. Label of the webhook_headers (Table) field in DocType 'Webhook' +#. Label of the headers (Code) field in DocType 'Webhook Request Log' +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Headers" +msgstr "" + +#: frappe/email/email_body.py:322 +msgid "Headers must be a dictionary" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the heading (Data) field in DocType 'Contact Us Settings' +#. Label of the heading (Data) field in DocType 'Website Slideshow Item' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:609 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "Heading" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Heatmap" +msgstr "" + +#: frappe/templates/emails/new_user.html:2 +msgid "Hello" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "" + +#. Label of the help_section (Section Break) field in DocType 'Server Script' +#. Label of the help (HTML) field in DocType 'Property Setter' +#: frappe/core/doctype/server_script/server_script.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/public/js/frappe/form/templates/form_sidebar.html:41 +#: frappe/public/js/frappe/form/workflow.js:23 +#: frappe/public/js/frappe/ui/toolbar/navbar.html:87 +#: frappe/public/js/frappe/utils/help.js:27 +msgid "Help" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/workspace/website/website.json +msgid "Help Article" +msgstr "" + +#. Label of the help_articles (Int) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json +msgid "Help Articles" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/workspace/website/website.json +msgid "Help Category" +msgstr "" + +#. Label of the help_dropdown (Table) field in DocType 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +#: frappe/public/js/frappe/ui/toolbar/navbar.html:84 +msgid "Help Dropdown" +msgstr "" + +#. Label of the help_html (HTML) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Help HTML" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:149 +msgid "Help on Search" +msgstr "" + +#. Description of the 'Content' (Text Editor) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Help: To link to another record in the system, use \"/app/note/[Note Name]\" as the Link URL. (don't use \"http://\")" +msgstr "" + +#. Label of the helpful (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Helpful" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Helvetica" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Helvetica Neue" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1824 +msgid "Here's your tracking URL" +msgstr "" + +#: frappe/www/qrcode.html:9 +msgid "Hi {0}" +msgstr "" + +#. Label of the hidden (Check) field in DocType 'DocField' +#. Label of the hidden (Check) field in DocType 'DocType Action' +#. Label of the hidden (Check) field in DocType 'DocType Link' +#. Label of the hidden (Check) field in DocType 'Navbar Item' +#. Label of the hidden (Check) field in DocType 'Custom Field' +#. Label of the hidden (Check) field in DocType 'Customize Form Field' +#. Label of the hidden (Check) field in DocType 'Desktop Icon' +#. Label of the hidden (Check) field in DocType 'Workspace Link' +#. Label of the hidden (Check) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:3 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Hidden" +msgstr "" + +#. Label of the section_break_13 (Section Break) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Hidden Fields" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1650 +msgid "Hidden columns include: {0}" +msgstr "" + +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/frappe/widgets/base_widget.js:46 +#: frappe/public/js/frappe/widgets/base_widget.js:178 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 +#: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 +msgid "Hide" +msgstr "" + +#. Label of the hide_block (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Hide Block" +msgstr "" + +#. Label of the hide_border (Check) field in DocType 'DocField' +#. Label of the hide_border (Check) field in DocType 'Custom Field' +#. Label of the hide_border (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Hide Border" +msgstr "" + +#. Label of the hide_buttons (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Hide Buttons" +msgstr "" + +#. Label of the allow_copy (Check) field in DocType 'DocType' +#. Label of the allow_copy (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Hide Copy" +msgstr "" + +#. Label of the hide_custom (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Hide Custom DocTypes and Reports" +msgstr "" + +#. Label of the hide_days (Check) field in DocType 'DocField' +#. Label of the hide_days (Check) field in DocType 'Custom Field' +#. Label of the hide_days (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Hide Days" +msgstr "" + +#. Label of the hide_descendants (Check) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_permission/user_permission_list.js:96 +msgid "Hide Descendants" +msgstr "" + +#. Label of the hide_empty_read_only_fields (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Hide Empty Read-Only Fields" +msgstr "" + +#: frappe/www/error.html:62 +msgid "Hide Error" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:488 +msgid "Hide Label" +msgstr "" + +#. Label of the hide_login (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Hide Login" +msgstr "" + +#: frappe/public/js/form_builder/form_builder.bundle.js:43 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 +msgid "Hide Preview" +msgstr "" + +#. Description of the 'Hide Buttons' (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Hide Previous, Next and Close button on highlight dialog." +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:94 +msgid "Hide Saved" +msgstr "" + +#. Label of the hide_seconds (Check) field in DocType 'DocField' +#. Label of the hide_seconds (Check) field in DocType 'Custom Field' +#. Label of the hide_seconds (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Hide Seconds" +msgstr "" + +#. Label of the hide_toolbar (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Hide Sidebar, Menu, and Comments" +msgstr "" + +#. Label of the hide_standard_menu (Check) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Hide Standard Menu" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1851 +msgid "Hide Tags" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:179 +msgid "Hide Weekends" +msgstr "" + +#. Description of the 'Hide Descendants' (Check) field in DocType 'User +#. Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "Hide descendant records of For Value." +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:285 +msgid "Hide details" +msgstr "" + +#. Label of the hide_footer (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Hide footer" +msgstr "" + +#. Label of the hide_footer_in_auto_email_reports (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Hide footer in auto email reports" +msgstr "" + +#. Label of the hide_footer_signup (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Hide footer signup" +msgstr "" + +#. Label of the hide_navbar (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Hide navbar" +msgstr "" + +#. Option for the 'Priority' (Select) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:225 +msgid "High" +msgstr "" + +#. Description of the 'Priority' (Int) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Higher priority rule will be applied first" +msgstr "" + +#. Label of the highlight (Text) field in DocType 'Company History' +#: frappe/website/doctype/company_history/company_history.json +msgid "Highlight" +msgstr "" + +#: frappe/www/update-password.html:301 +msgid "Hint: Include symbols, numbers and capital letters in the password" +msgstr "" + +#. Label of the home_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:38 +#: frappe/public/js/frappe/views/file/file_view.js:67 +#: frappe/public/js/frappe/views/file/file_view.js:88 +#: frappe/public/js/frappe/views/pageview.js:156 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:22 frappe/www/login.html:170 frappe/www/me.html:76 +#: frappe/www/message.html:29 +msgid "Home" +msgstr "" + +#. Label of the home_page (Data) field in DocType 'Role' +#. Label of the home_page (Data) field in DocType 'Website Settings' +#: frappe/core/doctype/role/role.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Home Page" +msgstr "" + +#. Label of the home_settings (Code) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Home Settings" +msgstr "" + +#: frappe/core/doctype/file/test_file.py:321 +#: frappe/core/doctype/file/test_file.py:323 +#: frappe/core/doctype/file/test_file.py:387 +msgid "Home/Test Folder 1" +msgstr "" + +#: frappe/core/doctype/file/test_file.py:376 +msgid "Home/Test Folder 1/Test Folder 3" +msgstr "" + +#: frappe/core/doctype/file/test_file.py:332 +msgid "Home/Test Folder 2" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Frequency' (Select) field in DocType 'User' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user.json +msgid "Hourly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Hourly Long" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Hourly Maintenance" +msgstr "" + +#. Description of the 'Password Reset Link Generation Limit' (Int) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Hourly rate limit for generating password reset links" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "" + +#. Description of the 'Number Format' (Select) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "How should this currency be formatted? If not set, will use system defaults" +msgstr "" + +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "" + +#. Paragraph text in the Welcome Workspace Workspace +#: frappe/core/workspace/welcome_workspace/welcome_workspace.json +msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
    " +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 +#: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 +#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 +#: frappe/public/js/frappe/data_import/data_exporter.js:330 +#: frappe/public/js/frappe/data_import/data_exporter.js:345 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 +#: frappe/public/js/frappe/model/meta.js:200 +#: frappe/public/js/frappe/model/model.js:122 +msgid "ID" +msgstr "" + +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 +msgctxt "Label of name column in report" +msgid "ID" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:169 +msgid "ID (name)" +msgstr "" + +#. Description of the 'Field Name' (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "ID (name) of the entity whose property is to be set" +msgstr "" + +#. Description of the 'Section ID' (Data) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "IDs must contain only alphanumeric characters, not contain spaces, and should be unique." +msgstr "" + +#. Label of the section_break_25 (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "IMAP Details" +msgstr "" + +#. Label of the imap_folder (Data) field in DocType 'Communication' +#. Label of the imap_folder (Table) field in DocType 'Email Account' +#. Name of a DocType +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "IMAP Folder" +msgstr "" + +#. Label of the ip_address (Data) field in DocType 'Activity Log' +#. Label of the ip_address (Data) field in DocType 'Comment' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +msgid "IP Address" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the icon (Data) field in DocType 'DocType' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the icon (Data) field in DocType 'Desktop Icon' +#. Label of the icon (Icon) field in DocType 'Workspace' +#. Label of the icon (Data) field in DocType 'Workspace Link' +#. Label of the icon (Data) field in DocType 'Workspace Shortcut' +#. Label of the icon (Data) field in DocType 'Social Login Key' +#. Label of the icon (Select) field in DocType 'Workflow State' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/public/js/frappe/views/workspace/workspace.js:458 +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Icon" +msgstr "" + +#. Description of the 'Icon' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Icon will appear on the button" +msgstr "" + +#. Label of the sb_identity_details (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Identity Details" +msgstr "" + +#. Label of the idx (Int) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Idx" +msgstr "" + +#. Description of the 'Apply Strict User Permissions' (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User" +msgstr "" + +#. Description of the 'Don't Override Status' (Check) field in DocType +#. 'Workflow' +#. Description of the 'Don't Override Status' (Check) field in DocType +#. 'Workflow Document State' +#: frappe/workflow/doctype/workflow/workflow.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "If Checked workflow status will not override status in list view" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1777 +#: 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 +msgid "If a Role does not have access at Level 0, then higher levels are meaningless." +msgstr "" + +#. Description of the 'Is Active' (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "If checked, all other workflows become inactive." +msgstr "" + +#. Description of the 'Show Absolute Values' (Check) field in DocType 'Print +#. Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "If checked, negative numeric values of Currency, Quantity or Count would be shown as positive" +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "If checked, users will not see the Confirm Access dialog." +msgstr "" + +#. Description of the 'Disabled' (Check) field in DocType 'Role' +#: frappe/core/doctype/role/role.json +msgid "If disabled, this role will be removed from all users." +msgstr "" + +#. Description of the 'Bypass Restricted IP Address Check If Two Factor Auth +#. Enabled' (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings" +msgstr "" + +#. Description of the 'Anonymous responses' (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "If enabled, all responses on the web form will be submitted anonymously" +msgstr "" + +#. Description of the 'Bypass restricted IP Address check If Two Factor Auth +#. Enabled' (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page" +msgstr "" + +#. Description of the 'Track Changes' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "If enabled, changes to the document are tracked and shown in timeline" +msgstr "" + +#. Description of the 'Track Views' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "If enabled, document views are tracked, this can happen multiple times" +msgstr "" + +#. Description of the 'Track Seen' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "If enabled, the document is marked as seen, the first time a user opens it" +msgstr "" + +#. Description of the 'Send System Notification' (Check) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "If enabled, the notification will show up in the notifications dropdown on the top right corner of the navigation bar." +msgstr "" + +#. Description of the 'Enable Password Policy' (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 1 being very weak and 4 being very strong." +msgstr "" + +#. Description of the 'Bypass Two Factor Auth for users who login from +#. restricted IP Address' (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth" +msgstr "" + +#. Description of the 'Notify Users On Every Login' (Check) field in DocType +#. 'Note' +#: frappe/desk/doctype/note/note.json +msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once." +msgstr "" + +#. Description of the 'Default Workspace' (Link) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "If left empty, the default workspace will be the last visited workspace" +msgstr "" + +#. Description of the 'Port' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "If non standard port (e.g. 587)" +msgstr "" + +#. Description of the 'Port' (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "If non standard port (e.g. 587). If on Google Cloud, try port 2525." +msgstr "" + +#. Description of the 'Port' (Data) field in DocType 'Email Account' +#. Description of the 'Port' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)" +msgstr "" + +#. Description of the 'Currency Precision' (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If not set, the currency precision will depend on number format" +msgstr "" + +#. Description of the 'Roles' (Table) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used." +msgstr "" + +#. Description of the 'User Type' (Link) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:38 +msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." +msgstr "" + +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType +#. 'DocField' +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom +#. Field' +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType +#. 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "If unchecked, the value will always be re-fetched on save." +msgstr "" + +#. Label of the if_owner (Check) field in DocType 'Custom DocPerm' +#. Label of the if_owner (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +msgid "If user is the owner" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:204 +msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:188 +msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:186 +msgid "If you are uploading new records, leave the \"name\" (ID) column blank." +msgstr "" + +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 +msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." +msgstr "" + +#. Description of the 'Parent Label' (Select) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "If you set this, this Item will come in a drop-down under the selected parent." +msgstr "" + +#: frappe/templates/emails/administrator_logged_in.html:3 +msgid "If you think this is unauthorized, please change the Administrator password." +msgstr "" + +#. Description of the 'Delimiter Options' (Data) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "If your CSV uses a different delimiter, add that character here, ensuring no spaces or additional characters are included." +msgstr "" + +#. Description of the 'Source Text' (Code) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "If your data is in HTML, please copy paste the exact HTML code with the tags." +msgstr "" + +#. Label of the ignore_user_permissions (Check) field in DocType 'DocField' +#. Label of the ignore_user_permissions (Check) field in DocType 'Custom Field' +#. Label of the ignore_user_permissions (Check) field in DocType 'Customize +#. Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Ignore User Permissions" +msgstr "" + +#. Label of the ignore_xss_filter (Check) field in DocType 'DocField' +#. Label of the ignore_xss_filter (Check) field in DocType 'Custom Field' +#. Label of the ignore_xss_filter (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Ignore XSS Filter" +msgstr "" + +#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email +#. Account' +#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Ignore attachments over this size" +msgstr "" + +#. Label of the ignored_apps (Table) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Ignored Apps" +msgstr "" + +#: frappe/model/workflow.py:202 +msgid "Illegal Document Status for {0}" +msgstr "" + +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 +msgid "Illegal SQL Query" +msgstr "" + +#: frappe/utils/jinja.py:127 +msgid "Illegal template" +msgstr "" + +#. Label of the image (Attach Image) field in DocType 'Contact' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter +#. Head' +#. Label of the image (Attach Image) field in DocType 'Letter Head' +#. Label of the footer_image (Attach Image) field in DocType 'Letter Head' +#. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' +#. Label of the meta_image (Attach Image) field in DocType 'Web Page' +#. Label of the image (Attach) field in DocType 'Website Slideshow Item' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "Image" +msgstr "" + +#. Label of the image_field (Data) field in DocType 'DocType' +#. Label of the image_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Image Field" +msgstr "" + +#. Label of the image_height (Float) field in DocType 'Letter Head' +#. Label of the footer_image_height (Float) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Image Height" +msgstr "" + +#. Label of the image_link (Attach) field in DocType 'About Us Team Member' +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +msgid "Image Link" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:208 +msgid "Image View" +msgstr "" + +#. Label of the image_width (Float) field in DocType 'Letter Head' +#. Label of the footer_image_width (Float) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Image Width" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1507 +msgid "Image field must be a valid fieldname" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1509 +msgid "Image field must be of type Attach Image" +msgstr "" + +#: frappe/core/doctype/file/utils.py:136 +msgid "Image link '{0}' is not valid" +msgstr "" + +#: frappe/core/doctype/file/file.js:108 +msgid "Image optimized" +msgstr "" + +#: frappe/core/doctype/file/utils.py:289 +msgid "Image: Corrupted Data Stream" +msgstr "" + +#: frappe/public/js/frappe/views/image/image_view.js:13 +msgid "Images" +msgstr "" + +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/user/user.js:372 +msgid "Impersonate" +msgstr "" + +#: frappe/core/doctype/user/user.js:399 +msgid "Impersonate as {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 +msgid "Impersonated by {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:21 +msgid "Impersonating {0}" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:56 +msgid "Implement `clear_old_logs` method to enable auto error clearing." +msgstr "" + +#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Implicit" +msgstr "" + +#. Label of the import (Check) field in DocType 'Custom DocPerm' +#. Label of the import (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/recorder/recorder_list.js:16 +#: frappe/email/doctype/email_group/email_group.js:31 +msgid "Import" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1913 +msgctxt "Button in list view menu" +msgid "Import" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Label of a shortcut in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Import Data" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.js:14 +msgid "Import Email From" +msgstr "" + +#. Label of the import_file (Attach) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import File" +msgstr "" + +#. Label of the import_warnings_section (Section Break) field in DocType 'Data +#. Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import File Errors and Warnings" +msgstr "" + +#. Label of the import_log_section (Section Break) field in DocType 'Data +#. Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Log" +msgstr "" + +#. Label of the import_log_preview (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Log Preview" +msgstr "" + +#. Label of the import_preview (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Preview" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:41 +msgid "Import Progress" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.js:8 +#: frappe/email/doctype/email_group/email_group.js:30 +msgid "Import Subscribers" +msgstr "" + +#. Label of the import_type (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Type" +msgstr "" + +#. Label of the import_warnings (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Warnings" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:117 +msgid "Import Zip" +msgstr "" + +#. Label of the google_sheets_url (Data) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import from Google Sheets" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:612 +msgid "Import template should be of type .csv, .xlsx or .xls" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:482 +msgid "Import template should contain a Header and atleast one row." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:165 +msgid "Import timed out, please re-try." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.py:68 +msgid "Importing {0} is not allowed." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.js:19 +msgid "Importing {0} of {1}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:35 +msgid "Importing {0} of {1}, {2}" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:20 +msgid "In" +msgstr "" + +#. Description of the 'Force User to Reset Password' (Int) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "In Days" +msgstr "" + +#. Label of the in_filter (Check) field in DocType 'DocField' +#. Label of the in_filter (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In Filter" +msgstr "" + +#. Label of the in_global_search (Check) field in DocType 'DocField' +#. Label of the in_global_search (Check) field in DocType 'Custom Field' +#. Label of the in_global_search (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In Global Search" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.js:88 +msgid "In Grid View" +msgstr "" + +#. Label of the in_standard_filter (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "In List Filter" +msgstr "" + +#. Label of the in_list_view (Check) field in DocType 'DocField' +#. Label of the in_list_view (Check) field in DocType 'Custom Field' +#. Label of the in_list_view (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.js:89 +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In List View" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:19 +msgid "In Minutes" +msgstr "" + +#. Label of the in_preview (Check) field in DocType 'DocField' +#. Label of the in_preview (Check) field in DocType 'Custom Field' +#. Label of the in_preview (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In Preview" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:42 +msgid "In Progress" +msgstr "" + +#: frappe/database/database.py:287 +msgid "In Read Only Mode" +msgstr "" + +#. Label of the in_reply_to (Link) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "In Reply To" +msgstr "" + +#. Label of the in_standard_filter (Check) field in DocType 'Custom Field' +#. Label of the in_standard_filter (Check) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In Standard Filter" +msgstr "" + +#. Description of the 'Font Size' (Float) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "In points. Default is 9." +msgstr "" + +#. Description of the 'Allow Login After Fail' (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "In seconds" +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:209 +msgid "Inactive" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/email/doctype/email_account/email_account_list.js:19 +msgid "Inbox" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_account/email_account.json +msgid "Inbox User" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:209 +msgid "Inbox View" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:110 +msgid "Include Disabled" +msgstr "" + +#. Label of the include_name_field (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Include Name Field" +msgstr "" + +#. Label of the navbar_search (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Include Search in Top Bar" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.js:61 +msgid "Include Theme from Apps" +msgstr "" + +#. Label of the attach_view_link (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Include Web View Link in Email" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 +msgid "Include filters" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1648 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1620 +msgid "Include indentation" +msgstr "" + +#: frappe/public/js/frappe/form/controls/password.js:106 +msgid "Include symbols, numbers and capital letters in the password" +msgstr "" + +#. Label of the incoming_popimap_tab (Tab Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Incoming" +msgstr "" + +#. Label of the mailbox_settings (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Incoming (POP/IMAP) Settings" +msgstr "" + +#. Label of the incoming_emails_last_7_days_column (Column Break) field in +#. DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Incoming Emails (Last 7 days)" +msgstr "" + +#. Label of the email_server (Data) field in DocType 'Email Account' +#. Label of the email_server (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Incoming Server" +msgstr "" + +#. Label of the mailbox_settings (Section Break) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Incoming Settings" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:32 +msgid "Incoming email account not correct" +msgstr "" + +#: frappe/model/virtual_doctype.py:79 frappe/model/virtual_doctype.py:92 +msgid "Incomplete Virtual Doctype Implementation" +msgstr "" + +#: frappe/auth.py:258 +msgid "Incomplete login details" +msgstr "" + +#: frappe/email/smtp.py:104 +msgid "Incorrect Configuration" +msgstr "" + +#: frappe/utils/csvutils.py:234 +msgid "Incorrect URL" +msgstr "" + +#: frappe/utils/password.py:100 +msgid "Incorrect User or Password" +msgstr "" + +#: frappe/twofactor.py:176 frappe/twofactor.py:188 +msgid "Incorrect Verification code" +msgstr "" + +#: frappe/model/document.py:1555 +msgid "Incorrect value in row {0}:" +msgstr "" + +#: frappe/model/document.py:1557 +msgid "Incorrect value:" +msgstr "" + +#. Label of the search_index (Check) field in DocType 'DocField' +#. Label of the index (Int) field in DocType 'Recorder Query' +#. Label of the search_index (Check) field in DocType 'Custom Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder_query/recorder_query.json +#: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 +#: frappe/public/js/frappe/model/meta.js:203 +#: frappe/public/js/frappe/model/model.js:124 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 +msgid "Index" +msgstr "" + +#. Label of the index_web_pages_for_search (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Index Web Pages for Search" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:132 +msgid "Index created successfully on column {0} of doctype {1}" +msgstr "" + +#. Label of the indexing_authorization_code (Data) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Indexing authorization code" +msgstr "" + +#. Label of the indexing_refresh_token (Data) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Indexing refresh token" +msgstr "" + +#. Label of the indicator (Select) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Indicator" +msgstr "" + +#. Label of the indicator_color (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Indicator Color" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:463 +msgid "Indicator color" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/core/doctype/comment/comment.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Info" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:144 +msgid "Info:" +msgstr "" + +#. Label of the initial_sync_count (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Initial Sync Count" +msgstr "" + +#. Option for the 'Database Engine' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "InnoDB" +msgstr "" + +#. Description of the 'New Role' (Data) field in DocType 'Role Replication' +#: frappe/core/doctype/role_replication/role_replication.json +msgid "Input existing role name if you would like to extend it with access of another role." +msgstr "" + +#: frappe/core/doctype/data_import/data_import_list.js:35 +msgid "Insert" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Insert Above" +msgstr "" + +#. Label of the insert_after (Select) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/public/js/frappe/views/reports/query_report.js:1893 +msgid "Insert After" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:251 +msgid "Insert After cannot be set as {0}" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:244 +msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Insert Below" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:395 +msgid "Insert Column Before {0}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/markdown_editor.js:82 +msgid "Insert Image in Markdown" +msgstr "" + +#. Option for the 'Import Type' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Insert New Records" +msgstr "" + +#. Label of the insert_style (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Insert Style" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 +msgid "Install {0} from Marketplace" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Installed Application" +msgstr "" + +#. Name of a DocType +#. Label of the installed_applications (Table) field in DocType 'Installed +#. Applications' +#: frappe/core/doctype/installed_applications/installed_applications.json +msgid "Installed Applications" +msgstr "" + +#: frappe/core/doctype/installed_applications/installed_applications.js:18 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Installed Apps" +msgstr "" + +#. Label of the instructions (HTML) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Instructions" +msgstr "" + +#: frappe/templates/includes/login/login.js:261 +msgid "Instructions Emailed" +msgstr "" + +#: frappe/permissions.py:840 +msgid "Insufficient Permission Level for {0}" +msgstr "" + +#: frappe/database/query.py:808 frappe/database/query.py:1054 +msgid "Insufficient Permission for {0}" +msgstr "" + +#: frappe/desk/reportview.py:361 +msgid "Insufficient Permissions for deleting Report" +msgstr "" + +#: frappe/desk/reportview.py:332 +msgid "Insufficient Permissions for editing Report" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:446 +msgid "Insufficient attachment limit" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Int" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Integration Request" +msgstr "" + +#. Group in User's connections +#. Name of a Workspace +#. Label of the integrations (Tab Break) field in DocType 'Website Settings' +#: frappe/core/doctype/user/user.json +#: frappe/integrations/workspace/integrations/integrations.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Integrations" +msgstr "" + +#. Description of the 'Delivery Status' (Select) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Integrations can use this field to set email delivery status" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Inter" +msgstr "" + +#. Label of the interest (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Interests" +msgstr "" + +#. Option for the 'Level' (Select) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Intermediate" +msgstr "" + +#: frappe/public/js/frappe/request.js:235 +msgid "Internal Server Error" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/docshare/docshare.json +msgid "Internal record of document shares" +msgstr "" + +#. Label of the intro_video_url (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Intro Video URL" +msgstr "" + +#. Description of the 'Company Introduction' (Text Editor) field in DocType +#. 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Introduce your company to the website visitor." +msgstr "" + +#. Label of the introduction_section (Section Break) field in DocType 'Contact +#. Us Settings' +#. Label of the introduction (Text Editor) field in DocType 'Contact Us +#. Settings' +#. Label of the introduction_text (Text Editor) field in DocType 'Web Form' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Introduction" +msgstr "" + +#. Description of the 'Introduction' (Text Editor) field in DocType 'Contact Us +#. Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Introductory information for the Contact Us Page" +msgstr "" + +#. Label of the introspection_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Introspection URI" +msgstr "" + +#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization +#. Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Invalid" +msgstr "" + +#: frappe/public/js/form_builder/utils.js:221 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 +msgid "Invalid \"depends_on\" expression" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:514 +msgid "Invalid \"depends_on\" expression set in filter {0}" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:210 +msgid "Invalid \"mandatory_depends_on\" expression" +msgstr "" + +#: frappe/utils/nestedset.py:178 +msgid "Invalid Action" +msgstr "" + +#: frappe/utils/csvutils.py:37 +msgid "Invalid CSV Format" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:111 +msgid "Invalid Code. Please try again." +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:91 +msgid "Invalid Condition: {}" +msgstr "" + +#: frappe/email/smtp.py:135 +msgid "Invalid Credentials" +msgstr "" + +#: frappe/utils/data.py:146 frappe/utils/data.py:309 +msgid "Invalid Date" +msgstr "" + +#: frappe/www/list.py:85 +msgid "Invalid DocType" +msgstr "" + +#: frappe/database/query.py:144 +msgid "Invalid DocType: {0}" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1273 +msgid "Invalid Fieldname" +msgstr "" + +#: frappe/core/doctype/file/file.py:221 +msgid "Invalid File URL" +msgstr "" + +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 +msgid "Invalid Filter" +msgstr "" + +#: frappe/public/js/form_builder/store.js:221 +msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" +msgstr "" + +#: frappe/utils/dashboard.py:61 +msgid "Invalid Filter Value" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.py:83 +msgid "Invalid Home Page" +msgstr "" + +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 +msgid "Invalid Link" +msgstr "" + +#: frappe/www/login.py:128 +msgid "Invalid Login Token" +msgstr "" + +#: frappe/templates/includes/login/login.js:290 +msgid "Invalid Login. Try again." +msgstr "" + +#: frappe/email/receive.py:112 frappe/email/receive.py:149 +msgid "Invalid Mail Server. Please rectify and try again." +msgstr "" + +#: frappe/model/naming.py:109 +msgid "Invalid Naming Series: {}" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.py:113 +#: frappe/core/doctype/rq_job/rq_job.py:122 +msgid "Invalid Operation" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 +msgid "Invalid Option" +msgstr "" + +#: frappe/email/smtp.py:103 +msgid "Invalid Outgoing Mail Server or Port: {0}" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 +msgid "Invalid Output Format" +msgstr "" + +#: frappe/model/base_document.py:134 +msgid "Invalid Override" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.py:202 +msgid "Invalid Parameters." +msgstr "" + +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 +msgid "Invalid Password" +msgstr "" + +#: frappe/utils/__init__.py:125 +msgid "Invalid Phone Number" +msgstr "" + +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/www/login.py:128 +msgid "Invalid Request" +msgstr "" + +#: frappe/desk/search.py:26 +msgid "Invalid Search Field {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1215 +msgid "Invalid Table Fieldname" +msgstr "" + +#: frappe/public/js/workflow_builder/store.js:192 +msgid "Invalid Transition" +msgstr "" + +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 +#: frappe/public/js/frappe/widgets/widget_dialog.js:602 +#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 +msgid "Invalid URL" +msgstr "" + +#: frappe/email/receive.py:157 +msgid "Invalid User Name or Support Password. Please rectify and try again." +msgstr "" + +#: frappe/public/js/frappe/ui/field_group.js:137 +msgid "Invalid Values" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:120 +msgid "Invalid Webhook Secret" +msgstr "" + +#: frappe/desk/reportview.py:187 +msgid "Invalid aggregate function" +msgstr "" + +#: frappe/database/query.py:1544 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1470 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1446 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:462 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:577 +msgid "Invalid characters in table name: {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:404 +msgid "Invalid column" +msgstr "" + +#: frappe/database/query.py:383 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:789 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1020 frappe/model/document.py:1034 +msgid "Invalid docstatus" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:229 +msgid "Invalid expression set in filter {0}" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:219 +msgid "Invalid expression set in filter {0} ({1})" +msgstr "" + +#: frappe/database/query.py:1303 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:736 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1622 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2241 +msgid "Invalid field name {0}" +msgstr "" + +#: frappe/database/query.py:670 +msgid "Invalid field type: {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1086 +msgid "Invalid fieldname '{0}' in autoname" +msgstr "" + +#: frappe/deprecation_dumpster.py:283 +msgid "Invalid file path: {0}" +msgstr "" + +#: frappe/database/query.py:366 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:452 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:201 +msgid "Invalid filter: {0}" +msgstr "" + +#: frappe/database/query.py:1424 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1385 +msgid "Invalid function dictionary format" +msgstr "" + +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "" + +#: frappe/desk/doctype/dashboard/dashboard.py:67 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 +msgid "Invalid json added in the custom options: {0}" +msgstr "" + +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 +msgid "Invalid name type (integer) for varchar name column" +msgstr "" + +#: frappe/model/naming.py:62 +msgid "Invalid naming series {}: dot (.) missing" +msgstr "" + +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:453 +msgid "Invalid or corrupted content for import" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.py:139 +msgid "Invalid redirect regex in row #{}: {}" +msgstr "" + +#: frappe/app.py:340 +msgid "Invalid request arguments" +msgstr "" + +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 +msgid "Invalid simple filter format: {0}" +msgstr "" + +#: frappe/database/query.py:343 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1491 +msgid "Invalid string literal format: {0}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:430 +msgid "Invalid template file for import" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.py:208 +msgid "Invalid token state! Check if the token has been created by the OAuth user." +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:165 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:336 +msgid "Invalid username or password" +msgstr "" + +#: frappe/model/naming.py:176 +msgid "Invalid value specified for UUID: {}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:253 +msgctxt "Error message in web form" +msgid "Invalid values for fields:" +msgstr "" + +#: frappe/printing/page/print/print.js:654 +msgid "Invalid wkhtmltopdf version" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1565 +msgid "Invalid {0} condition" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Inverse" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + +#: frappe/contacts/doctype/contact/contact.js:30 +msgid "Invite as User" +msgstr "" + +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:22 +msgid "Is" +msgstr "" + +#. Label of the is_active (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Is Active" +msgstr "" + +#. Label of the is_attachments_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Attachments Folder" +msgstr "" + +#. Label of the is_calendar_and_gantt (Check) field in DocType 'DocType' +#. Label of the is_calendar_and_gantt (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Is Calendar and Gantt" +msgstr "" + +#. Label of the istable (Check) field in DocType 'DocType' +#. Label of the is_child_table (Check) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:50 +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Is Child Table" +msgstr "" + +#. Label of the is_complete (Check) field in DocType 'Module Onboarding' +#. Label of the is_complete (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Complete" +msgstr "" + +#. Label of the is_completed (Check) field in DocType 'Email Flag Queue' +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Is Completed" +msgstr "" + +#. Label of the is_custom (Check) field in DocType 'Role' +#. Label of the is_custom (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "Is Custom" +msgstr "" + +#. Label of the is_custom_field (Check) field in DocType 'Customize Form Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Is Custom Field" +msgstr "" + +#. Label of the is_default (Check) field in DocType 'Address Template' +#. Label of the is_default (Check) field in DocType 'User Permission' +#. Label of the is_default (Check) field in DocType 'Dashboard' +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_permission/user_permission_list.js:69 +#: frappe/desk/doctype/dashboard/dashboard.json +msgid "Is Default" +msgstr "" + +#. Label of the is_dynamic_url (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Is Dynamic URL?" +msgstr "" + +#. Label of the is_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Folder" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:43 +msgid "Is Global" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "" + +#. Label of the is_hidden (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Is Hidden" +msgstr "" + +#. Label of the is_home_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Home Folder" +msgstr "" + +#. Label of the reqd (Check) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Is Mandatory Field" +msgstr "" + +#. Label of the is_optional_state (Check) field in DocType 'Workflow Document +#. State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Is Optional State" +msgstr "" + +#. Label of the is_primary (Check) field in DocType 'Contact Email' +#: frappe/contacts/doctype/contact_email/contact_email.json +msgid "Is Primary" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "" + +#. Label of the is_primary_contact (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 +msgid "Is Primary Contact" +msgstr "" + +#. Label of the is_primary_mobile_no (Check) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Is Primary Mobile" +msgstr "" + +#. Label of the is_primary_phone (Check) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Is Primary Phone" +msgstr "" + +#. Label of the is_private (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Private" +msgstr "" + +#. Label of the is_public (Check) field in DocType 'Dashboard Chart' +#. Label of the is_public (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Is Public" +msgstr "" + +#. Label of the is_published_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Is Published Field" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1516 +msgid "Is Published Field must be a valid fieldname" +msgstr "" + +#. Label of the is_query_report (Check) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:341 +msgid "Is Query Report" +msgstr "" + +#. Label of the is_remote_request (Check) field in DocType 'Integration +#. Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Is Remote Request?" +msgstr "" + +#. Label of the is_setup_complete (Check) field in DocType 'Installed +#. Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Is Setup Complete?" +msgstr "" + +#. Label of the issingle (Check) field in DocType 'DocType' +#. Label of the is_single (Check) field in DocType 'Onboarding Step' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:65 +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Single" +msgstr "" + +#. Label of the is_skipped (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Skipped" +msgstr "" + +#. Label of the is_spam (Check) field in DocType 'Email Rule' +#: frappe/email/doctype/email_rule/email_rule.json +msgid "Is Spam" +msgstr "" + +#. Label of the is_standard (Check) field in DocType 'Navbar Item' +#. Label of the is_standard (Select) field in DocType 'Report' +#. Label of the is_standard (Check) field in DocType 'User Type' +#. Label of the is_standard (Check) field in DocType 'Dashboard' +#. Label of the is_standard (Check) field in DocType 'Dashboard Chart' +#. Label of the is_standard (Check) field in DocType 'Form Tour' +#. Label of the is_standard (Check) field in DocType 'Number Card' +#. Label of the is_standard (Check) field in DocType 'Notification' +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/notification/notification.json +msgid "Is Standard" +msgstr "" + +#. Label of the is_submittable (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:40 +msgid "Is Submittable" +msgstr "" + +#. Label of the is_system_generated (Check) field in DocType 'Custom Field' +#. Label of the is_system_generated (Check) field in DocType 'Customize Form +#. Field' +#. Label of the is_system_generated (Check) field in DocType 'Property Setter' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Is System Generated" +msgstr "" + +#. Label of the istable (Check) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Is Table" +msgstr "" + +#. Label of the is_table_field (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Is Table Field" +msgstr "" + +#. Label of the is_tree (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Is Tree" +msgstr "" + +#. Label of the is_unique (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Is Unique" +msgstr "" + +#. Label of the is_virtual (Check) field in DocType 'DocType' +#. Label of the is_virtual (Check) field in DocType 'Custom Field' +#. Label of the is_virtual (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Is Virtual" +msgstr "" + +#. Label of the is_standard (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Is standard" +msgstr "" + +#: frappe/core/doctype/file/utils.py:157 frappe/utils/file_manager.py:311 +msgid "It is risky to delete this file: {0}. Please contact your System Manager." +msgstr "" + +#. Label of the item_label (Data) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Item Label" +msgstr "" + +#. Label of the item_type (Select) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Item Type" +msgstr "" + +#: frappe/utils/nestedset.py:229 +msgid "Item cannot be added to its own descendants" +msgstr "" + +#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "JS" +msgstr "" + +#. Label of the js_message (HTML) field in DocType 'Custom HTML Block' +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +msgid "JS Message" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the json (Code) field in DocType 'Report' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Request Structure' (Select) field in DocType 'Webhook' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report/report.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/integrations/doctype/webhook/webhook.json +msgid "JSON" +msgstr "" + +#. Label of the webhook_json (Code) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "JSON Request Body" +msgstr "" + +#: frappe/templates/signup.html:5 +msgid "Jane Doe" +msgstr "" + +#. Label of the js (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "JavaScript" +msgstr "" + +#. Description of the 'Javascript' (Code) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}" +msgstr "" + +#. Label of the javascript (Code) field in DocType 'Report' +#. Label of the javascript_section (Section Break) field in DocType 'Custom +#. HTML Block' +#. Label of the javascript (Code) field in DocType 'Web Page' +#. Label of the javascript (Code) field in DocType 'Website Script' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_script/website_script.json +msgid "Javascript" +msgstr "" + +#: frappe/www/login.html:74 +msgid "Javascript is disabled on your browser" +msgstr "" + +#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Jinja" +msgstr "" + +#. Label of the job_id (Data) field in DocType 'Prepared Report' +#. Label of the job_id (Data) field in DocType 'RQ Job' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job ID" +msgstr "" + +#. Label of the job_id (Link) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Job Id" +msgstr "" + +#. Label of the job_info_section (Section Break) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job Info" +msgstr "" + +#. Label of the job_name (Data) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job Name" +msgstr "" + +#. Label of the job_status_section (Section Break) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job Status" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.js:24 +msgid "Job Stopped Successfully" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.py:121 +msgid "Job is in {0} state and can't be cancelled" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.py:113 +msgid "Job is not running." +msgstr "" + +#: frappe/desk/doctype/event/event.js:55 +msgid "Join video conference with {0}" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 +msgid "Jump to field" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:17 +#: frappe/public/js/frappe/utils/number_systems.js:31 +#: frappe/public/js/frappe/utils/number_systems.js:53 +msgctxt "Number system" +msgid "K" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Kanban" +msgstr "" + +#. Name of a DocType +#. Label of the kanban_board (Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:511 +msgid "Kanban Board" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Kanban Board Column" +msgstr "" + +#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 +msgid "Kanban Board Name" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 +msgctxt "Button in kanban view menu" +msgid "Kanban Settings" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:206 +msgid "Kanban View" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Keep track of all update feeds" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/communication/communication.json +msgid "Keeps track of all communications" +msgstr "" + +#. Label of the defkey (Data) field in DocType 'DefaultValue' +#. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' +#. Label of the key (Data) field in DocType 'Query Parameters' +#. Label of the key (Data) field in DocType 'Webhook Data' +#. Label of the key (Small Text) field in DocType 'Webhook Header' +#. Label of the key (Data) field in DocType 'Website Meta Tag' +#: frappe/core/doctype/defaultvalue/defaultvalue.json +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/integrations/doctype/query_parameters/query_parameters.json +#: frappe/integrations/doctype/webhook_data/webhook_data.json +#: frappe/integrations/doctype/webhook_header/webhook_header.json +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json +msgid "Key" +msgstr "" + +#. Label of a standard help item +#. Type: Action +#: frappe/hooks.py frappe/public/js/frappe/ui/keyboard.js:130 +msgid "Keyboard Shortcuts" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Keycloak" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:37 +msgctxt "Number system" +msgid "Kh" +msgstr "" + +#. Label of a Card Break in the Website Workspace +#: frappe/website/doctype/help_article/help_article.py:80 +#: frappe/website/doctype/help_article/templates/help_article_list.html:2 +#: frappe/website/doctype/help_article/templates/help_article_list.html:11 +#: frappe/website/workspace/website/website.json +msgid "Knowledge Base" +msgstr "" + +#. Name of a role +#: frappe/website/doctype/help_article/help_article.json +msgid "Knowledge Base Contributor" +msgstr "" + +#. Name of a role +#: frappe/website/doctype/help_article/help_article.json +msgid "Knowledge Base Editor" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:27 +#: frappe/public/js/frappe/utils/number_systems.js:49 +msgctxt "Number system" +msgid "L" +msgstr "" + +#. Label of the ldap_auth_section (Section Break) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Auth" +msgstr "" + +#. Label of the ldap_custom_settings_section (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Custom Settings" +msgstr "" + +#. Label of the ldap_email_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Email Field" +msgstr "" + +#. Label of the ldap_first_name_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP First Name Field" +msgstr "" + +#. Label of the ldap_group (Data) field in DocType 'LDAP Group Mapping' +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgid "LDAP Group" +msgstr "" + +#. Label of the ldap_group_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Group Field" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgid "LDAP Group Mapping" +msgstr "" + +#. Label of the ldap_group_mappings_section (Section Break) field in DocType +#. 'LDAP Settings' +#. Label of the ldap_groups (Table) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Group Mappings" +msgstr "" + +#. Label of the ldap_group_member_attribute (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Group Member attribute" +msgstr "" + +#. Label of the ldap_last_name_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Last Name Field" +msgstr "" + +#. Label of the ldap_middle_name_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Middle Name Field" +msgstr "" + +#. Label of the ldap_mobile_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Mobile Field" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163 +msgid "LDAP Not Installed" +msgstr "" + +#. Label of the ldap_phone_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Phone Field" +msgstr "" + +#. Label of the ldap_search_string (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Search String" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:130 +msgid "LDAP Search String must be enclosed in '()' and needs to contian the user placeholder {0}, eg sAMAccountName={0}" +msgstr "" + +#. Label of the ldap_search_and_paths_section (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Search and Paths" +msgstr "" + +#. Label of the ldap_security (Section Break) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Security" +msgstr "" + +#. Label of the ldap_server_settings_section (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Server Settings" +msgstr "" + +#. Label of the ldap_server_url (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Server Url" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "LDAP Settings" +msgstr "" + +#. Label of the ldap_user_creation_and_mapping_section (Section Break) field in +#. DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP User Creation and Mapping" +msgstr "" + +#. Label of the ldap_username_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Username Field" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:309 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:426 +msgid "LDAP is not enabled." +msgstr "" + +#. Label of the ldap_search_path_group (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP search path for Groups" +msgstr "" + +#. Label of the ldap_search_path_user (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP search path for Users" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:102 +msgid "LDAP settings incorrect. validation response was: {0}" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Label of the label (Data) field in DocType 'DocField' +#. Label of the label (Data) field in DocType 'DocType Action' +#. Label of the label (Data) field in DocType 'Report Column' +#. Label of the label (Data) field in DocType 'Report Filter' +#. Label of the label (Data) field in DocType 'Custom Field' +#. Label of the label (Data) field in DocType 'Customize Form Field' +#. Label of the label (Data) field in DocType 'DocType Layout Field' +#. Label of the label (Data) field in DocType 'Desktop Icon' +#. Label of the label (Data) field in DocType 'Form Tour Step' +#. Label of the label (Data) field in DocType 'Number Card' +#. Label of the label (Data) field in DocType 'Workspace Chart' +#. Label of the label (Data) field in DocType 'Workspace Custom Block' +#. Label of the label (Data) field in DocType 'Workspace Link' +#. Label of the label (Data) field in DocType 'Workspace Number Card' +#. Label of the label (Data) field in DocType 'Workspace Quick List' +#. Label of the label (Data) field in DocType 'Workspace Shortcut' +#. Label of the label (Data) field in DocType 'Top Bar Item' +#. Label of the label (Data) field in DocType 'Web Template Field' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/workspace_chart/workspace_chart.json +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:474 +#: frappe/public/js/form_builder/components/Field.vue:208 +#: frappe/public/js/frappe/widgets/widget_dialog.js:183 +#: frappe/public/js/frappe/widgets/widget_dialog.js:251 +#: frappe/public/js/frappe/widgets/widget_dialog.js:313 +#: frappe/public/js/frappe/widgets/widget_dialog.js:466 +#: frappe/public/js/frappe/widgets/widget_dialog.js:643 +#: frappe/public/js/frappe/widgets/widget_dialog.js:676 +#: frappe/public/js/print_format_builder/Field.vue:18 +#: frappe/templates/form_grid/fields.html:37 +#: frappe/website/doctype/top_bar_item/top_bar_item.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Label" +msgstr "" + +#. Label of the label_help (HTML) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Label Help" +msgstr "" + +#. Label of the label_and_type (Section Break) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Label and Type" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:145 +msgid "Label is mandatory" +msgstr "" + +#. Label of the sb0 (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Landing Page" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:23 +msgid "Landscape" +msgstr "" + +#. Name of a DocType +#. Label of the language (Link) field in DocType 'System Settings' +#. Label of the language (Link) field in DocType 'Translation' +#. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 +#: frappe/public/js/frappe/form/templates/print_layout.html:11 +msgid "Language" +msgstr "" + +#. Label of the language_code (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +msgid "Language Code" +msgstr "" + +#. Label of the language_name (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +msgid "Language Name" +msgstr "" + +#. Label of the last_10_active_users (Code) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Last 10 active users" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:628 +msgid "Last 14 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:632 +msgid "Last 30 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:652 +msgid "Last 6 Months" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:624 +msgid "Last 7 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:636 +msgid "Last 90 Days" +msgstr "" + +#. Label of the last_active (Datetime) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Active" +msgstr "" + +#. Label of the last_execution (Datetime) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Last Execution" +msgstr "" + +#. Label of the last_heartbeat (Datetime) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Last Heartbeat" +msgstr "" + +#. Label of the last_ip (Read Only) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last IP" +msgstr "" + +#. Label of the last_known_versions (Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Known Versions" +msgstr "" + +#. Label of the last_login (Read Only) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Login" +msgstr "" + +#: frappe/email/doctype/notification/notification.js:32 +msgid "Last Modified Date" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:242 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:480 +msgid "Last Modified On" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:644 +msgid "Last Month" +msgstr "" + +#. Label of the last_name (Data) field in DocType 'Contact' +#. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 +msgid "Last Name" +msgstr "" + +#. Label of the last_password_reset_date (Date) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Password Reset Date" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:648 +msgid "Last Quarter" +msgstr "" + +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" + +#. Label of the last_reset_password_key_generated_on (Datetime) field in +#. DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Reset Password Key Generated On" +msgstr "" + +#. Label of the datetime_last_run (Datetime) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Last Run" +msgstr "" + +#. Label of the last_sync_on (Datetime) field in DocType 'Google Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Last Sync On" +msgstr "" + +#. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Last Synced On" +msgstr "" + +#: frappe/model/meta.py:57 frappe/public/js/frappe/model/meta.js:205 +#: frappe/public/js/frappe/model/model.js:130 +msgid "Last Updated By" +msgstr "" + +#: frappe/model/meta.py:56 frappe/public/js/frappe/model/meta.js:204 +#: frappe/public/js/frappe/model/model.js:126 +msgid "Last Updated On" +msgstr "" + +#. Label of the last_user (Link) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Last User" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:640 +msgid "Last Week" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:656 +msgid "Last Year" +msgstr "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:753 +msgid "Last synced {0}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:194 +msgid "Layout Reset" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:186 +msgid "Layout will be reset to standard layout, are you sure you want to do this?" +msgstr "" + +#: frappe/website/web_template/section_with_features/section_with_features.html:26 +msgid "Learn more" +msgstr "" + +#. Description of the 'Repeat Till' (Date) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Leave blank to repeat always" +msgstr "" + +#: frappe/core/doctype/communication/mixins.py:207 +#: frappe/email/doctype/email_account/email_account.py:720 +msgid "Leave this conversation" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Ledger" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Align' (Select) field in DocType 'Letter Head' +#. Option for the 'Text Align' (Select) field in DocType 'Web Page' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Left" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:483 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:155 +msgctxt "alignment" +msgid "Left" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Left Bottom" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Left Center" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:58 +msgid "Left this conversation" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Legal" +msgstr "" + +#. Label of the length (Int) field in DocType 'DocField' +#. Label of the length (Int) field in DocType 'Custom Field' +#. Label of the length (Int) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Length" +msgstr "" + +#: frappe/public/js/frappe/ui/chart.js:11 +msgid "Length of passed data array is greater than value of maximum allowed label points!" +msgstr "" + +#: frappe/database/schema.py:138 +msgid "Length of {0} should be between 1 and 1000" +msgstr "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:729 +msgid "Less" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:24 +msgid "Less Than" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:26 +msgid "Less Than Or Equal To" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:434 +msgid "Let us continue with the onboarding" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/blocks/onboarding.js:94 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:597 +msgid "Let's Get Started" +msgstr "" + +#: frappe/utils/password_strength.py:111 +msgid "Let's avoid repeated words and characters" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:474 +msgid "Let's set up your account" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:263 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:304 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:375 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:414 +msgid "Let's take you back to onboarding" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Letter" +msgstr "" + +#. Label of the letter_head (Link) field in DocType 'Report' +#. Name of a DocType +#: frappe/core/doctype/report/report.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/page/print/print.js:140 +#: 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 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 +msgid "Letter Head" +msgstr "" + +#. Label of the source (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Letter Head Based On" +msgstr "" + +#. Label of the letter_head_image_section (Section Break) field in DocType +#. 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Letter Head Image" +msgstr "" + +#. Label of the letter_head_name (Data) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:198 +msgid "Letter Head Name" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "Letter Head Scripts" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:49 +msgid "Letter Head cannot be both disabled and default" +msgstr "" + +#. Description of the 'Header HTML' (HTML Editor) field in DocType 'Letter +#. Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Letter Head in HTML" +msgstr "" + +#. Label of the permlevel (Int) field in DocType 'Custom DocPerm' +#. Label of the permlevel (Int) field in DocType 'DocPerm' +#. Label of the level (Select) field in DocType 'Help Article' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/page/permission_manager/permission_manager.js:144 +#: frappe/core/page/permission_manager/permission_manager.js:220 +#: frappe/public/js/frappe/roles_editor.js:68 +#: frappe/website/doctype/help_article/help_article.json +msgid "Level" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:467 +msgid "Level 0 is for document level permissions, higher levels for field level permissions." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:94 +msgid "Library" +msgstr "" + +#. Label of the license (Markdown Editor) field in DocType 'Package' +#: frappe/core/doctype/package/package.json frappe/www/attribution.html:36 +msgid "License" +msgstr "" + +#. Label of the license_type (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "License Type" +msgstr "" + +#. Option for the 'Desk Theme' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Light" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Light Blue" +msgstr "" + +#. Label of the light_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Light Color" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:60 +msgid "Light Theme" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/ui/filters/filter.js:18 +msgid "Like" +msgstr "" + +#: frappe/desk/like.py:92 +msgid "Liked" +msgstr "" + +#: frappe/model/meta.py:60 frappe/public/js/frappe/model/meta.js:208 +#: frappe/public/js/frappe/model/model.js:134 +msgid "Liked By" +msgstr "" + +#. Label of the likes (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Likes" +msgstr "" + +#. Label of the limit (Int) field in DocType 'Bulk Update' +#: frappe/desk/doctype/bulk_update/bulk_update.json +msgid "Limit" +msgstr "" + +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Line" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the link (Long Text) field in DocType 'Changelog Feed' +#. Label of the link (Small Text) field in DocType 'Desktop Icon' +#. Label of the link (Small Text) field in DocType 'Notification Log' +#. Option for the 'Type' (Select) field in DocType 'Workspace' +#. Option for the 'Type' (Select) field in DocType 'Workspace Link' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Link" +msgstr "" + +#. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Link Cards" +msgstr "" + +#. Label of the link_count (Int) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Link Count" +msgstr "" + +#. Label of the link_details_section (Section Break) field in DocType +#. 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Link Details" +msgstr "" + +#. Label of the link_doctype (Link) field in DocType 'Activity Log' +#. Label of the link_doctype (Link) field in DocType 'Communication Link' +#. Label of the link_doctype (Link) field in DocType 'DocType Link' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Link DocType" +msgstr "" + +#. Label of the link_doctype (Link) field in DocType 'Dynamic Link' +#: frappe/core/doctype/dynamic_link/dynamic_link.json +msgid "Link Document Type" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:406 +#: frappe/workflow/doctype/workflow_action/workflow_action.py:202 +msgid "Link Expired" +msgstr "" + +#. Label of the link_field_results_limit (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Link Field Results Limit" +msgstr "" + +#. Label of the link_fieldname (Data) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Link Fieldname" +msgstr "" + +#. Label of the link_filters (JSON) field in DocType 'DocField' +#. Label of the link_filters (JSON) field in DocType 'Custom Field' +#. Label of the link_filters (JSON) field in DocType 'Customize Form' +#. Label of the link_filters (JSON) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Link Filters" +msgstr "" + +#. Label of the link_name (Dynamic Link) field in DocType 'Activity Log' +#. Label of the link_name (Dynamic Link) field in DocType 'Communication Link' +#. Label of the link_name (Dynamic Link) field in DocType 'Dynamic Link' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json +msgid "Link Name" +msgstr "" + +#. Label of the link_title (Read Only) field in DocType 'Communication Link' +#. Label of the link_title (Read Only) field in DocType 'Dynamic Link' +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json +msgid "Link Title" +msgstr "" + +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace' +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Link' +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/views/workspace/workspace.js:418 +#: frappe/public/js/frappe/widgets/widget_dialog.js:281 +#: frappe/public/js/frappe/widgets/widget_dialog.js:427 +msgid "Link To" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:363 +msgid "Link To in Row" +msgstr "" + +#. Label of the link_type (Select) field in DocType 'Workspace' +#. Label of the link_type (Select) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/views/workspace/workspace.js:410 +#: frappe/public/js/frappe/widgets/widget_dialog.js:273 +msgid "Link Type" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:359 +msgid "Link Type in Row" +msgstr "" + +#: frappe/website/doctype/about_us_settings/about_us_settings.js:6 +msgid "Link for About Us Page is \"/about\"." +msgstr "" + +#. Description of the 'Home Page' (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Link that is the website home page. Standard Links (home, login, products, blog, about, contact)" +msgstr "" + +#. Description of the 'URL' (Data) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "Link to the page you want to open. Leave blank if you want to make it a group parent." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +msgid "Linked" +msgstr "" + +#: frappe/public/js/frappe/form/linked_with.js:23 +msgid "Linked With" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +msgstr "" + +#. Label of the links (Table) field in DocType 'Address' +#. Label of the links (Table) field in DocType 'Contact' +#. Label of the links_section (Tab Break) field in DocType 'DocType' +#. Label of the links (Table) field in DocType 'Customize Form' +#. Label of the links (Table) field in DocType 'Event' +#. Label of the links (Table) field in DocType 'Workspace' +#: frappe/contacts/doctype/address/address.js:39 +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.js:92 +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/workspace/workspace.json +msgid "Links" +msgstr "" + +#. Option for the 'Apply To' (Select) field in DocType 'Client Script' +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/utils/utils.js:926 +msgid "List" +msgstr "" + +#. Label of the list__search_settings_section (Section Break) field in DocType +#. 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "List / Search Settings" +msgstr "" + +#. Label of the list_columns (Table) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "List Columns" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/list_filter/list_filter.json +msgid "List Filter" +msgstr "" + +#. Label of the list_settings_section (Section Break) field in DocType 'User' +#. Label of the section_break_8 (Section Break) field in DocType 'Customize +#. Form' +#. Label of the section_break_3 (Section Break) field in DocType 'Web Form' +#: frappe/core/doctype/user/user.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/website/doctype/web_form/web_form.json +msgid "List Settings" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1993 +msgctxt "Button in list view menu" +msgid "List Settings" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:202 +msgid "List View" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "List View Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:161 +msgid "List a document type" +msgstr "" + +#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Form' +#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Page' +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" +msgstr "" + +#. Description of the 'Send Notification to' (Small Text) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "List of email addresses, separated by comma or new line." +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/patch_log/patch_log.json +msgid "List of patches executed" +msgstr "" + +#. Label of the list_setting_message (HTML) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "List setting message" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 +msgid "Lists" +msgstr "" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Load Balancing" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 +#: frappe/website/doctype/help_article/templates/help_article_list.html:30 +msgid "Load More" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:215 +msgctxt "Form timeline" +msgid "Load More Communications" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45 +msgid "Load more" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:172 +#: frappe/public/js/frappe/form/controls/multicheck.js:13 +#: frappe/public/js/frappe/form/linked_with.js:13 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 +#: frappe/public/js/frappe/ui/listing.html:16 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 +msgid "Loading" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:107 +msgid "Loading Filters..." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:257 +msgid "Loading import file..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Loading versions..." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45 +#: frappe/public/js/frappe/form/sidebar/share.js:51 +#: frappe/public/js/frappe/list/list_sidebar.js:243 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 +#: frappe/public/js/frappe/views/kanban/kanban_board.html:11 +#: frappe/public/js/frappe/widgets/chart_widget.js:50 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:129 +msgid "Loading..." +msgstr "" + +#. Label of the location (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Location" +msgstr "" + +#. Label of the log (Code) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json +msgid "Log" +msgstr "" + +#. Label of the log_api_requests (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Log API Requests" +msgstr "" + +#. Label of the log_data_section (Section Break) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Log Data" +msgstr "" + +#. Label of the ref_doctype (Link) field in DocType 'Logs To Clear' +#: frappe/core/doctype/logs_to_clear/logs_to_clear.json +msgid "Log DocType" +msgstr "" + +#: frappe/templates/emails/login_with_email_link.html:27 +msgid "Log In To {0}" +msgstr "" + +#. Label of the log_index (Int) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import_log/data_import_log.json +msgid "Log Index" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/log_setting_user/log_setting_user.json +msgid "Log Setting User" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/log_settings/log_settings.json +#: frappe/public/js/frappe/logtypes.js:20 +msgid "Log Settings" +msgstr "" + +#: frappe/www/app.py:23 +msgid "Log in to access this page." +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +#: frappe/website/doctype/website_settings/website_settings.py:182 +msgid "Log out" +msgstr "" + +#: frappe/handler.py:119 +msgid "Logged Out" +msgstr "" + +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#. Label of the security_tab (Tab Break) field in DocType 'System Settings' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/public/js/frappe/web_form/webform_script.js:16 +#: frappe/templates/discussions/discussions_section.html:60 +#: frappe/templates/discussions/reply_section.html:44 +#: frappe/templates/includes/navbar/dropdown_login.html:15 +#: frappe/templates/includes/navbar/navbar_login.html:25 +#: frappe/website/page_renderers/not_permitted_page.py:24 +#: frappe/www/login.html:45 +msgid "Login" +msgstr "" + +#. Label of the login_after (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Login After" +msgstr "" + +#. Label of the login_before (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Login Before" +msgstr "" + +#: frappe/public/js/frappe/desk.js:256 +msgid "Login Failed please try again" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:144 +msgid "Login Id is required" +msgstr "" + +#. Label of the login_methods_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Login Methods" +msgstr "" + +#. Label of the misc_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Login Page" +msgstr "" + +#: frappe/www/login.py:156 +msgid "Login To {0}" +msgstr "" + +#: frappe/twofactor.py:260 +msgid "Login Verification Code from {}" +msgstr "" + +#: frappe/templates/emails/new_message.html:4 +msgid "Login and view in Browser" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:368 +msgid "Login is required to see web form list view. Enable {0} to see list settings" +msgstr "" + +#: frappe/templates/includes/login/login.js:69 +msgid "Login link sent to your email" +msgstr "" + +#: frappe/auth.py:342 frappe/auth.py:345 +msgid "Login not allowed at this time" +msgstr "" + +#. Label of the login_required (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Login required" +msgstr "" + +#: frappe/twofactor.py:164 +msgid "Login session expired, refresh page to retry" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:110 +msgid "Login to comment" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:6 +msgid "Login to start a new discussion" +msgstr "" + +#: frappe/www/login.html:64 +msgid "Login to {0}" +msgstr "" + +#: frappe/templates/includes/login/login.js:319 +msgid "Login token required" +msgstr "" + +#: frappe/www/login.html:126 frappe/www/login.html:210 +msgid "Login with Email Link" +msgstr "" + +#: frappe/www/login.html:116 +msgid "Login with Frappe Cloud" +msgstr "" + +#: frappe/www/login.html:49 +msgid "Login with LDAP" +msgstr "" + +#. Label of the login_with_email_link (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Login with email link" +msgstr "" + +#. Label of the login_with_email_link_expiry (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Login with email link expiry (in minutes)" +msgstr "" + +#: frappe/auth.py:147 +msgid "Login with username and password is not allowed." +msgstr "" + +#: frappe/www/login.html:100 +msgid "Login with {0}" +msgstr "" + +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "" + +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 +#: frappe/www/me.html:84 +msgid "Logout" +msgstr "" + +#: frappe/core/doctype/user/user.js:190 +msgid "Logout All Sessions" +msgstr "" + +#. Label of the logout_on_password_reset (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Logout All Sessions on Password Reset" +msgstr "" + +#. Label of the logout_all_sessions (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Logout From All Devices After Changing Password" +msgstr "" + +#. Group in User's connections +#. Label of a Card Break in the Users Workspace +#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json +msgid "Logs" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/logs_to_clear/logs_to_clear.json +msgid "Logs To Clear" +msgstr "" + +#. Label of the logs_to_clear (Table) field in DocType 'Log Settings' +#: frappe/core/doctype/log_settings/log_settings.json +msgid "Logs to Clear" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Long Text" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:317 +msgid "Looks like you didn't change the value" +msgstr "" + +#: frappe/www/third_party_apps.html:59 +msgid "Looks like you haven’t added any third party apps." +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:315 +msgid "Looks like you haven’t received any notifications." +msgstr "" + +#. Option for the 'Priority' (Select) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:217 +msgid "Low" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:13 +msgctxt "Number system" +msgid "M" +msgstr "" + +#. Option for the 'License Type' (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "MIT License" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:48 +msgid "Madam" +msgstr "" + +#. Label of the main_section (Text Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Main Section" +msgstr "" + +#. Label of the main_section_html (HTML Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Main Section (HTML)" +msgstr "" + +#. Label of the main_section_md (Markdown Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Main Section (Markdown)" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Maintenance Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +msgid "Maintenance User" +msgstr "" + +#. Label of the major (Int) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json +msgid "Major" +msgstr "" + +#. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Make \"name\" searchable in Global Search" +msgstr "" + +#. Label of the make_attachment_public (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Make Attachment Public (by default)" +msgstr "" + +#. Label of the make_attachments_public (Check) field in DocType 'DocType' +#. Label of the make_attachments_public (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Make Attachments Public by Default" +msgstr "" + +#. Description of the 'Disable Username/Password Login' (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Make sure to configure a Social Login Key before disabling to prevent lockout" +msgstr "" + +#: frappe/utils/password_strength.py:92 +msgid "Make use of longer keyboard patterns" +msgstr "" + +#: frappe/public/js/frappe/form/multi_select_dialog.js:87 +msgid "Make {0}" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:77 +msgid "Makes the page public" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:28 +msgid "Male" +msgstr "" + +#: frappe/www/me.html:56 +msgid "Manage 3rd party apps" +msgstr "" + +#. Description of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Manage your data" +msgstr "" + +#. Label of the reqd (Check) field in DocType 'DocField' +#. Label of the mandatory (Check) field in DocType 'Report Filter' +#. Label of the reqd (Check) field in DocType 'Customize Form Field' +#. Label of the reqd (Check) field in DocType 'Web Form Field' +#. Label of the reqd (Check) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Mandatory" +msgstr "" + +#. Label of the mandatory_depends_on (Code) field in DocType 'Custom Field' +#. Label of the mandatory_depends_on (Code) field in DocType 'Customize Form +#. Field' +#. Label of the mandatory_depends_on (Code) field in DocType 'Web Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Mandatory Depends On" +msgstr "" + +#. Label of the mandatory_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Mandatory Depends On (JS)" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:536 +msgid "Mandatory Information missing:" +msgstr "" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120 +msgid "Mandatory field: set role for" +msgstr "" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124 +msgid "Mandatory field: {0}" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:172 +msgid "Mandatory fields required in table {0}, Row {1}" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:177 +msgid "Mandatory fields required in {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:258 +msgctxt "Error message in web form" +msgid "Mandatory fields required:" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:142 +msgid "Mandatory:" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Map" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:194 +#: frappe/public/js/frappe/data_import/import_preview.js:306 +msgid "Map Columns" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:211 +msgid "Map View" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:294 +msgid "Map columns from {0} to fields in {1}" +msgstr "" + +#. Description of the 'Dynamic Route' (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Map route parameters into form variables. Example /project/<name>" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:924 +msgid "Mapping column {0} to field {1}" +msgstr "" + +#. Label of the margin_bottom (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Bottom" +msgstr "" + +#. Label of the margin_left (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Left" +msgstr "" + +#. Label of the margin_right (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Right" +msgstr "" + +#. Label of the margin_top (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Top" +msgstr "" + +#. Label of the mariadb_variables_section (Section Break) field in DocType +#. 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "MariaDB Variables" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:45 +msgid "Mark all as read" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:78 +#: frappe/core/doctype/communication/communication_list.js:19 +msgid "Mark as Read" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:95 +msgid "Mark as Spam" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:78 +#: frappe/core/doctype/communication/communication_list.js:22 +msgid "Mark as Unread" +msgstr "" + +#. Option for the 'Message Type' (Select) field in DocType 'Notification' +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/email/doctype/notification/notification.json +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json +msgid "Markdown" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Markdown Editor" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Marked As Spam" +msgstr "" + +#. Name of a role +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +msgid "Marketing Manager" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:50 +msgid "Master" +msgstr "" + +#. Description of the 'Limit' (Int) field in DocType 'Bulk Update' +#: frappe/desk/doctype/bulk_update/bulk_update.json +msgid "Max 500 records at a time" +msgstr "" + +#. Label of the max_attachments (Int) field in DocType 'DocType' +#. Label of the max_attachments (Int) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Max Attachments" +msgstr "" + +#. Label of the max_file_size (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max File Size (MB)" +msgstr "" + +#. Label of the max_height (Data) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Max Height" +msgstr "" + +#. Label of the max_length (Int) field in DocType 'Web Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Max Length" +msgstr "" + +#. Label of the max_report_rows (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max Report Rows" +msgstr "" + +#. Label of the max_value (Int) field in DocType 'Web Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Max Value" +msgstr "" + +#. Label of the max_attachment_size (Int) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Max attachment size" +msgstr "" + +#. Label of the max_auto_email_report_per_user (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max auto email report per user" +msgstr "" + +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1343 +msgid "Max width for type Currency is 100px in row {0}" +msgstr "" + +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Maximum" +msgstr "" + +#: frappe/core/doctype/file/file.py:332 +msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/attachments.js:38 +msgid "Maximum attachment limit of {0} has been reached." +msgstr "" + +#: frappe/model/rename_doc.py:689 +msgid "Maximum {0} rows allowed" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:221 +msgid "Me" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:14 +msgid "Meaning of Submit, Cancel, Amend" +msgstr "" + +#. Option for the 'Priority' (Select) field in DocType 'ToDo' +#. Label of the medium (Data) field in DocType 'Web Page View' +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:221 +#: frappe/public/js/frappe/utils/utils.js:1774 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:40 +msgid "Medium" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json +msgid "Meeting" +msgstr "" + +#: frappe/email/doctype/notification/notification.js:200 +#: frappe/integrations/doctype/webhook/webhook.js:96 +msgid "Meets Condition?" +msgstr "" + +#. Group in Email Group's connections +#: frappe/email/doctype/email_group/email_group.json +msgid "Members" +msgstr "" + +#. Label of the cache_memory_usage (Data) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Memory Usage" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63 +msgid "Memory Usage in MB" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Mention" +msgstr "" + +#. Label of the enable_email_mention (Check) field in DocType 'Notification +#. Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Mentions" +msgstr "" + +#: frappe/public/js/frappe/ui/page.html:41 +#: frappe/public/js/frappe/ui/page.js:162 +msgid "Menu" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:242 +#: frappe/public/js/frappe/model/model.js:705 +msgid "Merge with existing" +msgstr "" + +#: frappe/utils/nestedset.py:320 +msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" +msgstr "" + +#. Label of the message (Text) field in DocType 'Auto Repeat' +#. Label of the content (Text Editor) field in DocType 'Activity Log' +#. Label of the content (Text Editor) field in DocType 'Communication' +#. Label of the message (Small Text) field in DocType 'SMS Log' +#. Label of the message (Data) field in DocType 'Success Action' +#. Label of the email_content (Text Editor) field in DocType 'Notification Log' +#. Label of the section_break_15 (Section Break) field in DocType 'Auto Email +#. Report' +#. Label of the description (Text Editor) field in DocType 'Auto Email Report' +#. Label of the message (Code) field in DocType 'Email Queue' +#. Label of the message_sb (Section Break) field in DocType 'Notification' +#. Label of the message (Code) field in DocType 'Notification' +#. Label of the message (Text) field in DocType 'Workflow Document State' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import/data_import.js:483 +#: frappe/core/doctype/sms_log/sms_log.json +#: frappe/core/doctype/success_action/success_action.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/notification/notification.js:205 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/ui/messages.js:182 +#: frappe/public/js/frappe/views/communication.js:126 +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/www/message.html:3 +msgid "Message" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78 +msgctxt "Default title of the message dialog" +msgid "Message" +msgstr "" + +#. Label of the message_examples (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Message Examples" +msgstr "" + +#. Label of the message_id (Small Text) field in DocType 'Communication' +#. Label of the message_id (Small Text) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Message ID" +msgstr "" + +#. Label of the message_parameter (Data) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Message Parameter" +msgstr "" + +#: frappe/templates/includes/contact.js:36 +msgid "Message Sent" +msgstr "" + +#. Label of the message_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Message Type" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:956 +msgid "Message clipped" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:344 +msgid "Message from server: {0}" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104 +msgid "Message not setup" +msgstr "" + +#. Description of the 'Success message' (Text) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Message to be displayed on successful completion" +msgstr "" + +#. Label of the message_id (Code) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Message-id" +msgstr "" + +#. Label of the messages (Code) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import_log/data_import_log.json +msgid "Messages" +msgstr "" + +#. Label of the meta_section (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:124 +msgid "Meta Description" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:131 +msgid "Meta Image" +msgstr "" + +#. Label of the metatags_section (Section Break) field in DocType 'Web Page' +#. Label of the meta_tags (Table) field in DocType 'Website Route Meta' +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_route_meta/website_route_meta.json +msgid "Meta Tags" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:117 +msgid "Meta Title" +msgstr "" + +#. Label of the meta_description (Small Text) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta description" +msgstr "" + +#. Label of the meta_image (Attach Image) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta image" +msgstr "" + +#. Label of the meta_title (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta title" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:110 +msgid "Meta title for SEO" +msgstr "" + +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "" + +#. Label of the method (Data) field in DocType 'Access Log' +#. Label of the method (Data) field in DocType 'API Request Log' +#. Label of the method (Select) field in DocType 'Recorder' +#. Label of the method (Data) field in DocType 'Scheduled Job Type' +#. Label of the method (Data) field in DocType 'Scheduler Event' +#. Label of the method (Data) field in DocType 'Number Card' +#. Label of the auth_method (Select) field in DocType 'Email Account' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/scheduler_event/scheduler_event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/notification/notification.json +msgid "Method" +msgstr "" + +#: frappe/__init__.py:468 +msgid "Method Not Allowed" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:74 +msgid "Method is required to create a number card" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Mid Center" +msgstr "" + +#. Label of the middle_name (Data) field in DocType 'Contact' +#. Label of the middle_name (Data) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json +msgid "Middle Name" +msgstr "" + +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Tools Workspace +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/workspace/tools/tools.json +msgid "Milestone" +msgstr "" + +#. Label of the milestone_tracker (Link) field in DocType 'Milestone' +#. Name of a DocType +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Milestone Tracker" +msgstr "" + +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Minimum" +msgstr "" + +#. Label of the minimum_password_score (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Minimum Password Score" +msgstr "" + +#. Label of the minor (Int) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json +msgid "Minor" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Minutes After" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Minutes Before" +msgstr "" + +#. Label of the minutes_offset (Int) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Minutes Offset" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:103 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:117 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:125 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333 +msgid "Misconfigured" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:49 +msgid "Miss" +msgstr "" + +#: frappe/desk/form/meta.py:194 +msgid "Missing DocType" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1527 +msgid "Missing Field" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:183 +msgid "Missing Fields" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 +msgid "Missing Filters Required" +msgstr "" + +#: frappe/desk/form/assign_to.py:110 +msgid "Missing Permission" +msgstr "" + +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 +msgid "Missing Value" +msgstr "" + +#: frappe/public/js/frappe/ui/field_group.js:124 +#: frappe/public/js/frappe/widgets/widget_dialog.js:374 +#: frappe/public/js/workflow_builder/store.js:97 +#: frappe/workflow/doctype/workflow/workflow.js:71 +msgid "Missing Values Required" +msgstr "" + +#: frappe/www/login.py:107 +msgid "Mobile" +msgstr "" + +#. Label of the mobile_no (Data) field in DocType 'Contact' +#. Label of the mobile_no (Data) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json frappe/tests/test_translate.py:86 +#: frappe/tests/test_translate.py:89 frappe/tests/test_translate.py:91 +#: frappe/tests/test_translate.py:94 +msgid "Mobile No" +msgstr "" + +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +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 "" + +#. Label of the module (Data) field in DocType 'Block Module' +#. Label of the module (Link) field in DocType 'DocType' +#. Label of the module (Link) field in DocType 'Page' +#. Label of the module (Link) field in DocType 'Report' +#. Label of the module (Link) field in DocType 'User Type Module' +#. Label of the module (Link) field in DocType 'Dashboard' +#. Label of the module (Link) field in DocType 'Dashboard Chart' +#. Label of the module (Link) field in DocType 'Dashboard Chart Source' +#. Label of the module (Link) field in DocType 'Form Tour' +#. Label of the module (Link) field in DocType 'Module Onboarding' +#. Label of the module (Link) field in DocType 'Number Card' +#. Label of the module (Link) field in DocType 'Workspace' +#. Label of the module (Link) field in DocType 'Notification' +#. Label of the module (Link) field in DocType 'Print Format' +#. Label of the module (Link) field in DocType 'Print Format Field Template' +#. Label of the module (Link) field in DocType 'Web Form' +#. Label of the module (Link) field in DocType 'Web Template' +#. Label of the module (Link) field in DocType 'Website Theme' +#: frappe/core/doctype/block_module/block_module.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:31 +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/core/doctype/user_type_module/user_type_module.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Module" +msgstr "" + +#. Label of the module (Link) field in DocType 'Server Script' +#. Label of the module (Link) field in DocType 'Client Script' +#. Label of the module (Link) field in DocType 'Custom Field' +#. Label of the module (Link) field in DocType 'Property Setter' +#. Label of the module (Link) field in DocType 'Web Page' +#: frappe/core/doctype/server_script/server_script.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Module (for export)" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#. Label of a shortcut in the Build Workspace +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/workspace/build/build.json +msgid "Module Def" +msgstr "" + +#. Label of the module_html (HTML) field in DocType 'Module Profile' +#: frappe/core/doctype/module_profile/module_profile.json +msgid "Module HTML" +msgstr "" + +#. Label of the module_name (Data) field in DocType 'Module Def' +#. Label of the module_name (Data) field in DocType 'Desktop Icon' +#: frappe/core/doctype/module_def/module_def.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Module Name" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Module Onboarding" +msgstr "" + +#. Name of a DocType +#. Label of the module_profile (Link) field in DocType 'User' +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/module_profile/module_profile.json +#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json +msgid "Module Profile" +msgstr "" + +#. Label of the module_profile_name (Data) field in DocType 'Module Profile' +#: frappe/core/doctype/module_profile/module_profile.json +msgid "Module Profile Name" +msgstr "" + +#: frappe/desk/doctype/module_onboarding/module_onboarding.py:69 +msgid "Module onboarding progress reset" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:250 +msgid "Module to Export" +msgstr "" + +#: frappe/modules/utils.py:273 +msgid "Module {} not found" +msgstr "" + +#. Group in Package's connections +#. Label of a Card Break in the Build Workspace +#: frappe/core/doctype/package/package.json +#: frappe/core/workspace/build/build.json +msgid "Modules" +msgstr "" + +#. Label of the modules_html (HTML) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Modules HTML" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the monday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Monday" +msgstr "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Monitor logs for errors, background jobs, communications, and user activity" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Monospace" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:275 +msgid "Month" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:400 +#: frappe/website/report/website_analytics/website_analytics.js:25 +msgid "Monthly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Monthly Long" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:39 +#: frappe/public/js/frappe/form/multi_select_dialog.js:45 +#: frappe/public/js/frappe/form/multi_select_dialog.js:72 +#: frappe/public/js/frappe/ui/toolbar/search.js:285 +#: frappe/public/js/frappe/ui/toolbar/search.js:300 +#: frappe/public/js/frappe/widgets/chart_widget.js:729 +#: frappe/templates/includes/list/list.html:25 +#: frappe/templates/includes/search_template.html:13 +msgid "More" +msgstr "" + +#. Label of the section_break_6gd5 (Section Break) field in DocType 'Permission +#. Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "More Info" +msgstr "" + +#. Label of the more_info (Section Break) field in DocType 'Contact' +#. Label of the additional_info (Section Break) field in DocType 'Activity Log' +#. Label of the additional_info (Section Break) field in DocType +#. 'Communication' +#. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "More Information" +msgstr "" + +#: frappe/website/doctype/help_article/templates/help_article.html:19 +#: frappe/website/doctype/help_article/templates/help_article.html:33 +msgid "More articles on {0}" +msgstr "" + +#. Description of the 'Footer' (Text Editor) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "More content for the bottom of the page." +msgstr "" + +#: frappe/public/js/frappe/ui/sort_selector.js:193 +msgid "Most Used" +msgstr "" + +#: frappe/utils/password.py:75 +msgid "Most probably your password is too long." +msgstr "" + +#: frappe/core/doctype/communication/communication.js:86 +#: frappe/core/doctype/communication/communication.js:194 +#: frappe/core/doctype/communication/communication.js:212 +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Move" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:194 +msgid "Move To" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:104 +msgid "Move To Trash" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:295 +msgid "Move current and all subsequent sections to a new tab" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:177 +msgid "Move cursor to above row" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:181 +msgid "Move cursor to below row" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:185 +msgid "Move cursor to next column" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:189 +msgid "Move cursor to previous column" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:294 +msgid "Move sections to new tab" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:237 +msgid "Move the current field and the following fields to a new column" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:169 +msgid "Move to Row Number" +msgstr "" + +#. Description of the 'Next on Click' (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Move to next step when clicked inside highlighted area." +msgstr "" + +#. Description of the 'Parent Element Selector' (Data) field in DocType 'Form +#. Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Mozilla doesn't support :has() so you can pass parent selector here as workaround" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:43 +msgid "Mr" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:47 +msgid "Mrs" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:44 +msgid "Ms" +msgstr "" + +#: frappe/utils/nestedset.py:344 +msgid "Multiple root nodes not allowed." +msgstr "" + +#. Description of the 'Import from Google Sheets' (Data) field in DocType 'Data +#. Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Must be a publicly accessible Google Sheets URL" +msgstr "" + +#. Description of the 'LDAP Search String' (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Must be enclosed in '()' and include '{0}', which is a placeholder for the user/login name. i.e. (&(objectclass=user)(uid={0}))" +msgstr "" + +#. Description of the 'Image Field' (Data) field in DocType 'DocType' +#. Description of the 'Image Field' (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Must be of type \"Attach Image\"" +msgstr "" + +#: frappe/desk/query_report.py:210 +msgid "Must have report permission to access this report." +msgstr "" + +#: frappe/core/doctype/report/report.py:151 +msgid "Must specify a Query to run" +msgstr "" + +#. Label of the mute_sounds (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Mute Sounds" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:45 +msgid "Mx" +msgstr "" + +#: frappe/templates/includes/web_sidebar.html:41 +#: frappe/website/doctype/web_form/web_form.py:525 +#: frappe/website/doctype/website_settings/website_settings.py:181 +#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 +msgid "My Account" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:57 +msgid "My Device" +msgstr "" + +#: frappe/public/js/frappe/ui/apps_switcher.js:71 +msgid "My Workspaces" +msgstr "" + +#. Option for the 'Database Engine' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "MyISAM" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:19 +msgid "NOTE: If you add states or transitions in the table, it will be reflected in the Workflow Builder but you will have to position them manually. Also Workflow Builder is currently in BETA." +msgstr "" + +#. Description of the 'LDAP Group Field' (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "NOTE: This box is due for depreciation. Please re-setup LDAP to work with the newer settings" +msgstr "" + +#. Label of the fieldname (Data) field in DocType 'DocField' +#. Label of the fieldname (Data) field in DocType 'Customize Form Field' +#. Label of the label (Data) field in DocType 'Workspace' +#. Label of the webhook_name (Data) field in DocType 'Slack Webhook URL' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype_list.js:22 +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +#: frappe/public/js/frappe/form/layout.js:76 +#: frappe/public/js/frappe/form/multi_select_dialog.js:240 +#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/views/file/file_view.js:97 +#: frappe/website/doctype/website_slideshow/website_slideshow.js:25 +msgid "Name" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.js:29 +msgid "Name (Doc Name)" +msgstr "" + +#: frappe/desk/utils.py:24 +msgid "Name already taken, please set a new name" +msgstr "" + +#: frappe/model/naming.py:512 +msgid "Name cannot contain special characters like {0}" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:91 +msgid "Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:117 +msgid "Name of the new Print Format" +msgstr "" + +#: frappe/model/naming.py:507 +msgid "Name of {0} cannot be {1}" +msgstr "" + +#: frappe/utils/password_strength.py:174 +msgid "Names and surnames by themselves are easy to guess." +msgstr "" + +#. Label of the sb1 (Tab Break) field in DocType 'DocType' +#. Label of the naming_section (Section Break) field in DocType 'Document +#. Naming Rule' +#. Label of the naming_section (Section Break) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Naming" +msgstr "" + +#. Description of the 'Auto Name' (Data) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Naming Options:\n" +"
    1. field:[fieldname] - By Field
    2. naming_series: - By Naming Series (field called naming_series must be present)
    3. Prompt - Prompt user for a name
    4. [series] - Series by prefix (separated by a dot); for example PRE.#####
    5. \n" +"
    6. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
    " +msgstr "" + +#. Label of the naming_rule (Select) field in DocType 'DocType' +#. Label of the naming_rule (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Naming Rule" +msgstr "" + +#. Label of the naming_series_tab (Tab Break) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Naming Series" +msgstr "" + +#: frappe/model/naming.py:268 +msgid "Naming Series mandatory" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#. Label of the top_bar (Section Break) field in DocType 'Website Settings' +#. Label of the navbar_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Navbar" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Navbar Item" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/navbar_settings/navbar_settings.json +#: frappe/core/workspace/build/build.json +msgid "Navbar Settings" +msgstr "" + +#. Label of the navbar_template (Link) field in DocType 'Website Settings' +#. Label of the navbar_template_section (Section Break) field in DocType +#. 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Navbar Template" +msgstr "" + +#. Label of the navbar_template_values (Code) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Navbar Template Values" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1380 +msgctxt "Description of a list view shortcut" +msgid "Navigate list down" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1387 +msgctxt "Description of a list view shortcut" +msgid "Navigate list up" +msgstr "" + +#: frappe/public/js/frappe/ui/page.js:175 +msgid "Navigate to main content" +msgstr "" + +#. Label of the navigation_settings_section (Section Break) field in DocType +#. 'User' +#: frappe/core/doctype/user/user.json +msgid "Navigation Settings" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:322 +msgid "Need Workspace Manager role to edit private workspace of other users" +msgstr "" + +#: frappe/model/document.py:794 +msgid "Negative Value" +msgstr "" + +#: frappe/database/query.py:335 +msgid "Nested filters must be provided as a list or tuple." +msgstr "" + +#: frappe/utils/nestedset.py:94 +msgid "Nested set error. Please contact the Administrator." +msgstr "" + +#. Name of a DocType +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Network Printer Settings" +msgstr "" + +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/success_action/success_action.js:57 +#: frappe/core/page/dashboard_view/dashboard_view.js:173 +#: frappe/desk/doctype/todo/todo.js:46 +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/success_action.js:77 +#: frappe/public/js/frappe/views/treeview.js:473 +#: frappe/public/js/frappe/views/workspace/workspace.js:64 +#: frappe/website/doctype/web_form/templates/web_list.html:15 +#: frappe/www/list.html:19 +msgid "New" +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:15 +msgid "New Activity" +msgstr "" + +#: frappe/public/js/frappe/form/templates/address_list.html:3 +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:5 +#: frappe/public/js/frappe/utils/address_and_contact.js:71 +msgid "New Address" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:58 +msgid "New Chart" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:3 +msgid "New Contact" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:70 +msgid "New Custom Block" +msgstr "" + +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 +msgid "New Custom Print Format" +msgstr "" + +#. Label of the new_document_form (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "New Document Form" +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.py:154 +msgid "New Document Shared {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:27 +#: frappe/public/js/frappe/views/communication.js:23 +msgid "New Email" +msgstr "" + +#: frappe/public/js/frappe/list/list_view_select.js:98 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:177 +msgid "New Email Account" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:47 +msgid "New Event" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:94 +msgid "New Folder" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 +msgid "New Kanban Board" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:62 +msgid "New Links" +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.py:152 +msgid "New Mention on {0}" +msgstr "" + +#: frappe/www/contact.py:61 +msgid "New Message from Website Contact Page" +msgstr "" + +#. Label of the new_name (Read Only) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +#: frappe/public/js/frappe/form/toolbar.js:218 +#: frappe/public/js/frappe/model/model.js:713 +msgid "New Name" +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.py:151 +msgid "New Notification" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:64 +msgid "New Number Card" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:66 +msgid "New Onboarding" +msgstr "" + +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 +msgid "New Password" +msgstr "" + +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 +msgid "New Print Format Name" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:68 +msgid "New Quick List" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1386 +msgid "New Report name" +msgstr "" + +#. Label of the new_role (Data) field in DocType 'Role Replication' +#: frappe/core/doctype/role_replication/role_replication.json +msgid "New Role" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:60 +msgid "New Shortcut" +msgstr "" + +#. Label of the new_users (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "New Users (Last 30 days)" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 +msgid "New Value" +msgstr "" + +#: frappe/workflow/page/workflow_builder/workflow_builder.js:61 +msgid "New Workflow Name" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:390 +msgid "New Workspace" +msgstr "" + +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
    \n" +"Public clients are restricted by default." +msgstr "" + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "" + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "" + +#: frappe/www/update-password.html:92 +msgid "New password cannot be same as old password" +msgstr "" + +#: frappe/utils/change_log.py:389 +msgid "New updates are available" +msgstr "" + +#. Description of the 'Disable signups' (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "New users will have to be manually registered by system managers." +msgstr "" + +#. Description of the 'Set Value' (Small Text) field in DocType 'Property +#. Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "New value to be set" +msgstr "" + +#: frappe/public/js/frappe/form/quick_entry.js:179 +#: frappe/public/js/frappe/form/toolbar.js:37 +#: frappe/public/js/frappe/form/toolbar.js:206 +#: frappe/public/js/frappe/form/toolbar.js:221 +#: frappe/public/js/frappe/form/toolbar.js:561 +#: frappe/public/js/frappe/model/model.js:612 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 +#: 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:438 +msgid "New {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:393 +msgid "New {0} Created" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:385 +msgid "New {0} {1} added to Dashboard {2}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:390 +msgid "New {0} {1} created" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 +msgid "New {0}: {1}" +msgstr "" + +#: frappe/utils/change_log.py:375 +msgid "New {} releases for the following apps are available" +msgstr "" + +#: frappe/core/doctype/user/user.py:815 +msgid "Newly created user {0} has no roles enabled." +msgstr "" + +#. Name of a role +#: frappe/email/doctype/email_group/email_group.json +#: frappe/email/doctype/email_group_member/email_group_member.json +#: frappe/website/doctype/utm_campaign/utm_campaign.json +msgid "Newsletter Manager" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:14 +#: frappe/public/js/frappe/form/form_tour.js:324 +#: frappe/public/js/frappe/web_form/web_form.js:93 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:15 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:240 +#: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 +#: frappe/website/web_template/slideshow/slideshow.html:44 +msgid "Next" +msgstr "" + +#: frappe/public/js/frappe/ui/slides.js:359 +msgctxt "Go to next slide" +msgid "Next" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:684 +msgid "Next 14 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:688 +msgid "Next 30 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:704 +msgid "Next 6 Months" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:680 +msgid "Next 7 Days" +msgstr "" + +#. Label of the next_action_email_template (Link) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Next Action Email Template" +msgstr "" + +#. Label of the next_actions_html (HTML) field in DocType 'Success Action' +#: frappe/core/doctype/success_action/success_action.json +msgid "Next Actions HTML" +msgstr "" + +#. Label of the next_execution (Datetime) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Next Execution" +msgstr "" + +#. Label of the next_form_tour (Link) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Next Form Tour" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:696 +msgid "Next Month" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:700 +msgid "Next Quarter" +msgstr "" + +#. Label of the next_schedule_date (Date) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Next Schedule Date" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:6 +msgid "Next Scheduled Date" +msgstr "" + +#. Label of the next_state (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Next State" +msgstr "" + +#. Label of the next_step_condition (Code) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Next Step Condition" +msgstr "" + +#. Label of the next_sync_token (Password) field in DocType 'Google Calendar' +#. Label of the next_sync_token (Password) field in DocType 'Google Contacts' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Next Sync Token" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:692 +msgid "Next Week" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:708 +msgid "Next Year" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "Next actions" +msgstr "" + +#. Label of the next_on_click (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Next on Click" +msgstr "" + +#. Option for the 'Standard' (Select) field in DocType 'Page' +#. Option for the 'Is Standard' (Select) field in DocType 'Report' +#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP +#. Settings' +#. Option for the 'Standard' (Select) field in DocType 'Print Format' +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 +#: 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:498 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 +#: frappe/website/doctype/help_article/templates/help_article.html:26 +msgid "No" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:546 +msgctxt "Checkbox is not checked" +msgid "No" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:37 +msgctxt "Dismiss confirmation dialog" +msgid "No" +msgstr "" + +#: frappe/www/third_party_apps.html:56 +msgid "No Active Sessions" +msgstr "" + +#. Label of the no_copy (Check) field in DocType 'DocField' +#. Label of the no_copy (Check) field in DocType 'Custom Field' +#. Label of the no_copy (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "No Copy" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:162 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 +#: frappe/public/js/form_builder/components/controls/TableControl.vue:64 +#: frappe/public/js/frappe/data_import/import_preview.js:146 +#: frappe/public/js/frappe/form/multi_select_dialog.js:224 +#: frappe/public/js/frappe/utils/datatable.js:10 +#: frappe/public/js/frappe/widgets/chart_widget.js:57 +msgid "No Data" +msgstr "" + +#: frappe/public/js/frappe/widgets/quick_list_widget.js:134 +msgid "No Data..." +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:176 +msgid "No Email Account" +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:196 +msgid "No Email Accounts Assigned" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:183 +msgid "No Emails" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:361 +msgid "No Entry for the User {0} found within LDAP!" +msgstr "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:407 +msgid "No Filters Set" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:372 +msgid "No Google Calendar Event to sync." +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:262 +msgid "No Images" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:363 +msgid "No LDAP User found for email: {0}" +msgstr "" + +#: frappe/public/js/form_builder/components/EditableInput.vue:11 +#: frappe/public/js/form_builder/components/EditableInput.vue:14 +#: frappe/public/js/form_builder/components/Field.vue:209 +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:55 +#: frappe/public/js/print_format_builder/Field.vue:24 +#: frappe/public/js/workflow_builder/components/ActionNode.vue:53 +#: frappe/public/js/workflow_builder/components/StateNode.vue:47 +#: frappe/public/js/workflow_builder/store.js:51 +msgid "No Label" +msgstr "" + +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 +#: 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 +msgid "No Name Specified for {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:315 +msgid "No New notifications" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1757 +msgid "No Permissions Specified" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:199 +msgid "No Permissions set for this criteria." +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:93 +msgid "No Permitted Charts" +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:92 +msgid "No Permitted Charts on this Dashboard" +msgstr "" + +#: frappe/printing/doctype/print_settings/print_settings.js:13 +msgid "No Preview" +msgstr "" + +#: frappe/printing/page/print/print.js:747 +msgid "No Preview Available" +msgstr "" + +#: frappe/printing/page/print/print.js:902 +msgid "No Printer is Available." +msgstr "" + +#: frappe/core/doctype/rq_worker/rq_worker_list.js:3 +msgid "No RQ Workers connected. Try restarting the bench." +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:135 +msgid "No Results" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:51 +msgid "No Results found" +msgstr "" + +#: frappe/core/doctype/user/user.py:816 +msgid "No Roles Specified" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 +msgid "No Select Field Found" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:179 +msgid "No Suggestions" +msgstr "" + +#: frappe/desk/reportview.py:707 +msgid "No Tags" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:442 +msgid "No Upcoming Events" +msgstr "" + +#: frappe/public/js/frappe/form/templates/address_list.html:43 +msgid "No address added yet." +msgstr "" + +#: frappe/email/doctype/notification/notification.js:236 +msgid "No alerts for today" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:178 +msgid "No automatic optimization suggestions available." +msgstr "" + +#: frappe/public/js/frappe/form/save.js:36 +msgid "No changes in document" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:662 +msgid "No changes made" +msgstr "" + +#: frappe/model/rename_doc.py:369 +msgid "No changes made because old and new name are the same." +msgstr "" + +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:59 +msgid "No changes to sync" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:298 +msgid "No changes to update" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:4 +msgid "No comments yet." +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:91 +msgid "No contacts added yet." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 +msgid "No contacts linked to document" +msgstr "" + +#: frappe/desk/query_report.py:381 +msgid "No data to export" +msgstr "" + +#: frappe/contacts/doctype/address/address.py:246 +msgid "No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:71 +msgid "No documents found tagged with {0}" +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:21 +msgid "No email account associated with the User. Please add an account under User > Email Inbox." +msgstr "" + +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:478 +msgid "No failed logs" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 +msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." +msgstr "" + +#: frappe/utils/file_manager.py:143 +msgid "No file attached" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:134 +msgid "No filters found" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:299 +msgid "No filters selected" +msgstr "" + +#: frappe/desk/form/utils.py:111 +msgid "No further records" +msgstr "" + +#: frappe/templates/includes/search_template.html:49 +msgid "No matching records. Search something new" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form_list.js:162 +msgid "No more items to display" +msgstr "" + +#: frappe/utils/password_strength.py:45 +msgid "No need for symbols, digits, or uppercase letters." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:195 +msgid "No new Google Contacts synced." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:46 +msgid "No new notifications" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:415 +msgid "No of Columns" +msgstr "" + +#. Label of the no_of_requested_sms (Int) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "No of Requested SMS" +msgstr "" + +#. Label of the no_of_rows (Int) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "No of Rows (Max 500)" +msgstr "" + +#. Label of the no_of_sent_sms (Int) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "No of Sent SMS" +msgstr "" + +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 +msgid "No permission for {0}" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1142 +msgctxt "{0} = verb, {1} = object" +msgid "No permission to '{0}' {1}" +msgstr "" + +#: frappe/model/db_query.py:949 +msgid "No permission to read {0}" +msgstr "" + +#: frappe/share.py:220 +msgid "No permission to {0} {1} {2}" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:175 +msgid "No records deleted" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 +msgid "No records present in {0}" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_stat.html:3 +msgid "No records tagged." +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:225 +msgid "No records will be exported" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "No rows" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:135 +msgid "No subject" +msgstr "" + +#: frappe/www/printview.py:472 +msgid "No template found at path: {0}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/multiselect_list.js:262 +msgid "No values to show" +msgstr "" + +#: frappe/website/web_template/discussions/discussions.html:2 +msgid "No {0}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view_select.js:157 +msgid "No {0} Found" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form_list.js:234 +msgid "No {0} found" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:499 +msgid "No {0} found with matching filters. Clear filters to see all {0}." +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:171 +msgid "No {0} mail" +msgstr "" + +#: frappe/public/js/form_builder/utils.js:117 +#: frappe/public/js/frappe/form/grid_row.js:257 +msgctxt "Title of the 'row number' column" +msgid "No." +msgstr "" + +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Nomatim" +msgstr "" + +#. Label of the non_negative (Check) field in DocType 'DocField' +#. Label of the non_negative (Check) field in DocType 'Custom Field' +#. Label of the non_negative (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Non Negative" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:33 +msgid "Non-Conforming" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:36 +msgid "None: End of Workflow" +msgstr "" + +#. Label of the normalized_copies (Int) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Normalized Copies" +msgstr "" + +#. Label of the normalized_query (Data) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Normalized Query" +msgstr "" + +#: frappe/core/doctype/user/user.py:1029 +#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 +msgid "Not Allowed" +msgstr "" + +#: frappe/templates/includes/login/login.js:259 +msgid "Not Allowed: Disabled User" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:36 +msgid "Not Ancestors Of" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:34 +msgid "Not Descendants Of" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:17 +msgid "Not Equals" +msgstr "" + +#: frappe/app.py:390 frappe/www/404.html:3 +msgid "Not Found" +msgstr "" + +#. Label of the not_helpful (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Not Helpful" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:21 +msgid "Not In" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:19 +msgid "Not Like" +msgstr "" + +#: frappe/public/js/frappe/form/linked_with.js:45 +msgid "Not Linked to any record" +msgstr "" + +#. Label of the not_nullable (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Not Nullable" +msgstr "" + +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 +#: frappe/public/js/frappe/web_form/webform_script.js:15 +#: frappe/website/doctype/web_form/web_form.py:774 +#: frappe/website/page_renderers/not_permitted_page.py:22 +#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 +#: frappe/www/qrcode.py:37 +msgid "Not Permitted" +msgstr "" + +#: frappe/desk/query_report.py:596 +msgid "Not Permitted to read {0}" +msgstr "" + +#: frappe/website/doctype/web_form/web_form_list.js:7 +#: frappe/website/doctype/web_page/web_page_list.js:7 +msgid "Not Published" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 +#: frappe/public/js/frappe/model/indicator.js:28 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 +#: frappe/website/doctype/web_form/templates/web_form.html:85 +msgid "Not Saved" +msgstr "" + +#: frappe/core/doctype/error_log/error_log_list.js:7 +msgid "Not Seen" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +msgid "Not Sent" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:219 +msgid "Not Set" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:608 +msgctxt "Field value is not set" +msgid "Not Set" +msgstr "" + +#: frappe/utils/csvutils.py:102 +msgid "Not a valid Comma Separated Value (CSV File)" +msgstr "" + +#: frappe/core/doctype/user/user.py:266 +msgid "Not a valid User Image." +msgstr "" + +#: frappe/model/workflow.py:117 +msgid "Not a valid Workflow Action" +msgstr "" + +#: frappe/templates/includes/login/login.js:255 +msgid "Not a valid user" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow_list.js:7 +msgid "Not active" +msgstr "" + +#: frappe/permissions.py:383 +msgid "Not allowed for {0}: {1}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:639 +msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:336 +msgid "Not allowed to create custom Virtual DocType." +msgstr "" + +#: frappe/www/printview.py:165 +msgid "Not allowed to print cancelled documents" +msgstr "" + +#: frappe/www/printview.py:162 +msgid "Not allowed to print draft documents" +msgstr "" + +#: frappe/permissions.py:213 +msgid "Not allowed via controller permission check" +msgstr "" + +#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94 +msgid "Not found" +msgstr "" + +#: frappe/core/doctype/page/page.py:62 +msgid "Not in Developer Mode" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:331 +msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:217 +#: frappe/public/js/frappe/request.js:159 +#: frappe/public/js/frappe/request.js:170 +#: frappe/public/js/frappe/request.js:175 +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 +#: frappe/website/js/website.js:97 +msgid "Not permitted" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:53 +msgid "Not permitted to view {0}" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/note/note.json +msgid "Note" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/note_seen_by/note_seen_by.json +msgid "Note Seen By" +msgstr "" + +#: frappe/www/confirm_workflow_action.html:8 +msgid "Note:" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:775 +msgid "Note: Changing the Page Name will break previous URL to this page." +msgstr "" + +#: frappe/core/doctype/user/user.js:35 +msgid "Note: Etc timezones have their signs reversed." +msgstr "" + +#. Description of the 'sb0' (Section Break) field in DocType 'Website +#. Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Note: For best results, images must be of the same size and width must be greater than height." +msgstr "" + +#. Description of the 'Allow only one session per user' (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Note: Multiple sessions will be allowed in case of mobile device" +msgstr "" + +#: frappe/core/doctype/user/user.js:387 +msgid "Note: This will be shared with user." +msgstr "" + +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.js:8 +msgid "Note: Your request for account deletion will be fulfilled within {0} hours." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:183 +msgid "Notes:" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:492 +msgid "Nothing New" +msgstr "" + +#: frappe/public/js/frappe/form/undo_manager.js:43 +msgid "Nothing left to redo" +msgstr "" + +#: frappe/public/js/frappe/form/undo_manager.js:33 +msgid "Nothing left to undo" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:383 +#: frappe/public/js/frappe/views/reports/query_report.js:105 +#: frappe/templates/includes/list/list.html:9 +#: frappe/website/doctype/help_article/templates/help_article_list.html:21 +msgid "Nothing to show" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:129 +msgid "Nothing to update" +msgstr "" + +#. Label of the notification (Tab Break) field in DocType 'Auto Repeat' +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/mixins.py:142 +#: frappe/email/doctype/notification/notification.json +msgid "Notification" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Notification Log" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Notification Recipient" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/public/js/frappe/ui/notifications/notifications.js:37 +msgid "Notification Settings" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json +msgid "Notification Subscribed Document" +msgstr "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8 +msgid "Notification sent to" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:544 +msgid "Notification: customer {0} has no Mobile number set" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:530 +msgid "Notification: document {0} has no {1} number set (field: {2})" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:539 +msgid "Notification: user {0} has no Mobile number set" +msgstr "" + +#. Label of the notifications (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/ui/notifications/notifications.js:50 +#: frappe/public/js/frappe/ui/notifications/notifications.js:187 +msgid "Notifications" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:299 +msgid "Notifications Disabled" +msgstr "" + +#. Description of the 'Default Outgoing' (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Notifications and bulk mails will be sent from this outgoing server." +msgstr "" + +#. Label of the notify_on_every_login (Check) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Notify Users On Every Login" +msgstr "" + +#. Label of the notify_by_email (Check) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Notify by Email" +msgstr "" + +#. Label of the notify_by_email (Check) field in DocType 'DocShare' +#: frappe/core/doctype/docshare/docshare.json +msgid "Notify by email" +msgstr "" + +#. Label of the notify_if_unreplied (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Notify if unreplied" +msgstr "" + +#. Label of the unreplied_for_mins (Int) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Notify if unreplied for (in mins)" +msgstr "" + +#. Label of the notify_on_login (Check) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Notify users with a popup when they log in" +msgstr "" + +#: frappe/public/js/frappe/form/controls/datetime.js:41 +#: frappe/public/js/frappe/form/controls/time.js:37 +msgid "Now" +msgstr "" + +#. Label of the phone (Data) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Number" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:628 +msgid "Number Card" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/number_card_link/number_card_link.json +msgid "Number Card Link" +msgstr "" + +#. Label of the number_card_name (Link) field in DocType 'Workspace Number +#. Card' +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json +msgid "Number Card Name" +msgstr "" + +#. Label of the number_cards_tab (Tab Break) field in DocType 'Workspace' +#. Label of the number_cards (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:658 +msgid "Number Cards" +msgstr "" + +#. Label of the number_format (Select) field in DocType 'Language' +#. Label of the number_format (Select) field in DocType 'System Settings' +#. Label of the number_format (Select) field in DocType 'Currency' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/geo/doctype/currency/currency.json +msgid "Number Format" +msgstr "" + +#. Label of the backup_limit (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Number of Backups" +msgstr "" + +#. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Number of Groups" +msgstr "" + +#. Label of the number_of_queries (Int) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Number of Queries" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:443 +#: frappe/public/js/frappe/doctype/index.js:59 +msgid "Number of attachment fields are more than {}, limit updated to {}." +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:172 +msgid "Number of backups must be greater than zero." +msgstr "" + +#. Description of the 'Columns' (Int) field in DocType 'Customize Form Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Number of columns for a field in a Grid (Total Columns in a grid should be less than 11)" +msgstr "" + +#. Description of the 'Columns' (Int) field in DocType 'DocField' +#. Description of the 'Columns' (Int) field in DocType 'Custom Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)" +msgstr "" + +#. Description of the 'Document Share Key Expiry (in Days)' (Int) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Number of days after which the document Web View link shared on email will be expired" +msgstr "" + +#. Label of the cache_keys (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Number of keys" +msgstr "" + +#. Label of the onsite_backups (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Number of onsite backups" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "OAuth" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "OAuth Authorization Code" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "OAuth Bearer Token" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "OAuth Client" +msgstr "" + +#. Label of the sb_00 (Section Break) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "OAuth Client ID" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json +msgid "OAuth Client Role" +msgstr "" + +#: frappe/email/oauth.py:30 +msgid "OAuth Error" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "OAuth Provider Settings" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_scope/oauth_scope.json +msgid "OAuth Scope" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:250 +msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "OPTIONS" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:190 +msgid "OR" +msgstr "" + +#. Option for the 'Two Factor Authentication method' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "OTP App" +msgstr "" + +#. Label of the otp_issuer_name (Data) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "OTP Issuer Name" +msgstr "" + +#: frappe/twofactor.py:450 +msgid "OTP Secret Reset - {0}" +msgstr "" + +#: frappe/twofactor.py:469 +msgid "OTP Secret has been reset. Re-registration will be required on next login." +msgstr "" + +#: frappe/templates/includes/login/login.js:355 +msgid "OTP setup using OTP App was not completed. Please contact Administrator." +msgstr "" + +#. Label of the occurrences (Int) field in DocType 'System Health Report +#. Errors' +#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json +msgid "Occurrences" +msgstr "" + +#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Off" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Office" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Office 365" +msgstr "" + +#: frappe/core/doctype/server_script/server_script.js:36 +msgid "Official Documentation" +msgstr "" + +#. Label of the offset_x (Int) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Offset X" +msgstr "" + +#. Label of the offset_y (Int) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Offset Y" +msgstr "" + +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "" + +#: frappe/www/update-password.html:38 +msgid "Old Password" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:412 +msgid "Old and new fieldnames are same." +msgstr "" + +#. Description of the 'Number of Backups' (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Older backups will be automatically deleted" +msgstr "" + +#. Label of the oldest_unscheduled_job (Link) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Oldest Unscheduled Job" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "On Hold" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Authorization" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Charge Processed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Failed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Mandate Acquisition Processed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Mandate Charge Processed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Paid" +msgstr "" + +#. Description of the 'Is Dynamic URL?' (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "On checking this option, URL will be treated like a jinja template string" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:66 +#: frappe/public/js/frappe/ui/filters/filter.js:72 +msgid "On or After" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:65 +#: frappe/public/js/frappe/ui/filters/filter.js:71 +msgid "On or Before" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:966 +msgid "On {0}, {1} wrote:" +msgstr "" + +#. Label of the onboard (Check) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:335 +msgid "Onboard" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:232 +msgid "Onboarding Name" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json +msgid "Onboarding Permission" +msgstr "" + +#. Label of the onboarding_status (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Onboarding Status" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Onboarding Step" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json +msgid "Onboarding Step Map" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:264 +msgid "Onboarding complete" +msgstr "" + +#. Description of the 'Is Submittable' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:43 +msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:35 +msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)." +msgstr "" + +#: frappe/www/complete_signup.html:7 +msgid "One Last Step" +msgstr "" + +#: frappe/twofactor.py:278 +msgid "One Time Password (OTP) Registration Code from {}" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:331 +msgid "One of" +msgstr "" + +#: frappe/client.py:213 +msgid "Only 200 inserts allowed in one request" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue.py:87 +msgid "Only Administrator can delete Email Queue" +msgstr "" + +#: frappe/core/doctype/page/page.py:66 +msgid "Only Administrator can edit" +msgstr "" + +#: frappe/core/doctype/report/report.py:75 +msgid "Only Administrator can save a standard report. Please rename and save." +msgstr "" + +#: frappe/recorder.py:314 +msgid "Only Administrator is allowed to use Recorder" +msgstr "" + +#. Label of the allow_edit (Link) field in DocType 'Workflow Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Only Allow Edit For" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1621 +msgid "Only Options allowed for Data field are:" +msgstr "" + +#. Label of the data_modified_till (Int) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Only Send Records Updated in Last X Hours" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.js:32 +msgid "Only Workspace Manager can edit public workspaces" +msgstr "" + +#: frappe/modules/utils.py:65 +msgid "Only allowed to export customizations in developer mode" +msgstr "" + +#: frappe/model/document.py:1239 +msgid "Only draft documents can be discarded" +msgstr "" + +#. Label of the only_for (Link) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:328 +msgid "Only for" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:192 +msgid "Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish." +msgstr "" + +#: frappe/contacts/doctype/contact/contact.py:131 +#: frappe/contacts/doctype/contact/contact.py:158 +msgid "Only one {0} can be set as primary." +msgstr "" + +#: frappe/desk/reportview.py:358 +msgid "Only reports of type Report Builder can be deleted" +msgstr "" + +#: frappe/desk/reportview.py:329 +msgid "Only reports of type Report Builder can be edited" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:131 +msgid "Only standard DocTypes are allowed to be customized from Customize Form." +msgstr "" + +#: frappe/model/delete_doc.py:281 +msgid "Only the Administrator can delete a standard DocType." +msgstr "" + +#: frappe/desk/form/assign_to.py:198 +msgid "Only the assignee can complete this to-do." +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +msgid "Only {0} emailed reports are allowed per user." +msgstr "" + +#: frappe/templates/includes/login/login.js:291 +msgid "Oops! Something went wrong." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Contact' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#. Option for the 'Email Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType 'ToDo' +#. Option for the 'Status' (Select) field in DocType 'Workflow Action' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/deleted_document/deleted_document.js:7 +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Open" +msgstr "" + +#: frappe/desk/doctype/todo/todo_list.js:14 +msgctxt "Access" +msgid "Open" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:207 +#: frappe/public/js/frappe/ui/keyboard.js:217 +msgid "Open Awesomebar" +msgstr "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:75 +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:96 +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:97 +msgid "Open Communication" +msgstr "" + +#: frappe/templates/emails/new_notification.html:10 +msgid "Open Document" +msgstr "" + +#. Label of the subscribed_documents (Table MultiSelect) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Open Documents" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:243 +msgid "Open Help" +msgstr "" + +#. Label of the open_reference_document (Button) field in DocType 'Notification +#. Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Open Reference Document" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:226 +msgid "Open Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Open Source Applications for the Web" +msgstr "" + +#. Label of the open_in_new_tab (Check) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "Open URL in a New Tab" +msgstr "" + +#. Description of the 'Quick Entry' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:176 +msgid "Open a module or tool" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:367 +msgid "Open console" +msgstr "" + +#: frappe/public/js/print_format_builder/Preview.vue:17 +msgid "Open in a new tab" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1433 +msgctxt "Description of a list view shortcut" +msgid "Open list item" +msgstr "" + +#: frappe/core/doctype/error_log/error_log.js:15 +msgid "Open reference document" +msgstr "" + +#: frappe/www/qrcode.html:13 +msgid "Open your authentication app on your mobile phone." +msgstr "" + +#: frappe/desk/doctype/todo/todo_list.js:17 +#: frappe/public/js/frappe/form/templates/form_links.html:18 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 +msgid "Open {0}" +msgstr "" + +#. Label of the openid_configuration (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "OpenID Configuration" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "" + +#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "OpenLDAP" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Opened" +msgstr "" + +#. Label of the operation (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Operation" +msgstr "" + +#: frappe/utils/data.py:2172 +msgid "Operator must be one of {0}" +msgstr "" + +#: frappe/core/doctype/file/file.js:34 +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:8 +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:28 +msgid "Optimize" +msgstr "" + +#: frappe/core/doctype/file/file.js:106 +msgid "Optimizing image..." +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:100 +msgid "Option 1" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:102 +msgid "Option 2" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:104 +msgid "Option 3" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1639 +msgid "Option {0} for field {1} is not a child table" +msgstr "" + +#. Description of the 'CC' (Code) field in DocType 'Notification Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Optional: Always send to these ids. Each Email Address on a new row" +msgstr "" + +#. Description of the 'Condition' (Code) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Optional: The alert will be sent if this expression is true" +msgstr "" + +#. Label of the options (Small Text) field in DocType 'DocField' +#. Label of the options (Data) field in DocType 'Report Column' +#. Label of the options (Small Text) field in DocType 'Report Filter' +#. Label of the options (Small Text) field in DocType 'Custom Field' +#. Label of the options (Small Text) field in DocType 'Customize Form Field' +#. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' +#. Label of the options (Small Text) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/templates/form_grid/fields.html:43 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Options" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1367 +msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" +msgstr "" + +#. Label of the options_help (HTML) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Options Help" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1661 +msgid "Options for Rating field can range from 3 to 10" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:96 +msgid "Options for select. Each option on a new line." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1384 +msgid "Options for {0} must be set before setting the default value." +msgstr "" + +#: frappe/public/js/form_builder/store.js:182 +msgid "Options is required for field {0} of type {1}" +msgstr "" + +#: frappe/model/base_document.py:928 +msgid "Options not set for link field {0}" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Orange" +msgstr "" + +#. Label of the order (Code) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Order" +msgstr "" + +#: frappe/database/query.py:769 +msgid "Order By must be a string" +msgstr "" + +#. Label of the sb0 (Section Break) field in DocType 'About Us Settings' +#. Label of the company_history (Table) field in DocType 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Org History" +msgstr "" + +#. Label of the company_history_heading (Data) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Org History Heading" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:21 +msgid "Orientation" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 +msgid "Original Value" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/contacts/doctype/address/address.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/page/setup_wizard/install_fixtures.py:30 +msgid "Other" +msgstr "" + +#. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outgoing" +msgstr "" + +#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outgoing (SMTP) Settings" +msgstr "" + +#. Label of the outgoing_emails_column (Column Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Outgoing Emails (Last 7 days)" +msgstr "" + +#. Label of the smtp_server (Data) field in DocType 'Email Account' +#. Label of the smtp_server (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Outgoing Server" +msgstr "" + +#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Outgoing Settings" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:33 +msgid "Outgoing email account not correct" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outlook.com" +msgstr "" + +#. Label of the output (Code) field in DocType 'Permission Inspector' +#. Label of the output (Code) field in DocType 'System Console' +#. Label of the output (Code) field in DocType 'Integration Request' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Output" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_dashboard.html:5 +msgid "Overview" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "PATCH" +msgstr "" + +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/page/print/print.js:84 +#: frappe/public/js/frappe/form/templates/print_layout.html:44 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 +msgid "PDF" +msgstr "" + +#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191 +msgid "PDF Generation in Progress" +msgstr "" + +#. Label of the pdf_generator (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "PDF Generator" +msgstr "" + +#. Label of the pdf_page_height (Float) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "PDF Page Height (in mm)" +msgstr "" + +#. Label of the pdf_page_size (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "PDF Page Size" +msgstr "" + +#. Label of the pdf_page_width (Float) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "PDF Page Width (in mm)" +msgstr "" + +#. Label of the pdf_settings (Section Break) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "PDF Settings" +msgstr "" + +#: frappe/utils/print_format.py:289 +msgid "PDF generation failed" +msgstr "" + +#: frappe/utils/pdf.py:106 +msgid "PDF generation failed because of broken image links" +msgstr "" + +#: frappe/printing/page/print/print.js:656 +msgid "PDF generation may not work as expected." +msgstr "" + +#: frappe/printing/page/print/print.js:574 +msgid "PDF printing via \"Raw Print\" is not supported." +msgstr "" + +#. Label of the pid (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "PID" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#. Option for the 'Request Method' (Select) field in DocType 'Webhook' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/webhook/webhook.json +msgid "POST" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#. Option for the 'Request Method' (Select) field in DocType 'Webhook' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/webhook/webhook.json +msgid "PUT" +msgstr "" + +#. Label of the package (Link) field in DocType 'Module Def' +#. Name of a DocType +#. Label of the package (Link) field in DocType 'Package Release' +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/package/package.json +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/workspace/build/build.json frappe/www/attribution.html:34 +msgid "Package" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/package_import/package_import.json +#: frappe/core/workspace/build/build.json +msgid "Package Import" +msgstr "" + +#. Label of the package_name (Data) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "Package Name" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/package_release/package_release.json +msgid "Package Release" +msgstr "" + +#. Label of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Packages" +msgstr "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Packages are lightweight apps (collection of Module Defs) that can be created, imported, or released right from the UI" +msgstr "" + +#. Label of the page (Link) field in DocType 'Custom Role' +#. Name of a DocType +#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for +#. Page and Report' +#. Label of the page (Link) field in DocType 'Role Permission for Page and +#. Report' +#. Label of a Link in the Build Workspace +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Page" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:63 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Page Break" +msgstr "" + +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json +msgid "Page Builder" +msgstr "" + +#. Label of the page_blocks (Table) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Page Building Blocks" +msgstr "" + +#. Label of the page_html (Section Break) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "Page HTML" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:73 +msgid "Page Height (in mm)" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:5 +msgid "Page Margins" +msgstr "" + +#. Label of the page_name (Data) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "Page Name" +msgstr "" + +#. Label of the page_number (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:63 +msgid "Page Number" +msgstr "" + +#. Label of the page_route (Small Text) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Page Route" +msgstr "" + +#. Label of the view_link_in_email (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Page Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:125 +msgid "Page Shortcuts" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:66 +msgid "Page Size" +msgstr "" + +#. Label of the page_title (Data) field in DocType 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Page Title" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:80 +msgid "Page Width (in mm)" +msgstr "" + +#: frappe/www/qrcode.py:35 +msgid "Page has expired!" +msgstr "" + +#: frappe/printing/doctype/print_settings/print_settings.py:70 +#: frappe/public/js/frappe/list/bulk_operations.js:106 +msgid "Page height and width cannot be zero" +msgstr "" + +#: frappe/public/js/frappe/views/container.js:52 frappe/www/404.html:23 +msgid "Page not found" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/web_page/web_page.json +msgid "Page to show on the website\n" +msgstr "" + +#: frappe/public/html/print_template.html:25 +#: frappe/public/js/frappe/views/reports/print_tree.html:89 +#: frappe/public/js/frappe/web_form/web_form.js:288 +#: frappe/templates/print_formats/standard.html:34 +msgid "Page {0} of {1}" +msgstr "" + +#. Label of the parameter (Data) field in DocType 'SMS Parameter' +#: frappe/core/doctype/sms_parameter/sms_parameter.json +msgid "Parameter" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:142 +#: frappe/public/js/frappe/views/workspace/workspace.js:434 +msgid "Parent" +msgstr "" + +#. Label of the parent_doctype (Link) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Parent DocType" +msgstr "" + +#. Label of the parent_document_type (Link) field in DocType 'Dashboard Chart' +#. Label of the parent_document_type (Link) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Parent Document Type" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:66 +msgid "Parent Document Type is required to create a number card" +msgstr "" + +#. Label of the parent_element_selector (Data) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Parent Element Selector" +msgstr "" + +#. Label of the parent_fieldname (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Parent Field" +msgstr "" + +#. Label of the nsm_parent_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype.py:934 +msgid "Parent Field (Tree)" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:940 +msgid "Parent Field must be a valid fieldname" +msgstr "" + +#. Label of the parent_label (Select) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "Parent Label" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1198 +msgid "Parent Missing" +msgstr "" + +#. Label of the parent_page (Link) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Parent Page" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:24 +msgid "Parent Table" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:404 +msgid "Parent document type is required to create a dashboard chart" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:253 +msgid "Parent is the name of the document to which the data will get added to." +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." +msgstr "" + +#: frappe/permissions.py:820 +msgid "Parentfield not specified in {0}: {1}" +msgstr "" + +#: frappe/client.py:467 +msgid "Parenttype, Parent and Parentfield are required to insert a child record" +msgstr "" + +#. Label of the partial (Check) field in DocType 'Personal Data Deletion Step' +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Partial" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Partial Success" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Partially Sent" +msgstr "" + +#. Label of the participants (Section Break) field in DocType 'Event' +#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json +msgid "Participants" +msgstr "" + +#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Pass" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Passive" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the password_settings (Section Break) field in DocType 'System +#. Settings' +#. Label of the password_tab (Tab Break) field in DocType 'System Settings' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the password (Password) field in DocType 'Email Account' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:493 +#: frappe/email/doctype/email_account/email_account.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/www/login.html:22 +msgid "Password" +msgstr "" + +#: frappe/core/doctype/user/user.py:1094 +msgid "Password Email Sent" +msgstr "" + +#: frappe/core/doctype/user/user.py:459 +msgid "Password Reset" +msgstr "" + +#. Label of the password_reset_limit (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Password Reset Link Generation Limit" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:897 +msgid "Password cannot be filtered" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:357 +msgid "Password changed successfully." +msgstr "" + +#. Label of the password (Password) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Password for Base DN" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:189 +msgid "Password is required or select Awaiting Password" +msgstr "" + +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "" + +#: frappe/public/js/frappe/desk.js:212 +msgid "Password missing in Email Account" +msgstr "" + +#: frappe/utils/password.py:47 +msgid "Password not found for {0} {1} {2}" +msgstr "" + +#: frappe/core/doctype/user/user.py:1093 +msgid "Password reset instructions have been sent to {}'s email" +msgstr "" + +#: frappe/www/update-password.html:191 +msgid "Password set" +msgstr "" + +#: frappe/auth.py:261 +msgid "Password size exceeded the maximum allowed size" +msgstr "" + +#: frappe/core/doctype/user/user.py:882 +msgid "Password size exceeded the maximum allowed size." +msgstr "" + +#: frappe/www/update-password.html:93 +msgid "Passwords do not match" +msgstr "" + +#: frappe/core/doctype/user/user.js:198 +msgid "Passwords do not match!" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:151 +msgid "Paste" +msgstr "" + +#. Label of the patch (Int) field in DocType 'Package Release' +#. Label of the patch (Code) field in DocType 'Patch Log' +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Patch" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Patch Log" +msgstr "" + +#: frappe/modules/patch_handler.py:136 +msgid "Patch type {} not found in patches.txt" +msgstr "" + +#. Label of the path (Data) field in DocType 'API Request Log' +#. Label of the path (Small Text) field in DocType 'Package Release' +#. Label of the path (Data) field in DocType 'Recorder' +#. Label of the path (Data) field in DocType 'Onboarding Step' +#. Label of the path (Data) field in DocType 'Web Page View' +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:35 +msgid "Path" +msgstr "" + +#. Label of the local_ca_certs_file (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Path to CA Certs File" +msgstr "" + +#. Label of the local_server_certificate_file (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Path to Server Certificate" +msgstr "" + +#. Label of the local_private_key_file (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Path to private Key File" +msgstr "" + +#: frappe/website/path_resolver.py:208 +msgid "Path {0} it not a valid path" +msgstr "" + +#. Label of the payload_count (Int) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Payload Count" +msgstr "" + +#. Label of the peak_memory_usage (Int) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Peak Memory Usage" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Step' +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Pending" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Pending Approval" +msgstr "" + +#. Label of the pending_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Pending Emails" +msgstr "" + +#. Label of the pending_jobs (Int) field in DocType 'System Health Report +#. Queue' +#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json +msgid "Pending Jobs" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Pending Verification" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Percent" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Percentage" +msgstr "" + +#. Label of the dynamic_date_period (Select) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Period" +msgstr "" + +#. Label of the permlevel (Int) field in DocType 'DocField' +#. Label of the permlevel (Int) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Perm Level" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Permanent" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1028 +msgid "Permanently Cancel {0}?" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1074 +msgid "Permanently Discard {0}?" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:861 +msgid "Permanently Submit {0}?" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:684 +msgid "Permanently delete {0}?" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 +msgid "Permission Error" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "Permission Inspector" +msgstr "" + +#. Label of the permlevel (Int) field in DocType 'Custom Field' +#: frappe/core/page/permission_manager/permission_manager.js:463 +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Permission Level" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:22 +msgid "Permission Levels" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Permission Log" +msgstr "" + +#. Label of a shortcut in the Users Workspace +#: frappe/core/workspace/users/users.json +msgid "Permission Manager" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Permission Query" +msgstr "" + +#. Label of the permission_rules (Section Break) field in DocType 'Custom Role' +#: frappe/core/doctype/custom_role/custom_role.json +msgid "Permission Rules" +msgstr "" + +#. Label of the permission_type (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "Permission Type" +msgstr "" + +#. Label of the section_break_4 (Section Break) field in DocType 'Custom +#. DocPerm' +#. Label of the permissions (Section Break) field in DocType 'DocField' +#. Label of the section_break_4 (Section Break) field in DocType 'DocPerm' +#. Label of the permissions (Table) field in DocType 'DocType' +#. Label of the permissions_tab (Tab Break) field in DocType 'DocType' +#. Label of the permissions (Section Break) field in DocType 'System Settings' +#. Label of a Card Break in the Users Workspace +#. Label of the permissions (Section Break) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 +#: 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:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 +msgid "Permissions Error" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:10 +msgid "Permissions are automatically applied to Standard Reports and searches." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:5 +msgid "Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:26 +msgid "Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:24 +msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:6 +msgid "Permissions get applied on Users based on what Roles they are assigned." +msgstr "" + +#. Name of a report +#. Label of a Link in the Users Workspace +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.json +#: frappe/core/workspace/users/users.json +msgid "Permitted Documents For User" +msgstr "" + +#. Label of the permitted_roles (Table MultiSelect) field in DocType 'Workflow +#. Action' +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Permitted Roles" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Personal" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Personal Data Deletion Request" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Personal Data Deletion Step" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +msgid "Personal Data Download Request" +msgstr "" + +#. Label of the phone (Data) field in DocType 'Address' +#. Label of the phone (Data) field in DocType 'Contact' +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the phone (Data) field in DocType 'Contact Us Settings' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Phone" +msgstr "" + +#. Label of the phone_no (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Phone No." +msgstr "" + +#: frappe/utils/__init__.py:124 +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:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 +msgid "Pick Columns" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Pie" +msgstr "" + +#. Label of the pincode (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Pincode" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Pink" +msgstr "" + +#. Label of the placeholder (Data) field in DocType 'DocField' +#. Label of the placeholder (Data) field in DocType 'Custom Field' +#. Label of the placeholder (Data) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Placeholder" +msgstr "" + +#. Option for the 'Message Type' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Plain Text" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Plant" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:544 +msgid "Please Authorize OAuth for Email Account {0}" +msgstr "" + +#: frappe/email/oauth.py:29 +msgid "Please Authorize OAuth for Email Account {}" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.py:77 +msgid "Please Duplicate this Website Theme to customize." +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:162 +msgid "Please Install the ldap3 library via pip to use ldap functionality." +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:308 +msgid "Please Set Chart" +msgstr "" + +#: frappe/core/doctype/sms_settings/sms_settings.py:88 +msgid "Please Update SMS Settings" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 +msgid "Please add a subject to your email" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:168 +msgid "Please add a valid comment." +msgstr "" + +#: frappe/core/doctype/user/user.py:1076 +msgid "Please ask your administrator to verify your sign-up" +msgstr "" + +#: frappe/public/js/frappe/form/controls/select.js:101 +msgid "Please attach a file first." +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:82 +msgid "Please attach an image file to set HTML for Footer." +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:70 +msgid "Please attach an image file to set HTML for Letter Head." +msgstr "" + +#: frappe/core/doctype/package_import/package_import.py:39 +msgid "Please attach the package" +msgstr "" + +#: frappe/utils/dashboard.py:58 +msgid "Please check the filter values set for Dashboard Chart: {}" +msgstr "" + +#: frappe/model/base_document.py:1008 +msgid "Please check the value of \"Fetch From\" set for field {0}" +msgstr "" + +#: frappe/core/doctype/user/user.py:1074 +msgid "Please check your email for verification" +msgstr "" + +#: frappe/email/smtp.py:134 +msgid "Please check your email login credentials." +msgstr "" + +#: frappe/twofactor.py:243 +msgid "Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it." +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.js:23 +msgid "Please click Edit on the Workspace for best results" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:158 +msgid "Please click on 'Export Errored Rows', fix the errors and import again." +msgstr "" + +#: frappe/twofactor.py:286 +msgid "Please click on the following link and follow the instructions on the page. {0}" +msgstr "" + +#: frappe/templates/emails/password_reset.html:2 +msgid "Please click on the following link to set your new password" +msgstr "" + +#: frappe/www/confirm_workflow_action.html:4 +msgid "Please confirm your action to {0} this document." +msgstr "" + +#: frappe/printing/page/print/print.js:658 +msgid "Please contact your system manager to install correct version." +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.js:45 +msgid "Please create Card first" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:42 +msgid "Please create chart first" +msgstr "" + +#: frappe/desk/form/meta.py:190 +msgid "Please delete the field from {0} or add the required doctype." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:184 +msgid "Please do not change the template headings." +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:19 +msgid "Please duplicate this to make changes" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:165 +msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.js:45 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:17 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 +#: frappe/public/js/frappe/list/bulk_operations.js:161 +#: frappe/public/js/frappe/utils/utils.js:1471 +msgid "Please enable pop-ups" +msgstr "" + +#: frappe/public/js/frappe/microtemplate.js:162 +#: frappe/public/js/frappe/microtemplate.js:177 +msgid "Please enable pop-ups in your browser" +msgstr "" + +#: frappe/integrations/google_oauth.py:55 +msgid "Please enable {} before continuing." +msgstr "" + +#: frappe/utils/oauth.py:191 +msgid "Please ensure that your profile has an email address" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 +msgid "Please enter Access Token URL" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 +msgid "Please enter Authorize URL" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 +msgid "Please enter Base URL" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 +msgid "Please enter Client ID before social login is enabled" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 +msgid "Please enter Client Secret before social login is enabled" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.py:54 +msgid "Please enter OpenID Configuration URL" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 +msgid "Please enter Redirect URL" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:163 +msgid "Please enter a valid email address." +msgstr "" + +#: frappe/templates/includes/contact.js:15 +msgid "Please enter both your email and message so that we can get back to you. Thanks!" +msgstr "" + +#: frappe/www/update-password.html:259 +msgid "Please enter the password" +msgstr "" + +#: frappe/public/js/frappe/desk.js:217 +msgctxt "Email Account" +msgid "Please enter the password for: {0}" +msgstr "" + +#: frappe/core/doctype/sms_settings/sms_settings.py:43 +msgid "Please enter valid mobile nos" +msgstr "" + +#: frappe/www/update-password.html:142 +msgid "Please enter your new password." +msgstr "" + +#: frappe/www/update-password.html:135 +msgid "Please enter your old password." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 +msgid "Please find attached {0}: {1}" +msgstr "" + +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 +msgid "Please login to post a comment." +msgstr "" + +#: frappe/core/doctype/communication/communication.py:186 +msgid "Please make sure the Reference Communication Docs are not circularly linked." +msgstr "" + +#: frappe/model/document.py:992 +msgid "Please refresh to get the latest document." +msgstr "" + +#: frappe/printing/page/print/print.js:575 +msgid "Please remove the printer mapping in Printer Settings and try again." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:358 +msgid "Please save before attaching." +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:52 +msgid "Please save the document before assignment" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:72 +msgid "Please save the document before removing assignment" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1718 +msgid "Please save the report first" +msgstr "" + +#: frappe/website/doctype/web_template/web_template.js:22 +msgid "Please save to edit the template." +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:31 +msgid "Please select DocType first" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:27 +msgid "Please select Entity Type first" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:116 +msgid "Please select Minimum Password Score" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1193 +msgid "Please select X and Y fields" +msgstr "" + +#: frappe/utils/__init__.py:131 +msgid "Please select a country code for field {1}." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 +msgid "Please select a file first." +msgstr "" + +#: frappe/utils/file_manager.py:50 +msgid "Please select a file or url" +msgstr "" + +#: frappe/model/rename_doc.py:684 +msgid "Please select a valid csv file with data" +msgstr "" + +#: frappe/utils/data.py:309 +msgid "Please select a valid date filter" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:203 +msgid "Please select applicable Doctypes" +msgstr "" + +#: frappe/model/db_query.py:1163 +msgid "Please select atleast 1 column from {0} to sort/group" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:214 +msgid "Please select prefix first" +msgstr "" + +#: frappe/core/doctype/data_export/data_export.js:42 +msgid "Please select the Document Type." +msgstr "" + +#. Description of the 'Directory Server' (Select) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Please select the LDAP Directory being used" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.js:100 +msgid "Please select {0}" +msgstr "" + +#: frappe/contacts/doctype/contact/contact.py:298 +msgid "Please set Email Address" +msgstr "" + +#: frappe/printing/page/print/print.js:589 +msgid "Please set a printer mapping for this print format in the Printer Settings" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1416 +msgid "Please set filters" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 +msgid "Please set filters value in Report Filter table." +msgstr "" + +#: frappe/model/naming.py:580 +msgid "Please set the document name" +msgstr "" + +#: frappe/desk/doctype/dashboard/dashboard.py:120 +msgid "Please set the following documents in this Dashboard as standard first." +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:120 +msgid "Please set the series to be used." +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:129 +msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104 +msgid "Please setup a message first" +msgstr "" + +#: frappe/core/doctype/user/user.py:424 +msgid "Please setup default outgoing Email Account from Settings > Email Account" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:432 +msgid "Please setup default outgoing Email Account from Tools > Email Account" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:774 +msgid "Please specify" +msgstr "" + +#: frappe/permissions.py:796 +msgid "Please specify a valid parent DocType for {0}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:163 +msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:160 +msgid "Please specify the minutes offset" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:154 +msgid "Please specify which date field must be checked" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:158 +msgid "Please specify which datetime field must be checked" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:167 +msgid "Please specify which value field must be checked" +msgstr "" + +#: frappe/public/js/frappe/request.js:187 +#: frappe/public/js/frappe/views/translation_manager.js:102 +msgid "Please try again" +msgstr "" + +#: frappe/integrations/google_oauth.py:58 +msgid "Please update {} before continuing." +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333 +msgid "Please use a valid LDAP search filter" +msgstr "" + +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." +msgstr "" + +#: frappe/utils/password.py:217 +msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." +msgstr "" + +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "" + +#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Polling" +msgstr "" + +#. Label of the popover_element (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Popover Element" +msgstr "" + +#. Label of the ondemand_description (HTML Editor) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Popover or Modal Description" +msgstr "" + +#. Label of the smtp_port (Data) field in DocType 'Email Account' +#. Label of the incoming_port (Data) field in DocType 'Email Account' +#. Label of the smtp_port (Data) field in DocType 'Email Domain' +#. Label of the incoming_port (Data) field in DocType 'Email Domain' +#. Label of the port (Int) field in DocType 'Network Printer Settings' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Port" +msgstr "" + +#. Label of the menu (Table) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Portal Menu" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +msgid "Portal Menu Item" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/portal_settings/portal_settings.json +#: frappe/website/workspace/website/website.json +msgid "Portal Settings" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:24 +msgid "Portrait" +msgstr "" + +#. Label of the position (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Position" +msgstr "" + +#: frappe/templates/discussions/comment_box.html:29 +#: frappe/templates/discussions/reply_card.html:15 +#: frappe/templates/discussions/reply_section.html:29 +#: frappe/templates/discussions/reply_section.html:53 +#: frappe/templates/discussions/topic_modal.html:11 +msgid "Post" +msgstr "" + +#: frappe/templates/discussions/reply_section.html:40 +msgid "Post it here, our mentors will help you out." +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Postal" +msgstr "" + +#. Label of the pincode (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 +msgid "Postal Code" +msgstr "" + +#. Label of the posting_timestamp (Datetime) field in DocType 'Changelog Feed' +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +msgid "Posting Timestamp" +msgstr "" + +#: frappe/database/query.py:1520 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" + +#. Label of the precision (Select) field in DocType 'DocField' +#. Label of the precision (Select) field in DocType 'Custom Field' +#. Label of the precision (Select) field in DocType 'Customize Form Field' +#. Label of the precision (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Precision" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 +msgid "Precision should be between 1 and 6" +msgstr "" + +#: frappe/utils/password_strength.py:187 +msgid "Predictable substitutions like '@' instead of 'a' don't help very much." +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:34 +msgid "Prefer not to say" +msgstr "" + +#. Label of the is_primary_address (Check) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Preferred Billing Address" +msgstr "" + +#. Label of the is_shipping_address (Check) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Preferred Shipping Address" +msgstr "" + +#. Label of the prefix (Data) field in DocType 'Document Naming Rule' +#. Label of the prefix (Autocomplete) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Prefix" +msgstr "" + +#. Name of a DocType +#. Label of the prepared_report (Check) field in DocType 'Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:32 +msgid "Prepared Report" +msgstr "" + +#. Name of a report +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json +msgid "Prepared Report Analytics" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Prepared Report User" +msgstr "" + +#: frappe/desk/query_report.py:308 +msgid "Prepared report render failed" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:473 +msgid "Preparing Report" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:434 +msgid "Prepend the template to the email message" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:139 +msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:141 +msgid "Press Enter to save" +msgstr "" + +#. Label of the section_import_preview (Section Break) field in DocType 'Data +#. Import' +#. Label of the preview (Section Break) field in DocType 'File' +#. Label of the preview_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Label of the preview (Attach Image) field in DocType 'Print Style' +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/file/file.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/email/doctype/notification/notification.js:194 +#: frappe/integrations/doctype/webhook/webhook.js:90 +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/public/js/frappe/form/controls/markdown_editor.js:17 +#: frappe/public/js/frappe/form/controls/markdown_editor.js:31 +#: frappe/public/js/frappe/ui/capture.js:236 +msgid "Preview" +msgstr "" + +#. Label of the preview_html (HTML) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Preview HTML" +msgstr "" + +#. Label of the preview_message (Button) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Preview Message" +msgstr "" + +#: frappe/public/js/form_builder/form_builder.bundle.js:83 +msgid "Preview Mode" +msgstr "" + +#. Label of the series_preview (Text) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Preview of generated names" +msgstr "" + +#: frappe/public/js/frappe/views/render_preview.js:19 +msgid "Preview on {0}" +msgstr "" + +#: frappe/public/js/print_format_builder/Preview.vue:103 +msgid "Preview type" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.js:81 +msgid "Preview:" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:15 +#: frappe/public/js/frappe/web_form/web_form.js:97 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:16 +#: frappe/templates/includes/slideshow.html:34 +#: frappe/website/web_template/slideshow/slideshow.html:40 +msgid "Previous" +msgstr "" + +#: frappe/public/js/frappe/ui/slides.js:351 +msgctxt "Go to previous slide" +msgid "Previous" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:2216 +msgid "Previous Submission" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Primary" +msgstr "" + +#: frappe/public/js/frappe/form/templates/address_list.html:27 +msgid "Primary Address" +msgstr "" + +#. Label of the primary_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Primary Color" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:23 +msgid "Primary Contact" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:69 +msgid "Primary Email" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:49 +msgid "Primary Mobile" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:41 +msgid "Primary Phone" +msgstr "" + +#: frappe/database/mariadb/schema.py:156 frappe/database/postgres/schema.py:199 +#: frappe/database/sqlite/schema.py:141 +msgid "Primary key of doctype {0} can not be changed as there are existing values." +msgstr "" + +#. Label of the print (Check) field in DocType 'Custom DocPerm' +#. Label of the print (Check) field in DocType 'DocPerm' +#. Label of the print (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/success_action/success_action.js:58 +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/printing/page/print/print.js:78 +#: frappe/public/js/frappe/form/success_action.js:81 +#: frappe/public/js/frappe/form/templates/print_layout.html:46 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 +#: frappe/public/js/frappe/list/bulk_operations.js:95 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 +msgid "Print" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2166 +msgctxt "Button in list view actions menu" +msgid "Print" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:48 +msgid "Print Documents" +msgstr "" + +#. Label of the print_format (Link) field in DocType 'Auto Repeat' +#. Label of a Link in the Build Workspace +#. Label of the print_format (Link) field in DocType 'Notification' +#. Name of a DocType +#. Label of the print_format (Link) field in DocType 'Web Form' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/workspace/build/build.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 +#: frappe/public/js/frappe/list/bulk_operations.js:59 +#: frappe/website/doctype/web_form/web_form.json +msgid "Print Format" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Label of the print_format_builder (Check) field in DocType 'Print Format' +#: frappe/automation/workspace/tools/tools.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:44 +#: frappe/printing/page/print_format_builder/print_format_builder.js:67 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:4 +msgid "Print Format Builder" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Print Format Builder (New)" +msgstr "" + +#. Label of the print_format_builder_beta (Check) field in DocType 'Print +#. Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format Builder Beta" +msgstr "" + +#: frappe/utils/pdf.py:63 +msgid "Print Format Error" +msgstr "" + +#. Name of a DocType +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +msgid "Print Format Field Template" +msgstr "" + +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "" + +#. Label of the print_format_help (HTML) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format Help" +msgstr "" + +#. Label of the print_format_type (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format Type" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1586 +msgid "Print Format not found" +msgstr "" + +#: frappe/www/printview.py:451 +msgid "Print Format {0} is disabled" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#. Label of the print_heading (Data) field in DocType 'Print Heading' +#: frappe/automation/workspace/tools/tools.json +#: frappe/printing/doctype/print_heading/print_heading.json +msgid "Print Heading" +msgstr "" + +#. Label of the print_hide (Check) field in DocType 'DocField' +#. Label of the print_hide (Check) field in DocType 'Custom Field' +#. Label of the print_hide (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Hide" +msgstr "" + +#. Label of the print_hide_if_no_value (Check) field in DocType 'DocField' +#. Label of the print_hide_if_no_value (Check) field in DocType 'Custom Field' +#. Label of the print_hide_if_no_value (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Hide If No Value" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:168 +msgid "Print Language" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:225 +msgid "Print Sent to the printer!" +msgstr "" + +#. Label of the server_printer (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Print Server" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Label of the column_break_25 (Section Break) field in DocType 'Notification' +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.js:6 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 +#: frappe/public/js/frappe/form/templates/print_layout.html:35 +msgid "Print Settings" +msgstr "" + +#. Label of the print_style_section (Section Break) field in DocType 'Print +#. Settings' +#. Label of the print_style (Link) field in DocType 'Print Settings' +#. Name of a DocType +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.json +msgid "Print Style" +msgstr "" + +#. Label of the print_style_name (Data) field in DocType 'Print Style' +#: frappe/printing/doctype/print_style/print_style.json +msgid "Print Style Name" +msgstr "" + +#. Label of the print_style_preview (HTML) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Print Style Preview" +msgstr "" + +#. Label of the print_width (Data) field in DocType 'DocField' +#. Label of the print_width (Data) field in DocType 'Custom Field' +#. Label of the print_width (Data) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Width" +msgstr "" + +#. Description of the 'Print Width' (Data) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Width of the field, if the field is a column in a table" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:170 +msgid "Print document" +msgstr "" + +#. Label of the with_letterhead (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Print with letterhead" +msgstr "" + +#: frappe/printing/page/print/print.js:870 +msgid "Printer" +msgstr "" + +#: frappe/printing/page/print/print.js:847 +msgid "Printer Mapping" +msgstr "" + +#. Label of the printer_name (Select) field in DocType 'Network Printer +#. Settings' +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Printer Name" +msgstr "" + +#: frappe/printing/page/print/print.js:839 +msgid "Printer Settings" +msgstr "" + +#: frappe/printing/page/print/print.js:588 +msgid "Printer mapping not set." +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Printing" +msgstr "" + +#: frappe/utils/print_format.py:291 +msgid "Printing failed" +msgstr "" + +#. Label of the priority (Int) field in DocType 'Assignment Rule' +#. Label of the priority (Int) field in DocType 'Document Naming Rule' +#. Label of the priority (Select) field in DocType 'ToDo' +#. Label of the priority (Int) field in DocType 'Email Queue' +#. Label of the idx (Int) field in DocType 'Web Page' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:37 +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:211 +#: frappe/website/doctype/web_page/web_page.json +msgid "Priority" +msgstr "" + +#. Label of the private (Check) field in DocType 'Custom HTML Block' +#. Option for the 'Event Type' (Select) field in DocType 'Event' +#. Label of the private (Check) field in DocType 'Kanban Board' +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/note/note_list.js:8 +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:35 +msgid "Private" +msgstr "" + +#. Label of the private_files_size (Float) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Private Files (MB)" +msgstr "" + +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "" + +#. Description of the 'Auto Reply Message' (Text Editor) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference" +msgstr "" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22 +msgid "Proceed" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:940 +msgid "Proceed Anyway" +msgstr "" + +#: frappe/public/js/frappe/form/controls/table.js:104 +msgid "Processing" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:52 +msgid "Processing..." +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:51 +msgid "Prof" +msgstr "" + +#. Group in User's connections +#: frappe/core/doctype/user/user.json +msgid "Profile" +msgstr "" + +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "" + +#: frappe/public/js/frappe/socketio_client.js:82 +msgid "Progress" +msgstr "" + +#: 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/custom/doctype/property_setter/property_setter.json +msgid "Property" +msgstr "" + +#. Label of the property_depends_on_section (Section Break) field in DocType +#. 'Customize Form Field' +#. Label of the property_depends_on_section (Section Break) field in DocType +#. 'Web Form Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Property Depends On" +msgstr "" + +#. Name of a DocType +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Property Setter" +msgstr "" + +#. Description of a DocType +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Property Setter overrides a standard DocType or Field property" +msgstr "" + +#. Label of the property_type (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Property Type" +msgstr "" + +#. Label of the protect_attached_files (Check) field in DocType 'DocType' +#. Label of the protect_attached_files (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Protect Attached Files" +msgstr "" + +#: frappe/core/doctype/file/file.py:526 +msgid "Protected File" +msgstr "" + +#. Description of the 'Allowed File Extensions' (Small Text) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Provide a list of allowed file extensions for file uploads. Each line should contain one allowed file type. If unset, all file extensions are allowed. Example:
    CSV
    JPG
    PNG" +msgstr "" + +#. Label of the provider (Data) field in DocType 'User Social Login' +#. Label of the provider (Select) field in DocType 'Geolocation Settings' +#: frappe/core/doctype/user_social_login/user_social_login.json +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Provider" +msgstr "" + +#. Label of the provider_name (Data) field in DocType 'Connected App' +#. Label of the provider_name (Data) field in DocType 'Social Login Key' +#. Label of the provider_name (Data) field in DocType 'Token Cache' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Provider Name" +msgstr "" + +#. Option for the 'Event Type' (Select) field in DocType 'Event' +#. Label of the public (Check) field in DocType 'Note' +#. Label of the public (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/note/note_list.js:6 +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/views/interaction.js:78 +#: frappe/public/js/frappe/views/workspace/workspace.js:440 +msgid "Public" +msgstr "" + +#. Label of the public_files_size (Float) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Public Files (MB)" +msgstr "" + +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "" + +#. Label of the publish (Check) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 +#: frappe/website/doctype/web_form/web_form.js:86 +msgid "Publish" +msgstr "" + +#. Label of the published (Check) field in DocType 'Comment' +#. Label of the published (Check) field in DocType 'Help Article' +#. Label of the published (Check) field in DocType 'Help Category' +#. Label of the published (Check) field in DocType 'Web Form' +#. Label of the published (Check) field in DocType 'Web Page' +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_form/web_form_list.js:5 +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/web_page/web_page_list.js:5 +msgid "Published" +msgstr "" + +#. Label of the publishing_dates_section (Section Break) field in DocType 'Web +#. Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Publishing Dates" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:208 +msgid "Pull Emails" +msgstr "" + +#. Label of the pull_from_google_calendar (Check) field in DocType 'Google +#. Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Pull from Google Calendar" +msgstr "" + +#. Label of the pull_from_google_contacts (Check) field in DocType 'Google +#. Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Pull from Google Contacts" +msgstr "" + +#. Label of the pulled_from_google_calendar (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Pulled from Google Calendar" +msgstr "" + +#. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Pulled from Google Contacts" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:209 +msgid "Pulling emails..." +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Purchase Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Purchase Master Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Purchase User" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Purple" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Push Notification Settings" +msgstr "" + +#. Label of a Card Break in the Integrations Workspace +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Push Notifications" +msgstr "" + +#. Label of the push_to_google_calendar (Check) field in DocType 'Google +#. Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Push to Google Calendar" +msgstr "" + +#. Label of the push_to_google_contacts (Check) field in DocType 'Google +#. Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Push to Google Contacts" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23 +msgid "Put on Hold" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json +msgid "Python" +msgstr "" + +#: frappe/www/qrcode.html:3 +msgid "QR Code" +msgstr "" + +#: frappe/www/qrcode.html:6 +msgid "QR Code for Login Verification" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:401 +msgid "Quarterly" +msgstr "" + +#. Label of the query (Data) field in DocType 'Recorder Query' +#. Label of the query (Code) field in DocType 'Report' +#: frappe/core/doctype/recorder_query/recorder_query.json +#: frappe/core/doctype/report/report.json +msgid "Query" +msgstr "" + +#. Label of the section_break_6 (Section Break) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Query / Script" +msgstr "" + +#. Label of the query_options (Small Text) field in DocType 'Contact Us +#. Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Query Options" +msgstr "" + +#. Label of the query_parameters (Table) field in DocType 'Connected App' +#. Name of a DocType +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/query_parameters/query_parameters.json +msgid "Query Parameters" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +#: frappe/public/js/frappe/views/reports/query_report.js:17 +msgid "Query Report" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:188 +msgid "Query analysis complete. Check suggested indexes." +msgstr "" + +#: frappe/utils/safe_exec.py:497 +msgid "Query must be of SELECT or read-only WITH type." +msgstr "" + +#. Label of the queue (Select) field in DocType 'RQ Job' +#. Label of the queue (Data) field in DocType 'System Health Report Queue' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json +msgid "Queue" +msgstr "" + +#: frappe/utils/background_jobs.py:731 +msgid "Queue Overloaded" +msgstr "" + +#. Label of the queue_status (Table) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Queue Status" +msgstr "" + +#. Label of the queue_type (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Queue Type(s)" +msgstr "" + +#. Label of the queue_in_background (Check) field in DocType 'DocType' +#. Label of the queue_in_background (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Queue in Background (BETA)" +msgstr "" + +#: frappe/utils/background_jobs.py:556 +msgid "Queue should be one of {0}" +msgstr "" + +#. Label of the queue (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Queue(s)" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#. Option for the 'Status' (Select) field in DocType 'Submission Queue' +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Queued" +msgstr "" + +#. Label of the queued_at (Datetime) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Queued At" +msgstr "" + +#. Label of the queued_by (Data) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Queued By" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.py:174 +msgid "Queued for Submission. You can track the progress over {0}." +msgstr "" + +#: frappe/desk/page/backups/backups.py:96 +msgid "Queued for backup. You will receive an email with the download link" +msgstr "" + +#. Label of the queues (Data) field in DocType 'System Health Report Workers' +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "Queues" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:85 +msgid "Queuing {0} for Submission" +msgstr "" + +#. Label of the quick_entry (Check) field in DocType 'DocType' +#. Label of the quick_entry (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Quick Entry" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:3 +msgid "Quick Help for Setting Permissions" +msgstr "" + +#. Label of the quick_list_filter (Code) field in DocType 'Workspace Quick +#. List' +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +msgid "Quick List Filter" +msgstr "" + +#. Label of the quick_lists_tab (Tab Break) field in DocType 'Workspace' +#. Label of the quick_lists (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Quick Lists" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:314 +msgid "Quoting must be between 0 and 3" +msgstr "" + +#. Label of the raw_information_log_section (Section Break) field in DocType +#. 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "RAW Information Log" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/rq_job/rq_job.json +msgid "RQ Job" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "RQ Worker" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Random" +msgstr "" + +#: frappe/website/report/website_analytics/website_analytics.js:20 +msgid "Range" +msgstr "" + +#. Label of the rate_limiting_section (Section Break) field in DocType 'Server +#. Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Rate Limiting" +msgstr "" + +#. Label of the rate_limit_email_link_login (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Rate limit for email link login" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Rating" +msgstr "" + +#. Label of the raw_commands (Code) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:98 +msgid "Raw Commands" +msgstr "" + +#. Label of the raw (Code) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Raw Email" +msgstr "" + +#. Label of the raw_printing (Check) field in DocType 'Print Format' +#. Label of the raw_printing_section (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Raw Printing" +msgstr "" + +#: frappe/printing/page/print/print.js:178 +msgid "Raw Printing Setting" +msgstr "" + +#: frappe/public/js/frappe/form/templates/print_layout.html:37 +msgid "Raw Printing Settings" +msgstr "" + +#: frappe/desk/doctype/console_log/console_log.js:6 +msgid "Re-Run in Console" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:726 +msgid "Re:" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:268 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 +msgid "Re: {0}" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Label of the read (Check) field in DocType 'Custom DocPerm' +#. Label of the read (Check) field in DocType 'DocPerm' +#. Label of the read (Check) field in DocType 'DocShare' +#. Label of the read (Check) field in DocType 'User Document Type' +#. Label of the read (Check) field in DocType 'Notification Log' +#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue' +#: frappe/client.py:450 frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Read" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the read_only (Check) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Label of the read_only (Check) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the read_only (Check) field in DocType 'Customize Form Field' +#. Label of the read_only (Check) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/public/js/form_builder/form_builder.bundle.js:83 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Read Only" +msgstr "" + +#. Label of the read_only_depends_on (Code) field in DocType 'Custom Field' +#. Label of the read_only_depends_on (Code) field in DocType 'Customize Form +#. Field' +#. Label of the read_only_depends_on (Code) field in DocType 'Web Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Read Only Depends On" +msgstr "" + +#. Label of the read_only_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Read Only Depends On (JS)" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:16 +#: frappe/templates/includes/navbar/navbar_items.html:97 +msgid "Read Only Mode" +msgstr "" + +#. Label of the read_by_recipient (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Read by Recipient" +msgstr "" + +#. Label of the read_by_recipient_on (Datetime) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Read by Recipient On" +msgstr "" + +#: frappe/desk/doctype/note/note.js:10 +msgid "Read mode" +msgstr "" + +#: frappe/utils/safe_exec.py:99 +msgid "Read the documentation to know more" +msgstr "" + +#. Label of the readme (Markdown Editor) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "Readme" +msgstr "" + +#. Label of the realtime_socketio_section (Section Break) field in DocType +#. 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Realtime (SocketIO)" +msgstr "" + +#. Label of the reason (Long Text) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Reason" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:894 +msgid "Rebuild" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:511 +msgid "Rebuild Tree" +msgstr "" + +#: frappe/utils/nestedset.py:177 +msgid "Rebuilding of tree is not supported for {}" +msgstr "" + +#. Option for the 'Sent or Received' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Received" +msgstr "" + +#: frappe/integrations/doctype/token_cache/token_cache.py:49 +msgid "Received an invalid token type." +msgstr "" + +#. Label of the receiver_by_document_field (Select) field in DocType +#. 'Notification Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Receiver By Document Field" +msgstr "" + +#. Label of the receiver_by_role (Link) field in DocType 'Notification +#. Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Receiver By Role" +msgstr "" + +#. Label of the receiver_parameter (Data) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Receiver Parameter" +msgstr "" + +#: frappe/utils/password_strength.py:123 +msgid "Recent years are easy to guess." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 +msgid "Recents" +msgstr "" + +#. Label of the recipients (Table) field in DocType 'Email Queue' +#. Label of the recipient (Data) field in DocType 'Email Queue Recipient' +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +msgid "Recipient" +msgstr "" + +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Recipient Unsubscribed" +msgstr "" + +#. Label of the recipients (Small Text) field in DocType 'Auto Repeat' +#. Label of the column_break_5 (Section Break) field in DocType 'Notification' +#. Label of the recipients (Table) field in DocType 'Notification' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/email/doctype/notification/notification.json +msgid "Recipients" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/recorder/recorder.json +msgid "Recorder" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Recorder Query" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json +msgid "Recorder Suggested Index" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_help.html:2 +msgid "Records for following doctypes will be filtered" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1609 +msgid "Recursive Fetch From" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Red" +msgstr "" + +#. Label of the redirect_http_status (Select) field in DocType 'Website Route +#. Redirect' +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +msgid "Redirect HTTP Status" +msgstr "" + +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + +#. Label of the redirect_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Redirect URI" +msgstr "" + +#. Label of the redirect_uri_bound_to_authorization_code (Data) field in +#. DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Redirect URI Bound To Auth Code" +msgstr "" + +#. Label of the redirect_uris (Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Redirect URIs" +msgstr "" + +#. Label of the redirect_url (Small Text) field in DocType 'User' +#. Label of the redirect_url (Data) field in DocType 'Social Login Key' +#: frappe/core/doctype/user/user.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Redirect URL" +msgstr "" + +#. Description of the 'Default App' (Select) field in DocType 'System Settings' +#. Description of the 'Default App' (Select) field in DocType 'User' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +msgid "Redirect to the selected app after login" +msgstr "" + +#. Description of the 'Welcome URL' (Data) field in DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Redirect to this URL after successful confirmation." +msgstr "" + +#. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Redirects" +msgstr "" + +#: frappe/sessions.py:149 +msgid "Redis cache server not running. Please contact Administrator / Tech support" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:530 +msgid "Redo" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:164 +#: frappe/public/js/frappe/form/toolbar.js:538 +msgid "Redo last action" +msgstr "" + +#. Label of the ref_doctype (Link) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Ref DocType" +msgstr "" + +#: frappe/desk/doctype/form_tour/form_tour.js:38 +msgid "Referance Doctype and Dashboard Name both can't be used at the same time." +msgstr "" + +#. Label of the linked_with (Section Break) field in DocType 'Address' +#. Label of the contact_details (Section Break) field in DocType 'Contact' +#. Label of the reference_section (Section Break) field in DocType 'Activity +#. Log' +#. Label of the reference_section (Section Break) field in DocType +#. 'Communication' +#. Label of the reference (Dynamic Link) field in DocType 'Permission Log' +#. Label of the section_break_6 (Section Break) field in DocType 'ToDo' +#. Label of the reference_section (Section Break) field in DocType 'Integration +#. Request' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/core/doctype/user_type/user_type_dashboard.py:5 +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:42 +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/public/js/frappe/views/interaction.js:54 +msgid "Reference" +msgstr "" + +#. Label of the date_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Reference Date" +msgstr "" + +#. Label of the datetime_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Reference Datetime" +msgstr "" + +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "" + +#. Label of the reference_name (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Reference DocName" +msgstr "" + +#. Label of the reference_doctype (Link) field in DocType 'Error Log' +#. Label of the ref_doctype (Link) field in DocType 'Submission Queue' +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Reference DocType" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26 +msgid "Reference DocType and Reference Name are required" +msgstr "" + +#. Label of the ref_docname (Dynamic Link) field in DocType 'Submission Queue' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Discussion +#. Topic' +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/website/doctype/discussion_topic/discussion_topic.json +msgid "Reference Docname" +msgstr "" + +#. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' +#. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' +#: frappe/core/doctype/communication/communication.js:143 +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/views/render_preview.js:34 +#: frappe/website/doctype/discussion_topic/discussion_topic.json +msgid "Reference Doctype" +msgstr "" + +#. Label of the reference_document (Dynamic Link) field in DocType 'Auto +#. Repeat' +#. Label of the reference_document (Data) field in DocType 'Access Log' +#. Label of the reference_doctype (Link) field in DocType 'Form Tour' +#. Label of the reference_document (Link) field in DocType 'Onboarding Step' +#. Label of the reference_document (Data) field in DocType 'Webhook Request +#. Log' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:4 +#: frappe/core/doctype/access_log/access_log.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Reference Document" +msgstr "" + +#. Label of the reference_docname (Dynamic Link) field in DocType 'Document +#. Share Key' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Integration +#. Request' +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Reference Document Name" +msgstr "" + +#. Label of the reference_doctype (Link) field in DocType 'Auto Repeat' +#. Label of the reference_doctype (Link) field in DocType 'Activity Log' +#. Label of the reference_doctype (Link) field in DocType 'Comment' +#. Label of the reference_doctype (Link) field in DocType 'Communication' +#. Label of the parent (Data) field in DocType 'Custom DocPerm' +#. Label of the ref_doctype (Data) field in DocType 'Custom Role' +#. Label of the reference_doctype (Link) field in DocType 'Document Share Key' +#. Label of the reference_doctype (Link) field in DocType 'Server Script' +#. Label of the ref_doctype (Link) field in DocType 'Success Action' +#. Label of the reference_doctype (Link) field in DocType 'View Log' +#. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' +#. Label of the reference_doctype (Link) field in DocType 'Event Participants' +#. Label of the reference_doctype (Link) field in DocType 'Kanban Board' +#. Label of the reference_doctype (Link) field in DocType 'List Filter' +#. Label of the reference_doctype (Link) field in DocType 'Email Queue' +#. Label of the reference_doctype (Link) field in DocType 'Email Unsubscribe' +#. Label of the reference_doctype (Link) field in DocType 'Integration Request' +#. Label of the reference_doctype (Link) field in DocType 'Portal Menu Item' +#. Label of the reference_doctype (Link) field in DocType 'Workflow Action' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/success_action/success_action.json +#: frappe/core/doctype/view_log/view_log.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/event_participants/event_participants.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Reference Document Type" +msgstr "" + +#. Label of the reference_name (Dynamic Link) field in DocType 'Activity Log' +#. Label of the reference_name (Dynamic Link) field in DocType 'Comment' +#. Label of the reference_name (Dynamic Link) field in DocType 'Communication' +#. Label of the docname (Data) field in DocType 'Data Import Log' +#. Label of the reference_name (Data) field in DocType 'Error Log' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event +#. Participants' +#. Label of the reference_name (Dynamic Link) field in DocType 'ToDo' +#. Label of the reference_name (Dynamic Link) field in DocType 'Email +#. Unsubscribe' +#. Label of the reference_name (Dynamic Link) field in DocType 'Workflow +#. Action' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.js:152 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/desk/doctype/event_participants/event_participants.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Reference Name" +msgstr "" + +#. Label of the reference_owner (Read Only) field in DocType 'Activity Log' +#. Label of the reference_owner (Data) field in DocType 'Comment' +#. Label of the reference_owner (Read Only) field in DocType 'Communication' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +msgid "Reference Owner" +msgstr "" + +#. Label of the reference_report (Data) field in DocType 'Report' +#. Label of the reference_report (Link) field in DocType 'Onboarding Step' +#. Label of the reference_report (Data) field in DocType 'Auto Email Report' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Reference Report" +msgstr "" + +#. Label of the reference_type (Link) field in DocType 'Permission Log' +#. Label of the reference_type (Link) field in DocType 'ToDo' +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/desk/doctype/todo/todo.json +msgid "Reference Type" +msgstr "" + +#. Label of the reference_name (Dynamic Link) field in DocType 'View Log' +#: frappe/core/doctype/view_log/view_log.json +msgid "Reference name" +msgstr "" + +#: frappe/templates/emails/auto_reply.html:3 +msgid "Reference: {0} {1}" +msgstr "" + +#. Label of the referrer (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:37 +msgid "Referrer" +msgstr "" + +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 +#: frappe/public/js/frappe/form/form.js:1201 +#: frappe/public/js/frappe/form/templates/print_layout.html:6 +#: frappe/public/js/frappe/list/base_list.js:66 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 +#: frappe/public/js/frappe/widgets/chart_widget.js:291 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 +#: frappe/public/js/print_format_builder/Preview.vue:24 +msgid "Refresh" +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:177 +msgid "Refresh All" +msgstr "" + +#. Label of the refresh_google_sheet (Button) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Refresh Google Sheet" +msgstr "" + +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + +#. Label of the refresh_token (Password) field in DocType 'Google Calendar' +#. Label of the refresh_token (Password) field in DocType 'Google Contacts' +#. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' +#. Label of the refresh_token (Password) field in DocType 'Token Cache' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Refresh Token" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:536 +msgctxt "Document count in list view" +msgid "Refreshing" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.js:57 +#: frappe/core/doctype/user/user.js:362 +#: frappe/desk/page/setup_wizard/setup_wizard.js:211 +msgid "Refreshing..." +msgstr "" + +#: frappe/core/doctype/user/user.py:1036 +msgid "Registered but disabled" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/translation/translation.json +msgid "Rejected" +msgstr "" + +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:30 +msgid "Relay Server URL missing" +msgstr "" + +#. Label of the section_break_qgjr (Section Break) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Relay Settings" +msgstr "" + +#. Group in Package's connections +#: frappe/core/doctype/package/package.json +msgid "Release" +msgstr "" + +#. Label of the release_notes (Markdown Editor) field in DocType 'Package +#. Release' +#: frappe/core/doctype/package_release/package_release.json +msgid "Release Notes" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:48 +#: frappe/core/doctype/communication/communication.js:159 +msgid "Relink" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:138 +msgid "Relink Communication" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Relinked" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py +#: frappe/public/js/frappe/form/toolbar.js:447 +msgid "Reload" +msgstr "" + +#: frappe/public/js/frappe/form/controls/attach.js:16 +msgid "Reload File" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:249 +msgid "Reload List" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:100 +msgid "Reload Report" +msgstr "" + +#. Label of the remember_last_selected_value (Check) field in DocType +#. 'DocField' +#. Label of the remember_last_selected_value (Check) field in DocType +#. 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Remember Last Selected Value" +msgstr "" + +#. Label of the remind_at (Datetime) field in DocType 'Reminder' +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/public/js/frappe/form/reminders.js:33 +msgid "Remind At" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:479 +msgid "Remind Me" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:13 +msgid "Remind Me In" +msgstr "" + +#. Name of a DocType +#: frappe/automation/doctype/reminder/reminder.json +msgid "Reminder" +msgstr "" + +#: frappe/automation/doctype/reminder/reminder.py:39 +msgid "Reminder cannot be created in past." +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:96 +msgid "Reminder set at {0}" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:14 +#: frappe/public/js/frappe/ui/filters/edit_filter.html:4 +#: frappe/public/js/frappe/ui/group_by/group_by.html:4 +msgid "Remove" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:8 +msgid "Remove Failed Jobs" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:493 +msgid "Remove Field" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:427 +msgid "Remove Section" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:138 +msgid "Remove all customizations?" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:286 +msgid "Remove all fields in the column" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:278 +#: frappe/public/js/frappe/utils/datatable.js:9 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:120 +msgid "Remove column" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:260 +msgid "Remove field" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:279 +msgid "Remove last column" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:130 +msgid "Remove page break" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:266 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:135 +msgid "Remove section" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:140 +msgid "Remove tab" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Removed" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:137 +#: frappe/public/js/frappe/form/toolbar.js:254 +#: frappe/public/js/frappe/form/toolbar.js:258 +#: frappe/public/js/frappe/form/toolbar.js:435 +#: frappe/public/js/frappe/model/model.js:723 +#: frappe/public/js/frappe/views/treeview.js:311 +msgid "Rename" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:116 +#: frappe/custom/doctype/custom_field/custom_field.js:136 +msgid "Rename Fieldname" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:710 +msgid "Rename {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:699 +msgid "Renamed files and replaced code in controllers, please check!" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:17 +msgid "Render labels to the left and values to the right in this section" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:43 +#: frappe/desk/doctype/todo/todo.js:36 +msgid "Reopen" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:547 +msgid "Repeat" +msgstr "" + +#. Label of the repeat_header_footer (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Repeat Header and Footer" +msgstr "" + +#. Label of the repeat_on (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat On" +msgstr "" + +#. Label of the repeat_till (Date) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat Till" +msgstr "" + +#. Label of the repeat_on_day (Int) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Repeat on Day" +msgstr "" + +#. Label of the repeat_on_days (Table) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Repeat on Days" +msgstr "" + +#. Label of the repeat_on_last_day (Check) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Repeat on Last Day of the Month" +msgstr "" + +#. Label of the repeat_this_event (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat this Event" +msgstr "" + +#: frappe/utils/password_strength.py:110 +msgid "Repeats like \"aaa\" are easy to guess" +msgstr "" + +#: frappe/utils/password_strength.py:105 +msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\"" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151 +msgid "Repeats {0}" +msgstr "" + +#: frappe/core/doctype/role_replication/role_replication.js:7 +#: frappe/core/doctype/role_replication/role_replication.js:14 +msgid "Replicate" +msgstr "" + +#: frappe/core/doctype/role_replication/role_replication.js:8 +msgid "Replicating..." +msgstr "" + +#: frappe/core/doctype/role_replication/role_replication.js:13 +msgid "Replication completed." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Contact' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.json +msgid "Replied" +msgstr "" + +#. Label of the reply (Text Editor) field in DocType 'Discussion Reply' +#: frappe/core/doctype/communication/communication.js:57 +#: frappe/public/js/frappe/form/footer/form_timeline.js:563 +#: frappe/website/doctype/discussion_reply/discussion_reply.json +msgid "Reply" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:62 +msgid "Reply All" +msgstr "" + +#. Label of the report (Check) field in DocType 'Custom DocPerm' +#. Label of the report (Link) field in DocType 'Custom Role' +#. Label of the report (Check) field in DocType 'DocPerm' +#. Name of a DocType +#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for +#. Page and Report' +#. Label of the report (Link) field in DocType 'Role Permission for Page and +#. Report' +#. Label of a Link in the Build Workspace +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'Type' (Select) field in DocType 'Number Card' +#. Label of the background_jobs_tab (Tab Break) field in DocType 'System Health +#. Report' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:8 +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:104 +#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/request.js:616 +#: frappe/public/js/frappe/utils/utils.js:923 +msgid "Report" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/list/list_view_select.js:66 +msgid "Report Builder" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/report_column/report_column.json +msgid "Report Column" +msgstr "" + +#. Label of the report_description (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Report Description" +msgstr "" + +#: frappe/core/doctype/report/report.py:151 +msgid "Report Document Error" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/report_filter/report_filter.json +msgid "Report Filter" +msgstr "" + +#. Label of the report_filters (Section Break) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Report Filters" +msgstr "" + +#. Label of the report_hide (Check) field in DocType 'DocField' +#. Label of the report_hide (Check) field in DocType 'Custom Field' +#. Label of the report_hide (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Report Hide" +msgstr "" + +#. Label of the report_information_section (Section Break) field in DocType +#. 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Report Information" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/report/report.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Report Manager" +msgstr "" + +#. Label of the report_name (Data) field in DocType 'Access Log' +#. Label of the report_name (Data) field in DocType 'Prepared Report' +#. Label of the report_name (Data) field in DocType 'Report' +#. Label of the report_name (Link) field in DocType 'Dashboard Chart' +#. Label of the report_name (Link) field in DocType 'Number Card' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/views/reports/query_report.js:1973 +msgid "Report Name" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:70 +msgid "Report Name, Report Field and Fucntion are required to create a number card" +msgstr "" + +#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Link' +#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Report Ref DocType" +msgstr "" + +#. Label of the report_reference_doctype (Data) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Report Reference Doctype" +msgstr "" + +#. Label of the report_type (Select) field in DocType 'Report' +#. Label of the report_type (Data) field in DocType 'Onboarding Step' +#. Label of the report_type (Read Only) field in DocType 'Auto Email Report' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Report Type" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:203 +msgid "Report View" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:26 +msgid "Report bug" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1823 +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" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 +#: frappe/desk/doctype/number_card/number_card.js:189 +msgid "Report has no numeric fields, please change the Report Name" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1021 +msgid "Report initiated, click to view status" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 +msgid "Report limit reached" +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.py:223 +msgid "Report timed out." +msgstr "" + +#: frappe/desk/query_report.py:651 +msgid "Report updated successfully" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1359 +msgid "Report was not saved (there were errors)" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2011 +msgid "Report with more than 10 columns looks better in Landscape mode." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 +msgid "Report {0}" +msgstr "" + +#: frappe/desk/reportview.py:365 +msgid "Report {0} deleted" +msgstr "" + +#: frappe/desk/query_report.py:54 +msgid "Report {0} is disabled" +msgstr "" + +#: frappe/desk/reportview.py:342 +msgid "Report {0} saved" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:20 +msgid "Report:" +msgstr "" + +#. Label of the prepared_report_section (Section Break) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 +msgid "Reports" +msgstr "" + +#: frappe/patches/v14_0/update_workspace2.py:50 +msgid "Reports & Masters" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:937 +msgid "Reports already in Queue" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/user/user.json +msgid "Represents a User in the system." +msgstr "" + +#. Description of a DocType +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Represents the states allowed in one document and role assigned to change the state." +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.js:101 +msgid "Request Body" +msgstr "" + +#. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json +msgid "Request Data" +msgstr "" + +#. Label of the request_description (Data) field in DocType 'Integration +#. Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Request Description" +msgstr "" + +#. Label of the request_headers (Code) field in DocType 'Recorder' +#. Label of the request_headers (Code) field in DocType 'Integration Request' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Request Headers" +msgstr "" + +#. Label of the request_id (Data) field in DocType 'Integration Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Request ID" +msgstr "" + +#. Label of the rate_limit_count (Int) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Request Limit" +msgstr "" + +#. Label of the request_method (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request Method" +msgstr "" + +#. Label of the request_structure (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request Structure" +msgstr "" + +#: frappe/public/js/frappe/request.js:231 +msgid "Request Timed Out" +msgstr "" + +#. Label of the timeout (Int) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/public/js/frappe/request.js:244 +msgid "Request Timeout" +msgstr "" + +#. Label of the request_url (Small Text) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request URL" +msgstr "" + +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + +#. Label of the requested_numbers (Code) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "Requested Numbers" +msgstr "" + +#. Label of the require_trusted_certificate (Select) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Require Trusted Certificate" +msgstr "" + +#. Description of the 'LDAP search path for Groups' (Data) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Requires any valid fdn path. i.e. ou=groups,dc=example,dc=com" +msgstr "" + +#. Description of the 'LDAP search path for Users' (Data) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Requires any valid fdn path. i.e. ou=users,dc=example,dc=com" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:279 +msgid "Res: {0}" +msgstr "" + +#: frappe/desk/doctype/form_tour/form_tour.js:101 +#: frappe/desk/doctype/global_search_settings/global_search_settings.js:19 +#: frappe/desk/doctype/module_onboarding/module_onboarding.js:17 +#: frappe/website/doctype/portal_settings/portal_settings.js:19 +msgid "Reset" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:136 +msgid "Reset All Customizations" +msgstr "" + +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:21 +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:37 +msgid "Reset Changes" +msgstr "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:306 +msgid "Reset Chart" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:39 +msgid "Reset Dashboard Customizations" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:228 +msgid "Reset Fields" +msgstr "" + +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 +msgid "Reset LDAP Password" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:128 +msgid "Reset Layout" +msgstr "" + +#: frappe/core/doctype/user/user.js:223 +msgid "Reset OTP Secret" +msgstr "" + +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 +#: frappe/www/me.html:48 frappe/www/update-password.html:3 +#: frappe/www/update-password.html:32 +msgid "Reset Password" +msgstr "" + +#. Label of the reset_password_key (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Reset Password Key" +msgstr "" + +#. Label of the reset_password_link_expiry_duration (Duration) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Reset Password Link Expiry Duration" +msgstr "" + +#. Label of the reset_password_template (Link) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Reset Password Template" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:116 +msgid "Reset Permissions for {0}?" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:114 +msgid "Reset To Default" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:8 +msgid "Reset sorting" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:434 +msgid "Reset to default" +msgstr "" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19 +msgid "Reset to defaults" +msgstr "" + +#: frappe/templates/emails/password_reset.html:3 +msgid "Reset your password" +msgstr "" + +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "" + +#. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' +#. Label of the response_section (Section Break) field in DocType 'Integration +#. Request' +#. Label of the response (Code) field in DocType 'Webhook Request Log' +#: frappe/email/doctype/email_template/email_template.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Response" +msgstr "" + +#. Label of the response_type (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Response Type" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:414 +msgid "Rest of the day" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.js:11 +#: frappe/core/doctype/deleted_document/deleted_document_list.js:48 +msgid "Restore" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:509 +msgid "Restore Original Permissions" +msgstr "" + +#: frappe/website/doctype/portal_settings/portal_settings.js:20 +msgid "Restore to default settings?" +msgstr "" + +#. Label of the restored (Check) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Restored" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:74 +msgid "Restoring Deleted Document" +msgstr "" + +#. Label of the restrict_ip (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Restrict IP" +msgstr "" + +#. Label of the restrict_to_domain (Link) field in DocType 'DocType' +#. Label of the restrict_to_domain (Link) field in DocType 'Module Def' +#. Label of the restrict_to_domain (Link) field in DocType 'Page' +#. Label of the restrict_to_domain (Link) field in DocType 'Role' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/page/page.json frappe/core/doctype/role/role.json +msgid "Restrict To Domain" +msgstr "" + +#. Label of the restrict_to_domain (Link) field in DocType 'Workspace' +#. Label of the restrict_to_domain (Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Restrict to Domain" +msgstr "" + +#. Description of the 'Restrict IP' (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:199 +msgctxt "Title of message showing restrictions in list view" +msgid "Restrictions" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:382 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:397 +msgid "Result" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:27 +msgid "Resume Sending" +msgstr "" + +#. Label of the retry (Int) field in DocType 'Email Queue' +#: frappe/core/doctype/data_import/data_import.js:110 +#: frappe/desk/page/setup_wizard/setup_wizard.js:297 +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Retry" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:47 +msgid "Retry Sending" +msgstr "" + +#: frappe/www/qrcode.html:15 +msgid "Return to the Verification screen and enter the code displayed by your authentication app" +msgstr "" + +#. Label of the reverse (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Reverse Icon Color" +msgstr "" + +#: frappe/database/schema.py:165 +msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." +msgstr "" + +#. Label of the revocation_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Revocation URI" +msgstr "" + +#: frappe/www/third_party_apps.html:47 +msgid "Revoke" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token' +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "Revoked" +msgstr "" + +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json +msgid "Rich Text" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Align' (Select) field in DocType 'Letter Head' +#. Option for the 'Text Align' (Select) field in DocType 'Web Page' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Right" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:484 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:156 +msgctxt "alignment" +msgid "Right" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Right Bottom" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Right Center" +msgstr "" + +#. Label of the robots_txt (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Robots.txt" +msgstr "" + +#. Label of the role (Link) field in DocType 'Custom DocPerm' +#. Label of the roles (Table) field in DocType 'Custom Role' +#. Label of the role (Link) field in DocType 'DocPerm' +#. Label of the role (Link) field in DocType 'Has Role' +#. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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' +#. Label of the role (Link) field in DocType 'Portal Menu Item' +#. Label of the role (Link) field in DocType 'Workflow Action Permitted Role' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/has_role/has_role.json +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type/user_type.py:110 +#: frappe/core/page/permission_manager/permission_manager.js:219 +#: frappe/core/page/permission_manager/permission_manager.js:456 +#: frappe/core/workspace/users/users.json +#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json +msgid "Role" +msgstr "" + +#: frappe/core/doctype/role/role.js:8 +msgid "Role 'All' will be given to all system + website users." +msgstr "" + +#: frappe/core/doctype/role/role.js:13 +msgid "Role 'Desk User' will be given to all system users." +msgstr "" + +#. Label of the role_name (Data) field in DocType 'Role' +#. Label of the role_profile (Data) field in DocType 'Role Profile' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/role_profile/role_profile.json +msgid "Role Name" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/workspace/users/users.json +msgid "Role Permission for Page and Report" +msgstr "" + +#. Label of the permissions_section (Section Break) field in DocType 'User +#. Document Type' +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/public/js/frappe/roles_editor.js:114 +msgid "Role Permissions" +msgstr "" + +#. Label of a Link in the Users Workspace +#: frappe/core/page/permission_manager/permission_manager.js:4 +#: frappe/core/workspace/users/users.json +msgid "Role Permissions Manager" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1935 +msgctxt "Button in list view menu" +msgid "Role Permissions Manager" +msgstr "" + +#. Name of a DocType +#. Label of the role_profile_name (Link) field in DocType 'User' +#. Label of the role_profile (Link) field in DocType 'User Role Profile' +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_role_profile/user_role_profile.json +#: frappe/core/workspace/users/users.json +msgid "Role Profile" +msgstr "" + +#. Label of the role_profiles (Table MultiSelect) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Role Profiles" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/role_replication/role_replication.json +msgid "Role Replication" +msgstr "" + +#. Label of the role_and_level (Section Break) field in DocType 'Custom +#. DocPerm' +#. Label of the role_and_level (Section Break) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +msgid "Role and Level" +msgstr "" + +#: frappe/core/doctype/user/user.py:365 +msgid "Role has been set as per the user type {0}" +msgstr "" + +#. Label of the roles (Table) field in DocType 'Page' +#. Label of the roles (Table) field in DocType 'Report' +#. Label of the roles (Table) field in DocType 'Role Permission for Page and +#. Report' +#. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' +#. Label of the roles_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Label of the roles (Table) field in DocType 'Custom HTML Block' +#. Label of the roles (Table) field in DocType 'Dashboard Chart' +#. Label of the roles (Table) field in DocType 'Workspace' +#. Label of the roles_tab (Tab Break) field in DocType 'Workspace' +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/core/page/permission_manager/permission_manager.js:66 +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/workspace/workspace.json +msgid "Roles" +msgstr "" + +#. Label of the roles_permissions_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Roles & Permissions" +msgstr "" + +#. Label of the roles (Table) field in DocType 'Role Profile' +#. Label of the roles (Table) field in DocType 'User' +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/user/user.json +msgid "Roles Assigned" +msgstr "" + +#. Label of the roles_html (HTML) field in DocType 'Role Profile' +#. Label of the roles_html (HTML) field in DocType 'User' +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/user/user.json +msgid "Roles HTML" +msgstr "" + +#. Label of the roles_html (HTML) field in DocType 'Role Permission for Page +#. and Report' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgid "Roles Html" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:7 +msgid "Roles can be set for users from their User page." +msgstr "" + +#: frappe/utils/nestedset.py:293 +msgid "Root {0} cannot be deleted" +msgstr "" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Round Robin" +msgstr "" + +#. Label of the rounding_method (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Rounding Method" +msgstr "" + +#. Label of the route (Data) field in DocType 'DocType' +#. Option for the 'Action Type' (Select) field in DocType 'DocType Action' +#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' +#. Label of the route (Data) field in DocType 'Navbar Item' +#. Label of the route (Data) field in DocType 'DocType Layout' +#. Label of the route (Data) field in DocType 'Route History' +#. Label of the route (Data) field in DocType 'Help Article' +#. Label of the route (Data) field in DocType 'Help Category' +#. Label of the route (Data) field in DocType 'Portal Menu Item' +#. Label of the route (Data) field in DocType 'Web Form' +#. Label of the route (Data) field in DocType 'Web Page' +#. Label of the route (Data) field in DocType 'Website Sidebar Item' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/route_history/route_history.json +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Route" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/route_history/route_history.json +msgid "Route History" +msgstr "" + +#. Label of the route_redirects (Table) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Route Redirects" +msgstr "" + +#. Description of the 'Home Page' (Data) field in DocType 'Role' +#: frappe/core/doctype/role/role.json +msgid "Route: Example \"/app\"" +msgstr "" + +#: frappe/model/base_document.py:909 frappe/model/document.py:779 +msgid "Row" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:74 +msgid "Row #" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 +msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" +msgstr "" + +#: frappe/model/base_document.py:1039 +msgid "Row #{0}:" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:492 +msgid "Row #{}: Fieldname is required" +msgstr "" + +#. Label of the row_format (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Row Format" +msgstr "" + +#. Label of the row_indexes (Code) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import_log/data_import_log.json +msgid "Row Indexes" +msgstr "" + +#. Label of the row_name (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Row Name" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:483 +msgid "Row Number" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:69 +msgid "Row Values Changed" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:367 +msgid "Row {0}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:357 +msgid "Row {0}: Not allowed to disable Mandatory for standard fields" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:346 +msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" +msgstr "" + +#. Label of the rows_added_section (Section Break) field in DocType 'Audit +#. Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/version/version_view.html:33 +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 +msgid "Rows Removed" +msgstr "" + +#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Rows Threshold for Grid Search" +msgstr "" + +#. Label of the rule (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Rule" +msgstr "" + +#. Label of the section_break_3 (Section Break) field in DocType 'Document +#. Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Rule Conditions" +msgstr "" + +#: frappe/permissions.py:675 +msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." +msgstr "" + +#. Group in DocType's connections +#: frappe/core/doctype/doctype/doctype.json +msgid "Rules" +msgstr "" + +#. Description of the 'Transitions' (Table) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Rules defining transition of state in the workflow." +msgstr "" + +#. Description of the 'Transition Rules' (Section Break) field in DocType +#. 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Rules for how states are transitions, like next state and which role is allowed to change state etc." +msgstr "" + +#. Description of the 'Priority' (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Rules with higher priority number will be applied first." +msgstr "" + +#. Label of the dormant_days (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Run Jobs only Daily if Inactive For (Days)" +msgstr "" + +#. Description of the 'Enable Scheduled Jobs' (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Run scheduled jobs only if checked" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 +msgid "Runtime in Minutes" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 +msgid "Runtime in Seconds" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Two Factor Authentication method' (Select) field in DocType +#. 'System Settings' +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/email/doctype/notification/notification.json +msgid "SMS" +msgstr "" + +#. Label of the sms_gateway_url (Small Text) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "SMS Gateway URL" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/sms_log/sms_log.json +msgid "SMS Log" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/sms_parameter/sms_parameter.json +msgid "SMS Parameter" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/core/doctype/sms_settings/sms_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "SMS Settings" +msgstr "" + +#: frappe/core/doctype/sms_settings/sms_settings.py:114 +msgid "SMS sent successfully" +msgstr "" + +#: frappe/templates/includes/login/login.js:369 +msgid "SMS was not sent. Please contact Administrator." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:212 +msgid "SMTP Server is required" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "SQL" +msgstr "" + +#. Description of the 'Condition' (Small Text) field in DocType 'Bulk Update' +#: frappe/desk/doctype/bulk_update/bulk_update.json +msgid "SQL Conditions. Example: status=\"Open\"" +msgstr "" + +#. Label of the sql_explain_html (HTML) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder/recorder.js:85 +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "SQL Explain" +msgstr "" + +#. Label of the sql_output (HTML) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "SQL Output" +msgstr "" + +#. Label of the sql_queries (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "SQL Queries" +msgstr "" + +#. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "SSL/TLS Mode" +msgstr "" + +#: frappe/public/js/frappe/color_picker/color_picker.js:20 +msgid "SWATCHES" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Sales Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Sales Master Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Sales User" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Salesforce" +msgstr "" + +#. Label of the salutation (Link) field in DocType 'Contact' +#. Name of a DocType +#. Label of the salutation (Data) field in DocType 'Salutation' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/salutation/salutation.json +msgid "Salutation" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:113 +msgid "Same Field is entered more than once" +msgstr "" + +#. Label of the sample (HTML) field in DocType 'Client Script' +#: frappe/custom/doctype/client_script/client_script.json +msgid "Sample" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the saturday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Saturday" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/data_import/data_import.js:113 +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/page/print/print.js:898 +#: 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/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 +#: frappe/public/js/frappe/utils/common.js:443 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 +#: frappe/public/js/frappe/views/workspace/workspace.js:335 +#: frappe/public/js/frappe/widgets/base_widget.js:142 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:120 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:15 +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:33 +msgid "Save" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:143 +msgid "Save Anyway" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 +msgid "Save As" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:63 +msgid "Save Customizations" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1968 +msgid "Save Report" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 +msgid "Save filters" +msgstr "" + +#. Label of the save_on_complete (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Save on Completion" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:295 +msgid "Save the document." +msgstr "" + +#: frappe/model/rename_doc.py:106 +#: frappe/printing/page/print_format_builder/print_format_builder.js:858 +#: frappe/public/js/frappe/form/toolbar.js:286 +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 +#: frappe/public/js/frappe/views/workspace/workspace.js:684 +msgid "Saved" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.html:88 +msgid "Saved Filters" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:41 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47 +#: frappe/public/js/frappe/views/workspace/workspace.js:348 +msgid "Saving" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:9 +msgctxt "Freeze message while saving a document" +msgid "Saving" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:411 +msgid "Saving Customization..." +msgstr "" + +#: frappe/desk/doctype/module_onboarding/module_onboarding.js:8 +msgid "Saving this will export this document as well as the steps linked here as json." +msgstr "" + +#: frappe/public/js/form_builder/store.js:233 +#: frappe/public/js/print_format_builder/store.js:36 +#: frappe/public/js/workflow_builder/store.js:73 +msgid "Saving..." +msgstr "" + +#: frappe/public/js/frappe/scanner/index.js:72 +msgid "Scan QRCode" +msgstr "" + +#: frappe/www/qrcode.html:14 +msgid "Scan the QR Code and enter the resulting code displayed." +msgstr "" + +#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Schedule" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:97 +msgid "Schedule Send At" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +msgid "Scheduled" +msgstr "" + +#. Label of the scheduled_against (Link) field in DocType 'Scheduler Event' +#: frappe/core/doctype/scheduler_event/scheduler_event.json +msgid "Scheduled Against" +msgstr "" + +#. Label of the scheduled_job_type (Link) field in DocType 'Scheduled Job Log' +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +msgid "Scheduled Job" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +msgid "Scheduled Job Log" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#. Label of the scheduled_job_type (Link) field in DocType 'System Health +#. Report Failing Jobs' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json +msgid "Scheduled Job Type" +msgstr "" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Scheduled Jobs Logs" +msgstr "" + +#: frappe/core/doctype/server_script/server_script.py:150 +msgid "Scheduled execution for script {0} has updated" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.js:26 +msgid "Scheduled to send" +msgstr "" + +#. Label of the scheduler_section (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Scheduler" +msgstr "" + +#. Label of the scheduler_event (Link) field in DocType 'Scheduled Job Type' +#. Name of a DocType +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/scheduler_event/scheduler_event.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Scheduler Event" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.py:107 +msgid "Scheduler Inactive" +msgstr "" + +#. Label of the scheduler_status (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Scheduler Status" +msgstr "" + +#: frappe/utils/scheduler.py:247 +msgid "Scheduler can not be re-enabled when maintenance mode is active." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.py:107 +msgid "Scheduler is inactive. Cannot import data." +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:19 +msgid "Scheduler: Active" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:21 +msgid "Scheduler: Inactive" +msgstr "" + +#. Label of the scope (Data) field in DocType 'OAuth Scope' +#: frappe/integrations/doctype/oauth_scope/oauth_scope.json +msgid "Scope" +msgstr "" + +#. Label of the sb_scope_section (Section Break) field in DocType 'Connected +#. App' +#. Label of the scopes (Table) field in DocType 'Connected App' +#. Label of the scopes (Text) field in DocType 'OAuth Authorization Code' +#. Label of the scopes (Text) field in DocType 'OAuth Bearer Token' +#. Label of the scopes (Text) field in DocType 'OAuth Client' +#. Label of the scopes (Table) field in DocType 'Token Cache' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Scopes" +msgstr "" + +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "" + +#. Label of the report_script (Code) field in DocType 'Report' +#. Label of the script (Code) field in DocType 'Server Script' +#. Label of the script (Code) field in DocType 'Client Script' +#. Label of the script (Code) field in DocType 'Console Log' +#. Label of the custom_javascript (Section Break) field in DocType 'Web Page' +#. Label of the custom_js_section (Tab Break) field in DocType 'Website Theme' +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/desk/doctype/console_log/console_log.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Script" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/server_script/server_script.json +msgid "Script Manager" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Script Report" +msgstr "" + +#. Label of the script_type (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Script Type" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/website_script/website_script.json +msgid "Script to attach to all web pages." +msgstr "" + +#. Label of a Card Break in the Build Workspace +#. Label of the scripting_tab (Tab Break) field in DocType 'Web Page' +#: frappe/core/workspace/build/build.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Scripting" +msgstr "" + +#. Label of the section_break_6 (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Scripting / Style" +msgstr "" + +#. Label of the scripts_section (Section Break) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Scripts" +msgstr "" + +#. Label of the search_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/public/js/frappe/form/link_selector.js:46 +#: frappe/public/js/frappe/list/list_sidebar.html:69 +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20 +#: frappe/public/js/frappe/ui/toolbar/search.js:49 +#: frappe/public/js/frappe/ui/toolbar/search.js:68 +#: frappe/templates/discussions/search.html:2 +#: frappe/templates/includes/search_template.html:26 +msgid "Search" +msgstr "" + +#. Label of the search_bar (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Search Bar" +msgstr "" + +#. Label of the search_fields (Data) field in DocType 'DocType' +#. Label of the search_fields (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Search Fields" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:186 +msgid "Search Help" +msgstr "" + +#. Label of the allowed_in_global_search (Table) field in DocType 'Global +#. Search Settings' +#: frappe/desk/doctype/global_search_settings/global_search_settings.json +msgid "Search Priorities" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:132 +msgid "Search Results" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:13 +msgid "Search by filename or extension" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1468 +msgid "Search field {0} is not valid" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:87 +msgid "Search fields" +msgstr "" + +#: frappe/public/js/form_builder/components/AddFieldButton.vue:19 +msgid "Search fieldtypes..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:50 +#: frappe/public/js/frappe/ui/toolbar/search.js:69 +msgid "Search for anything" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:300 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:306 +msgid "Search for {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:166 +msgid "Search in a document type" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:29 +msgid "Search or type a command ({0})" +msgstr "" + +#: frappe/public/js/form_builder/components/SearchBox.vue:8 +msgid "Search properties..." +msgstr "" + +#: frappe/templates/includes/search_box.html:8 +msgid "Search results for" +msgstr "" + +#: frappe/templates/includes/navbar/navbar_search.html:6 +#: frappe/templates/includes/search_box.html:2 +#: frappe/templates/includes/search_template.html:23 +msgid "Search..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:210 +msgid "Searching ..." +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#: frappe/public/js/form_builder/components/Section.vue:263 +#: frappe/website/doctype/web_template/web_template.json +msgid "Section" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Section Break" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:421 +msgid "Section Heading" +msgstr "" + +#. Label of the section_id (Data) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Section ID" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:28 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:8 +msgid "Section Title" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:217 +#: frappe/public/js/form_builder/components/Section.vue:240 +msgid "Section must have at least one column" +msgstr "" + +#. Label of the sb3 (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Security Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:309 +msgid "See all Activity" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:863 +msgid "See all past reports." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1235 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4 +msgid "See on Website" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:160 +msgctxt "Button in web form" +msgid "See previous responses" +msgstr "" + +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:49 +msgid "See the document at {0}" +msgstr "" + +#. Label of the seen (Check) field in DocType 'Comment' +#. Label of the seen (Check) field in DocType 'Communication' +#. Label of the seen (Check) field in DocType 'Error Log' +#. Label of the seen (Check) field in DocType 'Notification Settings' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/error_log/error_log_list.js:5 +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Seen" +msgstr "" + +#. Label of the seen_by_section (Section Break) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Seen By" +msgstr "" + +#. Label of the seen_by (Table) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Seen By Table" +msgstr "" + +#. Label of the select (Check) field in DocType 'Custom DocPerm' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the select (Check) field in DocType 'DocPerm' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/printing/page/print/print.js:642 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Select" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:149 +#: frappe/public/js/frappe/form/controls/multicheck.js:166 +#: frappe/public/js/frappe/form/grid_row.js:498 +msgid "Select All" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:601 +#: frappe/public/js/frappe/views/interaction.js:93 +#: frappe/public/js/frappe/views/interaction.js:155 +msgid "Select Attachments" +msgstr "" + +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 +msgid "Select Child Table" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:388 +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 +msgid "Select Columns" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:399 +msgid "Select Country" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:415 +msgid "Select Currency" +msgstr "" + +#. Label of the dashboard_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/public/js/frappe/utils/dashboard_utils.js:240 +msgid "Select Dashboard" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Select Date Range" +msgstr "" + +#. Label of the doc_type (Link) field in DocType 'Web Form' +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:28 +#: frappe/public/js/frappe/doctype/index.js:171 +#: frappe/website/doctype/web_form/web_form.json +msgid "Select DocType" +msgstr "" + +#. Label of the reference_doctype (Link) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Select Doctype" +msgstr "" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:50 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:50 +msgid "Select Document Type" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:179 +msgid "Select Document Type or Role to start." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:34 +msgid "Select Document Types to set which User Permissions are used to limit access." +msgstr "" + +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 +#: frappe/public/js/frappe/doctype/index.js:200 +#: frappe/public/js/frappe/form/toolbar.js:838 +msgid "Select Field" +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.html:35 +#: frappe/public/js/frappe/ui/group_by/group_by.js:141 +msgid "Select Field..." +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:490 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 +msgid "Select Fields" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:147 +msgid "Select Fields To Insert" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:148 +msgid "Select Fields To Update" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:21 +msgid "Select Filters" +msgstr "" + +#: frappe/desk/doctype/event/event.py:107 +msgid "Select Google Calendar to which event should be synced." +msgstr "" + +#: frappe/contacts/doctype/contact/contact.py:77 +msgid "Select Google Contacts to which contact should be synced." +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.html:10 +msgid "Select Group By..." +msgstr "" + +#: frappe/public/js/frappe/list/list_view_select.js:185 +msgid "Select Kanban" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:391 +msgid "Select Language" +msgstr "" + +#. Label of the list_name (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select List View" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:158 +msgid "Select Mandatory" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:280 +msgid "Select Module" +msgstr "" + +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 +msgid "Select Network Printer" +msgstr "" + +#. Label of the page_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select Page" +msgstr "" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 +#: frappe/public/js/frappe/views/communication.js:160 +msgid "Select Print Format" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:82 +msgid "Select Print Format to Edit" +msgstr "" + +#. Label of the report_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select Report" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:631 +msgid "Select Table Columns for {0}" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:408 +msgid "Select Time Zone" +msgstr "" + +#. Label of the transaction_type (Autocomplete) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Select Transaction" +msgstr "" + +#: frappe/workflow/page/workflow_builder/workflow_builder.js:68 +msgid "Select Workflow" +msgstr "" + +#. Label of the workspace_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select Workspace" +msgstr "" + +#. Label of the select_workspaces_section (Section Break) field in DocType +#. 'Workspace Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Select Workspaces" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.js:23 +msgid "Select a Brand Image first." +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:108 +msgid "Select a DocType to make a new format" +msgstr "" + +#: frappe/public/js/form_builder/components/Sidebar.vue:56 +msgid "Select a field to edit its properties." +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:358 +msgid "Select a group {0} first." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1956 +msgid "Select a valid Sender Field for creating documents from Email" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1940 +msgid "Select a valid Subject field for creating documents from Email" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:321 +msgid "Select an Image" +msgstr "" + +#: frappe/www/apps.html:10 +msgid "Select an app to continue" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_start.html:2 +msgid "Select an existing format to edit or start a new format." +msgstr "" + +#. Description of the 'Brand Image' (Attach Image) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Select an image of approx width 150px with a transparent background for best results." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:36 +msgid "Select atleast 1 record for printing" +msgstr "" + +#: frappe/core/doctype/success_action/success_action.js:18 +msgid "Select atleast 2 actions" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1447 +msgctxt "Description of a list view shortcut" +msgid "Select list item" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 +msgctxt "Description of a list view shortcut" +msgid "Select multiple list items" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:167 +msgid "Select or drag across time slots to create a new event." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:239 +msgid "Select records for assignment" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:260 +msgid "Select records for removing assignment" +msgstr "" + +#. Description of the 'Insert After' (Select) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Select the label after which you want to insert new field." +msgstr "" + +#: frappe/public/js/frappe/utils/diffview.js:102 +msgid "Select two versions to view the diff." +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:24 +#: frappe/public/js/frappe/form/multi_select_dialog.js:80 +#: frappe/public/js/frappe/form/multi_select_dialog.js:282 +#: frappe/public/js/frappe/list/list_view_select.js:153 +#: frappe/public/js/print_format_builder/Preview.vue:90 +msgid "Select {0}" +msgstr "" + +#: frappe/model/workflow.py:120 +msgid "Self approval is not allowed" +msgstr "" + +#: frappe/www/contact.html:41 +msgid "Send" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:26 +msgctxt "Send Email" +msgid "Send" +msgstr "" + +#. Description of the 'Minutes Offset' (Int) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send at the earliest this number of minutes before or after the reference datetime. The actual sending may be delayed by up to 5 minutes due to the scheduler's trigger cadence." +msgstr "" + +#. Label of the send_after (Datetime) field in DocType 'Communication' +#. Label of the send_after (Datetime) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Send After" +msgstr "" + +#. Label of the event (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send Alert On" +msgstr "" + +#. Label of the send_email_alert (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Send Email Alert" +msgstr "" + +#. Label of the send_email (Check) field in DocType 'Workflow Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Send Email On State" +msgstr "" + +#. Description of the 'Send Print as PDF' (Check) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Send Email Print Attachments as PDF (Recommended)" +msgstr "" + +#. Label of the send_email_to_creator (Check) field in DocType 'Workflow +#. Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Send Email To Creator" +msgstr "" + +#. Label of the send_me_a_copy (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Send Me A Copy of Outgoing Emails" +msgstr "" + +#. Label of the send_notification_to (Small Text) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Send Notification to" +msgstr "" + +#. Label of the document_follow_notify (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Send Notifications For Documents Followed By Me" +msgstr "" + +#. Label of the thread_notify (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Send Notifications For Email Threads" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.js:21 +msgid "Send Now" +msgstr "" + +#. Label of the send_print_as_pdf (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Send Print as PDF" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:150 +msgid "Send Read Receipt" +msgstr "" + +#. Label of the send_system_notification (Check) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send System Notification" +msgstr "" + +#. Label of the send_to_all_assignees (Check) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send To All Assignees" +msgstr "" + +#. Label of the send_welcome_email (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Send Welcome Email" +msgstr "" + +#. Description of the 'Reference Date' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send alert if date matches this field's value" +msgstr "" + +#. Description of the 'Reference Datetime' (Select) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send alert if datetime matches this field's value" +msgstr "" + +#. Description of the 'Value Changed' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send alert if this field's value changes" +msgstr "" + +#. Label of the send_reminder (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Send an email reminder in the morning" +msgstr "" + +#. Description of the 'Days Before or After' (Int) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send days before or after the reference date" +msgstr "" + +#. Description of the 'Send Email On State' (Check) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Send email when document transitions to the state." +msgstr "" + +#. Description of the 'Forward To Email Address' (Data) field in DocType +#. 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Send enquiries to this email address" +msgstr "" + +#: frappe/templates/includes/login/login.js:72 frappe/www/login.html:230 +msgid "Send login link" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:144 +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 "" + +#. Label of the send_unsubscribe_message (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Send unsubscribe message in email" +msgstr "" + +#. Label of the sender (Data) field in DocType 'Event' +#. Label of the sender (Data) field in DocType 'ToDo' +#. Label of the sender (Link) field in DocType 'Auto Email Report' +#. Label of the sender (Data) field in DocType 'Email Queue' +#. Label of the sender (Link) field in DocType 'Notification' +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/notification/notification.json +msgid "Sender" +msgstr "" + +#. Label of the sender_email (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Sender Email" +msgstr "" + +#. Label of the sender_field (Data) field in DocType 'DocType' +#. Label of the sender_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Sender Email Field" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1959 +msgid "Sender Field should have Email in options" +msgstr "" + +#. Label of the sender_name (Data) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "Sender Name" +msgstr "" + +#. Label of the sender_name_field (Data) field in DocType 'DocType' +#. Label of the sender_name_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Sender Name Field" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Sendgrid" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Sending" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Sent or Received' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +msgid "Sent" +msgstr "" + +#. Label of the sent_folder_name (Data) field in DocType 'Email Account' +#. Label of the sent_folder_name (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Sent Folder Name" +msgstr "" + +#. Label of the sent_on (Date) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "Sent On" +msgstr "" + +#. Label of the read_receipt (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Sent Read Receipt" +msgstr "" + +#. Label of the sent_to (Code) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "Sent To" +msgstr "" + +#. Label of the sent_or_received (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Sent or Received" +msgstr "" + +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Sent/Received Email" +msgstr "" + +#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Separator" +msgstr "" + +#. Label of the sequence_id (Float) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Sequence Id" +msgstr "" + +#. Label of the naming_series_options (Text) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Series List for this Transaction" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:115 +msgid "Series Updated for {}" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:223 +msgid "Series counter for {} updated to {} successfully" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1110 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 +msgid "Series {0} already used in {1}" +msgstr "" + +#. Option for the 'Action Type' (Select) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json +msgid "Server Action" +msgstr "" + +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 +#: frappe/www/error.html:36 frappe/www/error.py:15 +msgid "Server Error" +msgstr "" + +#. Label of the server_ip (Data) field in DocType 'Network Printer Settings' +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Server IP" +msgstr "" + +#. Label of the server_script (Link) field in DocType 'Scheduled Job Type' +#. Name of a DocType +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/workspace/build/build.json +msgid "Server Script" +msgstr "" + +#: frappe/utils/safe_exec.py:98 +msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." +msgstr "" + +#: frappe/core/doctype/server_script/server_script.js:39 +msgid "Server Scripts feature is not available on this site." +msgstr "" + +#: frappe/public/js/frappe/request.js:254 +msgid "Server failed to process this request because of a concurrent conflicting request. Please try again." +msgstr "" + +#: frappe/public/js/frappe/request.js:246 +msgid "Server was too busy to process this request. Please try again." +msgstr "" + +#. Label of the service (Select) field in DocType 'Email Account' +#. Label of the integration_request_service (Data) field in DocType +#. 'Integration Request' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Service" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/session_default/session_default.json +msgid "Session Default" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/session_default_settings/session_default_settings.json +msgid "Session Default Settings" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#. Label of the session_defaults (Table) field in DocType 'Session Default +#. Settings' +#: frappe/core/doctype/session_default_settings/session_default_settings.json +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 +msgid "Session Defaults" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 +msgid "Session Defaults Saved" +msgstr "" + +#: frappe/app.py:376 +msgid "Session Expired" +msgstr "" + +#. Label of the session_expiry (Data) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Session Expiry (idle timeout)" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:123 +msgid "Session Expiry must be in format {0}" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 +#: frappe/public/js/frappe/widgets/chart_widget.js:447 +msgid "Set" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:607 +msgctxt "Field value is set" +msgid "Set" +msgstr "" + +#. Label of the set_banner_from_image (Button) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Set Banner from Image" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:200 +msgid "Set Chart" +msgstr "" + +#. Description of the 'Chart Options' (Code) field in DocType 'Dashboard' +#: frappe/desk/doctype/dashboard/dashboard.json +msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"])" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 +#: frappe/desk/doctype/number_card/number_card.js:384 +msgid "Set Dynamic Filters" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 +#: frappe/desk/doctype/number_card/number_card.js:292 +#: frappe/public/js/form_builder/components/Field.vue:80 +#: frappe/website/doctype/web_form/web_form.js:269 +msgid "Set Filters" +msgstr "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:436 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:105 +msgid "Set Filters for {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2121 +msgid "Set Level" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:92 +msgid "Set Limit" +msgstr "" + +#. Description of the 'Setup Series for transactions' (Section Break) field in +#. DocType 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Set Naming Series options on your transactions." +msgstr "" + +#. Label of the new_password (Password) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Set New Password" +msgstr "" + +#: frappe/desk/page/backups/backups.js:8 +msgid "Set Number of Backups" +msgstr "" + +#: frappe/www/update-password.html:32 +msgid "Set Password" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:112 +msgid "Set Permissions" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:471 +msgid "Set Properties" +msgstr "" + +#. Label of the property_section (Section Break) field in DocType +#. 'Notification' +#. Label of the set_property_after_alert (Select) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Set Property After Alert" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:207 +#: frappe/public/js/frappe/form/link_selector.js:208 +msgid "Set Quantity" +msgstr "" + +#. Label of the set_role_for (Select) field in DocType 'Role Permission for +#. Page and Report' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgid "Set Role For" +msgstr "" + +#: frappe/core/doctype/user/user.js:124 +#: frappe/core/page/permission_manager/permission_manager.js:72 +msgid "Set User Permissions" +msgstr "" + +#. Label of the value (Small Text) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Set Value" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 +msgid "Set all private" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +msgid "Set all public" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:50 +msgid "Set as Default" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.js:33 +msgid "Set as Default Theme" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Set by user" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:162 +msgid "Set dynamic filter values in JavaScript for the required fields here." +msgstr "" + +#. Description of the 'Precision' (Select) field in DocType 'Custom Field' +#. Description of the 'Precision' (Select) field in DocType 'Customize Form +#. Field' +#. Description of the 'Precision' (Select) field in DocType 'Web Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Set non-standard precision for a Float or Currency field" +msgstr "" + +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + +#. Label of the set_only_once (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set only once" +msgstr "" + +#. Description of the 'Max attachment size' (Int) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Set size in MB" +msgstr "" + +#. Description of the 'Filters Configuration' (Code) field in DocType 'Number +#. Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Set the filters here. For example:\n" +"
    \n"
    +"[{\n"
    +"\tfieldname: \"company\",\n"
    +"\tlabel: __(\"Company\"),\n"
    +"\tfieldtype: \"Link\",\n"
    +"\toptions: \"Company\",\n"
    +"\tdefault: frappe.defaults.get_user_default(\"Company\"),\n"
    +"\treqd: 1\n"
    +"},\n"
    +"{\n"
    +"\tfieldname: \"account\",\n"
    +"\tlabel: __(\"Account\"),\n"
    +"\tfieldtype: \"Link\",\n"
    +"\toptions: \"Account\",\n"
    +"\treqd: 1\n"
    +"}]\n"
    +"
    " +msgstr "" + +#. Description of the 'Method' (Data) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Set the path to a whitelisted function that will return the data for the number card in the format:\n\n" +"
    \n"
    +"{\n"
    +"\t\"value\": value,\n"
    +"\t\"fieldtype\": \"Currency\",\n"
    +"\t\"route_options\": {\"from_date\": \"2023-05-23\"},\n"
    +"\t\"route\": [\"query-report\", \"Permitted Documents For User\"]\n"
    +"}
    " +msgstr "" + +#: frappe/contacts/doctype/address_template/address_template.py:33 +msgid "Setting this Address Template as default as there is no other default" +msgstr "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:86 +msgid "Setting up Global Search documents." +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:285 +msgid "Setting up your system" +msgstr "" + +#. Label of the settings_tab (Tab Break) field in DocType 'DocType' +#. Label of the settings_tab (Tab Break) field in DocType 'User' +#. Group in User's connections +#. Label of a Card Break in the Integrations Workspace +#. Label of the settings_tab (Tab Break) field in DocType 'Web Form' +#. Label of the settings (Tab Break) field in DocType 'Web Page' +#. Label of a Card Break in the Website Workspace +#: frappe/core/doctype/doctype/doctype.json frappe/core/doctype/user/user.json +#: frappe/integrations/workspace/integrations/integrations.json +#: frappe/public/js/frappe/form/templates/print_layout.html:25 +#: frappe/public/js/frappe/ui/apps_switcher.js:137 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 +#: frappe/public/js/frappe/views/workspace/workspace.js:362 +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/workspace/website/website.json frappe/www/me.html:20 +msgid "Settings" +msgstr "" + +#. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Settings Dropdown" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Settings for Contact Us Page" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Settings for the About Us Page" +msgstr "" + +#. 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:576 +msgid "Setup" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:27 +msgid "Setup > Customize Form" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:8 +msgid "Setup > User" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:33 +msgid "Setup > User Permissions" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 +msgid "Setup Auto Email" +msgstr "" + +#. Label of the setup_complete (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:211 +msgid "Setup Complete" +msgstr "" + +#. Label of the setup_series (Section Break) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Setup Series for transactions" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:236 +msgid "Setup failed" +msgstr "" + +#. Label of the share (Check) field in DocType 'Custom DocPerm' +#. Label of the share (Check) field in DocType 'DocPerm' +#. Label of the share (Check) field in DocType 'DocShare' +#. Label of the share (Check) field in DocType 'User Document Type' +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/public/js/frappe/form/templates/form_sidebar.html:90 +msgid "Share" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/share.js:107 +msgid "Share With" +msgstr "" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:49 +msgid "Share this document with" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/share.js:45 +msgid "Share {0} with" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Shared" +msgstr "" + +#: frappe/desk/form/assign_to.py:132 +msgid "Shared with the following Users with Read access:{0}" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Shipping" +msgstr "" + +#: frappe/public/js/frappe/form/templates/address_list.html:31 +msgid "Shipping Address" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Shop" +msgstr "" + +#: frappe/utils/password_strength.py:91 +msgid "Short keyboard patterns are easy to guess" +msgstr "" + +#. Label of the shortcuts (Table) field in DocType 'Workspace' +#. Label of the tab_break_15 (Tab Break) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Shortcuts" +msgstr "" + +#: frappe/public/js/frappe/widgets/base_widget.js:46 +#: frappe/public/js/frappe/widgets/base_widget.js:178 +#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 +msgid "Show" +msgstr "" + +#. Label of the show_absolute_datetime_in_timeline (Check) field in DocType +#. 'System Settings' +#. Label of the show_absolute_datetime_in_timeline (Check) field in DocType +#. 'User' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +msgid "Show Absolute Datetime in Timeline" +msgstr "" + +#. Label of the absolute_value (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Show Absolute Values" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:73 +msgid "Show All" +msgstr "" + +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "" + +#: frappe/desk/doctype/calendar_view/calendar_view.js:10 +msgid "Show Calendar" +msgstr "" + +#. Label of the symbol_on_right (Check) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Show Currency Symbol on Right Side" +msgstr "" + +#. Label of the show_dashboard (Check) field in DocType 'DocField' +#. Label of the show_dashboard (Check) field in DocType 'Custom Field' +#. Label of the show_dashboard (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard/dashboard.js:6 +msgid "Show Dashboard" +msgstr "" + +#. Label of the show_document (Button) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Show Document" +msgstr "" + +#: frappe/www/error.html:42 frappe/www/error.html:65 +msgid "Show Error" +msgstr "" + +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 +msgid "Show Fieldname (click to copy on clipboard)" +msgstr "" + +#. Label of the first_document (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Show First Document Tour" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#. Label of the show_form_tour (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Show Form Tour" +msgstr "" + +#. Label of the allow_error_traceback (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show Full Error and Allow Reporting of Issues to the Developer" +msgstr "" + +#. Label of the show_full_form (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Show Full Form?" +msgstr "" + +#. Label of the show_full_number (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Show Full Number" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:234 +msgid "Show Keyboard Shortcuts" +msgstr "" + +#. Label of the show_labels (Check) field in DocType 'Kanban Board' +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:30 +msgid "Show Labels" +msgstr "" + +#. Label of the show_language_picker (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Show Language Picker" +msgstr "" + +#. Label of the line_breaks (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Show Line Breaks after Sections" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:410 +msgid "Show Links" +msgstr "" + +#. Label of the show_failed_logs (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Show Only Failed Logs" +msgstr "" + +#. Label of the show_percentage_stats (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Show Percentage Stats" +msgstr "" + +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30 +msgid "Show Permissions" +msgstr "" + +#: frappe/public/js/form_builder/form_builder.bundle.js:31 +#: frappe/public/js/form_builder/form_builder.bundle.js:43 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:18 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 +msgid "Show Preview" +msgstr "" + +#. Label of the show_preview_popup (Check) field in DocType 'DocType' +#. Label of the show_preview_popup (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Show Preview Popup" +msgstr "" + +#. Label of the show_processlist (Check) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "Show Processlist" +msgstr "" + +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "" + +#: frappe/core/doctype/error_log/error_log.js:9 +msgid "Show Related Errors" +msgstr "" + +#. Label of the show_report (Button) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/prepared_report/prepared_report.js:43 +#: frappe/core/doctype/report/report.js:16 +msgid "Show Report" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:15 +#: frappe/public/js/frappe/list/list_filter.js:94 +msgid "Show Saved" +msgstr "" + +#. Label of the show_section_headings (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Show Section Headings" +msgstr "" + +#. Label of the show_sidebar (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Show Sidebar" +msgstr "" + +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.html:77 +#: frappe/public/js/frappe/list/list_view.js:1851 +msgid "Show Tags" +msgstr "" + +#. Label of the show_title (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Show Title" +msgstr "" + +#. Label of the show_title_field_in_link (Check) field in DocType 'DocType' +#. Label of the show_title_field_in_link (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Show Title in Link Fields" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1529 +msgid "Show Totals" +msgstr "" + +#: frappe/desk/doctype/form_tour/form_tour.js:116 +msgid "Show Tour" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:448 +msgid "Show Traceback" +msgstr "" + +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:204 +msgid "Show Warnings" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:179 +msgid "Show Weekends" +msgstr "" + +#. Label of the show_account_deletion_link (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Show account deletion link in My Account page" +msgstr "" + +#: frappe/core/doctype/version/version.js:6 +msgid "Show all Versions" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:69 +msgid "Show all activity" +msgstr "" + +#. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Show as cc" +msgstr "" + +#. Label of the show_attachments (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Show attachments" +msgstr "" + +#. Label of the show_footer_on_login (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Show footer on login" +msgstr "" + +#. Description of the 'Show Full Form?' (Check) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Show full form instead of a quick entry modal" +msgstr "" + +#. Label of the document_type (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Show in Module Section" +msgstr "" + +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "" + +#. Label of the show_in_filter (Check) field in DocType 'Web Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Show in filter" +msgstr "" + +#. Label of the show_document_link (Check) field in DocType 'Slack Webhook URL' +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +msgid "Show link to document" +msgstr "" + +#. Label of the show_list (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Show list" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 +msgid "Show more details" +msgstr "" + +#. Label of the show_on_timeline (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Show on Timeline" +msgstr "" + +#. Description of the 'Stats Time Interval' (Select) field in DocType 'Number +#. Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Show percentage difference according to this time interval" +msgstr "" + +#. Label of the show_sidebar (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Show sidebar" +msgstr "" + +#. Description of the 'Title Prefix' (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Show title in browser window as \"Prefix - title\"" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:148 +msgid "Show {0} List" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:506 +msgid "Showing only Numeric fields from Report" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:153 +msgid "Showing only first {0} rows out of {1}" +msgstr "" + +#. Label of the list_sidebar (Check) field in DocType 'User' +#. Label of the form_sidebar (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Sidebar" +msgstr "" + +#. Label of the sidebar_items (Table) field in DocType 'Website Sidebar' +#: frappe/website/doctype/website_sidebar/website_sidebar.json +msgid "Sidebar Items" +msgstr "" + +#. Label of the section_break_4 (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Sidebar Settings" +msgstr "" + +#. Label of the section_break_17 (Section Break) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Sidebar and Comments" +msgstr "" + +#. Label of the sign_up_and_confirmation_section (Section Break) field in +#. DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Sign Up and Confirmation" +msgstr "" + +#: frappe/core/doctype/user/user.py:1029 +msgid "Sign Up is disabled" +msgstr "" + +#: frappe/templates/signup.html:16 frappe/www/login.html:140 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 +msgid "Sign up" +msgstr "" + +#. Label of the sign_ups (Select) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Sign ups" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the signature_section (Section Break) field in DocType 'Email +#. Account' +#. Label of the signature (Text Editor) field in DocType 'Email Account' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Signature" +msgstr "" + +#: frappe/www/login.html:168 +msgid "Signup Disabled" +msgstr "" + +#: frappe/www/login.html:169 +msgid "Signups have been disabled for this website." +msgstr "" + +#. Description of the 'Close Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "" + +#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" +msgstr "" + +#. Label of the simultaneous_sessions (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Simultaneous Sessions" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:128 +msgid "Single DocTypes cannot be customized." +msgstr "" + +#. Description of the 'Is Single' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:68 +msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" +msgstr "" + +#: frappe/database/database.py:284 +msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:370 +msgid "Size" +msgstr "" + +#. Label of the size (Float) field in DocType 'System Health Report Tables' +#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json +msgid "Size (MB)" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:82 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:18 +msgid "Skip" +msgstr "" + +#. Label of the skip_authorization (Check) field in DocType 'OAuth Client' +#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider +#. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Skip Authorization" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:332 +msgid "Skip Step" +msgstr "" + +#. Label of the skipped (Check) field in DocType 'Patch Log' +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Skipped" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:952 +msgid "Skipping Duplicate Column {0}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:977 +msgid "Skipping Untitled Column" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:963 +msgid "Skipping column {0}" +msgstr "" + +#: frappe/modules/utils.py:176 +msgid "Skipping fixture syncing for doctype {0} from file {1}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:39 +msgid "Skipping {0} of {1}, {2}" +msgstr "" + +#. Label of the skype (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Skype" +msgstr "" + +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Slack" +msgstr "" + +#. Label of the slack_webhook_url (Link) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Slack Channel" +msgstr "" + +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65 +msgid "Slack Webhook Error" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Slack Webhook URL" +msgstr "" + +#. Label of the slideshow (Link) field in DocType 'Web Page' +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Slideshow" +msgstr "" + +#. Label of the slideshow_items (Table) field in DocType 'Website Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow Items" +msgstr "" + +#. Label of the slideshow_name (Data) field in DocType 'Website Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow Name" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow like display for the website" +msgstr "" + +#. Label of the slug (Data) field in DocType 'UTM Campaign' +#. Label of the slug (Data) field in DocType 'UTM Medium' +#. Label of the slug (Data) field in DocType 'UTM Source' +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +msgid "Slug" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Small Text" +msgstr "" + +#. Label of the smallest_currency_fraction_value (Currency) field in DocType +#. 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Smallest Currency Fraction Value" +msgstr "" + +#. Description of the 'Smallest Currency Fraction Value' (Currency) field in +#. DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:32 +msgid "Snippet and more variables: {0}" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "Social Link Settings" +msgstr "" + +#. Label of the social_link_type (Select) field in DocType 'Social Link +#. Settings' +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "Social Link Type" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Social Login Key" +msgstr "" + +#. Label of the social_login_provider (Select) field in DocType 'Social Login +#. Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Social Login Provider" +msgstr "" + +#. Label of the social_logins (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Social Logins" +msgstr "" + +#. Label of the socketio_ping_check (Select) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "SocketIO Ping Check" +msgstr "" + +#. Label of the socketio_transport_mode (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "SocketIO Transport Mode" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Soft-Bounced" +msgstr "" + +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 +msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." +msgstr "" + +#. Description of the 'Sent Folder Name' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Some mailboxes require a different Sent Folder Name e.g. \"INBOX.Sent\"" +msgstr "" + +#: frappe/public/js/frappe/desk.js:20 +msgid "Some of the features might not work in your browser. Please update your browser to the latest version." +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:101 +msgid "Something went wrong" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:133 +msgid "Something went wrong during the token generation. Click on {0} to generate a new one." +msgstr "" + +#: frappe/templates/includes/login/login.js:293 +msgid "Something went wrong." +msgstr "" + +#: frappe/public/js/frappe/views/pageview.js:117 +msgid "Sorry! I could not find what you were looking for." +msgstr "" + +#: frappe/public/js/frappe/views/pageview.js:125 +msgid "Sorry! You are not permitted to view this page." +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:6 +msgid "Sort Ascending" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:7 +msgid "Sort Descending" +msgstr "" + +#. Label of the sort_field (Select) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Sort Field" +msgstr "" + +#. Label of the sort_options (Check) field in DocType 'DocField' +#. Label of the sort_options (Check) field in DocType 'Custom Field' +#. Label of the sort_options (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Sort Options" +msgstr "" + +#. Label of the sort_order (Select) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Sort Order" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1551 +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:1757 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +#: frappe/website/report/website_analytics/website_analytics.js:38 +msgid "Source" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "" + +#. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgid "Source Name" +msgstr "" + +#. Label of the source_text (Code) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +#: frappe/public/js/frappe/views/translation_manager.js:38 +msgid "Source Text" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:23 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:174 +msgid "Spacer" +msgstr "" + +#. Option for the 'Email Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Spam" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "SparkPost" +msgstr "" + +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:83 +msgid "Special Characters are not allowed" +msgstr "" + +#: frappe/model/naming.py:68 +msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}" +msgstr "" + +#. Description of the 'Timeout (In Seconds)' (Int) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Specify a custom timeout, default timeout is 1500 seconds" +msgstr "" + +#. Description of the 'Allowed embedding domains' (Small Text) field in DocType +#. 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin." +msgstr "" + +#. Label of the splash_image (Attach Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Splash Image" +msgstr "" + +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 +#: frappe/templates/print_formats/standard_macros.html:44 +msgid "Sr" +msgstr "" + +#: frappe/public/js/print_format_builder/Field.vue:143 +#: frappe/public/js/print_format_builder/Field.vue:164 +msgid "Sr No." +msgstr "" + +#. Label of the stack_html (HTML) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder/recorder.js:82 +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Stack Trace" +msgstr "" + +#. Label of the standard (Select) field in DocType 'Page' +#. Label of the standard (Check) field in DocType 'Desktop Icon' +#. Label of the standard (Select) field in DocType 'Print Format' +#. Label of the standard (Check) field in DocType 'Print Format Field Template' +#. Label of the standard (Check) field in DocType 'Print Style' +#. Label of the standard (Check) field in DocType 'Web Template' +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/user_type/user_type_list.js:5 +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/website/doctype/web_template/web_template.json +msgid "Standard" +msgstr "" + +#: frappe/model/delete_doc.py:119 +msgid "Standard DocType can not be deleted." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:229 +msgid "Standard DocType cannot have default print format, use Customize Form" +msgstr "" + +#: frappe/desk/doctype/dashboard/dashboard.py:58 +msgid "Standard Not Set" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:132 +msgid "Standard Permissions" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.py:82 +msgid "Standard Print Format cannot be updated" +msgstr "" + +#: frappe/printing/doctype/print_style/print_style.py:31 +msgid "Standard Print Style cannot be changed. Please duplicate to edit." +msgstr "" + +#: frappe/desk/reportview.py:355 +msgid "Standard Reports cannot be deleted" +msgstr "" + +#: frappe/desk/reportview.py:326 +msgid "Standard Reports cannot be edited" +msgstr "" + +#. Label of the standard_menu_items (Section Break) field in DocType 'Portal +#. Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Standard Sidebar Menu" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:40 +msgid "Standard Web Forms can not be modified, duplicate the Web Form instead." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Standard rich text editor with controls" +msgstr "" + +#: frappe/core/doctype/role/role.py:46 +msgid "Standard roles cannot be disabled" +msgstr "" + +#: frappe/core/doctype/role/role.py:32 +msgid "Standard roles cannot be renamed" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:61 +msgid "Standard user type {0} can not be deleted." +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:87 +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 +msgid "Start" +msgstr "" + +#. Label of the start_date (Date) field in DocType 'Auto Repeat' +#. Label of the start_date (Date) field in DocType 'Audit Trail' +#. Label of the start_date (Datetime) field in DocType 'Web Page' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/public/js/frappe/utils/common.js:409 +#: frappe/website/doctype/web_page/web_page.json +msgid "Start Date" +msgstr "" + +#. Label of the start_date_field (Select) field in DocType 'Calendar View' +#: frappe/desk/doctype/calendar_view/calendar_view.json +msgid "Start Date Field" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:110 +msgid "Start Import" +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:201 +msgid "Start Recording" +msgstr "" + +#. Label of the birth_date (Datetime) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Start Time" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:8 +msgid "Start a new discussion" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:22 +msgid "Start entering data below this line" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:165 +msgid "Start new Format" +msgstr "" + +#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "StartTLS" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Started" +msgstr "" + +#. Label of the started_at (Datetime) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Started At" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:286 +msgid "Starting Frappe ..." +msgstr "" + +#. Label of the starts_on (Datetime) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Starts on" +msgstr "" + +#. Label of the state (Data) field in DocType 'Token Cache' +#. Label of the state (Link) field in DocType 'Workflow Document State' +#. Label of the workflow_state_name (Data) field in DocType 'Workflow State' +#. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/workflow/doctype/workflow/workflow.js:162 +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "State" +msgstr "" + +#: frappe/public/js/workflow_builder/components/Properties.vue:26 +msgid "State Properties" +msgstr "" + +#. Label of the state (Data) field in DocType 'Address' +#. Label of the state (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "State/Province" +msgstr "" + +#. Label of the document_states_section (Tab Break) field in DocType 'DocType' +#. Label of the states (Table) field in DocType 'Customize Form' +#. Label of the states_head (Section Break) field in DocType 'Workflow' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/workflow/doctype/workflow/workflow.json +msgid "States" +msgstr "" + +#. Label of the parameters (Table) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Static Parameters" +msgstr "" + +#. Label of the statistics_section (Section Break) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Statistics" +msgstr "" + +#. Label of the stats_section (Section Break) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/form/dashboard.js:43 +#: frappe/public/js/frappe/form/templates/form_dashboard.html:13 +msgid "Stats" +msgstr "" + +#. Label of the stats_time_interval (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Stats Time Interval" +msgstr "" + +#. Label of the status (Select) field in DocType 'Auto Repeat' +#. Label of the status (Select) field in DocType 'Contact' +#. Label of the status (Select) field in DocType 'Activity Log' +#. Label of the status_section (Section Break) field in DocType 'Communication' +#. Label of the status (Select) field in DocType 'Communication' +#. Label of the status (Select) field in DocType 'Data Import' +#. Label of the status (Select) field in DocType 'Permission Log' +#. Label of the status (Select) field in DocType 'Prepared Report' +#. Label of the status (Select) field in DocType 'RQ Job' +#. Label of the status (Data) field in DocType 'RQ Worker' +#. Label of the status (Select) field in DocType 'Scheduled Job Log' +#. Label of the status_section (Section Break) field in DocType 'Scheduled Job +#. Type' +#. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' +#. Label of the status (Select) field in DocType 'Event' +#. Label of the status (Select) field in DocType 'Kanban Board Column' +#. Label of the status (Select) field in DocType 'ToDo' +#. Label of the status (Select) field in DocType 'Email Queue' +#. Label of the status (Select) field in DocType 'Email Queue Recipient' +#. Label of the status (Select) field in DocType 'Integration Request' +#. Label of the status (Select) field in DocType 'OAuth Bearer Token' +#. Label of the status (Select) field in DocType 'Personal Data Deletion +#. Request' +#. Label of the status (Select) field in DocType 'Personal Data Deletion Step' +#. Label of the status (Select) field in DocType 'Workflow Action' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import/data_import.js:483 +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Status" +msgstr "" + +#: frappe/www/update-password.html:188 +msgid "Status Updated" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue.js:37 +msgid "Status Updated. The email will be picked up in the next scheduled run." +msgstr "" + +#: frappe/www/message.html:24 +msgid "Status: {0}" +msgstr "" + +#. Label of the step (Link) field in DocType 'Onboarding Step Map' +#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json +msgid "Step" +msgstr "" + +#. Label of the steps (Table) field in DocType 'Form Tour' +#. Label of the steps (Table) field in DocType 'Module Onboarding' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Steps" +msgstr "" + +#: frappe/www/qrcode.html:11 +msgid "Steps to verify your login" +msgstr "" + +#. Label of the sticky (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/public/js/frappe/form/grid_row.js:455 +msgid "Sticky" +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:87 +msgid "Stop" +msgstr "" + +#. Label of the stopped (Check) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Stopped" +msgstr "" + +#. Label of the db_storage_usage (Float) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Storage Usage (MB)" +msgstr "" + +#. Label of the top_db_tables (Table) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Storage Usage By Table" +msgstr "" + +#. Label of the store_attached_pdf_document (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Store Attached PDF Document" +msgstr "" + +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +msgstr "" + +#. Description of the 'Last Known Versions' (Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Stores the JSON of last known versions of various installed apps. It is used to show release notes." +msgstr "" + +#. Description of the 'Last Reset Password Key Generated On' (Datetime) field +#. in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Stores the datetime when the last reset password key was generated." +msgstr "" + +#: frappe/utils/password_strength.py:97 +msgid "Straight rows of keys are easy to guess" +msgstr "" + +#. Label of the strip_exif_metadata_from_uploaded_images (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Strip EXIF tags from uploaded images" +msgstr "" + +#: frappe/public/js/frappe/form/controls/password.js:89 +msgid "Strong" +msgstr "" + +#. Label of the custom_css (Tab Break) field in DocType 'Web Page' +#. Label of the style (Select) field in DocType 'Workflow State' +#: frappe/website/doctype/web_page/web_page.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Style" +msgstr "" + +#. Label of the section_break_9 (Section Break) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Style Settings" +msgstr "" + +#. Description of the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange" +msgstr "" + +#. Label of the stylesheet_section (Tab Break) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Stylesheet" +msgstr "" + +#. Description of the 'Fraction' (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Sub-currency. For e.g. \"Cent\"" +msgstr "" + +#. Description of the 'Subdomain' (Small Text) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Sub-domain provided by erpnext.com" +msgstr "" + +#. Label of the subdomain (Small Text) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Subdomain" +msgstr "" + +#. Label of the subject (Data) field in DocType 'Auto Repeat' +#. Label of the subject (Small Text) field in DocType 'Activity Log' +#. Label of the subject (Text) field in DocType 'Comment' +#. Label of the subject (Small Text) field in DocType 'Communication' +#. Label of the subject (Small Text) field in DocType 'Event' +#. Label of the subject (Text) field in DocType 'Notification Log' +#. Label of the subject (Data) field in DocType 'Email Template' +#. Label of the subject (Data) field in DocType 'Notification' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/email/doctype/notification/notification.js:204 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/views/communication.js:119 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:63 +msgid "Subject" +msgstr "" + +#. Label of the subject_field (Data) field in DocType 'DocType' +#. Label of the subject_field (Data) field in DocType 'Customize Form' +#. Label of the subject_field (Select) field in DocType 'Calendar View' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +msgid "Subject Field" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1949 +msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Submission Queue" +msgstr "" + +#. Label of the submit (Check) field in DocType 'Custom DocPerm' +#. Label of the submit (Check) field in DocType 'DocPerm' +#. Label of the submit (Check) field in DocType 'DocShare' +#. Label of the submit (Check) field in DocType 'User Document Type' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_permission/user_permission_list.js:138 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/quick_entry.js:225 +#: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Submit" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2233 +msgctxt "Button in list view actions menu" +msgid "Submit" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:47 +msgctxt "Button in web form" +msgid "Submit" +msgstr "" + +#: frappe/public/js/frappe/ui/dialog.js:64 +msgctxt "Primary action in dialog" +msgid "Submit" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:97 +msgctxt "Primary action of prompt dialog" +msgid "Submit" +msgstr "" + +#: frappe/public/js/frappe/desk.js:227 +msgctxt "Submit password for Email Account" +msgid "Submit" +msgstr "" + +#. Label of the submit_after_import (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Submit After Import" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:39 +msgid "Submit an Issue" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:163 +msgctxt "Button in web form" +msgid "Submit another response" +msgstr "" + +#. Label of the button_label (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Submit button label" +msgstr "" + +#. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 +msgid "Submit on Creation" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:395 +msgid "Submit this document to complete this step." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1221 +msgid "Submit this document to confirm" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2238 +msgctxt "Title of confirmation dialog" +msgid "Submit {0} documents?" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/model/indicator.js:95 +#: frappe/public/js/frappe/ui/filters/filter.js:539 +#: frappe/website/doctype/web_form/templates/web_form.html:143 +msgid "Submitted" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:104 +msgid "Submitted Document cannot be converted back to draft. Transition row {0}" +msgstr "" + +#: frappe/public/js/workflow_builder/utils.js:176 +msgid "Submitted document cannot be converted back to draft while transitioning from {0} State to {1} State" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:10 +msgctxt "Freeze message while submitting a document" +msgid "Submitting" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:88 +msgid "Submitting {0}" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Subsidiary" +msgstr "" + +#. Label of the subtitle (Data) field in DocType 'Module Onboarding' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Subtitle" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#. Label of the success (Check) field in DocType 'Data Import Log' +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/data_import/data_import.js:459 +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/desk/doctype/bulk_update/bulk_update.js:31 +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 +#: frappe/public/js/frappe/form/grid.js:1172 +#: frappe/public/js/frappe/views/translation_manager.js:21 +#: frappe/templates/includes/login/login.js:230 +#: frappe/templates/includes/login/login.js:236 +#: frappe/templates/includes/login/login.js:269 +#: frappe/templates/includes/login/login.js:277 +#: frappe/templates/pages/integrations/gcalendar-success.html:9 +#: frappe/workflow/doctype/workflow_action/workflow_action.py:171 +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Success" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/success_action/success_action.json +msgid "Success Action" +msgstr "" + +#. Label of the success_message (Data) field in DocType 'Module Onboarding' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Success Message" +msgstr "" + +#. Label of the success_uri (Data) field in DocType 'Token Cache' +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Success URI" +msgstr "" + +#. Label of the success_url (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Success URL" +msgstr "" + +#. Label of the success_message (Text) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Success message" +msgstr "" + +#. Label of the success_title (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Success title" +msgstr "" + +#. Label of the successful_job_count (Int) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Successful Job Count" +msgstr "" + +#: frappe/model/workflow.py:363 +msgid "Successful Transactions" +msgstr "" + +#: frappe/model/rename_doc.py:698 +msgid "Successful: {0} to {1}" +msgstr "" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100 +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113 +msgid "Successfully Updated" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:423 +msgid "Successfully imported {0}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:144 +msgid "Successfully imported {0} out of {1} records." +msgstr "" + +#: frappe/desk/doctype/form_tour/form_tour.py:87 +msgid "Successfully reset onboarding status for all users." +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:22 +msgid "Successfully updated translations" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:431 +msgid "Successfully updated {0}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:149 +msgid "Successfully updated {0} out of {1} records." +msgstr "" + +#: frappe/core/doctype/recorder/recorder.js:15 +msgid "Suggest Optimizations" +msgstr "" + +#. Label of the suggested_indexes (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Suggested Indexes" +msgstr "" + +#: frappe/core/doctype/user/user.py:733 +msgid "Suggested Username: {0}" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/ui/group_by/group_by.js:20 +msgid "Sum" +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 +msgid "Sum of {0}" +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:88 +msgid "Summary" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the sunday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Sunday" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:27 +msgid "Suspend Sending" +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:276 +msgid "Switch Camera" +msgstr "" + +#: frappe/public/js/frappe/desk.js:96 +#: frappe/public/js/frappe/ui/theme_switcher.js:11 +msgid "Switch Theme" +msgstr "" + +#: frappe/templates/includes/navbar/navbar_login.html:17 +msgid "Switch To Desk" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.js:319 +msgid "Switch to Frappe CRM for smarter sales" +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:281 +msgid "Switching Camera" +msgstr "" + +#. Label of the symbol (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Symbol" +msgstr "" + +#. Label of the sb_01 (Section Break) field in DocType 'Google Calendar' +#. Label of the sync (Section Break) field in DocType 'Google Contacts' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Sync" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:28 +msgid "Sync Calendar" +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.js:28 +msgid "Sync Contacts" +msgstr "" + +#. Label of the sync_as_public (Check) field in DocType 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Sync events from Google as public" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:256 +msgid "Sync on Migrate" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:312 +msgid "Sync token was invalid and has been reset, Retry syncing." +msgstr "" + +#. Label of the sync_with_google_calendar (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Sync with Google Calendar" +msgstr "" + +#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Sync with Google Contacts" +msgstr "" + +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46 +msgid "Sync {0} Fields" +msgstr "" + +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:100 +msgid "Synced Fields" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:31 +#: frappe/integrations/doctype/google_contacts/google_contacts.js:31 +msgid "Syncing" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:19 +msgid "Syncing {0} of {1}" +msgstr "" + +#: frappe/utils/data.py:2573 +msgid "Syntax Error" +msgstr "" + +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "System" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/public/js/frappe/ui/dropdown_console.js:4 +msgid "System Console" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:408 +msgid "System Generated Fields can not be renamed" +msgstr "" + +#. Label of a standard help item +#. Type: Route +#: frappe/hooks.py +msgid "System Health" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "System Health Report" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json +msgid "System Health Report Errors" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json +msgid "System Health Report Failing Jobs" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json +msgid "System Health Report Queue" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json +msgid "System Health Report Tables" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "System Health Report Workers" +msgstr "" + +#. Label of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "System Logs" +msgstr "" + +#. Name of a role +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/gender/gender.json +#: frappe/contacts/doctype/salutation/salutation.json +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/data_export/data_export.json +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/core/doctype/deleted_document/deleted_document.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/domain/domain.json +#: frappe/core/doctype/domain_settings/domain_settings.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/file/file.json +#: frappe/core/doctype/installed_applications/installed_applications.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/log_settings/log_settings.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/module_profile/module_profile.json +#: frappe/core/doctype/navbar_settings/navbar_settings.json +#: frappe/core/doctype/package/package.json +#: frappe/core/doctype/package_import/package_import.json +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/patch_log/patch_log.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/role_replication/role_replication.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/scheduler_event/scheduler_event.json +#: frappe/core/doctype/session_default_settings/session_default_settings.json +#: frappe/core/doctype/sms_log/sms_log.json +#: frappe/core/doctype/sms_settings/sms_settings.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/success_action/success_action.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/version/version.json +#: frappe/core/doctype/view_log/view_log.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/desk/doctype/console_log/console_log.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/global_search_settings/global_search_settings.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/route_history/route_history.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/tag_link/tag_link.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_rule/email_rule.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/email/doctype/notification/notification.json +#: frappe/email/doctype/unhandled_email/unhandled_email.json +#: frappe/geo/doctype/country/country.json +#: frappe/geo/doctype/currency/currency.json +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/printing/doctype/print_heading/print_heading.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/website/doctype/discussion_reply/discussion_reply.json +#: frappe/website/doctype/discussion_topic/discussion_topic.json +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_route_meta/website_route_meta.json +#: frappe/workflow/doctype/workflow/workflow.json +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "System Manager" +msgstr "" + +#: frappe/desk/page/backups/backups.js:38 +msgid "System Manager privileges required." +msgstr "" + +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "System Notification" +msgstr "" + +#. Label of the system_page (Check) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "System Page" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/system_settings/system_settings.json +msgid "System Settings" +msgstr "" + +#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType +#. 'Module Onboarding' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "System managers are allowed by default" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:5 +msgctxt "Number system" +msgid "T" +msgstr "" + +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Tab Break" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:135 +msgid "Tab Label" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the table (Data) field in DocType 'Recorder Suggested Index' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the table (Data) field in DocType 'System Health Report Tables' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/data_export/exporter.py:23 +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:39 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Table" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Table Break" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:73 +msgid "Table Field" +msgstr "" + +#. Label of the table_fieldname (Data) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Table Fieldname" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1204 +msgid "Table Fieldname Missing" +msgstr "" + +#. Label of the table_html (HTML) field in DocType 'Version' +#: frappe/core/doctype/version/version.json +msgid "Table HTML" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Table MultiSelect" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:229 +msgid "Table Trimmed" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1171 +msgid "Table updated" +msgstr "" + +#: frappe/model/document.py:1578 +msgid "Table {0} cannot be empty" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Tabloid" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/tag/tag.json +msgid "Tag" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/tag_link/tag_link.json +msgid "Tag Link" +msgstr "" + +#: frappe/model/meta.py:59 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:81 +#: frappe/public/js/frappe/list/bulk_operations.js:430 +#: frappe/public/js/frappe/list/list_sidebar.html:48 +#: frappe/public/js/frappe/list/list_sidebar.html:60 +#: frappe/public/js/frappe/list/list_sidebar.js:253 +#: frappe/public/js/frappe/model/meta.js:207 +#: frappe/public/js/frappe/model/model.js:133 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:171 +msgid "Tags" +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:220 +msgid "Take Photo" +msgstr "" + +#. Label of the target (Data) field in DocType 'Portal Menu Item' +#. Label of the target (Small Text) field in DocType 'Website Route Redirect' +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +msgid "Target" +msgstr "" + +#. Label of the task (Select) field in DocType 'Workflow Transition Task' +#: frappe/desk/doctype/todo/todo_calendar.js:19 +#: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Task" +msgstr "" + +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "" + +#. Label of the sb1 (Section Break) field in DocType 'About Us Settings' +#. Label of the team_members (Table) field in DocType 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/www/about.html:45 +msgid "Team Members" +msgstr "" + +#. Label of the team_members_heading (Data) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Team Members Heading" +msgstr "" + +#. Label of the team_members_subtitle (Small Text) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Team Members Subtitle" +msgstr "" + +#. Label of the telemetry_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Telemetry" +msgstr "" + +#. Label of the template (Link) field in DocType 'Auto Repeat' +#. Label of the template (Code) field in DocType 'Address Template' +#. Label of the template (Code) field in DocType 'Print Format Field Template' +#. Label of the template (Code) field in DocType 'Web Template' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/website/doctype/web_template/web_template.json +msgid "Template" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:483 +#: frappe/core/doctype/data_import/importer.py:610 +msgid "Template Error" +msgstr "" + +#. Label of the template_file (Data) field in DocType 'Print Format Field +#. Template' +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +msgid "Template File" +msgstr "" + +#. Label of the template_options (Code) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Template Options" +msgstr "" + +#. Label of the template_warnings (Code) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Template Warnings" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:78 +msgid "Templates" +msgstr "" + +#: frappe/core/doctype/user/user.py:1042 +msgid "Temporarily Disabled" +msgstr "" + +#: frappe/core/doctype/translation/test_translation.py:47 +#: frappe/core/doctype/translation/test_translation.py:54 +msgid "Test Data" +msgstr "" + +#. Label of the test_job_id (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Test Job ID" +msgstr "" + +#: frappe/core/doctype/translation/test_translation.py:49 +#: frappe/core/doctype/translation/test_translation.py:57 +msgid "Test Spanish" +msgstr "" + +#: frappe/core/doctype/file/test_file.py:379 +msgid "Test_Folder" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Text" +msgstr "" + +#. Label of the text_align (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Text Align" +msgstr "" + +#. Label of the text_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Text Color" +msgstr "" + +#. Label of the text_content (Code) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Text Content" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Text Editor" +msgstr "" + +#: frappe/templates/emails/password_reset.html:5 +msgid "Thank you" +msgstr "" + +#: frappe/www/contact.py:39 +msgid "Thank you for reaching out to us. We will get back to you at the earliest.\n\n\n" +"Your query:\n\n" +"{0}" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:147 +msgid "Thank you for spending your valuable time to fill this form" +msgstr "" + +#: frappe/templates/emails/auto_reply.html:1 +msgid "Thank you for your email" +msgstr "" + +#: frappe/website/doctype/help_article/templates/help_article.html:27 +msgid "Thank you for your feedback!" +msgstr "" + +#: frappe/templates/includes/contact.js:36 +msgid "Thank you for your message" +msgstr "" + +#: frappe/templates/emails/new_user.html:16 +msgid "Thanks" +msgstr "" + +#: frappe/templates/emails/auto_repeat_fail.html:3 +msgid "The Auto Repeat for this document has been disabled." +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1194 +msgid "The CSV format is case sensitive" +msgstr "" + +#. Description of the 'Client ID' (Data) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "The Client ID obtained from the Google Cloud Console under \n" +"\"APIs & Services\" > \"Credentials\"\n" +"" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:219 +msgid "The Condition '{0}' is invalid" +msgstr "" + +#: frappe/core/doctype/file/file.py:220 +msgid "The File URL you've entered is incorrect" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 +msgid "The Next Scheduled Date cannot be later than the End Date." +msgstr "" + +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:29 +msgid "The Push Relay Server URL key (`push_relay_server_url`) is missing in your site config" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:367 +msgid "The User record for this request has been auto-deleted due to inactivity by system admins." +msgstr "" + +#: frappe/public/js/frappe/desk.js:162 +msgid "The application has been updated to a new version, please refresh this page" +msgstr "" + +#. Description of the 'Application Name' (Data) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "The application name will be used in the Login page." +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:323 +msgid "The attachments could not be correctly linked to the new document" +msgstr "" + +#. Description of the 'API Key' (Data) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "The browser API key obtained from the Google Cloud Console under \n" +"\"APIs & Services\" > \"Credentials\"\n" +"" +msgstr "" + +#: frappe/database/database.py:474 +msgid "The changes have been reverted." +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1009 +msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." +msgstr "" + +#: frappe/templates/includes/comments/comments.py:48 +msgid "The comment cannot be empty" +msgstr "" + +#: frappe/templates/emails/workflow_action.html:9 +msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone." +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:687 +msgid "The count shown is an estimated count. Click here to see the accurate count." +msgstr "" + +#. Description of the 'Code' (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "The country's ISO 3166 ALPHA-2 code." +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:301 +msgid "The document could not be correctly assigned" +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:295 +msgid "The document has been assigned to {0}" +msgstr "" + +#. Description of the 'Parent Document Type' (Link) field in DocType 'Dashboard +#. Chart' +#. Description of the 'Parent Document Type' (Link) field in DocType 'Number +#. Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "The document type selected is a child table, so the parent document type is required." +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:110 +msgid "The field {0} is mandatory" +msgstr "" + +#: frappe/core/doctype/file/file.py:157 +msgid "The fieldname you've specified in Attached To Field is invalid" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:62 +msgid "The following Assignment Days have been repeated: {0}" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1089 +msgid "The following values are invalid: {0}. Values must be one of {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1046 +msgid "The following values do not exist for {0}: {1}" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:89 +msgid "The limit has not set for the user type {0} in the site config file." +msgstr "" + +#: frappe/templates/emails/login_with_email_link.html:21 +msgid "The link will expire in {0} minutes" +msgstr "" + +#: frappe/www/login.py:194 +msgid "The link you trying to login is invalid or expired." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:125 +msgid "The meta description is an HTML attribute that provides a brief summary of a web page. Search engines such as Google often display the meta description in search results, which can influence click-through rates." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:132 +msgid "The meta image is unique image representing the content of the page. Images for this Card should be at least 280px in width, and at least 150px in height." +msgstr "" + +#. Description of the 'Calendar Name' (Data) field in DocType 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "The name that will appear in Google Calendar" +msgstr "" + +#. Description of the 'Track Steps' (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "The next tour will start from where the user left off." +msgstr "" + +#. Description of the 'Request Timeout' (Int) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "The number of seconds until the request expires" +msgstr "" + +#: frappe/www/update-password.html:101 +msgid "The password of your account has expired." +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:398 +msgid "The process for deletion of {0} data associated with {1} has been initiated." +msgstr "" + +#. Description of the 'App ID' (Data) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "The project number obtained from Google Cloud Console under \n" +"\"IAM & Admin\" > \"Settings\"\n" +"" +msgstr "" + +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

    Click here to download:
    {0}

    This link will expire in {1} hours." +msgstr "" + +#: frappe/core/doctype/user/user.py:1000 +msgid "The reset password link has been expired" +msgstr "" + +#: frappe/core/doctype/user/user.py:1002 +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 +msgid "The resource you are looking for is not available" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:114 +msgid "The role {0} should be a custom role." +msgstr "" + +#: frappe/core/doctype/audit_trail/audit_trail.py:46 +msgid "The selected document {0} is not a {1}." +msgstr "" + +#: frappe/utils/response.py:336 +msgid "The system is being updated. Please refresh again after a few moments." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:9 +msgid "The system provides many pre-defined roles. You can add new roles to set finer permissions." +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:97 +msgid "The total number of user document types limit has been crossed." +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:25 +msgid "The value you pasted was {0} characters long. Max allowed characters is {1}." +msgstr "" + +#. Description of the 'Condition' (Small Text) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "The webhook will be triggered if this expression is true" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 +msgid "The {0} is already on auto repeat {1}" +msgstr "" + +#. Label of the section_break_6 (Section Break) field in DocType 'Website +#. Settings' +#. Label of the theme (Data) field in DocType 'Website Theme' +#. Label of the theme_scss (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Theme" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:130 +msgid "Theme Changed" +msgstr "" + +#. Label of the bootstrap_theme_section (Tab Break) field in DocType 'Website +#. Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Theme Configuration" +msgstr "" + +#. Label of the theme_url (Data) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Theme URL" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:125 +msgid "There are documents which have workflow states that do not exist in this Workflow. It is recommended that you add these states to the Workflow and change their states before removing these states." +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:442 +msgid "There are no upcoming events for you." +msgstr "" + +#: frappe/website/web_template/discussions/discussions.html:3 +msgid "There are no {0} for this {1}, why don't you start one!" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:973 +msgid "There are {0} with the same filters already in the queue:" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:81 +#: frappe/website/doctype/web_form/web_form.js:318 +msgid "There can be only 9 Page Break fields in a Web Form" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1444 +msgid "There can be only one Fold in a form" +msgstr "" + +#: frappe/contacts/doctype/address/address.py:183 +msgid "There is an error in your Address Template {0}" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:162 +msgid "There is no data to be exported" +msgstr "" + +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:492 +msgid "There is nothing new to show you right now." +msgstr "" + +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 +msgid "There is some problem with the file url: {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:970 +msgid "There is {0} with the same filters already in the queue:" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.py:156 +msgid "There must be atleast one permission rule." +msgstr "" + +#: frappe/www/error.py:17 +msgid "There was an error building this page" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 +msgid "There was an error saving filters" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/attachments.js:216 +msgid "There were errors" +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:277 +msgid "There were errors while creating the document. Please try again." +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:843 +msgid "There were errors while sending email. Please try again." +msgstr "" + +#: frappe/model/naming.py:502 +msgid "There were some errors setting the name, please contact the administrator" +msgstr "" + +#. Description of the 'Announcement Widget' (Text Editor) field in DocType +#. 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "These announcements will appear inside a dismissible alert below the Navbar." +msgstr "" + +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "" + +#. Description of the 'LDAP Custom Settings' (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "These settings are required if 'Custom' LDAP Directory is used" +msgstr "" + +#. Description of the 'Defaults' (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values." +msgstr "" + +#: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14 +msgid "Third Party Apps" +msgstr "" + +#. Label of the third_party_authentication (Section Break) field in DocType +#. 'User' +#: frappe/core/doctype/user/user.json +msgid "Third Party Authentication" +msgstr "" + +#: frappe/geo/doctype/currency/currency.js:8 +msgid "This Currency is disabled. Enable to use in transactions" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 +msgid "This Kanban Board will be private" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:666 +msgid "This Month" +msgstr "" + +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:670 +msgid "This Quarter" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:662 +msgid "This Week" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:674 +msgid "This Year" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:220 +msgid "This action is irreversible. Do you wish to continue?" +msgstr "" + +#: frappe/__init__.py:546 +msgid "This action is only allowed for {}" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:117 +#: frappe/public/js/frappe/model/model.js:706 +msgid "This cannot be undone" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +msgstr "" + +#. Description of the 'Is Public' (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "This card will be available to all Users if this is set" +msgstr "" + +#. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "This chart will be available to all Users if this is set" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:212 +msgid "This doctype has no orphan fields to trim" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1055 +msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." +msgstr "" + +#: frappe/model/delete_doc.py:153 +msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." +msgstr "" + +#: frappe/www/confirm_workflow_action.html:8 +msgid "This document has been modified after the email was sent." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1305 +msgid "This document has unsaved changes which might not appear in final PDF.
    Consider saving the document before printing." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1102 +msgid "This document is already amended, you cannot ammend it again" +msgstr "" + +#: frappe/model/document.py:475 +msgid "This document is currently locked and queued for execution. Please try again after some time." +msgstr "" + +#: frappe/templates/emails/auto_repeat_fail.html:7 +msgid "This email is autogenerated" +msgstr "" + +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:30 +msgid "This feature can not be used as dependencies are missing.\n" +"\t\t\t\tPlease contact your system manager to enable this by installing pycups!" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:23 +msgid "This feature is brand new and still experimental" +msgstr "" + +#. Description of the 'Depends On' (Code) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "This field will appear only if the fieldname defined here has value OR the rules are true (examples):\n" +"myfield\n" +"eval:doc.myfield=='My Value'\n" +"eval:doc.age>18" +msgstr "" + +#: frappe/core/doctype/file/file.py:525 +msgid "This file is attached to a protected document and cannot be deleted." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:76 +msgid "This file is public and can be accessed by anyone, even without logging in. Mark it private to limit access." +msgstr "" + +#: frappe/core/doctype/file/file.js:20 +msgid "This file is public. It can be accessed without authentication." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1199 +msgid "This form has been modified after you have loaded it" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:2259 +msgid "This form is not editable due to a Workflow." +msgstr "" + +#. Description of the 'Is Default' (Check) field in DocType 'Address Template' +#: frappe/contacts/doctype/address_template/address_template.json +msgid "This format is used if country specific format is not found" +msgstr "" + +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.py:52 +msgid "This geolocation provider is not supported yet." +msgstr "" + +#. Description of the 'Header' (HTML Editor) field in DocType 'Website +#. Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "This goes above the slideshow." +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2197 +msgid "This is a background report. Please set the appropriate filters and then generate a new one." +msgstr "" + +#: frappe/utils/password_strength.py:158 +msgid "This is a top-10 common password." +msgstr "" + +#: frappe/utils/password_strength.py:160 +msgid "This is a top-100 common password." +msgstr "" + +#: frappe/utils/password_strength.py:162 +msgid "This is a very common password." +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.js:9 +msgid "This is a virtual doctype and data is cleared periodically." +msgstr "" + +#: frappe/templates/emails/auto_reply.html:5 +msgid "This is an automatically generated reply" +msgstr "" + +#: frappe/utils/password_strength.py:164 +msgid "This is similar to a commonly used password." +msgstr "" + +#. Description of the 'Current Value' (Int) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "This is the number of the last created transaction with this prefix" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407 +msgid "This link has already been activated for verification." +msgstr "" + +#: frappe/utils/verified_command.py:49 +msgid "This link is invalid or expired. Please make sure you have pasted correctly." +msgstr "" + +#: frappe/printing/page/print/print.js:431 +msgid "This may get printed on multiple pages" +msgstr "" + +#: frappe/utils/goal.py:109 +msgid "This month" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1045 +msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." +msgstr "" + +#: frappe/templates/emails/auto_email_report.html:57 +msgid "This report was generated on {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:861 +msgid "This report was generated {0}." +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:122 +msgid "This request has not yet been approved by the user." +msgstr "" + +#: frappe/templates/includes/navbar/navbar_items.html:95 +msgid "This site is in read only mode, full functionality will be restored soon." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.js:73 +msgid "This site is running in developer mode. Any change made here will be updated in code." +msgstr "" + +#: frappe/www/attribution.html:11 +msgid "This software is built on top of many open source packages." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:71 +msgid "This title will be used as the title of the webpage as well as in meta tags" +msgstr "" + +#: frappe/public/js/frappe/form/controls/base_input.js:129 +msgid "This value is fetched from {0}'s {1} field" +msgstr "" + +#. Description of the 'Max Report Rows' (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "This value specifies the max number of rows that can be rendered in report view." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:85 +msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish" +msgstr "" + +#. Description of the 'Callback Message' (Small Text) field in DocType +#. 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "This will be shown in a modal after routing" +msgstr "" + +#. Description of the 'Report Description' (Data) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "This will be shown to the user in a dialog after routing to the report" +msgstr "" + +#: frappe/www/third_party_apps.html:23 +msgid "This will log out {0} from all other devices" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:3 +msgid "This will permanently remove your data." +msgstr "" + +#: frappe/desk/doctype/form_tour/form_tour.js:103 +msgid "This will reset this tour and show it to all users. Are you sure?" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.js:15 +msgid "This will terminate the job immediately and might be dangerous, are you sure?" +msgstr "" + +#: frappe/core/doctype/user/user.py:1255 +msgid "Throttled" +msgstr "" + +#. Label of the thumbnail_url (Small Text) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Thumbnail URL" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the thursday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Thursday" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the time (Datetime) field in DocType 'Recorder' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Time" +msgstr "" + +#. Label of the time_format (Select) field in DocType 'Language' +#. Label of the time_format (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Time Format" +msgstr "" + +#. Label of the time_interval (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Time Interval" +msgstr "" + +#. Label of the timeseries (Check) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Time Series" +msgstr "" + +#. Label of the based_on (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Time Series Based On" +msgstr "" + +#. Label of the time_taken (Duration) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Time Taken" +msgstr "" + +#. Label of the rate_limit_seconds (Int) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Time Window (Seconds)" +msgstr "" + +#. Label of the time_zone (Select) field in DocType 'System Settings' +#. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#. Label of the time_zone (Data) field in DocType 'Web Page View' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:407 +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Time Zone" +msgstr "" + +#. Label of the time_zones (Text) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "Time Zones" +msgstr "" + +#. Label of the time_format (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "Time format" +msgstr "" + +#. Label of the time_in_queries (Float) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Time in Queries" +msgstr "" + +#. Description of the 'Expiry time of QR Code Image Page' (Int) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Time in seconds to retain QR code image on server. Min:240" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:413 +msgid "Time series based on is required to create a dashboard chart" +msgstr "" + +#: frappe/public/js/frappe/form/controls/time.js:124 +msgid "Time {0} must be in format: {1}" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Timed Out" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:64 +msgid "Timeless Night" +msgstr "" + +#. Label of the timeline (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Timeline" +msgstr "" + +#. Label of the timeline_doctype (Link) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Timeline DocType" +msgstr "" + +#. Label of the timeline_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Timeline Field" +msgstr "" + +#. Label of the timeline_links_sections (Section Break) field in DocType +#. 'Communication' +#. Label of the timeline_links (Table) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Timeline Links" +msgstr "" + +#. Label of the timeline_name (Dynamic Link) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Timeline Name" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1539 +msgid "Timeline field must be a Link or Dynamic Link" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1535 +msgid "Timeline field must be a valid fieldname" +msgstr "" + +#. Label of the timeout (Duration) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Timeout" +msgstr "" + +#. Label of the timeout (Int) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Timeout (In Seconds)" +msgstr "" + +#. Label of the timeseries (Check) field in DocType 'Dashboard Chart Source' +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgid "Timeseries" +msgstr "" + +#. Label of the timespan (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:28 +msgid "Timespan" +msgstr "" + +#. Label of the timestamp (Datetime) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Timestamp" +msgstr "" + +#: frappe/desk/doctype/system_console/system_console.js:41 +msgid "Tip: Try the new dropdown console using" +msgstr "" + +#. Label of the title (Data) field in DocType 'DocType State' +#. Label of the method (Data) field in DocType 'Error Log' +#. Label of the title (Data) field in DocType 'Page' +#. Label of the title (Data) field in DocType 'Changelog Feed' +#. Label of the title (Data) field in DocType 'Form Tour' +#. Label of the title (Data) field in DocType 'Form Tour Step' +#. Label of the title (Data) field in DocType 'Module Onboarding' +#. Label of the title (Data) field in DocType 'Note' +#. Label of the title (Data) field in DocType 'Onboarding Step' +#. Label of the title (Data) field in DocType 'System Health Report Errors' +#. Label of the title (Data) field in DocType 'Workspace' +#. Label of the title (Data) field in DocType 'Email Group' +#. Label of the title (Data) field in DocType 'Discussion Topic' +#. Label of the title (Data) field in DocType 'Help Article' +#. Label of the title (Data) field in DocType 'Portal Menu Item' +#. Label of the title (Data) field in DocType 'Web Form' +#. Label of the list_title (Data) field in DocType 'Web Form' +#. Label of the title (Data) field in DocType 'Web Page' +#. Label of the meta_title (Data) field in DocType 'Web Page' +#. Label of the title (Data) field in DocType 'Website Sidebar' +#. Label of the title (Data) field in DocType 'Website Sidebar Item' +#: frappe/core/doctype/doctype/boilerplate/controller_list.html:14 +#: frappe/core/doctype/doctype/boilerplate/controller_list.html:23 +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/page/page.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/email/doctype/email_group/email_group.json +#: frappe/public/js/frappe/views/workspace/workspace.js:393 +#: frappe/website/doctype/discussion_topic/discussion_topic.json +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_sidebar/website_sidebar.json +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Title" +msgstr "" + +#. Label of the title_field (Data) field in DocType 'DocType' +#. Label of the title_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Title Field" +msgstr "" + +#. Label of the title_prefix (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Title Prefix" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1476 +msgid "Title field must be a valid fieldname" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:70 +msgid "Title of the page" +msgstr "" + +#. Label of the recipients (Code) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/permission_log/permission_log.js:12 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:70 +msgid "To" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:53 +msgctxt "Email Recipients" +msgid "To" +msgstr "" + +#. Label of the to_date (Date) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/report/website_analytics/website_analytics.js:14 +msgid "To Date" +msgstr "" + +#. Label of the to_date_field (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "To Date Field" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/todo/todo_list.js:6 +msgid "To Do" +msgstr "" + +#. Description of the 'Subject' (Data) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "To add dynamic subject, use jinja tags like\n\n" +"
    New {{ doc.doctype }} #{{ doc.name }}
    " +msgstr "" + +#. Description of the 'Subject' (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "To add dynamic subject, use jinja tags like\n\n" +"
    {{ doc.name }} Delivered
    " +msgstr "" + +#. Description of the 'JSON Request Body' (Code) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "To add dynamic values from the document, use jinja tags like\n\n" +"
    \n" +"
    { \"id\": \"{{ doc.name }}\" }\n"
    +"
    \n" +"
    " +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 +msgid "To allow more reports update limit in System Settings." +msgstr "" + +#. Label of the section_break_10 (Section Break) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "To and CC" +msgstr "" + +#. Description of the 'Use First Day of Period' (Check) field in DocType 'Auto +#. Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "To begin the date range at the start of the chosen period. For example, if 'Year' is selected as the period, the report will start from January 1st of the current year." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:35 +msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}." +msgstr "" + +#: frappe/www/login.html:76 +msgid "To enable it follow the instructions in the following link: {0}" +msgstr "" + +#: frappe/core/doctype/server_script/server_script.js:40 +msgid "To enable server scripts, read the {0}." +msgstr "" + +#: frappe/desk/doctype/onboarding_step/onboarding_step.js:18 +msgid "To export this step as JSON, link it in a Onboarding document and save the document." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:126 +msgid "To generate password click {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:862 +msgid "To get the updated report, click on {0}." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:139 +msgid "To know more click {0}" +msgstr "" + +#. Description of the 'Console' (Code) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "To print output use print(text)" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:291 +msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:8 +msgid "To use Google Calendar, enable {0}." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.js:8 +msgid "To use Google Contacts, enable {0}." +msgstr "" + +#. Description of the 'Enable Google indexing' (Check) field in DocType +#. 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "To use Google Indexing, enable Google Settings." +msgstr "" + +#. Description of the 'Slack Channel' (Link) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "To use Slack Channel, add a Slack Webhook URL." +msgstr "" + +#: frappe/public/js/frappe/utils/diffview.js:44 +msgid "To version" +msgstr "" + +#. Label of a shortcut in the Tools Workspace +#. Name of a DocType +#. Name of a report +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55 +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.json +msgid "ToDo" +msgstr "" + +#: frappe/public/js/frappe/form/controls/date.js:58 +#: frappe/public/js/frappe/ui/filters/filter.js:733 +#: frappe/public/js/frappe/views/calendar/calendar.js:274 +msgid "Today" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1572 +msgid "Toggle Chart" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +msgid "Toggle Full Width" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:33 +msgid "Toggle Grid View" +msgstr "" + +#: frappe/public/js/frappe/ui/page.js:201 +#: frappe/public/js/frappe/ui/page.js:203 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 +msgid "Toggle Sidebar" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1966 +msgctxt "Button in list view menu" +msgid "Toggle Sidebar" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +msgid "Toggle Theme" +msgstr "" + +#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Token Cache" +msgstr "" + +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "" + +#. Label of the token_type (Data) field in DocType 'Token Cache' +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Token Type" +msgstr "" + +#. Label of the token_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Token URI" +msgstr "" + +#: frappe/utils/oauth.py:184 +msgid "Token is missing" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:739 +msgid "Tomorrow" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:68 +#: frappe/model/workflow.py:310 +msgid "Too Many Documents" +msgstr "" + +#: frappe/rate_limiter.py:101 +msgid "Too Many Requests" +msgstr "" + +#: frappe/database/database.py:473 +msgid "Too many changes to database in single action." +msgstr "" + +#: frappe/utils/background_jobs.py:730 +msgid "Too many queued background jobs ({0}). Please retry after some time." +msgstr "" + +#: frappe/core/doctype/user/user.py:1043 +msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" +msgstr "" + +#. Name of a Workspace +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Tools" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:153 +msgid "Top" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13 +msgid "Top 10" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "Top Bar Item" +msgstr "" + +#. Label of the top_bar_items (Table) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Top Bar Items" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:245 +msgid "Top Center" +msgstr "" + +#. Label of the top_errors (Table) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Top Errors" +msgstr "" + +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:244 +msgid "Top Left" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:246 +msgid "Top Right" +msgstr "" + +#. Label of the topic (Link) field in DocType 'Discussion Reply' +#: frappe/website/doctype/discussion_reply/discussion_reply.json +msgid "Topic" +msgstr "" + +#: frappe/desk/query_report.py:587 +#: frappe/public/js/frappe/views/reports/print_grid.html:45 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 +msgid "Total" +msgstr "" + +#. Label of the total_background_workers (Int) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Background Workers" +msgstr "" + +#. Label of the total_errors (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Errors (last 1 day)" +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:259 +msgid "Total Images" +msgstr "" + +#. Label of the total_outgoing_emails (Int) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Outgoing Emails" +msgstr "" + +#. Label of the total_subscribers (Int) field in DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Total Subscribers" +msgstr "" + +#. Label of the total_users (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Users" +msgstr "" + +#. Label of the total_working_time (Duration) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Total Working Time" +msgstr "" + +#. Description of the 'Initial Sync Count' (Select) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Total number of emails to sync in initial sync process" +msgstr "" + +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 +msgid "Total:" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1258 +msgid "Totals" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1233 +msgid "Totals Row" +msgstr "" + +#. Label of the trace_id (Data) field in DocType 'Error Log' +#: frappe/core/doctype/error_log/error_log.json +msgid "Trace ID" +msgstr "" + +#. Label of the traceback (Code) field in DocType 'Patch Log' +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Traceback" +msgstr "" + +#. Label of the track_changes (Check) field in DocType 'DocType' +#. Label of the track_changes (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Track Changes" +msgstr "" + +#. Label of the track_email_status (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Track Email Status" +msgstr "" + +#. Label of the track_field (Data) field in DocType 'Milestone' +#: frappe/automation/doctype/milestone/milestone.json +msgid "Track Field" +msgstr "" + +#. Label of the track_seen (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Track Seen" +msgstr "" + +#. Label of the track_steps (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Track Steps" +msgstr "" + +#. Label of the track_views (Check) field in DocType 'DocType' +#. Label of the track_views (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Track Views" +msgstr "" + +#. Description of the 'Track Email Status' (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Track if your email has been opened by the recipient.\n" +"
    \n" +"Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered \"Opened\"" +msgstr "" + +#. Description of a DocType +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Track milestones for any document" +msgstr "" + +#. Label of a Card Break in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "Tracking" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1821 +msgid "Tracking URL generated and copied to clipboard" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:31 +msgid "Transgender" +msgstr "" + +#: frappe/public/js/workflow_builder/components/Properties.vue:19 +msgid "Transition Properties" +msgstr "" + +#. Label of the transition_rules (Section Break) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Transition Rules" +msgstr "" + +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + +#. Label of the transitions (Table) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Transitions" +msgstr "" + +#. Label of the translatable (Check) field in DocType 'DocField' +#. Label of the translatable (Check) field in DocType 'Custom Field' +#. Label of the translatable (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Translatable" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2252 +msgid "Translate Data" +msgstr "" + +#. Label of the translated_doctype (Check) field in DocType 'DocType' +#. Label of the translated_doctype (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Translate Link Fields" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1658 +msgid "Translate values" +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:11 +msgid "Translate {0}" +msgstr "" + +#. Label of the translated_text (Code) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Translated Text" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/translation/translation.json +msgid "Translation" +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:46 +msgid "Translations" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "" + +#. Option for the 'Email Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Trash" +msgstr "" + +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Tree" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:210 +msgid "Tree View" +msgstr "" + +#. Description of the 'Is Tree' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Tree structures are implemented using Nested Set" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:19 +msgid "Tree view is not available for {0}" +msgstr "" + +#. Label of the method (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Trigger Method" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:196 +msgid "Trigger Primary Action" +msgstr "" + +#: frappe/tests/test_translate.py:55 +msgid "Trigger caching" +msgstr "" + +#. Description of the 'Trigger Method' (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Trigger on valid methods like \"before_insert\", \"after_update\", etc (will depend on the DocType selected)" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:144 +msgid "Trim Table" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:318 +msgid "Try Again" +msgstr "" + +#. Label of the try_naming_series (Data) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Try a Naming Series" +msgstr "" + +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 +msgid "Try the new Print Designer" +msgstr "" + +#: frappe/utils/password_strength.py:106 +msgid "Try to avoid repeated words and characters" +msgstr "" + +#: frappe/utils/password_strength.py:98 +msgid "Try to use a longer keyboard pattern with more turns" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the tuesday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Tuesday" +msgstr "" + +#. Label of the two_factor_auth (Check) field in DocType 'Role' +#. Label of the two_factor_authentication (Section Break) field in DocType +#. 'System Settings' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Two Factor Authentication" +msgstr "" + +#. Label of the two_factor_method (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Two Factor Authentication method" +msgstr "" + +#. Label of the communication_medium (Select) field in DocType 'Communication' +#. Label of the fieldtype (Select) field in DocType 'DocField' +#. Label of the fieldtype (Select) field in DocType 'Customize Form Field' +#. Label of the type (Data) field in DocType 'Console Log' +#. Label of the type (Select) field in DocType 'Dashboard Chart' +#. Label of the type (Select) field in DocType 'Desktop Icon' +#. Label of the type (Select) field in DocType 'Notification Log' +#. Label of the type (Select) field in DocType 'Number Card' +#. Label of the type (Select) field in DocType 'System Console' +#. Label of the type (Select) field in DocType 'Workspace' +#. Label of the type (Select) field in DocType 'Workspace Link' +#. Label of the type (Select) field in DocType 'Workspace Shortcut' +#. Label of the type (Select) field in DocType 'Web Template' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/console_log/console_log.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/views/file/file_view.js:370 +#: frappe/public/js/frappe/views/workspace/workspace.js:399 +#: frappe/public/js/frappe/widgets/widget_dialog.js:404 +#: frappe/website/doctype/web_template/web_template.json +#: frappe/www/attribution.html:35 +msgid "Type" +msgstr "" + +#: frappe/public/js/frappe/form/controls/comment.js:90 +msgid "Type a reply / comment" +msgstr "" + +#: frappe/templates/includes/search_template.html:51 +msgid "Type something in the search box to search" +msgstr "" + +#: frappe/templates/discussions/comment_box.html:8 +#: frappe/templates/discussions/reply_section.html:53 +#: frappe/templates/discussions/topic_modal.html:11 +msgid "Type title" +msgstr "" + +#: frappe/templates/discussions/discussions.js:341 +msgid "Type your reply here..." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:143 +msgid "Type:" +msgstr "" + +#. Label of the ui_tour (Check) field in DocType 'Form Tour' +#. Label of the ui_tour (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "UI Tour" +msgstr "" + +#. Label of the uid (Int) field in DocType 'Communication' +#. Label of the uid (Data) field in DocType 'Email Flag Queue' +#. Label of the uid (Data) field in DocType 'Unhandled Email' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "UID" +msgstr "" + +#. Label of the uidnext (Int) field in DocType 'Email Account' +#. Label of the uidnext (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "UIDNEXT" +msgstr "" + +#. Label of the uidvalidity (Data) field in DocType 'Email Account' +#. Label of the uidvalidity (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "UIDVALIDITY" +msgstr "" + +#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "UNSEEN" +msgstr "" + +#. Description of the 'Redirect URIs' (Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n" +"
    e.g. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Workspace' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Label of the url (Data) field in DocType 'Workspace Shortcut' +#. Label of the url (Small Text) field in DocType 'Integration Request' +#. Label of the url (Text) field in DocType 'Webhook Request Log' +#. Label of the url (Data) field in DocType 'Top Bar Item' +#. Label of the url (Data) field in DocType 'Website Slideshow Item' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:471 +#: frappe/website/doctype/top_bar_item/top_bar_item.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "URL" +msgstr "" + +#. Description of the 'Documentation Link' (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "URL for documentation or help" +msgstr "" + +#: frappe/core/doctype/file/file.py:231 +msgid "URL must start with http:// or https://" +msgstr "" + +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:84 +msgid "URL of the page" +msgstr "" + +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "" + +#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "URL to go to on clicking the slideshow image" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/utm_campaign/utm_campaign.json +msgid "UTM Campaign" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/utm_medium/utm_medium.json +msgid "UTM Medium" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/utm_source/utm_source.json +msgid "UTM Source" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "UUID" +msgstr "" + +#: frappe/desk/form/document_follow.py:79 +msgid "Un-following document {0}" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:67 +msgid "Unable to find DocType {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:338 +msgid "Unable to load camera." +msgstr "" + +#: frappe/public/js/frappe/model/model.js:230 +msgid "Unable to load: {0}" +msgstr "" + +#: frappe/utils/csvutils.py:37 +msgid "Unable to open attached file. Did you export it as CSV?" +msgstr "" + +#: frappe/core/doctype/file/utils.py:98 frappe/core/doctype/file/utils.py:130 +msgid "Unable to read file format for {0}" +msgstr "" + +#: frappe/core/doctype/communication/email.py:180 +msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:450 +msgid "Unable to update event" +msgstr "" + +#: frappe/core/doctype/file/file.py:489 +msgid "Unable to write file format for {0}" +msgstr "" + +#. Label of the unassign_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Unassign Condition" +msgstr "" + +#: frappe/app.py:399 +msgid "Uncaught Exception" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:103 +msgid "Unchanged" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:518 +msgid "Undo" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:526 +msgid "Undo last action" +msgstr "" + +#: frappe/database/query.py:1497 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:109 +#: frappe/public/js/frappe/form/toolbar.js:879 +msgid "Unfollow" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Unhandled Email" +msgstr "" + +#. Label of the unhandled_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Unhandled Emails" +msgstr "" + +#. Label of the unique (Check) field in DocType 'DocField' +#. Label of the unique (Check) field in DocType 'Custom Field' +#. Label of the unique (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Unique" +msgstr "" + +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
    \n" +"Should remain same across multiple versions or updates of the software." +msgstr "" + +#: frappe/website/report/website_analytics/website_analytics.js:60 +msgid "Unknown" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:209 +msgid "Unknown Column: {0}" +msgstr "" + +#: frappe/utils/data.py:1256 +msgid "Unknown Rounding Method: {}" +msgstr "" + +#: frappe/auth.py:319 +msgid "Unknown User" +msgstr "" + +#: frappe/utils/csvutils.py:54 +msgid "Unknown file encoding. Tried to use: {0}" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.js:7 +msgid "Unlock Reference Document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 +#: frappe/website/doctype/web_form/web_form.js:86 +msgid "Unpublish" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue' +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Unread" +msgstr "" + +#. Label of the unread_notification_sent (Check) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Unread Notification Sent" +msgstr "" + +#: frappe/utils/safe_exec.py:498 +msgid "Unsafe SQL query" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:159 +#: frappe/public/js/frappe/form/controls/multicheck.js:166 +msgid "Unselect All" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Unshared" +msgstr "" + +#: frappe/email/queue.py:67 +msgid "Unsubscribe" +msgstr "" + +#. Label of the unsubscribe_method (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Unsubscribe Method" +msgstr "" + +#. Label of the unsubscribe_params (Code) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Unsubscribe Params" +msgstr "" + +#. Label of the unsubscribed (Check) field in DocType 'Contact' +#. Label of the unsubscribed (Check) field in DocType 'User' +#. Label of the unsubscribed (Check) field in DocType 'Email Group Member' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/email_group_member/email_group_member.json +#: frappe/email/queue.py:123 +msgid "Unsubscribed" +msgstr "" + +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:72 +msgid "Untitled Column" +msgstr "" + +#: frappe/core/doctype/file/file.js:38 +msgid "Unzip" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:132 +msgid "Unzipped {0} files" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:125 +msgid "Unzipping files..." +msgstr "" + +#: frappe/desk/doctype/event/event.py:273 +msgid "Upcoming Events for Today" +msgstr "" + +#. Label of the update (Button) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/data_import/data_import_list.js:36 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:23 +#: frappe/custom/doctype/customize_form/customize_form.js:438 +#: frappe/desk/doctype/bulk_update/bulk_update.js:15 +#: frappe/printing/page/print_format_builder/print_format_builder.js:447 +#: frappe/printing/page/print_format_builder/print_format_builder.js:507 +#: frappe/printing/page/print_format_builder/print_format_builder.js:678 +#: frappe/printing/page/print_format_builder/print_format_builder.js:765 +#: frappe/public/js/frappe/form/grid_row.js:428 +msgid "Update" +msgstr "" + +#. Label of the update_amendment_naming (Button) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Update Amendment Naming" +msgstr "" + +#. Option for the 'Import Type' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Update Existing Records" +msgstr "" + +#. Label of the update_field (Select) field in DocType 'Workflow Document +#. State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Update Field" +msgstr "" + +#: frappe/core/doctype/installed_applications/installed_applications.js:6 +#: frappe/core/doctype/installed_applications/installed_applications.js:13 +msgid "Update Hooks Resolution Order" +msgstr "" + +#: frappe/core/doctype/installed_applications/installed_applications.js:45 +msgid "Update Order" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:494 +msgid "Update Password" +msgstr "" + +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + +#. Label of the update_series (Section Break) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Update Series Counter" +msgstr "" + +#. Label of the update_series_start (Button) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Update Series Number" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Update Settings" +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:13 +msgid "Update Translations" +msgstr "" + +#. Label of the update_value (Small Text) field in DocType 'Bulk Update' +#. Label of the update_value (Data) field in DocType 'Workflow Document State' +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Update Value" +msgstr "" + +#: frappe/utils/change_log.py:381 +msgid "Update from Frappe Cloud" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:375 +msgid "Update {0} records" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'Permission Log' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 +#: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 +#: frappe/public/js/frappe/web_form/web_form.js:451 +msgid "Updated" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.js:32 +msgid "Updated Successfully" +msgstr "" + +#: frappe/public/js/frappe/desk.js:446 +msgid "Updated To A New Version 🎉" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:372 +msgid "Updated successfully" +msgstr "" + +#: frappe/utils/response.py:335 +msgid "Updating" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:11 +msgctxt "Freeze message while updating a document" +msgid "Updating" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:49 +msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run." +msgstr "" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:17 +msgid "Updating counter may lead to document name conflicts if not done properly" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.py:23 +msgid "Updating global settings" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59 +msgid "Updating naming series options" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:136 +msgid "Updating related fields..." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:95 +msgid "Updating {0}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:36 +msgid "Updating {0} of {1}, {2}" +msgstr "" + +#: frappe/public/js/billing.bundle.js:131 +msgid "Upgrade plan" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.js:331 +msgid "Upgrade your support experience with Frappe Helpdesk" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 +#: frappe/public/js/frappe/form/grid.js:66 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:13 +msgid "Upload" +msgstr "" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:93 +msgid "Upload Image" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 +msgid "Upload file" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 +msgid "Upload {0} files" +msgstr "" + +#. Label of the uploaded_to_dropbox (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Uploaded To Dropbox" +msgstr "" + +#. Label of the uploaded_to_google_drive (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Uploaded To Google Drive" +msgstr "" + +#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#, python-format +msgid "Use % for any non empty value." +msgstr "" + +#. Label of the ascii_encode_password (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Use ASCII encoding for password" +msgstr "" + +#. Label of the use_first_day_of_period (Check) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Use First Day of Period" +msgstr "" + +#. Label of the use_html (Check) field in DocType 'Email Template' +#: frappe/email/doctype/email_template/email_template.json +msgid "Use HTML" +msgstr "" + +#. Label of the use_imap (Check) field in DocType 'Email Account' +#. Label of the use_imap (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Use IMAP" +msgstr "" + +#. Label of the use_number_format_from_currency (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Use Number Format from Currency" +msgstr "" + +#. Label of the use_post (Check) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Use POST" +msgstr "" + +#. Label of the use_report_chart (Check) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Use Report Chart" +msgstr "" + +#. Label of the use_ssl (Check) field in DocType 'Email Account' +#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Account' +#. Label of the use_ssl (Check) field in DocType 'Email Domain' +#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Use SSL" +msgstr "" + +#. Label of the use_starttls (Check) field in DocType 'Email Account' +#. Label of the use_starttls (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Use STARTTLS" +msgstr "" + +#. Label of the use_tls (Check) field in DocType 'Email Account' +#. Label of the use_tls (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Use TLS" +msgstr "" + +#: frappe/utils/password_strength.py:44 +msgid "Use a few words, avoid common phrases." +msgstr "" + +#. Label of the login_id_is_different (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Use different Email ID" +msgstr "" + +#. Description of the 'Detect CSV type' (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Use if the default settings don't seem to detect your data correctly" +msgstr "" + +#: frappe/model/db_query.py:411 +msgid "Use of sub-query or function is restricted" +msgstr "" + +#: frappe/printing/page/print/print.js:292 +msgid "Use the new Print Format Builder" +msgstr "" + +#. Description of the 'Title Field' (Data) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Use this fieldname to generate title" +msgstr "" + +#. Description of the 'Always BCC Address' (Data) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Use this, for example, if all sent emails should also be send to an archive." +msgstr "" + +#. Label of the used_oauth (Check) field in DocType 'User Email' +#: frappe/core/doctype/user_email/user_email.json +msgid "Used OAuth" +msgstr "" + +#. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' +#. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' +#. Label of the user (Link) field in DocType 'Activity Log' +#. Label of the user (Link) field in DocType 'API Request Log' +#. Label of the user (Link) field in DocType 'Communication' +#. Label of the user (Link) field in DocType 'DocShare' +#. Label of the user (Link) field in DocType 'Log Setting User' +#. Label of the user (Link) field in DocType 'Permission Inspector' +#. Name of a DocType +#. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 'Note Seen By' +#. Label of the user (Link) field in DocType 'Notification Settings' +#. Label of the user (Link) field in DocType 'Route History' +#. Label of the user (Link) field in DocType 'Document Follow' +#. Label of the user (Link) field in DocType 'Google Calendar' +#. Label of the user (Link) field in DocType 'OAuth Authorization Code' +#. Label of the user (Link) field in DocType 'OAuth Bearer Token' +#. Label of the user (Link) field in DocType 'OAuth Client' +#. Label of the user (Link) field in DocType 'Token Cache' +#. Label of the user (Link) field in DocType 'Webhook Request Log' +#. Label of the user (Link) field in DocType 'Personal Data Download Request' +#. Label of the user (Link) field in DocType 'Workflow Action' +#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/log_setting_user/log_setting_user.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 +#: frappe/core/workspace/users/users.json +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +#: frappe/desk/doctype/note_seen_by/note_seen_by.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/desk/doctype/route_history/route_history.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/form/templates/set_sharing.html:3 +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "User" +msgstr "" + +#: frappe/core/doctype/has_role/has_role.py:25 +msgid "User '{0}' already has the role '{1}'" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/report/user_activity_report.json +msgid "User Activity Report" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/report/user_activity_report_without_sort.json +msgid "User Activity Report Without Sort" +msgstr "" + +#. Label of the user_agent (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "User Agent" +msgstr "" + +#. Label of the in_create (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "User Cannot Create" +msgstr "" + +#. Label of the read_only (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "User Cannot Search" +msgstr "" + +#: frappe/public/js/frappe/desk.js:550 +msgid "User Changed" +msgstr "" + +#. Label of the defaults (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Defaults" +msgstr "" + +#. Label of the user_details_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Details" +msgstr "" + +#. Name of a report +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.json +msgid "User Doctype Permissions" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "User Document Type" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:98 +msgid "User Document Types Limit Exceeded" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_email/user_email.json +msgid "User Email" +msgstr "" + +#. Label of the user_emails (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Emails" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_group/user_group.json +msgid "User Group" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_group_member/user_group_member.json +msgid "User Group Member" +msgstr "" + +#. Label of the user_group_members (Table MultiSelect) field in DocType 'User +#. Group' +#: frappe/core/doctype/user_group/user_group.json +msgid "User Group Members" +msgstr "" + +#. Label of the userid (Data) field in DocType 'User Social Login' +#: frappe/core/doctype/user_social_login/user_social_login.json +msgid "User ID" +msgstr "" + +#. Label of the user_id_property (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "User ID Property" +msgstr "" + +#. Label of the user (Link) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "User Id" +msgstr "" + +#. Label of the user_id_field (Select) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "User Id Field" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:283 +msgid "User Id Field is mandatory in the user type {0}" +msgstr "" + +#. Label of the user_image (Attach Image) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Image" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:115 +msgid "User Menu" +msgstr "" + +#. Label of the user_name (Data) field in DocType 'Personal Data Download +#. Request' +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +msgid "User Name" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_permission/user_permission.json +msgid "User Permission" +msgstr "" + +#. Label of a Link in the Users Workspace +#: frappe/core/page/permission_manager/permission_manager_help.html:30 +#: frappe/core/workspace/users/users.json +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 +msgid "User Permissions" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1924 +msgctxt "Button in list view menu" +msgid "User Permissions" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:32 +msgid "User Permissions are used to limit users to specific records." +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:124 +msgid "User Permissions created successfully" +msgstr "" + +#. Name of a DocType +#. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgid "User Role" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_role_profile/user_role_profile.json +msgid "User Role Profile" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_select_document_type/user_select_document_type.json +msgid "User Select Document Type" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +msgid "User Settings" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_social_login/user_social_login.json +msgid "User Social Login" +msgstr "" + +#. Label of the _user_tags (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "User Tags" +msgstr "" + +#. Label of the user_type (Link) field in DocType 'User' +#. Name of a DocType +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type/user_type.py:83 +msgid "User Type" +msgstr "" + +#. Label of the user_type_modules (Table) field in DocType 'User Type' +#. Name of a DocType +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type_module/user_type_module.json +msgid "User Type Module" +msgstr "" + +#. Description of the 'Allow Login using Mobile Number' (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "User can login using Email id or Mobile number" +msgstr "" + +#. Description of the 'Allow Login using User Name' (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "User can login using Email id or User Name" +msgstr "" + +#: frappe/templates/includes/login/login.js:292 +msgid "User does not exist." +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:83 +msgid "User does not have permission to create the new {0}" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:56 +msgid "User is mandatory for Share" +msgstr "" + +#. Label of the user_must_always_select (Check) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "User must always select" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission.py:60 +msgid "User permission already exists" +msgstr "" + +#: frappe/www/login.py:171 +msgid "User with email address {0} does not exist" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:225 +msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." +msgstr "" + +#: frappe/core/doctype/user/user.py:538 +msgid "User {0} cannot be deleted" +msgstr "" + +#: frappe/core/doctype/user/user.py:328 +msgid "User {0} cannot be disabled" +msgstr "" + +#: frappe/core/doctype/user/user.py:611 +msgid "User {0} cannot be renamed" +msgstr "" + +#: frappe/permissions.py:139 +msgid "User {0} does not have access to this document" +msgstr "" + +#: frappe/permissions.py:162 +msgid "User {0} does not have doctype access via role permission for document {1}" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:275 +msgid "User {0} does not have the permission to create a Workspace." +msgstr "" + +#: frappe/templates/emails/data_deletion_approval.html:1 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:112 +msgid "User {0} has requested for data deletion" +msgstr "" + +#: frappe/core/doctype/user/user.py:1384 +msgid "User {0} impersonated as {1}" +msgstr "" + +#: frappe/utils/oauth.py:269 +msgid "User {0} is disabled" +msgstr "" + +#: frappe/sessions.py:243 +msgid "User {0} is disabled. Please contact your System Manager." +msgstr "" + +#: frappe/desk/form/assign_to.py:104 +msgid "User {0} is not permitted to access this document." +msgstr "" + +#. Label of the userinfo_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Userinfo URI" +msgstr "" + +#. Label of the username (Data) field in DocType 'User' +#. Label of the username (Data) field in DocType 'User Social Login' +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_social_login/user_social_login.json +#: frappe/www/login.py:110 +msgid "Username" +msgstr "" + +#: frappe/core/doctype/user/user.py:700 +msgid "Username {0} already exists" +msgstr "" + +#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule' +#. Name of a Workspace +#. Label of a Card Break in the Users Workspace +#. Label of the users_section (Section Break) field in DocType 'System Health +#. Report' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/core/workspace/users/users.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Users" +msgstr "" + +#. Description of the 'Protect Attached Files' (Check) field in DocType +#. 'DocType' +#. Description of the 'Protect Attached Files' (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Users are only able to delete attached files if the document is either in draft or if the document is canceled and they are also able to delete the document." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:355 +msgid "Users with role {0}:" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:70 +msgid "Uses system's theme to switch between light and dark mode" +msgstr "" + +#: frappe/public/js/frappe/desk.js:154 +msgid "Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand." +msgstr "" + +#. Label of the utilization (Percent) field in DocType 'System Health Report +#. Workers' +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "Utilization" +msgstr "" + +#. Label of the utilization_percent (Percent) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Utilization %" +msgstr "" + +#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization +#. Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Valid" +msgstr "" + +#: frappe/templates/includes/login/login.js:52 +#: frappe/templates/includes/login/login.js:65 +msgid "Valid Login id required." +msgstr "" + +#: frappe/templates/includes/login/login.js:39 +msgid "Valid email and name required" +msgstr "" + +#. Label of the validate_action (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Validate Field" +msgstr "" + +#. Label of the validate_frappe_mail_settings (Button) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Validate Frappe Mail Settings" +msgstr "" + +#. Label of the validate_ssl_certificate (Check) field in DocType 'Email +#. Account' +#. Label of the validate_ssl_certificate (Check) field in DocType 'Email +#. Domain' +#. Label of the validate_ssl_certificate_for_outgoing (Check) field in DocType +#. 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Validate SSL Certificate" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:384 +msgid "Validation Error" +msgstr "" + +#. Label of the validity (Select) field in DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Validity" +msgstr "" + +#. Label of the value (Data) field in DocType 'Milestone' +#. Label of the defvalue (Text) field in DocType 'DefaultValue' +#. Label of the value (Data) field in DocType 'Document Naming Rule Condition' +#. Label of the value (Data) field in DocType 'SMS Parameter' +#. Label of the value (Data) field in DocType 'Query Parameters' +#. Label of the value (Small Text) field in DocType 'Webhook Header' +#. Label of the value (Text) field in DocType 'Website Meta Tag' +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/core/doctype/defaultvalue/defaultvalue.json +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +#: frappe/core/doctype/prepared_report/prepared_report.js:8 +#: frappe/core/doctype/sms_parameter/sms_parameter.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:95 +#: frappe/integrations/doctype/query_parameters/query_parameters.json +#: frappe/integrations/doctype/webhook_header/webhook_header.json +#: frappe/public/js/frappe/list/bulk_operations.js:336 +#: frappe/public/js/frappe/list/bulk_operations.js:398 +#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4 +#: frappe/website/doctype/web_form/web_form.js:197 +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json +msgid "Value" +msgstr "" + +#. Label of the value_based_on (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Value Based On" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value Change" +msgstr "" + +#. Label of the value_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value Changed" +msgstr "" + +#. Label of the property_value (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value To Be Set" +msgstr "" + +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 +msgid "Value cannot be changed for {0}" +msgstr "" + +#: frappe/model/document.py:781 +msgid "Value cannot be negative for" +msgstr "" + +#: frappe/model/document.py:785 +msgid "Value cannot be negative for {0}: {1}" +msgstr "" + +#: frappe/custom/doctype/property_setter/property_setter.js:7 +msgid "Value for a check field can be either 0 or 1" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:616 +msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" +msgstr "" + +#: frappe/model/base_document.py:502 +msgid "Value for {0} cannot be a list" +msgstr "" + +#. Description of the 'Due Date Based On' (Select) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Value from this field will be set as the due date in the ToDo" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:714 +msgid "Value must be one of {0}" +msgstr "" + +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "" + +#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Value to Validate" +msgstr "" + +#: frappe/model/base_document.py:1185 +msgid "Value too big" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:727 +msgid "Value {0} missing for {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 +msgid "Value {0} must be in the valid duration format: d h m s" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:745 +#: frappe/core/doctype/data_import/importer.py:760 +msgid "Value {0} must in {1} format" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:9 +msgid "Values Changed" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Verdana" +msgstr "" + +#: frappe/templates/includes/login/login.js:333 +msgid "Verification" +msgstr "" + +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 +msgid "Verification Code" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:10 +msgid "Verification Link" +msgstr "" + +#: frappe/templates/includes/login/login.js:383 +msgid "Verification code email not sent. Please contact Administrator." +msgstr "" + +#: frappe/twofactor.py:248 +msgid "Verification code has been sent to your registered email address." +msgstr "" + +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Verified" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:359 +#: frappe/templates/includes/login/login.js:337 +msgid "Verify" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:358 +msgid "Verify Password" +msgstr "" + +#: frappe/templates/includes/login/login.js:171 +msgid "Verifying..." +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/version/version.json +msgid "Version" +msgstr "" + +#: frappe/public/js/frappe/desk.js:166 +msgid "Version Updated" +msgstr "" + +#. Label of the video_url (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Video URL" +msgstr "" + +#. Label of the view_name (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "View" +msgstr "" + +#: frappe/core/doctype/success_action/success_action.js:60 +#: frappe/public/js/frappe/form/success_action.js:89 +msgid "View All" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:580 +msgid "View Audit Trail" +msgstr "" + +#: frappe/core/doctype/user/user.js:144 +msgid "View Doctype Permissions" +msgstr "" + +#: frappe/core/doctype/file/file.js:4 +msgid "View File" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:220 +msgid "View Full Log" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:486 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:258 +msgid "View List" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/view_log/view_log.json +msgid "View Log" +msgstr "" + +#: frappe/core/doctype/user/user.js:135 +#: frappe/core/doctype/user_permission/user_permission.js:24 +msgid "View Permitted Documents" +msgstr "" + +#. Label of the view_properties (Button) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "View Properties (via Customize Form)" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "View Report" +msgstr "" + +#. Label of the view_settings (Section Break) field in DocType 'DocType' +#. Label of the view_settings_section (Section Break) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "View Settings" +msgstr "" + +#. Label of the view_switcher (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "View Switcher" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +#: frappe/website/doctype/website_settings/website_settings.js:16 +msgid "View Website" +msgstr "" + +#: frappe/www/confirm_workflow_action.html:12 +msgid "View document" +msgstr "" + +#: frappe/templates/emails/auto_email_report.html:60 +msgid "View report in your browser" +msgstr "" + +#: frappe/templates/emails/print_link.html:2 +msgid "View this in your browser" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:478 +msgctxt "Button in web form" +msgid "View your response" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:43 +#: frappe/desk/doctype/calendar_view/calendar_view_list.js:10 +#: frappe/desk/doctype/dashboard/dashboard_list.js:10 +msgid "View {0}" +msgstr "" + +#. Label of the viewed_by (Data) field in DocType 'View Log' +#: frappe/core/doctype/view_log/view_log.json +msgid "Viewed By" +msgstr "" + +#. Group in DocType's connections +#. Label of a Card Break in the Build Workspace +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/workspace/build/build.json +msgid "Views" +msgstr "" + +#. Label of the is_virtual (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Virtual" +msgstr "" + +#: frappe/model/virtual_doctype.py:76 +msgid "Virtual DocType {} requires a static method called {} found {}" +msgstr "" + +#: frappe/model/virtual_doctype.py:89 +msgid "Virtual DocType {} requires overriding an instance method called {} found {}" +msgstr "" + +#. Label of the visibility_section (Section Break) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Visibility" +msgstr "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:41 +msgid "Visible to website/portal users." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Visit" +msgstr "" + +#: frappe/website/doctype/website_route_meta/website_route_meta.js:7 +msgid "Visit Web Page" +msgstr "" + +#. Label of the visitor_id (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Visitor ID" +msgstr "" + +#: frappe/templates/discussions/reply_section.html:39 +msgid "Want to discuss?" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Warehouse" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Warning" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:217 +msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1126 +msgid "Warning: Naming is not set" +msgstr "" + +#: frappe/public/js/frappe/model/meta.js:182 +msgid "Warning: Unable to find {0} in any table related to {1}" +msgstr "" + +#. Description of the 'Counter' (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Warning: Updating counter may lead to document name conflicts if not done properly" +msgstr "" + +#: frappe/website/doctype/help_article/templates/help_article.html:24 +msgid "Was this article helpful?" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:127 +msgid "Watch Tutorial" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Watch Video" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.js:34 +msgid "We do not allow editing of this document. Simply click the Edit button on the workspace page to make your workspace editable and customize it as you wish" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:2 +msgid "We have received a request for deletion of {0} data associated with: {1}" +msgstr "" + +#: frappe/templates/emails/download_data.html:2 +msgid "We have received a request from you to download your {0} data associated with: {1}" +msgstr "" + +#: frappe/www/attribution.html:12 +msgid "We would like to thank the authors of these packages for their contribution." +msgstr "" + +#: frappe/www/contact.py:50 +msgid "We've received your query!" +msgstr "" + +#: frappe/public/js/frappe/form/controls/password.js:87 +msgid "Weak" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/workspace/website/website.json +msgid "Web Form" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Web Form Field" +msgstr "" + +#. Label of the web_form_fields (Table) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Web Form Fields" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +msgid "Web Form List Column" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/workspace/website/website.json +msgid "Web Page" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Web Page Block" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1749 +msgid "Web Page URL" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Web Page View" +msgstr "" + +#. Label of a Card Break in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "Web Site" +msgstr "" + +#. Label of the web_template (Link) field in DocType 'Web Page Block' +#. Name of a DocType +#: frappe/website/doctype/web_page_block/web_page_block.json +#: frappe/website/doctype/web_template/web_template.json +msgid "Web Template" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Web Template Field" +msgstr "" + +#. Label of the web_template_values (Code) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Web Template Values" +msgstr "" + +#: frappe/utils/jinja_globals.py:48 +msgid "Web Template is not specified" +msgstr "" + +#. Label of the web_view (Tab Break) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Web View" +msgstr "" + +#. Name of a DocType +#. Label of the webhook (Link) field in DocType 'Webhook Request Log' +#. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Webhook" +msgstr "" + +#. Label of the sb_webhook_data (Section Break) field in DocType 'Webhook' +#. Name of a DocType +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_data/webhook_data.json +msgid "Webhook Data" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/webhook_header/webhook_header.json +msgid "Webhook Header" +msgstr "" + +#. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Headers" +msgstr "" + +#. Label of the sb_webhook (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Request" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Webhook Request Log" +msgstr "" + +#. Label of the webhook_secret (Password) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Secret" +msgstr "" + +#. Label of the sb_security (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Security" +msgstr "" + +#. Label of the sb_condition (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Trigger" +msgstr "" + +#. Label of the webhook_url (Data) field in DocType 'Slack Webhook URL' +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +msgid "Webhook URL" +msgstr "" + +#. Group in Module Def's connections +#. Name of a Workspace +#: frappe/core/doctype/module_def/module_def.json +#: frappe/public/js/frappe/ui/apps_switcher.js:125 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +#: frappe/website/workspace/website/website.json +msgid "Website" +msgstr "" + +#. Name of a report +#: frappe/website/report/website_analytics/website_analytics.json +msgid "Website Analytics" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/comment/comment.json +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/website/doctype/color/color.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/doctype/portal_settings/portal_settings.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_script/website_script.json +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/doctype/website_sidebar/website_sidebar.json +#: frappe/website/doctype/website_slideshow/website_slideshow.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Website Manager" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json +msgid "Website Meta Tag" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_route_meta/website_route_meta.json +#: frappe/website/workspace/website/website.json +msgid "Website Route Meta" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +msgid "Website Route Redirect" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_script/website_script.json +#: frappe/website/workspace/website/website.json +msgid "Website Script" +msgstr "" + +#. Label of the website_search_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Website Search Field" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1523 +msgid "Website Search Field must be a valid fieldname" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/workspace/website/website.json +msgid "Website Settings" +msgstr "" + +#. Label of the website_sidebar (Link) field in DocType 'Web Form' +#. Label of the website_sidebar (Link) field in DocType 'Web Page' +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_sidebar/website_sidebar.json +#: frappe/website/workspace/website/website.json +msgid "Website Sidebar" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Website Sidebar Item" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_slideshow/website_slideshow.json +#: frappe/website/workspace/website/website.json +msgid "Website Slideshow" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "Website Slideshow Item" +msgstr "" + +#. Label of the website_theme (Link) field in DocType 'Website Settings' +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/doctype/website_theme/website_theme.json +#: frappe/website/workspace/website/website.json +msgid "Website Theme" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json +msgid "Website Theme Ignore App" +msgstr "" + +#. Label of the website_theme_image (Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Website Theme Image" +msgstr "" + +#. Label of the website_theme_image_link (Code) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Website Theme image link" +msgstr "" + +#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Websocket" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the wednesday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Wednesday" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:276 +msgid "Week" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Weekdays" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Frequency' (Select) field in DocType 'User' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:399 +#: frappe/website/report/website_analytics/website_analytics.js:24 +msgid "Weekly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Weekly Long" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:384 +msgid "Welcome" +msgstr "" + +#. Label of the welcome_email_template (Link) field in DocType 'System +#. Settings' +#. Label of the welcome_email_template (Link) field in DocType 'Email Group' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/email/doctype/email_group/email_group.json +msgid "Welcome Email Template" +msgstr "" + +#. Label of the welcome_url (Data) field in DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Welcome URL" +msgstr "" + +#. Name of a Workspace +#: frappe/core/workspace/welcome_workspace/welcome_workspace.json +msgid "Welcome Workspace" +msgstr "" + +#: frappe/core/doctype/user/user.py:416 +msgid "Welcome email sent" +msgstr "" + +#: frappe/core/doctype/user/user.py:477 +msgid "Welcome to {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:62 +msgid "What's New" +msgstr "" + +#. Description of the 'Allow Guests to Upload Files' (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "When enabled this will allow guests to upload files to your application, You can enable this if you wish to collect files from user without having them to log in, for example in job applications web form." +msgstr "" + +#. Description of the 'Store Attached PDF Document' (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "When sending document using email, store the PDF on Communication. Warning: This can increase your storage usage." +msgstr "" + +#. Description of the 'Force Web Capture Mode for Uploads' (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:18 +msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number." +msgstr "" + +#. Description of the 'DocType View' (Select) field in DocType 'Workspace +#. Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:481 +msgid "Which view of the associated DocType should this shortcut take you to?" +msgstr "" + +#. Label of the width (Data) field in DocType 'DocField' +#. Label of the width (Int) field in DocType 'Report Column' +#. Label of the width (Data) field in DocType 'Custom Field' +#. Label of the width (Data) field in DocType 'Customize Form Field' +#. Label of the width (Select) field in DocType 'Dashboard Chart Link' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8 +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11 +msgid "Width" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:2 +msgid "Widths can be set in px or %." +msgstr "" + +#. Label of the wildcard_filter (Check) field in DocType 'Report Filter' +#: frappe/core/doctype/report_filter/report_filter.json +msgid "Wildcard Filter" +msgstr "" + +#. Description of the 'Wildcard Filter' (Check) field in DocType 'Report +#. Filter' +#: frappe/core/doctype/report_filter/report_filter.json +msgid "Will add \"%\" before and after the query" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:485 +msgid "Will be your login ID" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:424 +msgid "Will only be shown if section headings are enabled" +msgstr "" + +#. Description of the 'Run Jobs only Daily if Inactive For (Days)' (Int) field +#. in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:45 +msgid "With Letter head" +msgstr "" + +#. Label of the worker_information_section (Section Break) field in DocType 'RQ +#. Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Worker Information" +msgstr "" + +#. Label of the worker_name (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Worker Name" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Group in DocType's connections +#. Name of a DocType +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/public/js/workflow_builder/store.js:129 +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_action/workflow_action.json +#: frappe/workflow/doctype/workflow_action/workflow_action.py:444 +msgid "Workflow Action" +msgstr "" + +#. Name of a DocType +#. Description of a DocType +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json +msgid "Workflow Action Master" +msgstr "" + +#. Label of the workflow_action_name (Data) field in DocType 'Workflow Action +#. Master' +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json +msgid "Workflow Action Name" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json +msgid "Workflow Action Permitted Role" +msgstr "" + +#. Description of the 'Is Optional State' (Check) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Workflow Action is not created for optional states" +msgstr "" + +#: frappe/public/js/workflow_builder/store.js:129 +#: frappe/workflow/doctype/workflow/workflow.js:25 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:4 +msgid "Workflow Builder" +msgstr "" + +#. Label of the workflow_builder_id (Data) field in DocType 'Workflow Document +#. State' +#. Label of the workflow_builder_id (Data) field in DocType 'Workflow +#. Transition' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Workflow Builder ID" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:11 +msgid "Workflow Builder allows you to create workflows visually. You can drag and drop states and link them to create transitions. Also you can update thieir properties from the sidebar." +msgstr "" + +#. Label of the workflow_data (JSON) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow Data" +msgstr "" + +#: frappe/public/js/workflow_builder/components/Properties.vue:44 +msgid "Workflow Details" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Workflow Document State" +msgstr "" + +#. Label of the workflow_name (Data) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow Name" +msgstr "" + +#. Label of the workflow_state (Data) field in DocType 'Workflow Action' +#. Name of a DocType +#: frappe/workflow/doctype/workflow_action/workflow_action.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow State" +msgstr "" + +#. Label of the workflow_state_field (Data) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow State Field" +msgstr "" + +#: frappe/model/workflow.py:64 +msgid "Workflow State not set" +msgstr "" + +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 +msgid "Workflow State transition not allowed from {0} to {1}" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:140 +msgid "Workflow States Don't Exist" +msgstr "" + +#: frappe/model/workflow.py:384 +msgid "Workflow Status" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Workflow Transition" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + +#. Description of a DocType +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow state represents the current state of a document." +msgstr "" + +#: frappe/public/js/workflow_builder/store.js:83 +msgid "Workflow updated successfully" +msgstr "" + +#. Label of the workspace_section (Section Break) field in DocType 'User' +#. Label of a Link in the Build Workspace +#. Name of a DocType +#. Option for the 'Type' (Select) field in DocType 'Workspace' +#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 +#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/views/workspace/workspace.js:10 +msgid "Workspace" +msgstr "" + +#: frappe/public/js/frappe/router.js:180 +msgid "Workspace {0} does not exist" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_chart/workspace_chart.json +msgid "Workspace Chart" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json +msgid "Workspace Custom Block" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Workspace Link" +msgstr "" + +#. Name of a role +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Manager" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json +msgid "Workspace Number Card" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +msgid "Workspace Quick List" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#. Name of a DocType +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +#: frappe/hooks.py +msgid "Workspace Settings" +msgstr "" + +#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace +#. Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Setup Completed" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Workspace Shortcut" +msgstr "" + +#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace +#. Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Visibility" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:538 +msgid "Workspace {0} created" +msgstr "" + +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Workspaces" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:757 +msgid "Would you like to publish this comment? This means it will become visible to website/portal users." +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 +msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.py:41 +msgid "Wrapping up" +msgstr "" + +#. Label of the write (Check) field in DocType 'Custom DocPerm' +#. Label of the write (Check) field in DocType 'DocPerm' +#. Label of the write (Check) field in DocType 'DocShare' +#. Label of the write (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "Write" +msgstr "" + +#: frappe/model/base_document.py:1011 +msgid "Wrong Fetch From value" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:495 +msgid "X Axis Field" +msgstr "" + +#. Label of the x_field (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "X Field" +msgstr "" + +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "XLSX" +msgstr "" + +#. Label of the y_axis (Table) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Y Axis" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:502 +msgid "Y Axis Fields" +msgstr "" + +#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' +#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json +#: frappe/public/js/frappe/views/reports/query_report.js:1233 +msgid "Y Field" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Yahoo Mail" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Yandex.Mail" +msgstr "" + +#. Label of the heatmap_year (Select) field in DocType 'Dashboard Chart' +#. Label of the year (Data) field in DocType 'Company History' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/doctype/company_history/company_history.json +msgid "Year" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:403 +msgid "Yearly" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Yellow" +msgstr "" + +#. Option for the 'Standard' (Select) field in DocType 'Page' +#. Option for the 'Is Standard' (Select) field in DocType 'Report' +#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP +#. Settings' +#. Option for the 'Standard' (Select) field in DocType 'Print Format' +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:498 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 +#: frappe/website/doctype/help_article/templates/help_article.html:25 +msgid "Yes" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:32 +msgctxt "Approve confirmation dialog" +msgid "Yes" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:545 +msgctxt "Checkbox is checked" +msgid "Yes" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:727 +msgid "Yesterday" +msgstr "" + +#: frappe/public/js/frappe/utils/user.js:33 +msgctxt "Name of the current user. For example: You edited this 5 hours ago." +msgid "You" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:463 +msgid "You Liked" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + +#: frappe/public/js/frappe/dom.js:438 +msgid "You are connected to internet." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:20 +msgid "You are impersonating as another user." +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:28 +msgid "You are not allowed to access this resource" +msgstr "" + +#: frappe/permissions.py:431 +msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" +msgstr "" + +#: frappe/permissions.py:420 +msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:68 +msgid "You are not allowed to create columns" +msgstr "" + +#: frappe/core/doctype/report/report.py:97 +msgid "You are not allowed to delete Standard Report" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.py:73 +msgid "You are not allowed to delete a standard Website Theme" +msgstr "" + +#: frappe/core/doctype/report/report.py:391 +msgid "You are not allowed to edit the report." +msgstr "" + +#: frappe/core/doctype/data_import/exporter.py:121 +#: frappe/core/doctype/data_import/exporter.py:125 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 +#: frappe/permissions.py:626 +msgid "You are not allowed to export {} doctype" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:450 +msgid "You are not allowed to print this report" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:787 +msgid "You are not allowed to send emails related to this document" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:632 +msgid "You are not allowed to update this Web Form Document" +msgstr "" + +#: frappe/public/js/frappe/request.js:37 +msgid "You are not connected to Internet. Retry after sometime." +msgstr "" + +#: frappe/public/js/frappe/web_form/webform_script.js:22 +msgid "You are not permitted to access this page without login." +msgstr "" + +#: frappe/www/app.py:27 +msgid "You are not permitted to access this page." +msgstr "" + +#: frappe/__init__.py:465 +msgid "You are not permitted to access this resource. Login to access" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/document_follow.js:131 +msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." +msgstr "" + +#: frappe/core/doctype/installed_applications/installed_applications.py:117 +msgid "You are only allowed to update order, do not remove or add apps." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:284 +msgid "You are selecting Sync Option as ALL, It will resync all read as well as unread message from server. This may also cause the duplication of Communication (emails)." +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:414 +msgctxt "Form timeline" +msgid "You attached {0}" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:749 +msgid "You can add dynamic properties from the document by using Jinja templating." +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:32 +msgid "You can also access wkhtmltopdf variables (valid only in PDF print):" +msgstr "" + +#: frappe/templates/emails/new_user.html:22 +msgid "You can also copy-paste following link in your browser" +msgstr "" + +#: frappe/templates/emails/download_data.html:9 +msgid "You can also copy-paste this" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:11 +msgid "You can also copy-paste this {0} to your browser" +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:8 +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 "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:194 +msgid "You can continue with the onboarding after exploring this page" +msgstr "" + +#: frappe/model/delete_doc.py:177 +msgid "You can disable this {0} instead of deleting it." +msgstr "" + +#: frappe/core/doctype/file/file.py:761 +msgid "You can increase the limit from System Settings." +msgstr "" + +#: frappe/utils/synchronization.py:48 +msgid "You can manually remove the lock if you think it's safe: {}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/markdown_editor.js:75 +msgid "You can only insert images in Markdown fields" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:42 +msgid "You can only print upto {0} documents at a time" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:104 +msgid "You can only set the 3 custom doctypes in the Document Types table." +msgstr "" + +#: frappe/handler.py:183 +msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:199 +msgid "You can only upload upto 5000 records in one go. (may be less in some cases)" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "You can select one from the following," +msgstr "" + +#. Description of the 'Rate limit for email link login' (Int) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "You can set a high value here if multiple users will be logging in from the same network." +msgstr "" + +#: frappe/desk/query_report.py:382 +msgid "You can try changing the filters of your report." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:27 +msgid "You can use Customize Form to set levels on fields." +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:30 +msgid "You can use wildcard %" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:394 +msgid "You can't set 'Options' for field {0}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:398 +msgid "You can't set 'Translatable' for field {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:74 +msgctxt "Form timeline" +msgid "You cancelled this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:61 +msgctxt "Form timeline" +msgid "You cancelled this document {1}" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:417 +msgid "You cannot create a dashboard chart from single DocTypes" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:390 +msgid "You cannot unset 'Read Only' for field {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125 +msgid "You changed the value of {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114 +msgid "You changed the value of {0} {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:191 +msgid "You changed the values for {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:180 +msgid "You changed the values for {0} {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:443 +msgctxt "Form timeline" +msgid "You changed {0} to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:140 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:94 +msgid "You created this" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 +msgctxt "Form timeline" +msgid "You created this document {0}" +msgstr "" + +#: frappe/client.py:417 +msgid "You do not have Read or Select Permissions for {}" +msgstr "" + +#: frappe/public/js/frappe/request.js:177 +msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." +msgstr "" + +#: frappe/app.py:384 +msgid "You do not have enough permissions to complete the action" +msgstr "" + +#: frappe/database/query.py:531 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:923 +msgid "You do not have permission to access {0}: {1}." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:960 +msgid "You do not have permissions to cancel all linked documents." +msgstr "" + +#: frappe/desk/query_report.py:43 +msgid "You don't have access to Report: {0}" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:835 +msgid "You don't have permission to access the {0} DocType." +msgstr "" + +#: frappe/utils/response.py:289 frappe/utils/response.py:293 +msgid "You don't have permission to access this file" +msgstr "" + +#: frappe/desk/query_report.py:49 +msgid "You don't have permission to get a report on: {0}" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:175 +msgid "You don't have the permissions to access this document" +msgstr "" + +#: frappe/templates/emails/new_message.html:1 +msgid "You have a new message from:" +msgstr "" + +#: frappe/handler.py:119 +msgid "You have been successfully logged out" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:247 +msgid "You have hit the row size limit on database table: {0}" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:412 +msgid "You have not entered a value. The field will be set to empty." +msgstr "" + +#: frappe/twofactor.py:437 +msgid "You have to enable Two Factor Auth from System Settings." +msgstr "" + +#: frappe/public/js/frappe/model/create_new.js:328 +msgid "You have unsaved changes in this form. Please save before you continue." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:50 +msgid "You have unseen notifications" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:125 +msgid "You have unseen {0}" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:192 +msgid "You haven't added any Dashboard Charts or Number Cards yet." +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:503 +msgid "You haven't created a {0} yet" +msgstr "" + +#: frappe/rate_limiter.py:166 +msgid "You hit the rate limit because of too many requests. Please try after sometime." +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:151 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105 +msgid "You last edited this" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:352 +msgid "You must add atleast one link." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:831 +msgid "You must be logged in to use this form." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:672 +msgid "You must login to submit this form" +msgstr "" + +#: frappe/model/document.py:358 +msgid "You need the '{0}' permission on {1} {2} to perform this action." +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:127 +msgid "You need to be Workspace Manager to delete a public workspace." +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:76 +msgid "You need to be Workspace Manager to edit this document" +msgstr "" + +#: frappe/www/attribution.py:16 +msgid "You need to be a system user to access this page." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:91 +msgid "You need to be in developer mode to edit a Standard Web Form" +msgstr "" + +#: frappe/utils/response.py:278 +msgid "You need to be logged in and have System Manager Role to be able to access backups." +msgstr "" + +#: frappe/www/me.py:13 frappe/www/third_party_apps.py:10 +msgid "You need to be logged in to access this page" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:164 +msgid "You need to be logged in to access this {0}." +msgstr "" + +#: frappe/public/js/frappe/widgets/links_widget.js:63 +msgid "You need to create these first:" +msgstr "" + +#: frappe/www/login.html:76 +msgid "You need to enable JavaScript for your app to work." +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:62 +msgid "You need to have \"Share\" permission" +msgstr "" + +#: frappe/utils/print_format.py:268 +msgid "You need to install pycups to use this feature!" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.js:38 +msgid "You need to select indexes you want to add first." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:160 +msgid "You need to set one IMAP folder for {0}" +msgstr "" + +#: frappe/model/rename_doc.py:391 +msgid "You need write permission on {0} {1} to merge" +msgstr "" + +#: frappe/model/rename_doc.py:386 +msgid "You need write permission on {0} {1} to rename" +msgstr "" + +#: frappe/client.py:449 +msgid "You need {0} permission to fetch values from {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:419 +msgctxt "Form timeline" +msgid "You removed attachment {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:520 +msgid "You seem good to go!" +msgstr "" + +#: frappe/templates/includes/contact.js:20 +msgid "You seem to have written your name instead of your email. Please enter a valid email address so that we can get back." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:31 +msgid "You selected Draft or Cancelled documents" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:48 +msgctxt "Form timeline" +msgid "You submitted this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:35 +msgctxt "Form timeline" +msgid "You submitted this document {0}" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/document_follow.js:144 +msgid "You unfollowed this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:183 +msgid "You viewed this" +msgstr "" + +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 +msgid "You've logged in as another user from another tab. Refresh this page to continue using system." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.js:57 +msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:397 +msgid "Your Country" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:389 +msgid "Your Language" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:21 +msgid "Your Name" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:132 +msgid "Your PDF is ready for download" +msgstr "" + +#: frappe/patches/v14_0/update_workspace2.py:34 +msgid "Your Shortcuts" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:145 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:151 +msgid "Your account has been deleted" +msgstr "" + +#: frappe/auth.py:517 +msgid "Your account has been locked and will resume after {0} seconds" +msgstr "" + +#: frappe/desk/form/assign_to.py:279 +msgid "Your assignment on {0} {1} has been removed by {2}" +msgstr "" + +#: frappe/core/doctype/file/file.js:74 +msgid "Your browser does not support the audio element." +msgstr "" + +#: frappe/core/doctype/file/file.js:56 +msgid "Your browser does not support the video element." +msgstr "" + +#: frappe/templates/pages/integrations/gcalendar-success.html:11 +msgid "Your connection request to Google Calendar was successfully accepted" +msgstr "" + +#: frappe/www/contact.html:35 +msgid "Your email address" +msgstr "" + +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 +msgid "Your form has been successfully updated" +msgstr "" + +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + +#: frappe/templates/emails/new_user.html:6 +msgid "Your login id is" +msgstr "" + +#: frappe/www/update-password.html:192 +msgid "Your new password has been set successfully." +msgstr "" + +#: frappe/www/update-password.html:172 +msgid "Your old password is incorrect." +msgstr "" + +#. Description of the 'Email Footer Address' (Small Text) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Your organization name and address for the email footer." +msgstr "" + +#: frappe/templates/emails/auto_reply.html:2 +msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." +msgstr "" + +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 +msgid "Your session has expired, please login again to continue." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:15 +msgid "Your site is undergoing maintenance or being updated." +msgstr "" + +#: frappe/templates/emails/verification_code.html:1 +msgid "Your verification code is {0}" +msgstr "" + +#: frappe/utils/data.py:1558 +msgid "Zero" +msgstr "" + +#. Description of the 'Only Send Records Updated in Last X Hours' (Int) field +#. in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Zero means send records updated at anytime" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 +msgid "[Action taken by {0}]" +msgstr "" + +#. Label of the _doctype (Link) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "_doctype" +msgstr "" + +#. Label of the _report (Link) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "_report" +msgstr "" + +#: frappe/database/database.py:360 +msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" +msgstr "" + +#: frappe/utils/background_jobs.py:120 +msgid "`job_id` paramater is required for deduplication." +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "after_insert" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "amend" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 +msgid "and" +msgstr "" + +#: frappe/public/js/frappe/ui/sort_selector.html:5 +#: frappe/public/js/frappe/ui/sort_selector.js:48 +msgid "ascending" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "blue" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:35 +msgid "by Role" +msgstr "" + +#. Label of the profile (Code) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "cProfile Output" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 +msgid "calendar" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "cancel" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "canceled" +msgstr "" + +#: frappe/templates/includes/list/filters.html:19 +msgid "clear" +msgstr "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:34 +msgid "commented" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "create" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "cyan" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 +msgctxt "Days (Field: Duration)" +msgid "d" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "darkgrey" +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:65 +msgid "dashboard" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "dd-mm-yyyy" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "dd.mm.yyyy" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "dd/mm/yyyy" +msgstr "" + +#. Option for the 'Queue' (Select) field in DocType 'RQ Job' +#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "default" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "deferred" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "delete" +msgstr "" + +#: frappe/public/js/frappe/ui/sort_selector.html:5 +#: frappe/public/js/frappe/ui/sort_selector.js:48 +msgid "descending" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163 +msgid "document type..., e.g. customer" +msgstr "" + +#. Description of the 'Email Account Name' (Data) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\"" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:183 +msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..." +msgstr "" + +#. Description of the 'Incoming Server' (Data) field in DocType 'Email Account' +#. Description of the 'Incoming Server' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "e.g. pop.gmail.com / imap.gmail.com" +msgstr "" + +#. Description of the 'Default Incoming' (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "e.g. replies@yourcomany.com. All replies will come to this inbox." +msgstr "" + +#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Account' +#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "e.g. smtp.gmail.com" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:98 +msgid "e.g.:" +msgstr "" + +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "emacs" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "email" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 +msgid "email inbox" +msgstr "" + +#: frappe/permissions.py:425 frappe/permissions.py:436 +#: frappe/public/js/frappe/form/controls/link.js:507 +msgid "empty" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "export" +msgstr "" + +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "facebook" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "failed" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "fairlogin" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "finished" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "gray" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "green" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "grey" +msgstr "" + +#: frappe/utils/backups.py:399 +msgid "gzip not found in PATH! This is required to take a backup." +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 +msgctxt "Hours (Field: Duration)" +msgid "h" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +msgid "hub" +msgstr "" + +#. Label of the icon (Data) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "icon" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "import" +msgstr "" + +#: frappe/templates/signup.html:11 frappe/www/login.html:11 +msgid "jane@example.com" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:46 +msgid "just now" +msgstr "" + +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 +msgid "label" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "light-blue" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "link" +msgstr "" + +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "linkedin" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "list" +msgstr "" + +#: frappe/www/third_party_apps.html:43 +msgid "logged in" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:363 +msgid "login_required" +msgstr "" + +#. Option for the 'Queue' (Select) field in DocType 'RQ Job' +#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "long" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 +msgctxt "Minutes (Field: Duration)" +msgid "m" +msgstr "" + +#: frappe/model/rename_doc.py:215 +msgid "merged {0} into {1}" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "mm-dd-yyyy" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "mm/dd/yyyy" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "module" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:178 +msgid "module name..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 +msgid "new" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:158 +msgid "new type of document" +msgstr "" + +#. Label of the no_failed (Int) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "no failed attempts" +msgstr "" + +#. Label of the nonce (Data) field in DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "nonce" +msgstr "" + +#. Label of the notified (Check) field in DocType 'Reminder' +#: frappe/automation/doctype/reminder/reminder.json +msgid "notified" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:25 +msgid "now" +msgstr "" + +#: frappe/public/js/frappe/form/grid_pagination.js:116 +msgid "of" +msgstr "" + +#. Label of the old_parent (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "old_parent" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_cancel" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_change" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_submit" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_trash" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_update" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_update_after_submit" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90 +#: frappe/www/login.py:112 +msgid "or" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "orange" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "page" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "pink" +msgstr "" + +#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth +#. Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "plain" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "print" +msgstr "" + +#. Label of the processlist (HTML) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "processlist" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "purple" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "query-report" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "queued" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "read" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "red" +msgstr "" + +#: frappe/model/rename_doc.py:217 +msgid "renamed from {0} to {1}" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "report" +msgstr "" + +#. Label of the response (HTML) field in DocType 'Custom Role' +#: frappe/core/doctype/custom_role/custom_role.json +msgid "response" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:61 +msgid "restored {0} as {1}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 +msgctxt "Seconds (Field: Duration)" +msgid "s" +msgstr "" + +#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth +#. Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "s256" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "scheduled" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "select" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "share" +msgstr "" + +#. Option for the 'Queue' (Select) field in DocType 'RQ Job' +#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "short" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 +msgid "since last month" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 +msgid "since last week" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 +msgid "since last year" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 +msgid "since yesterday" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "started" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:201 +msgid "starting the setup..." +msgstr "" + +#. Description of the 'Group Object Class' (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "string value, i.e. group" +msgstr "" + +#. Description of the 'LDAP Group Member attribute' (Data) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "string value, i.e. member" +msgstr "" + +#. Description of the 'Custom Group Search' (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "string value, i.e. {0} or uid={0},ou=users,dc=example,dc=com" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "submit" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:173 +msgid "tag name..., e.g. #tag" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:168 +msgid "text in document type" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:36 +msgid "this form" +msgstr "" + +#: frappe/tests/test_translate.py:174 +msgid "this shouldn't break" +msgstr "" + +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "" + +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "twitter" +msgstr "" + +#: frappe/public/js/frappe/change_log.html:7 +msgid "updated to {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:361 +msgid "use % as wildcard" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:360 +msgid "values separated by commas" +msgstr "" + +#. Label of the version_table (HTML) field in DocType 'Audit Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json +msgid "version_table" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:382 +msgid "via Assignment Rule" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 +msgid "via Auto Repeat" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:271 +#: frappe/core/doctype/data_import/importer.py:292 +msgid "via Data Import" +msgstr "" + +#. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "via Google Meet" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:405 +msgid "via Notification" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:17 +msgid "via {0}" +msgstr "" + +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "vim" +msgstr "" + +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "vscode" +msgstr "" + +#: frappe/templates/includes/oauth_confirmation.html:5 +msgid "wants to access the following details from your account" +msgstr "" + +#. Description of the 'Popover Element' (Check) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "when clicked on element it will focus popover if present." +msgstr "" + +#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "wkhtmltopdf" +msgstr "" + +#: frappe/printing/page/print/print.js:662 +msgid "wkhtmltopdf 0.12.x (with patched qt)." +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "write" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "yellow" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:58 +msgid "yesterday" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "yyyy-mm-dd" +msgstr "" + +#: frappe/desk/doctype/event/event.js:87 +#: frappe/public/js/frappe/form/footer/form_timeline.js:547 +msgid "{0}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 +msgid "{0} ${skip_list ? \"\" : type}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 +msgid "{0} ${type}" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:80 +#: frappe/public/js/frappe/views/gantt/gantt_view.js:54 +msgid "{0} ({1})" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:77 +msgid "{0} ({1}) (1 row mandatory)" +msgstr "" + +#: frappe/public/js/frappe/views/gantt/gantt_view.js:53 +msgid "{0} ({1}) - {2}%" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:377 +msgid "{0} = {1}" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:30 +msgid "{0} Calendar" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:575 +msgid "{0} Chart" +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:67 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 +msgid "{0} Dashboard" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 +msgid "{0} Fields" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:376 +msgid "{0} Google Calendar Events synced." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:193 +msgid "{0} Google Contacts synced." +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:464 +msgid "{0} Liked" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:83 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:84 +#: frappe/public/js/frappe/widgets/chart_widget.js:358 frappe/www/list.html:4 +#: frappe/www/list.html:8 +msgid "{0} List" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:37 +msgid "{0} M" +msgstr "" + +#: frappe/public/js/frappe/views/map/map_view.js:14 +msgid "{0} Map" +msgstr "" + +#: frappe/public/js/frappe/form/quick_entry.js:122 +msgid "{0} Name" +msgstr "" + +#: frappe/model/base_document.py:1215 +msgid "{0} Not allowed to change {1} after submission from {2} to {3}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96 +#: frappe/public/js/frappe/widgets/chart_widget.js:366 +msgid "{0} Report" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:964 +msgid "{0} Reports" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 +msgid "{0} Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:87 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:88 +#: frappe/public/js/frappe/views/treeview.js:152 +msgid "{0} Tree" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:128 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:73 +msgid "{0} Web page views" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:91 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92 +msgid "{0} Workspace" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:225 +msgid "{0} added" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 +msgid "{0} already exists. Select another name" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:36 +msgid "{0} already unsubscribed" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49 +msgid "{0} already unsubscribed for {1} {2}" +msgstr "" + +#: frappe/utils/data.py:1765 +msgid "{0} and {1}" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:72 +msgid "{0} are currently {1}" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.py:98 +msgid "{0} are required" +msgstr "" + +#: frappe/desk/form/assign_to.py:286 +msgid "{0} assigned a new task {1} {2} to you" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:48 +msgid "{0} assigned {1}: {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:415 +msgctxt "Form timeline" +msgid "{0} attached {1}" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:153 +msgid "{0} can not be more than {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:77 +msgid "{0} cancelled this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:68 +msgctxt "Form timeline" +msgid "{0} cancelled this document {1}" +msgstr "" + +#: frappe/model/document.py:548 +msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." +msgstr "" + +#: frappe/public/js/form_builder/store.js:190 +msgid "{0} cannot be hidden and mandatory without any default value" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128 +msgid "{0} changed the value of {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:119 +msgid "{0} changed the value of {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:194 +msgid "{0} changed the values for {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:185 +msgid "{0} changed the values for {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:444 +msgctxt "Form timeline" +msgid "{0} changed {1} to {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1606 +msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:261 +msgid "{0} created successfully" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:141 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:95 +msgid "{0} created this" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 +msgctxt "Form timeline" +msgid "{0} created this document {1}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:33 +msgid "{0} d" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:60 +msgid "{0} days ago" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.py:96 +#: frappe/website/doctype/website_settings/website_settings.py:116 +msgid "{0} does not exist in row {1}" +msgstr "" + +#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:184 +msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" +msgstr "" + +#: frappe/database/query.py:710 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1071 +msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101 +msgid "{0} from {1} to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:165 +msgid "{0} from {1} to {2} in row #{3}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:29 +msgid "{0} h" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission.py:77 +msgid "{0} has already assigned default value for {1}." +msgstr "" + +#: frappe/email/queue.py:124 +msgid "{0} has left the conversation in {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:54 +msgid "{0} hours ago" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:155 +msgid "{0} if you are not redirected within {1} seconds" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.py:102 +#: frappe/website/doctype/website_settings/website_settings.py:122 +msgid "{0} in row {1} cannot have both URL and child items" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:935 +msgid "{0} is a mandatory field" +msgstr "" + +#: frappe/core/doctype/file/file.py:569 +msgid "{0} is a not a valid zip file" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1619 +msgid "{0} is an invalid Data field." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 +msgid "{0} is an invalid email address in 'Recipients'" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1470 +msgid "{0} is between {1} and {2}" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:41 +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:69 +msgid "{0} is currently {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1439 +msgid "{0} is equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1459 +msgid "{0} is greater than or equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1449 +msgid "{0} is greater than {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1464 +msgid "{0} is less than or equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1454 +msgid "{0} is less than {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1489 +msgid "{0} is like {1}" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:193 +msgid "{0} is mandatory" +msgstr "" + +#: frappe/database/query.py:487 +msgid "{0} is not a child table of {1}" +msgstr "" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 +msgid "{0} is not a field of doctype {1}" +msgstr "" + +#: frappe/www/printview.py:384 +msgid "{0} is not a raw printing format." +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:82 +msgid "{0} is not a valid Calendar. Redirecting to default Calendar." +msgstr "" + +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67 +msgid "{0} is not a valid Cron expression." +msgstr "" + +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 +msgid "{0} is not a valid DocType for Dynamic Link" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 +msgid "{0} is not a valid Email Address" +msgstr "" + +#: frappe/geo/doctype/country/country.py:30 +msgid "{0} is not a valid ISO 3166 ALPHA-2 code." +msgstr "" + +#: frappe/utils/__init__.py:176 +msgid "{0} is not a valid Name" +msgstr "" + +#: frappe/utils/__init__.py:155 +msgid "{0} is not a valid Phone Number" +msgstr "" + +#: frappe/model/workflow.py:245 +msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." +msgstr "" + +#: frappe/permissions.py:809 +msgid "{0} is not a valid parent DocType for {1}" +msgstr "" + +#: frappe/permissions.py:829 +msgid "{0} is not a valid parentfield for {1}" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 +msgid "{0} is not a valid report format. Report format should one of the following {1}" +msgstr "" + +#: frappe/core/doctype/file/file.py:549 +msgid "{0} is not a zip file" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 +msgid "{0} is not equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1491 +msgid "{0} is not like {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1485 +msgid "{0} is not one of {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1495 +msgid "{0} is not set" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.py:176 +msgid "{0} is now default print format for {1} doctype" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1478 +msgid "{0} is one of {1}" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:304 +#: frappe/model/naming.py:226 +#: 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/views/reports/report_view.js:1494 +msgid "{0} is set" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1473 +msgid "{0} is within {1}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1841 +msgid "{0} items selected" +msgstr "" + +#: frappe/core/doctype/user/user.py:1393 +msgid "{0} just impersonated as you. They gave this reason: {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:152 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106 +msgid "{0} last edited this" +msgstr "" + +#: frappe/core/doctype/activity_log/feed.py:13 +msgid "{0} logged in" +msgstr "" + +#: frappe/core/doctype/activity_log/feed.py:19 +msgid "{0} logged out: {1}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:27 +msgid "{0} m" +msgstr "" + +#: frappe/desk/notifications.py:408 +msgid "{0} mentioned you in a comment in {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:50 +msgid "{0} minutes ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:68 +msgid "{0} months ago" +msgstr "" + +#: frappe/model/document.py:1808 +msgid "{0} must be after {1}" +msgstr "" + +#: frappe/model/document.py:1564 +msgid "{0} must be beginning with '{1}'" +msgstr "" + +#: frappe/model/document.py:1566 +msgid "{0} must be equal to '{1}'" +msgstr "" + +#: frappe/model/document.py:1562 +msgid "{0} must be none of {1}" +msgstr "" + +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 +msgid "{0} must be one of {1}" +msgstr "" + +#: frappe/model/base_document.py:933 +msgid "{0} must be set first" +msgstr "" + +#: frappe/model/base_document.py:786 +msgid "{0} must be unique" +msgstr "" + +#: frappe/model/document.py:1568 +msgid "{0} must be {1} {2}" +msgstr "" + +#: frappe/core/doctype/language/language.py:79 +msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:91 +msgid "{0} not a valid State" +msgstr "" + +#: frappe/model/rename_doc.py:394 +msgid "{0} not allowed to be renamed" +msgstr "" + +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:365 +msgid "{0} not found" +msgstr "" + +#: frappe/core/doctype/report/report.py:427 +#: frappe/public/js/frappe/list/list_view.js:1213 +msgid "{0} of {1}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1215 +msgid "{0} of {1} ({2} rows with children)" +msgstr "" + +#: frappe/utils/data.py:1566 +msgctxt "Money in words" +msgid "{0} only." +msgstr "" + +#: frappe/utils/data.py:1747 +msgid "{0} or {1}" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:177 +msgid "{0} record deleted" +msgstr "" + +#: frappe/public/js/frappe/logtypes.js:22 +msgid "{0} records are not automatically deleted." +msgstr "" + +#: frappe/public/js/frappe/logtypes.js:29 +msgid "{0} records are retained for {1} days." +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:179 +msgid "{0} records deleted" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:229 +msgid "{0} records will be exported" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:420 +msgctxt "Form timeline" +msgid "{0} removed attachment {1}" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:58 +msgid "{0} removed their assignment." +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 +msgid "{0} role does not have permission on any doctype" +msgstr "" + +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 +msgid "{0} saved successfully" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:44 +msgid "{0} self assigned this task: {1}" +msgstr "" + +#: frappe/share.py:233 +msgid "{0} shared a document {1} {2} with you" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:77 +msgid "{0} shared this document with everyone" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:80 +msgid "{0} shared this document with {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:317 +msgid "{0} should be indexed because it's referred in dashboard connections" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 +msgid "{0} should not be same as {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:51 +msgid "{0} submitted this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:42 +msgctxt "Form timeline" +msgid "{0} submitted this document {1}" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 +msgid "{0} subscribers added" +msgstr "" + +#: frappe/email/queue.py:69 +msgid "{0} to stop receiving emails of this type" +msgstr "" + +#: frappe/public/js/frappe/form/controls/date_range.js:48 +#: frappe/public/js/frappe/form/controls/date_range.js:64 +#: frappe/public/js/frappe/form/formatters.js:238 +msgid "{0} to {1}" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:89 +msgid "{0} un-shared this document with {1}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:256 +msgid "{0} updated" +msgstr "" + +#: frappe/public/js/frappe/form/controls/multiselect_list.js:198 +msgid "{0} values selected" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:184 +msgid "{0} viewed this" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:35 +msgid "{0} w" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:64 +msgid "{0} weeks ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:39 +msgid "{0} y" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:72 +msgid "{0} years ago" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:219 +msgid "{0} {1} added" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:270 +msgid "{0} {1} added to Dashboard {2}" +msgstr "" + +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 +msgid "{0} {1} already exists" +msgstr "" + +#: frappe/model/base_document.py:1044 +msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" +msgstr "" + +#: frappe/utils/nestedset.py:353 +msgid "{0} {1} cannot be a leaf node as it has children" +msgstr "" + +#: frappe/model/rename_doc.py:376 +msgid "{0} {1} does not exist, select a new target to merge" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:951 +msgid "{0} {1} is linked with the following submitted documents: {2}" +msgstr "" + +#: frappe/model/document.py:258 frappe/permissions.py:580 +msgid "{0} {1} not found" +msgstr "" + +#: frappe/model/delete_doc.py:288 +msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." +msgstr "" + +#: frappe/model/base_document.py:1176 +msgid "{0}, Row {1}" +msgstr "" + +#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192 +msgid "{0}/{1} complete | Please leave this tab open until completion." +msgstr "" + +#: frappe/model/base_document.py:1181 +msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1814 +msgid "{0}: Cannot set Amend without Cancel" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1832 +msgid "{0}: Cannot set Assign Amend if not Submittable" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1830 +msgid "{0}: Cannot set Assign Submit if not Submittable" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1809 +msgid "{0}: Cannot set Cancel without Submit" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1816 +msgid "{0}: Cannot set Import without Create" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1812 +msgid "{0}: Cannot set Submit, Cancel, Amend without Write" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1836 +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:1427 +msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1335 +msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1294 +msgid "{0}: Field {1} of type {2} cannot be mandatory" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1282 +msgid "{0}: Fieldname {1} appears multiple times in rows {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1414 +msgid "{0}: Fieldtype {1} for {2} cannot be unique" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1769 +msgid "{0}: No basic permissions set" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1783 +msgid "{0}: Only one rule allowed with the same Role, Level and {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1316 +msgid "{0}: Options must be a valid DocType for field {1} in row {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1305 +msgid "{0}: Options required for Link or Table type field {1} in row {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1323 +msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "{0}: Other permission rules may also apply" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1798 +msgid "{0}: Permission at level 0 must be set before higher levels are set" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:51 +msgid "{0}: You can increase the limit for the field if required via {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1269 +msgid "{0}: fieldname cannot be set to reserved keyword {1}" +msgstr "" + +#: frappe/contacts/doctype/address/address.js:35 +#: frappe/contacts/doctype/contact/contact.js:88 +msgid "{0}: {1}" +msgstr "" + +#: frappe/workflow/doctype/workflow_action/workflow_action.py:172 +msgid "{0}: {1} is set to state {2}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1291 +msgid "{0}: {1} vs {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1435 +msgid "{0}:Fieldtype {1} for {2} cannot be indexed" +msgstr "" + +#: frappe/public/js/frappe/form/quick_entry.js:195 +msgid "{1} saved" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:12 +msgid "{count} cell copied" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:13 +msgid "{count} cells copied" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:16 +msgid "{count} row selected" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:17 +msgid "{count} rows selected" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1489 +msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:521 +msgid "{} Complete" +msgstr "" + +#: frappe/utils/data.py:2567 +msgid "{} Invalid python code on line {}" +msgstr "" + +#: frappe/utils/data.py:2576 +msgid "{} Possibly invalid python code.
    {}" +msgstr "" + +#. Count format of shortcut in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "{} Published" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:54 +msgid "{} does not support automated log clearing." +msgstr "" + +#: frappe/core/doctype/audit_trail/audit_trail.py:41 +msgid "{} field cannot be empty." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:223 +#: frappe/email/doctype/email_account/email_account.py:231 +msgid "{} has been disabled. It can only be enabled if {} is checked." +msgstr "" + +#: frappe/utils/data.py:145 +msgid "{} is not a valid date string." +msgstr "" + +#: frappe/commands/utils.py:561 +msgid "{} not found in PATH! This is required to access the console." +msgstr "" + +#: frappe/database/db_manager.py:99 +msgid "{} not found in PATH! This is required to restore the database." +msgstr "" + +#: frappe/utils/backups.py:466 +msgid "{} not found in PATH! This is required to take a backup." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:5 +#: frappe/public/js/frappe/file_uploader/WebLink.vue:4 +msgid "← Back to upload files" +msgstr "" + diff --git a/frappe/locale/nb.po b/frappe/locale/nb.po new file mode 100644 index 0000000000..7815399e30 --- /dev/null +++ b/frappe/locale/nb.po @@ -0,0 +1,32067 @@ +msgid "" +msgstr "" +"Project-Id-Version: frappe\n" +"Report-Msgid-Bugs-To: developers@frappe.io\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" +"Last-Translator: developers@frappe.io\n" +"Language-Team: Norwegian Bokmal\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.16.0\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project-ID: 639578\n" +"X-Crowdin-Language: nb\n" +"X-Crowdin-File: /[frappe.frappe] develop/frappe/locale/main.pot\n" +"X-Crowdin-File-ID: 52\n" +"Language: nb_NO\n" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "!=" +msgstr "!=" + +#. Description of the 'Org History Heading' (Data) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "\"Company History\"" +msgstr "\"Selskapets historie\"" + +#: frappe/core/doctype/data_export/exporter.py:202 +msgid "\"Parent\" signifies the parent table in which this row must be added" +msgstr "\"Forelder\" angir den overordnede tabellen som denne raden skal legges til i" + +#. Description of the 'Team Members Heading' (Data) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "\"Team Members\" or \"Management\"" +msgstr "\"Lagmedlemmer\" eller \"Ledelse\"" + +#: frappe/public/js/frappe/form/form.js:1090 +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." + +#: frappe/utils/csvutils.py:246 +msgid "\"{0}\" is not a valid Google Sheets URL" +msgstr "\"{0}\" er ikke en gyldig Google Sheets-URL" + +#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:21 +#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:22 +msgid "#{0}" +msgstr "#{0}" + +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:36 +msgid "${values.doctype_name} has been added to queue for optimization" +msgstr "${values.doctype_name} er lagt til køen for optimalisering" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "© Frappe Technologies Pvt. Ltd. and contributors" +msgstr "© Frappe Technologies Pvt. Ltd. og bidragsytere" + +#. Label of the head_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "<head> HTML" +msgstr "<head> HTML" + +#: frappe/public/js/form_builder/store.js:206 +msgid "'In Global Search' is not allowed for field {0} of type {1}" +msgstr "«I globalt søk» er ikke tillatt for feltet {0} av typen {1}" + +#: frappe/core/doctype/doctype/doctype.py:1355 +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}" + +#: frappe/public/js/form_builder/store.js:198 +msgid "'In List View' is not allowed for field {0} of type {1}" +msgstr "\"I listevisning\" er ikke tillatt for feltet {0} av typen {1}" + +#: frappe/custom/doctype/customize_form/customize_form.py:367 +msgid "'In List View' not allowed for type {0} in row {1}" +msgstr "'I listevisning' ikke tillatt for typen {0} i rad {1}" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 +msgid "'Recipients' not specified" +msgstr "'Mottakere' er ikke angitt" + +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "'{0}' er ikke et gyldig IBAN" + +#: frappe/utils/__init__.py:261 +msgid "'{0}' is not a valid URL" +msgstr "'{0}' er ikke en gyldig URL" + +#: frappe/core/doctype/doctype/doctype.py:1349 +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 +msgid "(Mandatory)" +msgstr "(Obligatorisk)" + +#: frappe/model/rename_doc.py:703 +msgid "** Failed: {0} to {1}: {2}" +msgstr "** Feilet: {0} til {1}: {2}" + +#: frappe/public/js/frappe/list/list_settings.js:133 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 +msgid "+ Add / Remove Fields" +msgstr "+ Legg til / Fjern Felter" + +#. Description of the 'Doc Status' (Select) field in DocType 'Workflow Document +#. State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "0 - Draft; 1 - Submitted; 2 - Cancelled" +msgstr "0 – Utkast; 1 – Registrert; 2 – Avbrutt" + +#. Description of the 'Priority' (Int) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "0 is highest" +msgstr "0 er høyeste" + +#: frappe/public/js/frappe/form/grid_row.js:893 +msgid "1 = True & 0 = False" +msgstr "1 = Sant og 0 = Usant" + +#. Description of the 'Fraction Units' (Int) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "1 Currency = [?] Fraction\n" +"For e.g. 1 USD = 100 Cent" +msgstr "1 Valuta = [?] Brøkdel\n" +"F.eks. 1 USD = 100 Cent" + +#: frappe/public/js/frappe/form/reminders.js:19 +msgid "1 Day" +msgstr "1 dag" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:374 +msgid "1 Google Calendar Event synced." +msgstr "1 Google Kalender-hendelse synkronisert." + +#: frappe/public/js/frappe/views/reports/query_report.js:963 +msgid "1 Report" +msgstr "1 Rapport" + +#: frappe/tests/test_utils.py:845 +msgid "1 day ago" +msgstr "1 dag siden" + +#: frappe/public/js/frappe/form/reminders.js:17 +msgid "1 hour" +msgstr "1 time" + +#: frappe/public/js/frappe/utils/pretty_date.js:52 +#: frappe/tests/test_utils.py:843 +msgid "1 hour ago" +msgstr "1 time siden" + +#: frappe/public/js/frappe/utils/pretty_date.js:48 +#: frappe/tests/test_utils.py:841 +msgid "1 minute ago" +msgstr "1 minutt siden" + +#: frappe/public/js/frappe/utils/pretty_date.js:66 +#: frappe/tests/test_utils.py:849 +msgid "1 month ago" +msgstr "1 måned siden" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:3 +msgid "1 of 2" +msgstr "1 av 2" + +#: frappe/public/js/frappe/data_import/data_exporter.js:227 +msgid "1 record will be exported" +msgstr "1 oppføring vil bli eksportert" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "1 rad fra {0}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "1 rad til {0}" + +#: frappe/tests/test_utils.py:840 +msgid "1 second ago" +msgstr "1 sekund siden" + +#: frappe/public/js/frappe/utils/pretty_date.js:62 +#: frappe/tests/test_utils.py:847 +msgid "1 week ago" +msgstr "1 uke siden" + +#: frappe/public/js/frappe/utils/pretty_date.js:70 +#: frappe/tests/test_utils.py:851 +msgid "1 year ago" +msgstr "1 år siden" + +#: frappe/tests/test_utils.py:844 +msgid "2 hours ago" +msgstr "2 timer siden" + +#: frappe/tests/test_utils.py:850 +msgid "2 months ago" +msgstr "2 måneder siden" + +#: frappe/tests/test_utils.py:848 +msgid "2 weeks ago" +msgstr "2 uker siden" + +#: frappe/tests/test_utils.py:852 +msgid "2 years ago" +msgstr "2 år siden" + +#: frappe/tests/test_utils.py:842 +msgid "3 minutes ago" +msgstr "3 minutter siden" + +#: frappe/public/js/frappe/form/reminders.js:16 +msgid "30 minutes" +msgstr "30 minutter" + +#: frappe/public/js/frappe/form/reminders.js:18 +msgid "4 hours" +msgstr "4 timer" + +#: frappe/public/js/frappe/data_import/data_exporter.js:37 +msgid "5 Records" +msgstr "5 oppføringer" + +#: frappe/tests/test_utils.py:846 +msgid "5 days ago" +msgstr "5 dager siden" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:36 +msgid "; not allowed in condition" +msgstr "; ikke tillatt i betingelse" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "<" +msgstr "<" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "<=" +msgstr "<=" + +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "\n" +" Klikk her for å lære om tokenbasert autentisering\n" +"" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:601 +msgid "{0} is not a valid URL" +msgstr "{0} er ikke en gyldig URL" + +#. Content of the 'Help' (HTML) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "
    Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
    " +msgstr "
    Ikke oppdater den, da det kan ødelegge skjemaet ditt. Bruk Tilpass skjemavisning og Tilpassede felt for å angi egenskaper!
    " + +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

    Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

    " +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

    Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

    " +msgstr "" + +#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "
    \n" +" Edit list of Series in the box. Rules:\n" +"
      \n" +"
    • Each Series Prefix on a new line.
    • \n" +"
    • Allowed special characters are \"/\" and \"-\"
    • \n" +"
    • \n" +" Optionally, set the number of digits in the series using dot (.)\n" +" followed by hashes (#). For example, \".####\" means that the series\n" +" will have four digits. Default is five digits.\n" +"
    • \n" +"
    • \n" +" You can also use variables in the series name by putting them\n" +" between (.) dots\n" +"
      \n" +" Supported Variables:\n" +"
        \n" +"
      • .YYYY. - Year in 4 digits
      • \n" +"
      • .YY. - Year in 2 digits
      • \n" +"
      • .MM. - Month
      • \n" +"
      • .DD. - Day of month
      • \n" +"
      • .WW. - Week of the year
      • \n" +"
      • \n" +" .{fieldname}. - fieldname on the document e.g.\n" +" branch\n" +"
      • \n" +"
      • .FY. - Fiscal Year (requires ERPNext to be installed)
      • \n" +"
      • .ABBR. - Company Abbreviation (requires ERPNext to be installed)
      • \n" +"
      \n" +"
    • \n" +"
    \n" +" Examples:\n" +"
      \n" +"
    • INV-
    • \n" +"
    • INV-10-
    • \n" +"
    • INVK-
    • \n" +"
    • INV-.YYYY.-.{branch}.-.MM.-.####
    • \n" +"
    \n" +"
    \n" +"
    \n" +msgstr "
    \n" +" Rediger listen over serier i boksen. Regler:\n" +"
      \n" +"
    • Hvert serieprefiks på en ny linje.
    • \n" +"
    • Tillatte spesialtegn er \"/\" og \"-\"
    • \n" +"
    • \n" +" Du kan eventuelt angi antall sifre i serien ved å bruke punktum (.)\n" +" etterfulgt av nummertegn (#). For eksempel betyr \".####\" at serien\n" +" vil ha fire sifre. Standard er fem sifre.\n" +"
    • \n" +"
    • \n" +" Du kan også bruke variabler i serienavnet ved å plassere dem\n" +" mellom (.) prikker\n" +"
      \n" +" Støttede variabler:\n" +"
        \n" +"
      • .YYYY. - År med 4 sifre
      • \n" +"
      • .YY. - År med 2 sifre
      • \n" +"
      • .MM. - Måned
      • \n" +"
      • .DD. - Dag i måneden
      • \n" +"
      • .WW. - Uke i året
      • \n" +"
      • \n" +" .{fieldname}. - feltnavn på dokumentet, f.eks.\n" +" gren\n" +"
      • \n" +"
      • .FY. - Regnskapsår (krever at ERPNext er installert)
      • \n" +"
      • .ABBR. - Firmaforkortelse (krever at ERPNext er installert)
      • \n" +"
      \n" +"
    • \n" +"
    \n" +" Eksempler:\n" +"
      \n" +"
    • INV-
    • \n" +"
    • INV-10-
    • \n" +"
    • INVK-
    • \n" +"
    • INV-.YYYY.-.{branch}.-.MM.-.####
    • \n" +"
    \n" +"
    \n" +"
    \n" + +#. Content of the 'Custom HTML Help' (HTML) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "

    Custom CSS Help

    \n\n" +"

    Notes:

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

    Examples

    \n\n" +"

    1. Left align integers

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

    1. Add border to sections except the last section

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

    Hjelp med tilpasset CSS

    \n\n" +"

    Merknader:

    \n\n" +"
      \n" +"
    1. Alle feltgrupper (etikett + verdi) er angitt med attributter datafelttype og datafeltnavn
    2. \n" +"
    3. Alle verdier er gitt klasse verdi
    4. \n" +"
    5. Alle seksjonsskift er gitt klasse seksjonsskift
    6. \n" +"
    7. Alle kolonneskift er gitt klasse kolonneskift
    8. \n" +"
    \n\n" +"

    Eksempler

    \n\n" +"

    1. Venstrejuster heltall

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

    1. Legg til kantlinje rundt seksjoner unntatt den siste seksjonen

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

    Print Format Help

    \n" +"
    \n" +"

    Introduction

    \n" +"

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

    \n" +"

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

    \n" +"
    \n" +"

    References

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

    Example

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

    Common Functions

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

    Hjelp til utskriftsformat

    \n" +"
    \n" +"

    Innledning

    \n" +"

    Utskriftsformater gjengis på serversiden ved hjelp av Jinja Templating Language. Alle skjemaer har tilgang til doc-objektet, som inneholder informasjon om dokumentet som formateres. Du kan også få tilgang til vanlige verktøy via frappe-modulen.

    \n" +"

    For styling er Boostrap CSS-rammeverket tilgjengelig, og du kan benytte deg av hele spekteret av klasser.

    \n" +"
    \n" +"

    Referanser

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

    Eksempel

    \n" +"
    <h3>{{ doc.select_print_heading or \"Invoice\" }}</h3>\n"
    +"<div class=\"row\">\n"
    +"\t<div class=\"col-md-3 text-right\">Kundenavn</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\">Dato</div>\n"
    +"\t<div class=\"col-md-9\">{{ doc.get_formatted(\"invoice_date\") }}</div>\n"
    +"</div>\n"
    +"<table class=\"table table table-bordered\">\n"
    +"\t<tbody>\n"
    +"\t\t<tr>\n"
    +"\t\t\t<th th>Sr</th>\n"
    +"\t\t\t<th>Varenavn</th>\n"
    +"\t\t\t<th>Beskrivelse</th>\n"
    +"\t\t\t<th class=\"text-right\">Antall</th>\n"
    +"\t\t\t<th class=\"text-right\">Hyppighet</th>\n"
    +"\t\t\t<th class=\"text-right\">Beløp</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>Varekode: {{ 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" +"

    Vanlige funksjoner

    \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(\"[feltnavn]\", [parent_doc])Henter dokumentverdi formatert som dato, valuta osv. Overfør overordnet dokument for felt av valutatypen.
    frappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\")Hent verdi fra et annet dokument.
    \n" + +#. Description of the 'Template' (Code) field in DocType 'Address Template' +#: frappe/contacts/doctype/address_template/address_template.json +#, python-format +msgid "

    Default Template

    \n" +"

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

    \n" +"
    {{ address_line1 }}<br>\n"
    +"{% if address_line2 %}{{ address_line2 }}<br>{% endif -%}\n"
    +"{{ city }}<br>\n"
    +"{% if state %}{{ state }}<br>{% endif -%}\n"
    +"{% if pincode %} PIN:  {{ pincode }}<br>{% endif -%}\n"
    +"{{ country }}<br>\n"
    +"{% if phone %}Phone: {{ phone }}<br>{% endif -%}\n"
    +"{% if fax %}Fax: {{ fax }}<br>{% endif -%}\n"
    +"{% if email_id %}Email: {{ email_id }}<br>{% endif -%}\n"
    +"
    " +msgstr "

    Standardmal

    \n" +"

    Bruker Jinja-mallegging og alle feltene i adressen (inkludert tilpassede felt hvis noen) vil være tilgjengelige

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

    Email Reply Example

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

    How to get fieldnames

    \n\n" +"

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

    \n\n" +"

    Templating

    \n\n" +"

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

    \n" +msgstr "

    Eksempel på e-postsvar

    \n\n" +"
    Ordre forfalt\n\n"
    +"Transaksjonen {{ name }} har overskredet forfallsdato. Vennligst iverksett nødvendige tiltak.\n\n"
    +"Detaljer\n\n"
    +"- Kunde: {{ customer }}\n"
    +"- Beløp: {{ grand_total }}\n"
    +"
    \n\n" +"

    Slik henter du feltnavn

    \n\n" +"

    Feltnavnene du kan bruke i e-postmalen din, er feltene i dokumentet du sender e-posten fra. Du kan finne feltene til alle dokumenter via Oppsett > Tilpass skjemavisning og velg dokumenttype (DocType) (f.eks. salgsfaktura)

    \n\n" +"

    Maler

    \n\n" +"

    Maler kompileres ved hjelp av Jinja-malspråket. Hvis du vil vite mer om Jinja, kan du lese denne dokumentasjonen.

    \n" + +#. Content of the 'html_5' (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "
    Or
    " +msgstr "
    Eller
    " + +#. Content of the 'Message Examples' (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +#, python-format +msgid "
    Message Example
    \n\n" +"
    <h3>Order Overdue</h3>\n\n"
    +"<p>Transaction {{ doc.name }} has exceeded Due Date. Please take necessary action.</p>\n\n"
    +"<!-- show last comment -->\n"
    +"{% if comments %}\n"
    +"Last comment: {{ comments[-1].comment }} by {{ comments[-1].by }}\n"
    +"{% endif %}\n\n"
    +"<h4>Details</h4>\n\n"
    +"<ul>\n"
    +"<li>Customer: {{ doc.customer }}\n"
    +"<li>Amount: {{ doc.grand_total }}\n"
    +"</ul>\n"
    +"
    " +msgstr "
    Meldingseksempel
    \n\n" +"
    <h3>Ordre forfalt</h3>\n\n"
    +"<p>Transaksjonen {{ doc.name }} har overskredet forfallsdatoen. Vennligst iverksett nødvendige tiltak.</p>\n\n"
    +"<!-- vis siste kommentar -->\n"
    +"{% if comments %}\n"
    +"Siste kommentar: {{ comments[-1].comment }} av {{ comments[-1].by }}\n"
    +"{% endif %}\n\n"
    +"<h4>Detaljer</h4>\n\n"
    +"<ul>\n"
    +"<li>Kunde: {{ doc.customer }}\n"
    +"<li>Beløp: {{ doc.grand_total }}\n"
    +"</ul>\n"
    +"
    " + +#. Content of the 'html_condition' (HTML) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "

    Condition Examples:

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

    Eksempler på betingelser:

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

    Condition Examples:

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

    Eksempler på betingelser:

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

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

    For Example:

    \n" +"

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

    \n" +msgstr "

    Flere nettskjemaer kan opprettes for én dokumenttype (DocType). Legg til filtre som er spesifikke for dette nettskjemaet for å vise riktig post etter innsending.

    For eksempel:

    \n" +"

    Hvis du oppretter et separat nettskjema hvert år for å samle inn tilbakemeldinger fra ansatte, legg til et \n" +" felt med navnet år i DocType og legg til et filter år = 2023

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

    Set context before rendering a template. Example:

    \n" +"

    \n"
    +"context.project = frappe.get_doc(\"Project\", frappe.form_dict.name)\n"
    +"
    " +msgstr "

    Angi kontekst før du gjengir en mal. Eksempel:

    \n" +"

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

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

    For example:

    // here root_element is provided by default\n"
    +"let some_class_element = root_element.querySelector('.some-class');\n"
    +"some_class_element.textContent = \"New content\";\n"
    +"
    " +msgstr "

    For å samhandle med HTML-koden ovenfor må du bruke `root_element` som en overordnet velger.

    For eksempel:

    // her er root_element levert som standard\n"
    +"let some_class_element = root_element.querySelector('.some-class');\n"
    +"some_class_element.textContent = \"Nytt innhold\";\n"
    +"
    " + +#: frappe/twofactor.py:451 +msgid "

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

    " +msgstr "

    Din OTP-hemmelighet på {0} er tilbakestilt. Dersom du ikke foretok denne tilbakestillingen og ikke har bedt om det, vennligst kontakt systemadministratoren umiddelbart.

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

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

    \n" +"

    Allowed functions:\n" +"

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

    Example:

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

    " +msgstr "
    doc.grand_total > 0
    \n\n" +"

    Betingelser skal skrives i enkel Python. Bruk kun egenskaper som er tilgjengelige i skjemaet.

    \n" +"

    Tillatte funksjoner:\n" +"

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

    Eksempel

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

    " + +#. Header text in the Welcome Workspace Workspace +#: frappe/core/workspace/welcome_workspace/welcome_workspace.json +msgid "Hi," +msgstr "Hei," + +#: frappe/custom/doctype/custom_field/custom_field.js:39 +msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." +msgstr "Advarsel: Dette feltet er systemgenerert og kan bli overskrevet av en fremtidig oppdatering. Endre det med {0} i stedet." + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "=" +msgstr "=" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid ">" +msgstr ">" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid ">=" +msgstr ">=" + +#: frappe/core/doctype/doctype/doctype.py:1035 +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" + +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "En Frappe Framework-instans kan fungere som en OAuth-klient, ressurs eller autorisasjonsserver. Denne dokumenttypen (DocType) inneholder innstillinger relatert til alle tre." + +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:175 +msgid "A field with the name {0} already exists in {1}" +msgstr "Et felt med navnet {0} finnes allerede i {1}" + +#: frappe/core/doctype/file/file.py:269 +msgid "A file with same name {} already exists" +msgstr "En fil med samme navn {} finnes allerede" + +#. 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 "En liste over ressurser som klientappen vil ha tilgang til etter at brukeren tillater det.
    f.eks. prosjekt" + +#: frappe/templates/emails/new_user.html:5 +msgid "A new account has been created for you at {0}" +msgstr "En ny konto er opprettet for deg på {0}" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 +msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." +msgstr "En gjentakende {0} {1} er opprettet for deg via Automatisk gjentakelse {2}." + +#. Description of the 'Symbol' (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "A symbol for this currency. For e.g. $" +msgstr "Et symbol for denne valutaen. For eksempel €" + +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:49 +msgid "A template already exists for field {0} of {1}" +msgstr "Det finnes allerede en mal for feltet {0} av {1}" + +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
    \n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "En versjonsidentifikatorstreng for klientprogramvaren.\n" +"
    \n" +"Verdien til skal endres ved enhver oppdatering av klientprogramvaren med samme programvare-ID." + +#: frappe/utils/password_strength.py:169 +msgid "A word by itself is easy to guess." +msgstr "Et ord i seg selv er lett å gjette." + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A0" +msgstr "A0" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A1" +msgstr "A1" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A2" +msgstr "A2" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A3" +msgstr "A3" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A4" +msgstr "A4" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A5" +msgstr "A5" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A6" +msgstr "A6" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A7" +msgstr "A7" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A8" +msgstr "A8" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A9" +msgstr "A9" + +#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "ALL" +msgstr "ALLE" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "API" +msgstr "API" + +#. Label of the api_access (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "API Access" +msgstr "API-tilgang" + +#. 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-endepunkt" + +#. Label of the api_endpoint_args (Code) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "API Endpoint Args" +msgstr "Parametre for API-endepunkt" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "Parametre for API-endepunkt må være gyldig JSON" + +#. Label of the api_key (Data) field in DocType 'User' +#. Label of the api_key (Data) field in DocType 'Email Account' +#. Label of the api_key (Password) field in DocType 'Geolocation Settings' +#. Label of the api_key (Data) field in DocType 'Google Settings' +#. Label of the sb_01 (Section Break) field in DocType 'Google Settings' +#. Label of the api_key (Data) field in DocType 'Push Notification Settings' +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "API Key" +msgstr "API-nøkkel" + +#. Description of the 'Authentication' (Section Break) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "API Key and Secret to interact with the relay server. These will be auto-generated when the first push notification is sent from any of the apps installed on this site." +msgstr "API-nøkkel og -hemmelighet for å samhandle med reléserveren. Disse genereres automatisk når den første push-varslingen sendes fra en av appene som er installert på dette nettstedet." + +#. Description of the 'API Key' (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "API Key cannot be regenerated" +msgstr "API-nøkkelen kan ikke regenereres" + +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "API-nøkler" + +#. Label of the api_logging_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "API Logging" +msgstr "API-logging" + +#. Label of the api_method (Data) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "API Method" +msgstr "API-metode" + +#. Name of a DocType +#: frappe/core/doctype/api_request_log/api_request_log.json +msgid "API Request Log" +msgstr "API-forespørselslogg" + +#. Label of the api_secret (Password) field in DocType 'User' +#. Label of the api_secret (Password) field in DocType 'Email Account' +#. Label of the api_secret (Password) field in DocType 'Push Notification +#. Settings' +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "API Secret" +msgstr "API-hemmelighet" + +#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType' +#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "ASC" +msgstr "ASC" + +#. Label of a standard help item +#. Type: Action +#: frappe/hooks.py +msgid "About" +msgstr "Om" + +#: frappe/www/about.html:11 frappe/www/about.html:18 +msgid "About Us" +msgstr "Om oss" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/website/workspace/website/website.json +msgid "About Us Settings" +msgstr "Innstillinger for \"Om oss\"" + +#. Name of a DocType +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +msgid "About Us Team Member" +msgstr "\"Om oss\" lagmedlem" + +#: frappe/core/doctype/data_import/data_import.js:27 +msgid "About {0} minute remaining" +msgstr "Omtrent {0} minutt igjen" + +#: frappe/core/doctype/data_import/data_import.js:28 +msgid "About {0} minutes remaining" +msgstr "Omtrent {0} minutter igjen" + +#: frappe/core/doctype/data_import/data_import.js:25 +msgid "About {0} seconds remaining" +msgstr "Omtrent {0} sekunder igjen" + +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "Godta invitasjonen" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "Godtatt" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "Godtatt på" + +#. Label of the access_control_section (Section Break) field in DocType 'Web +#. Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Access Control" +msgstr "Adgangsstyring" + +#. Name of a DocType +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/workspace/users/users.json +msgid "Access Log" +msgstr "Adgangslogg" + +#. Label of the access_token (Data) field in DocType 'OAuth Bearer Token' +#. Label of the access_token (Password) field in DocType 'Token Cache' +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Access Token" +msgstr "Adgangstoken" + +#. Label of the access_token_url (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Access Token URL" +msgstr "Adgangstoken URL" + +#: frappe/auth.py:494 +msgid "Access not allowed from this IP Address" +msgstr "Tilgang er ikke tillatt fra denne IP-adressen" + +#. Label of the account_section (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Account" +msgstr "Konto" + +#. Label of the account_deletion_settings_section (Section Break) field in +#. DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Account Deletion Settings" +msgstr "Innstillinger for sletting av konto" + +#. Name of a role +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Accounts Manager" +msgstr "Kontoadministrator" + +#. Name of a role +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Accounts User" +msgstr "Kontobruker" + +#: frappe/public/js/frappe/form/dashboard.js:510 +msgid "Accurate count can not be fetched, click here to view all documents" +msgstr "Nøyaktig antall kan ikke hentes, klikk her for å se alle dokumenter" + +#. Label of the action (Select) field in DocType 'Amended Document Naming +#. Settings' +#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' +#. Label of the action (Data) field in DocType 'Navbar Item' +#. Label of the action (Select) field in DocType 'Onboarding Step' +#. Label of the action (Select) field in DocType 'Email Flag Queue' +#. Label of the action (Link) field in DocType 'Workflow Transition' +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_group/email_group.js:34 +#: frappe/email/doctype/email_group/email_group.js:63 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +#: frappe/workflow/page/workflow_builder/workflow_builder.js:37 +msgid "Action" +msgstr "Handling" + +#. Label of the action (Small Text) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json +msgid "Action / Route" +msgstr "Handling / Rute" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:305 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:376 +msgid "Action Complete" +msgstr "Handlingen er fullført" + +#: frappe/model/document.py:1888 +msgid "Action Failed" +msgstr "Handlingen mislyktes" + +#. Label of the action_label (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Action Label" +msgstr "Handlingsetikett" + +#. Label of the action_timeout (Int) field in DocType 'Success Action' +#: frappe/core/doctype/success_action/success_action.json +msgid "Action Timeout (Seconds)" +msgstr "Tidsavbrudd for handling (sekunder)" + +#. Label of the action_type (Select) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json +msgid "Action Type" +msgstr "Handlingstype" + +#: frappe/core/doctype/submission_queue/submission_queue.py:120 +msgid "Action {0} completed successfully on {1} {2}. View it {3}" +msgstr "Handling {0} fullførte vellykket på {1} {2}. Se den på {3}" + +#: frappe/core/doctype/submission_queue/submission_queue.py:116 +msgid "Action {0} failed on {1} {2}. View it {3}" +msgstr "Handlingen {0} mislyktes på {1} {2}. Se den på {3}" + +#. Label of the actions_section (Tab Break) field in DocType 'DocType' +#. Label of the actions (Table) field in DocType 'Customize Form' +#: frappe/core/doctype/communication/communication.js:66 +#: frappe/core/doctype/communication/communication.js:74 +#: frappe/core/doctype/communication/communication.js:82 +#: frappe/core/doctype/communication/communication.js:90 +#: frappe/core/doctype/communication/communication.js:99 +#: frappe/core/doctype/communication/communication.js:108 +#: frappe/core/doctype/communication/communication.js:131 +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/rq_job/rq_job_list.js:14 +#: frappe/core/doctype/rq_job/rq_job_list.js:39 +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:48 +#: frappe/custom/doctype/customize_form/customize_form.js:108 +#: frappe/custom/doctype/customize_form/customize_form.js:116 +#: frappe/custom/doctype/customize_form/customize_form.js:124 +#: frappe/custom/doctype/customize_form/customize_form.js:132 +#: frappe/custom/doctype/customize_form/customize_form.js:140 +#: frappe/custom/doctype/customize_form/customize_form.js:148 +#: frappe/custom/doctype/customize_form/customize_form.js:283 +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/public/js/frappe/ui/page.html:57 +#: frappe/public/js/frappe/views/reports/query_report.js: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:850 +msgid "Actions" +msgstr "Handlinger" + +#. Label of the activate (Check) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json +msgid "Activate" +msgstr "Aktivér" + +#. Option for the 'Status' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' +#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/recorder/recorder_list.js:207 +#: frappe/core/doctype/user/user_list.js:12 +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/workflow/doctype/workflow/workflow_list.js:5 +msgid "Active" +msgstr "Aktiv" + +#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Active Directory" +msgstr "Aktiv mappe" + +#. Label of the active_domains_sb (Section Break) field in DocType 'Domain +#. Settings' +#. Label of the active_domains (Table) field in DocType 'Domain Settings' +#: frappe/core/doctype/domain_settings/domain_settings.json +msgid "Active Domains" +msgstr "Aktive domener" + +#. Label of the active_sessions (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/www/third_party_apps.html:34 +msgid "Active Sessions" +msgstr "Aktive økter" + +#. Group in User's connections +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/form/dashboard.js:22 +#: frappe/public/js/frappe/form/footer/form_timeline.js:60 +msgid "Activity" +msgstr "Aktivitet" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/workspace/build/build.json +#: frappe/core/workspace/users/users.json +msgid "Activity Log" +msgstr "Aktivitetslogg" + +#: frappe/core/page/permission_manager/permission_manager.js:482 +#: frappe/email/doctype/email_group/email_group.js:60 +#: frappe/public/js/frappe/form/grid_row.js:502 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:101 +#: frappe/public/js/frappe/form/templates/set_sharing.html:68 +#: frappe/public/js/frappe/list/bulk_operations.js:437 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 +#: frappe/public/js/frappe/widgets/widget_dialog.js:30 +msgid "Add" +msgstr "Legg til" + +#: frappe/public/js/frappe/form/grid_row.js:455 +msgid "Add / Remove Columns" +msgstr "Legg til / Fjern kolonner" + +#: frappe/core/doctype/user_permission/user_permission_list.js:4 +msgid "Add / Update" +msgstr "Legg til / Oppdater" + +#: frappe/core/page/permission_manager/permission_manager.js:442 +msgid "Add A New Rule" +msgstr "Legg til en ny regel" + +#: frappe/public/js/frappe/views/communication.js:601 +#: frappe/public/js/frappe/views/interaction.js:159 +msgid "Add Attachment" +msgstr "Legg til vedlegg" + +#. 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 "Legg til bakgrunnsbilde" + +#. 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 "Legg til kant nederst" + +#. 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 "Legg til kant øverst" + +#: 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 +msgid "Add Chart to Dashboard" +msgstr "Legg til diagram i oversiktspanel" + +#: frappe/public/js/frappe/views/treeview.js:301 +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:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 +#: frappe/public/js/print_format_builder/Field.vue:112 +msgid "Add Column" +msgstr "Legg til Kolonne" + +#: frappe/core/doctype/communication/communication.js:127 +msgid "Add Contact" +msgstr "Legg til kontakt" + +#: frappe/desk/doctype/event/event.js:38 +msgid "Add Contacts" +msgstr "Legg til kontakter" + +#. 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 "Legg til beholder" + +#. 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 "Legg til egendefinerte meta-tagger" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:188 +#: frappe/public/js/frappe/widgets/widget_dialog.js:716 +msgid "Add Filters" +msgstr "Legg til filtre" + +#. 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 "Legg til grå bakgrunn" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:230 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 +msgid "Add Group" +msgstr "Legg til gruppe" + +#: frappe/core/doctype/recorder/recorder.js:30 +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:445 +msgid "Add New Permission Rule" +msgstr "Legg til ny regel for tillatelser" + +#: frappe/desk/doctype/event/event.js:35 frappe/desk/doctype/event/event.js:42 +msgid "Add Participants" +msgstr "Legg til deltakere" + +#. 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 "Legg til spørreparametere" + +#: frappe/core/doctype/user/user.py:819 +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:133 +msgid "Add Signature" +msgstr "Legg til signatur" + +#. 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 "Legg til mellomrom nederst" + +#. 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 "Legg til mellomrom øverst" + +#: frappe/email/doctype/email_group/email_group.js:38 +#: frappe/email/doctype/email_group/email_group.js:59 +msgid "Add Subscribers" +msgstr "Legg til abonnenter" + +#: frappe/public/js/frappe/list/bulk_operations.js:425 +msgid "Add Tags" +msgstr "Legg til stikkord" + +#: frappe/public/js/frappe/list/list_view.js:2151 +msgctxt "Button in list view actions menu" +msgid "Add Tags" +msgstr "Legg til stikkord" + +#: frappe/public/js/frappe/views/communication.js:433 +msgid "Add Template" +msgstr "Legg til mal" + +#. Label of the add_total_row (Check) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Add Total Row" +msgstr "Legg til totalrad" + +#. Label of the add_translate_data (Check) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Add Translate Data" +msgstr "Legg til oversettelsesdata" + +#. 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 "Legg til avmeldingslenke" + +#: frappe/core/doctype/user_permission/user_permission_list.js:6 +msgid "Add User Permissions" +msgstr "Legg til brukerrettigheter" + +#. Label of the add_video_conferencing (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Add Video Conferencing" +msgstr "Legg til mulighet for videokonferanse" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:299 +msgid "Add a Filter" +msgstr "Legg til et filter" + +#: frappe/core/page/permission_manager/permission_manager_help.html:9 +msgid "Add a New Role" +msgstr "Legg til en ny rolle" + +#: frappe/public/js/frappe/form/form_tour.js:211 +msgid "Add a Row" +msgstr "Legg til Rad" + +#: frappe/templates/includes/comments/comments.html:30 +#: frappe/templates/includes/comments/comments.html:47 +msgid "Add a comment" +msgstr "Legg til en kommentar" + +#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:28 +#: frappe/public/js/form_builder/components/Tabs.vue:192 +msgid "Add a new section" +msgstr "Legg til en ny seksjon" + +#: frappe/public/js/frappe/form/form.js:193 +msgid "Add a row above the current row" +msgstr "Legg til en rad over gjeldende rad" + +#: frappe/public/js/frappe/form/form.js:205 +msgid "Add a row at the bottom" +msgstr "Legg til en rad nederst" + +#: frappe/public/js/frappe/form/form.js:201 +msgid "Add a row at the top" +msgstr "Legg til en rad øverst" + +#: frappe/public/js/frappe/form/form.js:197 +msgid "Add a row below the current row" +msgstr "Legg til en rad under gjeldende rad" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:286 +msgid "Add a {0} Chart" +msgstr "Legg til et {0} -diagram" + +#: frappe/public/js/form_builder/components/Section.vue:271 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:115 +msgid "Add column" +msgstr "Legg til kolonne" + +#: frappe/public/js/form_builder/components/AddFieldButton.vue:9 +#: frappe/public/js/form_builder/components/AddFieldButton.vue:48 +msgid "Add field" +msgstr "Legg til felt" + +#: frappe/public/js/form_builder/components/Sidebar.vue:49 +#: frappe/public/js/form_builder/components/Tabs.vue:153 +msgid "Add new tab" +msgstr "Legg til ny fane" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:125 +msgid "Add page break" +msgstr "Legg til sideskift" + +#: frappe/custom/doctype/client_script/client_script.js:18 +msgid "Add script for Child Table" +msgstr "Legg til skript for undertabell" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:111 +msgid "Add section above" +msgstr "Legg til seksjon ovenfor" + +#: frappe/public/js/form_builder/components/Section.vue:265 +msgid "Add section below" +msgstr "Legg til seksjon nedenfor" + +#: frappe/public/js/form_builder/components/Sidebar.vue:52 +#: frappe/public/js/form_builder/components/Tabs.vue:157 +msgid "Add tab" +msgstr "Legg til fane" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:263 +#: frappe/public/js/frappe/views/reports/query_report.js:252 +msgid "Add to Dashboard" +msgstr "Legg til i oversiktspanel" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:99 +msgid "Add to ToDo" +msgstr "Legg til gjøremål" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:32 +msgid "Add to table" +msgstr "Legg til i tabellen" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:99 +msgid "Add to this activity by mailing to {0}" +msgstr "Legg til denne aktiviteten ved å sende den til {0}" + +#: frappe/public/js/frappe/views/kanban/kanban_column.html:20 +msgid "Add {0}" +msgstr "Legg til {0}" + +#: frappe/public/js/frappe/list/list_view.js:289 +msgctxt "Primary action in list view" +msgid "Add {0}" +msgstr "Legg til {0}" + +#. Option for the 'Status' (Select) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Added" +msgstr "Lagt til" + +#. Description of the '<head> HTML' (Code) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Added HTML in the <head> section of the web page, primarily used for website verification and SEO" +msgstr "La til HTML i <head> -delen av nettsiden, primært brukt til nettstedsverifisering og SEO" + +#: frappe/core/doctype/log_settings/log_settings.py:81 +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 +msgid "Added {0} ({1})" +msgstr "Lagt til {0} ({1})" + +#. Label of the additional_permissions (Section Break) field in DocType 'Custom +#. DocPerm' +#. Label of the additional_permissions (Section Break) field in DocType +#. 'DocPerm' +#. Label of the additional_permissions_section (Section Break) field in DocType +#. 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "Additional Permissions" +msgstr "Ekstra tillatelser" + +#. Name of a DocType +#. Label of the address (Link) field in DocType 'Contact' +#. Label of the address (Section Break) field in DocType 'Contact Us Settings' +#. Label of the address (Small Text) field in DocType 'Website Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Address" +msgstr "Adresse" + +#. Label of the address_line1 (Data) field in DocType 'Address' +#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Address Line 1" +msgstr "Adresselinje 1" + +#. Label of the address_line2 (Data) field in DocType 'Address' +#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/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 "Adresselinje 2:" + +#. Name of a DocType +#: frappe/contacts/doctype/address_template/address_template.json +msgid "Address Template" +msgstr "Adressemal" + +#. Label of the address_title (Data) field in DocType 'Address' +#. Label of the address_title (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Address Title" +msgstr "Adressetittel" + +#: frappe/contacts/doctype/address/address.py:72 +msgid "Address Title is mandatory." +msgstr "Adressetittel er obligatorisk." + +#. Label of the address_type (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Address Type" +msgstr "Adressetype" + +#. Description of the 'Address' (Small Text) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Address and other legal information you may want to put in the footer." +msgstr "Adresse og annen juridisk informasjon du kanskje vil legge inn i bunnteksten." + +#: frappe/contacts/doctype/address/address.py:206 +msgid "Addresses" +msgstr "Adresser" + +#. Name of a report +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.json +msgid "Addresses And Contacts" +msgstr "Adresser og kontakter" + +#. Description of a DocType +#: frappe/custom/doctype/client_script/client_script.json +msgid "Adds a custom client script to a DocType" +msgstr "Legger til et egendefinert klientskript til en dokumenttype (DocType)" + +#. Description of a DocType +#: frappe/custom/doctype/custom_field/custom_field.json +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:561 +msgid "Administration" +msgstr "Administrasjon" + +#. Name of a role +#: frappe/contacts/doctype/salutation/salutation.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/domain/domain.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/patch_log/patch_log.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/version/version.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Administrator" +msgstr "Administrator" + +#: frappe/core/doctype/user/user.py:1226 +msgid "Administrator Logged In" +msgstr "Administratoren er logget inn" + +#: frappe/core/doctype/user/user.py:1220 +msgid "Administrator accessed {0} on {1} via IP Address {2}." +msgstr "Administrator fikk tilgang til {0} på {1} via IP-adressen {2}." + +#: frappe/desk/form/document_follow.py:52 +msgid "Administrator can't follow" +msgstr "Administrator kan ikke følge" + +#. Label of the advanced (Section Break) field in DocType 'DocType' +#. Label of the advanced_tab (Tab Break) field in DocType 'System Settings' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Advanced" +msgstr "Avansert" + +#. 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 "Avansert kontroll" + +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 +msgid "Advanced Search" +msgstr "Avansert søk" + +#. Label of the sb_advanced (Section Break) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Advanced Settings" +msgstr "Avanserte innstillinger" + +#: frappe/public/js/frappe/ui/filters/filter.js:64 +#: frappe/public/js/frappe/ui/filters/filter.js:70 +msgid "After" +msgstr "Etter" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Cancel" +msgstr "Etter avbrytelse" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Delete" +msgstr "Etter slettingEdit" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Discard" +msgstr "Etter kassering" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Insert" +msgstr "Etter innsetting" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Rename" +msgstr "Etter navneendring" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Save" +msgstr "Etter lagring" + +#. 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 "Etter lagring (registrert dokument)" + +#. Label of the section_break_5 (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "After Submission" +msgstr "Etter registrring" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Submit" +msgstr "Etter registrering" + +#: frappe/desk/doctype/number_card/number_card.py:63 +msgid "Aggregate Field is required to create a number card" +msgstr "Feltet Aggregert er påkrevd for å opprette et tallkort" + +#. Label of the aggregate_function_based_on (Select) field in DocType +#. 'Dashboard Chart' +#. Label of the aggregate_function_based_on (Select) field in DocType 'Number +#. Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Aggregate Function Based On" +msgstr "Aggregert funksjon basert på" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:410 +msgid "Aggregate Function field is required to create a dashboard chart" +msgstr "Feltet Aggregert funksjon er påkrevd for å opprette et diagram i oversiktspanel" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Alert" +msgstr "Alarm" + +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Alerts and Notifications" +msgstr "Alarmer og Varsler" + +#: frappe/database/query.py:1610 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "Alias kan ikke være et SQL-nøkkelord: {0}" + +#: frappe/database/query.py:1535 +msgid "Alias must be a string" +msgstr "Aliaset må være en streng" + +#. Label of the align (Select) field in DocType 'Letter Head' +#. Label of the footer_align (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Align" +msgstr "Juster" + +#. 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 "Juster etiketter til høyre" + +#. 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 "Høyrejuster" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:479 +msgid "Align Value" +msgstr "Juster verdi" + +#. Name of a role +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/gender/gender.json +#: frappe/contacts/doctype/salutation/salutation.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/file/file.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/tag_link/tag_link.json +#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "All" +msgstr "Alle" + +#. Label of the all_day (Check) field in DocType 'Calendar View' +#. Label of the all_day (Check) field in DocType 'Event' +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json +#: frappe/public/js/frappe/ui/notifications/notifications.js:408 +msgid "All Day" +msgstr "Hele dagen" + +#: frappe/website/doctype/website_slideshow/website_slideshow.py:43 +msgid "All Images attached to Website Slideshow should be public" +msgstr "Alle bilder som er knyttet til nettsidens lysbildefremvisning, skal være offentlige" + +#: frappe/public/js/frappe/data_import/data_exporter.js:29 +msgid "All Records" +msgstr "Alle oppføringer" + +#: frappe/public/js/frappe/form/form.js:2224 +msgid "All Submissions" +msgstr "Alle registreringer" + +#: frappe/custom/doctype/customize_form/customize_form.js:452 +msgid "All customizations will be removed. Please confirm." +msgstr "Alle tilpasninger vil bli fjernet. Vennligst bekreft." + +#: frappe/templates/includes/comments/comments.html:158 +msgid "All fields are necessary to submit the comment." +msgstr "Alle feltene er nødvendige for å sende inn kommentaren." + +#. 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 "Alle mulige arbeidsflyttilstander og roller for arbeidsflyten. Docstatus-alternativer: 0 er \"Lagret\", 1 er \"Registrert\" og 2 er \"Avbrutt\"" + +#: frappe/utils/password_strength.py:183 +msgid "All-uppercase is almost as easy to guess as all-lowercase." +msgstr "Bare store bokstaver er nesten like enkle å gjette som bare små bokstaver." + +#. Label of the allocated_to (Link) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +msgid "Allocated To" +msgstr "Fordelt til" + +#. Label of the allow (Link) field in DocType 'User Permission' +#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key' +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/templates/includes/oauth_confirmation.html:16 +msgid "Allow" +msgstr "Tillat" + +#: frappe/website/doctype/website_settings/website_settings.py:160 +msgid "Allow API Indexing Access" +msgstr "Tillat tilgang til API-indeksering" + +#. Label of the allow_auto_repeat (Check) field in DocType 'DocType' +#. Label of the allow_auto_repeat (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Allow Auto Repeat" +msgstr "Tillat automatisk gjentakelse" + +#. 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 "Tillat masseredigering" + +#. Label of the allow_edit (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Allow Bulk Editing" +msgstr "Tillat masseredigering" + +#. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Consecutive Login Attempts" +msgstr "Tillat flere påloggingsforsøk" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:79 +msgid "Allow Google Calendar Access" +msgstr "Gi tilgang til Google Kalender" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:40 +msgid "Allow Google Contacts Access" +msgstr "Gi Google Kontakter tilgang" + +#. Label of the allow_guest (Check) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Allow Guest" +msgstr "Tillat gjest" + +#. Label of the allow_guest_to_view (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Allow Guest to View" +msgstr "Tillat gjest å se" + +#. 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 "Tillat gjester å laste opp filer" + +#. 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 "Tillat import (via dataimportverktøyet)" + +#. 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 "Tillat pålogging etter feil" + +#. 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 "Tillat innlogging ved hjelp av mobilnummer" + +#. 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 "Tillat pålogging med brukernavn" + +#. Label of the sb_allow_modules (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allow Modules" +msgstr "Tillat moduler" + +#. Label of the allow_older_web_view_links (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Older Web View Links (Insecure)" +msgstr "Tillat eldre nettvisningslenker (usikkert)" + +#. 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 "Tillat utskrift for avbrutt" + +#. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Allow Print for Draft" +msgstr "Tillat utskrift for utkast" + +#. Label of the allow_read_on_all_link_options (Check) field in DocType 'Web +#. Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Allow Read On All Link Options" +msgstr "Tillat lesing på alle lenkealternativer" + +#. Label of the allow_rename (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Allow Rename" +msgstr "Tillat navneendring" + +#. Label of the roles_permission (Section Break) field in DocType 'Role +#. Permission for Page and Report' +#. Label of the allow_roles (Table MultiSelect) field in DocType 'Module +#. Onboarding' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Allow Roles" +msgstr "Tillat roller" + +#. 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 "Tillat egengodkjenning" + +#. 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 "Tillat sending av bruksdata for å forbedre applikasjoner" + +#. 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 "Tillat godkjenning for opphavspersonen til dokumentet" + +#. Label of the allow_comments (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow comments" +msgstr "Tillat kommentarer" + +#. Label of the allow_delete (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow delete" +msgstr "Tillat sletting" + +#. Label of the email_append_to (Check) field in DocType 'DocType' +#. Label of the email_append_to (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Allow document creation via Email" +msgstr "Tillat dokumentoppretting via e-post" + +#. Label of the allow_edit (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow editing after submit" +msgstr "Tillat redigering etter registrering" + +#. Description of the 'Allow Bulk Editing' (Check) field in DocType 'List View +#. Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Allow editing even if the doctype has a workflow set up.\n\n" +"Does nothing if a workflow isn't set up." +msgstr "Tillat redigering selv om dokumenttypen (DocType) har en arbeidsflyt konfigurert.\n\n" +"Gjør ingenting hvis en arbeidsflyt ikke er konfigurert." + +#. Label of the allow_events_in_timeline (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Allow events in timeline" +msgstr "Tillat hendelser i tidslinjen" + +#. Label of the allow_in_quick_entry (Check) field in DocType 'DocField' +#. Label of the allow_in_quick_entry (Check) field in DocType 'Custom Field' +#. Label of the allow_in_quick_entry (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Allow in Quick Entry" +msgstr "Tillat i Hurtigoppføring" + +#. Label of the allow_incomplete (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow incomplete forms" +msgstr "Tillat ufullstendige skjemaer" + +#. Label of the allow_multiple (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow multiple responses" +msgstr "Tillat flere svar" + +#. Label of the allow_on_submit (Check) field in DocType 'DocField' +#. Label of the allow_on_submit (Check) field in DocType 'Custom Field' +#. Label of the allow_on_submit (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Allow on Submit" +msgstr "Tillat ved registrering" + +#. 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 "Tillat kun én økt per bruker" + +#. 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 "Tillat sideskift inne i tabeller" + +#. Label of the allow_print (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow print" +msgstr "Tillat utskrift" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:431 +msgid "Allow recording my first session to improve user experience" +msgstr "Tillat opptak av min første økt for å forbedre brukeropplevelsen" + +#. Description of the 'Allow incomplete forms' (Check) field in DocType 'Web +#. Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow saving if mandatory fields are not filled" +msgstr "Tillat lagring hvis påkrevde felt ikke er utfylt" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:424 +msgid "Allow sending usage data for improving applications" +msgstr "Tillat sending av bruksdata for å forbedre apper" + +#. 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 "Tillat brukeren å logge inn bare etter denne timen (0-24)" + +#. Description of the 'Login Before' (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allow user to login only before this hour (0-24)" +msgstr "Tillat brukeren å logge inn bare før denne timen (0-24)" + +#. Description of the 'Login with email link' (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow users to log in without a password, using a login link sent to their email" +msgstr "Tillat brukere å logge inn uten passord ved hjelp av en påloggingslenke sendt til e-postadressen deres" + +#. Label of the allowed (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Allowed" +msgstr "Tillatt" + +#. 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 "Tillatte filendelser" + +#. Label of the allowed_in_mentions (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allowed In Mentions" +msgstr "Tillatt i omtaler" + +#. 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 "Tillatte moduler" + +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "Tillatte offentlige klientopprinnelser" + +#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Allowed Roles" +msgstr "Tillatte roller" + +#. Label of the allowed_embedding_domains (Small Text) field in DocType 'Web +#. Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allowed embedding domains" +msgstr "Tillatte innebyggingsdomener" + +#: frappe/public/js/frappe/form/form.js:1256 +msgid "Allowing DocType, DocType. Be careful!" +msgstr "Tillater flere dokumenttyper (DocType) kommaseparert. Vær forsiktig!" + +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414" +msgstr "Lar klienter hente metadata fra /.well-known/oauth-authorization-server endepunktet. Referanse: RFC8414" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "Lar klienter hente metadata fra endepunktet /.well-known/oauth-protected-resource . Referanse: RFC9728" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "Lar klienter registrere seg selv uten manuell inngripen. Registrering oppretter en OAuth-klient -oppføring. Referanse: RFC7591" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "Lar klienter se dette som en autorisasjonsserver når de spør etter sluttpunktet /.well-known/oauth-protected-resource ." + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "Tillater at aktivert basis-URL for sosial påloggingsnøkkel vises som autorisasjonsserver." + +#. 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:1034 +msgid "Already Registered" +msgstr "Allerede registrert" + +#: frappe/desk/form/assign_to.py:137 +msgid "Already in the following Users ToDo list:{0}" +msgstr "Allerede i følgende brukeres gjøremålsliste:{0}" + +#: frappe/public/js/frappe/views/reports/report_view.js:907 +msgid "Also adding the dependent currency field {0}" +msgstr "Legger også til feltet for avhengig valuta{0}" + +#: frappe/public/js/frappe/views/reports/report_view.js:920 +msgid "Also adding the status dependency field {0}" +msgstr "Legger også til feltet for statusavhengighet {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 "Alternativ e-post-ID" + +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + +#. Label of the always_bcc (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Always BCC Address" +msgstr "Alltid BCC-adresse" + +#. 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 "Legg alltid til overskriften «Utkast» for utskrift av utkastdokumenter" + +#. 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 "Bruk alltid denne e-postadressen som avsenderadresse" + +#. 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 "Bruk alltid dette navnet som avsendernavn" + +#. Label of the amend (Check) field in DocType 'Custom DocPerm' +#. Label of the amend (Check) field in DocType 'DocPerm' +#. Label of the amend (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "Amend" +msgstr "Korriger" + +#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming +#. Settings' +#. Option for the 'Default Amendment Naming' (Select) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Amend Counter" +msgstr "Korriger teller" + +#. Name of a DocType +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +msgid "Amended Document Naming Settings" +msgstr "Endrede innstillinger for dokumentnavngivning" + +#. Label of the amended_documents_section (Section Break) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Amended Documents" +msgstr "Korrigerte dokumenter" + +#. Label of the amended_from (Link) field in DocType 'Personal Data Download +#. Request' +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +msgid "Amended From" +msgstr "Korrigert fra" + +#: frappe/public/js/frappe/form/save.js:12 +msgctxt "Freeze message while amending a document" +msgid "Amending" +msgstr "Endring" + +#. Label of the amend_naming_override (Table) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Amendment Naming Override" +msgstr "Overstyring av navngivning av korrigering" + +#: frappe/model/document.py:551 +msgid "Amendment Not Allowed" +msgstr "Korrigering ikke tillatt" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:207 +msgid "Amendment naming rules updated." +msgstr "Regler for navngivning av korrigeringer oppdatert." + +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 +msgid "An error occurred while setting Session Defaults" +msgstr "Det oppstod en feil under innstilling av øktstandarder" + +#. 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 "En ikonfil med filtypen .ico. Skal være 16 x 16 piksler. Generert ved hjelp av en favicon-generator. [favicon-generator.org]" + +#: frappe/templates/includes/oauth_confirmation.html:38 +msgid "An unexpected error occurred while authorizing {}." +msgstr "Det oppsto en uventet feil under autorisering av {}." + +#. Label of the analytics_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Analytics" +msgstr "Analyse" + +#: frappe/public/js/frappe/ui/filters/filter.js:35 +msgid "Ancestors Of" +msgstr "Overordnede til" + +#. Label of the announcement_widget (Text Editor) field in DocType 'Navbar +#. Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Announcement Widget" +msgstr "Widget for kunngjøringer" + +#. Label of the announcements_section (Section Break) field in DocType 'Navbar +#. Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Announcements" +msgstr "Kunngjøringer" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Annual" +msgstr "Årlig" + +#. Label of the anonymization_matrix (Code) field in DocType 'Personal Data +#. Deletion Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Anonymization Matrix" +msgstr "Anonymiseringsmatrise" + +#. Label of the anonymous (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Anonymous responses" +msgstr "Anonyme svar" + +#: frappe/public/js/frappe/request.js:189 +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." + +#: frappe/model/rename_doc.py:379 +msgid "Another {0} with name {1} exists, select another name" +msgstr "En annen {0} med navnet {1} finnes. Velg et annet navn." + +#. 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 "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 +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)." + +#. Label of the app_tab (Tab Break) field in DocType 'System Settings' +#. Label of the app_section (Section Break) field in DocType 'User' +#. Label of the app (Data) field in DocType 'Desktop Icon' +#. Label of the app (Data) field in DocType 'Workspace' +#. Label of the app (Data) field in DocType 'Website Theme Ignore App' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json +msgid "App" +msgstr "App" + +#. Label of the app_id (Data) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "App ID" +msgstr "App-ID" + +#. Label of the app_logo (Attach Image) field in DocType 'Website Settings' +#: frappe/public/js/frappe/ui/toolbar/navbar.html:8 +#: frappe/website/doctype/website_settings/website_settings.json +msgid "App Logo" +msgstr "App-logo" + +#. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' +#. Label of the app_name (Data) field in DocType 'Changelog Feed' +#. Label of the app_name (Data) field in DocType 'Website Settings' +#: frappe/core/doctype/installed_applications/installed_applications.js:27 +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "App Name" +msgstr "Appnavn" + +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "Appnavn (klientnavn)" + +#: frappe/modules/utils.py:280 +msgid "App not found for module: {0}" +msgstr "Appen ble ikke funnet for modulen: {0}" + +#: frappe/__init__.py:1113 +msgid "App {0} is not installed" +msgstr "Appen {0} er ikke installert" + +#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email +#. Account' +#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Append Emails to Sent Folder" +msgstr "Legg til e-poster i Sendte e-poster-mappen" + +#. 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 "Legg til i" + +#: frappe/email/doctype/email_account/email_account.py:202 +msgid "Append To can be one of {0}" +msgstr "\"Legg til i\" kan være en av {0}" + +#. Description of the 'Append To' (Link) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Append as communication against this DocType (must have fields: \"Sender\" and \"Subject\"). These fields can be defined in the email settings section of the appended doctype." +msgstr "\"Legg til i\" kommunikasjon mot denne dokumenttypen (DocType) (må ha feltene «Avsender» og «Emne»). Disse feltene kan defineres i e-postinnstillingene i den tillagte dokumenttypen." + +#: frappe/core/doctype/user_permission/user_permission_list.js:105 +msgid "Applicable Document Types" +msgstr "Gjeldende dokumenttyper (DocType)" + +#. Label of the applicable_for (Link) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "Applicable For" +msgstr "Gjeldende for" + +#. Label of the app_logo (Attach Image) field in DocType 'Navbar Settings' +#. Label of the logo_section (Section Break) field in DocType 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Application Logo" +msgstr "Applikasjonslogo" + +#. 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 "Applikasjonsnavn" + +#. Label of the app_version (Data) field in DocType 'Installed Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Application Version" +msgstr "Applikasjonsversjon" + +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "Programmet er ikke installert" + +#. Label of the doctype_or_field (Select) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Applied On" +msgstr "Anvendt på" + +#: frappe/public/js/form_builder/components/Field.vue:103 +msgid "Apply" +msgstr "Bruk" + +#: frappe/public/js/frappe/list/list_view.js:2136 +msgctxt "Button in list view actions menu" +msgid "Apply Assignment Rule" +msgstr "Bruk tildelingsregel" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:318 +msgid "Apply Filters" +msgstr "Bruk filtre" + +#. 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 "Bruk strenge brukerrettigheter" + +#. Label of the view (Select) field in DocType 'Client Script' +#: frappe/custom/doctype/client_script/client_script.json +msgid "Apply To" +msgstr "Bruk på" + +#. Label of the apply_to_all_doctypes (Check) field in DocType 'User +#. Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "Apply To All Document Types" +msgstr "Bruk på alle dokumenttyper (DocType)" + +#. Label of the apply_user_permission_on (Link) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Apply User Permission On" +msgstr "Bruk brukertillatelse på" + +#. Label of the apply_document_permissions (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Apply document permissions" +msgstr "Bruk dokumenttillatelser" + +#. Description of the 'If user is the owner' (Check) field in DocType 'Custom +#. DocPerm' +#. Description of the 'If user is the owner' (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +msgid "Apply this rule if the User is the Owner" +msgstr "Bruk denne regelen hvis brukeren er eieren" + +#: frappe/core/doctype/user_permission/user_permission_list.js:75 +msgid "Apply to all Documents Types" +msgstr "Bruk på alle dokumenttyper (DocType)" + +#: frappe/model/workflow.py:322 +msgid "Applying: {0}" +msgstr "Bruker: {0}" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:115 +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/website/js/website.js:619 frappe/www/me.html:80 +msgid "Apps" +msgstr "Apper" + +#: frappe/public/js/frappe/utils/number_systems.js:41 +msgctxt "Number system" +msgid "Ar" +msgstr "Ar" + +#: frappe/public/js/frappe/views/kanban/kanban_column.html:14 +msgid "Archive" +msgstr "Arkiver" + +#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Archived" +msgstr "Arkivert" + +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:494 +msgid "Archived Columns" +msgstr "Arkiverte kolonner" + +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +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:2115 +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:294 +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/controls/attach.js:38 +#: 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?" + +#: frappe/public/js/form_builder/components/Section.vue:197 +msgctxt "Confirmation dialog message" +msgid "Are you sure you want to delete the column? All the fields in the column will be moved to the previous column." +msgstr "Er du sikker på at du vil slette kolonnen? Alle feltene i kolonnen vil bli flyttet til forrige kolonne." + +#: frappe/public/js/form_builder/components/Section.vue:126 +msgctxt "Confirmation dialog message" +msgid "Are you sure you want to delete the section? All the columns along with fields in the section will be moved to the previous section." +msgstr "Er du sikker på at du vil slette seksjonen? Alle kolonnene og feltene i seksjonen vil bli flyttet til forrige seksjon." + +#: frappe/public/js/form_builder/components/Tabs.vue:65 +msgctxt "Confirmation dialog message" +msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." +msgstr "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 +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 +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:977 +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:120 +msgid "Are you sure you want to merge {0} with {1}?" +msgstr "Er du sikker på at du vil slå sammen {0} med {1}?" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 +msgid "Are you sure you want to proceed?" +msgstr "Er du sikker på at du vil fortsette?" + +#: frappe/core/doctype/rq_job/rq_job_list.js:25 +msgid "Are you sure you want to re-enable scheduler?" +msgstr "Er du sikker på at du vil reaktivere planlegger?" + +#: frappe/core/doctype/communication/communication.js:163 +msgid "Are you sure you want to relink this communication to {0}?" +msgstr "Er du sikker på at du vil koble denne kommunikasjonen til {0}på nytt?" + +#: frappe/core/doctype/rq_job/rq_job_list.js:10 +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:116 +msgid "Are you sure you want to remove the {0} filter?" +msgstr "Er du sikker på at du vil fjerne filteret {0} ?" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:268 +msgid "Are you sure you want to reset all customizations?" +msgstr "Er du sikker på at du vil tilbakestille alle tilpasninger?" + +#: frappe/workflow/doctype/workflow/workflow.js:125 +msgid "Are you sure you want to save this document?" +msgstr "Er du sikker på at du vil lagre dette dokumentet?" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 +#: frappe/core/doctype/user_permission/user_permission_list.js:165 +msgid "Are you sure?" +msgstr "Er du sikker?" + +#. Label of the arguments (Code) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Arguments" +msgstr "Argumenter" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Arial" +msgstr "Arial" + +#: frappe/core/page/permission_manager/permission_manager_help.html:11 +msgid "As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User." +msgstr "Det er anbefalt å ikke tildele samme sett med tillatelsesregler til forskjellige roller. Angi i stedet flere roller til samme bruker." + +#: frappe/desk/form/assign_to.py:107 +msgid "As document sharing is disabled, please give them the required permissions before assigning." +msgstr "Siden dokumentdeling er deaktivert, må du gi dem de nødvendige tillatelsene før du tildeler." + +#: frappe/templates/emails/account_deletion_notification.html:3 +msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" +msgstr "I henhold til forespørselen din er kontoen din og dataene på {0} knyttet til e-postadressen {1} slettet permanent" + +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + +#. Label of the assign_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Assign Condition" +msgstr "Tilordne betingelse" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 +msgid "Assign To" +msgstr "Tilordne til" + +#: frappe/public/js/frappe/list/list_view.js:2097 +msgctxt "Button in list view actions menu" +msgid "Assign To" +msgstr "Tilordne til" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 +msgid "Assign To User Group" +msgstr "Tilordne til brukergruppe" + +#. Label of the assign_to_users_section (Section Break) field in DocType +#. 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Assign To Users" +msgstr "Tilordne til brukere" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:260 +msgid "Assign a user" +msgstr "Tilordne en bruker" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:52 +msgid "Assign one by one, in sequence" +msgstr "Tilordne én etter en, i rekkefølge" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:174 +msgid "Assign to me" +msgstr "Tilordne til meg" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:53 +msgid "Assign to the one who has the least assignments" +msgstr "Tildel til den som har færrest oppgaver" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:54 +msgid "Assign to the user set in this field" +msgstr "Tilordne til brukeren som er angitt i dette feltet" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Assigned" +msgstr "Tildelt" + +#. Label of the assigned_by (Link) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:41 +msgid "Assigned By" +msgstr "Tilordnet av" + +#. 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 "Tilordnet av (fullt navn)" + +#: frappe/model/meta.py:62 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:49 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:71 +#: frappe/public/js/frappe/model/meta.js:210 +#: frappe/public/js/frappe/model/model.js:136 +#: frappe/public/js/frappe/views/interaction.js:82 +msgid "Assigned To" +msgstr "Tilordnet til" + +#: frappe/desk/report/todo/todo.py:40 +msgid "Assigned To/Owner" +msgstr "Tilordnet til / Eier" + +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "Oppdragstaker" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:269 +msgid "Assigning..." +msgstr "Tilordner..." + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Assignment" +msgstr "Oppgave" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Assignment Completed" +msgstr "Oppgave fullført" + +#. 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 "Antall tildelingsdager" + +#. Name of a DocType +#. Label of a Link in the Tools Workspace +#. Label of a shortcut in the Tools Workspace +#. Label of the assignment_rule (Link) field in DocType 'ToDo' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/todo/todo.json +msgid "Assignment Rule" +msgstr "Tildelingsregel" + +#. Name of a DocType +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +msgid "Assignment Rule Day" +msgstr "Dag for tildelingsregel" + +#. Name of a DocType +#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +msgid "Assignment Rule User" +msgstr "Bruker av tildelingsregel" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55 +msgid "Assignment Rule is not allowed on document type {0}" +msgstr "Tildelingsregel er ikke tillatt på dokumenttypen (DocType) {0}" + +#. Label of the assignment_rules_section (Section Break) field in DocType +#. 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Assignment Rules" +msgstr "Regler for tildeling" + +#: frappe/desk/doctype/notification_log/notification_log.py:153 +msgid "Assignment Update on {0}" +msgstr "Oppdatering av tildelt oppgave på {0}" + +#: frappe/desk/form/assign_to.py:78 +msgid "Assignment for {0} {1}" +msgstr "Oppgave for {0} {1}" + +#: frappe/desk/doctype/todo/todo.py:62 +msgid "Assignment of {0} removed by {1}" +msgstr "Tildeling av {0} fjernet av {1}" + +#. Label of the enable_email_assignment (Check) field in DocType 'Notification +#. Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:255 +msgid "Assignments" +msgstr "Tildelinger" + +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "Asynkron" + +#: frappe/public/js/frappe/form/grid_row.js:697 +msgid "At least one column is required to show in the grid." +msgstr "Minst én kolonne må vises i rutenettet." + +#: frappe/website/doctype/web_form/web_form.js:73 +msgid "At least one field is required in Web Form Fields Table" +msgstr "Minst ett felt er obligatorisk i tabellen for nettskjemafelt" + +#: frappe/core/doctype/data_export/data_export.js:44 +msgid "At least one field of Parent Document Type is mandatory" +msgstr "Minst ett felt av overordnet dokumenttype (DocType) er påkrevd" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/public/js/form_builder/components/controls/AttachControl.vue:15 +#: frappe/public/js/frappe/form/controls/attach.js:5 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Attach" +msgstr "Legg ved" + +#: frappe/public/js/frappe/views/communication.js:155 +msgid "Attach Document Print" +msgstr "Legg ved dokumentutskrift" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Attach Image" +msgstr "Legg ved bilde" + +#. Label of the attach_package (Attach) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json +msgid "Attach Package" +msgstr "Legg ved pakke" + +#. Label of the attach_print (Check) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Attach Print" +msgstr "Legg ved utskrift" + +#: frappe/public/js/frappe/file_uploader/WebLink.vue:10 +msgid "Attach a web link" +msgstr "Legg ved en nettlenke" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:8 +msgid "Attach files / urls and add in table." +msgstr "Legg ved filer/ URL-er og legg dem til i tabellen." + +#. Label of the attached_file (Code) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Attached File" +msgstr "Legg ved fil" + +#. Label of the attached_to_doctype (Link) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Attached To DocType" +msgstr "Vedlagt til dokumenttype (DocType)" + +#. Label of the attached_to_field (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Attached To Field" +msgstr "Vedlagt til felt" + +#. Label of the attached_to_name (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Attached To Name" +msgstr "Vedlagt til navn" + +#: frappe/core/doctype/file/file.py:152 +msgid "Attached To Name must be a string or an integer" +msgstr "\"Vedlagt til navn\" må være en streng eller et heltall" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Attachment" +msgstr "Vedlegg" + +#. 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 "Vedleggsgrense (MB)" + +#: frappe/core/doctype/file/file.py:338 +#: frappe/public/js/frappe/form/sidebar/attachments.js:36 +msgid "Attachment Limit Reached" +msgstr "Vedleggsgrensen er nådd" + +#. Label of the attachment_link (HTML) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Attachment Link" +msgstr "Vedleggslenke" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Attachment Removed" +msgstr "Vedlegg fjernet" + +#. Label of the attachments (Code) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/public/js/frappe/form/templates/form_sidebar.html:63 +#: frappe/website/doctype/web_form/templates/web_form.html:113 +msgid "Attachments" +msgstr "Vedlegg" + +#: frappe/public/js/frappe/form/print_utils.js:119 +msgid "Attempting Connection to QZ Tray..." +msgstr "Forsøker å koble til QZ-skuff..." + +#: frappe/public/js/frappe/form/print_utils.js:135 +msgid "Attempting to launch QZ Tray..." +msgstr "Prøver å starte QZ Tray..." + +#: frappe/www/attribution.html:9 +msgid "Attribution" +msgstr "Attribusjon" + +#. Name of a report +#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json +msgid "Audit System Hooks" +msgstr "Hooks for revisjonssystemer" + +#. Name of a DocType +#: frappe/core/doctype/audit_trail/audit_trail.json +msgid "Audit Trail" +msgstr "Revisjonsspor" + +#. 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" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "Auth URL-data skal være gyldig JSON" + +#. Label of the backend_app_flow (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Authenticate as Service Principal" +msgstr "Autentiser som tjenesteidentitet (Service Principal)" + +#. Label of the authentication_column (Section Break) field in DocType 'Email +#. Account' +#. Label of the authentication_credential_section (Section Break) field in +#. DocType 'Push Notification Settings' +#. Label of a Card Break in the Integrations Workspace +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Authentication" +msgstr "Autentisering" + +#: frappe/www/qrcode.html:19 +msgid "Authentication Apps you can use are:" +msgstr "Autentiseringsapper du kan bruke er:" + +#: frappe/email/doctype/email_account/email_account.py:339 +msgid "Authentication failed while receiving emails from Email Account: {0}." +msgstr "Autentisering mislyktes under mottak av e-post fra e-postkontoen: {0}." + +#. Label of the author (Data) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Author" +msgstr "Forfatter" + +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "Autorisasjon" + +#. Label of the authorization_code (Password) field in DocType 'Google +#. Calendar' +#. Label of the authorization_code (Password) field in DocType 'Google +#. Contacts' +#. Label of the authorization_code (Data) field in DocType 'OAuth Authorization +#. Code' +#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Authorization Code" +msgstr "Autorisasjonskode" + +#. Label of the authorization_uri (Small Text) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Authorization URI" +msgstr "Autorisasjons-URI" + +#: frappe/templates/includes/oauth_confirmation.html:35 +msgid "Authorization error for {}." +msgstr "Autorisasjonsfeil for {}." + +#. Label of the authorize_api_access (Button) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Authorize API Access" +msgstr "Autoriser API-tilgang" + +#. Label of the authorize_api_indexing_access (Button) field in DocType +#. 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Authorize API Indexing Access" +msgstr "Autoriser API-indekseringstilgang" + +#. 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 "Autoriser tilgang til Google Kalender" + +#. 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 "Autoriser tilgang til Google-kontakter" + +#. 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 "Autoriser URL" + +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Authorized" +msgstr "Autorisert" + +#: frappe/www/attribution.html:20 +msgid "Authors" +msgstr "Forfattere" + +#: frappe/www/attribution.html:37 +msgid "Authors / Maintainers" +msgstr "Forfattere / Vedlikeholdere" + +#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth +#. Provider Settings' +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +msgid "Auto" +msgstr "Auto" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Auto Email Report" +msgstr "Automatisk e-postrapport" + +#. Label of the autoname (Data) field in DocType 'DocType' +#. Label of the autoname (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Auto Name" +msgstr "Automatisk navn" + +#. Name of a DocType +#. Label of a Link in the Tools Workspace +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/workspace/tools/tools.json +#: frappe/public/js/frappe/utils/common.js:442 +msgid "Auto Repeat" +msgstr "Automatisk repetisjon" + +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +msgid "Auto Repeat Day" +msgstr "Dag for automatisk repetisjon" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 +msgid "Auto Repeat Day{0} {1} has been repeated." +msgstr "Dag for automatisk repetisjon {0} {1} er blitt gjentatt." + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 +msgid "Auto Repeat Document Creation Failed" +msgstr "Automatisk repetisjon av dokumentopprettelse feilet" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:117 +msgid "Auto Repeat Schedule" +msgstr "Plan for automatisk repetisjon" + +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "Bruker for automatisk repetisjon" + +#: frappe/public/js/frappe/utils/common.js:434 +msgid "Auto Repeat created for this document" +msgstr "Automatisk repetisjon opprettet for dette dokumentet" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 +msgid "Auto Repeat failed for {0}" +msgstr "Automatisk repetisjon mislyktes for {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 "Automatisk svar" + +#. 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 "Melding for automatisk svar" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:177 +msgid "Auto assignment failed: {0}" +msgstr "Automatisk tildeling mislyktes: {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 "Følg automatisk dokumenter som er tilordnet deg" + +#. 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 "Følg automatisk dokumenter som er delt med deg" + +#. 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 "Følg automatisk dokumenter som du liker" + +#. 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 "Følg automatisk dokumenter som du kommenterer" + +#. 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 "Følg automatisk dokumenter du oppretter" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." +msgstr "Automatisk repetisjon mislyktes. Vennligst aktiver automatisk repetisjon etter at du har løst problemene." + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Autocomplete" +msgstr "Automatisk fullføring" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Autoincrement" +msgstr "Automatisk økning" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Automate processes and extend standard functionality using scripts and background jobs" +msgstr "Automatiser prosesser og utvid standardfunksjonalitet ved hjelp av skript og bakgrunnsjobber" + +#. Option for the 'Communication Type' (Select) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Automated Message" +msgstr "Automatisert melding" + +#. Option for the 'Desk Theme' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/ui/theme_switcher.js:69 +msgid "Automatic" +msgstr "Automatisk" + +#: frappe/email/doctype/email_account/email_account.py:772 +msgid "Automatic Linking can be activated only for one Email Account." +msgstr "Automatisk kobling kan bare aktiveres for én e-postkonto." + +#: frappe/email/doctype/email_account/email_account.py:766 +msgid "Automatic Linking can be activated only if Incoming is enabled." +msgstr "Automatisk kobling kan bare aktiveres hvis Innkommende er aktivert." + +#. Description of a DocType +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Automatically Assign Documents to Users" +msgstr "Tilordne dokumenter automatisk til brukere" + +#: frappe/public/js/frappe/list/list_view.js:131 +msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." +msgstr "Anvendte automatisk et filter for nyere data. Du kan deaktivere denne funksjonen i innstillingene for listevisning." + +#. 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 "Slett kontoen automatisk innen (timer)" + +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Automation" +msgstr "Automatisering" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/form/controls/password.js:88 +#: frappe/public/js/frappe/ui/group_by/group_by.js:21 +msgid "Average" +msgstr "Gjennomsnitt" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 +msgid "Average of {0}" +msgstr "Gjennomsnitt av {0}" + +#: frappe/utils/password_strength.py:130 +msgid "Avoid dates and years that are associated with you." +msgstr "Unngå datoer og årstall som er assosiert med deg." + +#: frappe/utils/password_strength.py:124 +msgid "Avoid recent years." +msgstr "Unngå de siste årene." + +#: frappe/utils/password_strength.py:117 +msgid "Avoid sequences like abc or 6543 as they are easy to guess" +msgstr "Unngå sekvenser som abc eller 6543 siden de er lette å gjette" + +#: frappe/utils/password_strength.py:124 +msgid "Avoid years that are associated with you." +msgstr "Unngå årstall som er assosiert med deg." + +#. Label of the awaiting_password (Check) field in DocType 'User Email' +#: frappe/core/doctype/user_email/user_email.json +msgid "Awaiting Password" +msgstr "Venter på passord" + +#. Label of the awaiting_password (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Awaiting password" +msgstr "Venter på passord" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:195 +msgid "Awesome Work" +msgstr "Fantastisk arbeid :-)" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:353 +msgid "Awesome, now try making an entry yourself" +msgstr "Fantastisk, prøv å lage en oppføring selv nå :-)" + +#: frappe/public/js/frappe/utils/number_systems.js:9 +msgctxt "Number system" +msgid "B" +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" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B1" +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" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B2" +msgstr "B2" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B3" +msgstr "B3" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B4" +msgstr "B4" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B5" +msgstr "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" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B7" +msgstr "B7" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B8" +msgstr "B8" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B9" +msgstr "B9" + +#. Label of the bcc (Code) field in DocType 'Communication' +#. Label of the bcc (Code) field in DocType 'Notification Recipient' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "BCC" +msgstr "BCC" + +#: frappe/public/js/frappe/views/communication.js:87 +msgctxt "Email Recipients" +msgid "BCC" +msgstr "BCC" + +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:181 +msgid "Back" +msgstr "Tilbake" + +#: frappe/templates/pages/integrations/gcalendar-success.html:13 +msgid "Back to Desk" +msgstr "Tilbake til skrivebordet" + +#: frappe/www/404.html:26 +msgid "Back to Home" +msgstr "Tilbake til hjem" + +#: frappe/www/login.html:201 frappe/www/login.html:232 +msgid "Back to Login" +msgstr "Tilbake til innlogging" + +#. Label of the background_color (Color) field in DocType 'Number Card' +#. Label of the background_color (Color) field in DocType 'Social Link +#. Settings' +#. Label of the background_color (Link) field in DocType 'Website Theme' +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Background Color" +msgstr "Bakgrunnsfarge" + +#. 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 "Bakgrunnsbilde" + +#. Label of a Link in the Build Workspace +#. Label of the background_jobs_section (Section Break) field in DocType +#. 'System Health Report' +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 +msgid "Background Jobs" +msgstr "Bakgrunnsjobber" + +#. Label of the background_jobs_check (Data) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Background Jobs Check" +msgstr "Sjekk av bakgrunnsjobber" + +#. Label of the background_jobs_queue (Autocomplete) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Background Jobs Queue" +msgstr "Kø for bakgrunnsjobber" + +#: frappe/public/js/frappe/list/bulk_operations.js:87 +msgid "Background Print (required for >25 documents)" +msgstr "Bakgrunnsutskrift (påkrevd for >25 dokumenter)" + +#. Label of the background_workers (Section Break) field in DocType 'System +#. Settings' +#. Label of the background_workers (Table) field in DocType 'System Health +#. Report' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Background Workers" +msgstr "Bakgrunnsprosesser" + +#: frappe/desk/page/backups/backups.js:28 +msgid "Backup Encryption Key" +msgstr "Krypteringsnøkkel for sikkerhetskopiering" + +#: frappe/desk/page/backups/backups.py:98 +msgid "Backup job is already queued. You will receive an email with the download link" +msgstr "Sikkerhetskopieringsjobben er allerede i kø. Du vil motta en e-post med nedlastingslenken." + +#. Label of the backups_tab (Tab Break) field in DocType 'System Settings' +#. Label of the backups_section (Section Break) field in DocType 'System Health +#. Report' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Backups" +msgstr "Sikkerhetskopier" + +#. Label of the backups_size (Float) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Backups (MB)" +msgstr "Sikkerhetskopier (MB)" + +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68 +msgid "Bad Cron Expression" +msgstr "Dårlig Cron-uttrykk" + +#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Banker's Rounding" +msgstr "Avrunding" + +#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Banker's Rounding (legacy)" +msgstr "Avrunding (legacy)" + +#. Label of the banner (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Banner" +msgstr "Banner" + +#. Label of the banner_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Banner HTML" +msgstr "Banner-HTML" + +#. 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 "Bannerbilde" + +#. Description of the 'Banner HTML' (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Banner is above the Top Menu Bar." +msgstr "Banneren er over toppmenylinjen." + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Bar" +msgstr "Stolpe" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Barcode" +msgstr "Strekkode" + +#. 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 "Grunnleggende Distinguished Name (DN)" + +#. Label of the base_url (Data) field in DocType 'Geolocation Settings' +#. Label of the base_url (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Base URL" +msgstr "Grunnleggende URL" + +#. Label of the based_on (Link) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 +msgid "Based On" +msgstr "Basert på" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Based on Field" +msgstr "Basert på felt" + +#. 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 "Basert på brukerens rettigheter " + +#. Option for the 'Method' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Basic" +msgstr "Grunnleggende" + +#. Label of the section_break_3 (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Basic Info" +msgstr "Grunnleggende info" + +#: frappe/public/js/frappe/ui/filters/filter.js:63 +#: frappe/public/js/frappe/ui/filters/filter.js:69 +msgid "Before" +msgstr "Før" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Cancel" +msgstr "Før avbrytelse" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Delete" +msgstr "Før sletting" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Discard" +msgstr "Før kassering" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Insert" +msgstr "Før innsetting" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Print" +msgstr "Før utskrift" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Rename" +msgstr "Før nytt navn" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Save" +msgstr "Før lagring" + +#. 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 "Før lagring (registrert dokument)" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Submit" +msgstr "Før registrering" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Validate" +msgstr "Før validering" + +#. Option for the 'Level' (Select) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Beginner" +msgstr "Nybegynner" + +#: frappe/public/js/frappe/form/link_selector.js:29 +msgid "Beginning with" +msgstr "Begynner med" + +#. Label of the beta (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Beta" +msgstr "Beta" + +#: 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" + +#: frappe/public/js/frappe/ui/filters/filter.js:27 +msgid "Between" +msgstr "Mellom" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Billing" +msgstr "Fakturering" + +#: frappe/public/js/frappe/form/templates/contact_list.html:27 +msgid "Billing Contact" +msgstr "Faktureringskontakt" + +#. Label of the binary_logging (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Binary Logging" +msgstr "Binær logging" + +#. Label of the bio (Small Text) field in DocType 'User' +#. Label of the bio (Small Text) field in DocType 'About Us Team Member' +#: frappe/core/doctype/user/user.json +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +msgid "Bio" +msgstr "Bio" + +#. Label of the birth_date (Date) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Birth Date" +msgstr "Fødselsdato" + +#: frappe/public/js/frappe/data_import/data_exporter.js:41 +msgid "Blank Template" +msgstr "Tom mal" + +#. Name of a DocType +#: frappe/core/doctype/block_module/block_module.json +msgid "Block Module" +msgstr "Blokkmodul" + +#. Label of the block_modules (Table) field in DocType 'Module Profile' +#. Label of the block_modules (Table) field in DocType 'User' +#: frappe/core/doctype/module_profile/module_profile.json +#: frappe/core/doctype/user/user.json +msgid "Block Modules" +msgstr "Blokkmoduler" + +#. Label of the blocked (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Blocked" +msgstr "Blokkert" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Blue" +msgstr "Blå" + +#. Label of the bold (Check) field in DocType 'DocField' +#. Label of the bold (Check) field in DocType 'Custom Field' +#. Label of the bold (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Bold" +msgstr "Fet" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Bot" +msgstr "Bot" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:126 +msgid "Both DocType and Name required" +msgstr "Både dokumenttype (DocType) og navn kreves" + +#: frappe/templates/includes/login/login.js:24 +#: frappe/templates/includes/login/login.js:96 +msgid "Both login and password required" +msgstr "Både innlogging og passord kreves" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:154 +msgid "Bottom" +msgstr "Nederst" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:248 +msgid "Bottom Center" +msgstr "Nederst i senter" + +#. 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 "Nederst til venstre" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:249 +msgid "Bottom Right" +msgstr "Nederst til høyre" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Bounced" +msgstr "Avvist" + +#. Label of the brand (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand" +msgstr "Merkevare" + +#. Label of the brand_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand HTML" +msgstr "Merkevare-HTML" + +#. Label of the banner_image (Attach Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand Image" +msgstr "Merkevarebilde" + +#. Label of the brand_logo (Attach Image) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Brand Logo" +msgstr "Merkevarelogo" + +#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n" +"has a transparent background and use the <img /> tag. Keep size as 200px x 30px" +msgstr "Merkevaren (logo) er det som vises øverst til venstre på verktøylinjen. Hvis det er et bilde, sørg for at det har en gjennomsiktig bakgrunn og bruk <img /> -taggen. Behold størrelsen som 200 piksler x 30 piksler" + +#. Label of the breadcrumbs (Code) field in DocType 'Web Form' +#. Label of the breadcrumbs (Code) field in DocType 'Web Page' +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Breadcrumbs" +msgstr "Brødsmulestier" + +#. Label of the browser (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:36 +msgid "Browser" +msgstr "Nettleser" + +#. 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 "Nettleserversjon" + +#: frappe/public/js/frappe/desk.js:19 +msgid "Browser not supported" +msgstr "Nettleseren støttes ikke" + +#. Label of the brute_force_security (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Brute Force Security" +msgstr "Brute Force-sikkerhet" + +#. Label of the bufferpool_size (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Bufferpool Size" +msgstr "Bufferpool-størrelse" + +#. Name of a Workspace +#: frappe/core/workspace/build/build.json +msgid "Build" +msgstr "Utviklerverktøy" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Build your own reports, print formats, and dashboards. Create personalized workspaces for easier navigation" +msgstr "Lag dine egne rapporter, utskriftsformater og oversiktspanel. Lag personlige arbeidsområder for enklere navigering." + +#: frappe/workflow/doctype/workflow/workflow_list.js:18 +msgid "Build {0}" +msgstr "Bygg {0}" + +#: frappe/templates/includes/footer/footer_powered.html:1 +msgid "Built on {0}" +msgstr "Bygget på {0}" + +#. Label of the bulk_actions (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Bulk Actions" +msgstr "Massehandlinger" + +#: frappe/core/doctype/user_permission/user_permission_list.js:142 +msgid "Bulk Delete" +msgstr "Massesletting" + +#: frappe/public/js/frappe/list/bulk_operations.js:321 +msgid "Bulk Edit" +msgstr "Masseredigering" + +#: frappe/public/js/frappe/form/grid.js:1190 +msgid "Bulk Edit {0}" +msgstr "Masseredigering {0}" + +#: frappe/desk/reportview.py:637 +msgid "Bulk Operation Failed" +msgstr "Massehandling mislyktes" + +#: frappe/desk/reportview.py:641 +msgid "Bulk Operation Successful" +msgstr "Massehandling vellykket" + +#: frappe/public/js/frappe/list/bulk_operations.js:131 +msgid "Bulk PDF Export" +msgstr "Masseeksport av PDF-filer" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +msgid "Bulk Update" +msgstr "Masseoppdatering" + +#: frappe/model/workflow.py:310 +msgid "Bulk approval only support up to 500 documents." +msgstr "Massegodkjenning støtter kun opptil 500 dokumenter." + +#: frappe/desk/doctype/bulk_update/bulk_update.py:56 +msgid "Bulk operation is enqueued in background." +msgstr "Bulkoperasjon er lagt i kø i bakgrunnen." + +#: frappe/desk/doctype/bulk_update/bulk_update.py:68 +msgid "Bulk operations only support up to 500 documents." +msgstr "Massehandlinger støtter kun opptil 500 dokumenter." + +#: frappe/model/workflow.py:299 +msgid "Bulk {0} is enqueued in background." +msgstr "Bulk {0} er satt i kø i bakgrunnen." + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Button" +msgstr "Knapp" + +#. Label of the button_gradients (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Button Gradients" +msgstr "Fargeoverganger for knapp" + +#. 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 "Avrundede hjørner for knapp" + +#. Label of the button_shadows (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Button Shadows" +msgstr "Skygger for knapp" + +#. 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 "Via feltet \"Nummerserie\"" + +#: frappe/website/doctype/web_page/web_page.js:111 +#: frappe/website/doctype/web_page/web_page.js:118 +msgid "By default the title is used as meta title, adding a value here will override it." +msgstr "Som standard brukes tittelen som metatittel, og hvis du legger til en verdi her, overstyres den." + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "By fieldname" +msgstr "Via feltnavn" + +#. 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 "Via skript" + +#. 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 "Omgå IP-adressekontroll hvis 2FA er aktivert" + +#. 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 "Omgå tofaktorautentisering for brukere som logger inn fra begrenset (tillatt) IP-adresse" + +#. 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 "Omgå IP-adressekontroll hvis 2FA er aktivert" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "C5E" +msgstr "C5E" + +#: frappe/templates/print_formats/standard_macros.html:220 +msgid "CANCELLED" +msgstr "ABRUTT" + +#. Label of the cc (Code) field in DocType 'Communication' +#. Label of the cc (Code) field in DocType 'Notification Recipient' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "CC" +msgstr "CC" + +#: frappe/public/js/frappe/views/communication.js:77 +msgctxt "Email Recipients" +msgid "CC" +msgstr "CC" + +#. Label of the cmd (Data) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "CMD" +msgstr "CMD" + +#: frappe/public/js/frappe/color_picker/color_picker.js:20 +msgid "COLOR PICKER" +msgstr "FARGEVELGER" + +#. Label of the css_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Label of the css (Code) field in DocType 'Print Style' +#. Label of the css (Code) field in DocType 'Web Page' +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/website/doctype/web_page/web_page.json +msgid "CSS" +msgstr "CSS" + +#. Label of the css_class (Small Text) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "CSS Class" +msgstr "CSS-klasse" + +#. Description of the 'Element Selector' (Data) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "CSS selector for the element you want to highlight." +msgstr "CSS-selektor for elementet du vil fremheve." + +#. Option for the 'File Type' (Select) field in DocType 'Data Export' +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/core/doctype/data_export/data_export.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "CSV" +msgstr "CSV" + +#. Label of the cache_section (Section Break) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Cache" +msgstr "Hurtigbuffer" + +#: frappe/sessions.py:35 +msgid "Cache Cleared" +msgstr "Hurtigbufferen er tømt" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:181 +msgid "Calculate" +msgstr "Beregn" + +#. Label of a Link in the Tools Workspace +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Calendar" +msgstr "Kalender" + +#. Label of the calendar_name (Data) field in DocType 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Calendar Name" +msgstr "Kalendernavn" + +#. Name of a DocType +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/public/js/frappe/list/base_list.js:207 +msgid "Calendar View" +msgstr "Kalendervisning" + +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/contacts/doctype/contact/contact.js:55 +#: frappe/desk/doctype/event/event.json +msgid "Call" +msgstr "Ring" + +#. 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 "Oppfordring til handling" + +#. 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 for oppfordring til handling" + +#. Label of the callback_message (Small Text) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Callback Message" +msgstr "Melding om tilbakeringing" + +#. Label of the callback_title (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Callback Title" +msgstr "Tittel for tilbakeringing" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150 +#: frappe/public/js/frappe/ui/capture.js:334 +msgid "Camera" +msgstr "Kamera" + +#. Label of the campaign (Data) field in DocType 'Web Page View' +#: frappe/public/js/frappe/utils/utils.js:1766 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:39 +msgid "Campaign" +msgstr "Kampanje" + +#. Label of the campaign_description (Small Text) field in DocType 'UTM +#. Campaign' +#: frappe/website/doctype/utm_campaign/utm_campaign.json +msgid "Campaign Description (Optional)" +msgstr "Kampanjebeskrivelse (valgfritt)" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:4 +#: frappe/public/js/frappe/form/templates/set_sharing.html:50 +msgid "Can Read" +msgstr "Kan lese" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:7 +#: frappe/public/js/frappe/form/templates/set_sharing.html:53 +msgid "Can Share" +msgstr "Kan dele" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:6 +#: frappe/public/js/frappe/form/templates/set_sharing.html:52 +msgid "Can Submit" +msgstr "Kan registrere" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:5 +#: frappe/public/js/frappe/form/templates/set_sharing.html:51 +msgid "Can Write" +msgstr "Kan skrive" + +#: frappe/custom/doctype/custom_field/custom_field.py:410 +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:1164 +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)" + +#. Description of the 'Apply User Permission On' (Link) field in DocType 'User +#. Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Can only list down the document types which has been linked to the User document type." +msgstr "Kan bare liste ned dokumenttypene (DocType) som har blitt linket til dokumenttypen Bruker." + +#: frappe/desk/form/document_follow.py:48 +msgid "Can't follow since changes are not tracked." +msgstr "Kan ikke følge siden endringer ikke spores." + +#: frappe/model/rename_doc.py:366 +msgid "Can't rename {0} to {1} because {0} doesn't exist." +msgstr "Kan ikke endre navn på {0} til {1} fordi {0} ikke finnes." + +#. Label of the cancel (Check) field in DocType 'Custom DocPerm' +#. Label of the cancel (Check) field in DocType 'DocPerm' +#. Label of the cancel (Check) field in DocType 'User Document Type' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/doctype/doctype_list.js:131 +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/reminders.js:54 +msgid "Cancel" +msgstr "Avbryt" + +#: frappe/public/js/frappe/list/list_view.js:2206 +msgctxt "Button in list view actions menu" +msgid "Cancel" +msgstr "Avbryt" + +#: frappe/public/js/frappe/ui/messages.js:68 +msgctxt "Secondary button in warning dialog" +msgid "Cancel" +msgstr "Avbryt" + +#: frappe/public/js/frappe/form/form.js:979 +msgid "Cancel All" +msgstr "Avbryt alt" + +#: frappe/public/js/frappe/form/form.js:966 +msgid "Cancel All Documents" +msgstr "Avbryt alle dokumenter" + +#: frappe/public/js/frappe/list/list_view.js:2211 +msgctxt "Title of confirmation dialog" +msgid "Cancel {0} documents?" +msgstr "Avbryt {0} dokumenter?" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType 'ToDo' +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +#: frappe/desk/form/save.py:64 +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/public/js/frappe/model/indicator.js:78 +#: frappe/public/js/frappe/ui/filters/filter.js:540 +msgid "Cancelled" +msgstr "Avbrutt" + +#: frappe/core/doctype/deleted_document/deleted_document.py:52 +msgid "Cancelled Document restored as Draft" +msgstr "Avbrutt dokument gjenopprettet som utkast" + +#: frappe/public/js/frappe/form/save.js:13 +msgctxt "Freeze message while cancelling a document" +msgid "Cancelling" +msgstr "Avbryter" + +#: frappe/desk/form/linked_with.py:381 +msgid "Cancelling documents" +msgstr "Avbryter dokumenter" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:91 +msgid "Cancelling {0}" +msgstr "Avbryter" + +#: frappe/core/doctype/prepared_report/prepared_report.py:265 +msgid "Cannot Download Report due to insufficient permissions" +msgstr "Kan ikke laste ned rapporten på grunn av manglende tillatelser" + +#: frappe/client.py:452 +msgid "Cannot Fetch Values" +msgstr "Kan ikke hente verdier" + +#: frappe/core/page/permission_manager/permission_manager.py:156 +msgid "Cannot Remove" +msgstr "Kan ikke fjerne" + +#: frappe/model/base_document.py:1222 +msgid "Cannot Update After Submit" +msgstr "Kan ikke oppdatere etter registrering" + +#: frappe/core/doctype/file/file.py:646 +msgid "Cannot access file path {0}" +msgstr "Får ikke tilgang til filbanen {0}" + +#: frappe/public/js/workflow_builder/utils.js:183 +msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" +msgstr "Kan ikke avbryte før registrering under overgang fra {0} Tilstand til {1} Tilstand" + +#: frappe/workflow/doctype/workflow/workflow.py:110 +msgid "Cannot cancel before submitting. See Transition {0}" +msgstr "Kan ikke avbryte før registrering. Se Overgang {0}" + +#: frappe/public/js/frappe/list/bulk_operations.js:294 +msgid "Cannot cancel {0}." +msgstr "Kan ikke avbryte {0}." + +#: frappe/model/document.py:1017 +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:1031 +msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" +msgstr "Kan ikke endre docstatus fra 1 (Registrert) til 0 (Utkast)" + +#: frappe/public/js/workflow_builder/utils.js:170 +msgid "Cannot change state of Cancelled Document ({0} State)" +msgstr "Kan ikke endre tilstand for avbrutt dokument ({0} Status)" + +#: frappe/workflow/doctype/workflow/workflow.py:99 +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:1154 +msgid "Cannot change to/from autoincrement autoname in Customize Form" +msgstr "Kan ikke endre til/fra automatisk økning av navn i \"Tilpass skjema\"" + +#: frappe/core/doctype/communication/communication.py:169 +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:272 +msgid "Cannot create private workspace of other users" +msgstr "Kan ikke opprette privat arbeidsområde for andre brukere" + +#: frappe/core/doctype/file/file.py:165 +msgid "Cannot delete Home and Attachments folders" +msgstr "Kan ikke slette Hjem- og Vedlegg-mappene" + +#: frappe/model/delete_doc.py:419 +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 +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 +msgid "Cannot delete standard document state." +msgstr "Kan ikke slette standard dokumentstatus." + +#: frappe/custom/doctype/customize_form/customize_form.js:321 +msgid "Cannot delete standard field {0}. You can hide it instead." +msgstr "Kan ikke slette standardfeltet {0}. Du kan skjule det i stedet." + +#: frappe/public/js/form_builder/components/Field.vue:38 +#: frappe/public/js/form_builder/components/Section.vue:117 +#: frappe/public/js/form_builder/components/Section.vue:190 +#: frappe/public/js/form_builder/components/Tabs.vue:56 +msgid "Cannot delete standard field. You can hide it if you want" +msgstr "Kan ikke slette standardfeltet. Du kan skjule det hvis du vil." + +#: frappe/custom/doctype/customize_form/customize_form.js:347 +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 +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." + +#: frappe/public/js/frappe/list/bulk_operations.js:215 +msgid "Cannot delete {0}" +msgstr "Kan ikke slette {0}." + +#: frappe/utils/nestedset.py:312 +msgid "Cannot delete {0} as it has child nodes" +msgstr "Kan ikke slette {0} siden den har underordnede noder" + +#: frappe/desk/doctype/dashboard/dashboard.py:48 +msgid "Cannot edit Standard Dashboards" +msgstr "Kan ikke redigere standard oversiktspanel" + +#: frappe/email/doctype/notification/notification.py:202 +msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" +msgstr "Kan ikke redigere standardvarselet. For å redigere, må du deaktivere dette og kopiere det." + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:388 +msgid "Cannot edit Standard charts" +msgstr "Kan ikke redigere standarddiagrammer" + +#: frappe/core/doctype/report/report.py:72 +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:1037 +msgid "Cannot edit cancelled document" +msgstr "Kan ikke redigere avbrutt dokument" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:378 +msgid "Cannot edit filters for standard charts" +msgstr "Kan ikke redigere filtre for standarddiagrammer" + +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 +msgid "Cannot edit filters for standard number cards" +msgstr "Kan ikke redigere filtre for standard oversikt over nøkkeltall" + +#: frappe/client.py:166 +msgid "Cannot edit standard fields" +msgstr "Kan ikke redigere standardfelt" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 +msgid "Cannot enable {0} for a non-submittable doctype" +msgstr "Kan ikke aktivere {0} for en dokumenttype (DocType) som ikke kan registreres" + +#: frappe/core/doctype/file/file.py:264 +msgid "Cannot find file {} on disk" +msgstr "Kan ikke finne filen {} på disken" + +#: frappe/core/doctype/file/file.py:586 +msgid "Cannot get file contents of a Folder" +msgstr "Kan ikke hente filinnholdet i en mappe" + +#: frappe/printing/page/print/print.js:884 +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:1134 +msgid "Cannot import table with more than 5000 rows." +msgstr "Kan ikke importere tabell med mer enn 5000 rader." + +#: frappe/model/document.py:1105 +msgid "Cannot link cancelled document: {0}" +msgstr "Kan ikke lenke til avbrutt dokument: {0}" + +#: frappe/model/mapper.py:175 +msgid "Cannot map because following condition fails:" +msgstr "Kan ikke mappe fordi følgende betingelse mislykkes:" + +#: frappe/core/doctype/data_import/importer.py:971 +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 +msgid "Cannot move row" +msgstr "Kan ikke flytte rad" + +#: frappe/public/js/frappe/views/reports/report_view.js:932 +msgid "Cannot remove ID field" +msgstr "Kan ikke fjerne ID-feltet" + +#: frappe/core/page/permission_manager/permission_manager.py:132 +msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" +msgstr "Kan ikke angi tillatelsen «Rapporter» hvis tillatelsen «Bare hvis oppretter» er angitt" + +#: frappe/email/doctype/notification/notification.py:235 +msgid "Cannot set Notification with event {0} on Document Type {1}" +msgstr "Kan ikke angi varsling med hendelse {0} på dokumenttype (DocType) {1}" + +#: frappe/core/doctype/docshare/docshare.py:67 +msgid "Cannot share {0} with submit permission as the doctype {1} is not submittable" +msgstr "Kan ikke dele {0} med registreringstillatelse ettersom dokumenttypen (DocType) {1} ikke kan registreres" + +#: frappe/public/js/frappe/list/bulk_operations.js:291 +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 +msgid "Cannot update {0}" +msgstr "Kan ikke oppdatere {0}" + +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." +msgstr "Kan ikke bruke underspørsmål her." + +#: frappe/model/db_query.py:1168 +msgid "Cannot use {0} in order/group by" +msgstr "Kan ikke bruke {0} i rekkefølge/gruppe etter" + +#: frappe/public/js/frappe/list/bulk_operations.js:297 +msgid "Cannot {0} {1}." +msgstr "Kan ikke {0} {1}." + +#: frappe/utils/password_strength.py:181 +msgid "Capitalization doesn't help very much." +msgstr "Store bokstaver hjelper ikke noe særlig." + +#: frappe/public/js/frappe/ui/capture.js:294 +msgid "Capture" +msgstr "Ta bilde" + +#. Label of the card (Link) field in DocType 'Number Card Link' +#: frappe/desk/doctype/number_card_link/number_card_link.json +msgid "Card" +msgstr "Kort" + +#. Option for the 'Type' (Select) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Card Break" +msgstr "Kortskille" + +#: frappe/public/js/frappe/views/reports/query_report.js:262 +msgid "Card Label" +msgstr "Kortetikett" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:262 +msgid "Card Links" +msgstr "Kortlenker" + +#. Label of the cards (Table) field in DocType 'Dashboard' +#: frappe/desk/doctype/dashboard/dashboard.json +msgid "Cards" +msgstr "Kort" + +#. Label of the category (Data) field in DocType 'Desktop Icon' +#. Label of the category (Link) field in DocType 'Help Article' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/public/js/frappe/views/interaction.js:72 +#: frappe/website/doctype/help_article/help_article.json +msgid "Category" +msgstr "Kategori" + +#. Label of the category_description (Text) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json +msgid "Category Description" +msgstr "Kategoribeskrivelse" + +#. Label of the category_name (Data) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json +msgid "Category Name" +msgstr "Kategorinavn" + +#. Option for the 'Align' (Select) field in DocType 'Letter Head' +#. Option for the 'Text Align' (Select) field in DocType 'Web Page' +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Center" +msgstr "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" +msgstr "Endre" + +#: frappe/tests/test_translate.py:112 +msgctxt "Coins" +msgid "Change" +msgstr "Vekslepenger" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:38 +msgid "Change Image" +msgstr "Endre bilde" + +#. 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 "Endre etikett (via egendefinert oversettelse)" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:45 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:141 +msgid "Change Letter Head" +msgstr "Endre brevhode" + +#. Label of the change_password (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Change Password" +msgstr "Endre passord" + +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:27 +msgid "Change Print Format" +msgstr "Endre utskriftsformat" + +#. Description of the 'Update Series Counter' (Section Break) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Change the starting / current sequence number of an existing series.
    \n\n" +"Warning: Incorrectly updating counters can prevent documents from getting created." +msgstr "Endre start-/gjeldende sekvensnummer for en eksisterende serie.
    \n\n" +"Advarsel: Feil oppdatering av tellere kan forhindre at dokumenter opprettes." + +#. Label of the changed_at (Datetime) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Changed at" +msgstr "Endret på" + +#. Label of the changed_by (Link) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Changed by" +msgstr "Endret av" + +#. Name of a DocType +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +msgid "Changelog Feed" +msgstr "Endringslogg" + +#. Label of the changed_values (HTML) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Changes" +msgstr "Endringer" + +#: frappe/email/doctype/email_domain/email_domain.js:5 +msgid "Changing any setting will reflect on all the email accounts associated with this domain." +msgstr "Hvis du endrer en innstilling, vil det påvirke alle e-postkontoer som er knyttet til dette domenet." + +#: frappe/core/doctype/system_settings/system_settings.js:67 +msgid "Changing rounding method on site with data can result in unexpected behaviour." +msgstr "Endring av avrundingsmetode på stedet med data kan føre til uventet oppførsel." + +#. Label of the channel (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Channel" +msgstr "Kanel" + +#. Label of the chart (Link) field in DocType 'Dashboard Chart Link' +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Chart" +msgstr "Diagram" + +#. Label of the chart_config (Code) field in DocType 'Dashboard Settings' +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +msgid "Chart Configuration" +msgstr "Konfigurasjon av diagram" + +#. Label of the chart_name (Data) field in DocType 'Dashboard Chart' +#. Label of the chart_name (Link) field in DocType 'Workspace Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/workspace_chart/workspace_chart.json +#: frappe/public/js/frappe/views/reports/query_report.js:289 +#: frappe/public/js/frappe/widgets/widget_dialog.js:137 +msgid "Chart Name" +msgstr "Diagram-navn" + +#. Label of the chart_options (Code) field in DocType 'Dashboard' +#. Label of the chart_options_section (Section Break) field in DocType +#. 'Dashboard Chart' +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Chart Options" +msgstr "Alternativer for diagram" + +#. Label of the source (Link) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Chart Source" +msgstr "Kilde for diagram" + +#. Label of the chart_type (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/views/reports/report_view.js:510 +msgid "Chart Type" +msgstr "Diagramtype" + +#. Label of the charts (Table) field in DocType 'Dashboard' +#. Label of the charts (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/workspace/workspace.json +msgid "Charts" +msgstr "Diagrammer" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Chat" +msgstr "Chat" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Check" +msgstr "Marker" + +#: frappe/integrations/doctype/webhook/webhook.py:99 +msgid "Check Request URL" +msgstr "Sjekk forespørsels-URL" + +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 +msgid "Check columns to select, drag to set order." +msgstr "Marker kolonnene du vil velge, dra for å angi rekkefølge." + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 +msgid "Check the Error Log for more information: {0}" +msgstr "Sjekk feilloggen for mer informasjon: {0}" + +#: frappe/website/doctype/website_settings/website_settings.js:147 +msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it." +msgstr "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." + +#. Description of the 'User must always select' (Check) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Check this if you want to force the user to select a series before saving. There will be no default if you check this." +msgstr "Marker denne hvis du vil tvinge brukeren til å velge en serie før du lagrer. Det vil ikke være noen standard hvis du markerer dette." + +#. Description of the 'Show Full Number' (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." +msgstr "Merk av for å vise hele tallverdien (f.eks. 1 234 567 i stedet for 1,2 millioner)." + +#: frappe/public/js/frappe/desk.js:235 +msgid "Checking one moment" +msgstr "Sjekker ett øyeblikk" + +#: frappe/website/doctype/website_settings/website_settings.js:140 +msgid "Checking this will enable tracking page views for blogs, web pages, etc." +msgstr "Hvis du merker av for dette, kan du spore sidevisninger for blogger, nettsider osv." + +#. Description of the 'Hide Custom DocTypes and Reports' (Check) field in +#. DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Checking this will hide custom doctypes and reports cards in Links section" +msgstr "Hvis du merker av for dette, skjules egendefinerte dokumenttyper (DocType) og rapportkort i Links-delen" + +#: frappe/website/doctype/web_page/web_page.js:78 +msgid "Checking this will publish the page on your website and it'll be visible to everyone." +msgstr "Hvis du merker av for dette, publiseres siden på nettstedet ditt, og den blir synlig for alle." + +#: frappe/website/doctype/web_page/web_page.js:104 +msgid "Checking this will show a text area where you can write custom javascript that will run on this page." +msgstr "Hvis du merker av for dette, vises et tekstområde der du kan skrive egendefinert javascript som skal kjøres på denne siden." + +#: frappe/www/list.py:85 +msgid "Child DocTypes are not allowed" +msgstr "Underordnede dokumenttype (DocType) er ikke tillatt" + +#. Label of the child_doctype (Data) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Child Doctype" +msgstr "Underordnet dokumenttype (DocType)" + +#: frappe/core/doctype/doctype/doctype.py:1648 +msgid "Child Table {0} for field {1}" +msgstr "Underordnet tabell {0} for feltet {1}" + +#. Description of the 'Is Child Table' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:53 +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:662 +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." + +#: frappe/public/js/frappe/widgets/widget_dialog.js:651 +msgid "Choose Existing Card or create New Card" +msgstr "Velg eksisterende kort eller opprett nytt kort" + +#: frappe/public/js/frappe/views/workspace/workspace.js:571 +msgid "Choose a block or continue typing" +msgstr "Velg en blokk eller fortsett å skrive" + +#: frappe/public/js/form_builder/components/controls/DataControl.vue:18 +#: frappe/public/js/frappe/form/controls/color.js:5 +msgid "Choose a color" +msgstr "Velg en farge" + +#: frappe/public/js/form_builder/components/controls/DataControl.vue:21 +#: frappe/public/js/frappe/form/controls/icon.js:5 +msgid "Choose an icon" +msgstr "Velg et ikon" + +#. Description of the 'Two Factor Authentication method' (Select) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Choose authentication method to be used by all users" +msgstr "Velg autentiseringsmetode som skal brukes av alle brukere" + +#. 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 +msgid "City" +msgstr "Poststed" + +#. Label of the city (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "City/Town" +msgstr "By/sted" + +#: frappe/core/doctype/recorder/recorder_list.js:12 +#: frappe/public/js/frappe/form/controls/attach.js:16 +msgid "Clear" +msgstr "Tøm" + +#: frappe/public/js/frappe/views/communication.js:438 +msgid "Clear & Add Template" +msgstr "Fjern og legg til mal" + +#: frappe/public/js/frappe/views/communication.js:114 +msgid "Clear & Add template" +msgstr "Fjern og legg til mal" + +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "Fjern alt" + +#: frappe/public/js/frappe/list/list_view.js:2112 +msgctxt "Button in list view actions menu" +msgid "Clear Assignment" +msgstr "Slett oppgave" + +#: frappe/public/js/frappe/ui/keyboard.js:287 +msgid "Clear Cache and Reload" +msgstr "Tøm hurtigbufferen og last inn på nytt" + +#: frappe/core/doctype/error_log/error_log_list.js:12 +msgid "Clear Error Logs" +msgstr "Tøm feillogger" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:299 +msgid "Clear Filters" +msgstr "Tøm filtere" + +#. Label of the days (Int) field in DocType 'Logs To Clear' +#: frappe/core/doctype/logs_to_clear/logs_to_clear.json +msgid "Clear Logs After (days)" +msgstr "Tøm logger etter (dager)" + +#: frappe/core/doctype/user_permission/user_permission_list.js:144 +msgid "Clear User Permissions" +msgstr "Slett brukertillatelser" + +#: frappe/public/js/frappe/views/communication.js:439 +msgid "Clear the email message and add the template" +msgstr "Fjern e-postmeldingen og legg til malen" + +#: frappe/website/doctype/web_page/web_page.py:215 +msgid "Clearing end date, as it cannot be in the past for published pages." +msgstr "Slutt­datoen nullstilles, siden den ikke kan være i fortiden for publiserte sider." + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:194 +msgid "Click On Customize to add your first widget" +msgstr "Klikk på Tilpass for å legge til din første widget" + +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "Klikk nedenfor for å komme i gang:" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 +msgid "Click here" +msgstr "Klikk her" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 +msgid "Click on a file to select it." +msgstr "Klikk på en fil for å velge den." + +#: frappe/templates/emails/login_with_email_link.html:19 +msgid "Click on the button to log in to {0}" +msgstr "Klikk på knappen for å logge inn på {0}" + +#: frappe/templates/emails/data_deletion_approval.html:2 +msgid "Click on the link below to approve the request" +msgstr "Klikk på lenken nedenfor for å godkjenne forespørselen" + +#: frappe/templates/emails/new_user.html:7 +msgid "Click on the link below to complete your registration and set a new password" +msgstr "Klikk på lenken nedenfor for å fullføre registreringen og angi et nytt passord" + +#: frappe/templates/emails/download_data.html:3 +msgid "Click on the link below to download your data" +msgstr "Klikk på lenken nedenfor for å laste ned dataene dine" + +#: frappe/templates/emails/delete_data_confirmation.html:4 +msgid "Click on the link below to verify your request" +msgstr "Klikk på lenken nedenfor for å bekrefte forespørselen din" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:118 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:41 +#: frappe/website/doctype/website_settings/website_settings.py:161 +msgid "Click on {0} to generate Refresh Token." +msgstr "Klikk på {0} for å generere oppdateringstoken." + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 +#: frappe/desk/doctype/number_card/number_card.js:222 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:99 +#: frappe/website/doctype/web_form/web_form.js:236 +msgid "Click table to edit" +msgstr "Klikk på tabellen for å redigere" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 +#: frappe/desk/doctype/number_card/number_card.js:419 +msgid "Click to Set Dynamic Filters" +msgstr "Klikk for å angi dynamiske filtre" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 +#: frappe/desk/doctype/number_card/number_card.js:278 +#: frappe/website/doctype/web_form/web_form.js:262 +msgid "Click to Set Filters" +msgstr "Klikk for å angi filtre" + +#: frappe/public/js/frappe/list/list_view.js:741 +msgid "Click to sort by {0}" +msgstr "Klikk for å sortere etter {0}" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Clicked" +msgstr "Klikket" + +#. 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" + +#. Label of the client_code_section (Section Break) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Client Code" +msgstr "Klientkode" + +#. Label of the sb_client_credentials_section (Section Break) field in DocType +#. 'Connected App' +#. Label of the client_credentials (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Client Credentials" +msgstr "Klientlegitimasjon" + +#. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' +#. Label of the client_id (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Client ID" +msgstr "Klient-ID" + +#. Label of the client_id (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Client Id" +msgstr "Klient-ID" + +#. 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 "Klientinformasjon" + +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "Klientmetadata" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#. Label of the client_script (Code) field in DocType 'DocType Layout' +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/website/doctype/web_page/web_page.js:103 +msgid "Client Script" +msgstr "Klientskript" + +#. Label of the client_secret (Password) field in DocType 'Connected App' +#. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' +#. Label of the client_secret (Password) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Client Secret" +msgstr "Klienthemmelighet" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "Grunnleggende klienthemmelighet" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "Klienthemmelighet (POST)" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "Klient-URI" + +#. Label of the client_urls (Section Break) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Client URLs" +msgstr "Klient-URLer" + +#. Label of the client_script (Code) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Client script" +msgstr "Klientskript" + +#: frappe/core/doctype/communication/communication.js:39 +#: frappe/desk/doctype/todo/todo.js:23 +#: frappe/public/js/frappe/form/form_tour.js:17 +#: frappe/public/js/frappe/ui/messages.js:251 +#: frappe/website/js/bootstrap-4.js:24 +msgid "Close" +msgstr "Lukk" + +#. Label of the close_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Close Condition" +msgstr "Lukk betingelse" + +#: frappe/public/js/form_builder/components/FieldProperties.vue:79 +msgid "Close properties" +msgstr "Lukk egenskaper" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType 'ToDo' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +msgid "Closed" +msgstr "Lukket" + +#: frappe/templates/discussions/comment_box.html:25 +#: frappe/templates/discussions/reply_section.html:53 +#: frappe/templates/discussions/topic_modal.html:11 +msgid "Cmd+Enter to add comment" +msgstr "Cmd+Enter for å legge til kommentar" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the code (Data) field in DocType 'Country' +#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/geo/doctype/country/country.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Code" +msgstr "Kode" + +#. 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 "Kodeutfordring" + +#. Label of the code_editor_type (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Code Editor Type" +msgstr "Type koderedigerer" + +#. Label of the code_challenge_method (Select) field in DocType 'OAuth +#. Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Code challenge method" +msgstr "Metode for Code Challenge" + +#: frappe/public/js/frappe/form/form_tour.js:276 +#: frappe/public/js/frappe/ui/sidebar.html:11 +#: frappe/public/js/frappe/widgets/base_widget.js:159 +msgid "Collapse" +msgstr "Fold sammen alle" + +#: frappe/public/js/frappe/form/controls/code.js:184 +msgctxt "Shrink code field." +msgid "Collapse" +msgstr "Fold sammen kodefeltet" + +#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/treeview.js:123 +msgid "Collapse All" +msgstr "Fold sammen alle" + +#. Label of the collapsible (Check) field in DocType 'DocField' +#. Label of the collapsible (Check) field in DocType 'Custom Field' +#. Label of the collapsible (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Collapsible" +msgstr "Sammenfoldbar" + +#. Label of the collapsible_depends_on (Code) field in DocType 'Custom Field' +#. Label of the collapsible_depends_on (Code) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Collapsible Depends On" +msgstr "Sammenfoldbarhet avhenger av" + +#. Label of the collapsible_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Collapsible Depends On (JS)" +msgstr "Sammenfoldbarhet avhenger av (JS)" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the color (Data) field in DocType 'DocType' +#. Label of the color (Select) field in DocType 'DocType State' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the color (Color) field in DocType 'Dashboard Chart' +#. Label of the color (Color) field in DocType 'Dashboard Chart Field' +#. Label of the color (Data) field in DocType 'Desktop Icon' +#. Label of the color (Color) field in DocType 'Event' +#. Label of the color (Color) field in DocType 'Number Card' +#. Label of the color (Color) field in DocType 'ToDo' +#. Label of the color (Color) field in DocType 'Workspace Shortcut' +#. Name of a DocType +#. Label of the color (Color) field in DocType 'Color' +#. Label of the color (Color) field in DocType 'Social Link Settings' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/views/reports/query_report.js:1241 +#: frappe/public/js/frappe/widgets/widget_dialog.js:546 +#: frappe/public/js/frappe/widgets/widget_dialog.js:694 +#: frappe/website/doctype/color/color.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Color" +msgstr "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/public/js/form_builder/components/Section.vue:270 +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8 +msgid "Column" +msgstr "Kolonne" + +#: frappe/core/doctype/report/boilerplate/controller.py:28 +msgid "Column 1" +msgstr "Kolonne 1" + +#: frappe/core/doctype/report/boilerplate/controller.py:33 +msgid "Column 2" +msgstr "Kolonne 2" + +#: frappe/desk/doctype/kanban_board/kanban_board.py:84 +msgid "Column {0} already exist." +msgstr "Kolonnen {0} finnes allerede." + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Column Break" +msgstr "Kolonneskille" + +#: frappe/core/doctype/data_export/exporter.py:140 +msgid "Column Labels:" +msgstr "Kolonneetiketter:" + +#. Label of the column_name (Data) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/data_export/exporter.py:25 +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Column Name" +msgstr "Kolonnenavn" + +#: frappe/desk/doctype/kanban_board/kanban_board.py:45 +msgid "Column Name cannot be empty" +msgstr "Kolonnenavnet kan ikke være tomt" + +#: frappe/public/js/frappe/form/grid_row.js:455 +msgid "Column Width" +msgstr "Kolonnebredde" + +#: frappe/public/js/frappe/form/grid_row.js:662 +msgid "Column width cannot be zero." +msgstr "Kolonnebredden kan ikke være null." + +#: frappe/core/doctype/data_import/data_import.js:380 +msgid "Column {0}" +msgstr "Kolonne {0}" + +#. Label of the columns (Int) field in DocType 'DocField' +#. Label of the columns_section (Section Break) field in DocType 'Report' +#. Label of the columns (Table) field in DocType 'Report' +#. Label of the columns (Int) field in DocType 'Custom Field' +#. Label of the columns (Int) field in DocType 'Customize Form Field' +#. Label of the columns (Table) field in DocType 'Kanban Board' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report/report.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +msgid "Columns" +msgstr "Kolonner" + +#. Label of the columns (HTML Editor) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Columns / Fields" +msgstr "Kolonner / Felt" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 +msgid "Columns based on" +msgstr "Kolonner basert på" + +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 +msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" +msgstr "Kombinasjon av tildelingstype ({0}) og svartype ({1}) er ikke tillatt." + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Comm10E" +msgstr "Comm10E" + +#. Name of a DocType +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/version/version_view.html:3 +#: frappe/public/js/frappe/form/controls/comment.js:9 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:237 +#: frappe/templates/includes/comments/comments.html:34 +msgid "Comment" +msgstr "Kommentar" + +#. Label of the comment_by (Data) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Comment By" +msgstr "Kommentar av" + +#. Label of the comment_email (Data) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Comment Email" +msgstr "Kommentar e-post" + +#. Label of the comment_type (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Comment Type" +msgstr "Kommentartype" + +#: frappe/desk/form/utils.py:58 +msgid "Comment can only be edited by the owner" +msgstr "Kommentaren kan bare redigeres av eieren" + +#: frappe/desk/form/utils.py:75 +msgid "Comment publicity can only be updated by the original author or a System Manager." +msgstr "Kommentaroffentlighet kan bare oppdateres av den opprinnelige forfatteren eller en systemansvarlig." + +#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 +#: frappe/public/js/frappe/model/meta.js:209 +#: frappe/public/js/frappe/model/model.js:135 +#: frappe/website/doctype/web_form/templates/web_form.html:129 +msgid "Comments" +msgstr "Kommentarer" + +#. 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 "Kommentarer og kommunikasjon vil bli knyttet til dette lenkede dokumentet" + +#: frappe/templates/includes/comments/comments.py:52 +msgid "Comments cannot have links or email addresses" +msgstr "Kommentarer kan ikke inneholde lenker eller e-postadresser" + +#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Commercial Rounding" +msgstr "Kommersiell avrunding" + +#. Label of the commit (Check) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "Commit" +msgstr "Commit" + +#. Label of the committed (Check) field in DocType 'Console Log' +#: frappe/desk/doctype/console_log/console_log.json +msgid "Committed" +msgstr "Committed" + +#: frappe/utils/password_strength.py:176 +msgid "Common names and surnames are easy to guess." +msgstr "Vanlige navn og etternavn er lette å gjette." + +#. Name of a DocType +#. Option for the 'Communication Type' (Select) field in DocType +#. 'Communication' +#. Label of the communication (Data) field in DocType 'Email Flag Queue' +#. Label of the communication (Link) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/tests/test_translate.py:35 frappe/tests/test_translate.py:119 +msgid "Communication" +msgstr "Kommunikasjon" + +#. Name of a DocType +#: frappe/core/doctype/communication_link/communication_link.json +msgid "Communication Link" +msgstr "Kommunikasjonslenke" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Communication Logs" +msgstr "Kommunikasjonslogger" + +#. Label of the communication_type (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Communication Type" +msgstr "Type kommunikasjon" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:32 +msgid "Communication secret not set" +msgstr "Kommunikasjonshemmelighet er ikke angitt" + +#. Name of a DocType +#: frappe/website/doctype/company_history/company_history.json +#: frappe/www/about.html:29 +msgid "Company History" +msgstr "Selskapets historie" + +#. Label of the company_introduction (Text Editor) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Company Introduction" +msgstr "Selskapets introduksjon" + +#. Label of the company_name (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Company Name" +msgstr "Selskapets navn" + +#: frappe/core/doctype/server_script/server_script.js:14 +#: frappe/custom/doctype/client_script/client_script.js:56 +#: frappe/public/js/frappe/utils/diffview.js:28 +msgid "Compare Versions" +msgstr "Sammenlign versjoner" + +#: frappe/core/doctype/server_script/server_script.py:159 +msgid "Compilation warning" +msgstr "Advarsel om kompilering" + +#: frappe/website/doctype/website_theme/website_theme.py:123 +msgid "Compiled Successfully" +msgstr "Kompileringen var vellykket" + +#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/www/complete_signup.html:21 +msgid "Complete" +msgstr "Fullført" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:203 +msgid "Complete By" +msgstr "Fullført av" + +#: frappe/core/doctype/user/user.py:479 +#: frappe/templates/emails/new_user.html:10 +msgid "Complete Registration" +msgstr "Fullfør registrering!" + +#: frappe/public/js/frappe/ui/slides.js:355 +msgctxt "Finish the setup wizard" +msgid "Complete Setup" +msgstr "Fullfør oppsett" + +#. Option for the 'Status' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#. Option for the 'Status' (Select) field in DocType 'Workflow Action' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/doctype/boilerplate/controller_list.html:31 +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/desk/doctype/event/event.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/utils/goal.py:117 +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Completed" +msgstr "Fullført" + +#. 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 "Fullførte etter rolle" + +#. Label of the completed_by (Link) field in DocType 'Workflow Action' +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Completed By User" +msgstr "Fullført av bruker" + +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#: frappe/website/doctype/web_template/web_template.json +msgid "Component" +msgstr "Komponent" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:184 +msgid "Compose Email" +msgstr "Skriv epost" + +#. Option for the 'Row Format' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Compressed" +msgstr "Komprimert" + +#. Label of the condition (Select) field in DocType 'Document Naming Rule +#. Condition' +#. Label of the condition (Code) field in DocType 'Navbar Item' +#. Label of the condition (Small Text) field in DocType 'Bulk Update' +#. Label of the condition (Code) field in DocType 'Notification' +#. Label of the condition (Data) field in DocType 'Notification Recipient' +#. Label of the condition (Small Text) field in DocType 'Webhook' +#. Label of the condition (Code) field in DocType 'Workflow Transition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 +#: frappe/email/doctype/notification/notification.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/website/doctype/web_form/web_form.js:197 +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Condition" +msgstr "Betingelse" + +#. Label of the condition_json (JSON) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Condition JSON" +msgstr "Betingelses-JSON" + +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "Vilkårstype" + +#. Label of the condition_description (HTML) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Condition description" +msgstr "Beskrivelse av betingelse" + +#. Label of the conditions (Table) field in DocType 'Document Naming Rule' +#. Label of the conditions (Section Break) field in DocType 'Workflow +#. Transition' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Conditions" +msgstr "Betingelser" + +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "Konfig." + +#. Label of the configuration_section (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Configuration" +msgstr "Konfigurasjon" + +#: frappe/public/js/frappe/views/reports/report_view.js:492 +msgid "Configure Chart" +msgstr "Konfigurer diagram" + +#: frappe/public/js/frappe/form/grid_row.js:407 +msgid "Configure Columns" +msgstr "Konfigurer kolonner" + +#: frappe/core/doctype/recorder/recorder_list.js:200 +msgid "Configure Recorder" +msgstr "Konfigurer opptaker" + +#: frappe/public/js/print_format_builder/Field.vue:103 +msgid "Configure columns for {0}" +msgstr "Konfigurer kolonner for {0}" + +#. Description of the 'Amended Documents' (Section Break) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Configure how amended documents will be named.
    \n\n" +"Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
    \n\n" +"Default Naming will make the amended document to behave same as new documents." +msgstr "Konfigurer hvordan endrede dokumenter skal navngis.
    \n\n" +"Standardoppførsel er å følge en endringsteller som legger til et tall på slutten av det opprinnelige navnet som indikerer den endrede versjonen.
    \n\n" +"Standard navngiving vil gjøre at det endrede dokumentet oppfører seg på samme måte som nye dokumenter." + +#. Description of a DocType +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Configure various aspects of how document naming works like naming series, current counter." +msgstr "Konfigurer ulike aspekter av hvordan dokumentnavngivning fungerer, for eksempel nummerserie, gjeldende teller." + +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 +#: frappe/www/update-password.html:66 +msgid "Confirm" +msgstr "Bekreft" + +#: frappe/public/js/frappe/ui/messages.js:31 +msgctxt "Title of confirmation dialog" +msgid "Confirm" +msgstr "Bekreft" + +#: frappe/integrations/oauth2.py:138 +msgid "Confirm Access" +msgstr "Bekreft tilgang" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:93 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:101 +msgid "Confirm Deletion of Account" +msgstr "Bekreft sletting av konto" + +#: frappe/core/doctype/user/user.js:184 +msgid "Confirm New Password" +msgstr "Bekreft nytt passord" + +#: frappe/www/update-password.html:55 +msgid "Confirm Password" +msgstr "Bekreft passord" + +#: frappe/templates/emails/data_deletion_approval.html:6 +#: frappe/templates/emails/delete_data_confirmation.html:7 +msgid "Confirm Request" +msgstr "Bekreft forespørsel" + +#. Label of the confirmation_email_template (Link) field in DocType 'Email +#. Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Confirmation Email Template" +msgstr "Mal for bekreftelses-e-post" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 +msgid "Confirmed" +msgstr "Bekreftet" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:525 +msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." +msgstr "Gratulerer med å ha fullført moduloppsettet. Hvis du vil vite mer, kan du se dokumentasjonen her." + +#: frappe/integrations/doctype/connected_app/connected_app.js:20 +msgid "Connect to {}" +msgstr "Koble til {}" + +#. Label of the connected_app (Link) field in DocType 'Email Account' +#. Name of a DocType +#. Label of the connected_app (Link) field in DocType 'Token Cache' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Connected App" +msgstr "Tilkoblet app" + +#. Label of the connected_user (Link) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Connected User" +msgstr "Tilkoblet bruker" + +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 +msgid "Connected to QZ Tray!" +msgstr "Koblet til QZ Tray!" + +#: frappe/public/js/frappe/request.js:36 +msgid "Connection Lost" +msgstr "Tilkoblingen er brutt" + +#: frappe/templates/pages/integrations/gcalendar-success.html:3 +msgid "Connection Success" +msgstr "Tilkobling vellykket" + +#: frappe/public/js/frappe/dom.js:446 +msgid "Connection lost. Some features might not work." +msgstr "Forbindelsen ble brutt. Enkelte funksjoner fungerer kanskje ikke." + +#. Label of the connections_tab (Tab Break) field in DocType 'DocType' +#. Label of the connections_tab (Tab Break) field in DocType 'Module Def' +#. Label of the connections_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/form/dashboard.js:54 +msgid "Connections" +msgstr "Koblinger" + +#. Label of the console (Code) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "Console" +msgstr "Konsoll" + +#. Name of a DocType +#: frappe/desk/doctype/console_log/console_log.json +msgid "Console Log" +msgstr "Konsoll-logg" + +#: frappe/desk/doctype/console_log/console_log.py:24 +msgid "Console Logs can not be deleted" +msgstr "Konsoll-logger kan ikke slettes" + +#. Label of the constraints_section (Section Break) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Constraints" +msgstr "Begrensninger" + +#. Name of a DocType +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.js:113 +msgid "Contact" +msgstr "Kontakt" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
    {0}" +msgstr "Google Kalender – Kontakt/e-post ikke funnet. Deltaker ble ikke lagt til for –
    {0}" + +#. Label of the sb_01 (Section Break) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Contact Details" +msgstr "Kontaktdetaljer" + +#. Name of a DocType +#: frappe/contacts/doctype/contact_email/contact_email.json +msgid "Contact Email" +msgstr "E-postadresse for kontakt" + +#. Label of the phone_nos (Table) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Contact Numbers" +msgstr "Kontaktnummere" + +#. Name of a DocType +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Contact Phone" +msgstr "Kontakttelefon" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:291 +msgid "Contact Synced with Google Contacts." +msgstr "Kontakt synkronisert med Google Kontakter." + +#: frappe/www/contact.html:4 +msgid "Contact Us" +msgstr "Kontakt oss" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/workspace/website/website.json +msgid "Contact Us Settings" +msgstr "Innstillinger for \"Kontakt oss\"" + +#. Description of the 'Query Options' (Small Text) field in DocType 'Contact Us +#. Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." +msgstr "Kontaktalternativer, som «Salgsspørsmål, Supportspørsmål» osv., hver på en ny linje eller atskilt med komma." + +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "Kontakter" + +#: frappe/utils/change_log.py:362 +msgid "Contains {0} security fix" +msgstr "Inneholder {0} sikkerhetsoppdatering" + +#: frappe/utils/change_log.py:360 +msgid "Contains {0} security fixes" +msgstr "Inneholder {0} sikkerhetsoppdateringer" + +#. Label of the content (HTML Editor) field in DocType 'Comment' +#. Label of the content (Text Editor) field in DocType 'Note' +#. Label of the content (Long Text) field in DocType 'Workspace' +#. Label of the content (Text Editor) field in DocType 'Help Article' +#. Label of the section_title (Tab Break) field in DocType 'Web Page' +#. Label of the sb1 (Section Break) field in DocType 'Web Page' +#. Label of the content (Data) field in DocType 'Web Page View' +#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/utils/utils.js:1782 +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:41 +msgid "Content" +msgstr "Innhold" + +#. Label of the content_hash (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Content Hash" +msgstr "Innholdshash" + +#. Label of the content_type (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Content Type" +msgstr "Innholdstype" + +#: frappe/desk/doctype/workspace/workspace.py:86 +msgid "Content data shoud be a list" +msgstr "Innholdsdataene bør være en liste" + +#: frappe/website/doctype/web_page/web_page.js:91 +msgid "Content type for building the page" +msgstr "Innholdstype for oppbygging av siden" + +#. Label of the context (Data) field in DocType 'Translation' +#. Label of the context_section (Section Break) field in DocType 'Web Page' +#: frappe/core/doctype/translation/translation.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Context" +msgstr "Kontekst" + +#. Label of the context_script (Code) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Context Script" +msgstr "Kontekstskript" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:204 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:232 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:272 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:312 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:361 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:383 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:423 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:531 +msgid "Continue" +msgstr "Fortsett" + +#. Label of the contributed (Check) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Contributed" +msgstr "Bidratt" + +#. Label of the contribution_docname (Data) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Contribution Document Name" +msgstr "Navn på bidragsdokument" + +#. Label of the contribution_status (Select) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Contribution Status" +msgstr "Bidragsstatus" + +#. 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 "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:1036 +msgid "Copied to clipboard." +msgstr "Kopier til utklippstavlen" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:93 +msgid "Copy Link" +msgstr "Kopier lenke" + +#: frappe/website/doctype/web_form/web_form.js:29 +msgid "Copy embed code" +msgstr "Kopier innbyggingskode" + +#: frappe/public/js/frappe/request.js:621 +msgid "Copy error to clipboard" +msgstr "Kopier feil til utklippstavlen" + +#: frappe/public/js/frappe/form/toolbar.js:507 +msgid "Copy to Clipboard" +msgstr "Kopier til utklippstavlen" + +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "Kopier token til utklippstavle" + +#. Label of the copyright (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Copyright" +msgstr "Opphavsrett" + +#: frappe/custom/doctype/customize_form/customize_form.py:125 +msgid "Core DocTypes cannot be customized." +msgstr "Kjerne-dokumenttyper (DocType) kan ikke tilpasses." + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:36 +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:660 +msgid "Correct version :" +msgstr "Riktig versjon:" + +#: frappe/email/smtp.py:78 +msgid "Could not connect to outgoing email server" +msgstr "Kunne ikke koble til serveren for utgående e-post" + +#: frappe/model/document.py:1101 +msgid "Could not find {0}" +msgstr "Kunne ikke finne {0}" + +#: frappe/core/doctype/data_import/importer.py:933 +msgid "Could not map column {0} to field {1}" +msgstr "Kunne ikke tilordne kolonne {0} til felt {1}" + +#: frappe/database/query.py:566 +msgid "Could not parse field: {0}" +msgstr "Kunne ikke analysere feltet: {0}" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:234 +msgid "Could not start up:" +msgstr "Kunne ikke starte opp:" + +#: frappe/public/js/frappe/web_form/web_form.js:383 +msgid "Couldn't save, please check the data you have entered" +msgstr "Kunne ikke lagre. Sjekk dataene du har skrevet inn." + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#. Label of the count (Int) field in DocType 'System Health Report Workers' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +#: frappe/public/js/frappe/ui/group_by/group_by.js:19 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 +#: frappe/workflow/doctype/workflow/workflow.js:162 +msgid "Count" +msgstr "Antall" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:540 +msgid "Count Customizations" +msgstr "Egendefinering av teller" + +#. Label of the section_break_5 (Section Break) field in DocType 'Workspace +#. Shortcut' +#. Label of the stats_filter (Code) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:525 +msgid "Count Filter" +msgstr "Filter for telling" + +#: frappe/public/js/frappe/form/dashboard.js:509 +msgid "Count of linked documents" +msgstr "Antall lenkede dokumenter" + +#. Label of the counter (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Counter" +msgstr "Teller" + +#. Label of the country (Link) field in DocType 'Address' +#. Label of the country (Link) field in DocType 'Address Template' +#. Label of the country (Link) field in DocType 'System Settings' +#. Name of a DocType +#. Label of the country (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/geo/doctype/country/country.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Country" +msgstr "Land" + +#: frappe/utils/__init__.py:132 +msgid "Country Code Required" +msgstr "Landskode er påkrevd" + +#. Label of the country_name (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "Country Name" +msgstr "Landsnavn" + +#. Label of the county (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "County" +msgstr "Fylke" + +#: frappe/public/js/frappe/utils/number_systems.js:23 +#: frappe/public/js/frappe/utils/number_systems.js:45 +msgctxt "Number system" +msgid "Cr" +msgstr "Kredit" + +#. Label of the create (Check) field in DocType 'Custom DocPerm' +#. Label of the create (Check) field in DocType 'DocPerm' +#. Label of the create (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/communication/communication.js:117 +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 +#: frappe/public/js/frappe/form/reminders.js:49 +#: frappe/public/js/frappe/views/file/file_view.js:112 +#: frappe/public/js/frappe/views/interaction.js:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 +#: frappe/public/js/frappe/views/workspace/workspace.js:469 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:46 +msgid "Create" +msgstr "Opprett" + +#: frappe/core/doctype/doctype/doctype_list.js:103 +msgid "Create & Continue" +msgstr "Opprett og fortsett" + +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:49 +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 +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:1200 +msgid "Create Chart" +msgstr "Opprett diagram" + +#: frappe/public/js/form_builder/components/controls/TableControl.vue:62 +msgid "Create Child Doctype" +msgstr "Opprett underordnet dokumenttype (DocType)" + +#. Label of the create_contact (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Create Contacts from Incoming Emails" +msgstr "Opprett kontakter fra innkommende e-poster" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Create Entry" +msgstr "Opprett oppføring" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:59 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:195 +msgid "Create Letter Head" +msgstr "Lag brevhode" + +#. 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 "Opprett logg" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:41 +#: frappe/public/js/frappe/views/treeview.js:378 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:41 +msgid "Create New" +msgstr "Opprett ny" + +#: frappe/public/js/frappe/list/list_view.js:514 +msgctxt "Create a new document from list view" +msgid "Create New" +msgstr "Opprett ny" + +#: frappe/core/doctype/doctype/doctype_list.js:101 +msgid "Create New DocType" +msgstr "Opprett ny dokumenttype (DocType)" + +#: frappe/public/js/frappe/list/list_view_select.js:204 +msgid "Create New Kanban Board" +msgstr "Opprett nytt Kanban-board" + +#: frappe/core/doctype/user/user.js:264 +msgid "Create User Email" +msgstr "Opprett bruker-e-post" + +#: frappe/printing/page/print_format_builder/print_format_builder_start.html:16 +msgid "Create a New Format" +msgstr "Opprett et nytt format" + +#: frappe/public/js/frappe/form/reminders.js:9 +msgid "Create a Reminder" +msgstr "Opprett en påminnelse" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 +msgid "Create a new ..." +msgstr "Opprett en ny ..." + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:156 +msgid "Create a new record" +msgstr "Opprett en ny post" + +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 +#: frappe/public/js/frappe/form/link_selector.js:139 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 +msgid "Create a new {0}" +msgstr "Opprett en ny {0}" + +#: frappe/www/login.html:162 +msgid "Create a {0} Account" +msgstr "Opprett en {0} -konto" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 +msgid "Create or Edit Print Format" +msgstr "Opprett eller rediger utskriftsformat" + +#: frappe/workflow/page/workflow_builder/workflow_builder.js:34 +msgid "Create or Edit Workflow" +msgstr "Opprett eller rediger arbeidsflyt" + +#: frappe/public/js/frappe/list/list_view.js:509 +msgid "Create your first {0}" +msgstr "Opprett din første {0}" + +#: frappe/workflow/doctype/workflow/workflow.js:16 +msgid "Create your workflow visually using the Workflow Builder." +msgstr "Opprett din arbeidsflyt visuelt med arbeidsflytbyggeren." + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/views/file/file_view.js:370 +msgid "Created" +msgstr "Opprettet" + +#. Label of the created_at (Datetime) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Created At" +msgstr "Opprettet den" + +#: frappe/model/meta.py:58 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:73 +#: frappe/public/js/frappe/model/meta.js:206 +#: frappe/public/js/frappe/model/model.js:123 +msgid "Created By" +msgstr "Opprettet av" + +#: frappe/workflow/doctype/workflow/workflow.py:65 +msgid "Created Custom Field {0} in {1}" +msgstr "Opprettet egendefinert felt {0} i {1}" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241 +#: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:53 +#: frappe/public/js/frappe/model/meta.js:201 +#: frappe/public/js/frappe/model/model.js:125 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:479 +msgid "Created On" +msgstr "Opprettet den" + +#: frappe/public/js/frappe/desk.js:517 +#: frappe/public/js/frappe/views/treeview.js:393 +msgid "Creating {0}" +msgstr "Oppretter {0}" + +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:41 +msgid "Creation of this document is only permitted in developer mode." +msgstr "Oppretting av dette dokumentet er bare tillatt i utviklermodus." + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Cron" +msgstr "Cron" + +#. Label of the cron_format (Data) field in DocType 'Scheduled Job Type' +#. Label of the cron_format (Data) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Cron Format" +msgstr "Cron-format" + +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62 +msgid "Cron format is required for job types with Cron frequency." +msgstr "Cron-format er påkrevd for jobbtyper med Cron-frekvens." + +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:34 +msgid "Crop" +msgstr "Beskjær" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Ctrl + Down" +msgstr "Ctrl + ned" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Ctrl + Up" +msgstr "Ctrl + opp" + +#: frappe/templates/includes/comments/comments.html:32 +msgid "Ctrl+Enter to add comment" +msgstr "Ctrl+Enter for å legge til kommentar" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Label of the currency (Link) field in DocType 'System Settings' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the currency (Link) field in DocType 'Dashboard Chart' +#. Label of the currency (Link) field in DocType 'Number Card' +#. Name of a DocType +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:414 +#: frappe/geo/doctype/currency/currency.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Currency" +msgstr "Valuta" + +#. Label of the currency_name (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Currency Name" +msgstr "Valutanavn" + +#. Label of the currency_precision (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Currency Precision" +msgstr "Valutapresisjon" + +#. Description of a DocType +#: frappe/geo/doctype/currency/currency.json +msgid "Currency list stores the currency value, its symbol and fraction unit" +msgstr "Valutalisten lagrer valutaverdien, dens symbol og fraksjonsenhet" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Current" +msgstr "Nåværende" + +#. 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 "Nåværende jobb-ID" + +#. 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 "Nåværende verdi" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "Current status" +msgstr "Gjeldende tilstand" + +#: frappe/public/js/frappe/form/form_viewers.js:5 +msgid "Currently Viewing" +msgstr "Ser for øyeblikket på " + +#. Label of the custom (Check) field in DocType 'DocType Action' +#. Label of the custom (Check) field in DocType 'DocType Link' +#. Label of the custom (Check) field in DocType 'DocType State' +#. Label of the custom (Check) field in DocType 'Module Def' +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Label of the custom (Check) field in DocType 'Desktop Icon' +#. Option for the 'Type' (Select) field in DocType 'Number Card' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_type/user_type_list.js:7 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/notification/notification.json +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/public/js/frappe/form/reminders.js:20 +msgid "Custom" +msgstr "Egendefinert" + +#. 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 "Egendefinert basis-URL" + +#. Label of the custom_block_name (Link) field in DocType 'Workspace Custom +#. Block' +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json +msgid "Custom Block Name" +msgstr "Egendefinert blokknavn" + +#. 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 "Egendefinerte blokker" + +#. 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 "Egendefinert CSS" + +#. Label of the custom_configuration_section (Section Break) field in DocType +#. 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Custom Configuration" +msgstr "Egendefinert konfigurasjon" + +#. Label of the custom_delimiters (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Custom Delimiters" +msgstr "Egendefinerte skilletegn" + +#. Name of a DocType +#: frappe/core/doctype/custom_docperm/custom_docperm.json +msgid "Custom DocPerm" +msgstr "Egendefinert dokumenttillatelse" + +#. 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 "Egendefinerte dokumenttyper (DocType) (velg tillatelse)" + +#: frappe/core/doctype/user_type/user_type.py:105 +msgid "Custom Document Types Limit Exceeded" +msgstr "Egendefinert dokumenttype (DocType) overskred grensen" + +#: frappe/desk/desktop.py:524 +msgid "Custom Documents" +msgstr "Egendefinerte dokumenter" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Custom Field" +msgstr "Egendefinert felt" + +#: frappe/custom/doctype/custom_field/custom_field.py:220 +msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account." +msgstr "Egendefinert felt {0} er opprettet av administratoren og kan bare slettes gjennom administratorkontoen." + +#: frappe/custom/doctype/custom_field/custom_field.py:277 +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:274 +msgid "Custom Fields cannot be added to core DocTypes." +msgstr "Tilpassede felt kan ikke legges til i kjerne-dokumenttyper (DocType)." + +#. Label of the custom_footer_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Custom Footer" +msgstr "Egendefinert Bunntekst" + +#. Label of the custom_format (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Custom Format" +msgstr "Egendefinert Format" + +#. Label of the ldap_custom_group_search (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Custom Group Search" +msgstr "Søk i egendefinert gruppe" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:122 +msgid "Custom Group Search if filled needs to contain the user placeholder {0}, eg uid={0},ou=users,dc=example,dc=com" +msgstr "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/public/js/print_format_builder/PrintFormatControls.vue:162 +msgid "Custom HTML" +msgstr "Egendefinert HTML" + +#. Name of a DocType +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +msgid "Custom HTML Block" +msgstr "Tilpasset HTML-blokk" + +#. 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 "Egendefinert HTML hjelp" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:114 +msgid "Custom LDAP Directoy Selected, please ensure 'LDAP Group Member attribute' and 'Group Object Class' are entered" +msgstr "Egendefinert LDAP Directoy Valgt, sørg for at \"LDAP Group Member attribute\" og \"Group Object Class\" er angitt" + +#. Label of the label (Data) field in DocType 'Web Form Field' +#. Label of the label (Data) field in DocType 'Web Form List Column' +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +msgid "Custom Label" +msgstr "Egendefinert etikett" + +#. Label of the custom_menu (Table) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Custom Menu Items" +msgstr "Egendefinerte menyelementer" + +#. Label of the custom_options (Code) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Custom Options" +msgstr "Egendefinerte alternativer" + +#. Label of the custom_overrides (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Custom Overrides" +msgstr "Egendefinerte overstyringer" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Custom Report" +msgstr "Egendefinerte rapporter" + +#: frappe/desk/desktop.py:525 +msgid "Custom Reports" +msgstr "Egendefinerte rapporter" + +#. Name of a DocType +#: frappe/core/doctype/custom_role/custom_role.json +msgid "Custom Role" +msgstr "Egendefinert rolle" + +#. Label of the custom_scss (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Custom SCSS" +msgstr "Egendefinert SCSS" + +#. Label of the custom_sidebar_menu (Section Break) field in DocType 'Portal +#. Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Custom Sidebar Menu" +msgstr "Egendefinert sidepanelmeny" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Custom Translation" +msgstr "Egendefinert oversettelse" + +#: frappe/custom/doctype/custom_field/custom_field.py:423 +msgid "Custom field renamed to {0} successfully." +msgstr "Egendefinert felt har endret navn til {0}." + +#: frappe/api/v2.py:148 +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}" + +#. Label of the custom (Check) field in DocType 'DocType' +#. Label of the custom (Check) field in DocType 'Website Theme' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:83 +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Custom?" +msgstr "Egendefinert?" + +#. Group in DocType's connections +#. Group in Module Def's connections +#. Label of a Card Break in the Build Workspace +#. Label of the customization_tab (Tab Break) field in DocType 'Web Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/workspace/build/build.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Customization" +msgstr "Egendefinering" + +#: frappe/public/js/frappe/views/workspace/workspace.js:358 +msgid "Customizations Discarded" +msgstr "Forkastet egendefineringer" + +#: frappe/custom/doctype/customize_form/customize_form.js:465 +msgid "Customizations Reset" +msgstr "Nullstilling av egendefineringer" + +#: frappe/modules/utils.py:96 +msgid "Customizations for {0} exported to:
    {1}" +msgstr "Egendefinering for {0} eksportert til:
    {1}" + +#: frappe/printing/page/print/print.js:184 +#: frappe/public/js/frappe/form/templates/print_layout.html:39 +#: frappe/public/js/frappe/form/toolbar.js:600 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 +msgid "Customize" +msgstr "Egendefiner" + +#: frappe/public/js/frappe/list/list_view.js:1949 +msgctxt "Button in list view menu" +msgid "Customize" +msgstr "Egendefiner" + +#: frappe/custom/doctype/customize_form/customize_form.js:89 +msgid "Customize Child Table" +msgstr "Egendefine undertabell" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:38 +msgid "Customize Dashboard" +msgstr "Egendefiner oversiktspanelet" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:33 +#: frappe/core/doctype/doctype/doctype.js:61 +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +msgid "Customize Form" +msgstr "Tilpass skjema" + +#: frappe/custom/doctype/customize_form/customize_form.js:100 +msgid "Customize Form - {0}" +msgstr "Tilpass skjema - {0}" + +#. Name of a DocType +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Customize Form Field" +msgstr "Tilpass skjemafelt" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Customize properties, naming, fields and more for standard doctypes" +msgstr "Tilpass egenskaper, navngivning, felt og mer for standard dokumenttyper (DocType)" + +#: frappe/public/js/frappe/views/file/file_view.js:144 +msgid "Cut" +msgstr "Klipp ut" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Cyan" +msgstr "Cyan" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#. Option for the 'Request Method' (Select) field in DocType 'Webhook' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/webhook/webhook.json +msgid "DELETE" +msgstr "DELETE" + +#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType' +#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "DESC" +msgstr "DESC" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "DLE" +msgstr "DLE" + +#: frappe/templates/print_formats/standard_macros.html:215 +msgid "DRAFT" +msgstr "UTKAST" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Frequency' (Select) field in DocType 'User' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:398 +#: frappe/website/report/website_analytics/website_analytics.js:23 +msgid "Daily" +msgstr "Daglig" + +#: frappe/templates/emails/upcoming_events.html:8 +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 +msgid "Daily Events should finish on the Same Day." +msgstr "Daglige hendelser skal fullføres på samme dag." + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Daily Long" +msgstr "Daglig (tung jobb)" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Daily Maintenance" +msgstr "Daglig vedlikehold" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Danger" +msgstr "Fare" + +#. Option for the 'Desk Theme' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Dark" +msgstr "Mørk" + +#. Label of the dark_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Dark Color" +msgstr "Mørk farge" + +#: frappe/public/js/frappe/ui/theme_switcher.js:65 +msgid "Dark Theme" +msgstr "Mørkt tema" + +#. Label of the dashboard (Check) field in DocType 'User' +#. Label of a Link in the Build Workspace +#. Name of a DocType +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/core/doctype/user/user.json +#: frappe/core/page/dashboard_view/dashboard_view.js:10 +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 +#: frappe/public/js/frappe/utils/utils.js:935 +msgid "Dashboard" +msgstr "Oversiktspanel" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8 +msgid "Dashboard Chart" +msgstr "Oversiktspanel-diagram" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json +msgid "Dashboard Chart Field" +msgstr "Felt for oversiktspanel-diagram" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Dashboard Chart Link" +msgstr "Lenke for oversiktspanel-diagram" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgid "Dashboard Chart Source" +msgstr "Kilde for oversiktspanel-diagram" + +#. Name of a role +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Dashboard Manager" +msgstr "Administrator for oversiktspanel" + +#. Label of the dashboard_name (Data) field in DocType 'Dashboard' +#: frappe/desk/doctype/dashboard/dashboard.json +msgid "Dashboard Name" +msgstr "Navn på oversiktspanel" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +msgid "Dashboard Settings" +msgstr "Innstillinger for oversiktspanel" + +#: frappe/public/js/frappe/list/base_list.js:204 +msgid "Dashboard View" +msgstr "Visning av oversiktspanel" + +#. Label of the tab_break_2 (Tab Break) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Dashboards" +msgstr "Oversiktspanel" + +#. Label of a Card Break in the Tools Workspace +#. Label of the data (Code) field in DocType 'Deleted Document' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Label of the data (Code) field in DocType 'Version' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the webhook_data (Table) field in DocType 'Webhook' +#. Label of the data (Code) field in DocType 'Webhook Request Log' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/deleted_document/deleted_document.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/core/doctype/version/version.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Data" +msgstr "Data" + +#: frappe/public/js/frappe/form/controls/data.js:59 +msgid "Data Clipped" +msgstr "Data klippet" + +#. Name of a DocType +#: frappe/core/doctype/data_export/data_export.json +msgid "Data Export" +msgstr "Dataeksport" + +#. Name of a DocType +#. Label of the data_import (Link) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/data_import_log/data_import_log.json +msgid "Data Import" +msgstr "Dataimport" + +#. Name of a DocType +#: frappe/core/doctype/data_import_log/data_import_log.json +msgid "Data Import Log" +msgstr "Logg for dataimport" + +#: frappe/core/doctype/data_export/exporter.py:174 +msgid "Data Import Template" +msgstr "Mal for dataimport" + +#: frappe/custom/doctype/customize_form/customize_form.py:619 +msgid "Data Too Long" +msgstr "Dataene er for lange" + +#. Label of the database (Data) field in DocType 'System Health Report' +#. Label of the database_section (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Database" +msgstr "Database" + +#. Label of the engine (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Database Engine" +msgstr "Databasemotor" + +#. Label of the database_processes_section (Section Break) field in DocType +#. 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "Database Processes" +msgstr "Databaseprosesser" + +#: frappe/public/js/frappe/doctype/index.js:38 +msgid "Database Row Size Utilization" +msgstr "Utnyttelse av radstørrelse i databasen" + +#. Name of a report +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json +msgid "Database Storage Usage By Tables" +msgstr "Bruk av databaselagring etter tabeller" + +#: frappe/custom/doctype/customize_form/customize_form.py:251 +msgid "Database Table Row Size Limit" +msgstr "Grense for radstørrelse i databasetabellen" + +#: frappe/public/js/frappe/doctype/index.js:40 +msgid "Database Table Row Size Utilization: {0}%, this limits number of fields you can add." +msgstr "Utnyttelse av radstørrelse i databasetabell: {0}%, dette begrenser antall felt du kan legge til." + +#. Label of the database_version (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Database Version" +msgstr "Databaseversjon" + +#. Label of the communication_date (Datetime) field in DocType 'Activity Log' +#. Label of the communication_date (Datetime) field in DocType 'Communication' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/report/todo/todo.py:38 +#: frappe/public/js/frappe/views/interaction.js:80 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Date" +msgstr "Dato" + +#. Label of the date_format (Select) field in DocType 'Language' +#. Label of the date_format (Select) field in DocType 'System Settings' +#. Label of the date_format (Data) field in DocType 'Country' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/geo/doctype/country/country.json +msgid "Date Format" +msgstr "Datoformat" + +#. Label of the section_break_dfrx (Section Break) field in DocType 'Audit +#. Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/public/js/frappe/widgets/chart_widget.js:237 +msgid "Date Range" +msgstr "Datointervall" + +#. Label of the date_and_number_format (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Date and Number Format" +msgstr "Dato og nummerformat" + +#: frappe/public/js/frappe/form/controls/date.js:247 +msgid "Date {0} must be in format: {1}" +msgstr "Dato {0} må være i formatet: {1}" + +#: frappe/utils/password_strength.py:129 +msgid "Dates are often easy to guess." +msgstr "Datoer er ofte lette å gjette." + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Datetime" +msgstr "Dato/Tid" + +#. Label of the day (Select) field in DocType 'Assignment Rule Day' +#. Label of the day (Select) field in DocType 'Auto Repeat Day' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/public/js/frappe/views/calendar/calendar.js:277 +msgid "Day" +msgstr "Dag" + +#. 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 "Ukedag" + +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "Dager" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Days After" +msgstr "Dager etter" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Days Before" +msgstr "Dager før" + +#. Label of the days_in_advance (Int) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Days Before or After" +msgstr "Dager før eller etter" + +#: frappe/public/js/frappe/request.js:252 +msgid "Deadlock Occurred" +msgstr "Deadlock oppstod" + +#: frappe/templates/emails/password_reset.html:1 +msgid "Dear" +msgstr "Kjære" + +#: frappe/templates/emails/administrator_logged_in.html:1 +msgid "Dear System Manager," +msgstr "Kjære systemansvarlig," + +#: frappe/templates/emails/account_deletion_notification.html:1 +#: frappe/templates/emails/delete_data_confirmation.html:1 +msgid "Dear User," +msgstr "Kjære bruker," + +#: frappe/templates/emails/download_data.html:1 +msgid "Dear {0}" +msgstr "Kjære {0}" + +#. Label of the debug_log (Code) field in DocType 'Scheduled Job Log' +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +msgid "Debug Log" +msgstr "Feilsøkingslogg" + +#: frappe/public/js/frappe/views/reports/report_utils.js:318 +msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" +msgstr "Desimalskilletegn må være '.' når sitat er satt til Ikke-numerisk" + +#: frappe/public/js/frappe/views/reports/report_utils.js:310 +msgid "Decimal Separator must be a single character" +msgstr "Desimalskilletegn må være et enkelt tegn" + +#. Label of the default (Small Text) field in DocType 'DocField' +#. Label of the default (Small Text) field in DocType 'Report Filter' +#. Label of the default (Small Text) field in DocType 'Customize Form Field' +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#. Label of the default (Data) field in DocType 'Web Form Field' +#. Label of the default (Small Text) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/templates/form_grid/fields.html:30 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Default" +msgstr "Standard" + +#: frappe/contacts/doctype/address_template/address_template.py:41 +msgid "Default Address Template cannot be deleted" +msgstr "Standard adressemal kan ikke slettes" + +#. Label of the default_amend_naming (Select) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Default Amendment Naming" +msgstr "Standard navngivning av korrigeringsforslag" + +#. Label of the default_app (Select) field in DocType 'System Settings' +#. Label of the default_app (Select) field in DocType 'User' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +msgid "Default App" +msgstr "Standardapp" + +#. Label of the default_email_template (Link) field in DocType 'DocType' +#. Label of the default_email_template (Link) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Default Email Template" +msgstr "Standard e-postmal" + +#: frappe/email/doctype/email_account/email_account_list.js:13 +msgid "Default Inbox" +msgstr "Standard innboks" + +#. Label of the default_incoming (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:224 +msgid "Default Incoming" +msgstr "Standard innkommende" + +#. Label of the is_default (Check) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Default Letter Head" +msgstr "Standard brevhode" + +#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming +#. Settings' +#. Option for the 'Default Amendment Naming' (Select) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Default Naming" +msgstr "Standard navngivning" + +#. Label of the default_outgoing (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:232 +msgid "Default Outgoing" +msgstr "Standard utgående" + +#. 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 "Standard startside for portal" + +#. 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 "Standard utskriftsformat" + +#. 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 "Standard utskriftsspråk" + +#. 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 "Standard omdirigerings-URI" + +#. Label of the default_role (Link) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Default Role at Time of Signup" +msgstr "Standardrolle ved registreringstidspunktet" + +#: frappe/email/doctype/email_account/email_account_list.js:16 +msgid "Default Sending" +msgstr "Standard sending" + +#: frappe/email/doctype/email_account/email_account_list.js:7 +msgid "Default Sending and Inbox" +msgstr "Standard sending og innboks" + +#. Label of the sort_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Default Sort Field" +msgstr "Standard sorteringsrekkefølge" + +#. Label of the sort_order (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Default Sort Order" +msgstr "Standard sorteringsrekkefølge" + +#. 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 "Standardmal for felt" + +#: frappe/website/doctype/website_theme/website_theme.js:28 +msgid "Default Theme" +msgstr "Standardtema" + +#. Label of the default_role (Link) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Default User Role" +msgstr "Standard brukerrolle" + +#. 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 "Standard brukertype" + +#. 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 "Standardverdi" + +#. 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 "Standardvisningen" + +#. Label of the default_workspace (Link) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Default Workspace" +msgstr "Standard arbeidsområde" + +#. Description of the 'Currency' (Link) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Default display currency" +msgstr "Standard visningsvaluta" + +#: frappe/core/doctype/doctype/doctype.py:1377 +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:1390 +msgid "Default value for {0} must be in the list of options." +msgstr "Standardverdien for {0} må være i listen over alternativer." + +#: frappe/core/doctype/session_default_settings/session_default_settings.py:38 +msgid "Default {0}" +msgstr "Standard {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 "Standard: «Kontakt oss»" + +#. Name of a DocType +#: frappe/core/doctype/defaultvalue/defaultvalue.json +msgid "DefaultValue" +msgstr "Standardverdi" + +#. Label of the defaults_section (Section Break) field in DocType 'DocField' +#. Label of the sb2 (Section Break) field in DocType 'User' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/user/user.json +msgid "Defaults" +msgstr "Standardverdier" + +#: frappe/email/doctype/email_account/email_account.py:243 +msgid "Defaults Updated" +msgstr "Standardverdier oppdatert" + +#. Description of a DocType +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Defines actions on states and the next step and allowed roles." +msgstr "Definerer handlinger på tilstander og neste trinn og tillatte roller." + +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "Angir hvor lenge eksporterte rapporter som sendes via e-post, skal oppbevares i systemet. Eldre filer slettes automatisk." + +#. Description of a DocType +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Defines workflow states and rules for a document." +msgstr "Definerer arbeidsflyttilstander og regler for et dokument." + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Delayed" +msgstr "Forsinket" + +#. Label of the delete (Check) field in DocType 'Custom DocPerm' +#. Label of the delete (Check) field in DocType 'DocPerm' +#. Label of the delete (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_permission/user_permission_list.js:189 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 +#: frappe/public/js/frappe/form/grid.js:66 +#: frappe/public/js/frappe/form/toolbar.js:464 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 +#: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 +#: frappe/templates/discussions/reply_card.html:35 +#: frappe/templates/discussions/reply_section.html:29 +msgid "Delete" +msgstr "Slett" + +#: frappe/public/js/frappe/list/list_view.js:2174 +msgctxt "Button in list view actions menu" +msgid "Delete" +msgstr "Slett" + +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "Slett" + +#: frappe/www/me.html:65 +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 +msgid "Delete Background Exported Reports After (Hours)" +msgstr "Slett bakgrunnseksporterte rapporter etter (timer)" + +#: frappe/public/js/form_builder/components/Section.vue:196 +msgctxt "Title of confirmation dialog" +msgid "Delete Column" +msgstr "Slett kolonne" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:10 +msgid "Delete Data" +msgstr "Slett data" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 +msgid "Delete Kanban Board" +msgstr "Slett Kanban-board" + +#: frappe/public/js/form_builder/components/Section.vue:125 +msgctxt "Title of confirmation dialog" +msgid "Delete Section" +msgstr "Slette seksjon" + +#: frappe/public/js/form_builder/components/Tabs.vue:64 +msgctxt "Title of confirmation dialog" +msgid "Delete Tab" +msgstr "Slett fane" + +#: frappe/public/js/frappe/views/reports/query_report.js:944 +msgid "Delete and Generate New" +msgstr "Slett og generer ny" + +#: frappe/public/js/form_builder/components/Section.vue:203 +msgctxt "Button text" +msgid "Delete column" +msgstr "Slett kolonne" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 +msgid "Delete comment?" +msgstr "Slett kommentar" + +#: frappe/public/js/form_builder/components/Section.vue:205 +msgctxt "Button text" +msgid "Delete entire column with fields" +msgstr "Slett hele kolonnen med felt" + +#: frappe/public/js/form_builder/components/Section.vue:134 +msgctxt "Button text" +msgid "Delete entire section with fields" +msgstr "Slett hele seksjonen med felt" + +#: frappe/public/js/form_builder/components/Tabs.vue:73 +msgctxt "Button text" +msgid "Delete entire tab with fields" +msgstr "Slett hele fanen med felt" + +#: frappe/public/js/form_builder/components/Section.vue:132 +msgctxt "Button text" +msgid "Delete section" +msgstr "Slett seksjon" + +#: frappe/public/js/form_builder/components/Tabs.vue:71 +msgctxt "Button text" +msgid "Delete tab" +msgstr "Slett fane" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:29 +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:2179 +msgctxt "Title of confirmation dialog" +msgid "Delete {0} item permanently?" +msgstr "Slette {0} element permanent?" + +#: frappe/public/js/frappe/list/list_view.js:2185 +msgctxt "Title of confirmation dialog" +msgid "Delete {0} items permanently?" +msgstr "Slette {0} elementer permanent?" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Step' +#: frappe/core/doctype/comment/comment.json +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Deleted" +msgstr "Slettet" + +#. Label of the deleted_doctype (Data) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Deleted DocType" +msgstr "Slettet dokumenttype (DocType)" + +#. Name of a DocType +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Deleted Document" +msgstr "Slettet dokument" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Deleted Documents" +msgstr "Slettede dokumenter" + +#. Label of the deleted_name (Data) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Deleted Name" +msgstr "Slettet navn" + +#: frappe/desk/reportview.py:641 +msgid "Deleted all documents successfully" +msgstr "Sletting av alle dokumenter var vellykket" + +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Slettet!" + +#: frappe/desk/reportview.py:618 +msgid "Deleting {0}" +msgstr "Sletter {0}" + +#: frappe/public/js/frappe/list/bulk_operations.js:202 +msgid "Deleting {0} records..." +msgstr "Sletter {0} oppføringer..." + +#: frappe/public/js/frappe/model/model.js:692 +msgid "Deleting {0}..." +msgstr "Sletter {0}..." + +#. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Deletion Steps" +msgstr "Slettingstrinn" + +#: frappe/core/doctype/page/page.py:110 +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 +msgid "Deletion of this document is only permitted in developer mode." +msgstr "Sletting av dette dokumentet er bare tillatt i utviklermodus." + +#. Label of the delimiter_options (Data) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Delimiter Options" +msgstr "Alternativer for skilletegn" + +#: frappe/utils/csvutils.py:76 +msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." +msgstr "Gjennkjenning av skilletegn feilet. Prøv å aktivere egendefinerte skilletegn og juster skilletegn i henhold til dataene." + +#: frappe/public/js/frappe/views/reports/report_utils.js:306 +msgid "Delimiter must be a single character" +msgstr "Skilletegn må være ett enkelt tegn" + +#. Label of the delivery_status (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Delivery Status" +msgstr "Leveringsstatus" + +#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/templates/includes/oauth_confirmation.html:17 +msgid "Deny" +msgstr "Nekt" + +#. Label of the department (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Department" +msgstr "Avdeling" + +#. Label of the dependencies (Data) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:323 +#: frappe/www/attribution.html:29 +msgid "Dependencies" +msgstr "Avhengigheter" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Dependencies & Licenses" +msgstr "Avhengigheter og lisenser" + +#. Label of the depends_on (Code) field in DocType 'Custom Field' +#. Label of the depends_on (Code) field in DocType 'Customize Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Depends On" +msgstr "Avhenger av" + +#: frappe/public/js/frappe/ui/filters/filter.js:32 +msgid "Descendants Of" +msgstr "Underordnede til" + +#: frappe/public/js/frappe/ui/filters/filter.js:33 +msgid "Descendants Of (inclusive)" +msgstr "Underordnede til (inkludert)" + +#. Label of the description (Small Text) field in DocType 'Assignment Rule' +#. Label of the description (Small Text) field in DocType 'Reminder' +#. Label of the description (Small Text) field in DocType 'DocField' +#. Label of the description (Small Text) field in DocType 'DocType' +#. Label of the description (Text) field in DocType 'Customize Form Field' +#. Label of the description (Small Text) field in DocType 'Desktop Icon' +#. Label of the description (Text Editor) field in DocType 'Event' +#. Label of the description (HTML Editor) field in DocType 'Form Tour Step' +#. Label of the description_section (Section Break) field in DocType +#. 'Onboarding Step' +#. Label of the description (Markdown Editor) field in DocType 'Onboarding +#. Step' +#. Label of the description (Small Text) field in DocType 'Tag' +#. Label of the description (Text Editor) field in DocType 'ToDo' +#. Label of the description (HTML Editor) field in DocType 'Workspace Link' +#. Label of the description (Small Text) field in DocType 'Print Heading' +#. Label of the description (Small Text) field in DocType 'UTM Medium' +#. Label of the description (Small Text) field in DocType 'UTM Source' +#. Label of the description (Text) field in DocType 'Web Form Field' +#. Label of the meta_description (Small Text) field in DocType 'Web Page' +#. Label of the description (Text) field in DocType 'Website Slideshow Item' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/todo/todo.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/report/todo/todo.py:39 +#: frappe/printing/doctype/print_heading/print_heading.json +#: frappe/public/js/frappe/form/reminders.js:44 +#: frappe/public/js/frappe/widgets/widget_dialog.js:256 +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +#: frappe/www/attribution.html:24 +msgid "Description" +msgstr "Beskrivelse" + +#. Description of the 'Description' (Section Break) field in DocType +#. 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Description to inform the user about any action that is going to be performed" +msgstr "Beskrivelse for å informere brukeren om enhver handling som skal utføres" + +#. Label of the designation (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Designation" +msgstr "Beskrivelse" + +#. Label of the desk_access (Check) field in DocType 'Role' +#: frappe/core/doctype/role/role.json +msgid "Desk Access" +msgstr "Skrivebordstilgang" + +#. Label of the desk_settings_section (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Desk Settings" +msgstr "Skrivebordsinnstillinger" + +#. Label of the desk_theme (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Desk Theme" +msgstr "Skrivebordstema" + +#. Name of a role +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_group/user_group.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Desk User" +msgstr "Desk-bruker" + +#. Name of a DocType +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Desktop Icon" +msgstr "Skrivebordsikon" + +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:225 +msgid "Desktop Icon already exists" +msgstr "Skrivebordsikonet finnes allerede" + +#. Label of the details_tab (Tab Break) field in DocType 'Module Def' +#. Label of the details (Code) field in DocType 'Scheduled Job Log' +#. Label of the details_tab (Tab Break) field in DocType 'Customize Form' +#. Label of the details (Section Break) field in DocType 'Event' +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json +#: frappe/public/js/form_builder/components/Tabs.vue:92 +#: frappe/public/js/form_builder/store.js:259 +#: frappe/public/js/form_builder/utils.js:38 +#: frappe/public/js/frappe/form/layout.js:152 +#: frappe/public/js/frappe/views/treeview.js:292 +msgid "Details" +msgstr "Detaljer" + +#. Label of the use_csv_sniffer (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Detect CSV type" +msgstr "Oppdag CSV-typen" + +#: frappe/core/page/permission_manager/permission_manager.js:494 +msgid "Did not add" +msgstr "La ikke til" + +#: frappe/core/page/permission_manager/permission_manager.js:388 +msgid "Did not remove" +msgstr "Fjernet ikke" + +#: frappe/public/js/frappe/utils/diffview.js:57 +msgid "Diff" +msgstr "Diff" + +#. 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 "Ulike \"tilstander\" som dokumentet kan befinne seg i. Som \"Åpent\", \"Venter på godkjenning\" osv." + +#. 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 "Sifre" + +#. Label of the ldap_directory_server (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Directory Server" +msgstr "Katalogserver" + +#. 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 "Deaktiver automatisk oppdatering" + +#. Label of the disable_automatic_recency_filters (Check) field in DocType +#. 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Automatic Recency Filters" +msgstr "Deaktiver automatiske filter for nylige poster" + +#. Label of the disable_change_log_notification (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Disable Change Log Notification" +msgstr "Deaktiver varsling om endringslogg" + +#. 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 "Deaktiver telling av kommentarer" + +#. Label of the disable_contact_us (Check) field in DocType 'Contact Us +#. Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Disable Contact Us Page" +msgstr "Deaktiver \"Kontakt oss\"-siden" + +#. 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 "Deaktiver telling" + +#. 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 "Deaktiver deling av dokumenter" + +#: frappe/core/doctype/report/report.js:39 +msgid "Disable Report" +msgstr "Deaktiver rapport" + +#. 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 "Deaktiver SMTP-serverautentisering" + +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "Deaktiver Scrolling" + +#. Label of the disable_sidebar_stats (Check) field in DocType 'List View +#. Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Sidebar Stats" +msgstr "Deaktiver sidefeltstatistikk" + +#: frappe/website/doctype/website_settings/website_settings.js:146 +msgid "Disable Signup for your site" +msgstr "Deaktiver påmelding for nettstedet ditt" + +#. Label of the disable_standard_email_footer (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Disable Standard Email Footer" +msgstr "Deaktiver standard bunntekst for e-post" + +#. 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 "Deaktiver varsling om systemoppdateringer" + +#. 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 "Deaktiver innlogging med brukernavn/passord" + +#. Label of the disable_signup (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Disable signups" +msgstr "Deaktiver påmelding" + +#. Label of the disabled (Check) field in DocType 'Assignment Rule' +#. Label of the disabled (Check) field in DocType 'Auto Repeat' +#. Option for the 'Status' (Select) field in DocType 'Auto Repeat' +#. Label of the disabled (Check) field in DocType 'Milestone Tracker' +#. Label of the disabled (Check) field in DocType 'Address' +#. Label of the disabled (Check) field in DocType 'Document Naming Rule' +#. Label of the disabled (Check) field in DocType 'Report' +#. Label of the disabled (Check) field in DocType 'Role' +#. Label of the disabled (Check) field in DocType 'Server Script' +#. Label of the disabled (Check) field in DocType 'Letter Head' +#. Label of the disabled (Check) field in DocType 'Print Format' +#. Label of the disabled (Check) field in DocType 'Print Style' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +#: frappe/contacts/doctype/address/address.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user_list.js:14 +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/public/js/frappe/form/templates/address_list.html:35 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 +msgid "Disabled" +msgstr "Deaktivert" + +#: frappe/email/doctype/email_account/email_account.js:300 +msgid "Disabled Auto Reply" +msgstr "Deaktivert automatisk svar" + +#: frappe/public/js/frappe/form/toolbar.js:338 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 +#: frappe/public/js/frappe/views/workspace/workspace.js:351 +#: frappe/public/js/frappe/web_form/web_form.js:193 +msgid "Discard" +msgstr "Kast" + +#: frappe/website/doctype/web_form/templates/web_form.html:44 +msgctxt "Button in web form" +msgid "Discard" +msgstr "Kast" + +#: frappe/public/js/frappe/views/communication.js:30 +msgctxt "Discard Email" +msgid "Discard" +msgstr "Kast" + +#: frappe/public/js/frappe/form/form.js:848 +msgid "Discard {0}" +msgstr "Kast {0}" + +#: frappe/public/js/frappe/web_form/web_form.js:190 +msgid "Discard?" +msgstr "Kaste?" + +#: frappe/desk/form/save.py:75 +msgid "Discarded" +msgstr "Kastet" + +#. Description of the 'Suggested Indexes' (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Disclaimer: These indexes are suggested based on data and queries performed during this recording. These suggestions may or may not help." +msgstr "Ansvarsfraskrivelse: Disse indeksene er foreslått basert på data og spørringer utført under dette opptaket. Disse forslagene kan være til hjelp, men ikke nødvendigvis." + +#. Name of a DocType +#: frappe/website/doctype/discussion_reply/discussion_reply.json +msgid "Discussion Reply" +msgstr "Svar til diskusjon" + +#. Name of a DocType +#: frappe/website/doctype/discussion_topic/discussion_topic.json +msgid "Discussion Topic" +msgstr "Emne for diskusjon" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 +#: frappe/templates/discussions/reply_card.html:16 +#: frappe/templates/discussions/reply_section.html:29 +msgid "Dismiss" +msgstr "Avvis" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:572 +msgctxt "Stop showing the onboarding widget." +msgid "Dismiss" +msgstr "Hopp over" + +#. Label of the display (Section Break) field in DocType 'DocField' +#. Label of the updates_tab (Tab Break) field in DocType 'System Settings' +#. Label of the display (Section Break) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Display" +msgstr "Vis" + +#. 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 "Visning avhenger av" + +#. Label of the depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Display Depends On (JS)" +msgstr "Visning avhenger av (JS)" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:180 +msgid "Divider" +msgstr "Skiller" + +#. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Do Not Create New User" +msgstr "Ikke opprett ny bruker" + +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Do not create new user if user with email does not exist in the system" +msgstr "Ikke opprett ny bruker hvis bruker med e-postadresse ikke finnes i systemet." + +#: frappe/public/js/frappe/form/grid.js:1195 +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 +msgid "Do not warn me again about {0}" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.js:71 +msgid "Do you still want to proceed?" +msgstr "Vil du fortsatt fortsette?" + +#: frappe/public/js/frappe/form/form.js:958 +msgid "Do you want to cancel all linked documents?" +msgstr "Vil du avbryte alle lenkede dokumenter?" + +#. Label of the webhook_docevent (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Doc Event" +msgstr "Doc Event" + +#. Label of the sb_doc_events (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Doc Events" +msgstr "Doc Events" + +#. 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 "Dokumentstatus" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocField" +msgstr "Dokumentfelt" + +#. Name of a DocType +#: frappe/core/doctype/docperm/docperm.json +msgid "DocPerm" +msgstr "DocPerm" + +#. Name of a DocType +#: frappe/core/doctype/docshare/docshare.json +msgid "DocShare" +msgstr "DocShare" + +#: frappe/workflow/doctype/workflow/workflow.js:264 +msgid "DocStatus of the following states have changed:
    {0}
    \n" +"\t\t\t\tDo you want to update the docstatus of existing documents in those states?
    \n" +"\t\t\t\tThis does not undo any effect bought in by the document's existing docstatus.\n" +"\t\t\t\t" +msgstr "\t\t\t\t\t\t\t\tDokumentstatusen for følgende tilstander er endret:
    {0}
    \n" +"\t\t\t\tVil du oppdatere dokumentstatusen til eksisterende dokumenter i disse tilstandene?
    \n" +"\t\t\t\tDette angrer ikke noen effekt som er kjøpt inn av dokumentets eksisterende dokumentstatus.\n" +"\t\t\t\t" + +#. Label of the document_type (Link) field in DocType 'Amended Document Naming +#. Settings' +#. Label of the doctype_name (Link) field in DocType 'Audit Trail' +#. Name of a DocType +#. Group in Module Def's connections +#. Label of the ref_doctype (Link) field in DocType 'Permission Inspector' +#. Label of the ref_doctype (Link) field in DocType 'Version' +#. Label of a shortcut in the Build Workspace +#. Label of the dt (Link) field in DocType 'Client Script' +#. Label of the dt (Link) field in DocType 'Custom Field' +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#. Label of the doc_type (Link) field in DocType 'Property Setter' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' +#. Label of the document_type (Link) field in DocType 'Workspace Quick List' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Label of the webhook_doctype (Link) field in DocType 'Webhook' +#. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/data_export/exporter.py:26 +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/core/doctype/version/version.json +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:15 +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:38 +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:164 +#: frappe/website/doctype/website_slideshow/website_slideshow.js:18 +msgid "DocType" +msgstr "DocType" + +#: frappe/core/doctype/doctype/doctype.py:1578 +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" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocType Action" +msgstr "Handling (DocType)" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#. Label of the doctype_event (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "DocType Event" +msgstr "Hendelse (DocType)" + +#. Name of a DocType +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +msgid "DocType Layout" +msgstr "Oppsett (DocType)" + +#. Name of a DocType +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +msgid "DocType Layout Field" +msgstr "Oppsettsfelt (DocType)" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocType Link" +msgstr "Lenke (DocType)" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocType State" +msgstr "Tilstand (DocType)" + +#. Label of the doc_view (Select) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:479 +msgid "DocType View" +msgstr "Visning av dokumenttype (DocType)" + +#: frappe/core/doctype/doctype/doctype.py:657 +msgid "DocType can not be merged" +msgstr "Dokumenttype (DocType) kan ikke slås sammen" + +#: frappe/core/doctype/doctype/doctype.py:651 +msgid "DocType can only be renamed by Administrator" +msgstr "Dokumenttype (DocType) kan bare gis nytt navn av administrator" + +#. Description of a DocType +#: frappe/core/doctype/doctype/doctype.json +msgid "DocType is a Table / Form in the application." +msgstr "En dokumenttype (DocType) er en tabell eller et skjema i applikasjonen." + +#: frappe/integrations/doctype/webhook/webhook.py:83 +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:403 +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" + +#: frappe/core/doctype/log_settings/log_settings.py:57 +msgid "DocType not supported by Log Settings." +msgstr "Dokumenttype (DocType) støttes ikke av logginnstillingene." + +#. 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 "Dokumenttypen (DocType) denne arbeidsflyten gjelder for." + +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:4 +msgid "DocType required" +msgstr "Dokumenttype (DocType) er påkrevd" + +#: frappe/modules/utils.py:175 +msgid "DocType {0} does not exist." +msgstr "Dokumenttype (DocType) {0} finnes ikke." + +#: frappe/modules/utils.py:238 +msgid "DocType {} not found" +msgstr "Dokumenttype (DocType) {} ble ikke funnet" + +#: frappe/core/doctype/doctype/doctype.py:1029 +msgid "DocType's name should not start or end with whitespace" +msgstr "Navn på dokumenttype (DocType) skal ikke begynne eller slutte med mellomrom" + +#: frappe/core/doctype/doctype/doctype.js:67 +msgid "DocTypes cannot be modified, please use {0} instead" +msgstr "Dokumenttyper (DocType) kan ikke endres, bruk {0} i stedet." + +#. Label of the ref_doctype (Link) field in DocType 'Document Follow' +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:682 +msgid "Doctype" +msgstr "DocType" + +#: frappe/core/doctype/doctype/doctype.py:1023 +msgid "Doctype name is limited to {0} characters ({1})" +msgstr "Navnet på dokumenttypen (DocType) er begrenset til {0} tegn ({1})" + +#: frappe/public/js/frappe/list/bulk_operations.js:3 +msgid "Doctype required" +msgstr "Dokumenttype (DocType) påkrevd" + +#. Label of the reference_name (Data) field in DocType 'Milestone' +#. Label of the document (Dynamic Link) field in DocType 'Audit Trail' +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#. Label of the docname (Dynamic Link) field in DocType 'Permission Inspector' +#. Label of the document (Link) field in DocType 'Notification Subscribed +#. Document' +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json +#: frappe/public/js/frappe/views/render_preview.js:42 +msgid "Document" +msgstr "Dokument" + +#. Label of the actions (Table) field in DocType 'DocType' +#. Label of the document_actions_section (Section Break) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Document Actions" +msgstr "Dokumenthandlinger" + +#. Label of the document_follow_notifications_section (Section Break) field in +#. DocType 'User' +#. Name of a DocType +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/document_follow/document_follow.json +msgid "Document Follow" +msgstr "Dokumentoppfølging" + +#: frappe/desk/form/document_follow.py:94 +msgid "Document Follow Notification" +msgstr "Varsel om dokumentoppfølging" + +#. Label of the document_name (Data) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Document Link" +msgstr "Dokumentlenke" + +#. Label of the section_break_12 (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Document Linking" +msgstr "Dokumentlenking" + +#. Label of the links (Table) field in DocType 'DocType' +#. Label of the document_links_section (Section Break) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Document Links" +msgstr "Dokumentlenker" + +#: frappe/core/doctype/doctype/doctype.py:1212 +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:1232 +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:1195 +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:1201 +msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" +msgstr "Rad #{0} for dokumentkoblinger: Tabellfeltnavn er påkrevd for interne koblinger" + +#. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' +#. Label of the share_name (Dynamic Link) field in DocType 'DocShare' +#. Label of the docname (Data) field in DocType 'Version' +#. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' +#. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_permission/user_permission_list.js:36 +#: frappe/core/doctype/version/version.json +#: frappe/desk/doctype/tag_link/tag_link.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/public/js/frappe/form/form_tour.js:62 +msgid "Document Name" +msgstr "Dokumentnavn" + +#: frappe/client.py:406 +msgid "Document Name must be a string" +msgstr "Dokumentnavnet må være en streng" + +#. Name of a DocType +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Document Naming Rule" +msgstr "Dokumentnavningsregel" + +#. Name of a DocType +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "Document Naming Rule Condition" +msgstr "Betingelse for dokumentnavningsregel" + +#. Name of a DocType +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Document Naming Settings" +msgstr "Innstillinger for dokumentnavning" + +#: frappe/model/document.py:478 +msgid "Document Queued" +msgstr "Dokumentet er i kø" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:38 +msgid "Document Restoration Summary" +msgstr "Sammendrag av dokumentgjenoppretting" + +#: frappe/core/doctype/deleted_document/deleted_document.py:68 +msgid "Document Restored" +msgstr "Dokument gjenopprettet" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:354 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:396 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:415 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:434 +msgid "Document Saved" +msgstr "Dokument lagret" + +#. Label of the enable_email_share (Check) field in DocType 'Notification +#. Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Document Share" +msgstr "Dokumentdeling" + +#. Name of a DocType +#: frappe/core/doctype/document_share_key/document_share_key.json +msgid "Document Share Key" +msgstr "Dokumentdelingsnøkkel" + +#. Label of the document_share_key_expiry (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Document Share Key Expiry (in Days)" +msgstr "Utløpstid for nøkkel til dokumentdeling (i dager)" + +#. Name of a report +#. Label of a Link in the Users Workspace +#: frappe/core/report/document_share_report/document_share_report.json +#: frappe/core/workspace/users/users.json +msgid "Document Share Report" +msgstr "Rapport for dokumentdeling" + +#. Label of the states (Table) field in DocType 'DocType' +#. Label of the document_states_section (Section Break) field in DocType +#. 'Customize Form' +#. Label of the states (Table) field in DocType 'Workflow' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Document States" +msgstr "Dokumenttilstander" + +#: frappe/model/meta.py:54 frappe/public/js/frappe/model/meta.js:202 +#: frappe/public/js/frappe/model/model.js:137 +msgid "Document Status" +msgstr "Dokumentstatus" + +#. Label of the tag (Link) field in DocType 'Tag Link' +#: frappe/desk/doctype/tag_link/tag_link.json +msgid "Document Tag" +msgstr "Dokumentstikkord" + +#. Label of the title (Data) field in DocType 'Tag Link' +#: frappe/desk/doctype/tag_link/tag_link.json +msgid "Document Title" +msgstr "Dokumenttittel" + +#. Label of the document_type (Link) field in DocType 'Assignment Rule' +#. Label of the reference_type (Link) field in DocType 'Milestone' +#. Label of the reminder_doctype (Link) field in DocType 'Reminder' +#. Label of the reference_doctype (Link) field in DocType 'Data Import' +#. Label of the share_doctype (Link) field in DocType 'DocShare' +#. Label of the document_type (Link) field in DocType 'Document Naming Rule' +#. Label of the ref_doctype (Link) field in DocType 'Session Default' +#. Label of the document_type (Link) field in DocType 'User Document Type' +#. Label of the document_type (Link) field in DocType 'User Select Document +#. Type' +#. Label of the document_type (Link) field in DocType 'DocType Layout' +#. Label of the document_type (Link) field in DocType 'Bulk Update' +#. Label of the document_type (Link) field in DocType 'Dashboard Chart' +#. Label of the document_type (Link) field in DocType 'Global Search DocType' +#. Label of the document_type (Link) field in DocType 'Notification Log' +#. Label of the document_type (Link) field in DocType 'Number Card' +#. Option for the 'Type' (Select) field in DocType 'Number Card' +#. Label of the document_type (Link) field in DocType 'Tag Link' +#. Label of the document_type (Link) field in DocType 'Notification' +#. Label of the document_type (Link) field in DocType 'Print Format Field +#. Template' +#. Label of the document_type (Data) field in DocType 'Personal Data Deletion +#. Step' +#. Label of the document_type (Link) field in DocType 'Workflow' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/session_default/session_default.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_permission/user_permission_list.js:26 +#: frappe/core/doctype/user_select_document_type/user_select_document_type.json +#: frappe/core/page/permission_manager/permission_manager.js:49 +#: frappe/core/page/permission_manager/permission_manager.js:218 +#: frappe/core/page/permission_manager/permission_manager.js:449 +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/tag_link/tag_link.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/public/js/frappe/roles_editor.js:68 +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Document Type" +msgstr "Dokumenttype (DocType)" + +#: frappe/desk/doctype/number_card/number_card.py:60 +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:149 +msgid "Document Type is not importable" +msgstr "Dokumenttypen (DocType) kan ikke importeres" + +#: frappe/permissions.py:145 +msgid "Document Type is not submittable" +msgstr "Dokumenttypen (DocType) kan ikke registreres" + +#. 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 "Dokumenttype (DocType) som skal spores" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:40 +msgid "Document Type {0} has been repeated." +msgstr "Dokumenttypen (DocType) {0} er gjentatt." + +#. Label of the user_doctypes (Table) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Document Types" +msgstr "Dokumenttyper (DocType)" + +#. 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 "Dokumenttyper (DocType) (kun utvalgte tillatelser)" + +#. 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 "Dokumenttyper (DocType) og rettigheter" + +#: frappe/core/doctype/submission_queue/submission_queue.py:163 +#: frappe/model/document.py:1959 +msgid "Document Unlocked" +msgstr "Dokument ulåst" + +#: frappe/desk/form/document_follow.py:56 +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:1302 +msgid "Document has been cancelled" +msgstr "Dokumentet er blitt avbrutt" + +#: frappe/public/js/frappe/list/list_view.js:1301 +msgid "Document has been submitted" +msgstr "Dokumentet er registrert" + +#: frappe/public/js/frappe/list/list_view.js:1300 +msgid "Document is in draft state" +msgstr "Dokumentet er i utkastmodus" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "Document is only editable by users with role" +msgstr "Dokumentet kan bare redigeres av brukere med rolle" + +#: frappe/core/doctype/communication/communication.js:182 +msgid "Document not Relinked" +msgstr "Dokumentet er ikke lenket på nytt" + +#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:155 +msgid "Document renamed from {0} to {1}" +msgstr "Dokument endret navn fra {0} til {1}" + +#: frappe/public/js/frappe/form/toolbar.js:164 +msgid "Document renaming from {0} to {1} has been queued" +msgstr "Dokumentnavnendring fra {0} til {1} er blitt satt i kø" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:397 +msgid "Document type is required to create a dashboard chart" +msgstr "Dokumenttypen (DocType) er påkrevd for å opprette et oversiktspanel-diagram" + +#: frappe/core/doctype/deleted_document/deleted_document.py:45 +msgid "Document {0} Already Restored" +msgstr "Dokument {0} allerede gjenopprettet" + +#: frappe/workflow/doctype/workflow_action/workflow_action.py:203 +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:430 +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" +msgstr "Dokumentasjonslenke" + +#. 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 for dokumentasjon" + +#: frappe/public/js/frappe/form/templates/form_dashboard.html:17 +msgid "Documents" +msgstr "Dokumenter" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:25 +msgid "Documents restored successfully" +msgstr "Gjenoppretting av dokumenter var vellykket" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:33 +msgid "Documents that failed to restore" +msgstr "Dokumenter som ikke kunne gjenopprettes" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:29 +msgid "Documents that were already restored" +msgstr "Dokumenter som allerede var gjenopprettet" + +#. Name of a DocType +#. Label of the domain (Data) field in DocType 'Domain' +#. Label of the domain (Link) field in DocType 'Has Domain' +#. Label of the domain (Link) field in DocType 'Email Account' +#: frappe/core/doctype/domain/domain.json +#: frappe/core/doctype/has_domain/has_domain.json +#: frappe/email/doctype/email_account/email_account.json +msgid "Domain" +msgstr "Domene" + +#. Label of the domain_name (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Domain Name" +msgstr "Domenenavn" + +#. Name of a DocType +#: frappe/core/doctype/domain_settings/domain_settings.json +msgid "Domain Settings" +msgstr "Domeneinnstillinger" + +#. Label of the domains_html (HTML) field in DocType 'Domain Settings' +#: frappe/core/doctype/domain_settings/domain_settings.json +msgid "Domains HTML" +msgstr "Domener (HTML)" + +#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom +#. Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" +msgstr "Ikke bruk HTML-tagger som <script> eller bare tegn som < eller >, da de kan bli brukt med vilje i dette feltet" + +#: frappe/public/js/frappe/data_import/import_preview.js:272 +msgid "Don't Import" +msgstr "Ikke importer" + +#. Label of the override_status (Check) field in DocType 'Workflow' +#. Label of the avoid_status_override (Check) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow/workflow.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Don't Override Status" +msgstr "Ikke overstyr status" + +#. Label of the mute_emails (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Don't Send Emails" +msgstr "Ikke send e-poster" + +#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'DocField' +#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize +#. Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" +msgstr "Ikke bruk HTML-tagger som <script> eller bare tegn som < eller >, da de kan bli brukt med vilje i dette feltet" + +#: frappe/www/login.html:139 frappe/www/login.html:155 +#: frappe/www/update-password.html:70 +msgid "Don't have an account?" +msgstr "Har du ikke en konto?" + +#: frappe/public/js/frappe/form/form_tour.js:16 +#: frappe/public/js/frappe/ui/messages.js:238 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:17 +#: frappe/public/js/print_format_builder/HTMLEditor.vue:5 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52 +msgid "Done" +msgstr "Utført" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Donut" +msgstr "Donut" + +#: frappe/public/js/form_builder/components/EditableInput.vue:43 +msgid "Double click to edit label" +msgstr "Dobbeltklikk for å redigere etiketten" + +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:8 +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Download" +msgstr "Last ned" + +#: frappe/public/js/frappe/views/reports/report_utils.js:247 +msgctxt "Export report" +msgid "Download" +msgstr "Last ned" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/page/backups/backups.js:4 +msgid "Download Backups" +msgstr "Last ned sikkerhetskopier" + +#: frappe/templates/emails/download_data.html:6 +msgid "Download Data" +msgstr "Last ned data" + +#: frappe/desk/page/backups/backups.js:14 +msgid "Download Files Backup" +msgstr "Last ned sikkerhetskopi av filer" + +#: frappe/templates/emails/download_data.html:9 +msgid "Download Link" +msgstr "Last ned lenke" + +#: frappe/public/js/frappe/list/bulk_operations.js:134 +msgid "Download PDF" +msgstr "Last ned PDF" + +#: frappe/public/js/frappe/views/reports/query_report.js:840 +msgid "Download Report" +msgstr "Last ned rapport" + +#. Label of the download_template (Button) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Download Template" +msgstr "Last ned mal" + +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:61 +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:69 +#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48 +msgid "Download Your Data" +msgstr "Last ned dataene dine" + +#: frappe/core/doctype/prepared_report/prepared_report.js:49 +msgid "Download as CSV" +msgstr "Last ned som CSV" + +#: frappe/contacts/doctype/contact/contact.js:98 +msgid "Download vCard" +msgstr "Last ned vCard" + +#: frappe/contacts/doctype/contact/contact_list.js:4 +msgid "Download vCards" +msgstr "Last ned flere vCard" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:46 +msgid "Dr" +msgstr "Dr." + +#: frappe/public/js/frappe/model/indicator.js:73 +#: frappe/public/js/frappe/ui/filters/filter.js:538 +msgid "Draft" +msgstr "Utkast" + +#: frappe/public/js/frappe/views/workspace/blocks/header.js:46 +#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:136 +#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:44 +#: frappe/public/js/frappe/widgets/base_widget.js:33 +msgid "Drag" +msgstr "Dra" + +#: frappe/public/js/form_builder/components/Tabs.vue:189 +msgid "Drag & Drop a section here from another tab" +msgstr "Dra & slipp en seksjon her fra en annen fane" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:14 +msgid "Drag and drop files here or upload from" +msgstr "Dra og slipp filer hit eller last opp fra" + +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:76 +msgid "Drag columns to set order. Column width is set in percentage. The total width should not be more than 100. Columns marked in red will be removed." +msgstr "Dra kolonnene for å angi rekkefølge. Kolonnebredden angis i prosent. Den totale bredden skal ikke være mer enn 100. Kolonner merket med rødt vil bli fjernet." + +#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:3 +msgid "Drag elements from the sidebar to add. Drag them back to trash." +msgstr "Dra elementer fra sidefeltet for å legge dem til. Dra dem tilbake for å ikke bruke dem." + +#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:296 +msgid "Drag to add state" +msgstr "Dra for å legge til tilstand" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 +msgid "Drop files here" +msgstr "Slipp filer her" + +#. Label of the section_break_2 (Section Break) field in DocType 'Navbar +#. Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Dropdowns" +msgstr "Nedtrekksmenyer" + +#. Label of the date (Date) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +msgid "Due Date" +msgstr "Forfallsdato" + +#. 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 "Forfallsdato basert på" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +#: frappe/public/js/frappe/form/toolbar.js:422 +msgid "Duplicate" +msgstr "Dupliser" + +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:53 +msgid "Duplicate Entry" +msgstr "Dupliser oppføring" + +#: frappe/public/js/frappe/list/list_filter.js:144 +msgid "Duplicate Filter Name" +msgstr "Dupliser filternavn" + +#: frappe/model/base_document.py:720 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:209 +msgid "Duplicate current row" +msgstr "Dupliser gjeldende rad" + +#: frappe/public/js/form_builder/components/Field.vue:245 +msgid "Duplicate field" +msgstr "Dupliser felt" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the duration (Float) field in DocType 'Recorder' +#. Label of the duration (Float) field in DocType 'Recorder Query' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/recorder_query/recorder_query.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Duration" +msgstr "Varighet" + +#. Option for the 'Row Format' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Dynamic" +msgstr "Dynamisk" + +#. Label of the dynamic_filters_section (Section Break) field in DocType +#. 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Dynamic Filters" +msgstr "Dynamiske filtre" + +#. 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 "Dynamiske filtre JSON" + +#. Label of the dynamic_filters_section (Section Break) field in DocType +#. 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Dynamic Filters Section" +msgstr "Seksjon for dynamiske filtre" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Name of a DocType +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Dynamic Link" +msgstr "Dynamisk lenke" + +#. Label of the dynamic_report_filters_section (Section Break) field in DocType +#. 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Dynamic Report Filters" +msgstr "Dynamiske rapportfiltre" + +#. Label of the dynamic_route (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Dynamic Route" +msgstr "Dynamisk rute" + +#. Label of the dynamic_template (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Dynamic Template" +msgstr "Dynamisk mal" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "ESC" +msgstr "ESC" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/page/dashboard_view/dashboard_view.js:169 +#: frappe/printing/page/print_format_builder/print_format_builder_start.html:8 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 +#: frappe/public/js/frappe/form/controls/markdown_editor.js:31 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 +#: frappe/public/js/frappe/views/workspace/workspace.js:64 +#: frappe/public/js/frappe/widgets/base_widget.js:64 +#: frappe/public/js/frappe/widgets/chart_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 +#: frappe/templates/discussions/reply_card.html:29 +#: frappe/templates/discussions/reply_section.html:29 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:46 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:84 +msgid "Edit" +msgstr "Rediger" + +#: frappe/public/js/frappe/list/list_view.js:2260 +msgctxt "Button in list view actions menu" +msgid "Edit" +msgstr "Rediger" + +#: frappe/website/doctype/web_form/templates/web_form.html:23 +msgctxt "Button in web form" +msgid "Edit" +msgstr "Rediger" + +#: frappe/public/js/frappe/form/grid_row.js:350 +msgctxt "Edit grid row" +msgid "Edit" +msgstr "Rediger" + +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:66 +msgid "Edit Address in Form" +msgstr "Rediger adresse i skjema" + +#: frappe/templates/emails/auto_email_report.html:63 +msgid "Edit Auto Email Report Settings" +msgstr "Rediger innstillinger for automatisk e-postrapport" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:38 +msgid "Edit Chart" +msgstr "Rediger diagram" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:50 +msgid "Edit Custom Block" +msgstr "Rediger egendefinert blokk" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:727 +msgid "Edit Custom HTML" +msgstr "Rediger egendefinert HTML" + +#: frappe/public/js/frappe/form/toolbar.js:619 +msgid "Edit DocType" +msgstr "Rediger dokumenttype (DocType)" + +#: frappe/public/js/frappe/list/list_view.js:1976 +msgctxt "Button in list view menu" +msgid "Edit DocType" +msgstr "Rediger dokumenttype (DocType)" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:42 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:42 +msgid "Edit Existing" +msgstr "Rediger eksisterende" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:55 +msgid "Edit Filters" +msgstr "Rediger filtre" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:29 +msgid "Edit Footer" +msgstr "Rediger bunnfelt" + +#: frappe/printing/doctype/print_format/print_format.js:29 +msgid "Edit Format" +msgstr "Rediger format" + +#: frappe/public/js/frappe/form/quick_entry.js:326 +msgid "Edit Full Form" +msgstr "Rediger hele skjemaet" + +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:27 +#: frappe/public/js/print_format_builder/Field.vue:83 +msgid "Edit HTML" +msgstr "Rediger HTML" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:9 +msgid "Edit Header" +msgstr "Rediger topptekst" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:609 +#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:8 +msgid "Edit Heading" +msgstr "Rediger overskrift" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52 +msgid "Edit Letter Head" +msgstr "Rediger brevhode" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:35 +msgid "Edit Letter Head Footer" +msgstr "Rediger brevhodets bunntekst" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:42 +msgid "Edit Links" +msgstr "Rediger lenker" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:44 +msgid "Edit Number Card" +msgstr "Rediger nummerkort" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:46 +msgid "Edit Onboarding" +msgstr "Rediger Onboarding" + +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:24 +msgid "Edit Print Format" +msgstr "Velg utskriftsformat" + +#: frappe/www/me.html:38 +msgid "Edit Profile" +msgstr "Rediger profil" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:173 +msgid "Edit Properties" +msgstr "Rediger egenskaper" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:48 +msgid "Edit Quick List" +msgstr "Rediger hurtigliste" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:40 +msgid "Edit Shortcut" +msgstr "Rediger snarvei" + +#. Label of the edit_values (Button) field in DocType 'Web Page Block' +#. Label of the edit_navbar_template_values (Button) field in DocType 'Website +#. Settings' +#. Label of the edit_footer_template_values (Button) field in DocType 'Website +#. Settings' +#: frappe/public/js/frappe/utils/web_template.js:5 +#: frappe/website/doctype/web_page_block/web_page_block.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Edit Values" +msgstr "Rediger verdier" + +#: frappe/desk/doctype/note/note.js:11 +msgid "Edit mode" +msgstr "Redigeringsmodus" + +#: frappe/public/js/form_builder/components/Field.vue:254 +msgid "Edit the {0} Doctype" +msgstr "Rediger {0} dokumenttypen (DocType)" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:721 +msgid "Edit to add content" +msgstr "Rediger for å legge til innhold" + +#: frappe/public/js/frappe/web_form/web_form.js:470 +msgctxt "Button in web form" +msgid "Edit your response" +msgstr "Rediger svaret ditt" + +#: frappe/workflow/doctype/workflow/workflow.js:18 +msgid "Edit your workflow visually using the Workflow Builder." +msgstr "Rediger arbeidsflyten din visuelt ved hjelp av arbeidsflytbyggeren." + +#: frappe/public/js/frappe/views/reports/report_view.js:683 +#: frappe/public/js/frappe/widgets/widget_dialog.js:52 +msgid "Edit {0}" +msgstr "Rediger {0}" + +#. Label of the editable_grid (Check) field in DocType 'DocType' +#. Label of the editable_grid (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:58 +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Editable Grid" +msgstr "Redigerbart rutenett" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Editing Row" +msgstr "Redigerer rad" + +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:14 +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:20 +msgid "Editing {0}" +msgstr "Redigering {0}" + +#. Description of the 'SMS Gateway URL' (Small Text) field in DocType 'SMS +#. Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Eg. smsgateway.com/api/send_sms.cgi" +msgstr "F.eks. smsgateway.com/api/send_sms.cgi" + +#: frappe/rate_limiter.py:152 +msgid "Either key or IP flag is required." +msgstr "Enten nøkkel eller IP-flagg er påkrevd." + +#. 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 "Elementvelger" + +#. Label of a Card Break in the Tools Workspace +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Label of the email (Check) field in DocType 'Custom DocPerm' +#. Label of the email (Check) field in DocType 'DocPerm' +#. Option for the 'Two Factor Authentication method' (Select) field in DocType +#. 'System Settings' +#. Label of the email_tab (Tab Break) field in DocType 'System Settings' +#. Label of the email (Data) field in DocType 'User' +#. Label of the email_settings (Section Break) field in DocType 'User' +#. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' +#. Label of the email (Data) field in DocType 'Event Participants' +#. Label of the email (Data) field in DocType 'Email Group Member' +#. Label of the email (Data) field in DocType 'Email Unsubscribe' +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/success_action/success_action.js:59 +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/desk/doctype/event_participants/event_participants.json +#: frappe/email/doctype/email_group_member/email_group_member.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/success_action.js:85 +#: frappe/public/js/frappe/form/toolbar.js:382 +#: frappe/templates/includes/comments/comments.html:25 +#: frappe/templates/signup.html:9 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +#: frappe/www/login.html:8 frappe/www/login.py:104 +msgid "Email" +msgstr "E-post" + +#. Label of a Link in the Tools Workspace +#. Label of the email_account (Link) field in DocType 'Communication' +#. Label of the email_account (Link) field in DocType 'User Email' +#. Name of a DocType +#. Label of the email_account (Data) field in DocType 'Email Flag Queue' +#. Label of the email_account (Link) field in DocType 'Email Queue' +#. Label of the email_account (Link) field in DocType 'Unhandled Email' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/communication.js:199 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_email/user_email.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Email Account" +msgstr "E-postkonto" + +#: frappe/email/doctype/email_account/email_account.py:343 +msgid "Email Account Disabled." +msgstr "E-postkonto deaktivert." + +#. 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 "Navn på e-postkonto" + +#: frappe/core/doctype/user/user.py:749 +msgid "Email Account added multiple times" +msgstr "E-postkonto lagt til flere ganger" + +#: frappe/email/smtp.py:43 +msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account" +msgstr "E-postkontoen er ikke konfigurert. Opprett en ny e-postkonto fra Innstillinger > E-postkonto" + +#: frappe/email/doctype/email_account/email_account.py:576 +msgid "Email Account {0} Disabled" +msgstr "E-postkonto {0} Deaktivert" + +#. Label of the email_id (Data) field in DocType 'Address' +#. Label of the email_id (Data) field in DocType 'Contact' +#. Label of the email_id (Data) field in DocType 'Email Account' +#. Label of the email_id (Data) field in DocType 'Google Contacts' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:485 +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/www/complete_signup.html:11 frappe/www/login.html:184 +#: frappe/www/login.html:216 +msgid "Email Address" +msgstr "E-postadresse" + +#. 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 "E-postadresse hvis Google-kontakter skal synkroniseres." + +#: frappe/email/doctype/email_group/email_group.js:43 +msgid "Email Addresses" +msgstr "E-postadresser" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Email Domain" +msgstr "E-postdomene" + +#. Name of a DocType +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Email Flag Queue" +msgstr "Kø for e-postmarkeringer" + +#. Label of the email_footer_address (Small Text) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Email Footer Address" +msgstr "E-postadresse i bunnteksten" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#. Label of the email_group (Link) field in DocType 'Email Group Member' +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/email_group/email_group.json +#: frappe/email/doctype/email_group_member/email_group_member.json +msgid "Email Group" +msgstr "E-postgruppe" + +#. Name of a DocType +#: frappe/email/doctype/email_group_member/email_group_member.json +msgid "Email Group Member" +msgstr "Medlem av e-postgruppen" + +#. Label of the email_header (Data) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Email Header" +msgstr "Emnefelt for e-post" + +#. Label of the email_id (Data) field in DocType 'Contact Email' +#. Label of the email_id (Data) field in DocType 'User Email' +#. Label of the email_id (Data) field in DocType 'Email Rule' +#: frappe/contacts/doctype/contact/contact.py:131 +#: frappe/contacts/doctype/contact_email/contact_email.json +#: frappe/core/doctype/user_email/user_email.json +#: frappe/email/doctype/email_rule/email_rule.json +msgid "Email ID" +msgstr "E-post-ID" + +#. Label of the email_ids (Table) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Email IDs" +msgstr "E-post-ID-er" + +#. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Email Id" +msgstr "E-post-ID" + +#. Label of the email_inbox (Section Break) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Email Inbox" +msgstr "innboks" + +#. Name of a DocType +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Email Queue" +msgstr "E-postkø" + +#. Name of a DocType +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +msgid "Email Queue Recipient" +msgstr "Mottaker av e-postkø" + +#: frappe/email/queue.py:161 +msgid "Email Queue flushing aborted due to too many failures." +msgstr "Tømming av e-postkø avbrutt på grunn av for mange feil." + +#. Description of a DocType +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Email Queue records." +msgstr "Oppføringer i e-postkøen." + +#. 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 "Hjelp med svar på e-post" + +#. 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 "Maks antall forsøk på å sende e-post" + +#. Name of a DocType +#: frappe/email/doctype/email_rule/email_rule.json +msgid "Email Rule" +msgstr "E-postregel" + +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" +msgstr "E-post sendt kl." + +#. Label of the email_settings_sb (Section Break) field in DocType 'DocType' +#. Label of the email_settings_section (Section Break) field in DocType +#. 'Customize Form' +#. Label of the column_break_3 (Section Break) field in DocType 'Notification +#. Settings' +#. Label of the email_settings (Section Break) field in DocType 'Auto Email +#. Report' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Email Settings" +msgstr "Innstillinger for e-post" + +#. Label of the email_signature (Text Editor) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Email Signature" +msgstr "E-postsignatur" + +#. Label of the email_status (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Email Status" +msgstr "Status for e-post" + +#. 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 "Alternativ for e-postsynkronisering" + +#. Label of a Link in the Tools Workspace +#. Label of the email_template (Link) field in DocType 'Communication' +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/public/js/frappe/views/communication.js:107 +msgid "Email Template" +msgstr "Mal for e-post" + +#. Label of the enable_email_threads_on_assigned_document (Check) field in +#. DocType 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Email Threads on Assigned Document" +msgstr "E-posttråder på tilordnet dokument" + +#. 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-post til" + +#. Name of a DocType +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +msgid "Email Unsubscribe" +msgstr "Avmelding fra e-postliste" + +#: frappe/core/doctype/communication/communication.js:342 +msgid "Email has been marked as spam" +msgstr "E-posten er blitt merket som søppelpost" + +#: frappe/core/doctype/communication/communication.js:355 +msgid "Email has been moved to trash" +msgstr "E-posten er flyttet til papirkurven" + +#: frappe/core/doctype/user/user.js:266 +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:822 +msgid "Email not sent to {0} (unsubscribed / disabled)" +msgstr "E-posten er ikke sendt til {0} (avmeldt / deaktivert)" + +#: frappe/utils/oauth.py:163 +msgid "Email not verified with {0}" +msgstr "E-postadressen er ikke bekreftet med {0}" + +#: frappe/email/doctype/email_queue/email_queue.js:19 +msgid "Email queue is currently suspended. Resume to automatically send other emails." +msgstr "E-postkøen er for øyeblikket suspendert. Gjenoppta for å sende andre e-poster automatisk." + +#. Label of the section_break_udjs (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Emails" +msgstr "E-poster" + +#: frappe/email/doctype/email_account/email_account.js:216 +msgid "Emails Pulled" +msgstr "E-poster hentet" + +#: frappe/email/doctype/email_account/email_account.py:934 +msgid "Emails are already being pulled from this account." +msgstr "E-poster blir allerede hentet fra denne kontoen." + +#: frappe/email/queue.py:138 +msgid "Emails are muted" +msgstr "Utsending av e-post er slått av." + +#. 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 "Det vil bli sendt e-post med informasjon om neste mulige arbeidsflythandlinger" + +#: frappe/website/doctype/web_form/web_form.js:34 +msgid "Embed code copied" +msgstr "Den innbygde koden er kopiert" + +#: frappe/database/query.py:1539 +msgid "Empty alias is not allowed" +msgstr "Tomt alias er ikke tillatt" + +#: frappe/public/js/form_builder/components/Section.vue:285 +msgid "Empty column" +msgstr "Tom kolonne" + +#: frappe/database/query.py:1457 +msgid "Empty string arguments are not allowed" +msgstr "Tomme strenger er ikke tillatt som argumenter" + +#. Label of the enable (Check) field in DocType 'Google Calendar' +#. Label of the enable (Check) field in DocType 'Google Contacts' +#. Label of the enable (Check) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "Enable" +msgstr "Aktiver" + +#. Label of the enable_address_autocompletion (Check) field in DocType +#. 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Enable Address Autocompletion" +msgstr "Aktiver automatisk adressefullføring" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 +msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" +msgstr "Aktiver \"Tillat automatisk gjentakelse\" for dokumenttype (DocType) {0} i Tilpass skjema" + +#. 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 "Aktiver automatisk svar" + +#. 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 "Aktiver automatisk lenking i dokumenter" + +#. Label of the enable_comments (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Enable Comments" +msgstr "Tillat kommentarer" + +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "Aktiver dynamisk klientregistrering" + +#. Label of the enable_email_notifications (Check) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Enable Email Notifications" +msgstr "Aktiver e-postvarsling" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:106 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:36 +#: frappe/website/doctype/website_settings/website_settings.py:129 +msgid "Enable Google API in Google Settings." +msgstr "Aktiver Google API i Google-innstillinger." + +#. Label of the enable_google_indexing (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Enable Google indexing" +msgstr "Aktiver indeksering i Google" + +#. Label of the enable_incoming (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:225 +msgid "Enable Incoming" +msgstr "Aktiver innkommende e-post" + +#. Label of the enable_onboarding (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Enable Onboarding" +msgstr "Aktiver onboarding" + +#. Label of the enable_outgoing (Check) field in DocType 'User Email' +#. Label of the enable_outgoing (Check) field in DocType 'Email Account' +#: frappe/core/doctype/user_email/user_email.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:233 +msgid "Enable Outgoing" +msgstr "Aktiver utgående e-post" + +#. Label of the enable_password_policy (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Enable Password Policy" +msgstr "Aktiver passordregler" + +#. 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 "Aktiver forberedt rapport" + +#. 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 "Aktiver utskriftsserver" + +#. 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 "Aktiver videresending av pushvarsler" + +#. 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 "Aktiver begrensning for antall forespørsler" + +#. 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 "Aktiver råutskrift" + +#: frappe/core/doctype/report/report.js:39 +msgid "Enable Report" +msgstr "Aktiver rapport" + +#. Label of the enable_scheduler (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Enable Scheduled Jobs" +msgstr "Aktiver planlagte jobber" + +#: frappe/core/doctype/rq_job/rq_job_list.js:23 +msgid "Enable Scheduler" +msgstr "Aktiver planlegger" + +#. Label of the enable_security (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Enable Security" +msgstr "Aktiver sikkerhet" + +#. 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 "Aktiver sosial pålogging" + +#: frappe/website/doctype/website_settings/website_settings.js:139 +msgid "Enable Tracking Page Views" +msgstr "Aktiver sporing av sidevisninger" + +#. Label of the enable_two_factor_auth (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/twofactor.py:438 +msgid "Enable Two Factor Auth" +msgstr "Aktiver tofaktorautentisering" + +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:28 +msgid "Enable developer mode to create a standard Print Template" +msgstr "Aktiver utviklermodus for å opprette en standard utskriftsmal" + +#: frappe/website/doctype/web_template/web_template.py:33 +msgid "Enable developer mode to create a standard Web Template" +msgstr "Aktiver utviklermodus for å opprette en standard nettmal" + +#. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Enable if on click\n" +"opens modal." +msgstr "Aktiver hvis on click\n" +"åpner modal." + +#. 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 "Aktiver sporing av nettsidebruk i appen" + +#. Label of the enabled (Check) field in DocType 'Language' +#. Label of the enabled (Check) field in DocType 'User' +#. Label of the enabled (Check) field in DocType 'Client Script' +#. Label of the enabled (Check) field in DocType 'Notification Settings' +#. Label of the enabled (Check) field in DocType 'Auto Email Report' +#. Label of the enabled (Check) field in DocType 'Notification' +#. Label of the enabled (Check) field in DocType 'Currency' +#. Label of the enabled (Check) field in DocType 'LDAP Settings' +#. Label of the enabled (Check) field in DocType 'Webhook' +#. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/user/user.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/notification/notification.json +#: frappe/geo/doctype/currency/currency.json +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Enabled" +msgstr "Aktivert" + +#: frappe/core/doctype/rq_job/rq_job_list.js:29 +msgid "Enabled Scheduler" +msgstr "Aktiver planlegger" + +#: frappe/email/doctype/email_account/email_account.py:1010 +msgid "Enabled email inbox for user {0}" +msgstr "Aktiverte e-post innboks for bruker {0}" + +#. Description of the 'Is Calendar and Gantt' (Check) field in DocType +#. 'DocType' +#. Description of the 'Is Calendar and Gantt' (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Enables Calendar and Gantt views." +msgstr "Aktiverer kalender- og Gantt-visninger." + +#: frappe/email/doctype/email_account/email_account.js:295 +msgid "Enabling auto reply on an incoming email account will send automated replies to all the synchronized emails. Do you wish to continue?" +msgstr "Hvis du aktiverer automatisk svar på en innkommende e-postkonto, sendes automatiske svar til alle synkroniserte e-poster. Vil du fortsette?" + +#. Description of a DocType +#. Description of the 'Relay Settings' (Section Break) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "Hvis du aktiverer dette, registreres nettstedet ditt på en sentral reléserver for å sende push-varsler for alle installerte apper via Firebase Cloud Messaging. Denne serveren lagrer bare brukertokens og feillogger, og ingen meldinger lagres." + +#. Description of the 'Queue in Background (BETA)' (Check) field in DocType +#. 'DocType' +#. Description of the 'Queue in Background (BETA)' (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Enabling this will submit documents in background" +msgstr "Hvis aktiveret, registreres dokumenter i bakgrunnen" + +#. Label of the encrypt_backup (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Encrypt Backups" +msgstr "Krypter sikkerhetskopier" + +#: frappe/utils/password.py:196 +msgid "Encryption key is in invalid format!" +msgstr "Krypteringsnøkkelen er i ugyldig format!" + +#: frappe/utils/password.py:211 +msgid "Encryption key is invalid! Please check site_config.json" +msgstr "Krypteringsnøkkelen er ugyldig! Sjekk site_config.json" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:51 +msgid "End" +msgstr "Slutt" + +#. Label of the end_date (Date) field in DocType 'Auto Repeat' +#. Label of the end_date (Date) field in DocType 'Audit Trail' +#. Label of the end_date (Datetime) field in DocType 'Web Page' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/public/js/frappe/utils/common.js:416 +#: frappe/website/doctype/web_page/web_page.json +msgid "End Date" +msgstr "Sluttdato" + +#. 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 "Felt for sluttdato" + +#: frappe/website/doctype/web_page/web_page.py:208 +msgid "End Date cannot be before Start Date!" +msgstr "Sluttdatoen kan ikke være før startdatoen!" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "Sluttdatoen kan ikke være i dag." + +#. Label of the ended_at (Datetime) field in DocType 'RQ Job' +#. Label of the ended_at (Datetime) field in DocType 'Submission Queue' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Ended At" +msgstr "Sluttført kl." + +#. Label of the sb_endpoints_section (Section Break) field in DocType +#. 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Endpoints" +msgstr "Endepunkter" + +#. Label of the ends_on (Datetime) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Ends on" +msgstr "Slutter" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Energy Point" +msgstr "Energipunkt" + +#. Label of the enqueued_by (Data) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Enqueued By" +msgstr "Satt i kø av" + +#: frappe/core/doctype/recorder/recorder.py:125 +msgid "Enqueued creation of indexes" +msgstr "Oppretting av indekser i kø" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108 +msgid "Ensure the user and group search paths are correct." +msgstr "Sørg for at søkestiene for brukere og grupper er riktige." + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:109 +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 +msgid "Enter Code displayed in OTP App." +msgstr "Skriv inn koden som vises i OTP-appen." + +#: frappe/public/js/frappe/views/communication.js:777 +msgid "Enter Email Recipient(s)" +msgstr "Skriv inn e-postmottaker(e)" + +#. Label of the doc_type (Link) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Enter Form Type" +msgstr "Angi skjematype" + +#: frappe/public/js/frappe/ui/messages.js:94 +msgctxt "Title of prompt dialog" +msgid "Enter Value" +msgstr "Angi verdi" + +#: frappe/public/js/frappe/form/form_tour.js:60 +msgid "Enter a name for this {0}" +msgstr "Skriv inn et navn for dette {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 "Skriv inn standardverdifelt (nøkler) og verdier. Hvis du legger til flere verdier for et felt, vil den første bli valgt. Disse standardverdiene brukes også til å angi tillatelsesregler for samsvar. For å se en liste over felt, gå til «Tilpass skjema»." + +#: frappe/public/js/frappe/views/file/file_view.js:111 +msgid "Enter folder name" +msgstr "Skriv inn mappenavn" + +#. 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 "Skriv inn statiske URL-parametere her (f.eks. sender=ERPNext, brukernavn=ERPNext, passord=1234 osv.)" + +#. Description of the 'Message Parameter' (Data) field in DocType 'SMS +#. Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Enter url parameter for message" +msgstr "Skriv inn URL-parameter for melding" + +#. 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 "Skriv inn URL-parameter for mottakernumre" + +#: frappe/public/js/frappe/ui/messages.js:341 +msgid "Enter your password" +msgstr "Skriv inn passordet ditt" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:22 +msgid "Entity Name" +msgstr "Enhetsnavn" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:9 +msgid "Entity Type" +msgstr "Enhetstype" + +#: frappe/public/js/frappe/ui/filters/filter.js:16 +msgid "Equals" +msgstr "Tilsvarer" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#. Label of the error (Code) field in DocType 'Error Log' +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#. Label of the error (Code) field in DocType 'Email Queue' +#. Label of the error (Code) field in DocType 'Email Queue Recipient' +#. Label of the error (Code) field in DocType 'Integration Request' +#. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +#: frappe/desk/page/backups/backups.js:37 +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/ui/messages.js:22 +msgid "Error" +msgstr "Feil" + +#: frappe/public/js/frappe/web_form/web_form.js:264 +msgctxt "Title of error message in web form" +msgid "Error" +msgstr "Feil" + +#. Name of a DocType +#: frappe/core/doctype/error_log/error_log.json +msgid "Error Log" +msgstr "Feillogg" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Error Logs" +msgstr "Feillogger" + +#. Label of the error_message (Text) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Error Message" +msgstr "Feilmelding" + +#: frappe/public/js/frappe/form/print_utils.js:156 +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." + +#: frappe/email/doctype/email_domain/email_domain.py:32 +msgid "Error connecting via IMAP/POP3: {e}" +msgstr "Feil ved tilkobling via IMAP/POP3: {e}" + +#: frappe/email/doctype/email_domain/email_domain.py:33 +msgid "Error connecting via SMTP: {e}" +msgstr "Feil ved tilkobling via SMTP: {e}" + +#: frappe/email/doctype/email_domain/email_domain.py:101 +msgid "Error has occurred in {0}" +msgstr "Det oppsto en feil i {0}" + +#: frappe/public/js/frappe/form/script_manager.js:199 +msgid "Error in Client Script" +msgstr "Feil i klientskript" + +#: frappe/public/js/frappe/form/script_manager.js:256 +msgid "Error in Client Script." +msgstr "Feil i klientskriptet." + +#: frappe/printing/doctype/letter_head/letter_head.js:21 +msgid "Error in Header/Footer Script" +msgstr "Feil i topptekst-/bunntekstskript" + +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 +msgid "Error in Notification" +msgstr "Feil i varselet" + +#: frappe/utils/pdf.py:59 +msgid "Error in print format on line {0}: {1}" +msgstr "Feil i utskriftsformat på linjen {0}: {1}" + +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "Feil i {0}.get_list: {1}" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "Feil ved parsing av nestede filtre: {0}" + +#: frappe/email/doctype/email_account/email_account.py:670 +msgid "Error while connecting to email account {0}" +msgstr "Feil under tilkobling til e-postkonto {0}" + +#: frappe/email/doctype/notification/notification.py:779 +msgid "Error while evaluating Notification {0}. Please fix your template." +msgstr "Feil under evaluering av varsel {0}. Vennligst rett malen din." + +#: frappe/model/base_document.py:860 +msgid "Error: Data missing in table {0}" +msgstr "Feil: Data mangler i tabellen {0}" + +#: frappe/model/base_document.py:870 +msgid "Error: Value missing for {0}: {1}" +msgstr "Feil: Mangler verdi for {0}: {1}" + +#: frappe/model/base_document.py:864 +msgid "Error: {0} Row #{1}: Value missing for: {2}" +msgstr "Feil: {0} Rad #{1}: Verdi mangler for: {2}" + +#. Label of the errors_generated_in_last_1_day_section (Section Break) field in +#. DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Errors" +msgstr "Feil" + +#. 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 "Event" + +#. Label of the event_category (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Event Category" +msgstr "Eventkategori" + +#. Label of the event_frequency (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Event Frequency" +msgstr "Eventfrekvens" + +#. Label of the event_participants (Table) field in DocType 'Event' +#. Name of a DocType +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/event_participants/event_participants.json +msgid "Event Participants" +msgstr "Deltakere i hendelsen" + +#. Label of the enable_email_event_reminders (Check) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Event Reminders" +msgstr "Påminnelser om hendelser" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:493 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:577 +msgid "Event Synced with Google Calendar." +msgstr "Hendelse synkronisert med Google Kalender." + +#. Label of the event_type (Data) field in DocType 'Recorder' +#. Label of the event_type (Select) field in DocType 'Event' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/desk/doctype/event/event.json +msgid "Event Type" +msgstr "Type hendelse" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:56 +msgid "Events" +msgstr "Hendelser" + +#: frappe/desk/doctype/event/event.py:278 +msgid "Events in Today's Calendar" +msgstr "Hendelser i dagens kalender" + +#. Label of the everyone (Check) field in DocType 'DocShare' +#: frappe/core/doctype/docshare/docshare.json +#: frappe/public/js/frappe/form/templates/set_sharing.html:11 +msgid "Everyone" +msgstr "Alle" + +#. Description of the 'Custom Options' (Code) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"]" +msgstr "Eks: \"farger\": [\"#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 "Eksakte kopier" + +#. Label of the example (HTML) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Example" +msgstr "Eksempel" + +#. Description of the 'Default Portal Home' (Data) field in DocType 'Portal +#. Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Example: \"/desk\"" +msgstr "Eksempel: \"/desk\"" + +#. Description of the 'Path' (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Example: #Tree/Account" +msgstr "Eksempel: \"#Tree/Account\"" + +#. Description of the 'Digits' (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Example: 00001" +msgstr "Eksempel: 00001" + +#. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours." +msgstr "Eksempel: Hvis du setter denne til 24:00, logges en bruker ut hvis de ikke har vært aktive i løpet av 24:00." + +#. Description of the 'Description' (Small Text) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Example: {{ subject }}" +msgstr "Eksempel: {{ subject }}" + +#. Option for the 'File Type' (Select) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Excel" +msgstr "Excel" + +#: frappe/public/js/frappe/form/controls/password.js:90 +msgid "Excellent" +msgstr "Utmerket" + +#. Label of the exception (Text) field in DocType 'Data Import Log' +#. Label of the exc_info (Code) field in DocType 'RQ Job' +#. Label of the exception (Long Text) field in DocType 'Submission Queue' +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Exception" +msgstr "Unntak" + +#. Label of the execute_section (Section Break) field in DocType 'System +#. Console' +#: frappe/desk/doctype/system_console/system_console.js:17 +#: frappe/desk/doctype/system_console/system_console.js:22 +#: frappe/desk/doctype/system_console/system_console.json +msgid "Execute" +msgstr "Utfør" + +#: frappe/desk/doctype/system_console/system_console.js:10 +msgid "Execute Console script" +msgstr "Kjør konsollskript" + +#: frappe/public/js/frappe/ui/dropdown_console.js:132 +msgid "Executing Code" +msgstr "Kjør kode" + +#: frappe/desk/doctype/system_console/system_console.js:18 +msgid "Executing..." +msgstr "Utfører..." + +#: frappe/public/js/frappe/views/reports/query_report.js:2140 +msgid "Execution Time: {0} sec" +msgstr "Utførelsestid: {0} sek" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Executive" +msgstr "Executive" + +#. Label of the existing_role (Link) field in DocType 'Role Replication' +#: frappe/core/doctype/role_replication/role_replication.json +msgid "Existing Role" +msgstr "Eksisterende rolle" + +#: frappe/public/js/frappe/views/treeview.js:115 +#: frappe/public/js/frappe/views/treeview.js:127 +#: frappe/public/js/frappe/views/treeview.js:137 +#: frappe/public/js/frappe/widgets/base_widget.js:159 +msgid "Expand" +msgstr "Utvid" + +#: frappe/public/js/frappe/form/controls/code.js:185 +msgctxt "Enlarge code field." +msgid "Expand" +msgstr "Utvid" + +#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/treeview.js:133 +msgid "Expand All" +msgstr "Utvid alle" + +#: frappe/database/query.py:354 +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:23 +msgid "Experimental" +msgstr "Eksperimentell" + +#. Option for the 'Level' (Select) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Expert" +msgstr "Ekspert" + +#. Label of the expiration_time (Datetime) field in DocType 'OAuth +#. Authorization Code' +#. Label of the expiration_time (Datetime) field in DocType 'OAuth Bearer +#. Token' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "Expiration time" +msgstr "Utløpstid" + +#. Label of the expire_notification_on (Datetime) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Expire Notification On" +msgstr "Utløpsvarsling den" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Expired" +msgstr "Utløpt" + +#. Label of the expires_in (Int) field in DocType 'OAuth Bearer Token' +#. Label of the expires_in (Int) field in DocType 'Token Cache' +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Expires In" +msgstr "Utløper om" + +#. 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 "Utløper den" + +#. 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 "Utløpstid for QR-kodebildesiden" + +#. Label of the export (Check) field in DocType 'Custom DocPerm' +#. Label of the export (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/recorder/recorder_list.js:37 +#: frappe/public/js/frappe/data_import/data_exporter.js:92 +#: frappe/public/js/frappe/data_import/data_exporter.js:243 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 +#: frappe/public/js/frappe/widgets/chart_widget.js:315 +msgid "Export" +msgstr "Eksporter" + +#: frappe/public/js/frappe/list/list_view.js:2282 +msgctxt "Button in list view actions menu" +msgid "Export" +msgstr "Eksport" + +#: frappe/public/js/frappe/data_import/data_exporter.js:245 +msgid "Export 1 record" +msgstr "Eksporter 1 post" + +#: frappe/custom/doctype/customize_form/customize_form.js:262 +msgid "Export Custom Permissions" +msgstr "Eksporter egendefinerte tillatelser" + +#: frappe/custom/doctype/customize_form/customize_form.js:242 +msgid "Export Customizations" +msgstr "Eksporter egendefinisjoner" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +#: frappe/public/js/frappe/data_import/data_exporter.js:14 +msgid "Export Data" +msgstr "Eksporter data" + +#: frappe/core/doctype/data_import/data_import.js:86 +#: frappe/public/js/frappe/data_import/import_preview.js:199 +msgid "Export Errored Rows" +msgstr "Eksporter feilaktige rader" + +#. Label of the export_from (Data) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Export From" +msgstr "Eksporter fra" + +#: frappe/core/doctype/data_import/data_import.js:518 +msgid "Export Import Log" +msgstr "Eksporter importlogg" + +#: frappe/public/js/frappe/views/reports/report_utils.js:245 +msgctxt "Export report" +msgid "Export Report: {0}" +msgstr "Eksporter rapport: {0}" + +#: frappe/public/js/frappe/data_import/data_exporter.js:26 +msgid "Export Type" +msgstr "Eksporttype" + +#: frappe/public/js/frappe/views/reports/report_view.js:1640 +msgid "Export all matching rows?" +msgstr "Eksporter alle samsvarende rader?" + +#: frappe/public/js/frappe/views/reports/report_view.js:1650 +msgid "Export all {0} rows?" +msgstr "Eksporter alle {0} rader?" + +#: frappe/public/js/frappe/views/file/file_view.js:154 +msgid "Export as zip" +msgstr "Eksporter som zip" + +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "Eksporter i bakgrunnen" + +#: frappe/public/js/frappe/utils/tools.js:11 +msgid "Export not allowed. You need {0} role to export." +msgstr "Eksport er ikke tillatt. Du trenger rollen {0} for å eksportere." + +#. 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 "Eksporter dataene uten overskriftsnotater og kolonnebeskrivelser" + +#. 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 "Eksporter uten hovedoverskrift" + +#: frappe/public/js/frappe/data_import/data_exporter.js:247 +msgid "Export {0} records" +msgstr "Eksporter {0} poster" + +#: frappe/custom/doctype/customize_form/customize_form.js:263 +msgid "Exported permissions will be force-synced on every migrate overriding any other customization." +msgstr "Eksporterte tillatelser vil bli tvangssynkronisert ved hver migrering og overstyre alle andre egendefinisjoner." + +#. Label of the expose_recipients (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Expose Recipients" +msgstr "Eksponer mottakere" + +#. 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 "Uttrykk" + +#. 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 "Uttrykk (gammel stil)" + +#. Description of the 'Condition' (Data) field in DocType 'Notification +#. Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Expression, Optional" +msgstr "Uttrykk, valgfritt" + +#. Label of the external_link (Data) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/views/workspace/workspace.js:426 +msgid "External Link" +msgstr "Eksterne lenker" + +#. Label of the section_break_18 (Section Break) field in DocType 'Connected +#. App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Extra Parameters" +msgstr "Ekstra parametere" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Facebook" +msgstr "Facebook" + +#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Fail" +msgstr "Ikke bestått" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' +#. Option for the 'Status' (Select) field in DocType 'Submission Queue' +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Failed" +msgstr "Feilet" + +#. Label of the failed_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Failed Emails" +msgstr "Mislykkede utsendelser av e-post" + +#. 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 "Antall feilede jobb" + +#. Label of the failed_jobs (Int) field in DocType 'System Health Report +#. Workers' +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "Failed Jobs" +msgstr "Mislykkede jobber" + +#. 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 +msgid "Failed Transactions" +msgstr "Mislykkede transaksjoner" + +#: frappe/utils/synchronization.py:46 +msgid "Failed to aquire lock: {}. Lock may be held by another process." +msgstr "Mislyktes med å hente lås: {}. Låsen kan være oppbevart av en annen prosess." + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:359 +msgid "Failed to change password." +msgstr "Endrig av passord mislyktes" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:232 +#: frappe/desk/page/setup_wizard/setup_wizard.py:42 +msgid "Failed to complete setup" +msgstr "Fullføring av oppsettet mislyktes" + +#: frappe/integrations/doctype/webhook/webhook.py:141 +msgid "Failed to compute request body: {}" +msgstr "Mislyktes med å beregne forespørselsteksten: {}" + +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:46 +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:48 +msgid "Failed to connect to server" +msgstr "Mislyktes med å koble til serveren" + +#: frappe/auth.py:701 +msgid "Failed to decode token, please provide a valid base64-encoded token." +msgstr "Mislyktes med å dekode tokenet. Vennligst oppgi et gyldig base64-kodet token." + +#: frappe/utils/password.py:210 +msgid "Failed to decrypt key {0}" +msgstr "Mislyktes med å dekryptere nøkkelen {0}" + +#: frappe/desk/reportview.py:635 +msgid "Failed to delete {0} documents: {1}" +msgstr "Mislyktes med å slette {0} dokumenter: {1}" + +#: frappe/core/doctype/rq_job/rq_job_list.js:33 +msgid "Failed to enable scheduler: {0}" +msgstr "Mislyktes med å aktivere planleggeren: {0}" + +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 +msgid "Failed to evaluate conditions: {}" +msgstr "Mislyktes med å evaluere betingelser: {}" + +#: frappe/types/exporter.py:205 +msgid "Failed to export python type hints" +msgstr "Mislyktes med å eksportere hint for python-typen" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:249 +msgid "Failed to generate names from the series" +msgstr "Mislyktes med å generere navn fra serien" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:75 +msgid "Failed to generate preview of series" +msgstr "Mislyktes med å generere forhåndsvisning av serien" + +#: frappe/handler.py:76 +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 +msgid "Failed to get method {0} with {1}" +msgstr "Klarte ikke å hente metoden {0} med {1}" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:59 +msgid "Failed to get site info" +msgstr "Kunne ikke hente sideinformasjon" + +#: frappe/model/virtual_doctype.py:63 +msgid "Failed to import virtual doctype {}, is controller file present?" +msgstr "Kunne ikke importere virtuell dokumenttype (DocType) {}. Finnes kontrollerfilen?" + +#: frappe/utils/image.py:75 +msgid "Failed to optimize image: {0}" +msgstr "Kunne ikke optimalisere bilde: {0}" + +#: frappe/email/doctype/notification/notification.py:122 +msgid "Failed to render message: {}" +msgstr "Kunne ikke gjengi melding: {}" + +#: frappe/email/doctype/notification/notification.py:140 +msgid "Failed to render subject: {}" +msgstr "Kunne ikke gjengi emne: {}" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:94 +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:297 +msgid "Failed to send email with subject:" +msgstr "Kunne ikke sende e-post med emne:" + +#: frappe/desk/doctype/notification_log/notification_log.py:43 +msgid "Failed to send notification email" +msgstr "Kunne ikke sende e-postvarsel" + +#: frappe/desk/page/setup_wizard/setup_wizard.py:24 +msgid "Failed to update global settings" +msgstr "Feil ved oppdatering av globale innstillinger" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:74 +msgid "Failed while calling API {0}" +msgstr "Mislyktes under kalling av API {0}" + +#. Label of the failing_scheduled_jobs (Table) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Failing Scheduled Jobs (last 7 days)" +msgstr "Mislykkede planlagte jobber (siste 7 dager)" + +#: frappe/core/doctype/data_import/data_import.js:459 +msgid "Failure" +msgstr "Feil" + +#. Label of the failure_rate (Percent) field in DocType 'System Health Report +#. Failing Jobs' +#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json +msgid "Failure Rate" +msgstr "Feilfrekvens" + +#. Label of the favicon (Attach) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "FavIcon" +msgstr "FavIcon" + +#. Label of the fax (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Fax" +msgstr "Faks" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:33 +msgid "Feedback" +msgstr "Tilbakemelding" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:29 +msgid "Female" +msgstr "Kvinne" + +#. Label of the fetch_from (Small Text) field in DocType 'DocField' +#. Label of the fetch_from (Small Text) field in DocType 'Custom Field' +#. Label of the fetch_from (Small Text) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:29 +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:34 +msgid "Fetch From" +msgstr "Hent fra" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:15 +msgid "Fetch Images" +msgstr "Hent bilder" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:13 +msgid "Fetch attached images from document" +msgstr "Hent vedlagte bilder fra dokumentet" + +#. Label of the fetch_if_empty (Check) field in DocType 'DocField' +#. Label of the fetch_if_empty (Check) field in DocType 'Custom Field' +#. Label of the fetch_if_empty (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Fetch on Save if Empty" +msgstr "Hent ved lagring hvis tom" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:61 +msgid "Fetching default Global Search documents." +msgstr "Henter standard globale søkedokumenter." + +#. Label of the field (Select) field in DocType 'Assignment Rule' +#. Label of the field (Select) field in DocType 'Document Naming Rule +#. Condition' +#. Label of the field (Select) field in DocType 'Bulk Update' +#. Label of the report_field (Select) field in DocType 'Number Card' +#. Label of the field (Select) field in DocType 'Onboarding Step' +#. Label of the fieldname (Select) field in DocType 'Web Form Field' +#. Label of the fieldname (Select) field in DocType 'Web Form List Column' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +#: frappe/core/doctype/permission_log/permission_log.js:12 +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/public/js/frappe/list/bulk_operations.js:327 +#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +msgid "Field" +msgstr "Felt" + +#: frappe/core/doctype/doctype/doctype.py:418 +msgid "Field \"route\" is mandatory for Web Views" +msgstr "Feltet \"route\" er obligatorisk for webvisninger" + +#: frappe/core/doctype/doctype/doctype.py:1527 +msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." +msgstr "Feltet «tittel» er obligatorisk hvis «Nettstedssøkefelt» er angitt." + +#: frappe/desk/doctype/bulk_update/bulk_update.js:17 +msgid "Field \"value\" is mandatory. Please specify value to be updated" +msgstr "Feltet \"verdi\" er påkrevet. Spesifiser verdien som skal oppdateres" + +#. Label of the description (Text) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Field Description" +msgstr "Feltbeskrivelse" + +#: frappe/core/doctype/doctype/doctype.py:1078 +msgid "Field Missing" +msgstr "Felt mangler" + +#. Label of the field_name (Data) field in DocType 'Property Setter' +#. Label of the field_name (Select) field in DocType 'Kanban Board' +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +msgid "Field Name" +msgstr "Feltnavn" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:141 +msgid "Field Orientation (Left-Right)" +msgstr "Feltorientering (venstre-høyre)" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:148 +msgid "Field Orientation (Top-Down)" +msgstr "Feltorientering (ovenfra og ned)" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:233 +#: frappe/public/js/print_format_builder/utils.js:69 +msgid "Field Template" +msgstr "Feltmal" + +#. Label of the fieldtype (Select) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/templates/form_grid/fields.html:40 +msgid "Field Type" +msgstr "Felttype" + +#: frappe/desk/reportview.py:202 +msgid "Field not permitted in query" +msgstr "Feltet er ikke tillatt i spørringen" + +#. 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 "Felt som representerer arbeidsflytstatusen for transaksjonen (hvis feltet ikke finnes, opprettes et nytt skjult tilpasset felt)" + +#. Label of the track_field (Select) field in DocType 'Milestone Tracker' +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Field to Track" +msgstr "Felt som skal spores" + +#: frappe/custom/doctype/property_setter/property_setter.py:51 +msgid "Field type cannot be changed for {0}" +msgstr "Felttypen kan ikke endres for {0}" + +#: frappe/database/database.py:919 +msgid "Field {0} does not exist on {1}" +msgstr "Feltet {0} finnes ikke på {1}" + +#: frappe/desk/form/meta.py:184 +msgid "Field {0} is referring to non-existing doctype {1}." +msgstr "Feltet {0} refererer til en ikke-eksisterende dokumenttype (DocType) {1}." + +#: frappe/public/js/frappe/form/form.js:1756 +msgid "Field {0} not found." +msgstr "Felt {0} ble ikke funnet." + +#: frappe/email/doctype/notification/notification.py:547 +msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" +msgstr "Feltet {0} på dokumentet {1} er verken et mobilnummerfelt eller en kunde- eller brukerlenke" + +#. Label of the fieldname (Data) field in DocType 'Report Column' +#. Label of the fieldname (Data) field in DocType 'Report Filter' +#. Label of the fieldname (Data) field in DocType 'Custom Field' +#. Label of the fieldname (Select) field in DocType 'DocType Layout Field' +#. Label of the fieldname (Select) field in DocType 'Form Tour Step' +#. Label of the fieldname (Select) field in DocType 'Webhook Data' +#. Label of the fieldname (Data) field in DocType 'Web Template Field' +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.js:120 +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/integrations/doctype/webhook_data/webhook_data.json +#: frappe/public/js/frappe/form/grid_row.js:455 +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Fieldname" +msgstr "Feltnavn" + +#: frappe/core/doctype/doctype/doctype.py:271 +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:1077 +msgid "Fieldname called {0} must exist to enable autonaming" +msgstr "Feltnavn kalt {0} må finnes for å aktivere automatisk navngiving" + +#: frappe/database/schema.py:131 frappe/database/schema.py:408 +msgid "Fieldname is limited to 64 characters ({0})" +msgstr "Feltnavn er begrenset til 64 tegn ({0})" + +#: frappe/custom/doctype/custom_field/custom_field.py:197 +msgid "Fieldname not set for Custom Field" +msgstr "Feltnavn ikke angitt for egendefinert felt" + +#: frappe/custom/doctype/custom_field/custom_field.js:107 +msgid "Fieldname which will be the DocType for this link field." +msgstr "Feltnavn som vil bli dokumenttype (DocType) for dette koblingsfeltet." + +#: frappe/public/js/form_builder/store.js:175 +msgid "Fieldname {0} appears multiple times" +msgstr "Feltnavnet {0} vises flere ganger" + +#: frappe/database/schema.py:398 +msgid "Fieldname {0} cannot have special characters like {1}" +msgstr "Feltnavn {0} kan ikke inneholde spesialtegn som {1}" + +#: frappe/core/doctype/doctype/doctype.py:1921 +msgid "Fieldname {0} conflicting with meta object" +msgstr "Feltnavn {0} konflikterer med metaobjekt" + +#: frappe/core/doctype/doctype/doctype.py:497 +#: frappe/public/js/form_builder/utils.js:302 +msgid "Fieldname {0} is restricted" +msgstr "Feltnavnet {0} er opptatt (reservert av systemet)" + +#. Label of the fields (Table) field in DocType 'DocType' +#. Label of the fields_section (Section Break) field in DocType 'DocType' +#. Label of the fields_tab (Tab Break) field in DocType 'DocType' +#. Label of the fields_section_break (Section Break) field in DocType +#. 'Customize Form' +#. Label of the fields (Table) field in DocType 'Customize Form' +#. Label of the fields (Table) field in DocType 'DocType Layout' +#. Label of the fields (Code) field in DocType 'Kanban Board' +#. Label of the fields_html (HTML) field in DocType 'List View Settings' +#. Label of the fields (Code) field in DocType 'List View Settings' +#. Label of the fields (Small Text) field in DocType 'Personal Data Deletion +#. Step' +#. Label of the fields (Table) field in DocType 'Web Template' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +#: frappe/public/js/frappe/list/list_settings.js:133 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +#: frappe/website/doctype/web_template/web_template.json +msgid "Fields" +msgstr "Felt" + +#. Label of the fields_multicheck (HTML) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Fields Multicheck" +msgstr "Skjekk av flere felt" + +#: frappe/core/doctype/file/file.py:431 +msgid "Fields `file_name` or `file_url` must be set for File" +msgstr "Feltene `file_name` eller `file_url` må angis for fil" + +#: frappe/model/db_query.py:146 +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:613 +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" + +#. 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 "Felt atskilt med komma (,) vil bli inkludert i «Søk etter»-listen i søkedialogboksen." + +#. Label of the fieldtype (Select) field in DocType 'Report Column' +#. Label of the fieldtype (Select) field in DocType 'Report Filter' +#. Label of the fieldtype (Data) field in DocType 'Form Tour Step' +#. Label of the fieldtype (Select) field in DocType 'Web Form Field' +#. Label of the fieldtype (Data) field in DocType 'Web Form List Column' +#. Label of the fieldtype (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Fieldtype" +msgstr "Felttype" + +#: frappe/custom/doctype/custom_field/custom_field.py:193 +msgid "Fieldtype cannot be changed from {0} to {1}" +msgstr "Felttypen kan ikke endres fra {0} til {1}" + +#: frappe/custom/doctype/customize_form/customize_form.py:593 +msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" +msgstr "Felttypen kan ikke endres fra {0} til {1} i rad {2}" + +#. Label of a shortcut in the Tools Workspace +#. Name of a DocType +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/file/file.json +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "File" +msgstr "Fil" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 +msgid "File \"{0}\" was skipped because of invalid file type" +msgstr "Filen «{0}» ble hoppet over på grunn av ugyldig filtype" + +#: frappe/core/doctype/file/utils.py:128 +msgid "File '{0}' not found" +msgstr "Filen '{0}' ble ikke funnet" + +#. Label of the private_file_section (Section Break) field in DocType 'Access +#. Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "File Information" +msgstr "Filinformasjon" + +#: frappe/public/js/frappe/views/file/file_view.js:74 +msgid "File Manager" +msgstr "Filbehandler" + +#. Label of the file_name (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "File Name" +msgstr "Filnavn" + +#. Label of the file_size (Int) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "File Size" +msgstr "Filstørrelse" + +#. Label of the section_break_ryki (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "File Storage" +msgstr "Fillagring" + +#. Label of the file_type (Data) field in DocType 'Access Log' +#. Label of the file_type (Select) field in DocType 'Data Export' +#. Label of the file_type (Data) field in DocType 'File' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/data_export/data_export.json +#: frappe/core/doctype/file/file.json +#: frappe/public/js/frappe/data_import/data_exporter.js:19 +msgid "File Type" +msgstr "Filtype" + +#. Label of the file_url (Code) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "File URL" +msgstr "Filens URL" + +#: frappe/desk/page/backups/backups.py:107 +msgid "File backup is ready" +msgstr "Sikkerhetskopiering av filer er klar" + +#: frappe/core/doctype/file/file.py:649 +msgid "File name cannot have {0}" +msgstr "Filnavnet kan ikke ha {0}" + +#: frappe/utils/csvutils.py:28 +msgid "File not attached" +msgstr "Fil ikke vedlagt" + +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 +#: frappe/utils/file_manager.py:221 +msgid "File size exceeded the maximum allowed size of {0} MB" +msgstr "Filstørrelsen oversteg den maksimalt tillatte størrelsen på {0} MB" + +#: frappe/public/js/frappe/request.js:198 +msgid "File too big" +msgstr "Filen er for stor" + +#: frappe/core/doctype/file/file.py:390 +msgid "File type of {0} is not allowed" +msgstr "Filtypen {0} er ikke tillatt" + +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 +msgid "File {0} does not exist" +msgstr "DocType {0} finnes ikke" + +#. Label of a Link in the Tools Workspace +#. Label of the files_tab (Tab Break) field in DocType 'System Settings' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Files" +msgstr "Filer" + +#: frappe/core/doctype/prepared_report/prepared_report.js:8 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: frappe/desk/doctype/number_card/number_card.js: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:969 +#: frappe/public/js/frappe/ui/filters/filter_list.js:134 +#: frappe/website/doctype/web_form/web_form.js:197 +msgid "Filter" +msgstr "Filter" + +#: frappe/public/js/frappe/list/list_sidebar.html:36 +msgid "Filter By" +msgstr "Filtrer etter" + +#. 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 "Filtrerdata" + +#. Label of the filter_list (HTML) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Filter List" +msgstr "Filterliste" + +#. 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 "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:33 +msgid "Filter Name" +msgstr "Navn på filter" + +#. Label of the filter_values (HTML) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Filter Values" +msgstr "Filterverdier" + +#: frappe/database/query.py:360 +msgid "Filter condition missing after operator: {0}" +msgstr "Filterbetingelse mangler etter operatoren: {0}" + +#: frappe/database/query.py:427 +msgid "Filter fields cannot contain backticks (`)." +msgstr "Filterfelt kan ikke inneholde backticks (`)." + +#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 +msgid "Filter..." +msgstr "Filter..." + +#. Label of the filtered_by (Data) field in DocType 'Personal Data Deletion +#. Step' +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Filtered By" +msgstr "Filtrert etter" + +#: frappe/public/js/frappe/data_import/data_exporter.js:33 +msgid "Filtered Records" +msgstr "Filtrerte poster" + +#: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 +msgid "Filtered by \"{0}\"" +msgstr "Filtrert etter «{0}»" + +#. Label of the filters (Code) field in DocType 'Access Log' +#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report' +#. Label of the filters (Small Text) field in DocType 'Prepared Report' +#. Label of the filters_section (Section Break) field in DocType 'Report' +#. Label of the filters (Table) field in DocType 'Report' +#. Label of the filters_section (Section Break) field in DocType 'Dashboard +#. Chart' +#. Label of the filters (Code) field in DocType 'Kanban Board' +#. Label of the filters (Long Text) field in DocType 'List Filter' +#. Label of the filters (Text) field in DocType 'Auto Email Report' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/notification/notification.json +msgid "Filters" +msgstr "Filtre" + +#. Label of the filters_config (Code) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Filters Configuration" +msgstr "Konfigurasjon av filtre" + +#. 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 "Filtervisning" + +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "Filtereditor" + +#. Label of the filters_json (Code) field in DocType 'Dashboard Chart' +#. Label of the filters_json (Code) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Filters JSON" +msgstr "Filtre JSON" + +#. Label of the filters_section (Section Break) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Filters Section" +msgstr "Filterseksjon" + +#: frappe/public/js/frappe/form/controls/link.js:514 +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" + +#. 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 "Filtre vil være tilgjengelige via filtre.

    Send utdata som resultat = [resultat], eller for gammel stil data = [kolonner], [resultat]" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:133 +msgid "Filters {0}" +msgstr "Filtre {0}" + +#: frappe/public/js/frappe/views/reports/report_view.js:1429 +msgid "Filters:" +msgstr "Filtre:" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 +msgid "Find '{0}' in ..." +msgstr "Finn '{0}' i ..." + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 +msgid "Find {0} in {1}" +msgstr "Finn {0} i {1}" + +#. Option for the 'Status' (Select) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Finished" +msgstr "Fullført" + +#. Label of the report_end_time (Datetime) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Finished At" +msgstr "Fullført den" + +#. Label of the first_day_of_the_week (Select) field in DocType 'Language' +#. Label of the first_day_of_the_week (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "First Day of the Week" +msgstr "Første dagen i uken" + +#. Label of the first_name (Data) field in DocType 'Contact' +#. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 +msgid "First Name" +msgstr "Fornavn" + +#. 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 "Første suksessmelding" + +#: frappe/core/doctype/data_export/exporter.py:185 +msgid "First data column must be blank." +msgstr "Første datakolonne må være tom." + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:7 +msgid "First set the name and save the record." +msgstr "Angi først navnet, så lagre oppføringen." + +#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:304 +msgid "Fit" +msgstr "Tilpass" + +#. Label of the flag (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +msgid "Flag" +msgstr "Flagg" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Float" +msgstr "Flyt" + +#. Label of the float_precision (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Float Precision" +msgstr "Flytpresisjon" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Fold" +msgstr "Fold" + +#: frappe/core/doctype/doctype/doctype.py:1451 +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:1449 +msgid "Fold must come before a Section Break" +msgstr "Fold må komme før et seksjonsskift" + +#. Label of the folder (Link) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Folder" +msgstr "Mappe" + +#. Label of the folder_name (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "Folder Name" +msgstr "Mappenavn" + +#: frappe/public/js/frappe/views/file/file_view.js:100 +msgid "Folder name should not include '/' (slash)" +msgstr "Mappenavnet skal ikke inneholde '/' (skråstrek)" + +#: frappe/core/doctype/file/file.py:497 +msgid "Folder {0} is not empty" +msgstr "Mappen {0} er ikke tom" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Folio" +msgstr "Folio" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:106 +#: frappe/public/js/frappe/form/toolbar.js:879 +msgid "Follow" +msgstr "Følg" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:101 +msgid "Followed by" +msgstr "Fulgt av" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 +msgid "Following Report Filters have missing values:" +msgstr "Følgende rapportfiltre mangler verdier:" + +#: frappe/desk/form/document_follow.py:63 +msgid "Following document {0}" +msgstr "Følgende dokument {0}" + +#: frappe/website/doctype/web_form/web_form.py:108 +msgid "Following fields are missing:" +msgstr "Følgende felt mangler:" + +#: frappe/public/js/frappe/ui/field_group.js:139 +msgid "Following fields have invalid values:" +msgstr "Følgende felt har ugyldige verdier:" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:358 +msgid "Following fields have missing values" +msgstr "Følgende felt mangler verdier" + +#: frappe/public/js/frappe/ui/field_group.js:126 +msgid "Following fields have missing values:" +msgstr "Følgende felt mangler verdier:" + +#. Label of the font (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Font" +msgstr "Font" + +#. Label of the font_properties (Data) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Font Properties" +msgstr "Egenskaper for fonter" + +#. Label of the font_size (Int) field in DocType 'Print Format' +#. Label of the font_size (Float) field in DocType 'Print Settings' +#. Label of the font_size (Data) field in DocType 'Website Theme' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:45 +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Font Size" +msgstr "Skriftstørrelse" + +#. Label of the section_break_8 (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Fonts" +msgstr "Fonter" + +#. Label of the set_footer (Section Break) field in DocType 'Email Account' +#. Label of the footer_section (Section Break) field in DocType 'Letter Head' +#. Label of the footer (Text Editor) field in DocType 'About Us Settings' +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#. Label of the footer_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer" +msgstr "Bunnfelt" + +#. 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 "Bunntekst «Drevet av»" + +#. Label of the footer_source (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer Based On" +msgstr "Bunnfelt basert på" + +#. Label of the footer (Text Editor) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Footer Content" +msgstr "Innhold i bunntekst" + +#. 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 "Detaljer i bunntekst" + +#. Label of the footer (HTML Editor) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer HTML" +msgstr "HTML for bunntekst" + +#: frappe/printing/doctype/letter_head/letter_head.py:81 +msgid "Footer HTML set from attachment {0}" +msgstr "Bunntekst-HTML satt fra vedlegg {0}" + +#. Label of the footer_image_section (Section Break) field in DocType 'Letter +#. Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer Image" +msgstr "Bilde i bunntekst" + +#. 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 "Elementer i bunnteksten" + +#. Label of the footer_logo (Attach Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer Logo" +msgstr "Bunntekstlogo" + +#. Label of the footer_script (Code) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer Script" +msgstr "Bunntekstskript" + +#. Label of the footer_template (Link) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer Template" +msgstr "Mal for bunntekst" + +#. 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 "Verdier for bunntekstmal" + +#: frappe/printing/page/print/print.js:129 +msgid "Footer might not be visible as {0} option is disabled" +msgstr "Bunnteksten er kanskje ikke synlig fordi {0} -alternativet er deaktivert" + +#. Description of the 'Footer HTML' (HTML Editor) field in DocType 'Letter +#. Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer will display correctly only in PDF" +msgstr "Bunnteksten vises riktig kun i PDF" + +#. Label of the for_doctype (Link) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "For DocType" +msgstr "For dokumenttype (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 "For lenke (DocType) / handling (DocType)" + +#. Label of the for_document (Dynamic Link) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "For Document" +msgstr "For dokument" + +#: frappe/core/doctype/user_permission/user_permission_list.js:155 +msgid "For Document Type" +msgstr "For dokumenttype (DocType)" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:566 +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' +#: frappe/core/doctype/user_permission/user_permission_list.js:10 +#: frappe/core/doctype/user_permission/user_permission_list.js:148 +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/workspace/workspace.json +msgid "For User" +msgstr "For bruker" + +#. Label of the for_value (Dynamic Link) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "For Value" +msgstr "For verdi" + +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 +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 +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}" + +#. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "For example: {} Open" +msgstr "For eksempel: {} Åpen" + +#. 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 "For hjelp, se Klientskript-API og eksempler" + +#: frappe/integrations/doctype/google_settings/google_settings.js:7 +msgid "For more information, {0}." +msgstr "For mer informasjon, {0}." + +#. Description of the 'Email To' (Small Text) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "For multiple addresses, enter the address on different line. e.g. test@test.com ⏎ test1@test.com" +msgstr "For flere adresser, skriv inn adressen på forskjellige linjer. f.eks. test@test.com ⏎ test1@test.com" + +#: frappe/core/doctype/data_export/exporter.py:197 +msgid "For updating, you can update only selective columns." +msgstr "Ved oppdatering kan du bare oppdatere enkelte kolonner." + +#: frappe/core/doctype/doctype/doctype.py:1765 +msgid "For {0} at level {1} in {2} in row {3}" +msgstr "For {0} på nivå {1} i {2} på rad {3}" + +#. Label of the force (Check) field in DocType 'Package Import' +#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth +#. Provider Settings' +#: frappe/core/doctype/package_import/package_import.json +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +msgid "Force" +msgstr "Tving" + +#. Label of the force_re_route_to_default_view (Check) field in DocType +#. 'DocType' +#. Label of the force_re_route_to_default_view (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Force Re-route to Default View" +msgstr "Tving omdirigering til standardvisning" + +#. Label of the force_show (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Force Show" +msgstr "Force Show" + +#: frappe/core/doctype/rq_job/rq_job.js:13 +msgid "Force Stop job" +msgstr "Tving avslutning av jobb" + +#. Label of the force_user_to_reset_password (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Force User to Reset Password" +msgstr "Tving brukeren til å tilbakestille passord" + +#. 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 "Tving nettopptaksmodus for opplastinger" + +#: frappe/www/login.html:37 +msgid "Forgot Password?" +msgstr "Glemt passord?" + +#. Label of the form_builder_tab (Tab Break) field in DocType 'DocType' +#. Option for the 'Apply To' (Select) field in DocType 'Client Script' +#. Label of the form_tab (Tab Break) field in DocType 'Customize Form' +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Label of the form_tab (Tab Break) field in DocType 'Web Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/printing/page/print/print.js:96 +#: frappe/website/doctype/web_form/web_form.json +msgid "Form" +msgstr "Skjema" + +#. Label of the form_builder (HTML) field in DocType 'DocType' +#. Label of the form_builder (HTML) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Form Builder" +msgstr "Skjemabygger" + +#. Label of the form_dict (Code) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Form Dict" +msgstr "Skjemaordbok" + +#. Label of the form_settings_section (Section Break) field in DocType +#. 'DocType' +#. Label of the form_settings_section (Section Break) field in DocType 'User' +#. Label of the form_settings_section (Section Break) field in DocType +#. 'Customize Form' +#. Label of the form_settings_section (Section Break) field in DocType 'Web +#. Form' +#: frappe/core/doctype/doctype/doctype.json frappe/core/doctype/user/user.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Form Settings" +msgstr "Skjemainnstillinger" + +#. Name of a DocType +#. Label of the form_tour (Link) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Form Tour" +msgstr "Skjemaguide" + +#. Name of a DocType +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Form Tour Step" +msgstr "Trinn i skjemaguide" + +#. Option for the 'Request Structure' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Form URL-Encoded" +msgstr "Skjema URL-kodet" + +#. Label of the format (Data) field in DocType 'Workspace Shortcut' +#. Label of the format (Select) field in DocType 'Auto Email Report' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:565 +msgid "Format" +msgstr "Format" + +#. Label of the format_data (Code) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Format Data" +msgstr "Formater data" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "Annenhver uke" + +#: frappe/core/doctype/communication/communication.js:70 +msgid "Forward" +msgstr "Videresend" + +#. 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 "Videresend til e-postadresse" + +#. Label of the fraction (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Fraction" +msgstr "Brøk" + +#. Label of the fraction_units (Int) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Fraction Units" +msgstr "Brøkenheter" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/www/login.html:64 frappe/www/login.html:162 frappe/www/login.py:53 +#: frappe/www/login.py:153 +msgid "Frappe" +msgstr "Frappe" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "Frappe Blog" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "Frappe Forum" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 +msgid "Frappe Framework" +msgstr "Frappe Framework" + +#: frappe/public/js/frappe/ui/theme_switcher.js:59 +msgid "Frappe Light" +msgstr "Frappe Light" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Frappe Mail" +msgstr "Frappe Mail" + +#: frappe/email/doctype/email_account/email_account.py:547 +msgid "Frappe Mail OAuth Error" +msgstr "OAuth feil for Frappe Mail" + +#. Label of the frappe_mail_site (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Frappe Mail Site" +msgstr "Frappe-site for e-post" + +#. Label of a standard help item +#. Type: Route +#: frappe/hooks.py +msgid "Frappe Support" +msgstr "Frappe-støtte" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Frappe page builder using components" +msgstr "Frappe-sidebygger med bruk av komponenter" + +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:112 +msgctxt "Image Cropper" +msgid "Free" +msgstr "Gratis" + +#. Label of the frequency (Select) field in DocType 'Auto Repeat' +#. Label of the frequency (Select) field in DocType 'Scheduled Job Type' +#. Label of the document_follow_frequency (Select) field in DocType 'User' +#. Label of the frequency (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:5 +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:395 +msgid "Frequency" +msgstr "Frekvens" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the friday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Friday" +msgstr "Fredag" + +#. Label of the sender (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/permission_log/permission_log.js:12 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:70 +msgid "From" +msgstr "Fra" + +#: frappe/public/js/frappe/views/communication.js:197 +msgctxt "Email Sender" +msgid "From" +msgstr "Fra" + +#. Label of the from_date (Date) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/report/website_analytics/website_analytics.js:8 +msgid "From Date" +msgstr "Fra dato" + +#. 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 "Felt for fradato" + +#: frappe/public/js/frappe/views/reports/query_report.js:1848 +msgid "From Document Type" +msgstr "Fra dokumenttype (DocType)" + +#. Label of the sender_full_name (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "From Full Name" +msgstr "Fra fullt navn" + +#. Label of the from_user (Link) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "From User" +msgstr "Fra bruker" + +#: frappe/public/js/frappe/utils/diffview.js:31 +msgid "From version" +msgstr "Fra versjon" + +#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Full" +msgstr "Full" + +#. Label of the full_name (Data) field in DocType 'Contact' +#. Label of the full_name (Data) field in DocType 'Activity Log' +#. Label of the full_name (Data) field in DocType 'User' +#. Label of the full_name (Data) field in DocType 'About Us Team Member' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:479 +#: frappe/templates/signup.html:4 +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +msgid "Full Name" +msgstr "Fullt navn" + +#: frappe/printing/page/print/print.js:80 +#: frappe/public/js/frappe/form/templates/print_layout.html:42 +msgid "Full Page" +msgstr "Hel side" + +#. Label of the full_width (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Full Width" +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/widgets/widget_dialog.js:699 +msgid "Function" +msgstr "Funksjon" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:706 +msgid "Function Based On" +msgstr "Funksjon basert på" + +#: frappe/__init__.py:466 +msgid "Function {0} is not whitelisted." +msgstr "Funksjon {0} er ikke hvitelistet." + +#: frappe/database/query.py:1419 +msgid "Function {0} requires arguments but none were provided" +msgstr "Funksjon {0} krever argumenter, men ingen ble oppgitt" + +#: frappe/public/js/frappe/views/treeview.js:419 +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:291 +msgid "Fw: {0}" +msgstr "Fw: {0}" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "GET" +msgstr "GET" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "GMail" +msgstr "Gmail" + +#. Option for the 'License Type' (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "GNU Affero General Public License" +msgstr "GNU Affero General Public License" + +#. Option for the 'License Type' (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "GNU General Public License" +msgstr "GNU General Public License" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/public/js/frappe/views/gantt/gantt_view.js:10 +msgid "Gantt" +msgstr "Gantt" + +#: frappe/public/js/frappe/list/base_list.js:205 +msgid "Gantt View" +msgstr "Gantt-visning" + +#. Label of the gender (Link) field in DocType 'Contact' +#. Name of a DocType +#. Label of the gender (Data) field in DocType 'Gender' +#. Label of the gender (Link) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/gender/gender.json +#: frappe/core/doctype/user/user.json +msgid "Gender" +msgstr "Kjønn" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:32 +msgid "Genderqueer" +msgstr "Genderqueer" + +#: frappe/www/contact.html:29 +msgid "General" +msgstr "Generell" + +#. Label of the generate_keys (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Generate Keys" +msgstr "Generer nøkler" + +#: frappe/public/js/frappe/views/reports/query_report.js:882 +msgid "Generate New Report" +msgstr "Generer ny rapport" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:394 +msgid "Generate Random Password" +msgstr "Generer tilfeldig passord" + +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "Lag separate dokumenter for hver tilordnet person" + +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1827 +msgid "Generate Tracking URL" +msgstr "Generer sporings-URL" + +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Geoapify" +msgstr "Geopify" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Geolocation" +msgstr "Geolokalisering" + +#. Name of a DocType +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Geolocation Settings" +msgstr "Innstillinger for geolokalisering" + +#: frappe/email/doctype/notification/notification.js:226 +msgid "Get Alerts for Today" +msgstr "Få varsler for i dag" + +#: frappe/desk/page/backups/backups.js:21 +msgid "Get Backup Encryption Key" +msgstr "Få krypteringsnøkkel for sikkerhetskopiering" + +#. Label of the get_contacts (Button) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Get Contacts" +msgstr "Legg til kontakter" + +#: frappe/website/doctype/web_form/web_form.js:93 +msgid "Get Fields" +msgstr "Hent felt" + +#: frappe/printing/doctype/letter_head/letter_head.js:32 +msgid "Get Header and Footer wkhtmltopdf variables" +msgstr "Hent wkhtmltopdf-variabler for topp- og bunntekst " + +#: frappe/public/js/frappe/form/multi_select_dialog.js:86 +msgid "Get Items" +msgstr "Hent elementer" + +#: frappe/integrations/doctype/connected_app/connected_app.js:6 +msgid "Get OpenID Configuration" +msgstr "Hent OpenID-konfigurasjon" + +#: frappe/www/printview.html:22 +msgid "Get PDF" +msgstr "Hent PDF" + +#. Description of the 'Try a Naming Series' (Data) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Get a preview of generated names with a series." +msgstr "Få en forhåndsvisning av genererte navn med en serie." + +#: frappe/public/js/frappe/list/list_sidebar.js:305 +msgid "Get more insights with" +msgstr "Få mer innsikt med" + +#. 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 "Få varsel når vi mottar en e-post om et av dokumentene som er tilordnet deg." + +#. 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 "Få din globalt anerkjente avatar fra Gravatar.com" + +#. Label of the git_branch (Data) field in DocType 'Installed Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Git Branch" +msgstr "Git-gren" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "GitHub" +msgstr "GitHub" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Github flavoured markdown syntax" +msgstr "Github-tilpasset markdown-syntaks" + +#. Name of a DocType +#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json +msgid "Global Search DocType" +msgstr "Globalt søk (DocType)" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.js:24 +msgid "Global Search Document Types Reset." +msgstr "Tilbakestill dokumenttyper (DocType) for globalt søk." + +#. Name of a DocType +#: frappe/desk/doctype/global_search_settings/global_search_settings.json +msgid "Global Search Settings" +msgstr "Globale søkeinnstillinger" + +#: frappe/public/js/frappe/ui/keyboard.js:122 +msgid "Global Shortcuts" +msgstr "Globale hurtigtaster" + +#. Label of the global_unsubscribe (Check) field in DocType 'Email Unsubscribe' +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +msgid "Global Unsubscribe" +msgstr "Global avmelding" + +#: frappe/public/js/frappe/form/toolbar.js:843 +msgid "Go" +msgstr "Gå" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:241 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:321 +msgid "Go Back" +msgstr "Gå tilbake" + +#: frappe/desk/doctype/notification_settings/notification_settings.js:17 +msgid "Go to Notification Settings List" +msgstr "Gå til listen over varslingsinnstillinger" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Go to Page" +msgstr "Gå til side" + +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:41 +msgid "Go to Workflow" +msgstr "Gå til Arbeidsflyt" + +#: frappe/desk/doctype/workspace/workspace.js:18 +msgid "Go to Workspace" +msgstr "Gå til arbeidsområde" + +#: frappe/public/js/frappe/form/form.js:144 +msgid "Go to next record" +msgstr "Gå til neste oppføring" + +#: frappe/public/js/frappe/form/form.js:154 +msgid "Go to previous record" +msgstr "Gå til tidligere oppføring" + +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:53 +msgid "Go to the document" +msgstr "Gå til dokumentet" + +#. 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 "Gå til denne URL-en etter at du har fullført skjemaet" + +#: frappe/core/doctype/doctype/doctype.js:54 +#: frappe/custom/doctype/client_script/client_script.js:12 +msgid "Go to {0}" +msgstr "Gå til {0}" + +#: frappe/core/doctype/data_import/data_import.js:92 +#: frappe/core/doctype/doctype/doctype.js:55 +#: frappe/custom/doctype/customize_form/customize_form.js:104 +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:42 +#: frappe/workflow/doctype/workflow/workflow.js:44 +msgid "Go to {0} List" +msgstr "Gå til {0} liste" + +#: frappe/core/doctype/page/page.js:11 +msgid "Go to {0} Page" +msgstr "Gå til {0} side" + +#: frappe/utils/goal.py:115 frappe/utils/goal.py:122 +msgid "Goal" +msgstr "Mål" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Google" +msgstr "Google" + +#. Label of the google_analytics_id (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Google Analytics ID" +msgstr "Google Analytics ID" + +#. Label of the google_analytics_anonymize_ip (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Google Analytics anonymise IP" +msgstr "Google Analytics anonymiserer IP" + +#. Label of the sb_00 (Section Break) field in DocType 'Event' +#. Label of the google_calendar (Link) field in DocType 'Event' +#. Name of a DocType +#. Label of the sb_00 (Section Break) field in DocType 'Google Calendar' +#. Label of a Link in the Integrations Workspace +#: frappe/desk/doctype/event/event.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Calendar" +msgstr "Google Kalender" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:266 +msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." +msgstr "Google Kalender – Kunne ikke opprette kalender for {0}, feilkode {1}." + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:610 +msgid "Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}." +msgstr "Google Kalender – Kunne ikke slette hendelsen {0} fra Google Kalender, feilkode {1}." + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:305 +msgid "Google Calendar - Could not fetch event from Google Calendar, error code {0}." +msgstr "Google Kalender – Kunne ikke hente hendelsen fra Google Kalender, feilkode {0}." + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:252 +msgid "Google Calendar - Could not find Calendar for {0}, error code {1}." +msgstr "Google Kalender - Kunne ikke finne kalender for {0}, feilkode {1}." + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:232 +msgid "Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}." +msgstr "Google Kalender - Kunne ikke sette inn kontakt i Google Kontakter {0}, feilkode {1}." + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:496 +msgid "Google Calendar - Could not insert event in Google Calendar {0}, error code {1}." +msgstr "Google Kalender – Kunne ikke sette inn hendelse i Google Kalender {0}, feilkode {1}." + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:580 +msgid "Google Calendar - Could not update Event {0} in Google Calendar, error code {1}." +msgstr "Google Kalender - Kunne ikke oppdatere hendelsen {0} i Google Kalender, feilkode {1}." + +#. Label of the google_calendar_event_id (Data) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Google Calendar Event ID" +msgstr "Hendelses-ID i Google Kalender" + +#. 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 Kalender-ID" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:181 +msgid "Google Calendar has been configured." +msgstr "Google Kalender er konfigurert." + +#. Label of the sb_00 (Section Break) field in DocType 'Contact' +#. Label of the google_contacts (Link) field in DocType 'Contact' +#. Name of a DocType +#. Label of the sb_00 (Section Break) field in DocType 'Google Contacts' +#. Label of a Link in the Integrations Workspace +#: frappe/contacts/doctype/contact/contact.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Contacts" +msgstr "Google Kontakter " + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:137 +msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}." +msgstr "Google Kontakter – Kunne ikke synkronisere kontakter fra Google Kontakter {0}, feilkode {1}." + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:294 +msgid "Google Contacts - Could not update contact in Google Contacts {0}, error code {1}." +msgstr "Google Kontakter - Kunne ikke oppdatere kontakten i Google Kontakter {0}, feilkode {1}." + +#. Label of the google_contacts_id (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Google Contacts Id" +msgstr "Google Kontakter-ID" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 +msgid "Google Drive" +msgstr "Google Disk" + +#. Label of the section_break_7 (Section Break) field in DocType 'Google +#. Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "Google Drive Picker" +msgstr "Google Disk -velger" + +#. 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 Disk -velger aktivert" + +#. Label of the font (Data) field in DocType 'Print Format' +#. Label of the google_font (Data) field in DocType 'Website Theme' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:28 +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Google Font" +msgstr "Google Font" + +#. Label of the google_meet_link (Small Text) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Google Meet Link" +msgstr "Google Meet Link" + +#. Label of a Card Break in the Integrations Workspace +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Services" +msgstr "Google-tjenester" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Settings" +msgstr "Google-innstillinger" + +#: frappe/utils/csvutils.py:226 +msgid "Google Sheets URL is invalid or not publicly accessible." +msgstr "Google Sheets URL er ugyldig eller ikke offentlig tilgjengelig." + +#: frappe/utils/csvutils.py:231 +msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." +msgstr "Google Sheets URL må ende med \"gid={number}\". Kopier og lim inn URL'en fra nettleserens adresselinje og prøv igjen." + +#. Label of the grant_type (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Grant Type" +msgstr "Tilskuddstype" + +#: frappe/public/js/frappe/form/dashboard.js:34 +#: frappe/public/js/frappe/form/templates/form_dashboard.html:10 +msgid "Graph" +msgstr "Diagram" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Gray" +msgstr "Grå" + +#: frappe/public/js/frappe/ui/filters/filter.js:23 +msgid "Greater Than" +msgstr "Større enn" + +#: frappe/public/js/frappe/ui/filters/filter.js:25 +msgid "Greater Than Or Equal To" +msgstr "Større enn eller lik" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Green" +msgstr "Grønn" + +#: frappe/public/js/form_builder/components/controls/TableControl.vue:53 +msgid "Grid Empty State" +msgstr "Tom tabell" + +#. Label of the grid_page_length (Int) field in DocType 'DocType' +#. Label of the grid_page_length (Int) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Grid Page Length" +msgstr "Antall rader per side" + +#: frappe/public/js/frappe/ui/keyboard.js:127 +msgid "Grid Shortcuts" +msgstr "Tabell-snarveier" + +#. Label of the group (Data) field in DocType 'DocType Action' +#. Label of the group (Data) field in DocType 'DocType Link' +#. Label of the group (Data) field in DocType 'Website Sidebar Item' +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Group" +msgstr "Gruppe" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/report/website_analytics/website_analytics.js:32 +msgid "Group By" +msgstr "Gruppér etter" + +#. 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 "Gruppér etter basert på" + +#. 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 "Grupper etter type" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408 +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:752 +msgid "Group By must be a string" +msgstr "\"Grupper etter\" må være en streng" + +#. 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 "Objektklasse for gruppe" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Group your custom doctypes under modules" +msgstr "Grupper dine egendefinerte dokumenttyper (DocType) under moduler" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 +msgid "Grouped by {0}" +msgstr "Gruppert etter {0}" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "HEAD" +msgstr "HEAD" + +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "HERE" +msgstr "HERE" + +#. Option for the 'Time Format' (Select) field in DocType 'Language' +#. Option for the 'Time Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "HH:mm" +msgstr "HH:mm" + +#. Option for the 'Time Format' (Select) field in DocType 'Language' +#. Option for the 'Time Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "HH:mm:ss" +msgstr "HH:mm:ss" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the html_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Message Type' (Select) field in DocType 'Notification' +#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter +#. Head' +#. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' +#. Label of the html (Code) field in DocType 'Print Format' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/print_format_builder/Field.vue:86 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json +msgid "HTML" +msgstr "HTML" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "HTML Editor" +msgstr "HTML redigerer" + +#. Label of the page (HTML Editor) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "HTML Page" +msgstr "HTML side" + +#. 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 for overskriftsdelen. Valgfritt" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "HTML with jinja support" +msgstr "HTML med jinja-støtte" + +#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Half" +msgstr "Halv" + +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Half Yearly" +msgstr "Halvårlig" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/public/js/frappe/utils/common.js:402 +msgid "Half-yearly" +msgstr "Halvårlig" + +#. Label of the handled_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Handled Emails" +msgstr "Håndterte e-poster" + +#. Label of the has_attachment (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Has Attachment" +msgstr "Har vedlegg" + +#. Name of a DocType +#: frappe/core/doctype/has_domain/has_domain.json +msgid "Has Domain" +msgstr "Har domene" + +#. 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 "Har neste betingelse" + +#. Name of a DocType +#: frappe/core/doctype/has_role/has_role.json +msgid "Has Role" +msgstr "Har rolle" + +#. Label of the has_setup_wizard (Check) field in DocType 'Installed +#. Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Has Setup Wizard" +msgstr "Har oppsettveiviser" + +#. Label of the has_web_view (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Has Web View" +msgstr "Har nettvisning" + +#: frappe/templates/signup.html:19 +msgid "Have an account? Login" +msgstr "Har du en konto? Logg inn" + +#. Label of the header (Check) field in DocType 'SMS Parameter' +#. Label of the header_section (Section Break) field in DocType 'Letter Head' +#. Label of the header (HTML Editor) field in DocType 'Web Page' +#. Label of the header (HTML Editor) field in DocType 'Website Slideshow' +#: frappe/core/doctype/sms_parameter/sms_parameter.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Header" +msgstr "Topptekst" + +#. Label of the content (HTML Editor) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Header HTML" +msgstr "HTML-kode for topptekst" + +#: frappe/printing/doctype/letter_head/letter_head.py:69 +msgid "Header HTML set from attachment {0}" +msgstr "Topptekst-HTML satt fra vedlegg {0}" + +#. Label of the header_script (Code) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Header Script" +msgstr "Skript topptekst" + +#. Label of the sb2 (Section Break) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Header and Breadcrumbs" +msgstr "Topptekst og brødsmuler" + +#. 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 "Topptekst, Roboter" + +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "Header/Footer scripts can be used to add dynamic behaviours." +msgstr "Skript for topp- / bunntekst kan brukes til å legge til dynamisk atferd." + +#. Label of the webhook_headers (Table) field in DocType 'Webhook' +#. Label of the headers (Code) field in DocType 'Webhook Request Log' +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Headers" +msgstr "Meldingshoder" + +#: frappe/email/email_body.py:322 +msgid "Headers must be a dictionary" +msgstr "Meldingshoder må være en ordbok (dict)" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the heading (Data) field in DocType 'Contact Us Settings' +#. Label of the heading (Data) field in DocType 'Website Slideshow Item' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:609 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "Heading" +msgstr "Overskrift" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Heatmap" +msgstr "Varmekart" + +#: frappe/templates/emails/new_user.html:2 +msgid "Hello" +msgstr "Hei" + +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "Hei," + +#. Label of the help_section (Section Break) field in DocType 'Server Script' +#. Label of the help (HTML) field in DocType 'Property Setter' +#: frappe/core/doctype/server_script/server_script.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/public/js/frappe/form/templates/form_sidebar.html:41 +#: frappe/public/js/frappe/form/workflow.js:23 +#: frappe/public/js/frappe/ui/toolbar/navbar.html:87 +#: frappe/public/js/frappe/utils/help.js:27 +msgid "Help" +msgstr "Hjelp" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/workspace/website/website.json +msgid "Help Article" +msgstr "Hjelpeartikkel" + +#. Label of the help_articles (Int) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json +msgid "Help Articles" +msgstr "Hjelpeartikler" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/workspace/website/website.json +msgid "Help Category" +msgstr "Hjelpekategori" + +#. Label of the help_dropdown (Table) field in DocType 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +#: frappe/public/js/frappe/ui/toolbar/navbar.html:84 +msgid "Help Dropdown" +msgstr "Hjelp Dropdown" + +#. 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 "Hjelp HTML" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:149 +msgid "Help on Search" +msgstr "Hjelp med søk" + +#. Description of the 'Content' (Text Editor) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Help: To link to another record in the system, use \"/app/note/[Note Name]\" as the Link URL. (don't use \"http://\")" +msgstr "Hjelp: For å lenke til en annen oppføring i systemet, bruk «/app/note/[Notenavn]» som lenke-URL. (ikke bruk «http://»)" + +#. Label of the helpful (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Helpful" +msgstr "Nyttig" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Helvetica" +msgstr "Helvetica" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Helvetica Neue" +msgstr "Helvetica Neue" + +#: frappe/public/js/frappe/utils/utils.js:1824 +msgid "Here's your tracking URL" +msgstr "Her er sporings-URL-en din" + +#: frappe/www/qrcode.html:9 +msgid "Hi {0}" +msgstr "Hei {0}" + +#. Label of the hidden (Check) field in DocType 'DocField' +#. Label of the hidden (Check) field in DocType 'DocType Action' +#. Label of the hidden (Check) field in DocType 'DocType Link' +#. Label of the hidden (Check) field in DocType 'Navbar Item' +#. Label of the hidden (Check) field in DocType 'Custom Field' +#. Label of the hidden (Check) field in DocType 'Customize Form Field' +#. Label of the hidden (Check) field in DocType 'Desktop Icon' +#. Label of the hidden (Check) field in DocType 'Workspace Link' +#. Label of the hidden (Check) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:3 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Hidden" +msgstr "Skjult" + +#. Label of the section_break_13 (Section Break) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Hidden Fields" +msgstr "Skjulte felt" + +#: frappe/public/js/frappe/views/reports/query_report.js:1650 +msgid "Hidden columns include: {0}" +msgstr "Skjulte kolonner inkluderer: {0}" + +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/frappe/widgets/base_widget.js:46 +#: frappe/public/js/frappe/widgets/base_widget.js:178 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 +#: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 +msgid "Hide" +msgstr "Skjul" + +#. 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 "Skjul blokk" + +#. Label of the hide_border (Check) field in DocType 'DocField' +#. Label of the hide_border (Check) field in DocType 'Custom Field' +#. Label of the hide_border (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Hide Border" +msgstr "Skjul kantlinje" + +#. 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 "Skjul knapper" + +#. 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 "Skjul kopiering" + +#. Label of the hide_custom (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Hide Custom DocTypes and Reports" +msgstr "Skjul tilpassede dokumenttyper (DocType) og rapporter" + +#. Label of the hide_days (Check) field in DocType 'DocField' +#. Label of the hide_days (Check) field in DocType 'Custom Field' +#. Label of the hide_days (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Hide Days" +msgstr "Skjul dager" + +#. Label of the hide_descendants (Check) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_permission/user_permission_list.js:96 +msgid "Hide Descendants" +msgstr "Skjul etterkommere" + +#. Label of the hide_empty_read_only_fields (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Hide Empty Read-Only Fields" +msgstr "Skjul tomme skrivebeskyttede felt" + +#: frappe/www/error.html:62 +msgid "Hide Error" +msgstr "Skjul feil" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:488 +msgid "Hide Label" +msgstr "Skjul Etikett" + +#. Label of the hide_login (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Hide Login" +msgstr "Skjul pålogging" + +#: frappe/public/js/form_builder/form_builder.bundle.js:43 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 +msgid "Hide Preview" +msgstr "Skjul forhåndsvisning" + +#. 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 "Skjul knappene for Forrige, Neste og Lukk i dialogboksen for uthevinger." + +#: frappe/public/js/frappe/list/list_filter.js:94 +msgid "Hide Saved" +msgstr "Skjul lagret" + +#. Label of the hide_seconds (Check) field in DocType 'DocField' +#. Label of the hide_seconds (Check) field in DocType 'Custom Field' +#. Label of the hide_seconds (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Hide Seconds" +msgstr "Skjul sekunder" + +#. Label of the hide_toolbar (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Hide Sidebar, Menu, and Comments" +msgstr "Skjul sidefelt, meny og kommentarer" + +#. 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 "Skjul standardmeny" + +#: frappe/public/js/frappe/list/list_view.js:1851 +msgid "Hide Tags" +msgstr "Skjul stikkord" + +#: frappe/public/js/frappe/views/calendar/calendar.js:179 +msgid "Hide Weekends" +msgstr "Skjul helger" + +#. Description of the 'Hide Descendants' (Check) field in DocType 'User +#. Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "Hide descendant records of For Value." +msgstr "Skjul underordnede poster for For-verdi." + +#: frappe/public/js/frappe/form/layout.js:285 +msgid "Hide details" +msgstr "Skjul detaljer" + +#. Label of the hide_footer (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Hide footer" +msgstr "Skjul bunntekst" + +#. Label of the hide_footer_in_auto_email_reports (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Hide footer in auto email reports" +msgstr "Skjul bunntekst i automatiske e-postrapporter" + +#. 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 "Skjul registrering i bunntekst" + +#. Label of the hide_navbar (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Hide navbar" +msgstr "Skjul navigasjonsfelt" + +#. Option for the 'Priority' (Select) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:225 +msgid "High" +msgstr "Høy" + +#. 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 "Regelen med høyest prioritet vil bli brukt først" + +#. Label of the highlight (Text) field in DocType 'Company History' +#: frappe/website/doctype/company_history/company_history.json +msgid "Highlight" +msgstr "Uthevet" + +#: frappe/www/update-password.html:301 +msgid "Hint: Include symbols, numbers and capital letters in the password" +msgstr "Tips: Bruk symboler, tall og store bokstaver i passordet" + +#. Label of the home_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:38 +#: frappe/public/js/frappe/views/file/file_view.js:67 +#: frappe/public/js/frappe/views/file/file_view.js:88 +#: frappe/public/js/frappe/views/pageview.js:156 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:22 frappe/www/login.html:170 frappe/www/me.html:76 +#: frappe/www/message.html:29 +msgid "Home" +msgstr "Hjem" + +#. Label of the home_page (Data) field in DocType 'Role' +#. Label of the home_page (Data) field in DocType 'Website Settings' +#: frappe/core/doctype/role/role.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Home Page" +msgstr "Hjemmeside" + +#. Label of the home_settings (Code) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Home Settings" +msgstr "Innstillinger for startside" + +#: frappe/core/doctype/file/test_file.py:321 +#: frappe/core/doctype/file/test_file.py:323 +#: frappe/core/doctype/file/test_file.py:387 +msgid "Home/Test Folder 1" +msgstr "Home/Test Folder 1" + +#: frappe/core/doctype/file/test_file.py:376 +msgid "Home/Test Folder 1/Test Folder 3" +msgstr "Home/Test Folder 1/Test Folder 3" + +#: frappe/core/doctype/file/test_file.py:332 +msgid "Home/Test Folder 2" +msgstr "Home/Test Folder 2" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Frequency' (Select) field in DocType 'User' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user.json +msgid "Hourly" +msgstr "Hver time" + +#. 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 "Timelang" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Hourly Maintenance" +msgstr "Timebasert vedlikehold" + +#. Description of the 'Password Reset Link Generation Limit' (Int) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Hourly rate limit for generating password reset links" +msgstr "Maks antall tilbakestillingslenker for passord pr time" + +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "Timer" + +#. 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 "Hvordan skal denne valutaen formateres? Hvis ikke angitt, brukes systemets standardverdier" + +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "Menneskelig lesbart navn beregnet på visning for sluttbrukeren." + +#. Paragraph text in the Welcome Workspace Workspace +#: frappe/core/workspace/welcome_workspace/welcome_workspace.json +msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
    " +msgstr "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.
    " + +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 +#: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 +#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 +#: frappe/public/js/frappe/data_import/data_exporter.js:330 +#: frappe/public/js/frappe/data_import/data_exporter.js:345 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 +#: frappe/public/js/frappe/model/meta.js:200 +#: frappe/public/js/frappe/model/model.js:122 +msgid "ID" +msgstr "ID" + +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 +msgctxt "Label of name column in report" +msgid "ID" +msgstr "ID" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:169 +msgid "ID (name)" +msgstr "ID (navn)" + +#. 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 (navn) til enheten som egenskap skal angis for" + +#. 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 "ID-er må kun inneholde alfanumeriske tegn, ikke mellomrom, og må være unike." + +#. 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-detaljer" + +#. Label of the imap_folder (Data) field in DocType 'Communication' +#. Label of the imap_folder (Table) field in DocType 'Email Account' +#. Name of a DocType +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "IMAP Folder" +msgstr "IMAP-mappe" + +#. Label of the ip_address (Data) field in DocType 'Activity Log' +#. Label of the ip_address (Data) field in DocType 'Comment' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +msgid "IP Address" +msgstr "IP-adresse" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the icon (Data) field in DocType 'DocType' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the icon (Data) field in DocType 'Desktop Icon' +#. Label of the icon (Icon) field in DocType 'Workspace' +#. Label of the icon (Data) field in DocType 'Workspace Link' +#. Label of the icon (Data) field in DocType 'Workspace Shortcut' +#. Label of the icon (Data) field in DocType 'Social Login Key' +#. Label of the icon (Select) field in DocType 'Workflow State' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/public/js/frappe/views/workspace/workspace.js:458 +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Icon" +msgstr "Ikon" + +#. 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 "Ikonet vil vises på knappen" + +#. 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 "Identitetsdetaljer" + +#. Label of the idx (Int) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Idx" +msgstr "Idx" + +#. Description of the 'Apply Strict User Permissions' (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User" +msgstr "Hvis «Bruk strenge brukerrettigheter» er valgt, og det finnes en brukerrettighet definert for en dokumenttype (DocType) for en bruker, vil alle dokumenter der lenkefeltet er tomt, ikke bli vist til den brukeren" + +#. Description of the 'Don't Override Status' (Check) field in DocType +#. 'Workflow' +#. Description of the 'Don't Override Status' (Check) field in DocType +#. 'Workflow Document State' +#: frappe/workflow/doctype/workflow/workflow.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "If Checked workflow status will not override status in list view" +msgstr "Hvis avmerket arbeidsflytstatus ikke overstyrer statusen i listevisningen" + +#: frappe/core/doctype/doctype/doctype.py:1777 +#: 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 +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." + +#. 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 "Hvis dette er avmerket, blir alle andre arbeidsflyter inaktive." + +#. 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 "Hvis avmerket, vil negative numeriske verdier for valuta, antall eller antall vises som positive" + +#. 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 "Hvis avmerket, vil brukere ikke se dialogboksen \"Bekreft tilgang\"" + +#. 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 "Hvis deaktivert, vil denne rollen bli fjernet fra alle brukere." + +#. 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 "Hvis aktivert, kan brukeren logge inn fra hvilken som helst IP-adresse ved hjelp av tofaktorautentisering. Dette kan også angis for alle brukere i systeminnstillingene." + +#. Description of the 'Anonymous responses' (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "If enabled, all responses on the web form will be submitted anonymously" +msgstr "Hvis aktivert, vil alle svar på nettskjemaet registreres anonymt" + +#. Description of the 'Bypass restricted IP Address check If Two Factor Auth +#. Enabled' (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page" +msgstr "Hvis aktivert, kan alle brukere logge inn fra en hvilken som helst IP-adresse ved hjelp av tofaktorautentisering. Dette kan også angis kun for spesifikke brukere på brukersiden." + +#. 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 "Hvis aktivert, spores endringer i dokumentet og vises i tidslinjen" + +#. 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 "Hvis aktivert, spores dokumentvisninger. Dette kan skje flere ganger." + +#. 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 "Hvis aktivert, merkes dokumentet som sett første gang en bruker åpner det" + +#. 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 "Hvis aktivert, vil meldingen vises i notifikasjonene nedtrekksmenyen oppe til høyre i navigasjonslinjen." + +#. Description of the 'Enable Password Policy' (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 1 being very weak and 4 being very strong." +msgstr "Hvis aktivert, vil passordstyrken håndheves basert på verdien for minimum passordscore. Verdien 1 er veldig svak og 4 er veldig sterk." + +#. Description of the 'Bypass Two Factor Auth for users who login from +#. restricted IP Address' (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth" +msgstr "Hvis denne funksjonen er aktivert, vil brukere som logger inn fra en begrenset (tillatt) IP-adresse, ikke bli bedt om å bruke tofaktorautentisering" + +#. 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 "Hvis aktivert, vil brukere bli varslet hver gang de logger inn. Hvis ikke aktivert, vil brukere bare bli varslet én gang." + +#. 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 "Hvis den står tom, vil standard arbeidsområde være det sist besøkte arbeidsområdet" + +#. 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 "Hvis porten ikke er standard (f.eks. 587)" + +#. Description of the 'Port' (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "If non standard port (e.g. 587). If on Google Cloud, try port 2525." +msgstr "Hvis porten ikke er standard (f.eks. 587). Hvis du er på Google Cloud, prøv port 2525." + +#. Description of the 'Port' (Data) field in DocType 'Email Account' +#. Description of the 'Port' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)" +msgstr "Hvis porten ikke er standard (f.eks. POP3: 995/110, IMAP: 993/143)" + +#. Description of the 'Currency Precision' (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If not set, the currency precision will depend on number format" +msgstr "Hvis ikke angitt, vil valutapresisjonen avhenge av tallformatet" + +#. 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 "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." + +#. 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 +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." + +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "Hvis dette var en feil, eller du trenger tilgang igjen, kan du kontakte teamet ditt." + +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType +#. 'DocField' +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom +#. Field' +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType +#. 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "If unchecked, the value will always be re-fetched on save." +msgstr "Dersom ikke merket, vil verdien alltid hentes på nytt ved lagring." + +#. 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 "Hvis bruker er eieren" + +#: frappe/core/doctype/data_export/exporter.py:204 +msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted." +msgstr "Hvis du oppdaterer, velg «Overskriv», ellers slettes ikke eksisterende rader." + +#: frappe/core/doctype/data_export/exporter.py:188 +msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present." +msgstr "Hvis du laster opp nye poster, blir «Nummerserie» påkrevet, hvis den finnes." + +#: frappe/core/doctype/data_export/exporter.py:186 +msgid "If you are uploading new records, leave the \"name\" (ID) column blank." +msgstr "Hvis du laster opp nye poster, lar du kolonnen «navn» (ID) stå tom." + +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "Hvis du har spørsmål, kan du ta kontakt med systemadministratoren." + +#: frappe/utils/password.py:213 +msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." +msgstr "Hvis du nylig har gjenopprettet nettstedet, må du kanskje kopiere site_config.json som inneholder den opprinnelige krypteringsnøkkelen." + +#. 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 "Hvis du angir dette, vil dette elementet komme i en rullegardinmeny under den valgte overordnede." + +#: frappe/templates/emails/administrator_logged_in.html:3 +msgid "If you think this is unauthorized, please change the Administrator password." +msgstr "Hvis du tror at dette er uautorisert, må du endre administratorpassordet." + +#. Description of the 'Delimiter Options' (Data) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "If your CSV uses a different delimiter, add that character here, ensuring no spaces or additional characters are included." +msgstr "Hvis CSV-filen din bruker et annet skilletegn, legg til det tegnet her, og sørg for at det ikke er inkludert mellomrom eller ekstra tegn." + +#. 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 "Hvis dataene dine er i HTML, må du kopiere og lime inn den nøyaktige HTML-koden med taggene inkludert." + +#. Label of the ignore_user_permissions (Check) field in DocType 'DocField' +#. Label of the ignore_user_permissions (Check) field in DocType 'Custom Field' +#. Label of the ignore_user_permissions (Check) field in DocType 'Customize +#. Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Ignore User Permissions" +msgstr "Slett brukertillatelser" + +#. Label of the ignore_xss_filter (Check) field in DocType 'DocField' +#. Label of the ignore_xss_filter (Check) field in DocType 'Custom Field' +#. Label of the ignore_xss_filter (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Ignore XSS Filter" +msgstr "Ignorer XSS-filter" + +#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email +#. Account' +#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Ignore attachments over this size" +msgstr "Ignorer vedlegg over denne størrelsen" + +#. Label of the ignored_apps (Table) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Ignored Apps" +msgstr "Ignorerte apper" + +#: frappe/model/workflow.py:202 +msgid "Illegal Document Status for {0}" +msgstr "Ulovlig dokumentstatus for {0}" + +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 +msgid "Illegal SQL Query" +msgstr "Ulovlig SQL-spørring" + +#: frappe/utils/jinja.py:127 +msgid "Illegal template" +msgstr "Ulovlig mal" + +#. Label of the image (Attach Image) field in DocType 'Contact' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter +#. Head' +#. Label of the image (Attach Image) field in DocType 'Letter Head' +#. Label of the footer_image (Attach Image) field in DocType 'Letter Head' +#. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' +#. Label of the meta_image (Attach Image) field in DocType 'Web Page' +#. Label of the image (Attach) field in DocType 'Website Slideshow Item' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "Image" +msgstr "Bilde" + +#. 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 "Bildefelt" + +#. 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 "Bildehøyde" + +#. 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 "Bildelenke" + +#: frappe/public/js/frappe/list/base_list.js:208 +msgid "Image View" +msgstr "Bildevisning" + +#. Label of the image_width (Float) field in DocType 'Letter Head' +#. Label of the footer_image_width (Float) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Image Width" +msgstr "Bildebredde" + +#: frappe/core/doctype/doctype/doctype.py:1507 +msgid "Image field must be a valid fieldname" +msgstr "Bildefeltet må være et gyldig feltnavn" + +#: frappe/core/doctype/doctype/doctype.py:1509 +msgid "Image field must be of type Attach Image" +msgstr "Bildefeltet må være av typen Legg ved bilde" + +#: frappe/core/doctype/file/utils.py:136 +msgid "Image link '{0}' is not valid" +msgstr "Bildelenken '{0}' er ikke gyldig" + +#: frappe/core/doctype/file/file.js:108 +msgid "Image optimized" +msgstr "Bildet er optimalisert" + +#: frappe/core/doctype/file/utils.py:289 +msgid "Image: Corrupted Data Stream" +msgstr "Bilde: Korrupt datastrøm" + +#: frappe/public/js/frappe/views/image/image_view.js:13 +msgid "Images" +msgstr "Bilder" + +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/user/user.js:372 +msgid "Impersonate" +msgstr "Opptre som bruker" + +#: frappe/core/doctype/user/user.js:399 +msgid "Impersonate as {0}" +msgstr "Opptre som bruker {0}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 +msgid "Impersonated by {0}" +msgstr "{0} opptrer som bruker" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:21 +msgid "Impersonating {0}" +msgstr "Opptrer som bruker {0}" + +#: frappe/core/doctype/log_settings/log_settings.py:56 +msgid "Implement `clear_old_logs` method to enable auto error clearing." +msgstr "Implementer `clear_old_logs`-metoden for å aktivere automatisk feilretting." + +#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Implicit" +msgstr "Implisitt" + +#. Label of the import (Check) field in DocType 'Custom DocPerm' +#. Label of the import (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/recorder/recorder_list.js:16 +#: frappe/email/doctype/email_group/email_group.js:31 +msgid "Import" +msgstr "Import" + +#: frappe/public/js/frappe/list/list_view.js:1913 +msgctxt "Button in list view menu" +msgid "Import" +msgstr "Import" + +#. Label of a Link in the Tools Workspace +#. Label of a shortcut in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Import Data" +msgstr "Importer data" + +#: frappe/email/doctype/email_group/email_group.js:14 +msgid "Import Email From" +msgstr "Importer e-post fra" + +#. Label of the import_file (Attach) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import File" +msgstr "Importer fil" + +#. 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 "Importer filfeil og advarsler" + +#. Label of the import_log_section (Section Break) field in DocType 'Data +#. Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Log" +msgstr "Importlogg" + +#. 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 "Forhåndsvisning av Importlogg" + +#. Label of the import_preview (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Preview" +msgstr "Forhåndsvisning av import" + +#: frappe/core/doctype/data_import/data_import.js:41 +msgid "Import Progress" +msgstr "Importfremdrift" + +#: frappe/email/doctype/email_group/email_group.js:8 +#: frappe/email/doctype/email_group/email_group.js:30 +msgid "Import Subscribers" +msgstr "Importer abonnenter" + +#. Label of the import_type (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Type" +msgstr "Importtype" + +#. Label of the import_warnings (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Warnings" +msgstr "Advarsler om import" + +#: frappe/public/js/frappe/views/file/file_view.js:117 +msgid "Import Zip" +msgstr "Importer fil" + +#. 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 "Importer fra Google Sheets" + +#: frappe/core/doctype/data_import/importer.py:612 +msgid "Import template should be of type .csv, .xlsx or .xls" +msgstr "Importmalen må være av typen .csv, .xlsx eller .xls" + +#: frappe/core/doctype/data_import/importer.py:482 +msgid "Import template should contain a Header and atleast one row." +msgstr "Importmalen må inneholde en overskrift og minst én rad." + +#: frappe/core/doctype/data_import/data_import.js:165 +msgid "Import timed out, please re-try." +msgstr "Importen ble tidsavbrudt, prøv på nytt." + +#: frappe/core/doctype/data_import/data_import.py:68 +msgid "Importing {0} is not allowed." +msgstr "Importering av {0} er ikke tillatt." + +#: frappe/integrations/doctype/google_contacts/google_contacts.js:19 +msgid "Importing {0} of {1}" +msgstr "Importerer {0} av {1}" + +#: frappe/core/doctype/data_import/data_import.js:35 +msgid "Importing {0} of {1}, {2}" +msgstr "Importerer {0} av {1}, {2}" + +#: frappe/public/js/frappe/ui/filters/filter.js:20 +msgid "In" +msgstr "I" + +#. Description of the 'Force User to Reset Password' (Int) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "In Days" +msgstr "I dager" + +#. 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 "I filter" + +#. Label of the in_global_search (Check) field in DocType 'DocField' +#. Label of the in_global_search (Check) field in DocType 'Custom Field' +#. Label of the in_global_search (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In Global Search" +msgstr "I globalt søk" + +#: frappe/core/doctype/doctype/doctype.js:88 +msgid "In Grid View" +msgstr "I tabellvisning" + +#. Label of the in_standard_filter (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "In List Filter" +msgstr "I listefilter" + +#. Label of the in_list_view (Check) field in DocType 'DocField' +#. Label of the in_list_view (Check) field in DocType 'Custom Field' +#. Label of the in_list_view (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.js:89 +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In List View" +msgstr "I listevisning" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:19 +msgid "In Minutes" +msgstr "I minutter" + +#. Label of the in_preview (Check) field in DocType 'DocField' +#. Label of the in_preview (Check) field in DocType 'Custom Field' +#. Label of the in_preview (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In Preview" +msgstr "I forhåndsvisning" + +#: frappe/core/doctype/data_import/data_import.js:42 +msgid "In Progress" +msgstr "Under behandling" + +#: frappe/database/database.py:287 +msgid "In Read Only Mode" +msgstr "I skrivebeskyttet modus" + +#. Label of the in_reply_to (Link) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "In Reply To" +msgstr "Som svar til" + +#. Label of the in_standard_filter (Check) field in DocType 'Custom Field' +#. Label of the in_standard_filter (Check) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In Standard Filter" +msgstr "I standardfilter" + +#. 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 "I punkter. Standard er 9." + +#. Description of the 'Allow Login After Fail' (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "In seconds" +msgstr "I sekunder" + +#: frappe/core/doctype/recorder/recorder_list.js:209 +msgid "Inactive" +msgstr "Inaktiv" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/email/doctype/email_account/email_account_list.js:19 +msgid "Inbox" +msgstr "Innboks" + +#. Name of a role +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_account/email_account.json +msgid "Inbox User" +msgstr "Innboksbruker" + +#: frappe/public/js/frappe/list/base_list.js:209 +msgid "Inbox View" +msgstr "Innboksvisning" + +#: frappe/public/js/frappe/views/treeview.js:110 +msgid "Include Disabled" +msgstr "Inkluder deaktiverte" + +#. 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 "Inkluder navnefelt" + +#. 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 "Inkluder søk i topplinjen" + +#: frappe/website/doctype/website_theme/website_theme.js:61 +msgid "Include Theme from Apps" +msgstr "Inkluder tema fra apper" + +#. 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 "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:1628 +msgid "Include filters" +msgstr "Inkluder filtre" + +#: frappe/public/js/frappe/views/reports/query_report.js:1648 +msgid "Include hidden columns" +msgstr "Inkluder skjulte kolonner" + +#: frappe/public/js/frappe/views/reports/query_report.js:1620 +msgid "Include indentation" +msgstr "Inkluder innrykk" + +#: frappe/public/js/frappe/form/controls/password.js:106 +msgid "Include symbols, numbers and capital letters in the password" +msgstr "Inkluder symboler, tall og store bokstaver i passordet" + +#. Label of the incoming_popimap_tab (Tab Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Incoming" +msgstr "Innkommende" + +#. Label of the mailbox_settings (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Incoming (POP/IMAP) Settings" +msgstr "Innkommende (POP/IMAP)-innstillinger" + +#. Label of the incoming_emails_last_7_days_column (Column Break) field in +#. DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Incoming Emails (Last 7 days)" +msgstr "Innkommende e-post (siste 7 dager)" + +#. Label of the email_server (Data) field in DocType 'Email Account' +#. Label of the email_server (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Incoming Server" +msgstr "Server for innkommende e-post" + +#. Label of the mailbox_settings (Section Break) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Incoming Settings" +msgstr "Innstillinger for innkommende e-post" + +#: frappe/email/doctype/email_domain/email_domain.py:32 +msgid "Incoming email account not correct" +msgstr "Konto for innkommende e-postkonto er ikke korrekt" + +#: frappe/model/virtual_doctype.py:79 frappe/model/virtual_doctype.py:92 +msgid "Incomplete Virtual Doctype Implementation" +msgstr "Ufullstendig implementering av virtuell dokumenttype (DocType)" + +#: frappe/auth.py:258 +msgid "Incomplete login details" +msgstr "Ufullstendige innloggingsdetaljer" + +#: frappe/email/smtp.py:104 +msgid "Incorrect Configuration" +msgstr "Feil konfigurasjon" + +#: frappe/utils/csvutils.py:234 +msgid "Incorrect URL" +msgstr "Feil URL" + +#: frappe/utils/password.py:100 +msgid "Incorrect User or Password" +msgstr "Feil bruker eller passord" + +#: frappe/twofactor.py:176 frappe/twofactor.py:188 +msgid "Incorrect Verification code" +msgstr "Feil bekreftelseskode" + +#: frappe/model/document.py:1555 +msgid "Incorrect value in row {0}:" +msgstr "Ugyldig verdi i rad {0}:" + +#: frappe/model/document.py:1557 +msgid "Incorrect value:" +msgstr "Ugyldig verdi:" + +#. Label of the search_index (Check) field in DocType 'DocField' +#. Label of the index (Int) field in DocType 'Recorder Query' +#. Label of the search_index (Check) field in DocType 'Custom Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder_query/recorder_query.json +#: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 +#: frappe/public/js/frappe/model/meta.js:203 +#: frappe/public/js/frappe/model/model.js:124 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 +msgid "Index" +msgstr "Indeks" + +#. Label of the index_web_pages_for_search (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Index Web Pages for Search" +msgstr "Indekser nettsider for søk" + +#: frappe/core/doctype/recorder/recorder.py:132 +msgid "Index created successfully on column {0} of doctype {1}" +msgstr "Indeks opprettet på kolonne {0} av dokumenttype (DocType) {1}" + +#. Label of the indexing_authorization_code (Data) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Indexing authorization code" +msgstr "Indekserer autorisasjonskode" + +#. 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 "Indeksering av oppdateringstoken" + +#. Label of the indicator (Select) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Indicator" +msgstr "Indikator" + +#. Label of the indicator_color (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Indicator Color" +msgstr "Indikatorfarge" + +#: frappe/public/js/frappe/views/workspace/workspace.js:463 +msgid "Indicator color" +msgstr "Indikatorfarge" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/core/doctype/comment/comment.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Info" +msgstr "Info" + +#: frappe/core/doctype/data_export/exporter.py:144 +msgid "Info:" +msgstr "Info:" + +#. Label of the initial_sync_count (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Initial Sync Count" +msgstr "Antall ved første synkronisering" + +#. Option for the 'Database Engine' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "InnoDB" +msgstr "InnoDB" + +#. Description of the 'New Role' (Data) field in DocType 'Role Replication' +#: frappe/core/doctype/role_replication/role_replication.json +msgid "Input existing role name if you would like to extend it with access of another role." +msgstr "Skriv inn et eksisterende rollenavn hvis du ønsker å utvide det med tilgang til en annen rolle." + +#: frappe/core/doctype/data_import/data_import_list.js:35 +msgid "Insert" +msgstr "Sett inn" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Insert Above" +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:1893 +msgid "Insert After" +msgstr "Sett inn etter" + +#: frappe/custom/doctype/custom_field/custom_field.py:251 +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:244 +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" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Insert Below" +msgstr "Sett inn nedenfor" + +#: frappe/public/js/frappe/views/reports/report_view.js:395 +msgid "Insert Column Before {0}" +msgstr "Sett inn kolonne før {0}" + +#: frappe/public/js/frappe/form/controls/markdown_editor.js:82 +msgid "Insert Image in Markdown" +msgstr "Sett inn bilde i 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 "Sett inn nye poster" + +#. Label of the insert_style (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Insert Style" +msgstr "Sett inn stil" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "Instagram" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 +msgid "Install {0} from Marketplace" +msgstr "Installer {0} fra Marketplace" + +#. Name of a DocType +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Installed Application" +msgstr "Installert applikasjon" + +#. Name of a DocType +#. Label of the installed_applications (Table) field in DocType 'Installed +#. Applications' +#: frappe/core/doctype/installed_applications/installed_applications.json +msgid "Installed Applications" +msgstr "Installerte applikasjoner" + +#: frappe/core/doctype/installed_applications/installed_applications.js:18 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Installed Apps" +msgstr "Installerte apper" + +#. Label of the instructions (HTML) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Instructions" +msgstr "Instruksjoner" + +#: frappe/templates/includes/login/login.js:261 +msgid "Instructions Emailed" +msgstr "Instruksjoner sendt på e-post" + +#: frappe/permissions.py:840 +msgid "Insufficient Permission Level for {0}" +msgstr "Utilstrekkelig tillatelsesnivå for {0}" + +#: frappe/database/query.py:808 frappe/database/query.py:1054 +msgid "Insufficient Permission for {0}" +msgstr "Utilstrekkelige rettigheter for {0}" + +#: frappe/desk/reportview.py:361 +msgid "Insufficient Permissions for deleting Report" +msgstr "Utilstrekkelige rettigheter for sletting av rapport" + +#: frappe/desk/reportview.py:332 +msgid "Insufficient Permissions for editing Report" +msgstr "Utilstrekkelige rettigheter for redigering av rapport" + +#: frappe/core/doctype/doctype/doctype.py:446 +msgid "Insufficient attachment limit" +msgstr "Utilstrekkelig vedleggsgrense" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Int" +msgstr "Heltall" + +#. Name of a DocType +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Integration Request" +msgstr "Integrasjonsforespørsel" + +#. Group in User's connections +#. Name of a Workspace +#. Label of the integrations (Tab Break) field in DocType 'Website Settings' +#: frappe/core/doctype/user/user.json +#: frappe/integrations/workspace/integrations/integrations.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Integrations" +msgstr "Integrasjoner" + +#. Description of the 'Delivery Status' (Select) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Integrations can use this field to set email delivery status" +msgstr "Integrasjoner kan bruke dette feltet til å angi leveringsstatus for e-post" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Inter" +msgstr "Inter" + +#. Label of the interest (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Interests" +msgstr "Interesser" + +#. Option for the 'Level' (Select) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Intermediate" +msgstr "Mellomliggende" + +#: frappe/public/js/frappe/request.js:235 +msgid "Internal Server Error" +msgstr "Intern serverfeil" + +#. Description of a DocType +#: frappe/core/doctype/docshare/docshare.json +msgid "Internal record of document shares" +msgstr "Intern oversikt over dokumentdelinger" + +#. 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 for introvideo" + +#. 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 "Introduser selskapet ditt til nettstedets besøkende." + +#. Label of the introduction_section (Section Break) field in DocType 'Contact +#. Us Settings' +#. Label of the introduction (Text Editor) field in DocType 'Contact Us +#. Settings' +#. Label of the introduction_text (Text Editor) field in DocType 'Web Form' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Introduction" +msgstr "Introduksjon" + +#. Description of the 'Introduction' (Text Editor) field in DocType 'Contact Us +#. Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Introductory information for the Contact Us Page" +msgstr "Innledende informasjon for Kontakt oss-siden" + +#. Label of the introspection_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Introspection URI" +msgstr "Introspeksjons-URI" + +#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization +#. Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Invalid" +msgstr "Ugyldig" + +#: frappe/public/js/form_builder/utils.js:221 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 +msgid "Invalid \"depends_on\" expression" +msgstr "Ugyldig «depends_on»-uttrykk" + +#: frappe/public/js/frappe/views/reports/query_report.js:514 +msgid "Invalid \"depends_on\" expression set in filter {0}" +msgstr "Ugyldig «depends_on»-uttrykk satt i filteret {0}" + +#: frappe/public/js/frappe/form/save.js:210 +msgid "Invalid \"mandatory_depends_on\" expression" +msgstr "Ugyldig \"mandatory_depends_on\"-uttrykk" + +#: frappe/utils/nestedset.py:178 +msgid "Invalid Action" +msgstr "Ugyldig handling" + +#: frappe/utils/csvutils.py:37 +msgid "Invalid CSV Format" +msgstr "Ugyldig CSV-format" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:111 +msgid "Invalid Code. Please try again." +msgstr "Ugyldig kode. Vennligst prøv igjen." + +#: frappe/integrations/doctype/webhook/webhook.py:91 +msgid "Invalid Condition: {}" +msgstr "Ugyldig betingelse: {}" + +#: frappe/email/smtp.py:135 +msgid "Invalid Credentials" +msgstr "Ugyldig påloggingsinformasjon." + +#: frappe/utils/data.py:146 frappe/utils/data.py:309 +msgid "Invalid Date" +msgstr "Ugyldig dato" + +#: frappe/www/list.py:85 +msgid "Invalid DocType" +msgstr "Ugyldig dokumenttype (DocType)" + +#: frappe/database/query.py:144 +msgid "Invalid DocType: {0}" +msgstr "Ugyldig dokumenttype (DocType): {0}" + +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "Ugyldig dokumenttype (DocType)" + +#: frappe/core/doctype/doctype/doctype.py:1273 +msgid "Invalid Fieldname" +msgstr "Ugyldig feltnavn" + +#: frappe/core/doctype/file/file.py:221 +msgid "Invalid File URL" +msgstr "Ugyldig fil-URL" + +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 +msgid "Invalid Filter" +msgstr "Ugyldig filter" + +#: frappe/public/js/form_builder/store.js:221 +msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" +msgstr "Ugyldig filterformat for feltet {0} av typen {1}. Prøv å bruke filterikonet i feltet for å angi det riktig." + +#: frappe/utils/dashboard.py:61 +msgid "Invalid Filter Value" +msgstr "Ugyldig filterverdi" + +#: frappe/website/doctype/website_settings/website_settings.py:83 +msgid "Invalid Home Page" +msgstr "Ugyldig hjemmeside" + +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 +msgid "Invalid Link" +msgstr "Ugyldig lenke" + +#: frappe/www/login.py:128 +msgid "Invalid Login Token" +msgstr "Ugyldig påloggingstoken" + +#: frappe/templates/includes/login/login.js:290 +msgid "Invalid Login. Try again." +msgstr "Ugyldig pålogging. Prøv på nytt." + +#: frappe/email/receive.py:112 frappe/email/receive.py:149 +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 +msgid "Invalid Naming Series: {}" +msgstr "Ugyldig nummerserie: {}" + +#: frappe/core/doctype/rq_job/rq_job.py:113 +#: frappe/core/doctype/rq_job/rq_job.py:122 +msgid "Invalid Operation" +msgstr "Ugyldig operasjon" + +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 +msgid "Invalid Option" +msgstr "Ugyldig alternativ" + +#: frappe/email/smtp.py:103 +msgid "Invalid Outgoing Mail Server or Port: {0}" +msgstr "Ugyldig utgående e-postserver eller port: {0}" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 +msgid "Invalid Output Format" +msgstr "Ugyldig utdataformat" + +#: frappe/model/base_document.py:134 +msgid "Invalid Override" +msgstr "Ugyldig overstyring" + +#: frappe/integrations/doctype/connected_app/connected_app.py:202 +msgid "Invalid Parameters." +msgstr "Ugyldige parametere." + +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 +msgid "Invalid Password" +msgstr "Ugyldig passord" + +#: frappe/utils/__init__.py:125 +msgid "Invalid Phone Number" +msgstr "Ugyldig telefonnummer" + +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/www/login.py:128 +msgid "Invalid Request" +msgstr "Ugyldig forespørsel" + +#: frappe/desk/search.py:26 +msgid "Invalid Search Field {0}" +msgstr "Ugyldig søkefelt {0}" + +#: frappe/core/doctype/doctype/doctype.py:1215 +msgid "Invalid Table Fieldname" +msgstr "Ugyldig tabellfeltnavn" + +#: frappe/public/js/workflow_builder/store.js:192 +msgid "Invalid Transition" +msgstr "Ugyldig overgang" + +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 +#: frappe/public/js/frappe/widgets/widget_dialog.js:602 +#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 +msgid "Invalid URL" +msgstr "Ugyldig URL" + +#: frappe/email/receive.py:157 +msgid "Invalid User Name or Support Password. Please rectify and try again." +msgstr "Ugyldig brukernavn eller support-passord. Rett opp og prøv igjen." + +#: frappe/public/js/frappe/ui/field_group.js:137 +msgid "Invalid Values" +msgstr "Ugyldige verdier" + +#: frappe/integrations/doctype/webhook/webhook.py:120 +msgid "Invalid Webhook Secret" +msgstr "Ugyldig webhook-hemmelighet" + +#: frappe/desk/reportview.py:187 +msgid "Invalid aggregate function" +msgstr "Ugyldig aggregatfunksjon" + +#: frappe/database/query.py:1544 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "Ugyldig aliasformat: {0}. Aliaset må være en enkel identifikator." + +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "Ugyldig app" + +#: frappe/database/query.py:1470 +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:1446 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "Ugyldig argumenttype: {0}. Bare strenger, tall og None er tillatt." + +#: frappe/database/query.py:462 +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:577 +msgid "Invalid characters in table name: {0}" +msgstr "Ugyldige tegn i tabellnavnet: {0}" + +#: frappe/public/js/frappe/views/reports/report_view.js:404 +msgid "Invalid column" +msgstr "Ugyldig kolonne" + +#: frappe/database/query.py:383 +msgid "Invalid condition type in nested filters: {0}" +msgstr "Ugyldig betingelsestype i nestede filtre: {0}" + +#: frappe/database/query.py:789 +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:1020 frappe/model/document.py:1034 +msgid "Invalid docstatus" +msgstr "Ugyldig dokumentstatus" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:229 +msgid "Invalid expression set in filter {0}" +msgstr "Ugyldig uttrykk satt i filteret {0}" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:219 +msgid "Invalid expression set in filter {0} ({1})" +msgstr "Ugyldig uttrykk satt i filteret {0} ({1})" + +#: frappe/database/query.py:1303 +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:736 +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'." + +#: frappe/database/query.py:1622 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "Ugyldig feltnavn i funksjon: {0}. Bare enkle feltnavn er tillatt." + +#: frappe/utils/data.py:2241 +msgid "Invalid field name {0}" +msgstr "Ugyldig feltnavn {0}" + +#: frappe/database/query.py:670 +msgid "Invalid field type: {0}" +msgstr "Ugyldig felttype: {0}" + +#: frappe/core/doctype/doctype/doctype.py:1086 +msgid "Invalid fieldname '{0}' in autoname" +msgstr "Ugyldig feltnavn ‘{0}’ i automatisk navngivning" + +#: frappe/deprecation_dumpster.py:283 +msgid "Invalid file path: {0}" +msgstr "Ugyldig filsti: {0}" + +#: frappe/database/query.py:366 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "Ugyldig filterbetingelse: {0}. Forventet en liste eller tuppel." + +#: frappe/database/query.py:452 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "Ugyldig filterfeltformat: {0}. Bruk 'fieldname' eller 'link_fieldname.target_fieldname'." + +#: frappe/public/js/frappe/ui/filters/filter_list.js:201 +msgid "Invalid filter: {0}" +msgstr "Ugyldig filter: {0}" + +#: frappe/database/query.py:1424 +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." + +#: frappe/database/query.py:1385 +msgid "Invalid function dictionary format" +msgstr "Ugyldig dict-format for funksjon" + +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "Ugyldig inndata" + +#: frappe/desk/doctype/dashboard/dashboard.py:67 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 +msgid "Invalid json added in the custom options: {0}" +msgstr "Ugyldig json lagt til i de egendefinerte alternativene: {0}" + +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "Ugyldig nøkkel" + +#: frappe/model/naming.py:498 +msgid "Invalid name type (integer) for varchar name column" +msgstr "Ugyldig navnetype (heltall) for varchar-kolonnen ‘name’" + +#: frappe/model/naming.py:62 +msgid "Invalid naming series {}: dot (.) missing" +msgstr "Ugyldig nummerserie {}: punktum (.) mangler" + +#: frappe/model/naming.py:76 +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/core/doctype/data_import/importer.py:453 +msgid "Invalid or corrupted content for import" +msgstr "Ugyldig eller ødelagt innhold for import" + +#: frappe/website/doctype/website_settings/website_settings.py:139 +msgid "Invalid redirect regex in row #{}: {}" +msgstr "Ugyldig omadresseringsregeks i rad #{}: {}" + +#: frappe/app.py:340 +msgid "Invalid request arguments" +msgstr "Ugyldige forespørselsargumenter" + +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "Ugyldig rolle" + +#: frappe/database/query.py:412 +msgid "Invalid simple filter format: {0}" +msgstr "Ugyldig enkelt filterformat: {0}" + +#: frappe/database/query.py:343 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "Ugyldig start for filterbetingelse: {0}. Forventet en liste eller tuppel." + +#: frappe/database/query.py:1491 +msgid "Invalid string literal format: {0}" +msgstr "Ugyldig format for strengliteral: {0}" + +#: frappe/core/doctype/data_import/importer.py:430 +msgid "Invalid template file for import" +msgstr "Ugyldig malfil for import" + +#: frappe/integrations/doctype/connected_app/connected_app.py:208 +msgid "Invalid token state! Check if the token has been created by the OAuth user." +msgstr "Ugyldig tokenstatus! Sjekk om tokenet er opprettet av OAuth-brukeren." + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:165 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:336 +msgid "Invalid username or password" +msgstr "Ugyldig brukernavn eller passord" + +#: frappe/model/naming.py:176 +msgid "Invalid value specified for UUID: {}" +msgstr "Ugyldig verdi angitt for UUID: {}" + +#: frappe/public/js/frappe/web_form/web_form.js:253 +msgctxt "Error message in web form" +msgid "Invalid values for fields:" +msgstr "Ugyldige verdier for felt:" + +#: frappe/printing/page/print/print.js:654 +msgid "Invalid wkhtmltopdf version" +msgstr "Ugyldig wkhtmltopdf-versjon" + +#: frappe/core/doctype/doctype/doctype.py:1565 +msgid "Invalid {0} condition" +msgstr "Ugyldig {0} tilstand" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Inverse" +msgstr "Invers" + +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "Invitasjon allerede akseptert" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "Invitasjonen finnes allerede" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "Invitasjonen kan ikke avbrytes" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "Invitasjonen er avbrutt" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "Invitasjonen er utløpt" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "Invitasjon ikke funnet" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "Invitasjon til å bli med {0} er avbrutt" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "Invitasjon til å delta i {0} er utløpt" + +#: frappe/contacts/doctype/contact/contact.js:30 +msgid "Invite as User" +msgstr "Inviter som bruker" + +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "Invitert av" + +#: frappe/public/js/frappe/ui/filters/filter.js:22 +msgid "Is" +msgstr "Er" + +#. Label of the is_active (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Is Active" +msgstr "Er aktiv" + +#. Label of the is_attachments_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Attachments Folder" +msgstr "Er vedleggsmappe" + +#. 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 "Er kalender og Gantt" + +#. Label of the istable (Check) field in DocType 'DocType' +#. Label of the is_child_table (Check) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:50 +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Is Child Table" +msgstr "Er Underordnet Tabell" + +#. Label of the is_complete (Check) field in DocType 'Module Onboarding' +#. Label of the is_complete (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Complete" +msgstr "Er fullført" + +#. 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 "Er fullført" + +#. Label of the is_custom (Check) field in DocType 'Role' +#. Label of the is_custom (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "Is Custom" +msgstr "Er egendefinert" + +#. 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 "Er egendefinert felt" + +#. Label of the is_default (Check) field in DocType 'Address Template' +#. Label of the is_default (Check) field in DocType 'User Permission' +#. Label of the is_default (Check) field in DocType 'Dashboard' +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_permission/user_permission_list.js:69 +#: frappe/desk/doctype/dashboard/dashboard.json +msgid "Is Default" +msgstr "Er standard" + +#. Label of the is_dynamic_url (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Is Dynamic URL?" +msgstr "Er dynamisk URL?" + +#. Label of the is_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Folder" +msgstr "Er mappe" + +#: frappe/public/js/frappe/list/list_filter.js:43 +msgid "Is Global" +msgstr "Er global" + +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Er gruppe" + +#. Label of the is_hidden (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Is Hidden" +msgstr "Er skjult" + +#. Label of the is_home_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Home Folder" +msgstr "Er hjemmekappen" + +#. Label of the reqd (Check) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Is Mandatory Field" +msgstr "Er obligatorisk felt" + +#. 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 "Er valgfri tilstand" + +#. Label of the is_primary (Check) field in DocType 'Contact Email' +#: frappe/contacts/doctype/contact_email/contact_email.json +msgid "Is Primary" +msgstr "Er primær" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "Er primæradresse" + +#. Label of the is_primary_contact (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 +msgid "Is Primary Contact" +msgstr "Er primærkontakt" + +#. 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 "Er primærmobil" + +#. 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 "Er primær telefon" + +#. Label of the is_private (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Private" +msgstr "Er privat" + +#. 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 "Er offentlig" + +#. Label of the is_published_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Is Published Field" +msgstr "Er publisert felt" + +#: frappe/core/doctype/doctype/doctype.py:1516 +msgid "Is Published Field must be a valid fieldname" +msgstr "\"Er publisert felt\" må være et gyldig feltnavn" + +#. Label of the is_query_report (Check) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:341 +msgid "Is Query Report" +msgstr "Er spørringsrapport" + +#. 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 "Er ekstern forespørsel?" + +#. Label of the is_setup_complete (Check) field in DocType 'Installed +#. Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Is Setup Complete?" +msgstr "Er oppsettet fullført?" + +#. Label of the issingle (Check) field in DocType 'DocType' +#. Label of the is_single (Check) field in DocType 'Onboarding Step' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:65 +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Single" +msgstr "Er alene" + +#. Label of the is_skipped (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Skipped" +msgstr "Er hoppet over" + +#. Label of the is_spam (Check) field in DocType 'Email Rule' +#: frappe/email/doctype/email_rule/email_rule.json +msgid "Is Spam" +msgstr "Er spam" + +#. Label of the is_standard (Check) field in DocType 'Navbar Item' +#. Label of the is_standard (Select) field in DocType 'Report' +#. Label of the is_standard (Check) field in DocType 'User Type' +#. Label of the is_standard (Check) field in DocType 'Dashboard' +#. Label of the is_standard (Check) field in DocType 'Dashboard Chart' +#. Label of the is_standard (Check) field in DocType 'Form Tour' +#. Label of the is_standard (Check) field in DocType 'Number Card' +#. Label of the is_standard (Check) field in DocType 'Notification' +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/notification/notification.json +msgid "Is Standard" +msgstr "Er standard" + +#. Label of the is_submittable (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:40 +msgid "Is Submittable" +msgstr "Kan registreres" + +#. Label of the is_system_generated (Check) field in DocType 'Custom Field' +#. Label of the is_system_generated (Check) field in DocType 'Customize Form +#. Field' +#. Label of the is_system_generated (Check) field in DocType 'Property Setter' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Is System Generated" +msgstr "Er systemgenerert" + +#. Label of the istable (Check) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Is Table" +msgstr "Er tabell" + +#. 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 "Er tabellfelt" + +#. Label of the is_tree (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Is Tree" +msgstr "Er trestruktur" + +#. 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 "Er unik" + +#. Label of the is_virtual (Check) field in DocType 'DocType' +#. Label of the is_virtual (Check) field in DocType 'Custom Field' +#. Label of the is_virtual (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Is Virtual" +msgstr "Er virtuell" + +#. Label of the is_standard (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Is standard" +msgstr "È standard" + +#: frappe/core/doctype/file/utils.py:157 frappe/utils/file_manager.py:311 +msgid "It is risky to delete this file: {0}. Please contact your System Manager." +msgstr "Det er risikabelt å slette denne filen: {0}. Ta kontakt med systemansvarlig." + +#. Label of the item_label (Data) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Item Label" +msgstr "Vareetikett" + +#. Label of the item_type (Select) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Item Type" +msgstr "Elementtype" + +#: frappe/utils/nestedset.py:229 +msgid "Item cannot be added to its own descendants" +msgstr "Elementet kan ikke legges til i sine egne etterkommere" + +#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "JS" +msgstr "JS" + +#. Label of the js_message (HTML) field in DocType 'Custom HTML Block' +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +msgid "JS Message" +msgstr "JS Melding" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the json (Code) field in DocType 'Report' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Request Structure' (Select) field in DocType 'Webhook' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report/report.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/integrations/doctype/webhook/webhook.json +msgid "JSON" +msgstr "JSON" + +#. Label of the webhook_json (Code) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "JSON Request Body" +msgstr "JSON-body for forespørsel" + +#: frappe/templates/signup.html:5 +msgid "Jane Doe" +msgstr "Jane Doe" + +#. Label of the js (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "JavaScript" +msgstr "JavaScript" + +#. Description of the 'Javascript' (Code) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}" +msgstr "JavaScript-format: frappe.query_reports['RAPPORTNAME'] = {}" + +#. Label of the javascript (Code) field in DocType 'Report' +#. Label of the javascript_section (Section Break) field in DocType 'Custom +#. HTML Block' +#. Label of the javascript (Code) field in DocType 'Web Page' +#. Label of the javascript (Code) field in DocType 'Website Script' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_script/website_script.json +msgid "Javascript" +msgstr "Javascript" + +#: frappe/www/login.html:74 +msgid "Javascript is disabled on your browser" +msgstr "Javascript er deaktivert i nettleseren din" + +#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Jinja" +msgstr "Jinja" + +#. Label of the job_id (Data) field in DocType 'Prepared Report' +#. Label of the job_id (Data) field in DocType 'RQ Job' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job ID" +msgstr "Jobb-ID" + +#. Label of the job_id (Link) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Job Id" +msgstr "Jobb 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 "Jobb info" + +#. Label of the job_name (Data) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job Name" +msgstr "Jobbnavn" + +#. 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 "Jobbstatus" + +#: frappe/core/doctype/rq_job/rq_job.js:24 +msgid "Job Stopped Successfully" +msgstr "Jobben ble vellykket avsluttet" + +#: frappe/core/doctype/rq_job/rq_job.py:121 +msgid "Job is in {0} state and can't be cancelled" +msgstr "Jobben er i tilstand {0} og kan ikke avbrytes" + +#: frappe/core/doctype/rq_job/rq_job.py:113 +msgid "Job is not running." +msgstr "Jobben kjører ikke." + +#: frappe/desk/doctype/event/event.js:55 +msgid "Join video conference with {0}" +msgstr "Delta i videokonferanse med {0}" + +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 +msgid "Jump to field" +msgstr "Hopp til felt" + +#: frappe/public/js/frappe/utils/number_systems.js:17 +#: frappe/public/js/frappe/utils/number_systems.js:31 +#: frappe/public/js/frappe/utils/number_systems.js:53 +msgctxt "Number system" +msgid "K" +msgstr "K" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Kanban" +msgstr "Kanban" + +#. Name of a DocType +#. Label of the kanban_board (Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:511 +msgid "Kanban Board" +msgstr "Kanban-tavle" + +#. Name of a DocType +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Kanban Board Column" +msgstr "Kolonne i Kanban-tavle" + +#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 +msgid "Kanban Board Name" +msgstr "Navn på Kanban-tavle" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 +msgctxt "Button in kanban view menu" +msgid "Kanban Settings" +msgstr "Innstillinger for Kanban-tavle" + +#: frappe/public/js/frappe/list/base_list.js:206 +msgid "Kanban View" +msgstr "Visning av Kanban-tavle" + +#. Description of a DocType +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Keep track of all update feeds" +msgstr "Hold oversikt over alle oppdateringsstrømmer" + +#. Description of a DocType +#: frappe/core/doctype/communication/communication.json +msgid "Keeps track of all communications" +msgstr "Holder oversikt over all kommunikasjon" + +#. Label of the defkey (Data) field in DocType 'DefaultValue' +#. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' +#. Label of the key (Data) field in DocType 'Query Parameters' +#. Label of the key (Data) field in DocType 'Webhook Data' +#. Label of the key (Small Text) field in DocType 'Webhook Header' +#. Label of the key (Data) field in DocType 'Website Meta Tag' +#: frappe/core/doctype/defaultvalue/defaultvalue.json +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/integrations/doctype/query_parameters/query_parameters.json +#: frappe/integrations/doctype/webhook_data/webhook_data.json +#: frappe/integrations/doctype/webhook_header/webhook_header.json +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json +msgid "Key" +msgstr "Nøkkel" + +#. Label of a standard help item +#. Type: Action +#: frappe/hooks.py frappe/public/js/frappe/ui/keyboard.js:130 +msgid "Keyboard Shortcuts" +msgstr "Tastatursnarveier" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Keycloak" +msgstr "Keycloak" + +#: frappe/public/js/frappe/utils/number_systems.js:37 +msgctxt "Number system" +msgid "Kh" +msgstr "Kh" + +#. Label of a Card Break in the Website Workspace +#: frappe/website/doctype/help_article/help_article.py:80 +#: frappe/website/doctype/help_article/templates/help_article_list.html:2 +#: frappe/website/doctype/help_article/templates/help_article_list.html:11 +#: frappe/website/workspace/website/website.json +msgid "Knowledge Base" +msgstr "Kunnskapsbase" + +#. Name of a role +#: frappe/website/doctype/help_article/help_article.json +msgid "Knowledge Base Contributor" +msgstr "Bidragsyter til kunnskapsbasen" + +#. Name of a role +#: frappe/website/doctype/help_article/help_article.json +msgid "Knowledge Base Editor" +msgstr "Redigerer av kunnskapsbasen" + +#: frappe/public/js/frappe/utils/number_systems.js:27 +#: frappe/public/js/frappe/utils/number_systems.js:49 +msgctxt "Number system" +msgid "L" +msgstr "L" + +#. Label of the ldap_auth_section (Section Break) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Auth" +msgstr "LDAP-autentisering" + +#. Label of the ldap_custom_settings_section (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Custom Settings" +msgstr "LDAP egendefinerte innstillinger" + +#. 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-e-postfelt" + +#. 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-fornavnfelt" + +#. 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-gruppe" + +#. 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-gruppefelt" + +#. Name of a DocType +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgid "LDAP Group Mapping" +msgstr "Tilordning av LDAP-grupper" + +#. Label of the ldap_group_mappings_section (Section Break) field in DocType +#. 'LDAP Settings' +#. Label of the ldap_groups (Table) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Group Mappings" +msgstr "Tilordning av LDAP-grupper" + +#. 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 "Attributt for medlemmer av LDAP-gruppe" + +#. 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-etternavnfelt" + +#. 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-mellomnavnfelt" + +#. 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-mobilfelt" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163 +msgid "LDAP Not Installed" +msgstr "LDAP ikke installert" + +#. 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-telefonfelt" + +#. 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-søkestreng" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:130 +msgid "LDAP Search String must be enclosed in '()' and needs to contian the user placeholder {0}, eg sAMAccountName={0}" +msgstr "LDAP-søkestrengen må være omsluttet av '()' og må inneholde brukerens plassholder {0}, f.eks. sAMAccountName={0}" + +#. Label of the ldap_search_and_paths_section (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Search and Paths" +msgstr "LDAP-søk og stier" + +#. 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-sikkerhet" + +#. 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-serverinnstillinger" + +#. Label of the ldap_server_url (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Server Url" +msgstr "LDAP-server-URL" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "LDAP Settings" +msgstr "LDAP-innstillinger" + +#. Label of the ldap_user_creation_and_mapping_section (Section Break) field in +#. DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP User Creation and Mapping" +msgstr "Oppretting og tilordning av LDAP-bruker" + +#. 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-brukernavn-feltet" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:309 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:426 +msgid "LDAP is not enabled." +msgstr "LDAP er ikke aktivert." + +#. 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-søkesti for grupper" + +#. 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-søkesti for brukere" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:102 +msgid "LDAP settings incorrect. validation response was: {0}" +msgstr "LDAP-innstillinger feil. Valideringsrespons var: {0}" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Label of the label (Data) field in DocType 'DocField' +#. Label of the label (Data) field in DocType 'DocType Action' +#. Label of the label (Data) field in DocType 'Report Column' +#. Label of the label (Data) field in DocType 'Report Filter' +#. Label of the label (Data) field in DocType 'Custom Field' +#. Label of the label (Data) field in DocType 'Customize Form Field' +#. Label of the label (Data) field in DocType 'DocType Layout Field' +#. Label of the label (Data) field in DocType 'Desktop Icon' +#. Label of the label (Data) field in DocType 'Form Tour Step' +#. Label of the label (Data) field in DocType 'Number Card' +#. Label of the label (Data) field in DocType 'Workspace Chart' +#. Label of the label (Data) field in DocType 'Workspace Custom Block' +#. Label of the label (Data) field in DocType 'Workspace Link' +#. Label of the label (Data) field in DocType 'Workspace Number Card' +#. Label of the label (Data) field in DocType 'Workspace Quick List' +#. Label of the label (Data) field in DocType 'Workspace Shortcut' +#. Label of the label (Data) field in DocType 'Top Bar Item' +#. Label of the label (Data) field in DocType 'Web Template Field' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/workspace_chart/workspace_chart.json +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:474 +#: frappe/public/js/form_builder/components/Field.vue:208 +#: frappe/public/js/frappe/widgets/widget_dialog.js:183 +#: frappe/public/js/frappe/widgets/widget_dialog.js:251 +#: frappe/public/js/frappe/widgets/widget_dialog.js:313 +#: frappe/public/js/frappe/widgets/widget_dialog.js:466 +#: frappe/public/js/frappe/widgets/widget_dialog.js:643 +#: frappe/public/js/frappe/widgets/widget_dialog.js:676 +#: frappe/public/js/print_format_builder/Field.vue:18 +#: frappe/templates/form_grid/fields.html:37 +#: frappe/website/doctype/top_bar_item/top_bar_item.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Label" +msgstr "Etikett" + +#. Label of the label_help (HTML) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Label Help" +msgstr "Hjelp for etikett" + +#. 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 "Etikett og type" + +#: frappe/custom/doctype/custom_field/custom_field.py:145 +msgid "Label is mandatory" +msgstr "Etikett er påkrevet" + +#. Label of the sb0 (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Landing Page" +msgstr "Landingsside" + +#: frappe/public/js/frappe/form/print_utils.js:23 +msgid "Landscape" +msgstr "Liggende" + +#. Name of a DocType +#. Label of the language (Link) field in DocType 'System Settings' +#. Label of the language (Link) field in DocType 'Translation' +#. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 +#: frappe/public/js/frappe/form/templates/print_layout.html:11 +msgid "Language" +msgstr "Språk" + +#. Label of the language_code (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +msgid "Language Code" +msgstr "Språkkode" + +#. Label of the language_name (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +msgid "Language Name" +msgstr "Språknavn" + +#. Label of the last_10_active_users (Code) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Last 10 active users" +msgstr "Siste 10 aktive brukere" + +#: frappe/public/js/frappe/ui/filters/filter.js:628 +msgid "Last 14 Days" +msgstr "Siste 14 dager" + +#: frappe/public/js/frappe/ui/filters/filter.js:632 +msgid "Last 30 Days" +msgstr "Siste 30 dager" + +#: frappe/public/js/frappe/ui/filters/filter.js:652 +msgid "Last 6 Months" +msgstr "Siste 6 måneder" + +#: frappe/public/js/frappe/ui/filters/filter.js:624 +msgid "Last 7 Days" +msgstr "De siste 7 dager" + +#: frappe/public/js/frappe/ui/filters/filter.js:636 +msgid "Last 90 Days" +msgstr "De siste 90 dager" + +#. Label of the last_active (Datetime) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Active" +msgstr "Sist aktiv" + +#. 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 "Siste kjøring" + +#. Label of the last_heartbeat (Datetime) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Last Heartbeat" +msgstr "Siste hjerteslag" + +#. Label of the last_ip (Read Only) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last IP" +msgstr "Siste IP" + +#. Label of the last_known_versions (Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Known Versions" +msgstr "Siste kjente versjoner" + +#. Label of the last_login (Read Only) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Login" +msgstr "Siste innlogging" + +#: frappe/email/doctype/notification/notification.js:32 +msgid "Last Modified Date" +msgstr "Siste endringsdato" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:242 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:480 +msgid "Last Modified On" +msgstr "Sist modifisert på" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:644 +msgid "Last Month" +msgstr "Forrige måned" + +#. Label of the last_name (Data) field in DocType 'Contact' +#. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 +msgid "Last Name" +msgstr "Etternavn" + +#. Label of the last_password_reset_date (Date) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Password Reset Date" +msgstr "Dato for siste tilbakestilling av passord" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:648 +msgid "Last Quarter" +msgstr "Siste kvartal" + +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "Sist mottatt den" + +#. Label of the last_reset_password_key_generated_on (Datetime) field in +#. DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Reset Password Key Generated On" +msgstr "Siste nøkkel for tilbakestilling av passord generert den" + +#. Label of the datetime_last_run (Datetime) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Last Run" +msgstr "Siste kjøring" + +#. 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 "Siste synkronisering på" + +#. 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 "Sist synkronisert på " + +#: frappe/model/meta.py:57 frappe/public/js/frappe/model/meta.js:205 +#: frappe/public/js/frappe/model/model.js:130 +msgid "Last Updated By" +msgstr "Sist oppdatert av" + +#: frappe/model/meta.py:56 frappe/public/js/frappe/model/meta.js:204 +#: frappe/public/js/frappe/model/model.js:126 +msgid "Last Updated On" +msgstr "Sist oppdatert den" + +#. Label of the last_user (Link) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Last User" +msgstr "Siste bruker" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:640 +msgid "Last Week" +msgstr "Siste uke" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:656 +msgid "Last Year" +msgstr "Forrige år" + +#: frappe/public/js/frappe/widgets/chart_widget.js:753 +msgid "Last synced {0}" +msgstr "Sist synkronisert {0}" + +#: frappe/custom/doctype/customize_form/customize_form.js:194 +msgid "Layout Reset" +msgstr "Tilbakestilling av layout" + +#: frappe/custom/doctype/customize_form/customize_form.js:186 +msgid "Layout will be reset to standard layout, are you sure you want to do this?" +msgstr "Layout vil bli tilbakestilt til standardlayout, er du sikker på at du vil gjøre dette?" + +#: frappe/website/web_template/section_with_features/section_with_features.html:26 +msgid "Learn more" +msgstr "Les mer" + +#. Description of the 'Repeat Till' (Date) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Leave blank to repeat always" +msgstr "La stå tomt for å alltid gjenta" + +#: frappe/core/doctype/communication/mixins.py:207 +#: frappe/email/doctype/email_account/email_account.py:720 +msgid "Leave this conversation" +msgstr "Forlat denne samtalen" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Ledger" +msgstr "Hovedbok" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Align' (Select) field in DocType 'Letter Head' +#. Option for the 'Text Align' (Select) field in DocType 'Web Page' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Left" +msgstr "Venstre" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:483 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:155 +msgctxt "alignment" +msgid "Left" +msgstr "Venstre" + +#. 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 "Venstre nederst" + +#. 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 "Venstre senter" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:58 +msgid "Left this conversation" +msgstr "Forlot denne samtalen" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Legal" +msgstr "Juridisk" + +#. Label of the length (Int) field in DocType 'DocField' +#. Label of the length (Int) field in DocType 'Custom Field' +#. Label of the length (Int) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Length" +msgstr "Lengde" + +#: frappe/public/js/frappe/ui/chart.js:11 +msgid "Length of passed data array is greater than value of maximum allowed label points!" +msgstr "Lengden på den overførte datamatrisen er større enn verdien av maksimalt tillatte etikettpunkter!" + +#: frappe/database/schema.py:138 +msgid "Length of {0} should be between 1 and 1000" +msgstr "Lengden på {0} bør være mellom 1 og 1000" + +#: frappe/public/js/frappe/widgets/chart_widget.js:729 +msgid "Less" +msgstr "Færre" + +#: frappe/public/js/frappe/ui/filters/filter.js:24 +msgid "Less Than" +msgstr "Mindre enn" + +#: frappe/public/js/frappe/ui/filters/filter.js:26 +msgid "Less Than Or Equal To" +msgstr "Mindre enn eller lik" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:434 +msgid "Let us continue with the onboarding" +msgstr "La oss fortsette med onboardingen" + +#: frappe/public/js/frappe/views/workspace/blocks/onboarding.js:94 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:597 +msgid "Let's Get Started" +msgstr "La oss komme i gang" + +#: frappe/utils/password_strength.py:111 +msgid "Let's avoid repeated words and characters" +msgstr "La oss unngå gjentatte ord og tegn" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:474 +msgid "Let's set up your account" +msgstr "La oss sette opp kontoen din" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:263 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:304 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:375 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:414 +msgid "Let's take you back to onboarding" +msgstr "La oss ta deg tilbake til onboarding" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Letter" +msgstr "Brev" + +#. 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:140 +#: 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 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 +msgid "Letter Head" +msgstr "Brevhode" + +#. Label of the source (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Letter Head Based On" +msgstr "Brevhode basert på" + +#. 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 "Brevhodebilde" + +#. 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 "Navn på brevhode" + +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "Letter Head Scripts" +msgstr "Brevhodeskript" + +#: frappe/printing/doctype/letter_head/letter_head.py:49 +msgid "Letter Head cannot be both disabled and default" +msgstr "Brevhode kan ikke være både deaktivert og standard" + +#. Description of the 'Header HTML' (HTML Editor) field in DocType 'Letter +#. Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Letter Head in HTML" +msgstr "Brevhode i HTML" + +#. Label of the permlevel (Int) field in DocType 'Custom DocPerm' +#. Label of the permlevel (Int) field in DocType 'DocPerm' +#. Label of the level (Select) field in DocType 'Help Article' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/page/permission_manager/permission_manager.js:144 +#: frappe/core/page/permission_manager/permission_manager.js:220 +#: frappe/public/js/frappe/roles_editor.js:68 +#: frappe/website/doctype/help_article/help_article.json +msgid "Level" +msgstr "Nivå" + +#: frappe/core/page/permission_manager/permission_manager.js:467 +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å." + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:94 +msgid "Library" +msgstr "Bibliotek" + +#. Label of the license (Markdown Editor) field in DocType 'Package' +#: frappe/core/doctype/package/package.json frappe/www/attribution.html:36 +msgid "License" +msgstr "Lisens" + +#. Label of the license_type (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "License Type" +msgstr "Lisenstype" + +#. Option for the 'Desk Theme' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Light" +msgstr "Lys" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Light Blue" +msgstr "Lyseblå" + +#. Label of the light_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Light Color" +msgstr "Lys farge" + +#: frappe/public/js/frappe/ui/theme_switcher.js:60 +msgid "Light Theme" +msgstr "Lyst tema" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/ui/filters/filter.js:18 +msgid "Like" +msgstr "Liker" + +#: frappe/desk/like.py:92 +msgid "Liked" +msgstr "Likte" + +#: frappe/model/meta.py:60 frappe/public/js/frappe/model/meta.js:208 +#: frappe/public/js/frappe/model/model.js:134 +msgid "Liked By" +msgstr "Likt av" + +#. Label of the likes (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Likes" +msgstr "Likerklikk" + +#. Label of the limit (Int) field in DocType 'Bulk Update' +#: frappe/desk/doctype/bulk_update/bulk_update.json +msgid "Limit" +msgstr "Grense" + +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "Grensen må være et ikke-negativt heltall" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Line" +msgstr "Linje" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the link (Long Text) field in DocType 'Changelog Feed' +#. Label of the link (Small Text) field in DocType 'Desktop Icon' +#. Label of the link (Small Text) field in DocType 'Notification Log' +#. Option for the 'Type' (Select) field in DocType 'Workspace' +#. Option for the 'Type' (Select) field in DocType 'Workspace Link' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Link" +msgstr "Lenke" + +#. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Link Cards" +msgstr "Lenkekort" + +#. Label of the link_count (Int) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Link Count" +msgstr "Antall lenker" + +#. Label of the link_details_section (Section Break) field in DocType +#. 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Link Details" +msgstr "Lenkedetaljer" + +#. Label of the link_doctype (Link) field in DocType 'Activity Log' +#. Label of the link_doctype (Link) field in DocType 'Communication Link' +#. Label of the link_doctype (Link) field in DocType 'DocType Link' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Link DocType" +msgstr "Lenket DocType" + +#. Label of the link_doctype (Link) field in DocType 'Dynamic Link' +#: frappe/core/doctype/dynamic_link/dynamic_link.json +msgid "Link Document Type" +msgstr "Lenket dokumenttype (DocType)" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:406 +#: frappe/workflow/doctype/workflow_action/workflow_action.py:202 +msgid "Link Expired" +msgstr "Lenken er utløpt" + +#. Label of the link_field_results_limit (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Link Field Results Limit" +msgstr "Resultatgrense for lenkefelt " + +#. Label of the link_fieldname (Data) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Link Fieldname" +msgstr "Feltnavn for lenke" + +#. Label of the link_filters (JSON) field in DocType 'DocField' +#. Label of the link_filters (JSON) field in DocType 'Custom Field' +#. Label of the link_filters (JSON) field in DocType 'Customize Form' +#. Label of the link_filters (JSON) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Link Filters" +msgstr "Lenkefiltre" + +#. Label of the link_name (Dynamic Link) field in DocType 'Activity Log' +#. Label of the link_name (Dynamic Link) field in DocType 'Communication Link' +#. Label of the link_name (Dynamic Link) field in DocType 'Dynamic Link' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json +msgid "Link Name" +msgstr "Lenkenavn" + +#. 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 "Lenketittel" + +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace' +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Link' +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/views/workspace/workspace.js:418 +#: frappe/public/js/frappe/widgets/widget_dialog.js:281 +#: frappe/public/js/frappe/widgets/widget_dialog.js:427 +msgid "Link To" +msgstr "Lenke til" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:363 +msgid "Link To in Row" +msgstr "«Lenke til» i rad" + +#. Label of the link_type (Select) field in DocType 'Workspace' +#. Label of the link_type (Select) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/views/workspace/workspace.js:410 +#: frappe/public/js/frappe/widgets/widget_dialog.js:273 +msgid "Link Type" +msgstr "Lenketype" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:359 +msgid "Link Type in Row" +msgstr "Lenketype i rad" + +#: frappe/website/doctype/about_us_settings/about_us_settings.js:6 +msgid "Link for About Us Page is \"/about\"." +msgstr "Lenken til \"Om oss\"-siden er \"/om\"." + +#. 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 "Lenke som er nettsidens hjemmeside. Standardlenker (hjem, innlogging, produkter, blogg, om, kontakt)" + +#. Description of the 'URL' (Data) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "Link to the page you want to open. Leave blank if you want to make it a group parent." +msgstr "Lenke til siden du vil åpne. La den stå tom hvis du vil gjøre den til en overordnet gruppe." + +#. 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 "Lenket" + +#: frappe/public/js/frappe/form/linked_with.js:23 +msgid "Linked With" +msgstr "Lenket til" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +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 (Table) field in DocType 'Workspace' +#: frappe/contacts/doctype/address/address.js:39 +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.js:92 +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/workspace/workspace.json +msgid "Links" +msgstr "Lenker" + +#. Option for the 'Apply To' (Select) field in DocType 'Client Script' +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/utils/utils.js:926 +msgid "List" +msgstr "Liste" + +#. Label of the list__search_settings_section (Section Break) field in DocType +#. 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "List / Search Settings" +msgstr "Innstillinger for liste / søk" + +#. Label of the list_columns (Table) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "List Columns" +msgstr "Listekolonner" + +#. Name of a DocType +#: frappe/desk/doctype/list_filter/list_filter.json +msgid "List Filter" +msgstr "Listefilter" + +#. Label of the list_settings_section (Section Break) field in DocType 'User' +#. Label of the section_break_8 (Section Break) field in DocType 'Customize +#. Form' +#. Label of the section_break_3 (Section Break) field in DocType 'Web Form' +#: frappe/core/doctype/user/user.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/website/doctype/web_form/web_form.json +msgid "List Settings" +msgstr "Innstillinger for lister" + +#: frappe/public/js/frappe/list/list_view.js:1993 +msgctxt "Button in list view menu" +msgid "List Settings" +msgstr "Innstillinger for lister" + +#: frappe/public/js/frappe/list/base_list.js:202 +msgid "List View" +msgstr "Listevisning" + +#. Name of a DocType +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "List View Settings" +msgstr "Innstillinger for listevisning" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:161 +msgid "List a document type" +msgstr "List opp en dokumenttype (DocType)" + +#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Form' +#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Page' +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" +msgstr "List som [{\"label\": _(\"Jobber\"), \"route\":\"jobber\"}]" + +#. Description of the 'Send Notification to' (Small Text) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "List of email addresses, separated by comma or new line." +msgstr "Liste over e-postadresser, atskilt med komma eller ny linje." + +#. Description of a DocType +#: frappe/core/doctype/patch_log/patch_log.json +msgid "List of patches executed" +msgstr "Liste over utførte oppdateringer" + +#. Label of the list_setting_message (HTML) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "List setting message" +msgstr "Melding om listeinnstillinger" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 +msgid "Lists" +msgstr "Lister" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Load Balancing" +msgstr "Belastningsfordeling" + +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 +#: frappe/website/doctype/help_article/templates/help_article_list.html:30 +msgid "Load More" +msgstr "Last inn flere" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:215 +msgctxt "Form timeline" +msgid "Load More Communications" +msgstr "Last inn flere meldinger" + +#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45 +msgid "Load more" +msgstr "Last inn mer" + +#: frappe/core/page/permission_manager/permission_manager.js:172 +#: frappe/public/js/frappe/form/controls/multicheck.js:13 +#: frappe/public/js/frappe/form/linked_with.js:13 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 +#: frappe/public/js/frappe/ui/listing.html:16 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 +msgid "Loading" +msgstr "Laster inn" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:107 +msgid "Loading Filters..." +msgstr "Laster inn filtre ..." + +#: frappe/core/doctype/data_import/data_import.js:257 +msgid "Loading import file..." +msgstr "Laster inn importfilen..." + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +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/list/list_sidebar.js:243 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 +#: frappe/public/js/frappe/views/kanban/kanban_board.html:11 +#: frappe/public/js/frappe/widgets/chart_widget.js:50 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:129 +msgid "Loading..." +msgstr "Laster inn..." + +#. Label of the location (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Location" +msgstr "Sted" + +#. Label of the log (Code) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json +msgid "Log" +msgstr "Logg" + +#. Label of the log_api_requests (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Log API Requests" +msgstr "Logg API-forespørsler" + +#. 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 "Logg-data" + +#. 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 "Logg-DocType" + +#: frappe/templates/emails/login_with_email_link.html:27 +msgid "Log In To {0}" +msgstr "Logg inn på {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 "Loggindeks" + +#. Name of a DocType +#: frappe/core/doctype/log_setting_user/log_setting_user.json +msgid "Log Setting User" +msgstr "Bruker for logginnstillinger" + +#. Name of a DocType +#: frappe/core/doctype/log_settings/log_settings.json +#: frappe/public/js/frappe/logtypes.js:20 +msgid "Log Settings" +msgstr "Logginnstillinger" + +#: frappe/www/app.py:23 +msgid "Log in to access this page." +msgstr "Logg inn for å få tilgang til denne siden." + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +#: frappe/website/doctype/website_settings/website_settings.py:182 +msgid "Log out" +msgstr "Logg ut" + +#: frappe/handler.py:119 +msgid "Logged Out" +msgstr "Logget ut" + +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#. Label of the security_tab (Tab Break) field in DocType 'System Settings' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/public/js/frappe/web_form/webform_script.js:16 +#: frappe/templates/discussions/discussions_section.html:60 +#: frappe/templates/discussions/reply_section.html:44 +#: frappe/templates/includes/navbar/dropdown_login.html:15 +#: frappe/templates/includes/navbar/navbar_login.html:25 +#: frappe/website/page_renderers/not_permitted_page.py:24 +#: frappe/www/login.html:45 +msgid "Login" +msgstr "Logg inn" + +#. Label of the login_after (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Login After" +msgstr "Logg inn etter" + +#. Label of the login_before (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Login Before" +msgstr "Logg inn før" + +#: frappe/public/js/frappe/desk.js:256 +msgid "Login Failed please try again" +msgstr "Innlogging mislyktes, vennligst prøv igjen" + +#: frappe/email/doctype/email_account/email_account.py:144 +msgid "Login Id is required" +msgstr "Innloggings-ID er påkrevd" + +#. Label of the login_methods_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Login Methods" +msgstr "Innloggingsmetoder" + +#. Label of the misc_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Login Page" +msgstr "Innloggingsside" + +#: frappe/www/login.py:156 +msgid "Login To {0}" +msgstr "Logg inn på {0}" + +#: frappe/twofactor.py:260 +msgid "Login Verification Code from {}" +msgstr "Verifiseringskode for innlogging fra {}" + +#: frappe/templates/emails/new_message.html:4 +msgid "Login and view in Browser" +msgstr "Logg inn og se i nettleser" + +#: frappe/website/doctype/web_form/web_form.js:368 +msgid "Login is required to see web form list view. Enable {0} to see list settings" +msgstr "Innlogging er påkrevd for å se webskjemaets listevisning. Aktiver {0} for å se listeinnstillinger" + +#: frappe/templates/includes/login/login.js:69 +msgid "Login link sent to your email" +msgstr "Innloggingslenke er sendt til e-postkontoen din" + +#: frappe/auth.py:342 frappe/auth.py:345 +msgid "Login not allowed at this time" +msgstr "Innlogging er ikke tillatt for øyeblikket" + +#. Label of the login_required (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Login required" +msgstr "Innlogging er påkrevd" + +#: frappe/twofactor.py:164 +msgid "Login session expired, refresh page to retry" +msgstr "Innloggingsøkten er utløpt. Oppdater siden for å prøve på nytt." + +#: frappe/templates/includes/comments/comments.html:110 +msgid "Login to comment" +msgstr "Logg inn for å kommentere" + +#: frappe/templates/includes/comments/comments.html:6 +msgid "Login to start a new discussion" +msgstr "Logg inn for å starte en ny diskusjon" + +#: frappe/www/login.html:64 +msgid "Login to {0}" +msgstr "Logg inn på {0}" + +#: frappe/templates/includes/login/login.js:319 +msgid "Login token required" +msgstr "Påloggingstoken kreves" + +#: frappe/www/login.html:126 frappe/www/login.html:210 +msgid "Login with Email Link" +msgstr "Logg inn med e-postlenke" + +#: frappe/www/login.html:116 +msgid "Login with Frappe Cloud" +msgstr "Logg inn med Frappe Cloud" + +#: frappe/www/login.html:49 +msgid "Login with LDAP" +msgstr "Logg inn med LDAP" + +#. Label of the login_with_email_link (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Login with email link" +msgstr "Logg inn med e-postlenke" + +#. 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 "Utløpstid for «Logg inn med e-postlenke» (i minutter)" + +#: frappe/auth.py:147 +msgid "Login with username and password is not allowed." +msgstr "«Logg inn med brukernavn og passord» er ikke tillatt." + +#: frappe/www/login.html:100 +msgid "Login with {0}" +msgstr "Logg inn med {0}" + +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "Logo URI" + +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 +#: frappe/www/me.html:84 +msgid "Logout" +msgstr "Logg ut" + +#: frappe/core/doctype/user/user.js:190 +msgid "Logout All Sessions" +msgstr "Logg ut av alle økter" + +#. Label of the logout_on_password_reset (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Logout All Sessions on Password Reset" +msgstr "Logg ut av alle økter ved tilbakestilling av passord" + +#. 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 "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 +msgid "Logs" +msgstr "Logger" + +#. Name of a DocType +#: frappe/core/doctype/logs_to_clear/logs_to_clear.json +msgid "Logs To Clear" +msgstr "Logger som skal tømmes" + +#. 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 "Logger som skal tømmes" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Long Text" +msgstr "Lang tekst" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:317 +msgid "Looks like you didn't change the value" +msgstr "Det ser ut som du ikke har endret verdien" + +#: frappe/www/third_party_apps.html:59 +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:315 +msgid "Looks like you haven’t received any notifications." +msgstr "Det ser ut til at du ikke har mottatt noen varsler." + +#. Option for the 'Priority' (Select) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:217 +msgid "Low" +msgstr "Lav" + +#: frappe/public/js/frappe/utils/number_systems.js:13 +msgctxt "Number system" +msgid "M" +msgstr "M" + +#. Option for the 'License Type' (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "MIT License" +msgstr "MIT-lisens" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:48 +msgid "Madam" +msgstr "Fru" + +#. Label of the main_section (Text Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Main Section" +msgstr "Hovedseksjon" + +#. 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 "Hovedseksjon (HTML)" + +#. Label of the main_section_md (Markdown Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Main Section (Markdown)" +msgstr "Hoveddelen (Markdown)" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Maintenance Manager" +msgstr "Vedlikeholdsleder" + +#. Name of a role +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +msgid "Maintenance User" +msgstr "Vedlikeholdsbruker" + +#. Label of the major (Int) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json +msgid "Major" +msgstr "Hovedversjon" + +#. 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 +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Make \"name\" searchable in Global Search" +msgstr "Gjør «navn» søkbart i globalt søk" + +#. Label of the make_attachment_public (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Make Attachment Public (by default)" +msgstr "Gjør vedlegget offentlig (som standard)" + +#. Label of the make_attachments_public (Check) field in DocType 'DocType' +#. Label of the make_attachments_public (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Make Attachments Public by Default" +msgstr "Gjør vedlegg offentlige som standard" + +#. 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 "Sørg for å konfigurere en sosial påloggingsnøkkel før du deaktiverer for å forhindre sperring" + +#: frappe/utils/password_strength.py:92 +msgid "Make use of longer keyboard patterns" +msgstr "Bruk lengre tastaturmønstre" + +#: frappe/public/js/frappe/form/multi_select_dialog.js:87 +msgid "Make {0}" +msgstr "Opprett {0}" + +#: frappe/website/doctype/web_page/web_page.js:77 +msgid "Makes the page public" +msgstr "Gjør siden til offentlig" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:28 +msgid "Male" +msgstr "Mann" + +#: frappe/www/me.html:56 +msgid "Manage 3rd party apps" +msgstr "Administrer tredjepartsapper" + +#. Description of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Manage your data" +msgstr "Administrer dataene dine" + +#. Label of the reqd (Check) field in DocType 'DocField' +#. Label of the mandatory (Check) field in DocType 'Report Filter' +#. Label of the reqd (Check) field in DocType 'Customize Form Field' +#. Label of the reqd (Check) field in DocType 'Web Form Field' +#. Label of the reqd (Check) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Mandatory" +msgstr "Påkrevd" + +#. Label of the mandatory_depends_on (Code) field in DocType 'Custom Field' +#. Label of the mandatory_depends_on (Code) field in DocType 'Customize Form +#. Field' +#. Label of the mandatory_depends_on (Code) field in DocType 'Web Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Mandatory Depends On" +msgstr "Betingelse for påkrevd felt" + +#. Label of the mandatory_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Mandatory Depends On (JS)" +msgstr "Betingelse for påkrevd felt (JS)" + +#: frappe/website/doctype/web_form/web_form.py:536 +msgid "Mandatory Information missing:" +msgstr "Påkrevd informasjon mangler:" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120 +msgid "Mandatory field: set role for" +msgstr "Angi rolle for påkrevd felt" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124 +msgid "Mandatory field: {0}" +msgstr "Påkrevd felt: {0}" + +#: frappe/public/js/frappe/form/save.js:172 +msgid "Mandatory fields required in table {0}, Row {1}" +msgstr "Påkrevd felt kreves i tabellen {0}, rad {1}" + +#: frappe/public/js/frappe/form/save.js:177 +msgid "Mandatory fields required in {0}" +msgstr "Påkrevd felt kreves i {0}" + +#: frappe/public/js/frappe/web_form/web_form.js:258 +msgctxt "Error message in web form" +msgid "Mandatory fields required:" +msgstr "Påkrevd felt:" + +#: frappe/core/doctype/data_export/exporter.py:142 +msgid "Mandatory:" +msgstr "Påkrevd:" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Map" +msgstr "Kart" + +#: frappe/public/js/frappe/data_import/import_preview.js:194 +#: frappe/public/js/frappe/data_import/import_preview.js:306 +msgid "Map Columns" +msgstr "Tilordne kolonner" + +#: frappe/public/js/frappe/list/base_list.js:211 +msgid "Map View" +msgstr "Kartvisninge" + +#: frappe/public/js/frappe/data_import/import_preview.js:294 +msgid "Map columns from {0} to fields in {1}" +msgstr "Tilordne kolonner fra {0} til felt i {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 "Tilordne ruteparametere til skjemavariabler. Eksempel /prosjekt/<navn>" + +#: frappe/core/doctype/data_import/importer.py:924 +msgid "Mapping column {0} to field {1}" +msgstr "Tilordner kolonne {0} til felt {1}" + +#. Label of the margin_bottom (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Bottom" +msgstr "Bunnmarg" + +#. Label of the margin_left (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Left" +msgstr "Venstre marg" + +#. Label of the margin_right (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Right" +msgstr "Høyre marg" + +#. Label of the margin_top (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Top" +msgstr "Toppmarg" + +#. Label of the mariadb_variables_section (Section Break) field in DocType +#. 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "MariaDB Variables" +msgstr "MariaDB variabler" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:45 +msgid "Mark all as read" +msgstr "Merk alle som lest" + +#: frappe/core/doctype/communication/communication.js:78 +#: frappe/core/doctype/communication/communication_list.js:19 +msgid "Mark as Read" +msgstr "Marker som lest" + +#: frappe/core/doctype/communication/communication.js:95 +msgid "Mark as Spam" +msgstr "Merk som søppelpost" + +#: frappe/core/doctype/communication/communication.js:78 +#: frappe/core/doctype/communication/communication_list.js:22 +msgid "Mark as Unread" +msgstr "Marker som ulest" + +#. Option for the 'Message Type' (Select) field in DocType 'Notification' +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/email/doctype/notification/notification.json +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json +msgid "Markdown" +msgstr "Markdown" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Markdown Editor" +msgstr "Markdown-editor" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Marked As Spam" +msgstr "Merket som spam" + +#. Name of a role +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +msgid "Marketing Manager" +msgstr "Markedsføringssjef" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:50 +msgid "Master" +msgstr "Grunndata" + +#. 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 "Maks 500 oppføringer om gangen" + +#. 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 "Maks antall vedlegg" + +#. 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 "Max filstørrelse (MB)" + +#. Label of the max_height (Data) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Max Height" +msgstr "Maks høyde" + +#. 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 "Maks lengde" + +#. Label of the max_report_rows (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max Report Rows" +msgstr "Maks antall rader i rapporten" + +#. 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 "Maksverdi" + +#. Label of the max_attachment_size (Int) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Max attachment size" +msgstr "Maks vedleggsstørrelse" + +#. Label of the max_auto_email_report_per_user (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max auto email report per user" +msgstr "Maks automatisk e-postrapport per bruker" + +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "Maks antall påmeldinger tillatt per time" + +#: frappe/core/doctype/doctype/doctype.py:1343 +msgid "Max width for type Currency is 100px in row {0}" +msgstr "Maks bredde for typen Valuta er 100px i raden {0}" + +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Maximum" +msgstr "Maksimum" + +#: frappe/core/doctype/file/file.py:332 +msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." +msgstr "Maksgrensen for vedlegg på {0} er nådd for {1} {2}." + +#: frappe/public/js/frappe/form/sidebar/attachments.js:38 +msgid "Maximum attachment limit of {0} has been reached." +msgstr "Maksgrensen for vedlegg på {0} er nådd." + +#: frappe/model/rename_doc.py:689 +msgid "Maximum {0} rows allowed" +msgstr "Maks {0} rader tillatt" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:221 +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" + +#. Option for the 'Priority' (Select) field in DocType 'ToDo' +#. Label of the medium (Data) field in DocType 'Web Page View' +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:221 +#: frappe/public/js/frappe/utils/utils.js:1774 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:40 +msgid "Medium" +msgstr "Medium" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json +msgid "Meeting" +msgstr "Møte" + +#: frappe/email/doctype/notification/notification.js:200 +#: frappe/integrations/doctype/webhook/webhook.js:96 +msgid "Meets Condition?" +msgstr "Oppfylles betingelsen?" + +#. Group in Email Group's connections +#: frappe/email/doctype/email_group/email_group.json +msgid "Members" +msgstr "Medlemmer" + +#. Label of the cache_memory_usage (Data) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Memory Usage" +msgstr "Minnebruk" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63 +msgid "Memory Usage in MB" +msgstr "Minnebruk i MB" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Mention" +msgstr "Omtale" + +#. Label of the enable_email_mention (Check) field in DocType 'Notification +#. Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Mentions" +msgstr "Omtaler" + +#: frappe/public/js/frappe/ui/page.html:41 +#: frappe/public/js/frappe/ui/page.js:162 +msgid "Menu" +msgstr "Meny" + +#: frappe/public/js/frappe/form/toolbar.js:242 +#: frappe/public/js/frappe/model/model.js:705 +msgid "Merge with existing" +msgstr "Slå sammen med eksisterende" + +#: frappe/utils/nestedset.py:320 +msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" +msgstr "Det er kun mulig å slå sammen gruppe med gruppe eller bladnode med bladnode." + +#. Label of the message (Text) field in DocType 'Auto Repeat' +#. Label of the content (Text Editor) field in DocType 'Activity Log' +#. Label of the content (Text Editor) field in DocType 'Communication' +#. Label of the message (Small Text) field in DocType 'SMS Log' +#. Label of the message (Data) field in DocType 'Success Action' +#. Label of the email_content (Text Editor) field in DocType 'Notification Log' +#. Label of the section_break_15 (Section Break) field in DocType 'Auto Email +#. Report' +#. Label of the description (Text Editor) field in DocType 'Auto Email Report' +#. Label of the message (Code) field in DocType 'Email Queue' +#. Label of the message_sb (Section Break) field in DocType 'Notification' +#. Label of the message (Code) field in DocType 'Notification' +#. Label of the message (Text) field in DocType 'Workflow Document State' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import/data_import.js:483 +#: frappe/core/doctype/sms_log/sms_log.json +#: frappe/core/doctype/success_action/success_action.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/notification/notification.js:205 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/ui/messages.js:182 +#: frappe/public/js/frappe/views/communication.js:126 +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/www/message.html:3 +msgid "Message" +msgstr "Melding" + +#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78 +msgctxt "Default title of the message dialog" +msgid "Message" +msgstr "Melding" + +#. Label of the message_examples (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Message Examples" +msgstr "Eksempler på meldinger" + +#. 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 "Meldings-ID" + +#. Label of the message_parameter (Data) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Message Parameter" +msgstr "Meldingsparameter" + +#: frappe/templates/includes/contact.js:36 +msgid "Message Sent" +msgstr "Melding sendt" + +#. Label of the message_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Message Type" +msgstr "Meldingstype" + +#: frappe/public/js/frappe/views/communication.js:956 +msgid "Message clipped" +msgstr "Melding kuttet" + +#: frappe/email/doctype/email_account/email_account.py:344 +msgid "Message from server: {0}" +msgstr "Melding fra serveren: {0}" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104 +msgid "Message not setup" +msgstr "Melding ikke konfigurert" + +#. 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 "Melding som skal vises ved vellykket fullføring" + +#. Label of the message_id (Code) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Message-id" +msgstr "Meldings-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 "Meldinger" + +#. Label of the meta_section (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta" +msgstr "Meta" + +#: frappe/website/doctype/web_page/web_page.js:124 +msgid "Meta Description" +msgstr "Meta beskrivelse" + +#: frappe/website/doctype/web_page/web_page.js:131 +msgid "Meta Image" +msgstr "Metabilde" + +#. Label of the metatags_section (Section Break) field in DocType 'Web Page' +#. Label of the meta_tags (Table) field in DocType 'Website Route Meta' +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_route_meta/website_route_meta.json +msgid "Meta Tags" +msgstr "Meta-tagger" + +#: frappe/website/doctype/web_page/web_page.js:117 +msgid "Meta Title" +msgstr "Meta-tittel" + +#. Label of the meta_description (Small Text) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta description" +msgstr "Meta-beskrivelse" + +#. Label of the meta_image (Attach Image) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta image" +msgstr "Meta-bilde" + +#. Label of the meta_title (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta title" +msgstr "Meta-tittel" + +#: frappe/website/doctype/web_page/web_page.js:110 +msgid "Meta title for SEO" +msgstr "Metatittel for SEO" + +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "Metadata" + +#. Label of the method (Data) field in DocType 'Access Log' +#. Label of the method (Data) field in DocType 'API Request Log' +#. Label of the method (Select) field in DocType 'Recorder' +#. Label of the method (Data) field in DocType 'Scheduled Job Type' +#. Label of the method (Data) field in DocType 'Scheduler Event' +#. Label of the method (Data) field in DocType 'Number Card' +#. Label of the auth_method (Select) field in DocType 'Email Account' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/scheduler_event/scheduler_event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/notification/notification.json +msgid "Method" +msgstr "Metode" + +#: frappe/__init__.py:468 +msgid "Method Not Allowed" +msgstr "Ikke tillatt metode" + +#: frappe/desk/doctype/number_card/number_card.py:74 +msgid "Method is required to create a number card" +msgstr "Metode er påkrevd for å opprette et tallkort" + +#. 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 "Sentrert" + +#. 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 "Mellomnavn" + +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Tools Workspace +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/workspace/tools/tools.json +msgid "Milestone" +msgstr "Milepæl" + +#. Label of the milestone_tracker (Link) field in DocType 'Milestone' +#. Name of a DocType +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Milestone Tracker" +msgstr "Milepælsporing" + +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Minimum" +msgstr "Minimum" + +#. Label of the minimum_password_score (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Minimum Password Score" +msgstr "Minimum passordpoeng" + +#. Label of the minor (Int) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json +msgid "Minor" +msgstr "Mindre" + +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "Minutter" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Minutes After" +msgstr "Minutter etter" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Minutes Before" +msgstr "Minutter før" + +#. Label of the minutes_offset (Int) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Minutes Offset" +msgstr "Minuttforskyvning" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:103 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:117 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:125 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333 +msgid "Misconfigured" +msgstr "Feilkonfigurert" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:49 +msgid "Miss" +msgstr "Fr." + +#: frappe/desk/form/meta.py:194 +msgid "Missing DocType" +msgstr "Manglende DocType" + +#: frappe/core/doctype/doctype/doctype.py:1527 +msgid "Missing Field" +msgstr "Manglende felt" + +#: frappe/public/js/frappe/form/save.js:183 +msgid "Missing Fields" +msgstr "Manglende felt" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 +msgid "Missing Filters Required" +msgstr "Manglende filtre er påkrevd" + +#: frappe/desk/form/assign_to.py:110 +msgid "Missing Permission" +msgstr "Manglende tillatelse" + +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 +msgid "Missing Value" +msgstr "Manglende verdi" + +#: frappe/public/js/frappe/ui/field_group.js:124 +#: frappe/public/js/frappe/widgets/widget_dialog.js:374 +#: frappe/public/js/workflow_builder/store.js:97 +#: frappe/workflow/doctype/workflow/workflow.js:71 +msgid "Missing Values Required" +msgstr "Manglende verdier er påkrevd" + +#: frappe/www/login.py:107 +msgid "Mobile" +msgstr "Mobil" + +#. Label of the mobile_no (Data) field in DocType 'Contact' +#. Label of the mobile_no (Data) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json frappe/tests/test_translate.py:86 +#: frappe/tests/test_translate.py:89 frappe/tests/test_translate.py:91 +#: frappe/tests/test_translate.py:94 +msgid "Mobile No" +msgstr "Mobile No" + +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +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 "Åpner modalvindu" + +#. Label of the module (Data) field in DocType 'Block Module' +#. Label of the module (Link) field in DocType 'DocType' +#. Label of the module (Link) field in DocType 'Page' +#. Label of the module (Link) field in DocType 'Report' +#. Label of the module (Link) field in DocType 'User Type Module' +#. Label of the module (Link) field in DocType 'Dashboard' +#. Label of the module (Link) field in DocType 'Dashboard Chart' +#. Label of the module (Link) field in DocType 'Dashboard Chart Source' +#. Label of the module (Link) field in DocType 'Form Tour' +#. Label of the module (Link) field in DocType 'Module Onboarding' +#. Label of the module (Link) field in DocType 'Number Card' +#. Label of the module (Link) field in DocType 'Workspace' +#. Label of the module (Link) field in DocType 'Notification' +#. Label of the module (Link) field in DocType 'Print Format' +#. Label of the module (Link) field in DocType 'Print Format Field Template' +#. Label of the module (Link) field in DocType 'Web Form' +#. Label of the module (Link) field in DocType 'Web Template' +#. Label of the module (Link) field in DocType 'Website Theme' +#: frappe/core/doctype/block_module/block_module.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:31 +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/core/doctype/user_type_module/user_type_module.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Module" +msgstr "Modul" + +#. Label of the module (Link) field in DocType 'Server Script' +#. Label of the module (Link) field in DocType 'Client Script' +#. Label of the module (Link) field in DocType 'Custom Field' +#. Label of the module (Link) field in DocType 'Property Setter' +#. Label of the module (Link) field in DocType 'Web Page' +#: frappe/core/doctype/server_script/server_script.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Module (for export)" +msgstr "Modul (for eksport)" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#. Label of a shortcut in the Build Workspace +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/workspace/build/build.json +msgid "Module Def" +msgstr "Moduldefinering" + +#. Label of the module_html (HTML) field in DocType 'Module Profile' +#: frappe/core/doctype/module_profile/module_profile.json +msgid "Module HTML" +msgstr "Modul HTML" + +#. Label of the module_name (Data) field in DocType 'Module Def' +#. Label of the module_name (Data) field in DocType 'Desktop Icon' +#: frappe/core/doctype/module_def/module_def.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Module Name" +msgstr "Modulnavn" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Module Onboarding" +msgstr "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 +msgid "Module Profile" +msgstr "Modulprofil" + +#. 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 "Navn på modulprofil" + +#: frappe/desk/doctype/module_onboarding/module_onboarding.py:69 +msgid "Module onboarding progress reset" +msgstr "Nullstilling av prosess for onboarding av modul" + +#: frappe/custom/doctype/customize_form/customize_form.js:250 +msgid "Module to Export" +msgstr "Modul for eksport" + +#: frappe/modules/utils.py:273 +msgid "Module {} not found" +msgstr "Modul {} ble ikke funnet" + +#. Group in Package's connections +#. Label of a Card Break in the Build Workspace +#: frappe/core/doctype/package/package.json +#: frappe/core/workspace/build/build.json +msgid "Modules" +msgstr "Moduler" + +#. Label of the modules_html (HTML) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Modules HTML" +msgstr "Moduler HTML" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the monday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Monday" +msgstr "Mandag" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Monitor logs for errors, background jobs, communications, and user activity" +msgstr "Overvåk logger for feil, bakgrunnsjobber, kommunikasjon og brukeraktivitet" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Monospace" +msgstr "Monospase" + +#: frappe/public/js/frappe/views/calendar/calendar.js:275 +msgid "Month" +msgstr "Måned" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:400 +#: frappe/website/report/website_analytics/website_analytics.js:25 +msgid "Monthly" +msgstr "Månedlig" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Monthly Long" +msgstr "Månedslang" + +#: frappe/public/js/frappe/form/link_selector.js:39 +#: frappe/public/js/frappe/form/multi_select_dialog.js:45 +#: frappe/public/js/frappe/form/multi_select_dialog.js:72 +#: frappe/public/js/frappe/ui/toolbar/search.js:285 +#: frappe/public/js/frappe/ui/toolbar/search.js:300 +#: frappe/public/js/frappe/widgets/chart_widget.js:729 +#: frappe/templates/includes/list/list.html:25 +#: frappe/templates/includes/search_template.html:13 +msgid "More" +msgstr "Mer" + +#. Label of the section_break_6gd5 (Section Break) field in DocType 'Permission +#. Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "More Info" +msgstr "Mer info" + +#. Label of the more_info (Section Break) field in DocType 'Contact' +#. Label of the additional_info (Section Break) field in DocType 'Activity Log' +#. Label of the additional_info (Section Break) field in DocType +#. 'Communication' +#. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "More Information" +msgstr "Mer informasjon" + +#: frappe/website/doctype/help_article/templates/help_article.html:19 +#: frappe/website/doctype/help_article/templates/help_article.html:33 +msgid "More articles on {0}" +msgstr "Flere artikler om {0}" + +#. Description of the 'Footer' (Text Editor) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "More content for the bottom of the page." +msgstr "Mer innhold nederst på siden." + +#: frappe/public/js/frappe/ui/sort_selector.js:193 +msgid "Most Used" +msgstr "Mest brukt" + +#: frappe/utils/password.py:75 +msgid "Most probably your password is too long." +msgstr "Mest sannsynlig er passordet for langt." + +#: frappe/core/doctype/communication/communication.js:86 +#: frappe/core/doctype/communication/communication.js:194 +#: frappe/core/doctype/communication/communication.js:212 +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Move" +msgstr "Flytt" + +#: frappe/public/js/frappe/form/grid_row.js:194 +msgid "Move To" +msgstr "Flytt til" + +#: frappe/core/doctype/communication/communication.js:104 +msgid "Move To Trash" +msgstr "Flytt til søppelbøtte" + +#: frappe/public/js/form_builder/components/Section.vue:295 +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:177 +msgid "Move cursor to above row" +msgstr "Flytt markøren til raden over" + +#: frappe/public/js/frappe/form/form.js:181 +msgid "Move cursor to below row" +msgstr "Flytt markøren til raden under" + +#: frappe/public/js/frappe/form/form.js:185 +msgid "Move cursor to next column" +msgstr "Flytt markøren til neste kolonne" + +#: frappe/public/js/frappe/form/form.js:189 +msgid "Move cursor to previous column" +msgstr "Flytt markøren til forrige kolonne" + +#: frappe/public/js/form_builder/components/Section.vue:294 +msgid "Move sections to new tab" +msgstr "Flytt seksjoner til ny fane" + +#: frappe/public/js/form_builder/components/Field.vue:237 +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 +msgid "Move to Row Number" +msgstr "Flytt til radnummer" + +#. 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 "Gå til neste trinn når du klikker i det markerte området." + +#. 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 støtter ikke :has(), så du kan sende den overordnede velgeren her som en løsning" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:43 +msgid "Mr" +msgstr "Herr" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:47 +msgid "Mrs" +msgstr "Fru" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:44 +msgid "Ms" +msgstr "Fr." + +#: frappe/utils/nestedset.py:344 +msgid "Multiple root nodes not allowed." +msgstr "Flere rotnoder er ikke tillatt." + +#. Description of the 'Import from Google Sheets' (Data) field in DocType 'Data +#. Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Must be a publicly accessible Google Sheets URL" +msgstr "Må være en offentlig tilgjengelig Google Sheets-URL" + +#. 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 "Må være omsluttet av '()' og inkludere '{0}', som er en plassholder for bruker-/påloggingsnavnet. ie (&(objectclass=user)(uid={0}))" + +#. Description of the 'Image Field' (Data) field in DocType 'DocType' +#. Description of the 'Image Field' (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Must be of type \"Attach Image\"" +msgstr "Må være av typen \"Legg ved bilde\"" + +#: frappe/desk/query_report.py:210 +msgid "Must have report permission to access this report." +msgstr "Må ha rapporttillatelse for å få tilgang til denne rapporten." + +#: frappe/core/doctype/report/report.py:151 +msgid "Must specify a Query to run" +msgstr "Må spesifisere en spørring for å kjøre" + +#. Label of the mute_sounds (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Mute Sounds" +msgstr "Demp lyder" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:45 +msgid "Mx" +msgstr "Mx" + +#: frappe/templates/includes/web_sidebar.html:41 +#: frappe/website/doctype/web_form/web_form.py:525 +#: frappe/website/doctype/website_settings/website_settings.py:181 +#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 +msgid "My Account" +msgstr "Min Konto" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:57 +msgid "My Device" +msgstr "Min enhet" + +#: frappe/public/js/frappe/ui/apps_switcher.js:71 +msgid "My Workspaces" +msgstr "Mine arbeidsområder" + +#. Option for the 'Database Engine' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "MyISAM" +msgstr "MyISAM" + +#: frappe/workflow/doctype/workflow/workflow.js:19 +msgid "NOTE: If you add states or transitions in the table, it will be reflected in the Workflow Builder but you will have to position them manually. Also Workflow Builder is currently in BETA." +msgstr "MERK: Hvis du legger til tilstander eller overganger i tabellen, vil det gjenspeiles i Arbeidsflytbyggeren, men du må plassere dem manuelt. Arbeidsflytbyggeren er for øyeblikket også i BETA." + +#. Description of the 'LDAP Group Field' (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "NOTE: This box is due for depreciation. Please re-setup LDAP to work with the newer settings" +msgstr "MERK: Denne boksen har forfalt for avvikling. Vennligst konfigurer LDAP på nytt slik at den fungerer med de nyere innstillingene." + +#. Label of the fieldname (Data) field in DocType 'DocField' +#. Label of the fieldname (Data) field in DocType 'Customize Form Field' +#. Label of the label (Data) field in DocType 'Workspace' +#. Label of the webhook_name (Data) field in DocType 'Slack Webhook URL' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype_list.js:22 +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +#: frappe/public/js/frappe/form/layout.js:76 +#: frappe/public/js/frappe/form/multi_select_dialog.js:240 +#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/views/file/file_view.js:97 +#: frappe/website/doctype/website_slideshow/website_slideshow.js:25 +msgid "Name" +msgstr "Navn" + +#: frappe/integrations/doctype/webhook/webhook.js:29 +msgid "Name (Doc Name)" +msgstr "Navn (Dokumentnavn)" + +#: frappe/desk/utils.py:24 +msgid "Name already taken, please set a new name" +msgstr "Navnet er allerede tatt, vennligst angi et nytt navn" + +#: frappe/model/naming.py:512 +msgid "Name cannot contain special characters like {0}" +msgstr "Navnet kan ikke inneholde spesialtegn som {0}" + +#: frappe/custom/doctype/custom_field/custom_field.js:91 +msgid "Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer" +msgstr "Navnet på dokumenttypen (DocType) du vil at dette feltet skal knyttes til. F.eks. Kunde" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:117 +msgid "Name of the new Print Format" +msgstr "Navn på det nye utskriftsformatet" + +#: frappe/model/naming.py:507 +msgid "Name of {0} cannot be {1}" +msgstr "Navnet på {0} kan ikke være {1}" + +#: frappe/utils/password_strength.py:174 +msgid "Names and surnames by themselves are easy to guess." +msgstr "Navn og etternavn er i seg selv lette å gjette." + +#. Label of the sb1 (Tab Break) field in DocType 'DocType' +#. Label of the naming_section (Section Break) field in DocType 'Document +#. Naming Rule' +#. Label of the naming_section (Section Break) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Naming" +msgstr "Navngivning" + +#. 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 "Alternativer for nummerserie:\n" +"
    1. field:[fieldname] - Etter felt
    2. naming_series: - Etter nummerserie (feltet kalt naming_series må være til stede)
    3. Spørsmål - Spør brukeren om et navn
    4. [serie] - Serie etter prefiks (atskilt med punktum); for eksempel PRE.#####
    5. \n" +"
    6. format: EKSEMPEL-{MM}flere ord{fieldname1}-{fieldname2}-{#####} - Erstatt alle ord med parenteser (feltnavn, datoord (DD, MM, YY), serier) med verdien deres. Utenfor parenteser kan alle tegn brukes.
    " + +#. 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 "Navneregel" + +#. Label of the naming_series_tab (Tab Break) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Naming Series" +msgstr "Nummerserie" + +#: frappe/model/naming.py:268 +msgid "Naming Series mandatory" +msgstr "Nummerserie påkrevet" + +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#. Label of the top_bar (Section Break) field in DocType 'Website Settings' +#. Label of the navbar_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Navbar" +msgstr "Navigasjonsfelt" + +#. Name of a DocType +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Navbar Item" +msgstr "Element i navigasjonsfelt" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/navbar_settings/navbar_settings.json +#: frappe/core/workspace/build/build.json +msgid "Navbar Settings" +msgstr "Innstillinger for navigasjonsfelt" + +#. 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 "Mal for navigasjonsfelt" + +#. 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 "Verdier for navigasjonsfeltmal" + +#: frappe/public/js/frappe/list/list_view.js:1380 +msgctxt "Description of a list view shortcut" +msgid "Navigate list down" +msgstr "Naviger nedover i listen" + +#: frappe/public/js/frappe/list/list_view.js:1387 +msgctxt "Description of a list view shortcut" +msgid "Navigate list up" +msgstr "Naviger listen oppover" + +#: frappe/public/js/frappe/ui/page.js:175 +msgid "Navigate to main content" +msgstr "Naviger til hovedinnholdet" + +#. 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:485 +msgid "Need Help?" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:322 +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:794 +msgid "Negative Value" +msgstr "Negativ verdi" + +#: frappe/database/query.py:335 +msgid "Nested filters must be provided as a list or tuple." +msgstr "Nestede filtre må angis som en liste eller tuppel." + +#: frappe/utils/nestedset.py:94 +msgid "Nested set error. Please contact the Administrator." +msgstr "Feil i nestet sett. Kontakt administratoren." + +#. Name of a DocType +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Network Printer Settings" +msgstr "Innstillinger for nettverksskriver" + +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/success_action/success_action.js:57 +#: frappe/core/page/dashboard_view/dashboard_view.js:173 +#: frappe/desk/doctype/todo/todo.js:46 +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/success_action.js:77 +#: frappe/public/js/frappe/views/treeview.js:473 +#: frappe/public/js/frappe/views/workspace/workspace.js:64 +#: frappe/website/doctype/web_form/templates/web_list.html:15 +#: frappe/www/list.html:19 +msgid "New" +msgstr "Ny" + +#: frappe/public/js/frappe/views/interaction.js:15 +msgid "New Activity" +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 +msgid "New Address" +msgstr "Ny adresse" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:58 +msgid "New Chart" +msgstr "Nytt diagram" + +#: frappe/public/js/frappe/form/templates/contact_list.html:3 +msgid "New Contact" +msgstr "Ny kontakt" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:70 +msgid "New Custom Block" +msgstr "Ny egendefinert blokk" + +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 +msgid "New Custom Print Format" +msgstr "Nytt egendefinert utskriftsformat" + +#. 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 "Nytt dokumentskjema" + +#: frappe/desk/doctype/notification_log/notification_log.py:154 +msgid "New Document Shared {0}" +msgstr "Nytt dokument delt {0}" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:27 +#: frappe/public/js/frappe/views/communication.js:23 +msgid "New Email" +msgstr "Ny e-postadresse" + +#: frappe/public/js/frappe/list/list_view_select.js:98 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:177 +msgid "New Email Account" +msgstr "Ny e-postkonto" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:47 +msgid "New Event" +msgstr "Ny hendelse" + +#: frappe/public/js/frappe/views/file/file_view.js:94 +msgid "New Folder" +msgstr "Ny mappe" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 +msgid "New Kanban Board" +msgstr "Nytt Kanban-board" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:62 +msgid "New Links" +msgstr "Nye lenker" + +#: frappe/desk/doctype/notification_log/notification_log.py:152 +msgid "New Mention on {0}" +msgstr "Ny omtale på {0}" + +#: frappe/www/contact.py:61 +msgid "New Message from Website Contact Page" +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:218 +#: frappe/public/js/frappe/model/model.js:713 +msgid "New Name" +msgstr "Nytt navn" + +#: frappe/desk/doctype/notification_log/notification_log.py:151 +msgid "New Notification" +msgstr "Nytt varsel" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:64 +msgid "New Number Card" +msgstr "Nytt nummerkort" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:66 +msgid "New Onboarding" +msgstr "Ny onboarding" + +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 +msgid "New Password" +msgstr "Nytt passord" + +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 +msgid "New Print Format Name" +msgstr "Nytt navn på utskriftsformat" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:68 +msgid "New Quick List" +msgstr "Ny hurtigliste" + +#: frappe/public/js/frappe/views/reports/report_view.js:1386 +msgid "New Report name" +msgstr "Nytt rapportnavn" + +#. Label of the new_role (Data) field in DocType 'Role Replication' +#: frappe/core/doctype/role_replication/role_replication.json +msgid "New Role" +msgstr "Ny rolle" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:60 +msgid "New Shortcut" +msgstr "Ny snarvei" + +#. Label of the new_users (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "New Users (Last 30 days)" +msgstr "Nye brukere (siste 30 dager)" + +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 +msgid "New Value" +msgstr "Ny verdi" + +#: frappe/workflow/page/workflow_builder/workflow_builder.js:61 +msgid "New Workflow Name" +msgstr "Nytt navn på arbeidsflyt" + +#: frappe/public/js/frappe/views/workspace/workspace.js:390 +msgid "New Workspace" +msgstr "Nytt arbeidsområde" + +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
    \n" +"Public clients are restricted by default." +msgstr "Ny linjeseparert liste over tillatte offentlige klient-URL-er (f.eks. https://frappe.io), eller * for å godta alle.\n" +"
    \n" +"Offentlige klienter er som standard begrenset." + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "Ny linjeseparert liste over områdeverdier." + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "Ny linjeseparert liste med strenger som representerer måter å kontakte personer som er ansvarlige for denne klienten, vanligvis e-postadresser." + +#: frappe/www/update-password.html:92 +msgid "New password cannot be same as old password" +msgstr "Nytt passord kan ikke være det samme som det gamle passordet" + +#: frappe/utils/change_log.py:389 +msgid "New updates are available" +msgstr "Nye oppdateringer er tilgjengelige" + +#. Description of the 'Disable signups' (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "New users will have to be manually registered by system managers." +msgstr "Nye brukere må registreres manuelt av systemansvarlige." + +#. 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 "Ny verdi som skal angis" + +#: frappe/public/js/frappe/form/quick_entry.js:179 +#: frappe/public/js/frappe/form/toolbar.js:37 +#: frappe/public/js/frappe/form/toolbar.js:206 +#: frappe/public/js/frappe/form/toolbar.js:221 +#: frappe/public/js/frappe/form/toolbar.js:561 +#: frappe/public/js/frappe/model/model.js:612 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 +#: 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:438 +msgid "New {0}" +msgstr "Ny {0}" + +#: frappe/public/js/frappe/views/reports/query_report.js:393 +msgid "New {0} Created" +msgstr "Ny {0} opprettet" + +#: frappe/public/js/frappe/views/reports/query_report.js:385 +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 +msgid "New {0} {1} created" +msgstr "Ny {0} {1} opprettet" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 +msgid "New {0}: {1}" +msgstr "Ny {0}: {1}" + +#: frappe/utils/change_log.py:375 +msgid "New {} releases for the following apps are available" +msgstr "Nye {} utgivelser for følgende apper er tilgjengelige" + +#: frappe/core/doctype/user/user.py:815 +msgid "Newly created user {0} has no roles enabled." +msgstr "Nylig opprettet bruker {0} har ingen roller aktivert." + +#. Name of a role +#: frappe/email/doctype/email_group/email_group.json +#: frappe/email/doctype/email_group_member/email_group_member.json +#: frappe/website/doctype/utm_campaign/utm_campaign.json +msgid "Newsletter Manager" +msgstr "Administrator for nyhetsbrev" + +#: frappe/public/js/frappe/form/form_tour.js:14 +#: frappe/public/js/frappe/form/form_tour.js:324 +#: frappe/public/js/frappe/web_form/web_form.js:93 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:15 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:240 +#: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 +#: frappe/website/web_template/slideshow/slideshow.html:44 +msgid "Next" +msgstr "Neste" + +#: frappe/public/js/frappe/ui/slides.js:359 +msgctxt "Go to next slide" +msgid "Next" +msgstr "Neste" + +#: frappe/public/js/frappe/ui/filters/filter.js:684 +msgid "Next 14 Days" +msgstr "De neste 14 dagene" + +#: frappe/public/js/frappe/ui/filters/filter.js:688 +msgid "Next 30 Days" +msgstr "De neste 30 dagene" + +#: frappe/public/js/frappe/ui/filters/filter.js:704 +msgid "Next 6 Months" +msgstr "De neste 6 månedene" + +#: frappe/public/js/frappe/ui/filters/filter.js:680 +msgid "Next 7 Days" +msgstr "De neste 7 dagene" + +#. Label of the next_action_email_template (Link) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Next Action Email Template" +msgstr "Neste handling i e-postmal" + +#. 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" + +#. 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 "Neste kjøring" + +#. 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 "Neste skjemaguide" + +#: frappe/public/js/frappe/ui/filters/filter.js:696 +msgid "Next Month" +msgstr "Neste måned" + +#: frappe/public/js/frappe/ui/filters/filter.js:700 +msgid "Next Quarter" +msgstr "Neste kvartal" + +#. Label of the next_schedule_date (Date) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Next Schedule Date" +msgstr "Neste plandato" + +#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:6 +msgid "Next Scheduled Date" +msgstr "Neste planlagte dato" + +#. Label of the next_state (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Next State" +msgstr "Neste tilstand" + +#. 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 "Neste trinns betingelse" + +#. 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 "Neste synkroniseringstoken" + +#: frappe/public/js/frappe/ui/filters/filter.js:692 +msgid "Next Week" +msgstr "Neste uke" + +#: frappe/public/js/frappe/ui/filters/filter.js:708 +msgid "Next Year" +msgstr "Neste år" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "Next actions" +msgstr "Neste handlinger" + +#. 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 "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 'Require Trusted Certificate' (Select) field in DocType 'LDAP +#. Settings' +#. Option for the 'Standard' (Select) field in DocType 'Print Format' +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 +#: 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:498 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 +#: frappe/website/doctype/help_article/templates/help_article.html:26 +msgid "No" +msgstr "Nei" + +#: frappe/public/js/frappe/ui/filters/filter.js:546 +msgctxt "Checkbox is not checked" +msgid "No" +msgstr "Nei" + +#: frappe/public/js/frappe/ui/messages.js:37 +msgctxt "Dismiss confirmation dialog" +msgid "No" +msgstr "Nei" + +#: frappe/www/third_party_apps.html:56 +msgid "No Active Sessions" +msgstr "Ingen aktive økter" + +#. Label of the no_copy (Check) field in DocType 'DocField' +#. Label of the no_copy (Check) field in DocType 'Custom Field' +#. Label of the no_copy (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "No Copy" +msgstr "Ingen kopi" + +#: frappe/core/doctype/data_export/exporter.py:162 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 +#: frappe/public/js/form_builder/components/controls/TableControl.vue:64 +#: frappe/public/js/frappe/data_import/import_preview.js:146 +#: frappe/public/js/frappe/form/multi_select_dialog.js:224 +#: frappe/public/js/frappe/utils/datatable.js:10 +#: frappe/public/js/frappe/widgets/chart_widget.js:57 +msgid "No Data" +msgstr "Ingen Data" + +#: frappe/public/js/frappe/widgets/quick_list_widget.js:134 +msgid "No Data..." +msgstr "Ingen data..." + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:176 +msgid "No Email Account" +msgstr "Ingen e-postkonto" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:196 +msgid "No Email Accounts Assigned" +msgstr "Ingen e-postkontoer tilordnet" + +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "Ingen e-postfelt funnet i {0}" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:183 +msgid "No Emails" +msgstr "Ingen e-poster" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:361 +msgid "No Entry for the User {0} found within LDAP!" +msgstr "Ingen oppføring for brukeren {0} funnet i LDAP!" + +#: frappe/public/js/frappe/widgets/chart_widget.js:407 +msgid "No Filters Set" +msgstr "Ingen filtre angitt" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:372 +msgid "No Google Calendar Event to sync." +msgstr "Ingen Google Kalender-hendelse å synkronisere." + +#: frappe/public/js/frappe/ui/capture.js:262 +msgid "No Images" +msgstr "Ingen bilder" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:363 +msgid "No LDAP User found for email: {0}" +msgstr "Ingen LDAP-bruker funnet for e-post: {0}" + +#: frappe/public/js/form_builder/components/EditableInput.vue:11 +#: frappe/public/js/form_builder/components/EditableInput.vue:14 +#: frappe/public/js/form_builder/components/Field.vue:209 +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:55 +#: frappe/public/js/print_format_builder/Field.vue:24 +#: frappe/public/js/workflow_builder/components/ActionNode.vue:53 +#: frappe/public/js/workflow_builder/components/StateNode.vue:47 +#: frappe/public/js/workflow_builder/store.js:51 +msgid "No Label" +msgstr "Ingen etikett" + +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 +#: 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 +msgid "No Name Specified for {0}" +msgstr "Ingen navn spesifisert for {0}" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:315 +msgid "No New notifications" +msgstr "Ingen nye varsler" + +#: frappe/core/doctype/doctype/doctype.py:1757 +msgid "No Permissions Specified" +msgstr "Ingen rettigheter spesifisert" + +#: frappe/core/page/permission_manager/permission_manager.js:199 +msgid "No Permissions set for this criteria." +msgstr "Ingen rettigheter angitt for dette kriteriet." + +#: frappe/core/page/dashboard_view/dashboard_view.js:93 +msgid "No Permitted Charts" +msgstr "Ingen tillatte diagrammer" + +#: frappe/core/page/dashboard_view/dashboard_view.js:92 +msgid "No Permitted Charts on this Dashboard" +msgstr "Ingen tillatte diagrammer på dette oversiktspanelet" + +#: frappe/printing/doctype/print_settings/print_settings.js:13 +msgid "No Preview" +msgstr "Ingen forhåndsvisning" + +#: frappe/printing/page/print/print.js:747 +msgid "No Preview Available" +msgstr "Ingen forhåndsvisning tilgjengelig" + +#: frappe/printing/page/print/print.js:902 +msgid "No Printer is Available." +msgstr "Ingen skriver er tilgjengelig." + +#: frappe/core/doctype/rq_worker/rq_worker_list.js:3 +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 +msgid "No Results" +msgstr "Ingen resultater" + +#: frappe/public/js/frappe/ui/toolbar/search.js:51 +msgid "No Results found" +msgstr "Ingen resultater funnet" + +#: frappe/core/doctype/user/user.py:816 +msgid "No Roles Specified" +msgstr "Ingen roller spesifisert" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 +msgid "No Select Field Found" +msgstr "Ingen valgfelt funnet" + +#: frappe/core/doctype/recorder/recorder.py:179 +msgid "No Suggestions" +msgstr "Ingen forslag" + +#: frappe/desk/reportview.py:707 +msgid "No Tags" +msgstr "Ingen stikkord" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:442 +msgid "No Upcoming Events" +msgstr "Ingen kommende hendelser" + +#: frappe/public/js/frappe/form/templates/address_list.html:43 +msgid "No address added yet." +msgstr "Ingen adresse lagt til ennå." + +#: frappe/email/doctype/notification/notification.js:236 +msgid "No alerts for today" +msgstr "Ingen varsler for i dag" + +#: frappe/core/doctype/recorder/recorder.py:178 +msgid "No automatic optimization suggestions available." +msgstr "Ingen automatiske optimaliseringsforslag tilgjengelig." + +#: frappe/public/js/frappe/form/save.js:36 +msgid "No changes in document" +msgstr "Ingen endringer i dokumentet" + +#: frappe/public/js/frappe/views/workspace/workspace.js:662 +msgid "No changes made" +msgstr "Ingen endringer er gjort" + +#: frappe/model/rename_doc.py:369 +msgid "No changes made because old and new name are the same." +msgstr "Ingen endringer gjort fordi gammelt og nytt navn er det samme." + +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:59 +msgid "No changes to sync" +msgstr "Ingen endringer å synkronisere" + +#: frappe/core/doctype/data_import/importer.py:298 +msgid "No changes to update" +msgstr "Ingen endringer å oppdatere" + +#: frappe/templates/includes/comments/comments.html:4 +msgid "No comments yet." +msgstr "Ingen kommentarer ennå." + +#: frappe/public/js/frappe/form/templates/contact_list.html:91 +msgid "No contacts added yet." +msgstr "Ingen kontakter lagt til ennå." + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 +msgid "No contacts linked to document" +msgstr "Ingen kontakter koblet til dokumentet" + +#: frappe/desk/query_report.py:381 +msgid "No data to export" +msgstr "Ingen data å eksportere" + +#: frappe/contacts/doctype/address/address.py:246 +msgid "No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template." +msgstr "Ingen standard adressemal funnet. Opprett en ny under Oppsett > Utskrift og merkevarebygging > Adressemal." + +#: frappe/public/js/frappe/ui/toolbar/search.js:71 +msgid "No documents found tagged with {0}" +msgstr "Ingen dokumenter funnet med stikkordet {0}" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:21 +msgid "No email account associated with the User. Please add an account under User > Email Inbox." +msgstr "Ingen e-postkonto tilknyttet brukeren. Vennligst legg til en konto under Bruker > E-postinnboks." + +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "Ingen e-postadresser å invitere" + +#: frappe/core/doctype/data_import/data_import.js:478 +msgid "No failed logs" +msgstr "Ingen mislykkede logger" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 +msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." +msgstr "Ingen felt funnet som kan brukes som en Kanban-kolonne. Bruk Tilpass-skjemaet for å legge til et tilpasset felt av typen «Velg»." + +#: frappe/utils/file_manager.py:143 +msgid "No file attached" +msgstr "Ingen filer vedlagt" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:134 +msgid "No filters found" +msgstr "Ingen filtre funnet" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:299 +msgid "No filters selected" +msgstr "Ingen filter valgt" + +#: frappe/desk/form/utils.py:111 +msgid "No further records" +msgstr "Ingen flere oppføringer" + +#: frappe/templates/includes/search_template.html:49 +msgid "No matching records. Search something new" +msgstr "Ingen samsvarende oppføringer. Søk etter noe nytt" + +#: frappe/public/js/frappe/web_form/web_form_list.js:162 +msgid "No more items to display" +msgstr "Ingen flere elementer å vise" + +#: frappe/utils/password_strength.py:45 +msgid "No need for symbols, digits, or uppercase letters." +msgstr "Ikke behov for symboler, sifre eller store bokstaver." + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:195 +msgid "No new Google Contacts synced." +msgstr "Ingen nye Google-kontakter er synkronisert." + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:46 +msgid "No new notifications" +msgstr "Ingen nye varsler" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:415 +msgid "No of Columns" +msgstr "Antall kolonner" + +#. Label of the no_of_requested_sms (Int) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "No of Requested SMS" +msgstr "Ingen forespurt SMS" + +#. Label of the no_of_rows (Int) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "No of Rows (Max 500)" +msgstr "Antall rader (maks. 500)" + +#. Label of the no_of_sent_sms (Int) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "No of Sent SMS" +msgstr "Antall sendte SMS" + +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 +msgid "No permission for {0}" +msgstr "Ingen rettigheter for {0}" + +#: frappe/public/js/frappe/form/form.js:1142 +msgctxt "{0} = verb, {1} = object" +msgid "No permission to '{0}' {1}" +msgstr "Ingen rettigheter til '{0}' {1}" + +#: frappe/model/db_query.py:949 +msgid "No permission to read {0}" +msgstr "Ingen rettigheter til å lese {0}" + +#: frappe/share.py:220 +msgid "No permission to {0} {1} {2}" +msgstr "Ingen rettigheter til {0} {1} {2}" + +#: frappe/core/doctype/user_permission/user_permission_list.js:175 +msgid "No records deleted" +msgstr "Ingen oppføringer slettet" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 +msgid "No records present in {0}" +msgstr "Ingen oppføringer finnes i {0}" + +#: frappe/public/js/frappe/list/list_sidebar_stat.html:3 +msgid "No records tagged." +msgstr "Ingen poster har stikkord." + +#: frappe/public/js/frappe/data_import/data_exporter.js:225 +msgid "No records will be exported" +msgstr "Ingen oppføringer eksporteres" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "No rows" +msgstr "Ingen rader" + +#: frappe/email/doctype/notification/notification.py:135 +msgid "No subject" +msgstr "Ikke noe emne" + +#: frappe/www/printview.py:472 +msgid "No template found at path: {0}" +msgstr "Ingen mal funnet på stien: {0}" + +#: frappe/public/js/frappe/form/controls/multiselect_list.js:262 +msgid "No values to show" +msgstr "Ingen verdier å vise" + +#: frappe/website/web_template/discussions/discussions.html:2 +msgid "No {0}" +msgstr "Ingen {0}" + +#: frappe/public/js/frappe/list/list_view_select.js:157 +msgid "No {0} Found" +msgstr "Ingen {0} funnet" + +#: frappe/public/js/frappe/web_form/web_form_list.js:234 +msgid "No {0} found" +msgstr "Ingen {0} funnet" + +#: frappe/public/js/frappe/list/list_view.js:499 +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}." + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:171 +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 +msgctxt "Title of the 'row number' column" +msgid "No." +msgstr "Nr." + +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Nomatim" +msgstr "Nomatim" + +#. Label of the non_negative (Check) field in DocType 'DocField' +#. Label of the non_negative (Check) field in DocType 'Custom Field' +#. Label of the non_negative (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Non Negative" +msgstr "Ikke-negativ" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:33 +msgid "Non-Conforming" +msgstr "Ikke-samsvarende" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "Ingen" + +#: frappe/public/js/frappe/form/workflow.js:36 +msgid "None: End of Workflow" +msgstr "Ingen: Slutt på arbeidsflyten" + +#. Label of the normalized_copies (Int) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Normalized Copies" +msgstr "Normaliserte kopier" + +#. Label of the normalized_query (Data) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Normalized Query" +msgstr "Normalisert spørring" + +#: frappe/core/doctype/user/user.py:1029 +#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 +msgid "Not Allowed" +msgstr "Ikke tillatt" + +#: frappe/templates/includes/login/login.js:259 +msgid "Not Allowed: Disabled User" +msgstr "Ikke tillatt: Deaktivert bruker" + +#: frappe/public/js/frappe/ui/filters/filter.js:36 +msgid "Not Ancestors Of" +msgstr "Ikke overordnede av" + +#: frappe/public/js/frappe/ui/filters/filter.js:34 +msgid "Not Descendants Of" +msgstr "ikke underordnede av" + +#: frappe/public/js/frappe/ui/filters/filter.js:17 +msgid "Not Equals" +msgstr "Ikke lik" + +#: frappe/app.py:390 frappe/www/404.html:3 +msgid "Not Found" +msgstr "Ikke funnet" + +#. Label of the not_helpful (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Not Helpful" +msgstr "Ikke nyttig" + +#: frappe/public/js/frappe/ui/filters/filter.js:21 +msgid "Not In" +msgstr "Ikke i" + +#: frappe/public/js/frappe/ui/filters/filter.js:19 +msgid "Not Like" +msgstr "Ikke som" + +#: frappe/public/js/frappe/form/linked_with.js:45 +msgid "Not Linked to any record" +msgstr "Ikke koblet til noen oppføring" + +#. Label of the not_nullable (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Not Nullable" +msgstr "Ikke nullbar" + +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 +#: frappe/public/js/frappe/web_form/webform_script.js:15 +#: frappe/website/doctype/web_form/web_form.py:774 +#: 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 "Ikke tillatt" + +#: frappe/desk/query_report.py:596 +msgid "Not Permitted to read {0}" +msgstr "Ingen rettigheter til å lese {0}" + +#: frappe/website/doctype/web_form/web_form_list.js:7 +#: frappe/website/doctype/web_page/web_page_list.js:7 +msgid "Not Published" +msgstr "Ikke publisert" + +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 +#: frappe/public/js/frappe/model/indicator.js:28 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 +#: frappe/website/doctype/web_form/templates/web_form.html:85 +msgid "Not Saved" +msgstr "Ikke lagret" + +#: frappe/core/doctype/error_log/error_log_list.js:7 +msgid "Not Seen" +msgstr "Ikke sett" + +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +msgid "Not Sent" +msgstr "Ikke sendt" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:219 +msgid "Not Set" +msgstr "Ikke angitt" + +#: frappe/public/js/frappe/ui/filters/filter.js:608 +msgctxt "Field value is not set" +msgid "Not Set" +msgstr "Ikke angitt" + +#: frappe/utils/csvutils.py:102 +msgid "Not a valid Comma Separated Value (CSV File)" +msgstr "Ikke en gyldig kommaseparert verdi (CSV-fil)" + +#: frappe/core/doctype/user/user.py:266 +msgid "Not a valid User Image." +msgstr "Ikke et gyldig brukerbilde." + +#: frappe/model/workflow.py:117 +msgid "Not a valid Workflow Action" +msgstr "Ikke en gyldig arbeidsflythandling" + +#: frappe/templates/includes/login/login.js:255 +msgid "Not a valid user" +msgstr "Ikke en gyldig bruker" + +#: frappe/workflow/doctype/workflow/workflow_list.js:7 +msgid "Not active" +msgstr "Ikke aktiv" + +#: frappe/permissions.py:383 +msgid "Not allowed for {0}: {1}" +msgstr "Ikke tillatt for {0}: {1}" + +#: frappe/email/doctype/notification/notification.py:639 +msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" +msgstr "Det er ikke tillatt å legge ved et {0} -dokument. Vennligst aktiver Tillat utskrift for {0} i utskriftsinnstillingene." + +#: frappe/core/doctype/doctype/doctype.py:336 +msgid "Not allowed to create custom Virtual DocType." +msgstr "Ikke tillatt å opprette egendefinert virtuell dokumenttype (DocType)." + +#: frappe/www/printview.py:165 +msgid "Not allowed to print cancelled documents" +msgstr "Ikke tillatt å skrive ut avbrutte dokumenter" + +#: frappe/www/printview.py:162 +msgid "Not allowed to print draft documents" +msgstr "Ikke tillatt å skrive ut avbrutte dokumenter" + +#: frappe/permissions.py:213 +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 +msgid "Not found" +msgstr "Ikke funnet" + +#: frappe/core/doctype/page/page.py:62 +msgid "Not in Developer Mode" +msgstr "Ikke i utviklermodus" + +#: frappe/core/doctype/doctype/doctype.py:331 +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:217 +#: frappe/public/js/frappe/request.js:159 +#: frappe/public/js/frappe/request.js:170 +#: frappe/public/js/frappe/request.js:175 +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 +#: frappe/website/js/website.js:97 +msgid "Not permitted" +msgstr "Ikke tillatt" + +#: frappe/public/js/frappe/list/list_view.js:53 +msgid "Not permitted to view {0}" +msgstr "Ingen rettigheter til å lese {0}" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/note/note.json +msgid "Note" +msgstr "Notat" + +#. Name of a DocType +#: frappe/desk/doctype/note_seen_by/note_seen_by.json +msgid "Note Seen By" +msgstr "Notat sett av" + +#: frappe/www/confirm_workflow_action.html:8 +msgid "Note:" +msgstr "Notat:" + +#: frappe/public/js/frappe/utils/utils.js:775 +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." + +#: frappe/core/doctype/user/user.js:35 +msgid "Note: Etc timezones have their signs reversed." +msgstr "Merk: Tidssoner osv. har reverserte fortegn." + +#. Description of the 'sb0' (Section Break) field in DocType 'Website +#. Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Note: For best results, images must be of the same size and width must be greater than height." +msgstr "Merk: For best resultat må bildene ha samme størrelse, og bredden må være større enn høyden." + +#. 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 "Merk: Flere økter vil være tillatt ved bruk av mobilenhet" + +#: frappe/core/doctype/user/user.js:387 +msgid "Note: This will be shared with user." +msgstr "Merk: Dette vil bli delt med brukeren." + +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.js:8 +msgid "Note: Your request for account deletion will be fulfilled within {0} hours." +msgstr "Merk: Din forespørsel om sletting av konto vil bli behandlet innen {0} timer." + +#: frappe/core/doctype/data_export/exporter.py:183 +msgid "Notes:" +msgstr "Notater:" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:492 +msgid "Nothing New" +msgstr "Intet nytt" + +#: frappe/public/js/frappe/form/undo_manager.js:43 +msgid "Nothing left to redo" +msgstr "Ingenting igjen å gjenta" + +#: frappe/public/js/frappe/form/undo_manager.js:33 +msgid "Nothing left to undo" +msgstr "Ingenting igjen å angre" + +#: frappe/public/js/frappe/list/base_list.js:383 +#: frappe/public/js/frappe/views/reports/query_report.js:105 +#: frappe/templates/includes/list/list.html:9 +#: frappe/website/doctype/help_article/templates/help_article_list.html:21 +msgid "Nothing to show" +msgstr "Ingenting å vise" + +#: frappe/core/doctype/user_permission/user_permission_list.js:129 +msgid "Nothing to update" +msgstr "Ingenting å oppdatere" + +#. Label of the notification (Tab Break) field in DocType 'Auto Repeat' +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/mixins.py:142 +#: frappe/email/doctype/notification/notification.json +msgid "Notification" +msgstr "Varsling" + +#. Name of a DocType +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Notification Log" +msgstr "Varslingslogg" + +#. Name of a DocType +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Notification Recipient" +msgstr "Mottaker av varselet" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/public/js/frappe/ui/notifications/notifications.js:37 +msgid "Notification Settings" +msgstr "Innstillinger for varsling" + +#. Name of a DocType +#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json +msgid "Notification Subscribed Document" +msgstr "Dokument med abbonnert varsling" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8 +msgid "Notification sent to" +msgstr "Varsel sendt til" + +#: frappe/email/doctype/notification/notification.py:544 +msgid "Notification: customer {0} has no Mobile number set" +msgstr "Varsel: kunden {0} har ikke angitt noe mobilnummer" + +#: frappe/email/doctype/notification/notification.py:530 +msgid "Notification: document {0} has no {1} number set (field: {2})" +msgstr "Varsling: dokumentet {0} har ikke angitt noe {1} -tall (felt: {2})" + +#: frappe/email/doctype/notification/notification.py:539 +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:50 +#: frappe/public/js/frappe/ui/notifications/notifications.js:187 +msgid "Notifications" +msgstr "Varsler" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:299 +msgid "Notifications Disabled" +msgstr "Varsler deaktivert" + +#. Description of the 'Default Outgoing' (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Notifications and bulk mails will be sent from this outgoing server." +msgstr "Varsler og masseutsendelser vil bli sendt fra denne utgående serveren." + +#. 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 "Varsle brukere ved hver pålogging" + +#. 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 "Varsle via e-post" + +#. Label of the notify_by_email (Check) field in DocType 'DocShare' +#: frappe/core/doctype/docshare/docshare.json +msgid "Notify by email" +msgstr "Varsle via e-post" + +#. 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 "Varsle hvis ubesvart" + +#. 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 "Varsle hvis ubesvart (i minutter)" + +#. 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 "Varsle brukere med popup-vindu når de logger inn" + +#: frappe/public/js/frappe/form/controls/datetime.js:41 +#: frappe/public/js/frappe/form/controls/time.js:37 +msgid "Now" +msgstr "Nå" + +#. Label of the phone (Data) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Number" +msgstr "Nummer" + +#. Name of a DocType +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:628 +msgid "Number Card" +msgstr "Nummerkort" + +#. Name of a DocType +#: frappe/desk/doctype/number_card_link/number_card_link.json +msgid "Number Card Link" +msgstr "Lenke til nummerkort" + +#. Label of the number_card_name (Link) field in DocType 'Workspace Number +#. Card' +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json +msgid "Number Card Name" +msgstr "Navn på nummerkort" + +#. Label of the number_cards_tab (Tab Break) field in DocType 'Workspace' +#. Label of the number_cards (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:658 +msgid "Number Cards" +msgstr "Nummerkort" + +#. Label of the number_format (Select) field in DocType 'Language' +#. Label of the number_format (Select) field in DocType 'System Settings' +#. Label of the number_format (Select) field in DocType 'Currency' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/geo/doctype/currency/currency.json +msgid "Number Format" +msgstr "Tallformat" + +#. Label of the backup_limit (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Number of Backups" +msgstr "Antall sikkerhetskopier" + +#. 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 "Antall grupper" + +#. Label of the number_of_queries (Int) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Number of Queries" +msgstr "Antall spørringer" + +#: frappe/core/doctype/doctype/doctype.py:443 +#: frappe/public/js/frappe/doctype/index.js:59 +msgid "Number of attachment fields are more than {}, limit updated to {}." +msgstr "Antall vedleggsfelt er større enn {}, grensen er oppdatert til {}." + +#: frappe/core/doctype/system_settings/system_settings.py:172 +msgid "Number of backups must be greater than zero." +msgstr "Antall sikkerhetskopier må være større enn null." + +#. 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 "Antall kolonner for et felt i et rutenett (totalt antall kolonner i et rutenett bør være mindre enn 11)" + +#. Description of the 'Columns' (Int) field in DocType 'DocField' +#. Description of the 'Columns' (Int) field in DocType 'Custom Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)" +msgstr "Antall kolonner for et felt i en listevisning eller et rutenett (totalt antall kolonner bør være mindre enn 11)" + +#. Description of the 'Document Share Key Expiry (in Days)' (Int) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Number of days after which the document Web View link shared on email will be expired" +msgstr "Antall dager etter at lenken til dokumentets webvisning som er delt på e-post, utløper" + +#. Label of the cache_keys (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Number of keys" +msgstr "Antall nøkler" + +#. Label of the onsite_backups (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Number of onsite backups" +msgstr "Antall lokale sikkerhetskopier (lagret på serveren)" + +#. Option for the 'Method' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "OAuth" +msgstr "OAuth" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "OAuth Authorization Code" +msgstr "OAuth autorisasjonskode" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "OAuth Bearer Token" +msgstr "OAuth Bearer Token" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "OAuth Client" +msgstr "OAuth klient" + +#. 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 klient-ID" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json +msgid "OAuth Client Role" +msgstr "OAuth klientrolle" + +#: frappe/email/oauth.py:30 +msgid "OAuth Error" +msgstr "OAuth-feil" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "OAuth Provider Settings" +msgstr "Innstillinger for OAuth-leverandør" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_scope/oauth_scope.json +msgid "OAuth Scope" +msgstr "OAuth-omfang" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "Innstillinger for OAuth" + +#: frappe/email/doctype/email_account/email_account.js:250 +msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." +msgstr "OAuth er aktivert, men ikke autorisert. Bruk knappen «Autoriser API-tilgang» for å gjøre det samme." + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "OPTIONS" +msgstr "OPTIONS" + +#: frappe/public/js/form_builder/components/Tabs.vue:190 +msgid "OR" +msgstr "ELLER" + +#. Option for the 'Two Factor Authentication method' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "OTP App" +msgstr "OTP-app" + +#. 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-utsteders navn" + +#: frappe/twofactor.py:450 +msgid "OTP Secret Reset - {0}" +msgstr "Tilbakestilling av OTP-hemmelighet – {0}" + +#: frappe/twofactor.py:469 +msgid "OTP Secret has been reset. Re-registration will be required on next login." +msgstr "Engangspassordet er tilbakestilt. Ny registrering kreves ved neste pålogging." + +#: frappe/templates/includes/login/login.js:355 +msgid "OTP setup using OTP App was not completed. Please contact Administrator." +msgstr "OTP-oppsettet med OTP-appen ble ikke fullført. Kontakt administratoren." + +#. Label of the occurrences (Int) field in DocType 'System Health Report +#. Errors' +#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json +msgid "Occurrences" +msgstr "Forekomster" + +#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Off" +msgstr "Av" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Office" +msgstr "Kontor" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Office 365" +msgstr "Office 365" + +#: frappe/core/doctype/server_script/server_script.js:36 +msgid "Official Documentation" +msgstr "Offisiell dokumentasjon" + +#. 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 "Forskyvning X" + +#. Label of the offset_y (Int) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Offset Y" +msgstr "Forskyvning Y" + +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "Offset må være et ikke-negativt heltall" + +#: frappe/www/update-password.html:38 +msgid "Old Password" +msgstr "Gammelt passord" + +#: frappe/custom/doctype/custom_field/custom_field.py:412 +msgid "Old and new fieldnames are same." +msgstr "Gamle og nye feltnavn er de samme." + +#. Description of the 'Number of Backups' (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Older backups will be automatically deleted" +msgstr "Eldre sikkerhetskopier vil bli slettet automatisk " + +#. Label of the oldest_unscheduled_job (Link) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Oldest Unscheduled Job" +msgstr "Eldste ikke-planlagte jobb" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "On Hold" +msgstr "På vent" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Authorization" +msgstr "Ved autorisasjon av betaling" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Charge Processed" +msgstr "Ved behandling av betalingsgebyr" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Failed" +msgstr "Ved mislykket betaling" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Mandate Acquisition Processed" +msgstr "Ved behandling av betalingsfullmakt" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Mandate Charge Processed" +msgstr "Ved behandling av trekk fra betalingsfullmakt" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Paid" +msgstr "Ved betaling utført" + +#. 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 "Når du krysser av for dette alternativet, vil URL-en bli behandlet som en jinja-malstreng." + +#: frappe/public/js/frappe/ui/filters/filter.js:66 +#: frappe/public/js/frappe/ui/filters/filter.js:72 +msgid "On or After" +msgstr "På eller etter" + +#: frappe/public/js/frappe/ui/filters/filter.js:65 +#: frappe/public/js/frappe/ui/filters/filter.js:71 +msgid "On or Before" +msgstr "På eller før" + +#: frappe/public/js/frappe/views/communication.js:966 +msgid "On {0}, {1} wrote:" +msgstr "På {0}skrev {1} :" + +#. Label of the onboard (Check) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:335 +msgid "Onboard" +msgstr "Vis i introduksjon" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:232 +msgid "Onboarding Name" +msgstr "Navn på onboardingsprosess" + +#. Name of a DocType +#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json +msgid "Onboarding Permission" +msgstr "Onboardingstillatelse" + +#. Label of the onboarding_status (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Onboarding Status" +msgstr "Status for onboarding" + +#. Name of a DocType +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Onboarding Step" +msgstr "Onboardingstrinn" + +#. Name of a DocType +#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json +msgid "Onboarding Step Map" +msgstr "Kart over onboardingstrinn" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:264 +msgid "Onboarding complete" +msgstr "Onboarding fullført" + +#. Description of the 'Is Submittable' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:43 +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 +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)." + +#: frappe/www/complete_signup.html:7 +msgid "One Last Step" +msgstr "Et siste skritt" + +#: frappe/twofactor.py:278 +msgid "One Time Password (OTP) Registration Code from {}" +msgstr "Registreringskode for engangspassord (OTP) fra {}" + +#: frappe/core/doctype/data_export/exporter.py:331 +msgid "One of" +msgstr "En av" + +#: frappe/client.py:213 +msgid "Only 200 inserts allowed in one request" +msgstr "Maks 200 innsettinger per forespørsel" + +#: frappe/email/doctype/email_queue/email_queue.py:87 +msgid "Only Administrator can delete Email Queue" +msgstr "Bare administrator kan slette e-postkøen" + +#: frappe/core/doctype/page/page.py:66 +msgid "Only Administrator can edit" +msgstr "Bare administrator kan redigere" + +#: frappe/core/doctype/report/report.py:75 +msgid "Only Administrator can save a standard report. Please rename and save." +msgstr "Bare administrator kan lagre en standardrapport. Vennligst gi nytt navn og lagre." + +#: frappe/recorder.py:314 +msgid "Only Administrator is allowed to use Recorder" +msgstr "Bare administrator har tillatelse til å bruke opptakeren" + +#. 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 "Tillat redigering kun for" + +#: frappe/core/doctype/doctype/doctype.py:1621 +msgid "Only Options allowed for Data field are:" +msgstr "De eneste alternativene som er tillatt for datafeltet, er" + +#. 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 "Send bare poster som er oppdatert i løpet av de siste X timene" + +#: frappe/desk/doctype/workspace/workspace.js:32 +msgid "Only Workspace Manager can edit public workspaces" +msgstr "Bare Administrator for arbeidsområder kan redigere offentlige arbeidsområder" + +#: frappe/modules/utils.py:65 +msgid "Only allowed to export customizations in developer mode" +msgstr "Kun tillatt å eksportere tilpasninger i utviklermodus" + +#: frappe/model/document.py:1239 +msgid "Only draft documents can be discarded" +msgstr "Bare utkast til dokumenter kan kasseres" + +#. Label of the only_for (Link) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:328 +msgid "Only for" +msgstr "Bare for" + +#: frappe/core/doctype/data_export/exporter.py:192 +msgid "Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish." +msgstr "Bare obligatoriske felt er nødvendige for nye poster. Du kan slette ikke-obligatoriske kolonner hvis du ønsker det." + +#: frappe/contacts/doctype/contact/contact.py:131 +#: frappe/contacts/doctype/contact/contact.py:158 +msgid "Only one {0} can be set as primary." +msgstr "Bare én {0} kan angis som primær." + +#: frappe/desk/reportview.py:358 +msgid "Only reports of type Report Builder can be deleted" +msgstr "Bare rapporter av type rapportbygger kan slettes" + +#: frappe/desk/reportview.py:329 +msgid "Only reports of type Report Builder can be edited" +msgstr "Bare rapporter om type rapportbygger kan redigeres" + +#: frappe/custom/doctype/customize_form/customize_form.py:131 +msgid "Only standard DocTypes are allowed to be customized from Customize Form." +msgstr "Bare standard dokumenttyper (DocType) kan tilpasses via Tilpass skjema." + +#: frappe/model/delete_doc.py:281 +msgid "Only the Administrator can delete a standard DocType." +msgstr "Bare administratoren kan slette en standard dokumenttype (DocType)." + +#: frappe/desk/form/assign_to.py:198 +msgid "Only the assignee can complete this to-do." +msgstr "Det er bare mottakeren som kan fullføre denne oppgaven." + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +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 +msgid "Oops! Something went wrong." +msgstr "Oops! Noe gikk galt." + +#. Option for the 'Status' (Select) field in DocType 'Contact' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#. Option for the 'Email Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType 'ToDo' +#. Option for the 'Status' (Select) field in DocType 'Workflow Action' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/deleted_document/deleted_document.js:7 +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Open" +msgstr "Åpne" + +#: frappe/desk/doctype/todo/todo_list.js:14 +msgctxt "Access" +msgid "Open" +msgstr "Åpne" + +#: frappe/public/js/frappe/ui/keyboard.js:207 +#: frappe/public/js/frappe/ui/keyboard.js:217 +msgid "Open Awesomebar" +msgstr "Åpne awesomebar" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:75 +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:96 +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:97 +msgid "Open Communication" +msgstr "Åpen kommunikasjon" + +#: frappe/templates/emails/new_notification.html:10 +msgid "Open Document" +msgstr "Åpne dokument" + +#. Label of the subscribed_documents (Table MultiSelect) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Open Documents" +msgstr "Åpne Dokumenter" + +#: frappe/public/js/frappe/ui/keyboard.js:243 +msgid "Open Help" +msgstr "Åpne hjelp" + +#. Label of the open_reference_document (Button) field in DocType 'Notification +#. Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Open Reference Document" +msgstr "Åpne referansedokument" + +#: frappe/public/js/frappe/ui/keyboard.js:226 +msgid "Open Settings" +msgstr "Åpne innstillinger" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Open Source Applications for the Web" +msgstr "Åpen kildekode-applikasjoner for nettet" + +#. 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 "Åpne URL i en ny fane" + +#. 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 "Å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:176 +msgid "Open a module or tool" +msgstr "Åpne en modul eller et verktøy" + +#: frappe/public/js/frappe/ui/keyboard.js:367 +msgid "Open console" +msgstr "Åpne konsollen" + +#: frappe/public/js/print_format_builder/Preview.vue:17 +msgid "Open in a new tab" +msgstr "Åpne i ny fane" + +#: frappe/public/js/frappe/list/list_view.js:1433 +msgctxt "Description of a list view shortcut" +msgid "Open list item" +msgstr "Åpne listeelement" + +#: frappe/core/doctype/error_log/error_log.js:15 +msgid "Open reference document" +msgstr "Åpne referansedokumentet" + +#: frappe/www/qrcode.html:13 +msgid "Open your authentication app on your mobile phone." +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:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 +msgid "Open {0}" +msgstr "Åpne {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 konfigurasjon" + +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "Vellykket henting av OpenID-konfigurasjon!" + +#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "OpenLDAP" +msgstr "OpenLDAP" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Opened" +msgstr "Åpnet" + +#. Label of the operation (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Operation" +msgstr "Operasjon" + +#: frappe/utils/data.py:2172 +msgid "Operator must be one of {0}" +msgstr "Operatøren må være en av {0}" + +#: frappe/core/doctype/file/file.js:34 +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:8 +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:28 +msgid "Optimize" +msgstr "Optimaliser" + +#: frappe/core/doctype/file/file.js:106 +msgid "Optimizing image..." +msgstr "Optimalisering av bilder..." + +#: frappe/custom/doctype/custom_field/custom_field.js:100 +msgid "Option 1" +msgstr "Alternativ 1" + +#: frappe/custom/doctype/custom_field/custom_field.js:102 +msgid "Option 2" +msgstr "Alternativ 2" + +#: frappe/custom/doctype/custom_field/custom_field.js:104 +msgid "Option 3" +msgstr "Alternativ 3" + +#: frappe/core/doctype/doctype/doctype.py:1639 +msgid "Option {0} for field {1} is not a child table" +msgstr "Alternativ {0} for feltet {1} er ikke en underordnet tabell" + +#. 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 "Valgfritt: Send alltid til disse ID-ene. Hver e-postadresse på en ny rad" + +#. 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 "Valgfritt: Varselet sendes hvis dette uttrykket er sant" + +#. Label of the options (Small Text) field in DocType 'DocField' +#. Label of the options (Data) field in DocType 'Report Column' +#. Label of the options (Small Text) field in DocType 'Report Filter' +#. Label of the options (Small Text) field in DocType 'Custom Field' +#. Label of the options (Small Text) field in DocType 'Customize Form Field' +#. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' +#. Label of the options (Small Text) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/templates/form_grid/fields.html:43 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Options" +msgstr "Alternativer" + +#: frappe/core/doctype/doctype/doctype.py:1367 +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»" + +#. Label of the options_help (HTML) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Options Help" +msgstr "Hjelp til alternativer" + +#: frappe/core/doctype/doctype/doctype.py:1661 +msgid "Options for Rating field can range from 3 to 10" +msgstr "Alternativene for Rating-feltet kan variere fra 3 til 10" + +#: frappe/custom/doctype/custom_field/custom_field.js:96 +msgid "Options for select. Each option on a new line." +msgstr "Valgmuligheter. Hvert alternativ på en ny linje." + +#: frappe/core/doctype/doctype/doctype.py:1384 +msgid "Options for {0} must be set before setting the default value." +msgstr "Alternativer for {0} må angis før standardverdien settes." + +#: frappe/public/js/form_builder/store.js:182 +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:928 +msgid "Options not set for link field {0}" +msgstr "Alternativer ikke angitt for lenkefeltet {0}" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Orange" +msgstr "Oransje" + +#. Label of the order (Code) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Order" +msgstr "Rekkefølge" + +#: frappe/database/query.py:769 +msgid "Order By must be a string" +msgstr "Sorter etter må være en streng" + +#. Label of the sb0 (Section Break) field in DocType 'About Us Settings' +#. Label of the company_history (Table) field in DocType 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Org History" +msgstr "Organisasjonens historikk" + +#. 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 "Overskrift for organisasjonens historikk" + +#: frappe/public/js/frappe/form/print_utils.js:21 +msgid "Orientation" +msgstr "Orientering" + +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 +msgid "Original Value" +msgstr "Original verdi" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/contacts/doctype/address/address.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/page/setup_wizard/install_fixtures.py:30 +msgid "Other" +msgstr "Annen" + +#. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outgoing" +msgstr "Utgående" + +#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outgoing (SMTP) Settings" +msgstr "Utgående (SMTP) innstillinger" + +#. Label of the outgoing_emails_column (Column Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Outgoing Emails (Last 7 days)" +msgstr "Utgående e-poster (siste 7 dager)" + +#. Label of the smtp_server (Data) field in DocType 'Email Account' +#. Label of the smtp_server (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Outgoing Server" +msgstr "Utgående server" + +#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Outgoing Settings" +msgstr "Innstillinger for utgående e-post" + +#: frappe/email/doctype/email_domain/email_domain.py:33 +msgid "Outgoing email account not correct" +msgstr "Konto for utgående e-post er ikke korrekt" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outlook.com" +msgstr "Outlook.com" + +#. Label of the output (Code) field in DocType 'Permission Inspector' +#. Label of the output (Code) field in DocType 'System Console' +#. Label of the output (Code) field in DocType 'Integration Request' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Output" +msgstr "Utdata" + +#: frappe/public/js/frappe/form/templates/form_dashboard.html:5 +msgid "Overview" +msgstr "Oversikt" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "PATCH" +msgstr "PATCH" + +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/page/print/print.js:84 +#: frappe/public/js/frappe/form/templates/print_layout.html:44 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 +msgid "PDF" +msgstr "PDF" + +#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191 +msgid "PDF Generation in Progress" +msgstr "PDF-generering pågår" + +#. Label of the pdf_generator (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "PDF Generator" +msgstr "PDF-generator" + +#. Label of the pdf_page_height (Float) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "PDF Page Height (in mm)" +msgstr "PDF-sidehøyde (i mm)" + +#. Label of the pdf_page_size (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "PDF Page Size" +msgstr "PDF-sidestørrelse" + +#. 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-sidebredde (i mm)" + +#. Label of the pdf_settings (Section Break) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "PDF Settings" +msgstr "PDF-innstillinger" + +#: frappe/utils/print_format.py:289 +msgid "PDF generation failed" +msgstr "PDF-generering mislyktes" + +#: frappe/utils/pdf.py:106 +msgid "PDF generation failed because of broken image links" +msgstr "PDF-generering mislyktes på grunn av ødelagte bildelenker" + +#: frappe/printing/page/print/print.js:656 +msgid "PDF generation may not work as expected." +msgstr "PDF-generering fungerer kanskje ikke som forventet." + +#: frappe/printing/page/print/print.js:574 +msgid "PDF printing via \"Raw Print\" is not supported." +msgstr "PDF-utskrift via \"Rå utskrift\" støttes ikke." + +#. Label of the pid (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "PID" +msgstr "PID" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#. Option for the 'Request Method' (Select) field in DocType 'Webhook' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/webhook/webhook.json +msgid "POST" +msgstr "POST" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#. Option for the 'Request Method' (Select) field in DocType 'Webhook' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/webhook/webhook.json +msgid "PUT" +msgstr "PUT" + +#. Label of the package (Link) field in DocType 'Module Def' +#. Name of a DocType +#. Label of the package (Link) field in DocType 'Package Release' +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/package/package.json +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/workspace/build/build.json frappe/www/attribution.html:34 +msgid "Package" +msgstr "Pakke" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/package_import/package_import.json +#: frappe/core/workspace/build/build.json +msgid "Package Import" +msgstr "Pakke Import" + +#. Label of the package_name (Data) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "Package Name" +msgstr "Navn på pakke" + +#. Name of a DocType +#: frappe/core/doctype/package_release/package_release.json +msgid "Package Release" +msgstr "Utgivelse av pakke" + +#. Label of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Packages" +msgstr "Pakker" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Packages are lightweight apps (collection of Module Defs) that can be created, imported, or released right from the UI" +msgstr "Pakker er lettvektsapper (samling av moduldefinisjoner) som kan opprettes, importeres eller frigis direkte fra brukergrensesnittet" + +#. Label of the page (Link) field in DocType 'Custom Role' +#. Name of a DocType +#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for +#. Page and Report' +#. Label of the page (Link) field in DocType 'Role Permission for Page and +#. Report' +#. Label of a Link in the Build Workspace +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Page" +msgstr "Side" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:63 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Page Break" +msgstr "Sideskift" + +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json +msgid "Page Builder" +msgstr "Sidebygger" + +#. Label of the page_blocks (Table) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Page Building Blocks" +msgstr "Sidens byggesteiner" + +#. Label of the page_html (Section Break) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "Page HTML" +msgstr "Side HTML" + +#: frappe/public/js/frappe/list/bulk_operations.js:73 +msgid "Page Height (in mm)" +msgstr "Sidehøyde (i mm)" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:5 +msgid "Page Margins" +msgstr "Sidemarger" + +#. Label of the page_name (Data) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "Page Name" +msgstr "Sidens navn" + +#. 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 "Sidetall" + +#. Label of the page_route (Small Text) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Page Route" +msgstr "Sidesti" + +#. 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 "Sideinnstillinger" + +#: frappe/public/js/frappe/ui/keyboard.js:125 +msgid "Page Shortcuts" +msgstr "Sidesnarveier" + +#: frappe/public/js/frappe/list/bulk_operations.js:66 +msgid "Page Size" +msgstr "Sidestørrelse" + +#. 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 "Sidetittel" + +#: frappe/public/js/frappe/list/bulk_operations.js:80 +msgid "Page Width (in mm)" +msgstr "Sidebredde (i mm)" + +#: frappe/www/qrcode.py:35 +msgid "Page has expired!" +msgstr "Siden er foreldet!" + +#: frappe/printing/doctype/print_settings/print_settings.py:70 +#: frappe/public/js/frappe/list/bulk_operations.js:106 +msgid "Page height and width cannot be zero" +msgstr "Sidehøyde og -bredde kan ikke være null" + +#: frappe/public/js/frappe/views/container.js:52 frappe/www/404.html:23 +msgid "Page not found" +msgstr "Side ikke funnet" + +#. Description of a DocType +#: frappe/website/doctype/web_page/web_page.json +msgid "Page to show on the website\n" +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/templates/print_formats/standard.html:34 +msgid "Page {0} of {1}" +msgstr "Side {0} av {1}" + +#. Label of the parameter (Data) field in DocType 'SMS Parameter' +#: frappe/core/doctype/sms_parameter/sms_parameter.json +msgid "Parameter" +msgstr "Parameter" + +#: frappe/public/js/frappe/model/model.js:142 +#: frappe/public/js/frappe/views/workspace/workspace.js:434 +msgid "Parent" +msgstr "Overordnet" + +#. Label of the parent_doctype (Link) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Parent DocType" +msgstr "Overordnet DocType" + +#. Label of the parent_document_type (Link) field in DocType 'Dashboard Chart' +#. Label of the parent_document_type (Link) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Parent Document Type" +msgstr "Overordnet dokumenttype (DocType)" + +#: frappe/desk/doctype/number_card/number_card.py:66 +msgid "Parent Document Type is required to create a number card" +msgstr "Overordnet dokumenttype (DocType) er påkrevd for å opprette et tallkort" + +#. Label of the parent_element_selector (Data) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Parent Element Selector" +msgstr "Parent Element Selector" + +#. 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 "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:934 +msgid "Parent Field (Tree)" +msgstr "Overordnet felt (trestruktur)" + +#: frappe/core/doctype/doctype/doctype.py:940 +msgid "Parent Field must be a valid fieldname" +msgstr "Overordnet felt må være et gyldig feltnavn" + +#. 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 "Overordnet etikett" + +#: frappe/core/doctype/doctype/doctype.py:1198 +msgid "Parent Missing" +msgstr "Mangler overordnet " + +#. Label of the parent_page (Link) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Parent Page" +msgstr "Overordnet side" + +#: frappe/core/doctype/data_export/exporter.py:24 +msgid "Parent Table" +msgstr "Overordnet tabell" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:404 +msgid "Parent document type is required to create a dashboard chart" +msgstr "Dokumenttypen (DocType) er påkrevd for å opprette et oversiktspanel-diagram" + +#: frappe/core/doctype/data_export/exporter.py:253 +msgid "Parent is the name of the document to which the data will get added to." +msgstr "Parent er navnet på dokumentet som dataene skal legges til i." + +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." +msgstr "Overordnet-til-underordnet eller underordnet-til-annen-underordnet gruppering er ikke tillatt." + +#: frappe/permissions.py:820 +msgid "Parentfield not specified in {0}: {1}" +msgstr "Overordnet felt ikke spesifisert i {0}: {1}" + +#: frappe/client.py:467 +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" + +#. 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 "Delvis" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Partial Success" +msgstr "Delvis suksess" + +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Partially Sent" +msgstr "Delvis sendt" + +#. Label of the participants (Section Break) field in DocType 'Event' +#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json +msgid "Participants" +msgstr "Deltakerne" + +#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Pass" +msgstr "Ok" + +#. Option for the 'Status' (Select) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Passive" +msgstr "Passiv" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the password_settings (Section Break) field in DocType 'System +#. Settings' +#. Label of the password_tab (Tab Break) field in DocType 'System Settings' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the password (Password) field in DocType 'Email Account' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:493 +#: frappe/email/doctype/email_account/email_account.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/www/login.html:22 +msgid "Password" +msgstr "Passord" + +#: frappe/core/doctype/user/user.py:1094 +msgid "Password Email Sent" +msgstr "E-post med passord sendt" + +#: frappe/core/doctype/user/user.py:459 +msgid "Password Reset" +msgstr "Tilbakestilling av passord" + +#. 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 "Grense for generering av lenke til tilbakestilling av passord" + +#: frappe/public/js/frappe/form/grid_row.js:897 +msgid "Password cannot be filtered" +msgstr "Passordet kan ikke filtreres" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:357 +msgid "Password changed successfully." +msgstr "Passordet er vellykket endret." + +#. Label of the password (Password) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Password for Base DN" +msgstr "Passord for Base DN" + +#: frappe/email/doctype/email_account/email_account.py:189 +msgid "Password is required or select Awaiting Password" +msgstr "Passord kreves, eller velg Venter på passord" + +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "Passordet er gyldig. 👍" + +#: frappe/public/js/frappe/desk.js:212 +msgid "Password missing in Email Account" +msgstr "Passord mangler i e-postkontoen" + +#: frappe/utils/password.py:47 +msgid "Password not found for {0} {1} {2}" +msgstr "Finner ikke passord for {0} {1} {2}" + +#: frappe/core/doctype/user/user.py:1093 +msgid "Password reset instructions have been sent to {}'s email" +msgstr "Instruksjoner for tilbakestilling av passord er sendt til {} via e-post" + +#: frappe/www/update-password.html:191 +msgid "Password set" +msgstr "Passordet er lagret" + +#: frappe/auth.py:261 +msgid "Password size exceeded the maximum allowed size" +msgstr "Passordet er for langt" + +#: frappe/core/doctype/user/user.py:882 +msgid "Password size exceeded the maximum allowed size." +msgstr "Passordet er for langt" + +#: frappe/www/update-password.html:93 +msgid "Passwords do not match" +msgstr "Passordene samsvarer ikke" + +#: frappe/core/doctype/user/user.js:198 +msgid "Passwords do not match!" +msgstr "Passordene samsvarer ikke" + +#: frappe/public/js/frappe/views/file/file_view.js:151 +msgid "Paste" +msgstr "Lim inn" + +#. Label of the patch (Int) field in DocType 'Package Release' +#. Label of the patch (Code) field in DocType 'Patch Log' +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Patch" +msgstr "Patch" + +#. Name of a DocType +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Patch Log" +msgstr "Patch logg" + +#: frappe/modules/patch_handler.py:136 +msgid "Patch type {} not found in patches.txt" +msgstr "Patch type {} ble ikke funnet i patches.txt" + +#. Label of the path (Data) field in DocType 'API Request Log' +#. Label of the path (Small Text) field in DocType 'Package Release' +#. Label of the path (Data) field in DocType 'Recorder' +#. Label of the path (Data) field in DocType 'Onboarding Step' +#. Label of the path (Data) field in DocType 'Web Page View' +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:35 +msgid "Path" +msgstr "Sti" + +#. 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 "Sti til CA-sertifikatfil" + +#. 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 "Sti til serversertifikat" + +#. 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 "Sti til privat nøkkelfil" + +#: frappe/website/path_resolver.py:208 +msgid "Path {0} it not a valid path" +msgstr "Sti {0} er ikke en gyldig sti" + +#. Label of the payload_count (Int) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Payload Count" +msgstr "Antall datapakker" + +#. Label of the peak_memory_usage (Int) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Peak Memory Usage" +msgstr "Maksimal minnebruk" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Step' +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Pending" +msgstr "Avventer" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Pending Approval" +msgstr "Avventer godkjenning" + +#. Label of the pending_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Pending Emails" +msgstr "Ventende e-poster" + +#. Label of the pending_jobs (Int) field in DocType 'System Health Report +#. Queue' +#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json +msgid "Pending Jobs" +msgstr "Ventende jobber" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Pending Verification" +msgstr "Avventer bekreftelse" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Percent" +msgstr "Prosent" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Percentage" +msgstr "Prosentandel" + +#. Label of the dynamic_date_period (Select) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Period" +msgstr "Periode" + +#. Label of the permlevel (Int) field in DocType 'DocField' +#. Label of the permlevel (Int) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Perm Level" +msgstr "Rettighetsnivå" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Permanent" +msgstr "Permanent" + +#: frappe/public/js/frappe/form/form.js:1028 +msgid "Permanently Cancel {0}?" +msgstr "Permanent avbrutt {0}?" + +#: frappe/public/js/frappe/form/form.js:1074 +msgid "Permanently Discard {0}?" +msgstr "Kast {0}permanent?" + +#: frappe/public/js/frappe/form/form.js:861 +msgid "Permanently Submit {0}?" +msgstr "Permanent registrert {0}?" + +#: frappe/public/js/frappe/model/model.js:684 +msgid "Permanently delete {0}?" +msgstr "Slette {0} permanent ?" + +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 +msgid "Permission Error" +msgstr "Feil i tillatelse" + +#. Name of a DocType +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "Permission Inspector" +msgstr "Rettighetskontroll" + +#. Label of the permlevel (Int) field in DocType 'Custom Field' +#: frappe/core/page/permission_manager/permission_manager.js:463 +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Permission Level" +msgstr "Rettighetsnivå" + +#: frappe/core/page/permission_manager/permission_manager_help.html:22 +msgid "Permission Levels" +msgstr "Rettighetsnivåer" + +#. Name of a DocType +#: frappe/core/doctype/permission_log/permission_log.json +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" +msgstr "Permission Query" + +#. Label of the permission_rules (Section Break) field in DocType 'Custom Role' +#: frappe/core/doctype/custom_role/custom_role.json +msgid "Permission Rules" +msgstr "Rettighetsregler" + +#. Label of the permission_type (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "Permission Type" +msgstr "Tillatelsestype" + +#. Label of the section_break_4 (Section Break) field in DocType 'Custom +#. DocPerm' +#. Label of the permissions (Section Break) field in DocType 'DocField' +#. Label of the section_break_4 (Section Break) field in DocType 'DocPerm' +#. Label of the permissions (Table) field in DocType 'DocType' +#. Label of the permissions_tab (Tab Break) field in DocType 'DocType' +#. Label of the permissions (Section Break) field in DocType 'System Settings' +#. Label of a Card Break in the Users Workspace +#. Label of the permissions (Section Break) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 +#: 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:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 +msgid "Permissions Error" +msgstr "Feil i tillatelser" + +#: frappe/core/page/permission_manager/permission_manager_help.html:10 +msgid "Permissions are automatically applied to Standard Reports and searches." +msgstr "Tillatelser brukes automatisk på standardrapporter og søk." + +#: frappe/core/page/permission_manager/permission_manager_help.html:5 +msgid "Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions." +msgstr "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 +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 +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" + +#: frappe/core/page/permission_manager/permission_manager_help.html:6 +msgid "Permissions get applied on Users based on what Roles they are assigned." +msgstr "Rettighetene blir anvendt på brukere basert på hvilke roller de er tildelt." + +#. Name of a report +#. Label of a Link in the Users Workspace +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.json +#: frappe/core/workspace/users/users.json +msgid "Permitted Documents For User" +msgstr "Dokumenter brukeren har rettigheter til" + +#. Label of the permitted_roles (Table MultiSelect) field in DocType 'Workflow +#. Action' +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Permitted Roles" +msgstr "Tillatte roller" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Personal" +msgstr "Personlig" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Personal Data Deletion Request" +msgstr "Forespørsel om sletting av personopplysninger" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Personal Data Deletion Step" +msgstr "Trinn for sletting av personopplysninger" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +msgid "Personal Data Download Request" +msgstr "Forespørsel om nedlasting av personopplysninger" + +#. Label of the phone (Data) field in DocType 'Address' +#. Label of the phone (Data) field in DocType 'Contact' +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the phone (Data) field in DocType 'Contact Us Settings' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Phone" +msgstr "Telefon" + +#. Label of the phone_no (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Phone No." +msgstr "Telefonnr." + +#: frappe/utils/__init__.py:124 +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:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 +msgid "Pick Columns" +msgstr "Velg kolonner" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Pie" +msgstr "Sektordiagram" + +#. Label of the pincode (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Pincode" +msgstr "PIN-kode" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Pink" +msgstr "Rosa" + +#. Label of the placeholder (Data) field in DocType 'DocField' +#. Label of the placeholder (Data) field in DocType 'Custom Field' +#. Label of the placeholder (Data) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Placeholder" +msgstr "Plassholder" + +#. Option for the 'Message Type' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Plain Text" +msgstr "Ren tekst" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Plant" +msgstr "Produksjonsanlegg" + +#: frappe/email/doctype/email_account/email_account.py:544 +msgid "Please Authorize OAuth for Email Account {0}" +msgstr "Autoriser OAuth for e-postkonto {0}" + +#: frappe/email/oauth.py:29 +msgid "Please Authorize OAuth for Email Account {}" +msgstr "Autoriser OAuth for e-postkonto {}" + +#: frappe/website/doctype/website_theme/website_theme.py:77 +msgid "Please Duplicate this Website Theme to customize." +msgstr "Dupliser dette nettstedstemaet for å tilpasse det." + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:162 +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 +msgid "Please Set Chart" +msgstr "Angi diagram" + +#: frappe/core/doctype/sms_settings/sms_settings.py:88 +msgid "Please Update SMS Settings" +msgstr "Oppdater SMS-innstillingene" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 +msgid "Please add a subject to your email" +msgstr "Legg til et emne i e-posten din" + +#: frappe/templates/includes/comments/comments.html:168 +msgid "Please add a valid comment." +msgstr "Legg til en gyldig kommentar." + +#: frappe/core/doctype/user/user.py:1076 +msgid "Please ask your administrator to verify your sign-up" +msgstr "Be administratoren om å bekrefte registreringen din" + +#: frappe/public/js/frappe/form/controls/select.js:101 +msgid "Please attach a file first." +msgstr "Legg ved en fil først." + +#: frappe/printing/doctype/letter_head/letter_head.py:82 +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 +msgid "Please attach an image file to set HTML for Letter Head." +msgstr "Legg ved en bildefil for å sette HTML for brevhode." + +#: frappe/core/doctype/package_import/package_import.py:39 +msgid "Please attach the package" +msgstr "Legg ved pakken" + +#: frappe/utils/dashboard.py:58 +msgid "Please check the filter values set for Dashboard Chart: {}" +msgstr "Sjekk filterverdiene som er angitt for oversiktspanel-diagram: {}" + +#: frappe/model/base_document.py:1008 +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:1074 +msgid "Please check your email for verification" +msgstr "Sjekk e-post for bekreftelse" + +#: frappe/email/smtp.py:134 +msgid "Please check your email login credentials." +msgstr "Sjekk påloggingsinformasjonen din for e-post." + +#: frappe/twofactor.py:243 +msgid "Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it." +msgstr "Sjekk din registrerte e-postadresse for å finne instruksjoner om hvordan du går frem. Ikke lukk dette vinduet, siden du da må gå tilbake til det." + +#: frappe/desk/doctype/workspace/workspace.js:23 +msgid "Please click Edit on the Workspace for best results" +msgstr "Bruk «Rediger» på arbeidsområdet for best resultat." + +#: frappe/core/doctype/data_import/data_import.js:158 +msgid "Please click on 'Export Errored Rows', fix the errors and import again." +msgstr "Klikk på «Eksporter feilaktige rader», rett feilene og importer på nytt." + +#: frappe/twofactor.py:286 +msgid "Please click on the following link and follow the instructions on the page. {0}" +msgstr "Klikk følgende lenke og følg instruksjonene på siden. {0}" + +#: frappe/templates/emails/password_reset.html:2 +msgid "Please click on the following link to set your new password" +msgstr "Klikk på følgende lenke for å angi ditt nye passord" + +#: frappe/www/confirm_workflow_action.html:4 +msgid "Please confirm your action to {0} this document." +msgstr "Bekreft at du vil {0} dette dokumentet." + +#: frappe/printing/page/print/print.js:658 +msgid "Please contact your system manager to install correct version." +msgstr "Kontakt systembehandleren for å installere riktig versjon." + +#: frappe/desk/doctype/number_card/number_card.js:45 +msgid "Please create Card first" +msgstr "Opprett et kort først" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:42 +msgid "Please create chart first" +msgstr "Opprett et diagram først" + +#: frappe/desk/form/meta.py:190 +msgid "Please delete the field from {0} or add the required doctype." +msgstr "Vennligst slett feltet fra {0} eller legg til den nødvendige doktypen." + +#: frappe/core/doctype/data_export/exporter.py:184 +msgid "Please do not change the template headings." +msgstr "Ikke endre overskriftene i malen." + +#: frappe/printing/doctype/print_format/print_format.js:19 +msgid "Please duplicate this to make changes" +msgstr "Dupliser dette for å gjøre endringer" + +#: frappe/core/doctype/system_settings/system_settings.py:165 +msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." +msgstr "Aktiver minst én sosial påloggingsnøkkel eller LDAP- eller logg inn med e-postlenke før du deaktiverer brukernavn-/passordbasert pålogging." + +#: 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:678 +#: frappe/printing/page/print/print.js:708 +#: frappe/public/js/frappe/list/bulk_operations.js:161 +#: frappe/public/js/frappe/utils/utils.js:1471 +msgid "Please enable pop-ups" +msgstr "Aktiver popup-vinduer" + +#: frappe/public/js/frappe/microtemplate.js:162 +#: frappe/public/js/frappe/microtemplate.js:177 +msgid "Please enable pop-ups in your browser" +msgstr "Aktiver popup-vinduer i nettleseren din" + +#: frappe/integrations/google_oauth.py:55 +msgid "Please enable {} before continuing." +msgstr "Aktiver {} før du fortsetter." + +#: frappe/utils/oauth.py:191 +msgid "Please ensure that your profile has an email address" +msgstr "Sørg for at profilen din har en e-postadresse" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 +msgid "Please enter Access Token URL" +msgstr "Skriv inn URL-adressen for tilgangstoken" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 +msgid "Please enter Authorize URL" +msgstr "Skriv inn Authorize URL" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 +msgid "Please enter Base URL" +msgstr "Angi omdirigerings-URL" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 +msgid "Please enter Client ID before social login is enabled" +msgstr "Angi klient-ID før sosial pålogging aktiveres" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 +msgid "Please enter Client Secret before social login is enabled" +msgstr "Angi Client Secret før sosial innlogging kan aktiveres." + +#: frappe/integrations/doctype/connected_app/connected_app.py:54 +msgid "Please enter OpenID Configuration URL" +msgstr "Angi URL-adressen for OpenID-konfigurasjon" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 +msgid "Please enter Redirect URL" +msgstr "Angi omdirigerings-URL" + +#: frappe/templates/includes/comments/comments.html:163 +msgid "Please enter a valid email address." +msgstr "Angi en gyldig e-postadresse." + +#: frappe/templates/includes/contact.js:15 +msgid "Please enter both your email and message so that we can get back to you. Thanks!" +msgstr "Angi både e-postadressen og meldingen din, slik at vi kan kontakte deg. Takk!" + +#: frappe/www/update-password.html:259 +msgid "Please enter the password" +msgstr "Angi passordet" + +#: frappe/public/js/frappe/desk.js:217 +msgctxt "Email Account" +msgid "Please enter the password for: {0}" +msgstr "Angi passordet for: {0}" + +#: frappe/core/doctype/sms_settings/sms_settings.py:43 +msgid "Please enter valid mobile nos" +msgstr "Angi gyldige mobilnummere" + +#: frappe/www/update-password.html:142 +msgid "Please enter your new password." +msgstr "Angi det nye passordet ditt." + +#: frappe/www/update-password.html:135 +msgid "Please enter your old password." +msgstr "Angi ditt gamle passord" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 +msgid "Please find attached {0}: {1}" +msgstr "Angi vedlagt {0}: {1}" + +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 +msgid "Please login to post a comment." +msgstr "Logg inn for å legge inn en kommentar." + +#: frappe/core/doctype/communication/communication.py:186 +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:992 +msgid "Please refresh to get the latest document." +msgstr "Oppdater for å få det nyeste dokumentet." + +#: frappe/printing/page/print/print.js:575 +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:358 +msgid "Please save before attaching." +msgstr "Lagre før vedlegging." + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:52 +msgid "Please save the document before assignment" +msgstr "Lagre dokumentet før tildeling" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:72 +msgid "Please save the document before removing assignment" +msgstr "Lagre dokumentet før du fjerner tildeling" + +#: frappe/public/js/frappe/views/reports/report_view.js:1718 +msgid "Please save the report first" +msgstr "Lagre rapporten først" + +#: frappe/website/doctype/web_template/web_template.js:22 +msgid "Please save to edit the template." +msgstr "Lagre for å redigere malen." + +#: frappe/printing/doctype/print_format/print_format.js:31 +msgid "Please select DocType first" +msgstr "Velg dokumenttype (DocType) først" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:27 +msgid "Please select Entity Type first" +msgstr "Velg enhetstype først" + +#: frappe/core/doctype/system_settings/system_settings.py:116 +msgid "Please select Minimum Password Score" +msgstr "Velg minimum passordpoengsum" + +#: frappe/public/js/frappe/views/reports/query_report.js:1193 +msgid "Please select X and Y fields" +msgstr "Velg X- og Y-feltene" + +#: frappe/utils/__init__.py:131 +msgid "Please select a country code for field {1}." +msgstr "Velg en landskode for felt {1}." + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 +msgid "Please select a file first." +msgstr "Velg en fil først." + +#: frappe/utils/file_manager.py:50 +msgid "Please select a file or url" +msgstr "Velg en fil eller URL" + +#: frappe/model/rename_doc.py:684 +msgid "Please select a valid csv file with data" +msgstr "Velg en gyldig csv-fil med data" + +#: frappe/utils/data.py:309 +msgid "Please select a valid date filter" +msgstr "Velg et gyldig datofilter" + +#: frappe/core/doctype/user_permission/user_permission_list.js:203 +msgid "Please select applicable Doctypes" +msgstr "Vennligst velg relevante dokumenttyper (DocType)" + +#: frappe/model/db_query.py:1163 +msgid "Please select atleast 1 column from {0} to sort/group" +msgstr "Velg minst én kolonne fra {0} for å sortere/gruppere" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:214 +msgid "Please select prefix first" +msgstr "Vennligst velg prefiks først" + +#: frappe/core/doctype/data_export/data_export.js:42 +msgid "Please select the Document Type." +msgstr "Velg dokumenttypen (DocType)" + +#. Description of the 'Directory Server' (Select) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Please select the LDAP Directory being used" +msgstr "Velg LDAP-katalogen som brukes" + +#: frappe/website/doctype/website_settings/website_settings.js:100 +msgid "Please select {0}" +msgstr "Velg {0}" + +#: frappe/contacts/doctype/contact/contact.py:298 +msgid "Please set Email Address" +msgstr "Angi e-postadresse" + +#: frappe/printing/page/print/print.js:589 +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:1416 +msgid "Please set filters" +msgstr "Angi filtre" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 +msgid "Please set filters value in Report Filter table." +msgstr "Angi filterverdi i rapportfiltertabellen." + +#: frappe/model/naming.py:580 +msgid "Please set the document name" +msgstr "Angi dokumenttypen (DocType)" + +#: frappe/desk/doctype/dashboard/dashboard.py:120 +msgid "Please set the following documents in this Dashboard as standard first." +msgstr "Angi følgende dokumenter i dette oversiktspanelet som standard først." + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:120 +msgid "Please set the series to be used." +msgstr "Angi hvilken serie som skal brukes." + +#: frappe/core/doctype/system_settings/system_settings.py:129 +msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" +msgstr "Konfigurer SMS før du angir det som autentiseringsmetode, via SMS-innstillinger" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104 +msgid "Please setup a message first" +msgstr "Opprett en melding først" + +#: frappe/core/doctype/user/user.py:424 +msgid "Please setup default outgoing Email Account from Settings > Email Account" +msgstr "Konfigurer standard utgående e-postkonto fra Innstillinger > E-postkonto" + +#: frappe/email/doctype/email_account/email_account.py:432 +msgid "Please setup default outgoing Email Account from Tools > Email Account" +msgstr "Konfigurer standard utgående e-postkonto fra Verktøy > E-postkonto" + +#: frappe/public/js/frappe/model/model.js:774 +msgid "Please specify" +msgstr "Spesifiser" + +#: frappe/permissions.py:796 +msgid "Please specify a valid parent DocType for {0}" +msgstr "Spesifiser en gyldig overordnet dokumenttype (DocType) for {0}" + +#: frappe/email/doctype/notification/notification.py:163 +msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" +msgstr "Spesifiser minst 10 minutter på grunn av utløserkadensen til planleggeren." + +#: frappe/email/doctype/notification/notification.py:160 +msgid "Please specify the minutes offset" +msgstr "Spesifiser minuttforskyvningen" + +#: frappe/email/doctype/notification/notification.py:154 +msgid "Please specify which date field must be checked" +msgstr "Spesifiser hvilket datofelt som skal krysses av" + +#: frappe/email/doctype/notification/notification.py:158 +msgid "Please specify which datetime field must be checked" +msgstr "Spesifiser hvilket datetime-felt som må sjekkes" + +#: frappe/email/doctype/notification/notification.py:167 +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/views/translation_manager.js:102 +msgid "Please try again" +msgstr "Prøv igjen" + +#: frappe/integrations/google_oauth.py:58 +msgid "Please update {} before continuing." +msgstr "Oppdater {} før du fortsetter." + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333 +msgid "Please use a valid LDAP search filter" +msgstr "Bruk et gyldig LDAP-søkefilter" + +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." +msgstr "Bruk følgende linker for å laste ned sikkerhetskopiering av filer." + +#: frappe/utils/password.py:217 +msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." +msgstr "Besøk https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for mer informasjon." + +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "Policy URI" + +#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Polling" +msgstr "Polling" + +#. Label of the popover_element (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Popover Element" +msgstr "Popover-element" + +#. 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 "Beskrivelse for popover eller modal" + +#. Label of the smtp_port (Data) field in DocType 'Email Account' +#. Label of the incoming_port (Data) field in DocType 'Email Account' +#. Label of the smtp_port (Data) field in DocType 'Email Domain' +#. Label of the incoming_port (Data) field in DocType 'Email Domain' +#. Label of the port (Int) field in DocType 'Network Printer Settings' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Port" +msgstr "Port" + +#. Label of the menu (Table) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Portal Menu" +msgstr "Portalmeny" + +#. Name of a DocType +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +msgid "Portal Menu Item" +msgstr "Element i portalmeny" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/portal_settings/portal_settings.json +#: frappe/website/workspace/website/website.json +msgid "Portal Settings" +msgstr "Portalinnstillinger" + +#: frappe/public/js/frappe/form/print_utils.js:24 +msgid "Portrait" +msgstr "Portrett" + +#. Label of the position (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Position" +msgstr "Posisjon" + +#: frappe/templates/discussions/comment_box.html:29 +#: frappe/templates/discussions/reply_card.html:15 +#: frappe/templates/discussions/reply_section.html:29 +#: frappe/templates/discussions/reply_section.html:53 +#: frappe/templates/discussions/topic_modal.html:11 +msgid "Post" +msgstr "Innlegg" + +#: frappe/templates/discussions/reply_section.html:40 +msgid "Post it here, our mentors will help you out." +msgstr "Noter det her, så vil en erfaren bruker hjelpe deg." + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Postal" +msgstr "Post" + +#. Label of the pincode (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 +msgid "Postal Code" +msgstr "Postnummer" + +#. Label of the posting_timestamp (Datetime) field in DocType 'Changelog Feed' +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +msgid "Posting Timestamp" +msgstr "Tidsstempel for innlegg" + +#: frappe/database/query.py:1520 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "Potensielt farlig innhold i strengliteral: {0}" + +#. Label of the precision (Select) field in DocType 'DocField' +#. Label of the precision (Select) field in DocType 'Custom Field' +#. Label of the precision (Select) field in DocType 'Customize Form Field' +#. Label of the precision (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Precision" +msgstr "Presisjon" + +#: frappe/core/doctype/doctype/doctype.py:1670 +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:1401 +msgid "Precision should be between 1 and 6" +msgstr "Presisjonen bør være mellom 1 og 6" + +#: frappe/utils/password_strength.py:187 +msgid "Predictable substitutions like '@' instead of 'a' don't help very much." +msgstr "Forutsigbare erstatninger som \"@\" i stedet for \"a\" hjelper ikke så mye." + +#: frappe/desk/page/setup_wizard/install_fixtures.py:34 +msgid "Prefer not to say" +msgstr "Ønsker ikke oppgi" + +#. Label of the is_primary_address (Check) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Preferred Billing Address" +msgstr "Foretrukket faktureringsadresse" + +#. Label of the is_shipping_address (Check) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Preferred Shipping Address" +msgstr "Foretrukket leveringsadresse" + +#. Label of the prefix (Data) field in DocType 'Document Naming Rule' +#. Label of the prefix (Autocomplete) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Prefix" +msgstr "Prefiks" + +#. Name of a DocType +#. Label of the prepared_report (Check) field in DocType 'Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:32 +msgid "Prepared Report" +msgstr "Forhåndsgenerert rapport" + +#. Name of a report +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json +msgid "Prepared Report Analytics" +msgstr "Analyseverktøy for forhåndsgenererte rapporter" + +#. Name of a role +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Prepared Report User" +msgstr "Bruker av forhåndsgenerert rapport" + +#: frappe/desk/query_report.py:308 +msgid "Prepared report render failed" +msgstr "Rendring av forhåndsgenerert rapport feilet" + +#: frappe/public/js/frappe/views/reports/query_report.js:473 +msgid "Preparing Report" +msgstr "Forhåndsgenerert rapport" + +#: frappe/public/js/frappe/views/communication.js:434 +msgid "Prepend the template to the email message" +msgstr "Sett malen øverst i e-postmeldingen" + +#: frappe/public/js/frappe/ui/keyboard.js:139 +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:141 +msgid "Press Enter to save" +msgstr "Trykk Enter for å lagre" + +#. Label of the section_import_preview (Section Break) field in DocType 'Data +#. Import' +#. Label of the preview (Section Break) field in DocType 'File' +#. Label of the preview_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Label of the preview (Attach Image) field in DocType 'Print Style' +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/file/file.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/email/doctype/notification/notification.js:194 +#: frappe/integrations/doctype/webhook/webhook.js:90 +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/public/js/frappe/form/controls/markdown_editor.js:17 +#: frappe/public/js/frappe/form/controls/markdown_editor.js:31 +#: frappe/public/js/frappe/ui/capture.js:236 +msgid "Preview" +msgstr "Forhåndsvisning" + +#. Label of the preview_html (HTML) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Preview HTML" +msgstr "Forhåndsvisning HTML" + +#. Label of the preview_message (Button) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Preview Message" +msgstr "Forhåndsvisning av melding" + +#: frappe/public/js/form_builder/form_builder.bundle.js:83 +msgid "Preview Mode" +msgstr "Forhåndsvisningsmodus" + +#. Label of the series_preview (Text) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Preview of generated names" +msgstr "Forhåndsvisning av genererte navn" + +#: frappe/public/js/frappe/views/render_preview.js:19 +msgid "Preview on {0}" +msgstr "Forhåndsvisning av {0}" + +#: frappe/public/js/print_format_builder/Preview.vue:103 +msgid "Preview type" +msgstr "Type forhåndsvisning" + +#: frappe/email/doctype/email_group/email_group.js:81 +msgid "Preview:" +msgstr "Forhåndsvisning:" + +#: frappe/public/js/frappe/form/form_tour.js:15 +#: frappe/public/js/frappe/web_form/web_form.js:97 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:16 +#: frappe/templates/includes/slideshow.html:34 +#: frappe/website/web_template/slideshow/slideshow.html:40 +msgid "Previous" +msgstr "Tidligere" + +#: frappe/public/js/frappe/ui/slides.js:351 +msgctxt "Go to previous slide" +msgid "Previous" +msgstr "Tidligere" + +#: frappe/public/js/frappe/form/form.js:2216 +msgid "Previous Submission" +msgstr "Tidligere registrering" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Primary" +msgstr "Primær" + +#: frappe/public/js/frappe/form/templates/address_list.html:27 +msgid "Primary Address" +msgstr "Primæradresse" + +#. Label of the primary_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Primary Color" +msgstr "Primærfarge" + +#: frappe/public/js/frappe/form/templates/contact_list.html:23 +msgid "Primary Contact" +msgstr "Primærkontakt" + +#: frappe/public/js/frappe/form/templates/contact_list.html:69 +msgid "Primary Email" +msgstr "Primær e-postadresse" + +#: frappe/public/js/frappe/form/templates/contact_list.html:49 +msgid "Primary Mobile" +msgstr "Primært mobilnummer" + +#: frappe/public/js/frappe/form/templates/contact_list.html:41 +msgid "Primary Phone" +msgstr "Primært telefonnummer" + +#: frappe/database/mariadb/schema.py:156 frappe/database/postgres/schema.py:199 +#: frappe/database/sqlite/schema.py:141 +msgid "Primary key of doctype {0} can not be changed as there are existing values." +msgstr "Primærnøkkelen til dokumenttypen (DocType) {0} kan ikke endres da det finnes eksisterende verdier." + +#. Label of the print (Check) field in DocType 'Custom DocPerm' +#. Label of the print (Check) field in DocType 'DocPerm' +#. Label of the print (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/success_action/success_action.js:58 +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/printing/page/print/print.js:78 +#: frappe/public/js/frappe/form/success_action.js:81 +#: frappe/public/js/frappe/form/templates/print_layout.html:46 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 +#: frappe/public/js/frappe/list/bulk_operations.js:95 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: 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:2166 +msgctxt "Button in list view actions menu" +msgid "Print" +msgstr "Skriv ut" + +#: frappe/public/js/frappe/list/bulk_operations.js:48 +msgid "Print Documents" +msgstr "Skriv ut dokument" + +#. Label of the print_format (Link) field in DocType 'Auto Repeat' +#. Label of a Link in the Build Workspace +#. Label of the print_format (Link) field in DocType 'Notification' +#. Name of a DocType +#. Label of the print_format (Link) field in DocType 'Web Form' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/workspace/build/build.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 +#: frappe/public/js/frappe/list/bulk_operations.js:59 +#: frappe/website/doctype/web_form/web_form.json +msgid "Print Format" +msgstr "Utskriftsformat" + +#. Label of a Link in the Tools Workspace +#. Label of the print_format_builder (Check) field in DocType 'Print Format' +#: frappe/automation/workspace/tools/tools.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:44 +#: frappe/printing/page/print_format_builder/print_format_builder.js:67 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:4 +msgid "Print Format Builder" +msgstr "Utskriftsformat-bygger" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Print Format Builder (New)" +msgstr "Skriv ut Formateringsbygger (ny)" + +#. Label of the print_format_builder_beta (Check) field in DocType 'Print +#. Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format Builder Beta" +msgstr "Utskriftsformat-bygger (beta)" + +#: frappe/utils/pdf.py:63 +msgid "Print Format Error" +msgstr "Feil i utskriftsformat" + +#. Name of a DocType +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +msgid "Print Format Field Template" +msgstr "Feltmal for utskriftsformat" + +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "Utskriftsformat for" + +#. 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 "Hjelp med utskriftsformat" + +#. Label of the print_format_type (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format Type" +msgstr "Type utskriftsformat" + +#: frappe/public/js/frappe/views/reports/query_report.js:1586 +msgid "Print Format not found" +msgstr "Utskriftsformat ikke funnet" + +#: frappe/www/printview.py:451 +msgid "Print Format {0} is disabled" +msgstr "Utskriftsformatet {0} er deaktivert" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#. Label of the print_heading (Data) field in DocType 'Print Heading' +#: frappe/automation/workspace/tools/tools.json +#: frappe/printing/doctype/print_heading/print_heading.json +msgid "Print Heading" +msgstr "Rediger overskrift" + +#. Label of the print_hide (Check) field in DocType 'DocField' +#. Label of the print_hide (Check) field in DocType 'Custom Field' +#. Label of the print_hide (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Hide" +msgstr "Skjul i utskrift" + +#. Label of the print_hide_if_no_value (Check) field in DocType 'DocField' +#. Label of the print_hide_if_no_value (Check) field in DocType 'Custom Field' +#. Label of the print_hide_if_no_value (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Hide If No Value" +msgstr "Skjul i utskrift hvis ingen verdi" + +#: frappe/public/js/frappe/views/communication.js:168 +msgid "Print Language" +msgstr "Utskriftsspråk" + +#: frappe/public/js/frappe/form/print_utils.js:225 +msgid "Print Sent to the printer!" +msgstr "Utskrift sendt til trykkeriet!" + +#. Label of the server_printer (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Print Server" +msgstr "Utskriftsserver" + +#. Label of a Link in the Tools Workspace +#. Label of the column_break_25 (Section Break) field in DocType 'Notification' +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.js:6 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 +#: frappe/public/js/frappe/form/templates/print_layout.html:35 +msgid "Print Settings" +msgstr "Utskriftsinnstillinger" + +#. Label of the print_style_section (Section Break) field in DocType 'Print +#. Settings' +#. Label of the print_style (Link) field in DocType 'Print Settings' +#. Name of a DocType +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.json +msgid "Print Style" +msgstr "Utskriftsstil" + +#. 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 "Navn på utskriftsstil" + +#. 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 "Forhåndsvisning av utskriftsstil" + +#. Label of the print_width (Data) field in DocType 'DocField' +#. Label of the print_width (Data) field in DocType 'Custom Field' +#. Label of the print_width (Data) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Width" +msgstr "Utskriftsbredde" + +#. 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 "Skriv ut feltets bredde, hvis feltet er en kolonne i en tabell" + +#: frappe/public/js/frappe/form/form.js:170 +msgid "Print document" +msgstr "Skriv ut dokument" + +#. Label of the with_letterhead (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Print with letterhead" +msgstr "Skriv ut med brevhode" + +#: frappe/printing/page/print/print.js:870 +msgid "Printer" +msgstr "Skriver" + +#: frappe/printing/page/print/print.js:847 +msgid "Printer Mapping" +msgstr "Skrivertilordning" + +#. Label of the printer_name (Select) field in DocType 'Network Printer +#. Settings' +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Printer Name" +msgstr "Skriverens navn" + +#: frappe/printing/page/print/print.js:839 +msgid "Printer Settings" +msgstr "Skriverinnstillinger" + +#: frappe/printing/page/print/print.js:588 +msgid "Printer mapping not set." +msgstr "Skrivertilordning er ikke angitt." + +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Printing" +msgstr "Utskrift" + +#: frappe/utils/print_format.py:291 +msgid "Printing failed" +msgstr "Utskriften mislyktes" + +#. Label of the priority (Int) field in DocType 'Assignment Rule' +#. Label of the priority (Int) field in DocType 'Document Naming Rule' +#. Label of the priority (Select) field in DocType 'ToDo' +#. Label of the priority (Int) field in DocType 'Email Queue' +#. Label of the idx (Int) field in DocType 'Web Page' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:37 +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:211 +#: frappe/website/doctype/web_page/web_page.json +msgid "Priority" +msgstr "Prioritet" + +#. Label of the private (Check) field in DocType 'Custom HTML Block' +#. Option for the 'Event Type' (Select) field in DocType 'Event' +#. Label of the private (Check) field in DocType 'Kanban Board' +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/note/note_list.js:8 +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:35 +msgid "Private" +msgstr "Privat" + +#. Label of the private_files_size (Float) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Private Files (MB)" +msgstr "Private filer (MB)" + +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "Sikkerhetskopiering av private filer:" + +#. Description of the 'Auto Reply Message' (Text Editor) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference" +msgstr "ProTips: Legg til Referanse: {{ reference_doctype }} {{ reference_name }} for å sende dokumentreferanse" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22 +msgid "Proceed" +msgstr "Fortsett" + +#: frappe/public/js/frappe/views/reports/query_report.js:940 +msgid "Proceed Anyway" +msgstr "Fortsett uansett" + +#: frappe/public/js/frappe/form/controls/table.js:104 +msgid "Processing" +msgstr "Behandler" + +#: frappe/email/doctype/email_queue/email_queue_list.js:52 +msgid "Processing..." +msgstr "Behandler …" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:51 +msgid "Prof" +msgstr "Prof." + +#. Group in User's connections +#: frappe/core/doctype/user/user.json +msgid "Profile" +msgstr "Profil" + +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "" + +#: frappe/public/js/frappe/socketio_client.js:82 +msgid "Progress" +msgstr "Fremgang" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 +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/custom/doctype/property_setter/property_setter.json +msgid "Property" +msgstr "Egenskap" + +#. Label of the property_depends_on_section (Section Break) field in DocType +#. 'Customize Form Field' +#. Label of the property_depends_on_section (Section Break) field in DocType +#. 'Web Form Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Property Depends On" +msgstr "Egenskap avhenger av" + +#. Name of a DocType +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Property Setter" +msgstr "Egenskapsinnstilling" + +#. Description of a DocType +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Property Setter overrides a standard DocType or Field property" +msgstr "Egenskapsinnstilling overstyrer en standard dokumenttype (DocType) eller feltegenskap" + +#. Label of the property_type (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Property Type" +msgstr "Egenskapstype" + +#. Label of the protect_attached_files (Check) field in DocType 'DocType' +#. Label of the protect_attached_files (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Protect Attached Files" +msgstr "Beskytt vedlagte filer" + +#: frappe/core/doctype/file/file.py:526 +msgid "Protected File" +msgstr "Beskyttet fil" + +#. Description of the 'Allowed File Extensions' (Small Text) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Provide a list of allowed file extensions for file uploads. Each line should contain one allowed file type. If unset, all file extensions are allowed. Example:
    CSV
    JPG
    PNG" +msgstr "Oppgi en liste over tillatte filtyper for filopplasting. Hver linje bør inneholde én tillatt filtype. Hvis den ikke er angitt, er alle filtyper tillatt. Eksempel: CSV
    CSV
    JPG
    PNG" + +#. Label of the provider (Data) field in DocType 'User Social Login' +#. Label of the provider (Select) field in DocType 'Geolocation Settings' +#: frappe/core/doctype/user_social_login/user_social_login.json +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Provider" +msgstr "Leverandør" + +#. Label of the provider_name (Data) field in DocType 'Connected App' +#. Label of the provider_name (Data) field in DocType 'Social Login Key' +#. Label of the provider_name (Data) field in DocType 'Token Cache' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Provider Name" +msgstr "Leverandørens navn" + +#. Option for the 'Event Type' (Select) field in DocType 'Event' +#. Label of the public (Check) field in DocType 'Note' +#. Label of the public (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/note/note_list.js:6 +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/views/interaction.js:78 +#: frappe/public/js/frappe/views/workspace/workspace.js:440 +msgid "Public" +msgstr "Offentlig" + +#. Label of the public_files_size (Float) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Public Files (MB)" +msgstr "Offentlige filer (MB)" + +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "Sikkerhetskopiering av offentlige filer:" + +#. Label of the publish (Check) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 +#: frappe/website/doctype/web_form/web_form.js:86 +msgid "Publish" +msgstr "Publiser" + +#. Label of the published (Check) field in DocType 'Comment' +#. Label of the published (Check) field in DocType 'Help Article' +#. Label of the published (Check) field in DocType 'Help Category' +#. Label of the published (Check) field in DocType 'Web Form' +#. Label of the published (Check) field in DocType 'Web Page' +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_form/web_form_list.js:5 +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/web_page/web_page_list.js:5 +msgid "Published" +msgstr "Publisert" + +#. Label of the publishing_dates_section (Section Break) field in DocType 'Web +#. Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Publishing Dates" +msgstr "Publiseringsdatoer" + +#: frappe/email/doctype/email_account/email_account.js:208 +msgid "Pull Emails" +msgstr "Hent e-poster" + +#. Label of the pull_from_google_calendar (Check) field in DocType 'Google +#. Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Pull from Google Calendar" +msgstr "Hent fra Google Kalender" + +#. 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 "Hent fra Google Kontakter" + +#. Label of the pulled_from_google_calendar (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Pulled from Google Calendar" +msgstr "Hentet fra Google Kalender" + +#. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Pulled from Google Contacts" +msgstr "Hentet fra Google Kontakter" + +#: frappe/email/doctype/email_account/email_account.js:209 +msgid "Pulling emails..." +msgstr "Henter e-poster..." + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Purchase Manager" +msgstr "Innkjøpsleder" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Purchase Master Manager" +msgstr "Administrator for innkjøpsstamdata" + +#. Name of a role +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Purchase User" +msgstr "Innkjøpsmedarbeider" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Purple" +msgstr "Lilla" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Push Notification Settings" +msgstr "Innstillinger for pushvarsling" + +#. Label of a Card Break in the Integrations Workspace +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Push Notifications" +msgstr "Pushvarsler" + +#. Label of the push_to_google_calendar (Check) field in DocType 'Google +#. Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Push to Google Calendar" +msgstr "Push til Google Kalender" + +#. Label of the push_to_google_contacts (Check) field in DocType 'Google +#. Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Push to Google Contacts" +msgstr "Push til Google Kontakter" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23 +msgid "Put on Hold" +msgstr "Sett på vent" + +#. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json +msgid "Python" +msgstr "Python" + +#: frappe/www/qrcode.html:3 +msgid "QR Code" +msgstr "QR-kode" + +#: frappe/www/qrcode.html:6 +msgid "QR Code for Login Verification" +msgstr "QR-kode for innloggingsbekreftelse" + +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" +msgstr "QZ Tray – feil:" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:401 +msgid "Quarterly" +msgstr "Kvartalsvis" + +#. Label of the query (Data) field in DocType 'Recorder Query' +#. Label of the query (Code) field in DocType 'Report' +#: frappe/core/doctype/recorder_query/recorder_query.json +#: frappe/core/doctype/report/report.json +msgid "Query" +msgstr "Spørring" + +#. Label of the section_break_6 (Section Break) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Query / Script" +msgstr "Spørring / skript" + +#. 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 "Spørringsvalg" + +#. Label of the query_parameters (Table) field in DocType 'Connected App' +#. Name of a DocType +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/query_parameters/query_parameters.json +msgid "Query Parameters" +msgstr "Spørringsparametere" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +#: frappe/public/js/frappe/views/reports/query_report.js:17 +msgid "Query Report" +msgstr "Spørringsrapport" + +#: frappe/core/doctype/recorder/recorder.py:188 +msgid "Query analysis complete. Check suggested indexes." +msgstr "Spørringsanalysen er fullført. Sjekk foreslåtte indekser." + +#: frappe/utils/safe_exec.py:497 +msgid "Query must be of SELECT or read-only WITH type." +msgstr "Spørringen må være av typen SELECT eller skrivebeskyttet WITH." + +#. Label of the queue (Select) field in DocType 'RQ Job' +#. Label of the queue (Data) field in DocType 'System Health Report Queue' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json +msgid "Queue" +msgstr "Kø" + +#: frappe/utils/background_jobs.py:731 +msgid "Queue Overloaded" +msgstr "Køen er overbelastet" + +#. Label of the queue_status (Table) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Queue Status" +msgstr "Køstatus" + +#. Label of the queue_type (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Queue Type(s)" +msgstr "Køtype(r)" + +#. 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 "Kø i bakgrunnen (BETA)" + +#: frappe/utils/background_jobs.py:556 +msgid "Queue should be one of {0}" +msgstr "Køen bør være en av {0}" + +#. Label of the queue (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Queue(s)" +msgstr "Kø(er)" + +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#. Option for the 'Status' (Select) field in DocType 'Submission Queue' +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Queued" +msgstr "I kø" + +#. Label of the queued_at (Datetime) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Queued At" +msgstr "I kø kl." + +#. Label of the queued_by (Data) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Queued By" +msgstr "Satt i kø av" + +#: frappe/core/doctype/submission_queue/submission_queue.py:174 +msgid "Queued for Submission. You can track the progress over {0}." +msgstr "Satt i kø for registrering. Du kan følge fremdriften via {0}." + +#: frappe/desk/page/backups/backups.py:96 +msgid "Queued for backup. You will receive an email with the download link" +msgstr "Satt i kø for sikkerhetskopiering. Du vil motta en e-post med nedlastingslenken" + +#. Label of the queues (Data) field in DocType 'System Health Report Workers' +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "Queues" +msgstr "Køer" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:85 +msgid "Queuing {0} for Submission" +msgstr "Sette {0} i kø for registrering" + +#. Label of the quick_entry (Check) field in DocType 'DocType' +#. Label of the quick_entry (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Quick Entry" +msgstr "Hurtigregistrering" + +#: frappe/core/page/permission_manager/permission_manager_help.html:3 +msgid "Quick Help for Setting Permissions" +msgstr "Rask hjelp for å angi rettigheter" + +#. Label of the quick_list_filter (Code) field in DocType 'Workspace Quick +#. List' +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +msgid "Quick List Filter" +msgstr "Hurtiglistefilter" + +#. 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 "Hurtiglister" + +#: frappe/public/js/frappe/views/reports/report_utils.js:314 +msgid "Quoting must be between 0 and 3" +msgstr "Anførselstegn-innstillingen må være mellom 0 og 3" + +#. Label of the raw_information_log_section (Section Break) field in DocType +#. 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "RAW Information Log" +msgstr "Logg over rådata" + +#. Name of a DocType +#: frappe/core/doctype/rq_job/rq_job.json +msgid "RQ Job" +msgstr "RQ-jobb" + +#. Name of a DocType +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "RQ Worker" +msgstr "RQ-arbeider" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Random" +msgstr "Tilfeldig" + +#: frappe/website/report/website_analytics/website_analytics.js:20 +msgid "Range" +msgstr "Utvalg" + +#. Label of the rate_limiting_section (Section Break) field in DocType 'Server +#. Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Rate Limiting" +msgstr "Hastighetsbegrensning" + +#. Label of the rate_limit_email_link_login (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Rate limit for email link login" +msgstr "Hastighetsgrense for pålogging med e-postlenke" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Rating" +msgstr "Rangering" + +#. Label of the raw_commands (Code) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:98 +msgid "Raw Commands" +msgstr "Rå kommandoer" + +#. Label of the raw (Code) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Raw Email" +msgstr "Rå e-post" + +#. 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 "Rå utskrift" + +#: frappe/printing/page/print/print.js:178 +msgid "Raw Printing Setting" +msgstr "Innstilling for rå utskrift" + +#: frappe/public/js/frappe/form/templates/print_layout.html:37 +msgid "Raw Printing Settings" +msgstr "Innstillinger for rå utskrift" + +#: frappe/desk/doctype/console_log/console_log.js:6 +msgid "Re-Run in Console" +msgstr "Kjør på nytt i konsollen" + +#: frappe/email/doctype/email_account/email_account.py:726 +msgid "Re:" +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:370 +msgid "Re: {0}" +msgstr "Sv: {0}" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Label of the read (Check) field in DocType 'Custom DocPerm' +#. Label of the read (Check) field in DocType 'DocPerm' +#. Label of the read (Check) field in DocType 'DocShare' +#. Label of the read (Check) field in DocType 'User Document Type' +#. Label of the read (Check) field in DocType 'Notification Log' +#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue' +#: frappe/client.py:450 frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Read" +msgstr "Lest" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the read_only (Check) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Label of the read_only (Check) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the read_only (Check) field in DocType 'Customize Form Field' +#. Label of the read_only (Check) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/public/js/form_builder/form_builder.bundle.js:83 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Read Only" +msgstr "Skrivebeskyttet" + +#. Label of the read_only_depends_on (Code) field in DocType 'Custom Field' +#. Label of the read_only_depends_on (Code) field in DocType 'Customize Form +#. Field' +#. Label of the read_only_depends_on (Code) field in DocType 'Web Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Read Only Depends On" +msgstr "Skrivebeskyttet avhenger av" + +#. 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 "Skrivebeskyttet avhengig av (JS)" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:16 +#: frappe/templates/includes/navbar/navbar_items.html:97 +msgid "Read Only Mode" +msgstr "I skrivebeskyttet modus" + +#. Label of the read_by_recipient (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Read by Recipient" +msgstr "Lest av mottakeren" + +#. Label of the read_by_recipient_on (Datetime) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Read by Recipient On" +msgstr "Lest av mottaker den" + +#: frappe/desk/doctype/note/note.js:10 +msgid "Read mode" +msgstr "Lesemodus" + +#: frappe/utils/safe_exec.py:99 +msgid "Read the documentation to know more" +msgstr "Les dokumentasjonen for å få vite mer" + +#. Label of the readme (Markdown Editor) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "Readme" +msgstr "Les meg" + +#. Label of the realtime_socketio_section (Section Break) field in DocType +#. 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Realtime (SocketIO)" +msgstr "Sanntid (SocketIO)" + +#. Label of the reason (Long Text) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Reason" +msgstr "Årsak" + +#: frappe/public/js/frappe/views/reports/query_report.js:894 +msgid "Rebuild" +msgstr "Gjenoppbygg" + +#: frappe/public/js/frappe/views/treeview.js:511 +msgid "Rebuild Tree" +msgstr "Gjenoppbygg trestruktur" + +#: frappe/utils/nestedset.py:177 +msgid "Rebuilding of tree is not supported for {}" +msgstr "Gjenoppbygging av treet støttes ikke for {}." + +#. Option for the 'Sent or Received' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Received" +msgstr "Mottatt" + +#: frappe/integrations/doctype/token_cache/token_cache.py:49 +msgid "Received an invalid token type." +msgstr "Mottok en ugyldig token-type." + +#. Label of the receiver_by_document_field (Select) field in DocType +#. 'Notification Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Receiver By Document Field" +msgstr "Mottaker fra dokumentfelt" + +#. 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 "Mottaker etter rolle" + +#. Label of the receiver_parameter (Data) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Receiver Parameter" +msgstr "Mottakerparameter" + +#: frappe/utils/password_strength.py:123 +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:541 +msgid "Recents" +msgstr "Nylige" + +#. Label of the recipients (Table) field in DocType 'Email Queue' +#. Label of the recipient (Data) field in DocType 'Email Queue Recipient' +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +msgid "Recipient" +msgstr "Mottaker" + +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "Felt for mottakerkonto" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Recipient Unsubscribed" +msgstr "Mottaker avmeldt" + +#. Label of the recipients (Small Text) field in DocType 'Auto Repeat' +#. Label of the column_break_5 (Section Break) field in DocType 'Notification' +#. Label of the recipients (Table) field in DocType 'Notification' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/email/doctype/notification/notification.json +msgid "Recipients" +msgstr "Mottakere" + +#. Name of a DocType +#: frappe/core/doctype/recorder/recorder.json +msgid "Recorder" +msgstr "Opptaker" + +#. Name of a DocType +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Recorder Query" +msgstr "Opptakerspørring" + +#. Name of a DocType +#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json +msgid "Recorder Suggested Index" +msgstr "Foreslått indeks for opptaker" + +#: frappe/core/doctype/user_permission/user_permission_help.html:2 +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:1609 +msgid "Recursive Fetch From" +msgstr "Rekursiv henting fra" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Red" +msgstr "Rød" + +#. Label of the redirect_http_status (Select) field in DocType 'Website Route +#. Redirect' +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +msgid "Redirect HTTP Status" +msgstr "Status for omdirigering av HTTP" + +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "Omdiriger til sti" + +#. Label of the redirect_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Redirect URI" +msgstr "Omdirigerings-URI" + +#. Label of the redirect_uri_bound_to_authorization_code (Data) field in +#. DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Redirect URI Bound To Auth Code" +msgstr "Omdirigerings-URI bundet til autentiseringskode" + +#. Label of the redirect_uris (Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Redirect URIs" +msgstr "Omdirigerings-URI-er" + +#. 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 "Omdirigerings-URL" + +#. Description of the 'Default App' (Select) field in DocType 'System Settings' +#. Description of the 'Default App' (Select) field in DocType 'User' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +msgid "Redirect to the selected app after login" +msgstr "Omdiriger til den valgte appen etter innlogging" + +#. 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 "Omdiriger til denne URL-en etter vellykket bekreftelse." + +#. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Redirects" +msgstr "Omdirigeringer" + +#: frappe/sessions.py:149 +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:530 +msgid "Redo" +msgstr "Gjenta" + +#: frappe/public/js/frappe/form/form.js:164 +#: frappe/public/js/frappe/form/toolbar.js:538 +msgid "Redo last action" +msgstr "Gjenta siste handling" + +#. Label of the ref_doctype (Link) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Ref DocType" +msgstr "Ref DocType" + +#: frappe/desk/doctype/form_tour/form_tour.js:38 +msgid "Referance Doctype and Dashboard Name both can't be used at the same time." +msgstr "Referanse-dokumenttypen (DocType) og navnet på oversiktspanelet kan ikke brukes samtidig." + +#. Label of the linked_with (Section Break) field in DocType 'Address' +#. Label of the contact_details (Section Break) field in DocType 'Contact' +#. Label of the reference_section (Section Break) field in DocType 'Activity +#. Log' +#. Label of the reference_section (Section Break) field in DocType +#. 'Communication' +#. Label of the reference (Dynamic Link) field in DocType 'Permission Log' +#. Label of the section_break_6 (Section Break) field in DocType 'ToDo' +#. Label of the reference_section (Section Break) field in DocType 'Integration +#. Request' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/core/doctype/user_type/user_type_dashboard.py:5 +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:42 +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/public/js/frappe/views/interaction.js:54 +msgid "Reference" +msgstr "Referanse" + +#. Label of the date_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Reference Date" +msgstr "Referansedato" + +#. Label of the datetime_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Reference Datetime" +msgstr "Referanse dato/klokkeslett" + +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "Referansedokument" + +#. Label of the reference_name (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Reference DocName" +msgstr "Referanse-DocName" + +#. 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 "Referanse-DocType" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26 +msgid "Reference DocType and Reference Name are required" +msgstr "Referanse-dokumenttype (DocType) og referansenavn er påkrevd" + +#. Label of the ref_docname (Dynamic Link) field in DocType 'Submission Queue' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Discussion +#. Topic' +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/website/doctype/discussion_topic/discussion_topic.json +msgid "Reference Docname" +msgstr "Referanse-DocName" + +#. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' +#. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' +#: frappe/core/doctype/communication/communication.js:143 +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/views/render_preview.js:34 +#: frappe/website/doctype/discussion_topic/discussion_topic.json +msgid "Reference Doctype" +msgstr "Referanse-DocType" + +#. Label of the reference_document (Dynamic Link) field in DocType 'Auto +#. Repeat' +#. Label of the reference_document (Data) field in DocType 'Access Log' +#. Label of the reference_doctype (Link) field in DocType 'Form Tour' +#. Label of the reference_document (Link) field in DocType 'Onboarding Step' +#. Label of the reference_document (Data) field in DocType 'Webhook Request +#. Log' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:4 +#: frappe/core/doctype/access_log/access_log.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Reference Document" +msgstr "Referansedokument" + +#. Label of the reference_docname (Dynamic Link) field in DocType 'Document +#. Share Key' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Integration +#. Request' +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Reference Document Name" +msgstr "Referanse-DocName" + +#. Label of the reference_doctype (Link) field in DocType 'Auto Repeat' +#. Label of the reference_doctype (Link) field in DocType 'Activity Log' +#. Label of the reference_doctype (Link) field in DocType 'Comment' +#. Label of the reference_doctype (Link) field in DocType 'Communication' +#. Label of the parent (Data) field in DocType 'Custom DocPerm' +#. Label of the ref_doctype (Data) field in DocType 'Custom Role' +#. Label of the reference_doctype (Link) field in DocType 'Document Share Key' +#. Label of the reference_doctype (Link) field in DocType 'Server Script' +#. Label of the ref_doctype (Link) field in DocType 'Success Action' +#. Label of the reference_doctype (Link) field in DocType 'View Log' +#. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' +#. Label of the reference_doctype (Link) field in DocType 'Event Participants' +#. Label of the reference_doctype (Link) field in DocType 'Kanban Board' +#. Label of the reference_doctype (Link) field in DocType 'List Filter' +#. Label of the reference_doctype (Link) field in DocType 'Email Queue' +#. Label of the reference_doctype (Link) field in DocType 'Email Unsubscribe' +#. Label of the reference_doctype (Link) field in DocType 'Integration Request' +#. Label of the reference_doctype (Link) field in DocType 'Portal Menu Item' +#. Label of the reference_doctype (Link) field in DocType 'Workflow Action' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/success_action/success_action.json +#: frappe/core/doctype/view_log/view_log.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/event_participants/event_participants.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Reference Document Type" +msgstr "Referanse-DocType" + +#. Label of the reference_name (Dynamic Link) field in DocType 'Activity Log' +#. Label of the reference_name (Dynamic Link) field in DocType 'Comment' +#. Label of the reference_name (Dynamic Link) field in DocType 'Communication' +#. Label of the docname (Data) field in DocType 'Data Import Log' +#. Label of the reference_name (Data) field in DocType 'Error Log' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event +#. Participants' +#. Label of the reference_name (Dynamic Link) field in DocType 'ToDo' +#. Label of the reference_name (Dynamic Link) field in DocType 'Email +#. Unsubscribe' +#. Label of the reference_name (Dynamic Link) field in DocType 'Workflow +#. Action' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.js:152 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/desk/doctype/event_participants/event_participants.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Reference Name" +msgstr "Referansenavn" + +#. Label of the reference_owner (Read Only) field in DocType 'Activity Log' +#. Label of the reference_owner (Data) field in DocType 'Comment' +#. Label of the reference_owner (Read Only) field in DocType 'Communication' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +msgid "Reference Owner" +msgstr "Eier av referert dokument" + +#. Label of the reference_report (Data) field in DocType 'Report' +#. Label of the reference_report (Link) field in DocType 'Onboarding Step' +#. Label of the reference_report (Data) field in DocType 'Auto Email Report' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Reference Report" +msgstr "Referanserapport" + +#. 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 "Referanse type" + +#. Label of the reference_name (Dynamic Link) field in DocType 'View Log' +#: frappe/core/doctype/view_log/view_log.json +msgid "Reference name" +msgstr "Referansenavn" + +#: frappe/templates/emails/auto_reply.html:3 +msgid "Reference: {0} {1}" +msgstr "Referanse: {0} {1}" + +#. Label of the referrer (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:37 +msgid "Referrer" +msgstr "Henviser" + +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 +#: frappe/public/js/frappe/form/form.js:1201 +#: frappe/public/js/frappe/form/templates/print_layout.html:6 +#: frappe/public/js/frappe/list/base_list.js:66 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 +#: frappe/public/js/frappe/widgets/chart_widget.js:291 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 +#: frappe/public/js/print_format_builder/Preview.vue:24 +msgid "Refresh" +msgstr "Oppdater" + +#: frappe/core/page/dashboard_view/dashboard_view.js:177 +msgid "Refresh All" +msgstr "Oppdater alle" + +#. 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 "Oppdater Google Sheet" + +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "Oppdater forhåndsvisning av utskrift" + +#. Label of the refresh_token (Password) field in DocType 'Google Calendar' +#. Label of the refresh_token (Password) field in DocType 'Google Contacts' +#. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' +#. Label of the refresh_token (Password) field in DocType 'Token Cache' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Refresh Token" +msgstr "Oppdater token" + +#: frappe/public/js/frappe/list/list_view.js:536 +msgctxt "Document count in list view" +msgid "Refreshing" +msgstr "Oppdaterer" + +#: frappe/core/doctype/system_settings/system_settings.js:57 +#: frappe/core/doctype/user/user.js:362 +#: frappe/desk/page/setup_wizard/setup_wizard.js:211 +msgid "Refreshing..." +msgstr "Oppdaterer..." + +#: frappe/core/doctype/user/user.py:1036 +msgid "Registered but disabled" +msgstr "Registrert, men deaktivert" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/translation/translation.json +msgid "Rejected" +msgstr "Avvist" + +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:30 +msgid "Relay Server URL missing" +msgstr "Mangler URL til reléserver" + +#. Label of the section_break_qgjr (Section Break) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Relay Settings" +msgstr "Reléinnstillinger" + +#. Group in Package's connections +#: frappe/core/doctype/package/package.json +msgid "Release" +msgstr "Utgivelse" + +#. Label of the release_notes (Markdown Editor) field in DocType 'Package +#. Release' +#: frappe/core/doctype/package_release/package_release.json +msgid "Release Notes" +msgstr "Utgivelseskommentarer" + +#: frappe/core/doctype/communication/communication.js:48 +#: frappe/core/doctype/communication/communication.js:159 +msgid "Relink" +msgstr "Koble på nytt" + +#: frappe/core/doctype/communication/communication.js:138 +msgid "Relink Communication" +msgstr "Koble kommunikasjon på nytt" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +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:447 +msgid "Reload" +msgstr "Last inn på nytt" + +#: frappe/public/js/frappe/form/controls/attach.js:16 +msgid "Reload File" +msgstr "Last inn fil på nytt" + +#: frappe/public/js/frappe/list/base_list.js:249 +msgid "Reload List" +msgstr "Last inn liste på nytt" + +#: frappe/public/js/frappe/views/reports/query_report.js:100 +msgid "Reload Report" +msgstr "Last inn rapporten på nytt" + +#. Label of the remember_last_selected_value (Check) field in DocType +#. 'DocField' +#. Label of the remember_last_selected_value (Check) field in DocType +#. 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Remember Last Selected Value" +msgstr "Husk sist valgte verdi" + +#. Label of the remind_at (Datetime) field in DocType 'Reminder' +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/public/js/frappe/form/reminders.js:33 +msgid "Remind At" +msgstr "Påminn på" + +#: frappe/public/js/frappe/form/toolbar.js:479 +msgid "Remind Me" +msgstr "Påminn meg" + +#: frappe/public/js/frappe/form/reminders.js:13 +msgid "Remind Me In" +msgstr "Påminn meg om" + +#. Name of a DocType +#: frappe/automation/doctype/reminder/reminder.json +msgid "Reminder" +msgstr "Påminnelse" + +#: frappe/automation/doctype/reminder/reminder.py:39 +msgid "Reminder cannot be created in past." +msgstr "Påminnelse kan ikke opprettes tilbake i tid." + +#: frappe/public/js/frappe/form/reminders.js:96 +msgid "Reminder set at {0}" +msgstr "Påminnelse angitt på {0}" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:14 +#: frappe/public/js/frappe/ui/filters/edit_filter.html:4 +#: frappe/public/js/frappe/ui/group_by/group_by.html:4 +msgid "Remove" +msgstr "Fjern" + +#: frappe/core/doctype/rq_job/rq_job_list.js:8 +msgid "Remove Failed Jobs" +msgstr "Fjern mislykkede jobber" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:493 +msgid "Remove Field" +msgstr "Fjern felt" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:427 +msgid "Remove Section" +msgstr "Fjern seksjon" + +#: frappe/custom/doctype/customize_form/customize_form.js:138 +msgid "Remove all customizations?" +msgstr "Fjerne alle egentilpasninger?" + +#: frappe/public/js/form_builder/components/Section.vue:286 +msgid "Remove all fields in the column" +msgstr "Fjern alle felter i kolonnen" + +#: frappe/public/js/form_builder/components/Section.vue:278 +#: frappe/public/js/frappe/utils/datatable.js:9 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:120 +msgid "Remove column" +msgstr "Fjern kolonne" + +#: frappe/public/js/form_builder/components/Field.vue:260 +msgid "Remove field" +msgstr "Fjern felt" + +#: frappe/public/js/form_builder/components/Section.vue:279 +msgid "Remove last column" +msgstr "Fjern siste kolonne" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:130 +msgid "Remove page break" +msgstr "Fjern sideskift" + +#: frappe/public/js/form_builder/components/Section.vue:266 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:135 +msgid "Remove section" +msgstr "Fjernet seksjon" + +#: frappe/public/js/form_builder/components/Tabs.vue:140 +msgid "Remove tab" +msgstr "Fjern fane" + +#. Option for the 'Status' (Select) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Removed" +msgstr "Fjernet" + +#: frappe/custom/doctype/custom_field/custom_field.js:137 +#: frappe/public/js/frappe/form/toolbar.js:254 +#: frappe/public/js/frappe/form/toolbar.js:258 +#: frappe/public/js/frappe/form/toolbar.js:435 +#: frappe/public/js/frappe/model/model.js:723 +#: frappe/public/js/frappe/views/treeview.js:311 +msgid "Rename" +msgstr "Endre navn" + +#: frappe/custom/doctype/custom_field/custom_field.js:116 +#: frappe/custom/doctype/custom_field/custom_field.js:136 +msgid "Rename Fieldname" +msgstr "Endre feltnavn" + +#: frappe/public/js/frappe/model/model.js:710 +msgid "Rename {0}" +msgstr "Endre navn på {0}" + +#: frappe/core/doctype/doctype/doctype.py:699 +msgid "Renamed files and replaced code in controllers, please check!" +msgstr "Endrede navn på filer og erstattet kode i kontrollere, vennligst sjekk!" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:17 +msgid "Render labels to the left and values to the right in this section" +msgstr "Gjengi etiketter til venstre og verdier til høyre i denne delen" + +#: frappe/core/doctype/communication/communication.js:43 +#: frappe/desk/doctype/todo/todo.js:36 +msgid "Reopen" +msgstr "Gjenåpne" + +#: frappe/public/js/frappe/form/toolbar.js:547 +msgid "Repeat" +msgstr "Gjenta" + +#. 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 "Gjenta topptekst og bunntekst" + +#. Label of the repeat_on (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat On" +msgstr "Repetering påslått" + +#. Label of the repeat_till (Date) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat Till" +msgstr "Gjenta til" + +#. 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 "Gjenta på dag" + +#. 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 "Gjenta på dagene" + +#. 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 "Gjenta den siste dagen i måneden" + +#. Label of the repeat_this_event (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat this Event" +msgstr "Gjenta denne hendelsen" + +#: frappe/utils/password_strength.py:110 +msgid "Repeats like \"aaa\" are easy to guess" +msgstr "Gjentakelser som «aaa» er lette å gjette" + +#: frappe/utils/password_strength.py:105 +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:151 +msgid "Repeats {0}" +msgstr "Gjentar {0}" + +#: frappe/core/doctype/role_replication/role_replication.js:7 +#: frappe/core/doctype/role_replication/role_replication.js:14 +msgid "Replicate" +msgstr "Repliker" + +#: frappe/core/doctype/role_replication/role_replication.js:8 +msgid "Replicating..." +msgstr "Replikerer..." + +#: frappe/core/doctype/role_replication/role_replication.js:13 +msgid "Replication completed." +msgstr "Replikasjon fullført." + +#. Option for the 'Status' (Select) field in DocType 'Contact' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.json +msgid "Replied" +msgstr "Svarte" + +#. Label of the reply (Text Editor) field in DocType 'Discussion Reply' +#: frappe/core/doctype/communication/communication.js:57 +#: frappe/public/js/frappe/form/footer/form_timeline.js:563 +#: frappe/website/doctype/discussion_reply/discussion_reply.json +msgid "Reply" +msgstr "Svar" + +#: frappe/core/doctype/communication/communication.js:62 +msgid "Reply All" +msgstr "Svar alle" + +#. Label of the report (Check) field in DocType 'Custom DocPerm' +#. Label of the report (Link) field in DocType 'Custom Role' +#. Label of the report (Check) field in DocType 'DocPerm' +#. Name of a DocType +#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for +#. Page and Report' +#. Label of the report (Link) field in DocType 'Role Permission for Page and +#. Report' +#. Label of a Link in the Build Workspace +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'Type' (Select) field in DocType 'Number Card' +#. Label of the background_jobs_tab (Tab Break) field in DocType 'System Health +#. Report' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:8 +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:104 +#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/request.js:616 +#: frappe/public/js/frappe/utils/utils.js:923 +msgid "Report" +msgstr "Rapport" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/list/list_view_select.js:66 +msgid "Report Builder" +msgstr "Rapportbygger" + +#. Name of a DocType +#: frappe/core/doctype/report_column/report_column.json +msgid "Report Column" +msgstr "Rapportkolonne" + +#. Label of the report_description (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Report Description" +msgstr "Rapportbeskrivelse" + +#: frappe/core/doctype/report/report.py:151 +msgid "Report Document Error" +msgstr "Rapporter dokumentfeil" + +#. Name of a DocType +#: frappe/core/doctype/report_filter/report_filter.json +msgid "Report Filter" +msgstr "Rapportfilter" + +#. Label of the report_filters (Section Break) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Report Filters" +msgstr "Rapportfiltere" + +#. Label of the report_hide (Check) field in DocType 'DocField' +#. Label of the report_hide (Check) field in DocType 'Custom Field' +#. Label of the report_hide (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Report Hide" +msgstr "Skjul i rapporter" + +#. 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 "Rapportinformasjon" + +#. Name of a role +#: frappe/core/doctype/report/report.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Report Manager" +msgstr "Rapportansvarlig" + +#. Label of the report_name (Data) field in DocType 'Access Log' +#. Label of the report_name (Data) field in DocType 'Prepared Report' +#. Label of the report_name (Data) field in DocType 'Report' +#. Label of the report_name (Link) field in DocType 'Dashboard Chart' +#. Label of the report_name (Link) field in DocType 'Number Card' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/views/reports/query_report.js:1973 +msgid "Report Name" +msgstr "Rapportnavn" + +#: frappe/desk/doctype/number_card/number_card.py:70 +msgid "Report Name, Report Field and Fucntion are required to create a number card" +msgstr "Rapportnavn, rapportfelt og -fusjon er påkrevd for å opprette et nummerkort" + +#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Link' +#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Report Ref DocType" +msgstr "Rapport-Ref DocType" + +#. Label of the report_reference_doctype (Data) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Report Reference Doctype" +msgstr "Rapportreferanse-dokumenttype (DocType)" + +#. Label of the report_type (Select) field in DocType 'Report' +#. Label of the report_type (Data) field in DocType 'Onboarding Step' +#. Label of the report_type (Read Only) field in DocType 'Auto Email Report' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Report Type" +msgstr "Rapporttype" + +#: frappe/public/js/frappe/list/base_list.js:203 +msgid "Report View" +msgstr "Rapportvisning" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:26 +msgid "Report bug" +msgstr "Rapporter feil" + +#: frappe/core/doctype/doctype/doctype.py:1823 +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" +msgstr "Rapporten inneholder ingen data. Vennligst endre filtrene eller rapportnavnet." + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 +#: frappe/desk/doctype/number_card/number_card.js:189 +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:1021 +msgid "Report initiated, click to view status" +msgstr "Rapport påbegynt, klikk for å se status" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 +msgid "Report limit reached" +msgstr "Rapportgrensen er nådd" + +#: frappe/core/doctype/prepared_report/prepared_report.py:223 +msgid "Report timed out." +msgstr "Rapporten ble tidsavbrutt." + +#: frappe/desk/query_report.py:651 +msgid "Report updated successfully" +msgstr "Arbeidsflyten ble vellykket oppdatert" + +#: frappe/public/js/frappe/views/reports/report_view.js:1359 +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:2011 +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:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 +msgid "Report {0}" +msgstr "Rapport {0}" + +#: frappe/desk/reportview.py:365 +msgid "Report {0} deleted" +msgstr "Rapport {0} er slettet" + +#: frappe/desk/query_report.py:54 +msgid "Report {0} is disabled" +msgstr "Rapport {0} er deaktivert" + +#: frappe/desk/reportview.py:342 +msgid "Report {0} saved" +msgstr "Rapport {0} er lagret" + +#: frappe/public/js/frappe/views/reports/report_view.js:20 +msgid "Report:" +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:556 +msgid "Reports" +msgstr "Rapporter" + +#: frappe/patches/v14_0/update_workspace2.py:50 +msgid "Reports & Masters" +msgstr "Rapporter og stamdata" + +#: frappe/public/js/frappe/views/reports/query_report.js:937 +msgid "Reports already in Queue" +msgstr "Det ligger allerede rapporter i køen" + +#. Description of a DocType +#: frappe/core/doctype/user/user.json +msgid "Represents a User in the system." +msgstr "Representerer en bruker i systemet" + +#. Description of a DocType +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Represents the states allowed in one document and role assigned to change the state." +msgstr "Representerer tilstandene som er tillatt i et dokument, og rollen som er tilordnet for å endre tilstanden." + +#: frappe/integrations/doctype/webhook/webhook.js:101 +msgid "Request Body" +msgstr "Request Body" + +#. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json +msgid "Request Data" +msgstr "Forespørselsdata" + +#. Label of the request_description (Data) field in DocType 'Integration +#. Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Request Description" +msgstr "Beskrivelse av forespørsel" + +#. 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 "Overskrifter i forespørsel" + +#. Label of the request_id (Data) field in DocType 'Integration Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Request ID" +msgstr "Forespørsels-ID" + +#. Label of the rate_limit_count (Int) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Request Limit" +msgstr "Grense for antall forespørsler" + +#. Label of the request_method (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request Method" +msgstr "Forespørselsmetode" + +#. Label of the request_structure (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request Structure" +msgstr "Forespørselsstruktur" + +#: frappe/public/js/frappe/request.js:231 +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 +msgid "Request Timeout" +msgstr "Tidsavbrudd for forespørsel" + +#. Label of the request_url (Small Text) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request URL" +msgstr "Forespørsels-URL" + +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + +#. Label of the requested_numbers (Code) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "Requested Numbers" +msgstr "Forespurte nummere" + +#. Label of the require_trusted_certificate (Select) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Require Trusted Certificate" +msgstr "Krever et sikkert sertifikat" + +#. 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 "Krever en gyldig fdn-sti. f.eks. ou=groups,dc=example,dc=com" + +#. Description of the 'LDAP search path for Users' (Data) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Requires any valid fdn path. i.e. ou=users,dc=example,dc=com" +msgstr "Krever en gyldig fdn-sti. f.eks. ou=brukere,dc=eksempel,dc=com" + +#: frappe/core/doctype/communication/communication.js:279 +msgid "Res: {0}" +msgstr "Respons: {0}" + +#: frappe/desk/doctype/form_tour/form_tour.js:101 +#: frappe/desk/doctype/global_search_settings/global_search_settings.js:19 +#: frappe/desk/doctype/module_onboarding/module_onboarding.js:17 +#: frappe/website/doctype/portal_settings/portal_settings.js:19 +msgid "Reset" +msgstr "Nullstill" + +#: frappe/custom/doctype/customize_form/customize_form.js:136 +msgid "Reset All Customizations" +msgstr "Tilbakestill alle egendefinisjoner" + +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:21 +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:37 +msgid "Reset Changes" +msgstr "Tilbakestill endringer" + +#: frappe/public/js/frappe/widgets/chart_widget.js:306 +msgid "Reset Chart" +msgstr "Tilbakestill diagram" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:39 +msgid "Reset Dashboard Customizations" +msgstr "Tilbakestill tilpasninger av oversiktspanelet" + +#: frappe/public/js/frappe/list/list_settings.js:228 +msgid "Reset Fields" +msgstr "Tilbakestill felt" + +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 +msgid "Reset LDAP Password" +msgstr "Tilbakestill LDAP-passord" + +#: frappe/custom/doctype/customize_form/customize_form.js:128 +msgid "Reset Layout" +msgstr "Tilbakestill oppsett" + +#: frappe/core/doctype/user/user.js:223 +msgid "Reset OTP Secret" +msgstr "Tilbakestill OTP-hemmelighet" + +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 +#: frappe/www/me.html:48 frappe/www/update-password.html:3 +#: frappe/www/update-password.html:32 +msgid "Reset Password" +msgstr "Tilbakestill passordet" + +#. Label of the reset_password_key (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Reset Password Key" +msgstr "Tilbakestill passordnøkkel" + +#. 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 "Utløpstid for lenke til tilbakestilling av passord" + +#. 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 "Mal for tilbakestilling av passord" + +#: frappe/core/page/permission_manager/permission_manager.js:116 +msgid "Reset Permissions for {0}?" +msgstr "Tilbakestille tillatelser for {0}?" + +#: frappe/public/js/form_builder/components/Field.vue:114 +msgid "Reset To Default" +msgstr "Tilbakestill til standard" + +#: frappe/public/js/frappe/utils/datatable.js:8 +msgid "Reset sorting" +msgstr "Tilbakestill sortering" + +#: frappe/public/js/frappe/form/grid_row.js:434 +msgid "Reset to default" +msgstr "Tilbakestill til standardinnstilling" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19 +msgid "Reset to defaults" +msgstr "Tilbakestill til standardinnstillinger" + +#: frappe/templates/emails/password_reset.html:3 +msgid "Reset your password" +msgstr "Tilbakestill passordet ditt" + +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "Ressurs" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "Ressursdokumentasjon" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "Ressursnavn" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "URI for ressursens retningslinjer" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "URI for ressursens bruksvilkår" + +#. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' +#. Label of the response_section (Section Break) field in DocType 'Integration +#. Request' +#. Label of the response (Code) field in DocType 'Webhook Request Log' +#: frappe/email/doctype/email_template/email_template.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Response" +msgstr "Respons" + +#. Label of the response_type (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Response Type" +msgstr "Responstype" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:414 +msgid "Rest of the day" +msgstr "Resten av dagen" + +#: frappe/core/doctype/deleted_document/deleted_document.js:11 +#: frappe/core/doctype/deleted_document/deleted_document_list.js:48 +msgid "Restore" +msgstr "Gjenopprett" + +#: frappe/core/page/permission_manager/permission_manager.js:509 +msgid "Restore Original Permissions" +msgstr "Gjenopprett opprinnelige tillatelser" + +#: frappe/website/doctype/portal_settings/portal_settings.js:20 +msgid "Restore to default settings?" +msgstr "Gjenopprette til standardinnstillinger?" + +#. Label of the restored (Check) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Restored" +msgstr "Gjenopprettet" + +#: frappe/core/doctype/deleted_document/deleted_document.py:74 +msgid "Restoring Deleted Document" +msgstr "Gjenoppretter slettet dokument" + +#. Label of the restrict_ip (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Restrict IP" +msgstr "Begrens IP-adresse" + +#. Label of the restrict_to_domain (Link) field in DocType 'DocType' +#. Label of the restrict_to_domain (Link) field in DocType 'Module Def' +#. Label of the restrict_to_domain (Link) field in DocType 'Page' +#. Label of the restrict_to_domain (Link) field in DocType 'Role' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/page/page.json frappe/core/doctype/role/role.json +msgid "Restrict To Domain" +msgstr "Begrens til domene" + +#. 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 "Begrens til domene" + +#. 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 "Begrens brukeren kun fra denne IP-adressen. Flere IP-adresser kan legges til ved å skille dem med komma. Godtar også delvise IP-adresser som (111.111.111)" + +#: frappe/public/js/frappe/list/list_view.js:199 +msgctxt "Title of message showing restrictions in list view" +msgid "Restrictions" +msgstr "Restriksjoner" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:382 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:397 +msgid "Result" +msgstr "Resultat" + +#: frappe/email/doctype/email_queue/email_queue_list.js:27 +msgid "Resume Sending" +msgstr "Gjenoppta sending" + +#. Label of the retry (Int) field in DocType 'Email Queue' +#: frappe/core/doctype/data_import/data_import.js:110 +#: frappe/desk/page/setup_wizard/setup_wizard.js:297 +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Retry" +msgstr "Prøv på nytt" + +#: frappe/email/doctype/email_queue/email_queue_list.js:47 +msgid "Retry Sending" +msgstr "Prøv å sende på nytt" + +#: frappe/www/qrcode.html:15 +msgid "Return to the Verification screen and enter the code displayed by your authentication app" +msgstr "Gå tilbake til bekreftelsesskjermen og skriv inn koden som vises av autentiseringsappen din." + +#. Label of the reverse (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Reverse Icon Color" +msgstr "Omvendt ikonfarge" + +#: frappe/database/schema.py:165 +msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." +msgstr "Tilbakestiller lengden til {0} for '{1}' i '{2}'. Hvis lengden settes til {3} , vil dataene bli avkortet." + +#. Label of the revocation_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Revocation URI" +msgstr "Tilbakekallings-URI" + +#: frappe/www/third_party_apps.html:47 +msgid "Revoke" +msgstr "Tilbakekalle" + +#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token' +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "Revoked" +msgstr "Tilbakekalt" + +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json +msgid "Rich Text" +msgstr "Rik tekst" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Align' (Select) field in DocType 'Letter Head' +#. Option for the 'Text Align' (Select) field in DocType 'Web Page' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Right" +msgstr "Høyre" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:484 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:156 +msgctxt "alignment" +msgid "Right" +msgstr "Høyre" + +#. 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 "Høyre nederst" + +#. 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 "Høyre senter" + +#. Label of the robots_txt (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Robots.txt" +msgstr "Robots.txt" + +#. Label of the role (Link) field in DocType 'Custom DocPerm' +#. Label of the roles (Table) field in DocType 'Custom Role' +#. Label of the role (Link) field in DocType 'DocPerm' +#. Label of the role (Link) field in DocType 'Has Role' +#. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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' +#. Label of the role (Link) field in DocType 'Portal Menu Item' +#. Label of the role (Link) field in DocType 'Workflow Action Permitted Role' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/has_role/has_role.json +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type/user_type.py:110 +#: frappe/core/page/permission_manager/permission_manager.js:219 +#: frappe/core/page/permission_manager/permission_manager.js:456 +#: frappe/core/workspace/users/users.json +#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json +msgid "Role" +msgstr "Rolle" + +#: frappe/core/doctype/role/role.js:8 +msgid "Role 'All' will be given to all system + website users." +msgstr "Rollen «Alle» vil bli gitt til alle system- og nettstedbrukere." + +#: frappe/core/doctype/role/role.js:13 +msgid "Role 'Desk User' will be given to all system users." +msgstr "Rollen ‘Desk User’ gis til alle systembrukere." + +#. Label of the role_name (Data) field in DocType 'Role' +#. Label of the role_profile (Data) field in DocType 'Role Profile' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/role_profile/role_profile.json +msgid "Role Name" +msgstr "Rollenavn" + +#. Name of a DocType +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/workspace/users/users.json +msgid "Role Permission for Page and Report" +msgstr "Rolletillatelse for side og rapport" + +#. Label of the permissions_section (Section Break) field in DocType 'User +#. Document Type' +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/public/js/frappe/roles_editor.js:114 +msgid "Role Permissions" +msgstr "Rolletillatelser" + +#. Label of a Link in the Users Workspace +#: frappe/core/page/permission_manager/permission_manager.js:4 +#: frappe/core/workspace/users/users.json +msgid "Role Permissions Manager" +msgstr "Ansvarlig for rolletillatelser" + +#: frappe/public/js/frappe/list/list_view.js:1935 +msgctxt "Button in list view menu" +msgid "Role Permissions Manager" +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" + +#. Label of the role_profiles (Table MultiSelect) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Role Profiles" +msgstr "Rolleprofiler" + +#. Name of a DocType +#: frappe/core/doctype/role_replication/role_replication.json +msgid "Role Replication" +msgstr "Replikering av roller" + +#. Label of the role_and_level (Section Break) field in DocType 'Custom +#. DocPerm' +#. Label of the role_and_level (Section Break) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +msgid "Role and Level" +msgstr "Rolle og nivå" + +#: frappe/core/doctype/user/user.py:365 +msgid "Role has been set as per the user type {0}" +msgstr "Rollen er angitt i henhold til brukertypen {0}" + +#. Label of the roles (Table) field in DocType 'Page' +#. Label of the roles (Table) field in DocType 'Report' +#. Label of the roles (Table) field in DocType 'Role Permission for Page and +#. Report' +#. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' +#. Label of the roles_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Label of the roles (Table) field in DocType 'Custom HTML Block' +#. Label of the roles (Table) field in DocType 'Dashboard Chart' +#. Label of the roles (Table) field in DocType 'Workspace' +#. Label of the roles_tab (Tab Break) field in DocType 'Workspace' +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/core/page/permission_manager/permission_manager.js:66 +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/workspace/workspace.json +msgid "Roles" +msgstr "Roller" + +#. Label of the roles_permissions_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Roles & Permissions" +msgstr "Roller og tillatelser" + +#. 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 "Tildelte roller" + +#. 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" + +#. 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" + +#: frappe/core/page/permission_manager/permission_manager_help.html:7 +msgid "Roles can be set for users from their User page." +msgstr "Roller kan angis for brukere fra brukersiden deres." + +#: frappe/utils/nestedset.py:293 +msgid "Root {0} cannot be deleted" +msgstr "Root {0} kan ikke slettes" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Round Robin" +msgstr "Rullerende tildeling" + +#. Label of the rounding_method (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Rounding Method" +msgstr "Avrundingsmetode" + +#. Label of the route (Data) field in DocType 'DocType' +#. Option for the 'Action Type' (Select) field in DocType 'DocType Action' +#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' +#. Label of the route (Data) field in DocType 'Navbar Item' +#. Label of the route (Data) field in DocType 'DocType Layout' +#. Label of the route (Data) field in DocType 'Route History' +#. Label of the route (Data) field in DocType 'Help Article' +#. Label of the route (Data) field in DocType 'Help Category' +#. Label of the route (Data) field in DocType 'Portal Menu Item' +#. Label of the route (Data) field in DocType 'Web Form' +#. Label of the route (Data) field in DocType 'Web Page' +#. Label of the route (Data) field in DocType 'Website Sidebar Item' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/route_history/route_history.json +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Route" +msgstr "Rute" + +#. Name of a DocType +#: frappe/desk/doctype/route_history/route_history.json +msgid "Route History" +msgstr "Navigasjonshistorikk" + +#. Label of the route_redirects (Table) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Route Redirects" +msgstr "Omdirigeringer av stier" + +#. Description of the 'Home Page' (Data) field in DocType 'Role' +#: frappe/core/doctype/role/role.json +msgid "Route: Example \"/app\"" +msgstr "Sti: for eksempel \"/app\"" + +#: frappe/model/base_document.py:909 frappe/model/document.py:779 +msgid "Row" +msgstr "Rad" + +#: frappe/core/doctype/version/version_view.html:74 +msgid "Row #" +msgstr "Rad #" + +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 +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/model/base_document.py:1039 +msgid "Row #{0}:" +msgstr "Rad #{0}:" + +#: frappe/core/doctype/doctype/doctype.py:492 +msgid "Row #{}: Fieldname is required" +msgstr "Rad #{}: Feltnavn er påkrevd" + +#. Label of the row_format (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Row Format" +msgstr "Radformat" + +#. 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 "Radindekser" + +#. Label of the row_name (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Row Name" +msgstr "Radnavn" + +#: frappe/core/doctype/data_import/data_import.js:483 +msgid "Row Number" +msgstr "Radnummer" + +#: frappe/core/doctype/version/version_view.html:69 +msgid "Row Values Changed" +msgstr "Radverdier endret" + +#: frappe/core/doctype/data_import/data_import.js:367 +msgid "Row {0}" +msgstr "Rad {0}" + +#: frappe/custom/doctype/customize_form/customize_form.py:357 +msgid "Row {0}: Not allowed to disable Mandatory for standard fields" +msgstr "Rad {0}: Å deaktivere \"Obligatorisk\" er sperret for standardfelt" + +#: frappe/custom/doctype/customize_form/customize_form.py:346 +msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" +msgstr "Rad {0}: Å aktivere \"Tillat ved registrering\" er sperret for standardfelt" + +#. 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 +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 +msgid "Rows Removed" +msgstr "Rader fjernet" + +#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Rows Threshold for Grid Search" +msgstr "Radterskel for rutenettsøk" + +#. Label of the rule (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Rule" +msgstr "Regel" + +#. 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 "Regelbetingelser" + +#: frappe/permissions.py:675 +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’." + +#. Group in DocType's connections +#: frappe/core/doctype/doctype/doctype.json +msgid "Rules" +msgstr "Regler" + +#. 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 "Regler som definerer overgang av tilstand i arbeidsflyten." + +#. 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 "Regler for hvordan dokumenter skifter status, f.eks. neste status og hvilke roller som kan utføre endringen." + +#. 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 "Regler med høyere prioritetsnummer vil bli brukt først." + +#. 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 "Kjør bare jobber daglig hvis inaktiv i (dager)" + +#. 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 "Kjør planlagte jobber kun hvis avmerket" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 +msgid "Runtime in Minutes" +msgstr "Kjøretid i minutter" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 +msgid "Runtime in Seconds" +msgstr "Kjøretid i sekunder" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Two Factor Authentication method' (Select) field in DocType +#. 'System Settings' +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/email/doctype/notification/notification.json +msgid "SMS" +msgstr "SMS" + +#. Label of the sms_gateway_url (Small Text) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "SMS Gateway URL" +msgstr "URL til SMS-gateway" + +#. Name of a DocType +#: frappe/core/doctype/sms_log/sms_log.json +msgid "SMS Log" +msgstr "SMS-logg" + +#. Name of a DocType +#: frappe/core/doctype/sms_parameter/sms_parameter.json +msgid "SMS Parameter" +msgstr "SMS-parameter" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/core/doctype/sms_settings/sms_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "SMS Settings" +msgstr "SMS-innstillinger" + +#: frappe/core/doctype/sms_settings/sms_settings.py:114 +msgid "SMS sent successfully" +msgstr "SMS vellykket sendt" + +#: frappe/templates/includes/login/login.js:369 +msgid "SMS was not sent. Please contact Administrator." +msgstr "SMS-en ble ikke sendt. Ta kontakt med administratoren." + +#: frappe/email/doctype/email_account/email_account.py:212 +msgid "SMTP Server is required" +msgstr "SMTP-server er påkrevd" + +#. Option for the 'Type' (Select) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "SQL" +msgstr "SQL" + +#. Description of the 'Condition' (Small Text) field in DocType 'Bulk Update' +#: frappe/desk/doctype/bulk_update/bulk_update.json +msgid "SQL Conditions. Example: status=\"Open\"" +msgstr "SQL-betingelser. Eksempel: status=\"Åpen\"" + +#. Label of the sql_explain_html (HTML) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder/recorder.js:85 +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "SQL Explain" +msgstr "Spørringsplan (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-utdata" + +#. Label of the sql_queries (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "SQL Queries" +msgstr "SQL-spørringer" + +#. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "SSL/TLS Mode" +msgstr "SSL/TLS-modus" + +#: frappe/public/js/frappe/color_picker/color_picker.js:20 +msgid "SWATCHES" +msgstr "SWATCHES" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Sales Manager" +msgstr "Salgsleder" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Sales Master Manager" +msgstr "Administrator for salgsstamdata" + +#. Name of a role +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Sales User" +msgstr "Salgsmedarbeider" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Salesforce" +msgstr "Salesforce" + +#. Label of the salutation (Link) field in DocType 'Contact' +#. Name of a DocType +#. Label of the salutation (Data) field in DocType 'Salutation' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/salutation/salutation.json +msgid "Salutation" +msgstr "Hilsen" + +#: frappe/integrations/doctype/webhook/webhook.py:113 +msgid "Same Field is entered more than once" +msgstr "Samme felt er skrevet inn mer enn én gang" + +#. Label of the sample (HTML) field in DocType 'Client Script' +#: frappe/custom/doctype/client_script/client_script.json +msgid "Sample" +msgstr "Prøve" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the saturday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Saturday" +msgstr "Lørdag" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/data_import/data_import.js:113 +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/page/print/print.js:898 +#: 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/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 +#: frappe/public/js/frappe/utils/common.js:443 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 +#: frappe/public/js/frappe/views/workspace/workspace.js:335 +#: frappe/public/js/frappe/widgets/base_widget.js:142 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:120 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:15 +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:33 +msgid "Save" +msgstr "Lagre" + +#: frappe/workflow/doctype/workflow/workflow.js:143 +msgid "Save Anyway" +msgstr "Lagre uansett" + +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 +msgid "Save As" +msgstr "Lagre som" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:63 +msgid "Save Customizations" +msgstr "Lagre tilpasninger" + +#: frappe/public/js/frappe/views/reports/query_report.js:1968 +msgid "Save Report" +msgstr "Lagre rapport" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 +msgid "Save filters" +msgstr "Lagre filtre" + +#. 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 "Lagre ved ferdigstillelse" + +#: frappe/public/js/frappe/form/form_tour.js:295 +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:286 +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 +#: frappe/public/js/frappe/views/workspace/workspace.js:684 +msgid "Saved" +msgstr "Lagret" + +#: frappe/public/js/frappe/list/list_sidebar.html:88 +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:348 +msgid "Saving" +msgstr "Lagrer" + +#: frappe/public/js/frappe/form/save.js:9 +msgctxt "Freeze message while saving a document" +msgid "Saving" +msgstr "Lagrer" + +#: frappe/custom/doctype/customize_form/customize_form.js:411 +msgid "Saving Customization..." +msgstr "Lagrer egendefinering..." + +#: frappe/desk/doctype/module_onboarding/module_onboarding.js:8 +msgid "Saving this will export this document as well as the steps linked here as json." +msgstr "Hvis du lagrer dette, eksporteres dette dokumentet samt trinnene som er lenket her, som JSON." + +#: frappe/public/js/form_builder/store.js:233 +#: frappe/public/js/print_format_builder/store.js:36 +#: frappe/public/js/workflow_builder/store.js:73 +msgid "Saving..." +msgstr "Lagrer..." + +#: frappe/public/js/frappe/scanner/index.js:72 +msgid "Scan QRCode" +msgstr "Skann QRCode" + +#: frappe/www/qrcode.html:14 +msgid "Scan the QR Code and enter the resulting code displayed." +msgstr "Skann QR-koden, og skriv inn koden som vises." + +#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Schedule" +msgstr "Tidsplan" + +#: frappe/public/js/frappe/views/communication.js:97 +msgid "Schedule Send At" +msgstr "Planlegg Send på" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +msgid "Scheduled" +msgstr "Planlagt" + +#. Label of the scheduled_against (Link) field in DocType 'Scheduler Event' +#: frappe/core/doctype/scheduler_event/scheduler_event.json +msgid "Scheduled Against" +msgstr "Planlagt i forhold til" + +#. 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 "Planlagt jobb" + +#. Name of a DocType +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +msgid "Scheduled Job Log" +msgstr "Logg for planlagte jobber" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#. Label of the scheduled_job_type (Link) field in DocType 'System Health +#. Report Failing Jobs' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json +msgid "Scheduled Job Type" +msgstr "Planlagt jobbtype" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Scheduled Jobs Logs" +msgstr "Logger for planlagte jobber" + +#: frappe/core/doctype/server_script/server_script.py:150 +msgid "Scheduled execution for script {0} has updated" +msgstr "Planlagt utførelse for skript {0} er blitt oppdatert" + +#: frappe/email/doctype/auto_email_report/auto_email_report.js:26 +msgid "Scheduled to send" +msgstr "Planlagt å sende" + +#. Label of the scheduler_section (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Scheduler" +msgstr "Planlegger" + +#. Label of the scheduler_event (Link) field in DocType 'Scheduled Job Type' +#. Name of a DocType +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/scheduler_event/scheduler_event.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Scheduler Event" +msgstr "Planlagt hendelse" + +#: frappe/core/doctype/data_import/data_import.py:107 +msgid "Scheduler Inactive" +msgstr "Planleggeren er inaktiv" + +#. Label of the scheduler_status (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Scheduler Status" +msgstr "Planleggerstatus" + +#: frappe/utils/scheduler.py:247 +msgid "Scheduler can not be re-enabled when maintenance mode is active." +msgstr "Planleggeren kan ikke aktiveres på nytt når vedlikeholdsmodus er aktiv." + +#: frappe/core/doctype/data_import/data_import.py:107 +msgid "Scheduler is inactive. Cannot import data." +msgstr "Planleggeren er inaktiv. Kan ikke importere data." + +#: frappe/core/doctype/rq_job/rq_job_list.js:19 +msgid "Scheduler: Active" +msgstr "Planlegger: Aktiv" + +#: frappe/core/doctype/rq_job/rq_job_list.js:21 +msgid "Scheduler: Inactive" +msgstr "Planlegger: Inaktiv" + +#. Label of the scope (Data) field in DocType 'OAuth Scope' +#: frappe/integrations/doctype/oauth_scope/oauth_scope.json +msgid "Scope" +msgstr "Omfang" + +#. Label of the sb_scope_section (Section Break) field in DocType 'Connected +#. App' +#. Label of the scopes (Table) field in DocType 'Connected App' +#. Label of the scopes (Text) field in DocType 'OAuth Authorization Code' +#. Label of the scopes (Text) field in DocType 'OAuth Bearer Token' +#. Label of the scopes (Text) field in DocType 'OAuth Client' +#. Label of the scopes (Table) field in DocType 'Token Cache' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Scopes" +msgstr "Omfang" + +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "Omfang som støttes" + +#. Label of the report_script (Code) field in DocType 'Report' +#. Label of the script (Code) field in DocType 'Server Script' +#. Label of the script (Code) field in DocType 'Client Script' +#. Label of the script (Code) field in DocType 'Console Log' +#. Label of the custom_javascript (Section Break) field in DocType 'Web Page' +#. Label of the custom_js_section (Tab Break) field in DocType 'Website Theme' +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/desk/doctype/console_log/console_log.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Script" +msgstr "Skript" + +#. Name of a role +#: frappe/core/doctype/server_script/server_script.json +msgid "Script Manager" +msgstr "Skriptbehandler" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Script Report" +msgstr "Skriptrapport" + +#. Label of the script_type (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Script Type" +msgstr "Skripttype" + +#. Description of a DocType +#: frappe/website/doctype/website_script/website_script.json +msgid "Script to attach to all web pages." +msgstr "Skript som skal legges ved alle websider." + +#. Label of a Card Break in the Build Workspace +#. Label of the scripting_tab (Tab Break) field in DocType 'Web Page' +#: frappe/core/workspace/build/build.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Scripting" +msgstr "Skripting" + +#. 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 "Skripting / stil" + +#. Label of the scripts_section (Section Break) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Scripts" +msgstr "Skript" + +#. Label of the search_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/public/js/frappe/form/link_selector.js:46 +#: frappe/public/js/frappe/list/list_sidebar.html:69 +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20 +#: frappe/public/js/frappe/ui/toolbar/search.js:49 +#: frappe/public/js/frappe/ui/toolbar/search.js:68 +#: frappe/templates/discussions/search.html:2 +#: frappe/templates/includes/search_template.html:26 +msgid "Search" +msgstr "Søk" + +#. Label of the search_bar (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Search Bar" +msgstr "Søkefelt" + +#. 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 "Søkefelt" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:186 +msgid "Search Help" +msgstr "Søkehjelp" + +#. Label of the allowed_in_global_search (Table) field in DocType 'Global +#. Search Settings' +#: frappe/desk/doctype/global_search_settings/global_search_settings.json +msgid "Search Priorities" +msgstr "Søkeprioriteringer" + +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:132 +msgid "Search Results" +msgstr "Søkeresultater" + +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:13 +msgid "Search by filename or extension" +msgstr "Søk med filnavn eller filtype" + +#: frappe/core/doctype/doctype/doctype.py:1468 +msgid "Search field {0} is not valid" +msgstr "Søkefeltet {0} er ikke gyldig" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:87 +msgid "Search fields" +msgstr "Søkefelt" + +#: frappe/public/js/form_builder/components/AddFieldButton.vue:19 +msgid "Search fieldtypes..." +msgstr "Søk etter felttyper..." + +#: frappe/public/js/frappe/ui/toolbar/search.js:50 +#: frappe/public/js/frappe/ui/toolbar/search.js:69 +msgid "Search for anything" +msgstr "Søk etter hva som helst" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:300 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:306 +msgid "Search for {0}" +msgstr "Søk etter {0}" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:166 +msgid "Search in a document type" +msgstr "Søk i en dokumenttype (DocType)" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:29 +msgid "Search or type a command ({0})" +msgstr "Søk eller skriv en kommando ({0})" + +#: frappe/public/js/form_builder/components/SearchBox.vue:8 +msgid "Search properties..." +msgstr "Søk egenskaper..." + +#: frappe/templates/includes/search_box.html:8 +msgid "Search results for" +msgstr "Søkeresultater for" + +#: frappe/templates/includes/navbar/navbar_search.html:6 +#: frappe/templates/includes/search_box.html:2 +#: frappe/templates/includes/search_template.html:23 +msgid "Search..." +msgstr "Søk..." + +#: frappe/public/js/frappe/ui/toolbar/search.js:210 +msgid "Searching ..." +msgstr "Søker ..." + +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "Sekunder" + +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#: frappe/public/js/form_builder/components/Section.vue:263 +#: frappe/website/doctype/web_template/web_template.json +msgid "Section" +msgstr "Seksjon" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Section Break" +msgstr "Seksjonsskift" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:421 +msgid "Section Heading" +msgstr "Seksjonsoverskrift" + +#. 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 "Seksjons-ID" + +#: frappe/public/js/form_builder/components/Section.vue:28 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:8 +msgid "Section Title" +msgstr "Seksjonstittel" + +#: frappe/public/js/form_builder/components/Section.vue:217 +#: frappe/public/js/form_builder/components/Section.vue:240 +msgid "Section must have at least one column" +msgstr "Seksjonen må ha minst én kolonne" + +#. Label of the sb3 (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Security Settings" +msgstr "Sikkerhetsinnstillinger" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:309 +msgid "See all Activity" +msgstr "Se all aktivitet" + +#: frappe/public/js/frappe/views/reports/query_report.js:863 +msgid "See all past reports." +msgstr "Se alle tidligere rapporter." + +#: frappe/public/js/frappe/form/form.js:1235 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4 +msgid "See on Website" +msgstr "Se på nettstedet" + +#: frappe/website/doctype/web_form/templates/web_form.html:160 +msgctxt "Button in web form" +msgid "See previous responses" +msgstr "Se tidligere svar" + +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:49 +msgid "See the document at {0}" +msgstr "Se dokumentet på {0}" + +#. Label of the seen (Check) field in DocType 'Comment' +#. Label of the seen (Check) field in DocType 'Communication' +#. Label of the seen (Check) field in DocType 'Error Log' +#. Label of the seen (Check) field in DocType 'Notification Settings' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/error_log/error_log_list.js:5 +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Seen" +msgstr "Sett" + +#. Label of the seen_by_section (Section Break) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Seen By" +msgstr "Sett av" + +#. Label of the seen_by (Table) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Seen By Table" +msgstr "Sett av" + +#. Label of the select (Check) field in DocType 'Custom DocPerm' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the select (Check) field in DocType 'DocPerm' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/printing/page/print/print.js:642 +#: 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/public/js/frappe/form/controls/multicheck.js:166 +#: frappe/public/js/frappe/form/grid_row.js:498 +msgid "Select All" +msgstr "Velg alle" + +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:601 +#: frappe/public/js/frappe/views/interaction.js:93 +#: frappe/public/js/frappe/views/interaction.js:155 +msgid "Select Attachments" +msgstr "Velg vedlegg" + +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 +msgid "Select Child Table" +msgstr "Velg undertabell" + +#: frappe/public/js/frappe/views/reports/report_view.js:388 +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 +msgid "Select Columns" +msgstr "Velg kolonner" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:399 +msgid "Select Country" +msgstr "Velg land" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:415 +msgid "Select Currency" +msgstr "Velg valuta" + +#. Label of the dashboard_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/public/js/frappe/utils/dashboard_utils.js:240 +msgid "Select Dashboard" +msgstr "Velg oversiktspanel" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Select Date Range" +msgstr "Velg datointervall" + +#. Label of the doc_type (Link) field in DocType 'Web Form' +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:28 +#: frappe/public/js/frappe/doctype/index.js:171 +#: frappe/website/doctype/web_form/web_form.json +msgid "Select DocType" +msgstr "Velg DocType" + +#. Label of the reference_doctype (Link) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Select Doctype" +msgstr "Velg DocType" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:50 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:50 +msgid "Select Document Type" +msgstr "Velg dokumenttype (DocType)" + +#: frappe/core/page/permission_manager/permission_manager.js:179 +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 +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:200 +#: frappe/public/js/frappe/form/toolbar.js:838 +msgid "Select Field" +msgstr "Velg felt" + +#: frappe/public/js/frappe/ui/group_by/group_by.html:35 +#: frappe/public/js/frappe/ui/group_by/group_by.js:141 +msgid "Select Field..." +msgstr "Velg felt..." + +#: frappe/public/js/frappe/form/grid_row.js:490 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 +msgid "Select Fields" +msgstr "Velg felter" + +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "Velg felt (opptil {0})" + +#: frappe/public/js/frappe/data_import/data_exporter.js:147 +msgid "Select Fields To Insert" +msgstr "Velg felt som skal settes inn" + +#: frappe/public/js/frappe/data_import/data_exporter.js:148 +msgid "Select Fields To Update" +msgstr "Velg felt som skal oppdateres" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:21 +msgid "Select Filters" +msgstr "Velg filtre" + +#: frappe/desk/doctype/event/event.py:107 +msgid "Select Google Calendar to which event should be synced." +msgstr "Velg Google Kalender som hendelsen skal synkroniseres med." + +#: frappe/contacts/doctype/contact/contact.py:77 +msgid "Select Google Contacts to which contact should be synced." +msgstr "Velg Google-kontaktene som kontakten skal synkroniseres med." + +#: frappe/public/js/frappe/ui/group_by/group_by.html:10 +msgid "Select Group By..." +msgstr "Velg gruppe etter..." + +#: frappe/public/js/frappe/list/list_view_select.js:185 +msgid "Select Kanban" +msgstr "Velg Kanban" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:391 +msgid "Select Language" +msgstr "Velg språk" + +#. Label of the list_name (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select List View" +msgstr "Velg listevisning" + +#: frappe/public/js/frappe/data_import/data_exporter.js:158 +msgid "Select Mandatory" +msgstr "Velg obligatorisk" + +#: frappe/custom/doctype/customize_form/customize_form.js:280 +msgid "Select Module" +msgstr "Velg modul" + +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 +msgid "Select Network Printer" +msgstr "Velg nettverksskriver" + +#. Label of the page_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +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:160 +msgid "Select Print Format" +msgstr "Velg utskriftsformat" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:82 +msgid "Select Print Format to Edit" +msgstr "Velg utskriftsformat for å redigere" + +#. Label of the report_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select Report" +msgstr "Velg rapport" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:631 +msgid "Select Table Columns for {0}" +msgstr "Velg tabellkolonner for {0}" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:408 +msgid "Select Time Zone" +msgstr "Velg tidssone" + +#. Label of the transaction_type (Autocomplete) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Select Transaction" +msgstr "Velg transaksjonen" + +#: frappe/workflow/page/workflow_builder/workflow_builder.js:68 +msgid "Select Workflow" +msgstr "Velg arbeidsflyt" + +#. Label of the workspace_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select Workspace" +msgstr "Velg arbeidsområde" + +#. Label of the select_workspaces_section (Section Break) field in DocType +#. 'Workspace Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Select Workspaces" +msgstr "Velg arbeidsområder" + +#: frappe/website/doctype/website_settings/website_settings.js:23 +msgid "Select a Brand Image first." +msgstr "Velg en logo først." + +#: frappe/printing/page/print_format_builder/print_format_builder.js:108 +msgid "Select a DocType to make a new format" +msgstr "Velg en dokumenttype (DocType) for å lage et nytt format" + +#: frappe/public/js/form_builder/components/Sidebar.vue:56 +msgid "Select a field to edit its properties." +msgstr "Velg et felt for å redigere egenskapene." + +#: frappe/public/js/frappe/views/treeview.js:358 +msgid "Select a group {0} first." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1956 +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:1940 +msgid "Select a valid Subject field for creating documents from Email" +msgstr "Velg et gyldig emnefelt for å opprette dokumenter fra e-post" + +#: frappe/public/js/frappe/form/form_tour.js:321 +msgid "Select an Image" +msgstr "Velg et bilde" + +#: frappe/www/apps.html:10 +msgid "Select an app to continue" +msgstr "Velg en app for å fortsette" + +#: frappe/printing/page/print_format_builder/print_format_builder_start.html:2 +msgid "Select an existing format to edit or start a new format." +msgstr "Velg et eksisterende format for å redigere eller start et nytt format." + +#. Description of the 'Brand Image' (Attach Image) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Select an image of approx width 150px with a transparent background for best results." +msgstr "Velg et bilde på omtrent 150 pikslers bredde med gjennomsiktig bakgrunn for best resultat." + +#: frappe/public/js/frappe/list/bulk_operations.js:36 +msgid "Select atleast 1 record for printing" +msgstr "Velg minst én oppføring for utskrift" + +#: frappe/core/doctype/success_action/success_action.js:18 +msgid "Select atleast 2 actions" +msgstr "Velg minst 2 handlinger" + +#: frappe/public/js/frappe/list/list_view.js:1447 +msgctxt "Description of a list view shortcut" +msgid "Select list item" +msgstr "Velg listeelement" + +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 +msgctxt "Description of a list view shortcut" +msgid "Select multiple list items" +msgstr "Velg flere listeelementer" + +#: frappe/public/js/frappe/views/calendar/calendar.js:167 +msgid "Select or drag across time slots to create a new event." +msgstr "Velg eller dra over tidsluker for å opprette en ny hendelse." + +#: frappe/public/js/frappe/list/bulk_operations.js:239 +msgid "Select records for assignment" +msgstr "Velg poster for tildeling" + +#: frappe/public/js/frappe/list/bulk_operations.js:260 +msgid "Select records for removing assignment" +msgstr "Velg poster for fjerning av tildeling" + +#. 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 "Velg etiketten du vil sette inn det nye feltet etter." + +#: frappe/public/js/frappe/utils/diffview.js:102 +msgid "Select two versions to view the diff." +msgstr "Velg to versjoner for å se differansen." + +#: frappe/public/js/frappe/form/link_selector.js:24 +#: frappe/public/js/frappe/form/multi_select_dialog.js:80 +#: frappe/public/js/frappe/form/multi_select_dialog.js:282 +#: frappe/public/js/frappe/list/list_view_select.js:153 +#: frappe/public/js/print_format_builder/Preview.vue:90 +msgid "Select {0}" +msgstr "Velg {0}" + +#: frappe/model/workflow.py:120 +msgid "Self approval is not allowed" +msgstr "Må godkjennes av en annen person" + +#: frappe/www/contact.html:41 +msgid "Send" +msgstr "Send" + +#: frappe/public/js/frappe/views/communication.js:26 +msgctxt "Send Email" +msgid "Send" +msgstr "Send" + +#. Description of the 'Minutes Offset' (Int) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send at the earliest this number of minutes before or after the reference datetime. The actual sending may be delayed by up to 5 minutes due to the scheduler's trigger cadence." +msgstr "Send tidligst dette antallet minutter før eller etter referansetidspunktet. Den faktiske utsendelsen kan bli forsinket med opptil 5 minutter på grunn av planleggerens utløserintervall." + +#. Label of the send_after (Datetime) field in DocType 'Communication' +#. Label of the send_after (Datetime) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Send After" +msgstr "Send etter" + +#. Label of the event (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send Alert On" +msgstr "Send varsel på" + +#. Label of the send_email_alert (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Send Email Alert" +msgstr "Send e-postvarsel" + +#. Label of the send_email (Check) field in DocType 'Workflow Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Send Email On State" +msgstr "Send e-post på tilstand" + +#. Description of the 'Send Print as PDF' (Check) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Send Email Print Attachments as PDF (Recommended)" +msgstr "Send e-post Skriv ut vedlegg som PDF (anbefales)" + +#. Label of the send_email_to_creator (Check) field in DocType 'Workflow +#. Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Send Email To Creator" +msgstr "Send e-post til skaperen" + +#. 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 "Send meg en kopi av utgående e-post" + +#. 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 "Send varsel til" + +#. 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 "Send varsler for dokumenter som følges av meg" + +#. Label of the thread_notify (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Send Notifications For Email Threads" +msgstr "Send varsler for e-posttråder" + +#: frappe/email/doctype/auto_email_report/auto_email_report.js:21 +msgid "Send Now" +msgstr "Send nå" + +#. 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 "Send utskrift som PDF" + +#: frappe/public/js/frappe/views/communication.js:150 +msgid "Send Read Receipt" +msgstr "Send lesebekreftelse" + +#. Label of the send_system_notification (Check) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send System Notification" +msgstr "Send systemvarsling" + +#. Label of the send_to_all_assignees (Check) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send To All Assignees" +msgstr "Send til alle mottakere" + +#. Label of the send_welcome_email (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Send Welcome Email" +msgstr "Send velkomst-e-post" + +#. 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 "Send varsel hvis datoen samsvarer med verdien i dette feltet" + +#. Description of the 'Reference Datetime' (Select) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send alert if datetime matches this field's value" +msgstr "Send varsel hvis dato og klokkeslett samsvarer med verdien i dette feltet" + +#. 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 "Send varsel hvis verdien i dette feltet endres" + +#. 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 "Send en påminnelse via e-post om morgenen" + +#. 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 "Send dager før eller etter referansedatoen" + +#. Description of the 'Send Email On State' (Check) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Send email when document transitions to the state." +msgstr "Send e-post når dokumentet går over til denne tilstanden." + +#. Description of the 'Forward To Email Address' (Data) field in DocType +#. 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Send enquiries to this email address" +msgstr "Send forespørsler til denne e-postadressen" + +#: frappe/templates/includes/login/login.js:72 frappe/www/login.html:230 +msgid "Send login link" +msgstr "Send påloggingslenke" + +#: frappe/public/js/frappe/views/communication.js:144 +msgid "Send me a copy" +msgstr "Send meg en kopi" + +#. 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 "Send bare hvis det finnes data" + +#. 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 "Send avmeldingsmelding i e-post" + +#. Label of the sender (Data) field in DocType 'Event' +#. Label of the sender (Data) field in DocType 'ToDo' +#. Label of the sender (Link) field in DocType 'Auto Email Report' +#. Label of the sender (Data) field in DocType 'Email Queue' +#. Label of the sender (Link) field in DocType 'Notification' +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/notification/notification.json +msgid "Sender" +msgstr "Avsender" + +#. Label of the sender_email (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Sender Email" +msgstr "Avsenders e-postadresse" + +#. Label of the sender_field (Data) field in DocType 'DocType' +#. Label of the sender_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Sender Email Field" +msgstr "Felt for avsenders e-postadresse" + +#: frappe/core/doctype/doctype/doctype.py:1959 +msgid "Sender Field should have Email in options" +msgstr "Avsenderfeltet må være av typen e-postadresse" + +#. Label of the sender_name (Data) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "Sender Name" +msgstr "Avsendernavn" + +#. 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 "Felt for avsendernavn" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Sendgrid" +msgstr "Sendgrid" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Sending" +msgstr "Sender" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Sent or Received' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +msgid "Sent" +msgstr "Sendt" + +#. Label of the sent_folder_name (Data) field in DocType 'Email Account' +#. Label of the sent_folder_name (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Sent Folder Name" +msgstr "Mappe for sendte meldinger" + +#. Label of the sent_on (Date) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "Sent On" +msgstr "Sendt den" + +#. Label of the read_receipt (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Sent Read Receipt" +msgstr "Lesebekreftelse sendt" + +#. Label of the sent_to (Code) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "Sent To" +msgstr "Sendt til" + +#. Label of the sent_or_received (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Sent or Received" +msgstr "Sendt eller mottatt" + +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Sent/Received Email" +msgstr "Sendt/mottatt e-post" + +#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Separator" +msgstr "Separator" + +#. Label of the sequence_id (Float) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Sequence Id" +msgstr "Sekvens-ID" + +#. Label of the naming_series_options (Text) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Series List for this Transaction" +msgstr "Liste med løpenummerserier for denne transaksjonen" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:115 +msgid "Series Updated for {}" +msgstr "Løpenummerserien for {} er oppdatert" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:223 +msgid "Series counter for {} updated to {} successfully" +msgstr "Telleren for løpenummerserier for {} er oppdatert til {}" + +#: frappe/core/doctype/doctype/doctype.py:1110 +#: 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}" + +#. Option for the 'Action Type' (Select) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json +msgid "Server Action" +msgstr "Serverhandling" + +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 +#: frappe/www/error.html:36 frappe/www/error.py:15 +msgid "Server Error" +msgstr "Serverfeil" + +#. Label of the server_ip (Data) field in DocType 'Network Printer Settings' +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Server IP" +msgstr "Server-IP" + +#. Label of the server_script (Link) field in DocType 'Scheduled Job Type' +#. Name of a DocType +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/workspace/build/build.json +msgid "Server Script" +msgstr "Serverskript" + +#: frappe/utils/safe_exec.py:98 +msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." +msgstr "Serverskript er deaktivert. Aktiver serverskript fra benkekonfigurasjonen." + +#: frappe/core/doctype/server_script/server_script.js:39 +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 +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 +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." + +#. Label of the service (Select) field in DocType 'Email Account' +#. Label of the integration_request_service (Data) field in DocType +#. 'Integration Request' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Service" +msgstr "Tjeneste" + +#. Name of a DocType +#: frappe/core/doctype/session_default/session_default.json +msgid "Session Default" +msgstr "Øktstandard" + +#. Name of a DocType +#: frappe/core/doctype/session_default_settings/session_default_settings.json +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:363 +msgid "Session Defaults" +msgstr "Øktstandarder" + +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 +msgid "Session Defaults Saved" +msgstr "Standardinnstillinger for økt er lagret" + +#: frappe/app.py:376 +msgid "Session Expired" +msgstr "Økten er utløpt på grunn av inaktivitet" + +#. 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 "Utløpstid for økter (ved inaktivitet)" + +#: frappe/core/doctype/system_settings/system_settings.py:123 +msgid "Session Expiry must be in format {0}" +msgstr "Utløpstid for økter må være på format {0}" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 +#: frappe/public/js/frappe/widgets/chart_widget.js:447 +msgid "Set" +msgstr "Angi" + +#: frappe/public/js/frappe/ui/filters/filter.js:607 +msgctxt "Field value is set" +msgid "Set" +msgstr "Angi" + +#. Label of the set_banner_from_image (Button) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Set Banner from Image" +msgstr "Sett banner fra bilde" + +#: frappe/public/js/frappe/views/reports/query_report.js:200 +msgid "Set Chart" +msgstr "Sett diagram" + +#. 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 "Sett standardalternativer for alle kartene på dette oversiktspanelet (eks: \"farger\": [\"#d1d8dd\", \"#ff5858\"])" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 +#: frappe/desk/doctype/number_card/number_card.js:384 +msgid "Set Dynamic Filters" +msgstr "Angi dynamiske filtre" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 +#: frappe/desk/doctype/number_card/number_card.js:292 +#: frappe/public/js/form_builder/components/Field.vue:80 +#: frappe/website/doctype/web_form/web_form.js:269 +msgid "Set Filters" +msgstr "Angi filtere" + +#: frappe/public/js/frappe/widgets/chart_widget.js:436 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:105 +msgid "Set Filters for {0}" +msgstr "Angi filtre for {0}" + +#: frappe/public/js/frappe/views/reports/query_report.js:2121 +msgid "Set Level" +msgstr "Angi nivå" + +#: frappe/core/doctype/user_type/user_type.py:92 +msgid "Set Limit" +msgstr "Angi begrensning" + +#. Description of the 'Setup Series for transactions' (Section Break) field in +#. DocType 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Set Naming Series options on your transactions." +msgstr "Angi alternativer for nummerserier på transaksjoner." + +#. Label of the new_password (Password) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Set New Password" +msgstr "Angi nytt passord" + +#: frappe/desk/page/backups/backups.js:8 +msgid "Set Number of Backups" +msgstr "Angi antall sikkerhetskopier" + +#: frappe/www/update-password.html:32 +msgid "Set Password" +msgstr "Angi passord" + +#: frappe/custom/doctype/customize_form/customize_form.js:112 +msgid "Set Permissions" +msgstr "Angi rettigheter" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:471 +msgid "Set Properties" +msgstr "Rediger egenskaper" + +#. Label of the property_section (Section Break) field in DocType +#. 'Notification' +#. Label of the set_property_after_alert (Select) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Set Property After Alert" +msgstr "Angi egenskap etter varsel" + +#: frappe/public/js/frappe/form/link_selector.js:207 +#: frappe/public/js/frappe/form/link_selector.js:208 +msgid "Set Quantity" +msgstr "Angi antall" + +#. Label of the set_role_for (Select) field in DocType 'Role Permission for +#. Page and Report' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgid "Set Role For" +msgstr "Angi rolle for" + +#: frappe/core/doctype/user/user.js:124 +#: frappe/core/page/permission_manager/permission_manager.js:72 +msgid "Set User Permissions" +msgstr "Legg til brukerrettigheter" + +#. Label of the value (Small Text) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Set Value" +msgstr "Ny verdi" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 +msgid "Set all private" +msgstr "Sett alle til private" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +msgid "Set all public" +msgstr "Sett alle til offentlige" + +#: frappe/printing/doctype/print_format/print_format.js:50 +msgid "Set as Default" +msgstr "Angi som standard" + +#: frappe/website/doctype/website_theme/website_theme.js:33 +msgid "Set as Default Theme" +msgstr "Angi som standardtema" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Set by user" +msgstr "Angitt av bruker" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:162 +msgid "Set dynamic filter values in JavaScript for the required fields here." +msgstr "Angi dynamiske filterverdier i JavaScript for de påkrevde feltene her." + +#. Description of the 'Precision' (Select) field in DocType 'Custom Field' +#. Description of the 'Precision' (Select) field in DocType 'Customize Form +#. Field' +#. Description of the 'Precision' (Select) field in DocType 'Web Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Set non-standard precision for a Float or Currency field" +msgstr "Angi ikke-standard presisjon for et flyt- eller valutafelt" + +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "Angi ikke-standard presisjon for et desimal-, valuta- eller prosentfelt" + +#. Label of the set_only_once (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set only once" +msgstr "Angi bare en gang" + +#. Description of the 'Max attachment size' (Int) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Set size in MB" +msgstr "Angi størrelse i MB" + +#. Description of the 'Filters Configuration' (Code) field in DocType 'Number +#. Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Set the filters here. For example:\n" +"
    \n"
    +"[{\n"
    +"\tfieldname: \"company\",\n"
    +"\tlabel: __(\"Company\"),\n"
    +"\tfieldtype: \"Link\",\n"
    +"\toptions: \"Company\",\n"
    +"\tdefault: frappe.defaults.get_user_default(\"Company\"),\n"
    +"\treqd: 1\n"
    +"},\n"
    +"{\n"
    +"\tfieldname: \"account\",\n"
    +"\tlabel: __(\"Account\"),\n"
    +"\tfieldtype: \"Link\",\n"
    +"\toptions: \"Account\",\n"
    +"\treqd: 1\n"
    +"}]\n"
    +"
    " +msgstr "Angi filtrene her. For eksempel:\n" +"
    \n"
    +"[{\n"
    +"\tfieldname: \"company\",\n"
    +"\tlabel: __(\"Company\"),\n"
    +"\tfieldtype: \"Link\",\n"
    +"\toptions: \"Company\",\n"
    +"\tdefault: frappe.defaults.get_user_default(\"Company\"),\n"
    +"\treqd: 1\n"
    +"},\n"
    +"{\n"
    +"\tfieldname: \"account\",\n"
    +"\tlabel: __(\"Account\"),\n"
    +"\tfieldtype: \"Link\",\n"
    +"\toptions: \"Account\",\n"
    +"\treqd: 1\n"
    +"}]\n"
    +"
    " + +#. Description of the 'Method' (Data) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Set the path to a whitelisted function that will return the data for the number card in the format:\n\n" +"
    \n"
    +"{\n"
    +"\t\"value\": value,\n"
    +"\t\"fieldtype\": \"Currency\",\n"
    +"\t\"route_options\": {\"from_date\": \"2023-05-23\"},\n"
    +"\t\"route\": [\"query-report\", \"Permitted Documents For User\"]\n"
    +"}
    " +msgstr "Angi banen til en hvitlistet funksjon som returnerer dataene for tallkortet i formatet:\n\n" +"
    \n"
    +"{\n"
    +"\t\"verdi\": verdi,\n"
    +"\t\"felttype\": \"Valuta\",\n"
    +"\t\"rutealternativer\": {\"fra_dato\": \"2023-05-23\"},\n"
    +"\t\"rute\": [\"spørringsrapport\", \"Tillatte dokumenter for bruker\"]\n"
    +"}
    " + +#: frappe/contacts/doctype/address_template/address_template.py:33 +msgid "Setting this Address Template as default as there is no other default" +msgstr "Setter denne adressemalen som standard, da det ikke finnes noen annen standard" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:86 +msgid "Setting up Global Search documents." +msgstr "Sette opp globale søkedokumenter." + +#: frappe/desk/page/setup_wizard/setup_wizard.js:285 +msgid "Setting up your system" +msgstr "Sette opp systemet ditt" + +#. Label of the settings_tab (Tab Break) field in DocType 'DocType' +#. Label of the settings_tab (Tab Break) field in DocType 'User' +#. Group in User's connections +#. Label of a Card Break in the Integrations Workspace +#. Label of the settings_tab (Tab Break) field in DocType 'Web Form' +#. Label of the settings (Tab Break) field in DocType 'Web Page' +#. Label of a Card Break in the Website Workspace +#: frappe/core/doctype/doctype/doctype.json frappe/core/doctype/user/user.json +#: frappe/integrations/workspace/integrations/integrations.json +#: frappe/public/js/frappe/form/templates/print_layout.html:25 +#: frappe/public/js/frappe/ui/apps_switcher.js:137 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 +#: frappe/public/js/frappe/views/workspace/workspace.js:362 +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/workspace/website/website.json frappe/www/me.html:20 +msgid "Settings" +msgstr "Innstillinger" + +#. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Settings Dropdown" +msgstr "Innstillingsmeny" + +#. Description of a DocType +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Settings for Contact Us Page" +msgstr "Innstillinger for \"Kontakt oss\"-siden" + +#. Description of a DocType +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Settings for the About Us Page" +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:576 +msgid "Setup" +msgstr "Oppsett" + +#: frappe/core/page/permission_manager/permission_manager_help.html:27 +msgid "Setup > Customize Form" +msgstr "Oppsett > Tilpass skjema" + +#: frappe/core/page/permission_manager/permission_manager_help.html:8 +msgid "Setup > User" +msgstr "Oppsett > Bruker" + +#: frappe/core/page/permission_manager/permission_manager_help.html:33 +msgid "Setup > User Permissions" +msgstr "Oppsett > Brukertillatelser" + +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 +msgid "Setup Auto Email" +msgstr "Konfigurer automatisk e-post" + +#. Label of the setup_complete (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:211 +msgid "Setup Complete" +msgstr "Oppsettet er fullført" + +#. Label of the setup_series (Section Break) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Setup Series for transactions" +msgstr "Opprett løpenummerserie for transaksjoner" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:236 +msgid "Setup failed" +msgstr "Oppsettet mislyktes" + +#. Label of the share (Check) field in DocType 'Custom DocPerm' +#. Label of the share (Check) field in DocType 'DocPerm' +#. Label of the share (Check) field in DocType 'DocShare' +#. Label of the share (Check) field in DocType 'User Document Type' +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/public/js/frappe/form/templates/form_sidebar.html:90 +msgid "Share" +msgstr "Del" + +#: frappe/public/js/frappe/form/sidebar/share.js:107 +msgid "Share With" +msgstr "Del med" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:49 +msgid "Share this document with" +msgstr "Del dette dokumentet med" + +#: frappe/public/js/frappe/form/sidebar/share.js:45 +msgid "Share {0} with" +msgstr "Del {0} med" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Shared" +msgstr "Delt" + +#: frappe/desk/form/assign_to.py:132 +msgid "Shared with the following Users with Read access:{0}" +msgstr "Delt med følgende brukere med lesetilgang:{0}" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Shipping" +msgstr "Frakt" + +#: frappe/public/js/frappe/form/templates/address_list.html:31 +msgid "Shipping Address" +msgstr "Leveringsadresse" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Shop" +msgstr "Butikk" + +#: frappe/utils/password_strength.py:91 +msgid "Short keyboard patterns are easy to guess" +msgstr "Korte tastaturmønstre er enkle å gjette" + +#. Label of the shortcuts (Table) field in DocType 'Workspace' +#. Label of the tab_break_15 (Tab Break) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Shortcuts" +msgstr "Snarveier" + +#: frappe/public/js/frappe/widgets/base_widget.js:46 +#: frappe/public/js/frappe/widgets/base_widget.js:178 +#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 +msgid "Show" +msgstr "Vis" + +#. Label of the show_absolute_datetime_in_timeline (Check) field in DocType +#. 'System Settings' +#. Label of the show_absolute_datetime_in_timeline (Check) field in DocType +#. 'User' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +msgid "Show Absolute Datetime in Timeline" +msgstr "Vis absolutt datoperiode i tidslinjen" + +#. Label of the absolute_value (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Show Absolute Values" +msgstr "Vis absolutte verdier" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:73 +msgid "Show All" +msgstr "Vis alle" + +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "Vis metadata for autentiseringsserver" + +#: frappe/desk/doctype/calendar_view/calendar_view.js:10 +msgid "Show Calendar" +msgstr "Vis kalender" + +#. 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 "Vis valutasymbol på høyre side" + +#. Label of the show_dashboard (Check) field in DocType 'DocField' +#. Label of the show_dashboard (Check) field in DocType 'Custom Field' +#. Label of the show_dashboard (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard/dashboard.js:6 +msgid "Show Dashboard" +msgstr "Vis oversiktspanel" + +#. Label of the show_document (Button) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Show Document" +msgstr "Vis dokument" + +#: frappe/www/error.html:42 frappe/www/error.html:65 +msgid "Show Error" +msgstr "Vis feil" + +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 +msgid "Show Fieldname (click to copy on clipboard)" +msgstr "Vis feltnavn (klikk for å kopiere til utklippstavlen)" + +#. 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 "Vis første dokumentvisning" + +#. 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 "Vis skjemaguide" + +#. 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 "Vis fullstendig feil og tillat rapportering av problemer til utvikleren" + +#. 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 "Vis fullstendig skjema?" + +#. Label of the show_full_number (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Show Full Number" +msgstr "Vis fullt nummer" + +#: frappe/public/js/frappe/ui/keyboard.js:234 +msgid "Show Keyboard Shortcuts" +msgstr "Vis tastatursnarveier" + +#. Label of the show_labels (Check) field in DocType 'Kanban Board' +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:30 +msgid "Show Labels" +msgstr "Vis etiketter" + +#. Label of the show_language_picker (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Show Language Picker" +msgstr "Vis språkvelger" + +#. 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 "Vis linjeskift etter seksjoner" + +#: frappe/public/js/frappe/form/toolbar.js:410 +msgid "Show Links" +msgstr "Vis lenker" + +#. 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 "Vis bare mislykkede logger" + +#. 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 "Vis prosentstatistikk" + +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30 +msgid "Show Permissions" +msgstr "Vis rettigheter" + +#: frappe/public/js/form_builder/form_builder.bundle.js:31 +#: frappe/public/js/form_builder/form_builder.bundle.js:43 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:18 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 +msgid "Show Preview" +msgstr "Vis forhåndsvisning" + +#. Label of the show_preview_popup (Check) field in DocType 'DocType' +#. Label of the show_preview_popup (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Show Preview Popup" +msgstr "Vis forhåndsvisning i popup-vindu" + +#. Label of the show_processlist (Check) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "Show Processlist" +msgstr "Vis prosessliste" + +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "Vis metadata for beskyttede ressurser" + +#: frappe/core/doctype/error_log/error_log.js:9 +msgid "Show Related Errors" +msgstr "Vis relaterte feil" + +#. Label of the show_report (Button) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/prepared_report/prepared_report.js:43 +#: frappe/core/doctype/report/report.js:16 +msgid "Show Report" +msgstr "Vis rapport" + +#: frappe/public/js/frappe/list/list_filter.js:15 +#: frappe/public/js/frappe/list/list_filter.js:94 +msgid "Show Saved" +msgstr "Vis lagret" + +#. 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 "Vis seksjonsoverskrifter" + +#. Label of the show_sidebar (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Show Sidebar" +msgstr "Vis sidefelt" + +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "Vis sosial påloggingsnøkkel som autorisasjonsserver" + +#: frappe/public/js/frappe/list/list_sidebar.html:77 +#: frappe/public/js/frappe/list/list_view.js:1851 +msgid "Show Tags" +msgstr "Vis stikkord" + +#. Label of the show_title (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Show Title" +msgstr "Vis tittel" + +#. Label of the show_title_field_in_link (Check) field in DocType 'DocType' +#. Label of the show_title_field_in_link (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Show Title in Link Fields" +msgstr "Vis tittel i lenkefelt" + +#: frappe/public/js/frappe/views/reports/report_view.js:1529 +msgid "Show Totals" +msgstr "Vis totalsummer" + +#: frappe/desk/doctype/form_tour/form_tour.js:116 +msgid "Show Tour" +msgstr "Vis omvisning" + +#: frappe/core/doctype/data_import/data_import.js:448 +msgid "Show Traceback" +msgstr "Vis tilbakesporing" + +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "Vis verdier over diagrammet" + +#: frappe/public/js/frappe/data_import/import_preview.js:204 +msgid "Show Warnings" +msgstr "Vis advarsler" + +#: frappe/public/js/frappe/views/calendar/calendar.js:179 +msgid "Show Weekends" +msgstr "Vis helger" + +#. Label of the show_account_deletion_link (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Show account deletion link in My Account page" +msgstr "Vis lenke for sletting av konto på siden Min konto" + +#: frappe/core/doctype/version/version.js:6 +msgid "Show all Versions" +msgstr "Vis alle versjoner" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:69 +msgid "Show all activity" +msgstr "Vis all aktivitet" + +#. 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 "Vis som cc" + +#. Label of the show_attachments (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Show attachments" +msgstr "Vis vedlegg" + +#. Label of the show_footer_on_login (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Show footer on login" +msgstr "Vis bunntekst ved pålogging" + +#. 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 "Vis hele skjemaet i stedet for en rask oppføringsmodal" + +#. Label of the document_type (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Show in Module Section" +msgstr "Vis i modulseksjonen" + +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "Vis i ressursmetadata" + +#. 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 "Vis i filter" + +#. 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 "Vis lenke til dokument" + +#. Label of the show_list (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Show list" +msgstr "Vis liste" + +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 +msgid "Show more details" +msgstr "Vis flere detaljer" + +#. Label of the show_on_timeline (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Show on Timeline" +msgstr "Vis på tidslinjen" + +#. Description of the 'Stats Time Interval' (Select) field in DocType 'Number +#. Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Show percentage difference according to this time interval" +msgstr "Vis prosentvis forskjell i henhold til dette tidsintervallet" + +#. Label of the show_sidebar (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Show sidebar" +msgstr "Vis sidefelt" + +#. 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 "Vis tittel i nettleservinduet som \"Prefiks - tittel\"" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:148 +msgid "Show {0} List" +msgstr "Vis {0} -liste" + +#: frappe/public/js/frappe/views/reports/report_view.js:506 +msgid "Showing only Numeric fields from Report" +msgstr "Viser bare numeriske felt fra rapporten" + +#: frappe/public/js/frappe/data_import/import_preview.js:153 +msgid "Showing only first {0} rows out of {1}" +msgstr "Viser bare de første {0} radene av {1}" + +#. Label of the list_sidebar (Check) field in DocType 'User' +#. Label of the form_sidebar (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Sidebar" +msgstr "Sidefelt" + +#. Label of the sidebar_items (Table) field in DocType 'Website Sidebar' +#: frappe/website/doctype/website_sidebar/website_sidebar.json +msgid "Sidebar Items" +msgstr "Elementer i sidefeltet" + +#. 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 "Innstillinger for sidefelt" + +#. 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 "Sidefelt og kommentarer" + +#. Label of the sign_up_and_confirmation_section (Section Break) field in +#. DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Sign Up and Confirmation" +msgstr "Påmelding og bekreftelse" + +#: frappe/core/doctype/user/user.py:1029 +msgid "Sign Up is disabled" +msgstr "Påmelding er deaktivert" + +#: 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 "Påmelding" + +#. 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 "Registreringer" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the signature_section (Section Break) field in DocType 'Email +#. Account' +#. Label of the signature (Text Editor) field in DocType 'Email Account' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Signature" +msgstr "Signatur" + +#: frappe/www/login.html:168 +msgid "Signup Disabled" +msgstr "Påmelding deaktivert" + +#: frappe/www/login.html:169 +msgid "Signups have been disabled for this website." +msgstr "Påmelding er deaktivert for dette nettstedet." + +#. Description of the 'Close Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "" + +#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" +msgstr "" + +#. Label of the simultaneous_sessions (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Simultaneous Sessions" +msgstr "Samtidige økter" + +#: frappe/custom/doctype/customize_form/customize_form.py:128 +msgid "Single DocTypes cannot be customized." +msgstr "Enkeltstående dokumenttyper (DocType) kan ikke tilpasses." + +#. Description of the 'Is Single' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:68 +msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" +msgstr "Enkelttyper har bare én post, ingen tilknyttede tabeller. Verdier lagres i tabSingles." + +#: frappe/database/database.py:284 +msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." +msgstr "Nettstedet kjører i skrivebeskyttet modus for vedlikehold eller oppdatering av nettstedet, og denne handlingen kan ikke utføres akkurat nå. Vennligst prøv igjen senere." + +#: frappe/public/js/frappe/views/file/file_view.js:370 +msgid "Size" +msgstr "Størrelse" + +#. Label of the size (Float) field in DocType 'System Health Report Tables' +#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json +msgid "Size (MB)" +msgstr "Størrelse (MB)" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:82 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:18 +msgid "Skip" +msgstr "Hopp over" + +#. Label of the skip_authorization (Check) field in DocType 'OAuth Client' +#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider +#. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Skip Authorization" +msgstr "Hopp over autorisasjon" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:332 +msgid "Skip Step" +msgstr "Hopp over trinn" + +#. Label of the skipped (Check) field in DocType 'Patch Log' +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Skipped" +msgstr "Hoppet over" + +#: frappe/core/doctype/data_import/importer.py:952 +msgid "Skipping Duplicate Column {0}" +msgstr "Hopper over dupliserte kolonner {0}" + +#: frappe/core/doctype/data_import/importer.py:977 +msgid "Skipping Untitled Column" +msgstr "Hopper over kolonne uten navn" + +#: frappe/core/doctype/data_import/importer.py:963 +msgid "Skipping column {0}" +msgstr "Hopper over kolonne {0}" + +#: frappe/modules/utils.py:176 +msgid "Skipping fixture syncing for doctype {0} from file {1}" +msgstr "Hopper over synkronisering av fixture for dokumenttype (DocType) {0} fra fil {1}" + +#: frappe/core/doctype/data_import/data_import.js:39 +msgid "Skipping {0} of {1}, {2}" +msgstr "Hopper over {0} av {1}, {2}" + +#. Label of the skype (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Skype" +msgstr "Skype" + +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Slack" +msgstr "Slack" + +#. Label of the slack_webhook_url (Link) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Slack Channel" +msgstr "Slack-kanal" + +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65 +msgid "Slack Webhook Error" +msgstr "Slack Webhook-feil" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Slack Webhook URL" +msgstr "Slack Webhook-URL" + +#. Label of the slideshow (Link) field in DocType 'Web Page' +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Slideshow" +msgstr "Lysbildefremvisning" + +#. Label of the slideshow_items (Table) field in DocType 'Website Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow Items" +msgstr "Elementer i lysbildefremvisningen" + +#. Label of the slideshow_name (Data) field in DocType 'Website Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow Name" +msgstr "Navn på lysbildefremvisning" + +#. Description of a DocType +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow like display for the website" +msgstr "Lysbildeserie-lignende visning for nettstedet" + +#. Label of the slug (Data) field in DocType 'UTM Campaign' +#. Label of the slug (Data) field in DocType 'UTM Medium' +#. Label of the slug (Data) field in DocType 'UTM Source' +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +msgid "Slug" +msgstr "Slug" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Small Text" +msgstr "Liten tekst" + +#. Label of the smallest_currency_fraction_value (Currency) field in DocType +#. 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Smallest Currency Fraction Value" +msgstr "Minste valutaenhet" + +#. 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 "Minste sirkulerende enhet (mynt). F.eks. 1 cent for USD, og den må angis som 0,01" + +#: frappe/printing/doctype/letter_head/letter_head.js:32 +msgid "Snippet and more variables: {0}" +msgstr "Utdrag og flere variabler: {0}" + +#. Name of a DocType +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "Social Link Settings" +msgstr "Innstillinger for sosiale lenker" + +#. Label of the social_link_type (Select) field in DocType 'Social Link +#. Settings' +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "Social Link Type" +msgstr "Type sosial lenke" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Social Login Key" +msgstr "Sosial innloggingsnøkkel" + +#. Label of the social_login_provider (Select) field in DocType 'Social Login +#. Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Social Login Provider" +msgstr "Leverandør av sosial innlogging" + +#. Label of the social_logins (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Social Logins" +msgstr "Sosial innlogging" + +#. Label of the socketio_ping_check (Select) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "SocketIO Ping Check" +msgstr "SocketIO Ping-sjekk" + +#. Label of the socketio_transport_mode (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "SocketIO Transport Mode" +msgstr "SocketIO-transportmodus" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Soft-Bounced" +msgstr "Soft-Bounced" + +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "Programvare ID" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "Programvareversjon" + +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 +msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." +msgstr "Noen kolonner kan bli avkuttet når du skriver ut til PDF. Prøv å holde antallet kolonner under 10." + +#. Description of the 'Sent Folder Name' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Some mailboxes require a different Sent Folder Name e.g. \"INBOX.Sent\"" +msgstr "Noen postkasser krever et annet navn på sendt-mappen, f.eks. \"INBOX.Sent\"" + +#: frappe/public/js/frappe/desk.js:20 +msgid "Some of the features might not work in your browser. Please update your browser to the latest version." +msgstr "Noen av funksjonene fungerer kanskje ikke i nettleseren din. Oppdater nettleseren din til den nyeste versjonen." + +#: frappe/public/js/frappe/views/translation_manager.js:101 +msgid "Something went wrong" +msgstr "Noe gikk galt" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:133 +msgid "Something went wrong during the token generation. Click on {0} to generate a new one." +msgstr "Noe gikk galt under genereringen av token. Klikk på {0} for å generere en ny." + +#: frappe/templates/includes/login/login.js:293 +msgid "Something went wrong." +msgstr "Noe gikk galt." + +#: frappe/public/js/frappe/views/pageview.js:117 +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:125 +msgid "Sorry! You are not permitted to view this page." +msgstr "Beklager! Ditt rettighetsnivå hindrer visning av denne siden." + +#: frappe/public/js/frappe/utils/datatable.js:6 +msgid "Sort Ascending" +msgstr "Sorter stigende" + +#: frappe/public/js/frappe/utils/datatable.js:7 +msgid "Sort Descending" +msgstr "Sorter synkende" + +#. Label of the sort_field (Select) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Sort Field" +msgstr "Sorteringsfelt" + +#. Label of the sort_options (Check) field in DocType 'DocField' +#. Label of the sort_options (Check) field in DocType 'Custom Field' +#. Label of the sort_options (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Sort Options" +msgstr "Sorteringsalternativer" + +#. Label of the sort_order (Select) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Sort Order" +msgstr "Sorteringsrekkefølge" + +#: frappe/core/doctype/doctype/doctype.py:1551 +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:1757 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +#: frappe/website/report/website_analytics/website_analytics.js:38 +msgid "Source" +msgstr "Kilde" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "Kildekode" + +#. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgid "Source Name" +msgstr "Kildenavn" + +#. Label of the source_text (Code) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +#: frappe/public/js/frappe/views/translation_manager.js:38 +msgid "Source Text" +msgstr "Kildetekst" + +#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:23 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:174 +msgid "Spacer" +msgstr "Avstandsstykke" + +#. Option for the 'Email Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Spam" +msgstr "Spam" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "SparkPost" +msgstr "SparkPost" + +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "Utløser handlinger i en bakgrunnsjobb" + +#: frappe/custom/doctype/custom_field/custom_field.js:83 +msgid "Special Characters are not allowed" +msgstr "Spesialtegn er ikke tillatt" + +#: frappe/model/naming.py:68 +msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}" +msgstr "Spesialtegn unntatt '-', '#', '.', '/', '{{' and '}}' er ikke tillatt i nummerserier {0}" + +#. Description of the 'Timeout (In Seconds)' (Int) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Specify a custom timeout, default timeout is 1500 seconds" +msgstr "Angi en egendefinert tidsavbryter, standard tidsavbrudd er 1500 sekunder" + +#. Description of the 'Allowed embedding domains' (Small Text) field in DocType +#. 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin." +msgstr "Angi hvilke domener eller opprinnelser som har tillatelse til å bygge inn dette skjemaet. Angi ett domene per linje (f.eks. https://example.com). Hvis ingen domener er angitt, kan skjemaet bare legges inn på samme opprinnelsessted." + +#. Label of the splash_image (Attach Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Splash Image" +msgstr "Velkomstbilde" + +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 +#: frappe/templates/print_formats/standard_macros.html:44 +msgid "Sr" +msgstr "Nr." + +#: frappe/public/js/print_format_builder/Field.vue:143 +#: frappe/public/js/print_format_builder/Field.vue:164 +msgid "Sr No." +msgstr "Nr." + +#. Label of the stack_html (HTML) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder/recorder.js:82 +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Stack Trace" +msgstr "Stack Trace" + +#. Label of the standard (Select) field in DocType 'Page' +#. Label of the standard (Check) field in DocType 'Desktop Icon' +#. Label of the standard (Select) field in DocType 'Print Format' +#. Label of the standard (Check) field in DocType 'Print Format Field Template' +#. Label of the standard (Check) field in DocType 'Print Style' +#. Label of the standard (Check) field in DocType 'Web Template' +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/user_type/user_type_list.js:5 +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/website/doctype/web_template/web_template.json +msgid "Standard" +msgstr "Standard" + +#: frappe/model/delete_doc.py:119 +msgid "Standard DocType can not be deleted." +msgstr "Standard dokumenttype (DocType) kan ikke slettes." + +#: frappe/core/doctype/doctype/doctype.py:229 +msgid "Standard DocType cannot have default print format, use Customize Form" +msgstr "Standard dokumenttyper (DocType) kan ikke ha standard utskriftsformat, bruk Tilpass skjema" + +#: frappe/desk/doctype/dashboard/dashboard.py:58 +msgid "Standard Not Set" +msgstr "Standard ikke satt" + +#: frappe/core/page/permission_manager/permission_manager.js:132 +msgid "Standard Permissions" +msgstr "Standardtillatelser" + +#: frappe/printing/doctype/print_format/print_format.py:82 +msgid "Standard Print Format cannot be updated" +msgstr "Standard utskriftsformat kan ikke oppdateres" + +#: frappe/printing/doctype/print_style/print_style.py:31 +msgid "Standard Print Style cannot be changed. Please duplicate to edit." +msgstr "Standard utskriftsstil kan ikke endres. Vennligst dupliser for å redigere." + +#: frappe/desk/reportview.py:355 +msgid "Standard Reports cannot be deleted" +msgstr "Standardrapporter kan ikke slettes" + +#: frappe/desk/reportview.py:326 +msgid "Standard Reports cannot be edited" +msgstr "Standardrapporter kan ikke redigeres" + +#. Label of the standard_menu_items (Section Break) field in DocType 'Portal +#. Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Standard Sidebar Menu" +msgstr "Standard sidefeltmeny" + +#: frappe/website/doctype/web_form/web_form.js:40 +msgid "Standard Web Forms can not be modified, duplicate the Web Form instead." +msgstr "Standard webskjemaer kan ikke endres, dupliser webskjemaet i stedet." + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Standard rich text editor with controls" +msgstr "Standard riktekst-redigerer med formateringsverktøy" + +#: frappe/core/doctype/role/role.py:46 +msgid "Standard roles cannot be disabled" +msgstr "Standardroller kan ikke deaktiveres" + +#: frappe/core/doctype/role/role.py:32 +msgid "Standard roles cannot be renamed" +msgstr "Standardroller kan ikke gis nye navn" + +#: frappe/core/doctype/user_type/user_type.py:61 +msgid "Standard user type {0} can not be deleted." +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:309 +#: frappe/printing/page/print/print.js:356 +msgid "Start" +msgstr "Start" + +#. Label of the start_date (Date) field in DocType 'Auto Repeat' +#. Label of the start_date (Date) field in DocType 'Audit Trail' +#. Label of the start_date (Datetime) field in DocType 'Web Page' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/public/js/frappe/utils/common.js:409 +#: frappe/website/doctype/web_page/web_page.json +msgid "Start Date" +msgstr "Startdato" + +#. 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 "Felt for startdato" + +#: frappe/core/doctype/data_import/data_import.js:110 +msgid "Start Import" +msgstr "Start import" + +#: frappe/core/doctype/recorder/recorder_list.js:201 +msgid "Start Recording" +msgstr "Start opptak" + +#. Label of the birth_date (Datetime) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Start Time" +msgstr "Starttid" + +#: frappe/templates/includes/comments/comments.html:8 +msgid "Start a new discussion" +msgstr "Start en ny diskusjon …" + +#: frappe/core/doctype/data_export/exporter.py:22 +msgid "Start entering data below this line" +msgstr "Begynn å legge inn data nedenfor denne linjen" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:165 +msgid "Start new Format" +msgstr "Start nytt format" + +#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "StartTLS" +msgstr "StartTLS" + +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Started" +msgstr "Startet" + +#. Label of the started_at (Datetime) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Started At" +msgstr "Startet kl." + +#: frappe/desk/page/setup_wizard/setup_wizard.js:286 +msgid "Starting Frappe ..." +msgstr "Starter Frappe..." + +#. Label of the starts_on (Datetime) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Starts on" +msgstr "Begynner på" + +#. Label of the state (Data) field in DocType 'Token Cache' +#. Label of the state (Link) field in DocType 'Workflow Document State' +#. Label of the workflow_state_name (Data) field in DocType 'Workflow State' +#. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/workflow/doctype/workflow/workflow.js:162 +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "State" +msgstr "Tilstand" + +#: frappe/public/js/workflow_builder/components/Properties.vue:26 +msgid "State Properties" +msgstr "Egenskaper for tilstand" + +#. Label of the state (Data) field in DocType 'Address' +#. Label of the state (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "State/Province" +msgstr "Delstat/provins" + +#. Label of the document_states_section (Tab Break) field in DocType 'DocType' +#. Label of the states (Table) field in DocType 'Customize Form' +#. Label of the states_head (Section Break) field in DocType 'Workflow' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/workflow/doctype/workflow/workflow.json +msgid "States" +msgstr "Tilstander" + +#. Label of the parameters (Table) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Static Parameters" +msgstr "Statiske parametere" + +#. Label of the statistics_section (Section Break) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Statistics" +msgstr "Statistikk" + +#. Label of the stats_section (Section Break) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/form/dashboard.js:43 +#: frappe/public/js/frappe/form/templates/form_dashboard.html:13 +msgid "Stats" +msgstr "Statistikk" + +#. 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 "Tidsintervall for statistikk" + +#. Label of the status (Select) field in DocType 'Auto Repeat' +#. Label of the status (Select) field in DocType 'Contact' +#. Label of the status (Select) field in DocType 'Activity Log' +#. Label of the status_section (Section Break) field in DocType 'Communication' +#. Label of the status (Select) field in DocType 'Communication' +#. Label of the status (Select) field in DocType 'Data Import' +#. Label of the status (Select) field in DocType 'Permission Log' +#. Label of the status (Select) field in DocType 'Prepared Report' +#. Label of the status (Select) field in DocType 'RQ Job' +#. Label of the status (Data) field in DocType 'RQ Worker' +#. Label of the status (Select) field in DocType 'Scheduled Job Log' +#. Label of the status_section (Section Break) field in DocType 'Scheduled Job +#. Type' +#. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' +#. Label of the status (Select) field in DocType 'Event' +#. Label of the status (Select) field in DocType 'Kanban Board Column' +#. Label of the status (Select) field in DocType 'ToDo' +#. Label of the status (Select) field in DocType 'Email Queue' +#. Label of the status (Select) field in DocType 'Email Queue Recipient' +#. Label of the status (Select) field in DocType 'Integration Request' +#. Label of the status (Select) field in DocType 'OAuth Bearer Token' +#. Label of the status (Select) field in DocType 'Personal Data Deletion +#. Request' +#. Label of the status (Select) field in DocType 'Personal Data Deletion Step' +#. Label of the status (Select) field in DocType 'Workflow Action' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import/data_import.js:483 +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Status" +msgstr "Status" + +#: frappe/www/update-password.html:188 +msgid "Status Updated" +msgstr "Status oppdatert" + +#: frappe/email/doctype/email_queue/email_queue.js:37 +msgid "Status Updated. The email will be picked up in the next scheduled run." +msgstr "Status oppdatert. E-posten vil bli hentet i neste planlagte kjøring." + +#: frappe/www/message.html:24 +msgid "Status: {0}" +msgstr "Status: {0}" + +#. Label of the step (Link) field in DocType 'Onboarding Step Map' +#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json +msgid "Step" +msgstr "Trinn" + +#. 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 "Trinn" + +#: frappe/www/qrcode.html:11 +msgid "Steps to verify your login" +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:455 +msgid "Sticky" +msgstr "Klebrig" + +#: frappe/core/doctype/recorder/recorder_list.js:87 +msgid "Stop" +msgstr "Stopp" + +#. Label of the stopped (Check) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Stopped" +msgstr "Stoppet" + +#. Label of the db_storage_usage (Float) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Storage Usage (MB)" +msgstr "Bruk av lagringsplass (MB)" + +#. Label of the top_db_tables (Table) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Storage Usage By Table" +msgstr "Bruk av lagringsplass etter tabell" + +#. Label of the store_attached_pdf_document (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Store Attached PDF Document" +msgstr "Lagre vedlagt PDF-dokument" + +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +msgstr "Lagre API-hemmeligheten på en sikker måte. Den vil ikke bli vist igjen." + +#. 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 "Lagrer JSON for sist kjente versjon av ulike installerte apper. Den brukes til å vise utgivelsesmerknader." + +#. Description of the 'Last Reset Password Key Generated On' (Datetime) field +#. in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Stores the datetime when the last reset password key was generated." +msgstr "Lagrer tidspunktet da den siste tilbakestillingen av passordnøkkelen ble generert." + +#: frappe/utils/password_strength.py:97 +msgid "Straight rows of keys are easy to guess" +msgstr "Rette rader med taster er lette å gjette" + +#. Label of the strip_exif_metadata_from_uploaded_images (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Strip EXIF tags from uploaded images" +msgstr "Fjern EXIF-tagger fra opplastede bilder" + +#: frappe/public/js/frappe/form/controls/password.js:89 +msgid "Strong" +msgstr "Sterk" + +#. Label of the custom_css (Tab Break) field in DocType 'Web Page' +#. Label of the style (Select) field in DocType 'Workflow State' +#: frappe/website/doctype/web_page/web_page.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Style" +msgstr "Stil" + +#. Label of the section_break_9 (Section Break) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Style Settings" +msgstr "Innstillinger for stil" + +#. 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 "Stilen representerer knappefargen: Suksess - Grønn, Fare - Rød, Invers - Svart, Primær - Mørkeblå, Info - Lyseblå, Advarsel - Oransje" + +#. Label of the stylesheet_section (Tab Break) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Stylesheet" +msgstr "Stilark" + +#. Description of the 'Fraction' (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Sub-currency. For e.g. \"Cent\"" +msgstr "Undervaluta. For eksempel \"Cent\"" + +#. Description of the 'Subdomain' (Small Text) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Sub-domain provided by erpnext.com" +msgstr "Underdomene levert av erpnext.com" + +#. Label of the subdomain (Small Text) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Subdomain" +msgstr "Underdomenet" + +#. Label of the subject (Data) field in DocType 'Auto Repeat' +#. Label of the subject (Small Text) field in DocType 'Activity Log' +#. Label of the subject (Text) field in DocType 'Comment' +#. Label of the subject (Small Text) field in DocType 'Communication' +#. Label of the subject (Small Text) field in DocType 'Event' +#. Label of the subject (Text) field in DocType 'Notification Log' +#. Label of the subject (Data) field in DocType 'Email Template' +#. Label of the subject (Data) field in DocType 'Notification' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/email/doctype/notification/notification.js:204 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/views/communication.js:119 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:63 +msgid "Subject" +msgstr "Emne" + +#. Label of the subject_field (Data) field in DocType 'DocType' +#. Label of the subject_field (Data) field in DocType 'Customize Form' +#. Label of the subject_field (Select) field in DocType 'Calendar View' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +msgid "Subject Field" +msgstr "Emnefelt" + +#: frappe/core/doctype/doctype/doctype.py:1949 +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" + +#. Name of a DocType +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Submission Queue" +msgstr "Kø for innsending" + +#. Label of the submit (Check) field in DocType 'Custom DocPerm' +#. Label of the submit (Check) field in DocType 'DocPerm' +#. Label of the submit (Check) field in DocType 'DocShare' +#. Label of the submit (Check) field in DocType 'User Document Type' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_permission/user_permission_list.js:138 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/quick_entry.js:225 +#: frappe/public/js/frappe/ui/capture.js:307 +#: 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:2233 +msgctxt "Button in list view actions menu" +msgid "Submit" +msgstr "Registrer" + +#: frappe/website/doctype/web_form/templates/web_form.html:47 +msgctxt "Button in web form" +msgid "Submit" +msgstr "Registrer" + +#: frappe/public/js/frappe/ui/dialog.js:64 +msgctxt "Primary action in dialog" +msgid "Submit" +msgstr "Registrer" + +#: frappe/public/js/frappe/ui/messages.js:97 +msgctxt "Primary action of prompt dialog" +msgid "Submit" +msgstr "Registrer" + +#: frappe/public/js/frappe/desk.js:227 +msgctxt "Submit password for Email Account" +msgid "Submit" +msgstr "Registrer" + +#. 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 "Registrer etter import" + +#: frappe/core/page/permission_manager/permission_manager_help.html:39 +msgid "Submit an Issue" +msgstr "Registrer et problem" + +#: frappe/website/doctype/web_form/templates/web_form.html:163 +msgctxt "Button in web form" +msgid "Submit another response" +msgstr "Registrer et nytt svar" + +#. Label of the button_label (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Submit button label" +msgstr "Registrer knappetikett" + +#. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 +msgid "Submit on Creation" +msgstr "Registrer ved opprettelse" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:395 +msgid "Submit this document to complete this step." +msgstr "Registrer dette dokumentet for å fullføre dette trinnet." + +#: frappe/public/js/frappe/form/form.js:1221 +msgid "Submit this document to confirm" +msgstr "Registrer dette dokumentet for å bekrefte" + +#: frappe/public/js/frappe/list/list_view.js:2238 +msgctxt "Title of confirmation dialog" +msgid "Submit {0} documents?" +msgstr "Registrer {0} dokumenter?" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/model/indicator.js:95 +#: frappe/public/js/frappe/ui/filters/filter.js:539 +#: frappe/website/doctype/web_form/templates/web_form.html:143 +msgid "Submitted" +msgstr "Registrert" + +#: frappe/workflow/doctype/workflow/workflow.py:104 +msgid "Submitted Document cannot be converted back to draft. Transition row {0}" +msgstr "Registrert dokument kan ikke konverteres tilbake til utkast. Overgangsrad {0}" + +#: frappe/public/js/workflow_builder/utils.js:176 +msgid "Submitted document cannot be converted back to draft while transitioning from {0} State to {1} State" +msgstr "Registrert dokument kan ikke konverteres tilbake til utkast under overgang fra {0} Status til {1} Status" + +#: frappe/public/js/frappe/form/save.js:10 +msgctxt "Freeze message while submitting a document" +msgid "Submitting" +msgstr "Registrering" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:88 +msgid "Submitting {0}" +msgstr "Registrering {0}" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Subsidiary" +msgstr "Datterorganisasjon" + +#. Label of the subtitle (Data) field in DocType 'Module Onboarding' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Subtitle" +msgstr "Undertittel" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#. Label of the success (Check) field in DocType 'Data Import Log' +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/data_import/data_import.js:459 +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/desk/doctype/bulk_update/bulk_update.js:31 +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 +#: frappe/public/js/frappe/form/grid.js:1172 +#: frappe/public/js/frappe/views/translation_manager.js:21 +#: frappe/templates/includes/login/login.js:230 +#: frappe/templates/includes/login/login.js:236 +#: frappe/templates/includes/login/login.js:269 +#: frappe/templates/includes/login/login.js:277 +#: frappe/templates/pages/integrations/gcalendar-success.html:9 +#: frappe/workflow/doctype/workflow_action/workflow_action.py:171 +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Success" +msgstr "Suksess" + +#. Name of a DocType +#: frappe/core/doctype/success_action/success_action.json +msgid "Success Action" +msgstr "Handling etter suksess" + +#. Label of the success_message (Data) field in DocType 'Module Onboarding' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Success Message" +msgstr "Suksess-melding" + +#. Label of the success_uri (Data) field in DocType 'Token Cache' +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Success URI" +msgstr "URI etter suksess" + +#. Label of the success_url (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Success URL" +msgstr "URL etter suksess" + +#. Label of the success_message (Text) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Success message" +msgstr "Suksess-melding" + +#. Label of the success_title (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Success title" +msgstr "Suksesstittel" + +#. 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 "Antall vellykkede jobber" + +#: frappe/model/workflow.py:363 +msgid "Successful Transactions" +msgstr "Vellykkede transaksjoner" + +#: frappe/model/rename_doc.py:698 +msgid "Successful: {0} to {1}" +msgstr "Vellykket: {0} til {1}" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100 +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113 +msgid "Successfully Updated" +msgstr "Vellykket oppdatert" + +#: frappe/core/doctype/data_import/data_import.js:423 +msgid "Successfully imported {0}" +msgstr "Vellykket import av {0}" + +#: frappe/core/doctype/data_import/data_import.js:144 +msgid "Successfully imported {0} out of {1} records." +msgstr "Vellykket import av {0} ut av {1}-oppføringer." + +#: frappe/desk/doctype/form_tour/form_tour.py:87 +msgid "Successfully reset onboarding status for all users." +msgstr "Vellykket tilbakestilling av onboarding-status for alle brukere." + +#: frappe/public/js/frappe/views/translation_manager.js:22 +msgid "Successfully updated translations" +msgstr "Vellykket oppdatering av oversettelser" + +#: frappe/core/doctype/data_import/data_import.js:431 +msgid "Successfully updated {0}" +msgstr "Vellykket oppdatering av {0}" + +#: frappe/core/doctype/data_import/data_import.js:149 +msgid "Successfully updated {0} out of {1} records." +msgstr "Vellykket oppdatering av {0} av {1}}-oppføringer." + +#: frappe/core/doctype/recorder/recorder.js:15 +msgid "Suggest Optimizations" +msgstr "Foreslå optimaliseringer" + +#. Label of the suggested_indexes (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Suggested Indexes" +msgstr "Foreslåtte indekser" + +#: frappe/core/doctype/user/user.py:733 +msgid "Suggested Username: {0}" +msgstr "Foreslått brukernavn: {0}" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/ui/group_by/group_by.js:20 +msgid "Sum" +msgstr "Sum" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 +msgid "Sum of {0}" +msgstr "Summen av {0}" + +#: frappe/public/js/frappe/views/interaction.js:88 +msgid "Summary" +msgstr "Sammendrag" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the sunday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Sunday" +msgstr "Søndag" + +#: frappe/email/doctype/email_queue/email_queue_list.js:27 +msgid "Suspend Sending" +msgstr "Sett sending på pause" + +#: frappe/public/js/frappe/ui/capture.js:276 +msgid "Switch Camera" +msgstr "Bytt kamera" + +#: frappe/public/js/frappe/desk.js:96 +#: frappe/public/js/frappe/ui/theme_switcher.js:11 +msgid "Switch Theme" +msgstr "Bytt tema" + +#: frappe/templates/includes/navbar/navbar_login.html:17 +msgid "Switch To Desk" +msgstr "Bytt til skrivebord" + +#: frappe/public/js/frappe/list/list_sidebar.js:319 +msgid "Switch to Frappe CRM for smarter sales" +msgstr "Bytt til Frappe CRM for smartere salg" + +#: frappe/public/js/frappe/ui/capture.js:281 +msgid "Switching Camera" +msgstr "Bytter Kamera" + +#. Label of the symbol (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Symbol" +msgstr "Symbol" + +#. 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 "Synkroniser" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:28 +msgid "Sync Calendar" +msgstr "Synkroniser kalender" + +#: frappe/integrations/doctype/google_contacts/google_contacts.js:28 +msgid "Sync Contacts" +msgstr "Synkroniser kontakter" + +#. Label of the sync_as_public (Check) field in DocType 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Sync events from Google as public" +msgstr "Synkroniser hendelser fra Google som offentlige" + +#: frappe/custom/doctype/customize_form/customize_form.js:256 +msgid "Sync on Migrate" +msgstr "Synkroniser ved migrering" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:312 +msgid "Sync token was invalid and has been reset, Retry syncing." +msgstr "Synkroniseringstokenet var ugyldig og er tilbakestilt. Prøv å synkronisere på nytt." + +#. Label of the sync_with_google_calendar (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Sync with Google Calendar" +msgstr "Synkroniser med Google Kalender" + +#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Sync with Google Contacts" +msgstr "Synkroniser med Google Kontakter" + +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46 +msgid "Sync {0} Fields" +msgstr "Synkroniser {0} Felt" + +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:100 +msgid "Synced Fields" +msgstr "Synkroniserte felt" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:31 +#: frappe/integrations/doctype/google_contacts/google_contacts.js:31 +msgid "Syncing" +msgstr "Synkronisering" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:19 +msgid "Syncing {0} of {1}" +msgstr "Synkronisering {0} av {1}" + +#: frappe/utils/data.py:2573 +msgid "Syntax Error" +msgstr "Syntaksfeil" + +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "System" +msgstr "System" + +#. Name of a DocType +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/public/js/frappe/ui/dropdown_console.js:4 +msgid "System Console" +msgstr "Systemkonsoll" + +#: frappe/custom/doctype/custom_field/custom_field.py:408 +msgid "System Generated Fields can not be renamed" +msgstr "Systemgenererte felt kan ikke gis nytt navn" + +#. Label of a standard help item +#. Type: Route +#: frappe/hooks.py +msgid "System Health" +msgstr "Systemhelse" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "System Health Report" +msgstr "Rapport om systemhelse" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json +msgid "System Health Report Errors" +msgstr "Feil i systemhelserapporten" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json +msgid "System Health Report Failing Jobs" +msgstr "Systemhelserapport – mislykkede jobber" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json +msgid "System Health Report Queue" +msgstr "Kø for systemhelserapporter" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json +msgid "System Health Report Tables" +msgstr "Tabeller for systemhelserapport" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "System Health Report Workers" +msgstr "Systemhelserapport – arbeidsprosesser" + +#. Label of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "System Logs" +msgstr "Systemlogger" + +#. Name of a role +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/gender/gender.json +#: frappe/contacts/doctype/salutation/salutation.json +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/data_export/data_export.json +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/core/doctype/deleted_document/deleted_document.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/domain/domain.json +#: frappe/core/doctype/domain_settings/domain_settings.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/file/file.json +#: frappe/core/doctype/installed_applications/installed_applications.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/log_settings/log_settings.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/module_profile/module_profile.json +#: frappe/core/doctype/navbar_settings/navbar_settings.json +#: frappe/core/doctype/package/package.json +#: frappe/core/doctype/package_import/package_import.json +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/patch_log/patch_log.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/role_replication/role_replication.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/scheduler_event/scheduler_event.json +#: frappe/core/doctype/session_default_settings/session_default_settings.json +#: frappe/core/doctype/sms_log/sms_log.json +#: frappe/core/doctype/sms_settings/sms_settings.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/success_action/success_action.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/version/version.json +#: frappe/core/doctype/view_log/view_log.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/desk/doctype/console_log/console_log.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/global_search_settings/global_search_settings.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/route_history/route_history.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/tag_link/tag_link.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_rule/email_rule.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/email/doctype/notification/notification.json +#: frappe/email/doctype/unhandled_email/unhandled_email.json +#: frappe/geo/doctype/country/country.json +#: frappe/geo/doctype/currency/currency.json +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/printing/doctype/print_heading/print_heading.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/website/doctype/discussion_reply/discussion_reply.json +#: frappe/website/doctype/discussion_topic/discussion_topic.json +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_route_meta/website_route_meta.json +#: frappe/workflow/doctype/workflow/workflow.json +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "System Manager" +msgstr "Systemansvarlig" + +#: frappe/desk/page/backups/backups.js:38 +msgid "System Manager privileges required." +msgstr "Rettigheter som systemansvarlig kreves." + +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "System Notification" +msgstr "Systemvarsel" + +#. Label of the system_page (Check) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "System Page" +msgstr "Systemside" + +#. Name of a DocType +#: frappe/core/doctype/system_settings/system_settings.json +msgid "System Settings" +msgstr "Systeminnstillinger" + +#. 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 "Systemadministratorer har tillatelse som standard" + +#: frappe/public/js/frappe/utils/number_systems.js:5 +msgctxt "Number system" +msgid "T" +msgstr "T" + +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "TOS-URI" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Tab Break" +msgstr "Tabulatorskift" + +#: frappe/public/js/form_builder/components/Tabs.vue:135 +msgid "Tab Label" +msgstr "Faneetikett" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the table (Data) field in DocType 'Recorder Suggested Index' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the table (Data) field in DocType 'System Health Report Tables' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/data_export/exporter.py:23 +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:39 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Table" +msgstr "Tabell" + +#. 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 "Tabell-oppdeling" + +#: frappe/core/doctype/version/version_view.html:73 +msgid "Table Field" +msgstr "Tabellfelt" + +#. Label of the table_fieldname (Data) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Table Fieldname" +msgstr "Feltnavn for tabell" + +#: frappe/core/doctype/doctype/doctype.py:1204 +msgid "Table Fieldname Missing" +msgstr "Feltnavn for tabell mangler" + +#. Label of the table_html (HTML) field in DocType 'Version' +#: frappe/core/doctype/version/version.json +msgid "Table HTML" +msgstr "Tabell-HTML" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Table MultiSelect" +msgstr "Flervalg av tabeller" + +#: frappe/custom/doctype/customize_form/customize_form.js:229 +msgid "Table Trimmed" +msgstr "Tabellen er forkortet" + +#: frappe/public/js/frappe/form/grid.js:1171 +msgid "Table updated" +msgstr "Tabellen er oppdatert" + +#: frappe/model/document.py:1578 +msgid "Table {0} cannot be empty" +msgstr "Tabell {0} kan ikke være tom" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Tabloid" +msgstr "Tabloid" + +#. Name of a DocType +#: frappe/desk/doctype/tag/tag.json +msgid "Tag" +msgstr "Stikkord" + +#. Name of a DocType +#: frappe/desk/doctype/tag_link/tag_link.json +msgid "Tag Link" +msgstr "Lenke for stikkord" + +#: frappe/model/meta.py:59 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:81 +#: frappe/public/js/frappe/list/bulk_operations.js:430 +#: frappe/public/js/frappe/list/list_sidebar.html:48 +#: frappe/public/js/frappe/list/list_sidebar.html:60 +#: frappe/public/js/frappe/list/list_sidebar.js:253 +#: frappe/public/js/frappe/model/meta.js:207 +#: frappe/public/js/frappe/model/model.js:133 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:171 +msgid "Tags" +msgstr "Stikkord" + +#: frappe/public/js/frappe/ui/capture.js:220 +msgid "Take Photo" +msgstr "Ta bilde" + +#. Label of the target (Data) field in DocType 'Portal Menu Item' +#. Label of the target (Small Text) field in DocType 'Website Route Redirect' +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +msgid "Target" +msgstr "Mål" + +#. Label of the task (Select) field in DocType 'Workflow Transition Task' +#: frappe/desk/doctype/todo/todo_calendar.js:19 +#: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Task" +msgstr "Oppgave" + +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "Oppgaver" + +#. Label of the sb1 (Section Break) field in DocType 'About Us Settings' +#. Label of the team_members (Table) field in DocType 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/www/about.html:45 +msgid "Team Members" +msgstr "Lagmedlemmer" + +#. Label of the team_members_heading (Data) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Team Members Heading" +msgstr "Overskrift for lagmedlemmer" + +#. Label of the team_members_subtitle (Small Text) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Team Members Subtitle" +msgstr "Undertittel for lagmedlemmer" + +#. Label of the telemetry_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Telemetry" +msgstr "Telemetri" + +#. Label of the template (Link) field in DocType 'Auto Repeat' +#. Label of the template (Code) field in DocType 'Address Template' +#. Label of the template (Code) field in DocType 'Print Format Field Template' +#. Label of the template (Code) field in DocType 'Web Template' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/website/doctype/web_template/web_template.json +msgid "Template" +msgstr "Mal" + +#: frappe/core/doctype/data_import/importer.py:483 +#: frappe/core/doctype/data_import/importer.py:610 +msgid "Template Error" +msgstr "Malfeil" + +#. Label of the template_file (Data) field in DocType 'Print Format Field +#. Template' +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +msgid "Template File" +msgstr "Malfil" + +#. Label of the template_options (Code) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Template Options" +msgstr "Alternativer for maler" + +#. Label of the template_warnings (Code) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Template Warnings" +msgstr "Advarsler om maler" + +#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:78 +msgid "Templates" +msgstr "Maler" + +#: frappe/core/doctype/user/user.py:1042 +msgid "Temporarily Disabled" +msgstr "Midlertidig deaktivert" + +#: frappe/core/doctype/translation/test_translation.py:47 +#: frappe/core/doctype/translation/test_translation.py:54 +msgid "Test Data" +msgstr "Testdata" + +#. Label of the test_job_id (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Test Job ID" +msgstr "Testjobb-ID" + +#: frappe/core/doctype/translation/test_translation.py:49 +#: frappe/core/doctype/translation/test_translation.py:57 +msgid "Test Spanish" +msgstr "Test på spansk" + +#: frappe/core/doctype/file/test_file.py:379 +msgid "Test_Folder" +msgstr "Test_Folder" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Text" +msgstr "Tekst" + +#. Label of the text_align (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Text Align" +msgstr "Tekstjustering" + +#. Label of the text_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Text Color" +msgstr "Tekstfarge" + +#. Label of the text_content (Code) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Text Content" +msgstr "Tekstinnhold" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Text Editor" +msgstr "Tekstbehandler" + +#: frappe/templates/emails/password_reset.html:5 +msgid "Thank you" +msgstr "Tusen takk" + +#: frappe/www/contact.py:39 +msgid "Thank you for reaching out to us. We will get back to you at the earliest.\n\n\n" +"Your query:\n\n" +"{0}" +msgstr "Takk for at du kontaktet oss. Vi kontakter deg så snart som mulig.\n\n\n" +"Din forespørsel:\n\n" +"{0}" + +#: frappe/website/doctype/web_form/templates/web_form.html:147 +msgid "Thank you for spending your valuable time to fill this form" +msgstr "Takk for at du bruker av din verdifulle tid på å fylle ut dette skjemaet" + +#: frappe/templates/emails/auto_reply.html:1 +msgid "Thank you for your email" +msgstr "Takk for e-posten" + +#: frappe/website/doctype/help_article/templates/help_article.html:27 +msgid "Thank you for your feedback!" +msgstr "Takk for tilbakemeldingen!" + +#: frappe/templates/includes/contact.js:36 +msgid "Thank you for your message" +msgstr "Takk for meldingen" + +#: frappe/templates/emails/new_user.html:16 +msgid "Thanks" +msgstr "Takk" + +#: frappe/templates/emails/auto_repeat_fail.html:3 +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:1194 +msgid "The CSV format is case sensitive" +msgstr "CSV-formatet skiller mellom store og små bokstaver" + +#. Description of the 'Client ID' (Data) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "The Client ID obtained from the Google Cloud Console under \n" +"\"APIs & Services\" > \"Credentials\"\n" +"" +msgstr "Klient-ID-en som ble hentet fra Google Cloud Console under \n" +"«API-er & Tjenester» > «Legitimasjon»\n" +"" + +#: frappe/email/doctype/notification/notification.py:219 +msgid "The Condition '{0}' is invalid" +msgstr "Betingelsen '{0}' er ugyldig" + +#: frappe/core/doctype/file/file.py:220 +msgid "The File URL you've entered is incorrect" +msgstr "Fil-URL-en du har angitt, er feil" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 +msgid "The Next Scheduled Date cannot be later than the End Date." +msgstr "Neste planlagte dato kan ikke være senere enn sluttdatoen." + +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:29 +msgid "The Push Relay Server URL key (`push_relay_server_url`) is missing in your site config" +msgstr "URL-nøkkelen for Push Relay Server (`push_relay_server_url`) mangler i konfigurasjonen av nettstedet ditt" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:367 +msgid "The User record for this request has been auto-deleted due to inactivity by system admins." +msgstr "Brukeroppføringen er automatisk slettet pga. inaktivitet." + +#: frappe/public/js/frappe/desk.js:162 +msgid "The application has been updated to a new version, please refresh this page" +msgstr "Programmet er oppdatert til en ny versjon, last inn denne siden på nytt." + +#. Description of the 'Application Name' (Data) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "The application name will be used in the Login page." +msgstr "Applikasjonsnavnet vil bli brukt på påloggingssiden." + +#: frappe/public/js/frappe/views/interaction.js:323 +msgid "The attachments could not be correctly linked to the new document" +msgstr "Vedleggene kunne ikke kobles riktig til det nye dokumentet" + +#. Description of the 'API Key' (Data) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "The browser API key obtained from the Google Cloud Console under \n" +"\"APIs & Services\" > \"Credentials\"\n" +"" +msgstr "Nettleserens API-nøkkel hentet fra Google Cloud Console under \n" +"\"API-er & Tjenester\" > \"Legitimasjon\"\n" +"" + +#: frappe/database/database.py:474 +msgid "The changes have been reverted." +msgstr "Endringene er tilbakeført." + +#: frappe/core/doctype/data_import/importer.py:1009 +msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." +msgstr "Kolonnen {0} har {1} forskjellige datoformater. Automatisk innstilling {2} som standardformat, siden det er det vanligste. Endre andre verdier i denne kolonnen til dette formatet." + +#: frappe/templates/includes/comments/comments.py:48 +msgid "The comment cannot be empty" +msgstr "Kommentaren kan ikke være tom" + +#: frappe/templates/emails/workflow_action.html:9 +msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone." +msgstr "Innholdet i denne e-posten er strengt konfidensielt. Vennligst ikke videresend denne e-posten til noen." + +#: frappe/public/js/frappe/list/list_view.js:687 +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." + +#. Description of the 'Code' (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "The country's ISO 3166 ALPHA-2 code." +msgstr "Landets ISO 3166 ALPHA-2-kode." + +#: frappe/public/js/frappe/views/interaction.js:301 +msgid "The document could not be correctly assigned" +msgstr "Dokumentet kunne ikke tilordnes riktig" + +#: frappe/public/js/frappe/views/interaction.js:295 +msgid "The document has been assigned to {0}" +msgstr "Dokumentet har blitt tilordnet til {0}" + +#. Description of the 'Parent Document Type' (Link) field in DocType 'Dashboard +#. Chart' +#. Description of the 'Parent Document Type' (Link) field in DocType 'Number +#. Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "The document type selected is a child table, so the parent document type is required." +msgstr "Den valgte dokumenttypen er en underordnet tabell, så den overordnede dokumenttypen (DocType) er obligatorisk." + +#: frappe/core/doctype/user_type/user_type.py:110 +msgid "The field {0} is mandatory" +msgstr "Feltet {0} er påkrevet" + +#: frappe/core/doctype/file/file.py:157 +msgid "The fieldname you've specified in Attached To Field is invalid" +msgstr "Feltnavnet du har angitt i \"Vedlagt til\"-feltet er ugyldig" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:62 +msgid "The following Assignment Days have been repeated: {0}" +msgstr "Følgende oppgavedager er gjentatt: {0}" + +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'" +msgstr "Følgende Header-skript vil legge til gjeldende dato i et element i 'Header HTML' med klassen 'header-content'" + +#: frappe/core/doctype/data_import/importer.py:1089 +msgid "The following values are invalid: {0}. Values must be one of {1}" +msgstr "Følgende verdier er ugyldige: {0}. Verdiene må være en av {1}" + +#: frappe/core/doctype/data_import/importer.py:1046 +msgid "The following values do not exist for {0}: {1}" +msgstr "Følgende verdier finnes ikke for {0}: {1}" + +#: frappe/core/doctype/user_type/user_type.py:89 +msgid "The limit has not set for the user type {0} in the site config file." +msgstr "Grensen er ikke angitt for brukertypen {0} i konfigurasjonsfilen for nettstedet." + +#: frappe/templates/emails/login_with_email_link.html:21 +msgid "The link will expire in {0} minutes" +msgstr "Lenken utløper om {0} minutter" + +#: frappe/www/login.py:194 +msgid "The link you trying to login is invalid or expired." +msgstr "Lenken du prøver å logge inn med er ugyldig eller utløpt." + +#: frappe/website/doctype/web_page/web_page.js:125 +msgid "The meta description is an HTML attribute that provides a brief summary of a web page. Search engines such as Google often display the meta description in search results, which can influence click-through rates." +msgstr "Metabeskrivelsen er et HTML-attributt som gir et kort sammendrag av en nettside. Søkemotorer som Google viser ofte metabeskrivelsen i søkeresultatene, noe som kan påvirke klikkfrekvensen." + +#: frappe/website/doctype/web_page/web_page.js:132 +msgid "The meta image is unique image representing the content of the page. Images for this Card should be at least 280px in width, and at least 150px in height." +msgstr "Metabilde er et unikt bilde som representerer innholdet på siden. Bilder for dette kortet bør være minst 280 piksler i bredden og minst 150 piksler i høyden." + +#. 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 "Navnet som vil vises i Google Kalender" + +#. 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 "Den neste omvisningen starter der brukeren slapp." + +#. 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 "Antall sekunder til forespørselen utløper" + +#: frappe/www/update-password.html:101 +msgid "The password of your account has expired." +msgstr "Passordet til kontoen din har utløpt." + +#: 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." + +#. Description of the 'App ID' (Data) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "The project number obtained from Google Cloud Console under \n" +"\"IAM & Admin\" > \"Settings\"\n" +"" +msgstr "Prosjektnummeret hentet fra Google Cloud Console under \n" +"\"IAM & Admin\" > \"Innstillinger\"\n" +"" + +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

    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:1000 +msgid "The reset password link has been expired" +msgstr "Lenken for tilbakestilling av passord er utløpt" + +#: frappe/core/doctype/user/user.py:1002 +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 +msgid "The resource you are looking for is not available" +msgstr "Ressursen du leter etter er ikke tilgjengelig" + +#: frappe/core/doctype/user_type/user_type.py:114 +msgid "The role {0} should be a custom role." +msgstr "Rollen {0} bør være en egendefinert rolle." + +#: frappe/core/doctype/audit_trail/audit_trail.py:46 +msgid "The selected document {0} is not a {1}." +msgstr "Det valgte dokumentet {0} er ikke et {1}." + +#: frappe/utils/response.py:336 +msgid "The system is being updated. Please refresh again after a few moments." +msgstr "Systemet oppdateres. Vennligst oppdater på nytt om noen få øyeblikk." + +#: frappe/core/page/permission_manager/permission_manager_help.html:9 +msgid "The system provides many pre-defined roles. You can add new roles to set finer permissions." +msgstr "Systemet tilbyr mange forhåndsdefinerte roller. Du kan legge til nye roller for å angi mer detaljerte tillatelser." + +#: frappe/core/doctype/user_type/user_type.py:97 +msgid "The total number of user document types limit has been crossed." +msgstr "Grensen for totalt antall bruker-dokumenttyper (DocType) er overskredet." + +#: 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}." + +#. Description of the 'Condition' (Small Text) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "The webhook will be triggered if this expression is true" +msgstr "Webhook-en vil bli utløst hvis dette uttrykket er sant" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 +msgid "The {0} is already on auto repeat {1}" +msgstr "{0} er allerede på automatisk repetisjon {1}" + +#. Label of the section_break_6 (Section Break) field in DocType 'Website +#. Settings' +#. Label of the theme (Data) field in DocType 'Website Theme' +#. Label of the theme_scss (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Theme" +msgstr "Tema" + +#: frappe/public/js/frappe/ui/theme_switcher.js:130 +msgid "Theme Changed" +msgstr "Tema endret" + +#. Label of the bootstrap_theme_section (Tab Break) field in DocType 'Website +#. Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Theme Configuration" +msgstr "Konfigurasjon av tema" + +#. 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" + +#: 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 "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:442 +msgid "There are no upcoming events for you." +msgstr "Det er ingen kommende hendelser for deg." + +#: frappe/website/web_template/discussions/discussions.html:3 +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:973 +msgid "There are {0} with the same filters already in the queue:" +msgstr "Det finnes allerede {0} med de samme filtrene i køen:" + +#: frappe/website/doctype/web_form/web_form.js:81 +#: frappe/website/doctype/web_form/web_form.js:318 +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:1444 +msgid "There can be only one Fold in a form" +msgstr "Det kan bare være én fold i et skjema" + +#: frappe/contacts/doctype/address/address.py:183 +msgid "There is an error in your Address Template {0}" +msgstr "Det er en feil i adressemalen din {0}" + +#: frappe/core/doctype/data_export/exporter.py:162 +msgid "There is no data to be exported" +msgstr "Det er ingen data å eksportere" + +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "Det finnes ingen oppgave som heter \"{}\"" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:492 +msgid "There is nothing new to show you right now." +msgstr "Det er ikke noe nytt å vise deg akkurat nå." + +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 +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:970 +msgid "There is {0} with the same filters already in the queue:" +msgstr "Det finnes allerede {0} med de samme filtrene i køen:" + +#: frappe/core/page/permission_manager/permission_manager.py:156 +msgid "There must be atleast one permission rule." +msgstr "Det må være minst én tillatelsesregel." + +#: frappe/www/error.py:17 +msgid "There was an error building this page" +msgstr "Det oppsto en feil under oppbyggingen av denne siden" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 +msgid "There was an error saving filters" +msgstr "Det oppsto en feil under lagring av filtre" + +#: frappe/public/js/frappe/form/sidebar/attachments.js:216 +msgid "There were errors" +msgstr "Det oppstod feil" + +#: frappe/public/js/frappe/views/interaction.js:277 +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:843 +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 +msgid "There were some errors setting the name, please contact the administrator" +msgstr "Det oppsto noen feil under angivelse av navnet. Kontakt administratoren." + +#. Description of the 'Announcement Widget' (Text Editor) field in DocType +#. 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "These announcements will appear inside a dismissible alert below the Navbar." +msgstr "Disse kunngjøringene vises i et avvisningsbart varsel under Navbar." + +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "Disse feltene brukes til å gi metadata om ressursserveren til klienter som spør etter endepunktet for \"velkjent beskyttet ressurs\"." + +#. Description of the 'LDAP Custom Settings' (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "These settings are required if 'Custom' LDAP Directory is used" +msgstr "Disse innstillingene er påkrevde hvis «Tilpasset» LDAP-katalog brukes" + +#. 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 "Disse verdiene vil bli automatisk oppdatert i transaksjoner, og de vil også være nyttige for å begrense tillatelser for denne brukeren på transaksjoner som inneholder disse verdiene." + +#: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14 +msgid "Third Party Apps" +msgstr "Tredjeparts-apper" + +#. Label of the third_party_authentication (Section Break) field in DocType +#. 'User' +#: frappe/core/doctype/user/user.json +msgid "Third Party Authentication" +msgstr "Autentisering via tredjepart" + +#: frappe/geo/doctype/currency/currency.js:8 +msgid "This Currency is disabled. Enable to use in transactions" +msgstr "Denne valutaen er deaktivert. Aktiver for bruk i transaksjoner" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 +msgid "This Kanban Board will be private" +msgstr "Denne Kanban-tavlen forblir privat" + +#: frappe/public/js/frappe/ui/filters/filter.js:666 +msgid "This Month" +msgstr "Denne måneden" + +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "Denne PDF-filen kan ikke lastes opp fordi den inneholder usikkert innhold." + +#: frappe/public/js/frappe/ui/filters/filter.js:670 +msgid "This Quarter" +msgstr "Dette kvartalet" + +#: frappe/public/js/frappe/ui/filters/filter.js:662 +msgid "This Week" +msgstr "Denne uken" + +#: frappe/public/js/frappe/ui/filters/filter.js:674 +msgid "This Year" +msgstr "I år" + +#: frappe/custom/doctype/customize_form/customize_form.js:220 +msgid "This action is irreversible. Do you wish to continue?" +msgstr "Denne handlingen kan ikke angres. Vil du fortsette?" + +#: frappe/__init__.py:546 +msgid "This action is only allowed for {}" +msgstr "Denne handlingen er kun tillatt for {}" + +#: frappe/public/js/frappe/form/toolbar.js:117 +#: frappe/public/js/frappe/model/model.js:706 +msgid "This cannot be undone" +msgstr "Dette kan ikke angres." + +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +msgstr "Dette kortet er som standard kun synlig for Administrator og systemadministratorer. Angi en dokumenttype (DocType) for å dele med brukere som har lesetilgang." + +#. 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 "Dette kortet vil være tilgjengelig for alle brukere hvis dette er angitt" + +#. 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 "Dette diagrammet vil være tilgjengelig for alle brukere hvis dette er angitt" + +#: frappe/custom/doctype/customize_form/customize_form.js:212 +msgid "This doctype has no orphan fields to trim" +msgstr "Denne dokumenttypen har ingen foreldreløse felt å trimme" + +#: frappe/core/doctype/doctype/doctype.py:1055 +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." + +#: frappe/model/delete_doc.py:153 +msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." +msgstr "Dette dokumentet kan ikke slettes akkurat nå, siden det redigeres av en annen bruker. Vennligst prøv igjen etter en stund." + +#: frappe/www/confirm_workflow_action.html:8 +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:1305 +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:1102 +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:475 +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." + +#: frappe/templates/emails/auto_repeat_fail.html:7 +msgid "This email is autogenerated" +msgstr "Denne e-posten er automatisk generert" + +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:30 +msgid "This feature can not be used as dependencies are missing.\n" +"\t\t\t\tPlease contact your system manager to enable this by installing pycups!" +msgstr "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:23 +msgid "This feature is brand new and still experimental" +msgstr "Denne funksjonen er helt ny og fortsatt på eksperimentstadiet" + +#. Description of the 'Depends On' (Code) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "This field will appear only if the fieldname defined here has value OR the rules are true (examples):\n" +"myfield\n" +"eval:doc.myfield=='My Value'\n" +"eval:doc.age>18" +msgstr "Dette feltet vises bare hvis feltnavnet som er definert her, har verdi ELLER reglene er sanne (eksempler):\n" +"myfield\n" +"eval:doc.myfield=='My Value'\n" +"eval:doc.age>18" + +#: frappe/core/doctype/file/file.py:525 +msgid "This file is attached to a protected document and cannot be deleted." +msgstr "Denne filen er knyttet til et beskyttet dokument og kan ikke slettes." + +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:76 +msgid "This file is public and can be accessed by anyone, even without logging in. Mark it private to limit access." +msgstr "Denne filen er offentlig og kan nås av alle, selv uten å logge inn. Merk den som privat for å begrense tilgangen." + +#: frappe/core/doctype/file/file.js:20 +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:1199 +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:2259 +msgid "This form is not editable due to a Workflow." +msgstr "Dette skjemaet kan ikke redigeres på grunn av en arbeidsflyt." + +#. 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 "Dette formatet brukes hvis det ikke finnes et landsspesifikt format" + +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.py:52 +msgid "This geolocation provider is not supported yet." +msgstr "Denne geolokaliseringsleverandøren støttes ikke ennå." + +#. Description of the 'Header' (HTML Editor) field in DocType 'Website +#. Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "This goes above the slideshow." +msgstr "Dette går over lysbildefremvisningen." + +#: frappe/public/js/frappe/views/reports/query_report.js:2197 +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." + +#: frappe/utils/password_strength.py:158 +msgid "This is a top-10 common password." +msgstr "Dette er et av de 10 vanligste passordene." + +#: frappe/utils/password_strength.py:160 +msgid "This is a top-100 common password." +msgstr "Dette er et av de 100 vanligste passordene." + +#: frappe/utils/password_strength.py:162 +msgid "This is a very common password." +msgstr "Dette er et veldig vanlig passord." + +#: frappe/core/doctype/rq_job/rq_job.js:9 +msgid "This is a virtual doctype and data is cleared periodically." +msgstr "Dette er en virtuell dokumenttype (DocType), og dataene slettes med jevne mellomrom." + +#: frappe/templates/emails/auto_reply.html:5 +msgid "This is an automatically generated reply" +msgstr "Dette er et automatisk generert svar" + +#: frappe/utils/password_strength.py:164 +msgid "This is similar to a commonly used password." +msgstr "Dette ligner på et vanlig brukt passord." + +#. Description of the 'Current Value' (Int) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "This is the number of the last created transaction with this prefix" +msgstr "Dette er nummeret på den sist opprettede transaksjonen med dette prefikset" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407 +msgid "This link has already been activated for verification." +msgstr "Denne lenken er allerede aktivert for verifisering." + +#: frappe/utils/verified_command.py:49 +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:431 +msgid "This may get printed on multiple pages" +msgstr "Dette kan bli skrevet ut på flere sider" + +#: frappe/utils/goal.py:109 +msgid "This month" +msgstr "Denne måneden" + +#: frappe/public/js/frappe/views/reports/query_report.js:1045 +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." + +#: frappe/templates/emails/auto_email_report.html:57 +msgid "This report was generated on {0}" +msgstr "Denne rapporten ble generert den {0}" + +#: frappe/public/js/frappe/views/reports/query_report.js:861 +msgid "This report was generated {0}." +msgstr "Denne rapporten ble generert {0}." + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:122 +msgid "This request has not yet been approved by the user." +msgstr "Denne forespørselen er ennå ikke godkjent av brukeren." + +#: frappe/templates/includes/navbar/navbar_items.html:95 +msgid "This site is in read only mode, full functionality will be restored soon." +msgstr "Dette nettstedet er i skrivebeskyttet modus, og full funksjonalitet vil snart bli gjenopprettet." + +#: frappe/core/doctype/doctype/doctype.js:73 +msgid "This site is running in developer mode. Any change made here will be updated in code." +msgstr "Dette nettstedet kjører i utviklermodus. Alle endringer som gjøres her, vil bli oppdatert i koden." + +#: frappe/www/attribution.html:11 +msgid "This software is built on top of many open source packages." +msgstr "Denne programvaren er bygget oppå mange pakker med åpen kildekode." + +#: frappe/website/doctype/web_page/web_page.js:71 +msgid "This title will be used as the title of the webpage as well as in meta tags" +msgstr "Denne tittelen vil bli brukt som tittel på nettsiden og i meta-tagger" + +#: frappe/public/js/frappe/form/controls/base_input.js:129 +msgid "This value is fetched from {0}'s {1} field" +msgstr "Denne verdien hentes fra {0}'s {1} -felt" + +#. Description of the 'Max Report Rows' (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "This value specifies the max number of rows that can be rendered in report view." +msgstr "Denne verdien angir det maksimale antallet rader som kan gjengis i rapportvisningen." + +#: frappe/website/doctype/web_page/web_page.js:85 +msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish" +msgstr "Denne genereres automatisk når du publiserer siden, men du kan også legge inn en rute selv hvis du ønsker det" + +#. Description of the 'Callback Message' (Small Text) field in DocType +#. 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "This will be shown in a modal after routing" +msgstr "Dette vil bli vist i en modal etter ruting" + +#. 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 "Dette vil bli vist til brukeren i en dialogboks etter at rapporten er åpnet" + +#: frappe/www/third_party_apps.html:23 +msgid "This will log out {0} from all other devices" +msgstr "Dette vil logge ut {0} fra alle andre enheter" + +#: frappe/templates/emails/delete_data_confirmation.html:3 +msgid "This will permanently remove your data." +msgstr "Dette vil fjerne dataene dine permanent." + +#: frappe/desk/doctype/form_tour/form_tour.js:103 +msgid "This will reset this tour and show it to all users. Are you sure?" +msgstr "Dette vil tilbakestille denne omvisningen og vise den til alle brukere. Er du sikker?" + +#: frappe/core/doctype/rq_job/rq_job.js:15 +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:1255 +msgid "Throttled" +msgstr "Begrenset" + +#. Label of the thumbnail_url (Small Text) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Thumbnail URL" +msgstr "Miniatyrbilde-URL" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the thursday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Thursday" +msgstr "Torsdag" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the time (Datetime) field in DocType 'Recorder' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Time" +msgstr "Tidspunkt" + +#. Label of the time_format (Select) field in DocType 'Language' +#. Label of the time_format (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Time Format" +msgstr "Tidsformat" + +#. Label of the time_interval (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Time Interval" +msgstr "Tidsintervall" + +#. Label of the timeseries (Check) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Time Series" +msgstr "Tidsserie" + +#. 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 "Tidsserie basert på" + +#. Label of the time_taken (Duration) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Time Taken" +msgstr "Tid brukt" + +#. 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 "Tidsvindu (sekunder)" + +#. Label of the time_zone (Select) field in DocType 'System Settings' +#. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#. Label of the time_zone (Data) field in DocType 'Web Page View' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:407 +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Time Zone" +msgstr "Tidssone" + +#. Label of the time_zones (Text) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "Time Zones" +msgstr "Tidssoner" + +#. Label of the time_format (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "Time format" +msgstr "Tidsformat" + +#. Label of the time_in_queries (Float) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Time in Queries" +msgstr "Tid brukt på spørringer" + +#. Description of the 'Expiry time of QR Code Image Page' (Int) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Time in seconds to retain QR code image on server. Min:240" +msgstr "Tid i sekunder for å lagre QR-kodebildet på serveren. Min:240" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:413 +msgid "Time series based on is required to create a dashboard chart" +msgstr "Feltet Tidsserier basert på er påkrevd for å lage et oversiktspanel-diagram" + +#: frappe/public/js/frappe/form/controls/time.js:124 +msgid "Time {0} must be in format: {1}" +msgstr "Tid {0} må være i formatet: {1}" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Timed Out" +msgstr "Utgått på tid" + +#: frappe/public/js/frappe/ui/theme_switcher.js:64 +msgid "Timeless Night" +msgstr "Tidløs natt" + +#. Label of the timeline (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Timeline" +msgstr "Tidslinje" + +#. Label of the timeline_doctype (Link) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Timeline DocType" +msgstr "Tidslinje-DocType" + +#. Label of the timeline_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Timeline Field" +msgstr "Felt for tidslinje" + +#. 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 "Lenker til tidslinje" + +#. Label of the timeline_name (Dynamic Link) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Timeline Name" +msgstr "Navn på tidslinje" + +#: frappe/core/doctype/doctype/doctype.py:1539 +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:1535 +msgid "Timeline field must be a valid fieldname" +msgstr "Feltet for tidslinje må være et gyldig feltnavn" + +#. Label of the timeout (Duration) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Timeout" +msgstr "Tidsavbrudd" + +#. Label of the timeout (Int) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Timeout (In Seconds)" +msgstr "Tidsavbrudd (i sekunder)" + +#. Label of the timeseries (Check) field in DocType 'Dashboard Chart Source' +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgid "Timeseries" +msgstr "Tidsserie" + +#. Label of the timespan (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:28 +msgid "Timespan" +msgstr "Tidsrom" + +#. Label of the timestamp (Datetime) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Timestamp" +msgstr "Tidsstempel" + +#: frappe/desk/doctype/system_console/system_console.js:41 +msgid "Tip: Try the new dropdown console using" +msgstr "Tips: Prøv den nye rullegardinmenyen ved å bruke" + +#. Label of the title (Data) field in DocType 'DocType State' +#. Label of the method (Data) field in DocType 'Error Log' +#. Label of the title (Data) field in DocType 'Page' +#. Label of the title (Data) field in DocType 'Changelog Feed' +#. Label of the title (Data) field in DocType 'Form Tour' +#. Label of the title (Data) field in DocType 'Form Tour Step' +#. Label of the title (Data) field in DocType 'Module Onboarding' +#. Label of the title (Data) field in DocType 'Note' +#. Label of the title (Data) field in DocType 'Onboarding Step' +#. Label of the title (Data) field in DocType 'System Health Report Errors' +#. Label of the title (Data) field in DocType 'Workspace' +#. Label of the title (Data) field in DocType 'Email Group' +#. Label of the title (Data) field in DocType 'Discussion Topic' +#. Label of the title (Data) field in DocType 'Help Article' +#. Label of the title (Data) field in DocType 'Portal Menu Item' +#. Label of the title (Data) field in DocType 'Web Form' +#. Label of the list_title (Data) field in DocType 'Web Form' +#. Label of the title (Data) field in DocType 'Web Page' +#. Label of the meta_title (Data) field in DocType 'Web Page' +#. Label of the title (Data) field in DocType 'Website Sidebar' +#. Label of the title (Data) field in DocType 'Website Sidebar Item' +#: frappe/core/doctype/doctype/boilerplate/controller_list.html:14 +#: frappe/core/doctype/doctype/boilerplate/controller_list.html:23 +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/page/page.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/email/doctype/email_group/email_group.json +#: frappe/public/js/frappe/views/workspace/workspace.js:393 +#: frappe/website/doctype/discussion_topic/discussion_topic.json +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_sidebar/website_sidebar.json +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Title" +msgstr "Tittel" + +#. Label of the title_field (Data) field in DocType 'DocType' +#. Label of the title_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Title Field" +msgstr "Tittelfelt" + +#. Label of the title_prefix (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Title Prefix" +msgstr "Prefiks for tittel" + +#: frappe/core/doctype/doctype/doctype.py:1476 +msgid "Title field must be a valid fieldname" +msgstr "Tittelfeltet må være et gyldig feltnavn" + +#: frappe/website/doctype/web_page/web_page.js:70 +msgid "Title of the page" +msgstr "Tittel på siden" + +#. Label of the recipients (Code) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/permission_log/permission_log.js:12 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:70 +msgid "To" +msgstr "Til" + +#: frappe/public/js/frappe/views/communication.js:53 +msgctxt "Email Recipients" +msgid "To" +msgstr "Til" + +#. Label of the to_date (Date) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/report/website_analytics/website_analytics.js:14 +msgid "To Date" +msgstr "Til dato" + +#. 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 "Felt for til-dato" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/todo/todo_list.js:6 +msgid "To Do" +msgstr "Oppgaver" + +#. Description of the 'Subject' (Data) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "To add dynamic subject, use jinja tags like\n\n" +"
    New {{ doc.doctype }} #{{ doc.name }}
    " +msgstr "For å legge til et dynamisk emne, bruk jinja-tagger som\n\n" +"
    Ny {{ doc.doctype }} #{{ doc.name }}
    " + +#. Description of the 'Subject' (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "To add dynamic subject, use jinja tags like\n\n" +"
    {{ doc.name }} Delivered
    " +msgstr "For å legge til et dynamisk emne, bruk jinja-tagger som\n\n" +"
    {{ doc.name }} Levert
    " + +#. Description of the 'JSON Request Body' (Code) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "To add dynamic values from the document, use jinja tags like\n\n" +"
    \n" +"
    { \"id\": \"{{ doc.name }}\" }\n"
    +"
    \n" +"
    " +msgstr "For å legge til dynamiske verdier fra dokumentet, bruk jinja-tagger som\n\n" +"
    \n" +"
    { \"id\": \"{{ doc.name }}\" }\n"
    +"
    \n" +"
    " + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 +msgid "To allow more reports update limit in System Settings." +msgstr "For å tillate flere rapporter, se oppdateringsgrensen i Systeminnstillinger." + +#. Label of the section_break_10 (Section Break) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "To and CC" +msgstr "Til og CC" + +#. Description of the 'Use First Day of Period' (Check) field in DocType 'Auto +#. Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "To begin the date range at the start of the chosen period. For example, if 'Year' is selected as the period, the report will start from January 1st of the current year." +msgstr "For å starte datoperioden ved starten av den valgte perioden. Hvis for eksempel «År» er valgt som periode, vil rapporten starte fra 1. januar i inneværende år." + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:35 +msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}." +msgstr "For å konfigurere automatisk gjentakelse, aktiverer du \"Tillat automatisk gjentakelse\" fra {0}." + +#: frappe/www/login.html:76 +msgid "To enable it follow the instructions in the following link: {0}" +msgstr "Følg instruksjonene i følgende lenke for å aktivere den: {0}" + +#: frappe/core/doctype/server_script/server_script.js:40 +msgid "To enable server scripts, read the {0}." +msgstr "For å aktivere serverskript, les {0}." + +#: frappe/desk/doctype/onboarding_step/onboarding_step.js:18 +msgid "To export this step as JSON, link it in a Onboarding document and save the document." +msgstr "For å eksportere dette trinnet som JSON, koble det til et onboarding-dokument og lagre dokumentet." + +#: frappe/email/doctype/email_account/email_account.js:126 +msgid "To generate password click {0}" +msgstr "For å generere passord, klikk {0}" + +#: frappe/public/js/frappe/views/reports/query_report.js:862 +msgid "To get the updated report, click on {0}." +msgstr "For å få den oppdaterte rapporten, klikk på {0}." + +#: frappe/email/doctype/email_account/email_account.js:139 +msgid "To know more click {0}" +msgstr "For å vite mer, klikk {0}" + +#. Description of the 'Console' (Code) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "To print output use print(text)" +msgstr "For å skrive ut, bruk print(tekst)" + +#: frappe/core/doctype/user_type/user_type.py:291 +msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record." +msgstr "For å angi rollen {0} i brukeren {1}, vennligst angi {2} -feltet som {3} i en av {4} -postene." + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:8 +msgid "To use Google Calendar, enable {0}." +msgstr "For å bruke Google Kalender, aktiver {0}." + +#: frappe/integrations/doctype/google_contacts/google_contacts.js:8 +msgid "To use Google Contacts, enable {0}." +msgstr "For å bruke Google Kontakter, aktiver {0}." + +#. Description of the 'Enable Google indexing' (Check) field in DocType +#. 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "To use Google Indexing, enable Google Settings." +msgstr "For å bruke Google-indeksering, aktiver Google-innstillinger." + +#. 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 "For å bruke Slack Channel, legg til en Slack Webhook URL." + +#: frappe/public/js/frappe/utils/diffview.js:44 +msgid "To version" +msgstr "Til versjon" + +#. Label of a shortcut in the Tools Workspace +#. Name of a DocType +#. Name of a report +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55 +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.json +msgid "ToDo" +msgstr "Gjøremål" + +#: frappe/public/js/frappe/form/controls/date.js:58 +#: frappe/public/js/frappe/ui/filters/filter.js:733 +#: frappe/public/js/frappe/views/calendar/calendar.js:274 +msgid "Today" +msgstr "I dag" + +#: frappe/public/js/frappe/views/reports/report_view.js:1572 +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:201 +#: frappe/public/js/frappe/ui/page.js:203 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 +msgid "Toggle Sidebar" +msgstr "Vis/skjul sidepanel" + +#: frappe/public/js/frappe/list/list_view.js:1966 +msgctxt "Button in list view menu" +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" +msgstr "Token" + +#. Name of a DocType +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Token Cache" +msgstr "Token-buffer" + +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "Token endepunkt Auth metode" + +#. Label of the token_type (Data) field in DocType 'Token Cache' +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Token Type" +msgstr "Tokentype" + +#. Label of the token_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Token URI" +msgstr "Token URI" + +#: frappe/utils/oauth.py:184 +msgid "Token is missing" +msgstr "Token mangler" + +#: frappe/public/js/frappe/ui/filters/filter.js:739 +msgid "Tomorrow" +msgstr "I morgen" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:68 +#: frappe/model/workflow.py:310 +msgid "Too Many Documents" +msgstr "For mange dokumenter" + +#: frappe/rate_limiter.py:101 +msgid "Too Many Requests" +msgstr "For mange forespørsler" + +#: frappe/database/database.py:473 +msgid "Too many changes to database in single action." +msgstr "For mange endringer i databasen i én enkelt handling." + +#: frappe/utils/background_jobs.py:730 +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:1043 +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." + +#. Name of a Workspace +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Tools" +msgstr "Verktøy" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:153 +msgid "Top" +msgstr "Topp" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13 +msgid "Top 10" +msgstr "Topp 10" + +#. Name of a DocType +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "Top Bar Item" +msgstr "Element i toppmeny" + +#. 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 "Elementer i toppmeny" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:245 +msgid "Top Center" +msgstr "Øverst i senter" + +#. Label of the top_errors (Table) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Top Errors" +msgstr "Vanligste feil" + +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:244 +msgid "Top Left" +msgstr "Øverst til venstre" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:246 +msgid "Top Right" +msgstr "Øverst til høyre" + +#. Label of the topic (Link) field in DocType 'Discussion Reply' +#: frappe/website/doctype/discussion_reply/discussion_reply.json +msgid "Topic" +msgstr "Emne" + +#: frappe/desk/query_report.py:587 +#: frappe/public/js/frappe/views/reports/print_grid.html:45 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 +msgid "Total" +msgstr "Totalt" + +#. Label of the total_background_workers (Int) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Background Workers" +msgstr "Totale bakgrunnsprosesser" + +#. Label of the total_errors (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Errors (last 1 day)" +msgstr "Totalt antall feil (siste 1 dag)" + +#: frappe/public/js/frappe/ui/capture.js:259 +msgid "Total Images" +msgstr "Totalt antall bilder" + +#. Label of the total_outgoing_emails (Int) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Outgoing Emails" +msgstr "Totalt antall utgående e-poster" + +#. Label of the total_subscribers (Int) field in DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Total Subscribers" +msgstr "Totalt antall abonnenter" + +#. Label of the total_users (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Users" +msgstr "Totalt antall brukere" + +#. 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 "Total arbeidstid" + +#. Description of the 'Initial Sync Count' (Select) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Total number of emails to sync in initial sync process" +msgstr "Totalt antall e-poster som skal synkroniseres i den første synkroniseringsprosessen" + +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 +msgid "Total:" +msgstr "Totalt:" + +#: frappe/public/js/frappe/views/reports/report_view.js:1258 +msgid "Totals" +msgstr "Totalsummer" + +#: frappe/public/js/frappe/views/reports/report_view.js:1233 +msgid "Totals Row" +msgstr "Rad for totalsummer" + +#. Label of the trace_id (Data) field in DocType 'Error Log' +#: frappe/core/doctype/error_log/error_log.json +msgid "Trace ID" +msgstr "Trace ID" + +#. Label of the traceback (Code) field in DocType 'Patch Log' +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Traceback" +msgstr "Tilbakesporing" + +#. Label of the track_changes (Check) field in DocType 'DocType' +#. Label of the track_changes (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Track Changes" +msgstr "Spor endringer" + +#. 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 "Spor e-poststatus" + +#. Label of the track_field (Data) field in DocType 'Milestone' +#: frappe/automation/doctype/milestone/milestone.json +msgid "Track Field" +msgstr "Sporingsfelt" + +#. Label of the track_seen (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Track Seen" +msgstr "Spor hvem som har sett" + +#. Label of the track_steps (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Track Steps" +msgstr "Spor steg" + +#. 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 "Spor antall visninger" + +#. Description of the 'Track Email Status' (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Track if your email has been opened by the recipient.\n" +"
    \n" +"Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered \"Opened\"" +msgstr "Spor om e-posten din har blitt åpnet av mottakeren.\n" +"
    \n" +"Merk: Hvis du sender til flere mottakere, vil e-posten bli ansett som «Åpnet» selv om én mottaker leser den." + +#. Description of a DocType +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Track milestones for any document" +msgstr "Spor milepæler for ethvert dokument" + +#. Label of a Card Break in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "Tracking" +msgstr "Sporing" + +#: frappe/public/js/frappe/utils/utils.js:1821 +msgid "Tracking URL generated and copied to clipboard" +msgstr "Sporing av URL generert og kopiert til utklippstavlen" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:31 +msgid "Transgender" +msgstr "Transkjønnet" + +#: frappe/public/js/workflow_builder/components/Properties.vue:19 +msgid "Transition Properties" +msgstr "Overgangsegenskaper" + +#. Label of the transition_rules (Section Break) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Transition Rules" +msgstr "Overgangsregler" + +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "Overgangsoppgaver" + +#. Label of the transitions (Table) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Transitions" +msgstr "Overganger" + +#. Label of the translatable (Check) field in DocType 'DocField' +#. Label of the translatable (Check) field in DocType 'Custom Field' +#. Label of the translatable (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Translatable" +msgstr "Oversettbar" + +#: frappe/public/js/frappe/views/reports/query_report.js:2252 +msgid "Translate Data" +msgstr "Oversett data" + +#. Label of the translated_doctype (Check) field in DocType 'DocType' +#. Label of the translated_doctype (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Translate Link Fields" +msgstr "Oversett lenkefelt" + +#: frappe/public/js/frappe/views/reports/report_view.js:1658 +msgid "Translate values" +msgstr "Oversett verdier" + +#: frappe/public/js/frappe/views/translation_manager.js:11 +msgid "Translate {0}" +msgstr "Oversett {0}" + +#. Label of the translated_text (Code) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Translated Text" +msgstr "Oversatt tekst" + +#. Name of a DocType +#: frappe/core/doctype/translation/translation.json +msgid "Translation" +msgstr "Oversettelse" + +#: frappe/public/js/frappe/views/translation_manager.js:46 +msgid "Translations" +msgstr "Oversettelser" + +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "Oversetter" + +#. Option for the 'Email Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Trash" +msgstr "Søppel" + +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Tree" +msgstr "Tre" + +#: frappe/public/js/frappe/list/base_list.js:210 +msgid "Tree View" +msgstr "Trestrukturvisning" + +#. 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 "Trestrukturer implementeres ved hjelp av Nested Set" + +#: frappe/public/js/frappe/views/treeview.js:19 +msgid "Tree view is not available for {0}" +msgstr "Trestrukturvisning er ikke tilgjengelig for {0}" + +#. Label of the method (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Trigger Method" +msgstr "Utløsende metode" + +#: frappe/public/js/frappe/ui/keyboard.js:196 +msgid "Trigger Primary Action" +msgstr "Utfør hovedhandling" + +#: frappe/tests/test_translate.py:55 +msgid "Trigger caching" +msgstr "Utløs hurtigbufring" + +#. 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 "Utløses på gyldige metoder som «before_insert», «after_update» osv. (avhenger av hvilken dokumenttype (DocType) som er valgt)" + +#: frappe/custom/doctype/customize_form/customize_form.js:144 +msgid "Trim Table" +msgstr "Rydd opp i tabell" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:318 +msgid "Try Again" +msgstr "Prøv igjen" + +#. Label of the try_naming_series (Data) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Try a Naming Series" +msgstr "Prøv en nummerserie" + +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 +msgid "Try the new Print Designer" +msgstr "Prøv den nye utskriftsdesigneren" + +#: frappe/utils/password_strength.py:106 +msgid "Try to avoid repeated words and characters" +msgstr "Prøv å unngå gjentatte ord og tegn" + +#: frappe/utils/password_strength.py:98 +msgid "Try to use a longer keyboard pattern with more turns" +msgstr "Prøv å bruke et lengre tastaturmønster med flere svinger" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the tuesday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Tuesday" +msgstr "Tirsdag" + +#. Label of the two_factor_auth (Check) field in DocType 'Role' +#. Label of the two_factor_authentication (Section Break) field in DocType +#. 'System Settings' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Two Factor Authentication" +msgstr "To-faktor autentisering" + +#. 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 "To-faktor autentiseringsmetode" + +#. Label of the communication_medium (Select) field in DocType 'Communication' +#. Label of the fieldtype (Select) field in DocType 'DocField' +#. Label of the fieldtype (Select) field in DocType 'Customize Form Field' +#. Label of the type (Data) field in DocType 'Console Log' +#. Label of the type (Select) field in DocType 'Dashboard Chart' +#. Label of the type (Select) field in DocType 'Desktop Icon' +#. Label of the type (Select) field in DocType 'Notification Log' +#. Label of the type (Select) field in DocType 'Number Card' +#. Label of the type (Select) field in DocType 'System Console' +#. Label of the type (Select) field in DocType 'Workspace' +#. Label of the type (Select) field in DocType 'Workspace Link' +#. Label of the type (Select) field in DocType 'Workspace Shortcut' +#. Label of the type (Select) field in DocType 'Web Template' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/console_log/console_log.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/views/file/file_view.js:370 +#: frappe/public/js/frappe/views/workspace/workspace.js:399 +#: frappe/public/js/frappe/widgets/widget_dialog.js:404 +#: frappe/website/doctype/web_template/web_template.json +#: frappe/www/attribution.html:35 +msgid "Type" +msgstr "Type" + +#: frappe/public/js/frappe/form/controls/comment.js:90 +msgid "Type a reply / comment" +msgstr "Skriv inn et svar/kommentar" + +#: frappe/templates/includes/search_template.html:51 +msgid "Type something in the search box to search" +msgstr "Skriv noe i søkefeltet for å søke" + +#: frappe/templates/discussions/comment_box.html:8 +#: frappe/templates/discussions/reply_section.html:53 +#: frappe/templates/discussions/topic_modal.html:11 +msgid "Type title" +msgstr "Skriv tittel" + +#: frappe/templates/discussions/discussions.js:341 +msgid "Type your reply here..." +msgstr "Skriv svaret ditt her..." + +#: frappe/core/doctype/data_export/exporter.py:143 +msgid "Type:" +msgstr "Type:" + +#. Label of the ui_tour (Check) field in DocType 'Form Tour' +#. Label of the ui_tour (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "UI Tour" +msgstr "UI-omvisning" + +#. Label of the uid (Int) field in DocType 'Communication' +#. Label of the uid (Data) field in DocType 'Email Flag Queue' +#. Label of the uid (Data) field in DocType 'Unhandled Email' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "UID" +msgstr "UID" + +#. Label of the uidnext (Int) field in DocType 'Email Account' +#. Label of the uidnext (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "UIDNEXT" +msgstr "UIDNEXT" + +#. Label of the uidvalidity (Data) field in DocType 'Email Account' +#. Label of the uidvalidity (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "UIDVALIDITY" +msgstr "UIDVALIDITY" + +#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "UNSEEN" +msgstr "UNSEEN" + +#. Description of the 'Redirect URIs' (Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n" +"
    e.g. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook" +msgstr "URI-er for å motta autorisasjonskode når brukeren tillater tilgang, samt feilresponser. Vanligvis et REST-endepunkt eksponert av klientappen.\n" +"
    f.eks. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook" + +#. Option for the 'Type' (Select) field in DocType 'Workspace' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Label of the url (Data) field in DocType 'Workspace Shortcut' +#. Label of the url (Small Text) field in DocType 'Integration Request' +#. Label of the url (Text) field in DocType 'Webhook Request Log' +#. Label of the url (Data) field in DocType 'Top Bar Item' +#. Label of the url (Data) field in DocType 'Website Slideshow Item' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:471 +#: frappe/website/doctype/top_bar_item/top_bar_item.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "URL" +msgstr "URL" + +#. Description of the 'Documentation Link' (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "URL for documentation or help" +msgstr "URL for dokumentasjon eller hjelp" + +#: frappe/core/doctype/file/file.py:231 +msgid "URL must start with http:// or https://" +msgstr "URL-adressen må begynne med http:// eller https://" + +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "URL-adressen til en side som kan leses av mennesker, med informasjon som utviklere kan trenge." + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "URL-adressen til en nettside med informasjon om klienten." + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "URL-adressen til en side som kan leses av mennesker, med informasjon om den beskyttede ressursens tjenestevilkår." + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "URL til en side som kan leses av mennesker, med informasjon om krav til hvordan kunden kan bruke dataene." + +#: frappe/website/doctype/web_page/web_page.js:84 +msgid "URL of the page" +msgstr "URL-adressen til siden" + +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "URL-adresse som peker til et lesbart policydokument for klienten. Bør vises til sluttbrukeren før autorisering." + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "URL-adresse som peker til et dokument med lesbare tjenestevilkår for klienten. Bør vises til sluttbrukeren før autorisering." + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "URL som refererer til en logo for klienten." + +#. 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-en du går til når du klikker på bildet i lysbildeserien" + +#. Name of a DocType +#: frappe/website/doctype/utm_campaign/utm_campaign.json +msgid "UTM Campaign" +msgstr "UTM campaign" + +#. Name of a DocType +#: frappe/website/doctype/utm_medium/utm_medium.json +msgid "UTM Medium" +msgstr "UTM medium" + +#. Name of a DocType +#: frappe/website/doctype/utm_source/utm_source.json +msgid "UTM Source" +msgstr "UTM source" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "UUID" +msgstr "UUID" + +#: frappe/desk/form/document_follow.py:79 +msgid "Un-following document {0}" +msgstr "Slutter å følge dokumentet {0}" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:67 +msgid "Unable to find DocType {0}" +msgstr "Kunne ikke finne dokumenttype (DocType) {0}" + +#: frappe/public/js/frappe/ui/capture.js:338 +msgid "Unable to load camera." +msgstr "Kan ikke laste inn kamera." + +#: frappe/public/js/frappe/model/model.js:230 +msgid "Unable to load: {0}" +msgstr "Kan ikke lastes inn: {0}" + +#: frappe/utils/csvutils.py:37 +msgid "Unable to open attached file. Did you export it as CSV?" +msgstr "Klarte ikke å åpne den vedlagte filen. Eksporterte du den som CSV?" + +#: frappe/core/doctype/file/utils.py:98 frappe/core/doctype/file/utils.py:130 +msgid "Unable to read file format for {0}" +msgstr "Kan ikke lese filformatet for {0}" + +#: frappe/core/doctype/communication/email.py:180 +msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" +msgstr "Kan ikke sende e-post på grunn av manglende e-postkonto. Konfigurer standard e-postkonto fra Innstillinger > E-postkonto" + +#: frappe/public/js/frappe/views/calendar/calendar.js:450 +msgid "Unable to update event" +msgstr "Kan ikke oppdatere hendelsen" + +#: frappe/core/doctype/file/file.py:489 +msgid "Unable to write file format for {0}" +msgstr "Kan ikke skrive filformat for {0}" + +#. Label of the unassign_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Unassign Condition" +msgstr "Tilordne betingelse" + +#: frappe/app.py:399 +msgid "Uncaught Exception" +msgstr "Ubehandlet unntak" + +#: frappe/public/js/frappe/form/toolbar.js:103 +msgid "Unchanged" +msgstr "Uendret" + +#: frappe/public/js/frappe/form/toolbar.js:518 +msgid "Undo" +msgstr "Angre" + +#: frappe/public/js/frappe/form/toolbar.js:526 +msgid "Undo last action" +msgstr "Angre siste handling" + +#: frappe/database/query.py:1497 +msgid "Unescaped quotes in string literal: {0}" +msgstr "Ubeskyttede anførselstegn i strengliteral: {0} ✅" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:109 +#: frappe/public/js/frappe/form/toolbar.js:879 +msgid "Unfollow" +msgstr "Stopp å følge" + +#. Name of a DocType +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Unhandled Email" +msgstr "Ubehandlet e-post" + +#. Label of the unhandled_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Unhandled Emails" +msgstr "Ubehandlede e-poster" + +#. Label of the unique (Check) field in DocType 'DocField' +#. Label of the unique (Check) field in DocType 'Custom Field' +#. Label of the unique (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Unique" +msgstr "Unik" + +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
    \n" +"Should remain same across multiple versions or updates of the software." +msgstr "Unik ID tildelt av klientutvikleren som brukes til å identifisere klientprogramvaren som skal registreres dynamisk.\n" +"
    \n" +"Skal forbli den samme på tvers av flere versjoner eller oppdateringer av programvaren." + +#: frappe/website/report/website_analytics/website_analytics.js:60 +msgid "Unknown" +msgstr "Ukjent" + +#: frappe/public/js/frappe/model/model.js:209 +msgid "Unknown Column: {0}" +msgstr "Ukjent kolonne: {0}" + +#: frappe/utils/data.py:1256 +msgid "Unknown Rounding Method: {}" +msgstr "Ukjent avrundingsmetode: {}" + +#: frappe/auth.py:319 +msgid "Unknown User" +msgstr "Ukjent bruker" + +#: frappe/utils/csvutils.py:54 +msgid "Unknown file encoding. Tried to use: {0}" +msgstr "Ukjent filkoding. Prøvde å bruke: {0}" + +#: frappe/core/doctype/submission_queue/submission_queue.js:7 +msgid "Unlock Reference Document" +msgstr "Lås opp referansedokumentet" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 +#: frappe/website/doctype/web_form/web_form.js:86 +msgid "Unpublish" +msgstr "Avpubliser" + +#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue' +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Unread" +msgstr "Ulest" + +#. Label of the unread_notification_sent (Check) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Unread Notification Sent" +msgstr "Ulest varsel sendt" + +#: frappe/utils/safe_exec.py:498 +msgid "Unsafe SQL query" +msgstr "Usikker SQL-spørring" + +#: frappe/public/js/frappe/data_import/data_exporter.js:159 +#: frappe/public/js/frappe/form/controls/multicheck.js:166 +msgid "Unselect All" +msgstr "Avmerk alle" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Unshared" +msgstr "Ikke delt" + +#: frappe/email/queue.py:67 +msgid "Unsubscribe" +msgstr "Meld av" + +#. Label of the unsubscribe_method (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Unsubscribe Method" +msgstr "Avmeldingsmetode" + +#. Label of the unsubscribe_params (Code) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Unsubscribe Params" +msgstr "Avmeldingsparametere" + +#. Label of the unsubscribed (Check) field in DocType 'Contact' +#. Label of the unsubscribed (Check) field in DocType 'User' +#. Label of the unsubscribed (Check) field in DocType 'Email Group Member' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/email_group_member/email_group_member.json +#: frappe/email/queue.py:123 +msgid "Unsubscribed" +msgstr "Avmeldt" + +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 +msgid "Unsupported function or invalid field name: {0}" +msgstr "Ikke-støttet funksjon eller ugyldig feltnavn: {0}" + +#: frappe/public/js/frappe/data_import/import_preview.js:72 +msgid "Untitled Column" +msgstr "Kolonne uten tittel" + +#: frappe/core/doctype/file/file.js:38 +msgid "Unzip" +msgstr "Pakk ut" + +#: frappe/public/js/frappe/views/file/file_view.js:132 +msgid "Unzipped {0} files" +msgstr "Pakket ut {0} filer" + +#: frappe/public/js/frappe/views/file/file_view.js:125 +msgid "Unzipping files..." +msgstr "Pakker ut filer..." + +#: frappe/desk/doctype/event/event.py:273 +msgid "Upcoming Events for Today" +msgstr "Kommende hendelser for I dag" + +#. Label of the update (Button) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/data_import/data_import_list.js:36 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:23 +#: frappe/custom/doctype/customize_form/customize_form.js:438 +#: frappe/desk/doctype/bulk_update/bulk_update.js:15 +#: frappe/printing/page/print_format_builder/print_format_builder.js:447 +#: frappe/printing/page/print_format_builder/print_format_builder.js:507 +#: frappe/printing/page/print_format_builder/print_format_builder.js:678 +#: frappe/printing/page/print_format_builder/print_format_builder.js:765 +#: frappe/public/js/frappe/form/grid_row.js:428 +msgid "Update" +msgstr "Oppdater" + +#. Label of the update_amendment_naming (Button) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Update Amendment Naming" +msgstr "Oppdatering av endringsnavn" + +#. Option for the 'Import Type' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Update Existing Records" +msgstr "Oppdater eksisterende poster" + +#. 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 "Oppdater felt" + +#: frappe/core/doctype/installed_applications/installed_applications.js:6 +#: frappe/core/doctype/installed_applications/installed_applications.js:13 +msgid "Update Hooks Resolution Order" +msgstr "Oppdater løsningsrekkefølge for hook-er" + +#: frappe/core/doctype/installed_applications/installed_applications.js:45 +msgid "Update Order" +msgstr "Oppdater ordre" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:494 +msgid "Update Password" +msgstr "Oppdater passord" + +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + +#. Label of the update_series (Section Break) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Update Series Counter" +msgstr "Oppdater løpeummerteller" + +#. 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 "Oppdater løpenummer" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Update Settings" +msgstr "Oppdater instillinger" + +#: frappe/public/js/frappe/views/translation_manager.js:13 +msgid "Update Translations" +msgstr "Oppdater oversettelser" + +#. Label of the update_value (Small Text) field in DocType 'Bulk Update' +#. Label of the update_value (Data) field in DocType 'Workflow Document State' +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Update Value" +msgstr "Oppdater verdi" + +#: frappe/utils/change_log.py:381 +msgid "Update from Frappe Cloud" +msgstr "Oppdater fra Frappe Cloud" + +#: frappe/public/js/frappe/list/bulk_operations.js:375 +msgid "Update {0} records" +msgstr "Oppdater {0} poster" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'Permission Log' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 +#: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 +#: frappe/public/js/frappe/web_form/web_form.js:451 +msgid "Updated" +msgstr "Oppdatert" + +#: frappe/desk/doctype/bulk_update/bulk_update.js:32 +msgid "Updated Successfully" +msgstr "Oppdateringen var vellykket" + +#: frappe/public/js/frappe/desk.js:446 +msgid "Updated To A New Version 🎉" +msgstr "Oppdatert til en ny versjon 🎉" + +#: frappe/public/js/frappe/list/bulk_operations.js:372 +msgid "Updated successfully" +msgstr "Oppdateringen var vellykket" + +#: frappe/utils/response.py:335 +msgid "Updating" +msgstr "Oppdaterer" + +#: frappe/public/js/frappe/form/save.js:11 +msgctxt "Freeze message while updating a document" +msgid "Updating" +msgstr "Oppdaterer" + +#: frappe/email/doctype/email_queue/email_queue_list.js:49 +msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run." +msgstr "Oppdaterer statuser for e-postkø. E-postene vil bli hentet i neste planlagte kjøring." + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:17 +msgid "Updating counter may lead to document name conflicts if not done properly" +msgstr "Oppdatering av telleren kan føre til konflikter mellom dokumentnavn hvis det ikke gjøres riktig" + +#: frappe/desk/page/setup_wizard/setup_wizard.py:23 +msgid "Updating global settings" +msgstr "Oppdaterer globale innstillinger" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59 +msgid "Updating naming series options" +msgstr "Oppdaterer alternativer for nummerserier" + +#: frappe/public/js/frappe/form/toolbar.js:136 +msgid "Updating related fields..." +msgstr "Oppdaterer relaterte felt..." + +#: frappe/desk/doctype/bulk_update/bulk_update.py:95 +msgid "Updating {0}" +msgstr "Oppdaterer {0}" + +#: frappe/core/doctype/data_import/data_import.js:36 +msgid "Updating {0} of {1}, {2}" +msgstr "Oppdaterer {0} av {1}, {2}" + +#: frappe/public/js/billing.bundle.js:131 +msgid "Upgrade plan" +msgstr "Oppgrader abonnementet" + +#: frappe/public/js/frappe/list/list_sidebar.js:331 +msgid "Upgrade your support experience with Frappe Helpdesk" +msgstr "Få bedre support med Frappe Helpdesk" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 +#: frappe/public/js/frappe/form/grid.js:66 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:13 +msgid "Upload" +msgstr "Last opp" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:93 +msgid "Upload Image" +msgstr "Last opp bilde" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 +msgid "Upload file" +msgstr "Last opp fil" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 +msgid "Upload {0} files" +msgstr "Last opp {0} filer" + +#. Label of the uploaded_to_dropbox (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Uploaded To Dropbox" +msgstr "Lastet opp til Dropbox" + +#. Label of the uploaded_to_google_drive (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Uploaded To Google Drive" +msgstr "Lastet opp til Google Disk" + +#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#, python-format +msgid "Use % for any non empty value." +msgstr "Bruk % for alle verdier som ikke er tomme." + +#. 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 "Bruk ASCII-koding for passord" + +#. 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 "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 +msgid "Use HTML" +msgstr "Bruk HTML" + +#. Label of the use_imap (Check) field in DocType 'Email Account' +#. Label of the use_imap (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Use IMAP" +msgstr "Bruk IMAP" + +#. Label of the use_number_format_from_currency (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Use Number Format from Currency" +msgstr "Bruk tallformat fra valuta" + +#. Label of the use_post (Check) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Use POST" +msgstr "Bruk POST" + +#. Label of the use_report_chart (Check) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Use Report Chart" +msgstr "Bruk rapportdiagram" + +#. Label of the use_ssl (Check) field in DocType 'Email Account' +#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Account' +#. Label of the use_ssl (Check) field in DocType 'Email Domain' +#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Use SSL" +msgstr "Bruk SSL" + +#. Label of the use_starttls (Check) field in DocType 'Email Account' +#. Label of the use_starttls (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Use STARTTLS" +msgstr "Bruk STARTTLS" + +#. Label of the use_tls (Check) field in DocType 'Email Account' +#. Label of the use_tls (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Use TLS" +msgstr "Bruk TLS" + +#: frappe/utils/password_strength.py:44 +msgid "Use a few words, avoid common phrases." +msgstr "Bruk noen få ord, unngå vanlige fraser." + +#. 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 "Bruk en annen e-post-ID" + +#. Description of the 'Detect CSV type' (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Use if the default settings don't seem to detect your data correctly" +msgstr "Bruk hvis standardinnstillingene ikke ser ut til å oppdage dataene dine riktig" + +#: frappe/model/db_query.py:411 +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:292 +msgid "Use the new Print Format Builder" +msgstr "Bruk den nye utskriftsformatbyggeren" + +#. 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 "Bruk dette feltnavnet til å generere tittel" + +#. Description of the 'Always BCC Address' (Data) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Use this, for example, if all sent emails should also be send to an archive." +msgstr "Bruk dette for eksempel hvis alle sendte e-poster også skal sendes til et arkiv." + +#. Label of the used_oauth (Check) field in DocType 'User Email' +#: frappe/core/doctype/user_email/user_email.json +msgid "Used OAuth" +msgstr "Bruker OAuth" + +#. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' +#. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' +#. Label of the user (Link) field in DocType 'Activity Log' +#. Label of the user (Link) field in DocType 'API Request Log' +#. Label of the user (Link) field in DocType 'Communication' +#. Label of the user (Link) field in DocType 'DocShare' +#. Label of the user (Link) field in DocType 'Log Setting User' +#. Label of the user (Link) field in DocType 'Permission Inspector' +#. Name of a DocType +#. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 'Note Seen By' +#. Label of the user (Link) field in DocType 'Notification Settings' +#. Label of the user (Link) field in DocType 'Route History' +#. Label of the user (Link) field in DocType 'Document Follow' +#. Label of the user (Link) field in DocType 'Google Calendar' +#. Label of the user (Link) field in DocType 'OAuth Authorization Code' +#. Label of the user (Link) field in DocType 'OAuth Bearer Token' +#. Label of the user (Link) field in DocType 'OAuth Client' +#. Label of the user (Link) field in DocType 'Token Cache' +#. Label of the user (Link) field in DocType 'Webhook Request Log' +#. Label of the user (Link) field in DocType 'Personal Data Download Request' +#. Label of the user (Link) field in DocType 'Workflow Action' +#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/log_setting_user/log_setting_user.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 +#: frappe/core/workspace/users/users.json +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +#: frappe/desk/doctype/note_seen_by/note_seen_by.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/desk/doctype/route_history/route_history.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/form/templates/set_sharing.html:3 +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "User" +msgstr "Bruker" + +#: frappe/core/doctype/has_role/has_role.py:25 +msgid "User '{0}' already has the role '{1}'" +msgstr "Bruker '{0}' har allerede rollen '{1}'" + +#. Name of a DocType +#: frappe/core/doctype/report/user_activity_report.json +msgid "User Activity Report" +msgstr "Rapport om brukeraktivitet" + +#. Name of a DocType +#: frappe/core/doctype/report/user_activity_report_without_sort.json +msgid "User Activity Report Without Sort" +msgstr "Rapport om brukeraktivitet uten sortering" + +#. Label of the user_agent (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "User Agent" +msgstr "User Agent" + +#. Label of the in_create (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "User Cannot Create" +msgstr "Bruker kan ikke opprette" + +#. Label of the read_only (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "User Cannot Search" +msgstr "Brukeren kan ikke søke" + +#: frappe/public/js/frappe/desk.js:550 +msgid "User Changed" +msgstr "Bruker endret" + +#. Label of the defaults (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Defaults" +msgstr "Standardinnstillinger for bruker" + +#. Label of the user_details_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Details" +msgstr "Brukerdetaljer" + +#. Name of a report +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.json +msgid "User Doctype Permissions" +msgstr "Rettigheter for bruker-dokumenttype (DocType)" + +#. Name of a DocType +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "User Document Type" +msgstr "Bruker-dokumenttype (DocType)" + +#: frappe/core/doctype/user_type/user_type.py:98 +msgid "User Document Types Limit Exceeded" +msgstr "Grensen for bruker-dokumenttyper (DocType) er overskredet" + +#. Name of a DocType +#: frappe/core/doctype/user_email/user_email.json +msgid "User Email" +msgstr "Bruker-epost" + +#. Label of the user_emails (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Emails" +msgstr "Bruker-eposter" + +#. Name of a DocType +#: frappe/core/doctype/user_group/user_group.json +msgid "User Group" +msgstr "Brukergruppe" + +#. Name of a DocType +#: frappe/core/doctype/user_group_member/user_group_member.json +msgid "User Group Member" +msgstr "Medlem av brukergruppen" + +#. Label of the user_group_members (Table MultiSelect) field in DocType 'User +#. Group' +#: frappe/core/doctype/user_group/user_group.json +msgid "User Group Members" +msgstr "Medlemmer av brukergruppen" + +#. 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 "Bruker-ID" + +#. 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 "Egenskap til bruker-ID" + +#. Label of the user (Link) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "User Id" +msgstr "Bruker-ID" + +#. 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 "Felt for bruker-ID" + +#: frappe/core/doctype/user_type/user_type.py:283 +msgid "User Id Field is mandatory in the user type {0}" +msgstr "Feltet bruker-ID er obligatorisk i brukertypen {0}" + +#. Label of the user_image (Attach Image) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Image" +msgstr "Brukerbilde" + +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "Brukerinvitasjon" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:115 +msgid "User Menu" +msgstr "Brukermeny" + +#. Label of the user_name (Data) field in DocType 'Personal Data Download +#. Request' +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +msgid "User Name" +msgstr "Brukernavn" + +#. Name of a DocType +#: frappe/core/doctype/user_permission/user_permission.json +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/workspace/users/users.json +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 +msgid "User Permissions" +msgstr "Brukerrettigheter" + +#: frappe/public/js/frappe/list/list_view.js:1924 +msgctxt "Button in list view menu" +msgid "User Permissions" +msgstr "Brukerrettigheter" + +#: frappe/core/page/permission_manager/permission_manager_help.html:32 +msgid "User Permissions are used to limit users to specific records." +msgstr "Brukerrettigheter brukes til å begrense brukernes tilgang til bestemte poster." + +#: frappe/core/doctype/user_permission/user_permission_list.js:124 +msgid "User Permissions created successfully" +msgstr "Brukerrettigheter ble opprettet" + +#. Name of a DocType +#. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgid "User Role" +msgstr "Brukerrolle" + +#. Name of a DocType +#: frappe/core/doctype/user_role_profile/user_role_profile.json +msgid "User Role Profile" +msgstr "Brukerrolle-profil (DocType)" + +#. Name of a DocType +#: frappe/core/doctype/user_select_document_type/user_select_document_type.json +msgid "User Select Document Type" +msgstr "Brukervalg av dokumenttype (DocType)" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +msgid "User Settings" +msgstr "Brukerinnstillinger" + +#. Name of a DocType +#: frappe/core/doctype/user_social_login/user_social_login.json +msgid "User Social Login" +msgstr "Sosial brukerinnlogging" + +#. Label of the _user_tags (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "User Tags" +msgstr "Brukerstikkord" + +#. Label of the user_type (Link) field in DocType 'User' +#. Name of a DocType +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type/user_type.py:83 +msgid "User Type" +msgstr "Brukertype" + +#. Label of the user_type_modules (Table) field in DocType 'User Type' +#. Name of a DocType +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type_module/user_type_module.json +msgid "User Type Module" +msgstr "Modul for brukertype" + +#. Description of the 'Allow Login using Mobile Number' (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "User can login using Email id or Mobile number" +msgstr "Brukeren kan logge inn ved hjelp av e-postadresse eller mobilnummer" + +#. 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 "Brukeren kan logge inn med e-postadresse eller brukernavn" + +#: frappe/templates/includes/login/login.js:292 +msgid "User does not exist." +msgstr "Brukeren finnes ikke." + +#: frappe/core/doctype/user_type/user_type.py:83 +msgid "User does not have permission to create the new {0}" +msgstr "Brukeren har ikke tillatelse til å opprette den nye {0}" + +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "Brukeren er deaktivert" + +#: frappe/core/doctype/docshare/docshare.py:56 +msgid "User is mandatory for Share" +msgstr "Bruker er påkrevet for deling" + +#. Label of the user_must_always_select (Check) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "User must always select" +msgstr "Brukeren må alltid velge" + +#: frappe/core/doctype/user_permission/user_permission.py:60 +msgid "User permission already exists" +msgstr "Brukerrettigheten finnes allerede" + +#: frappe/www/login.py:171 +msgid "User with email address {0} does not exist" +msgstr "Bruker med e-postadresse {0} finnes ikke" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:225 +msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." +msgstr "Bruker med e-postadresse: {0} finnes ikke i systemet. Be \"Systemadministrator\" om å opprette brukeren for deg." + +#: frappe/core/doctype/user/user.py:538 +msgid "User {0} cannot be deleted" +msgstr "Bruker {0} kan ikke slettes" + +#: frappe/core/doctype/user/user.py:328 +msgid "User {0} cannot be disabled" +msgstr "Bruker {0} kan ikke deaktiveres" + +#: frappe/core/doctype/user/user.py:611 +msgid "User {0} cannot be renamed" +msgstr "Bruker {0} kan ikke gis nytt navn" + +#: frappe/permissions.py:139 +msgid "User {0} does not have access to this document" +msgstr "Bruker {0} har ikke tilgang til dette dokumentet" + +#: frappe/permissions.py:162 +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:275 +msgid "User {0} does not have the permission to create a Workspace." +msgstr "Bruker {0} har ikke tillatelse til å opprette et arbeidsområde." + +#: frappe/templates/emails/data_deletion_approval.html:1 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:112 +msgid "User {0} has requested for data deletion" +msgstr "Bruker {0} har bedt om sletting av data" + +#: frappe/core/doctype/user/user.py:1384 +msgid "User {0} impersonated as {1}" +msgstr "Bruker {0} utga seg for å være {1}" + +#: frappe/utils/oauth.py:269 +msgid "User {0} is disabled" +msgstr "Bruker {0} er deaktivert" + +#: frappe/sessions.py:243 +msgid "User {0} is disabled. Please contact your System Manager." +msgstr "Bruker {0} er deaktivert. Ta kontakt med din systemansvarlige." + +#: frappe/desk/form/assign_to.py:104 +msgid "User {0} is not permitted to access this document." +msgstr "Bruker {0} har ikke tilgang til dette dokumentet." + +#. Label of the userinfo_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Userinfo URI" +msgstr "Brukerinfo URI" + +#. Label of the username (Data) field in DocType 'User' +#. Label of the username (Data) field in DocType 'User Social Login' +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_social_login/user_social_login.json +#: frappe/www/login.py:110 +msgid "Username" +msgstr "Brukernavn" + +#: frappe/core/doctype/user/user.py:700 +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/workspace/users/users.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Users" +msgstr "Brukere" + +#. Description of the 'Protect Attached Files' (Check) field in DocType +#. 'DocType' +#. Description of the 'Protect Attached Files' (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Users are only able to delete attached files if the document is either in draft or if the document is canceled and they are also able to delete the document." +msgstr "Brukere kan bare slette vedlagte filer hvis dokumentet enten er i utkast eller hvis dokumentet er avbrutt, og de også kan slette dokumentet." + +#: frappe/core/page/permission_manager/permission_manager.js:355 +msgid "Users with role {0}:" +msgstr "Brukere med rollen {0}:" + +#: frappe/public/js/frappe/ui/theme_switcher.js:70 +msgid "Uses system's theme to switch between light and dark mode" +msgstr "Bruker systemets tema til å veksle mellom lys og mørk modus" + +#: frappe/public/js/frappe/desk.js:154 +msgid "Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand." +msgstr "Bruk av denne konsollen kan gjøre det mulig for angripere å utgi seg for å være deg og stjele informasjonen din. Ikke skriv inn eller lim inn kode du ikke forstår." + +#. Label of the utilization (Percent) field in DocType 'System Health Report +#. Workers' +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "Utilization" +msgstr "Utnyttelse" + +#. Label of the utilization_percent (Percent) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Utilization %" +msgstr "Utnyttelse %" + +#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization +#. Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Valid" +msgstr "Gyldig" + +#: frappe/templates/includes/login/login.js:52 +#: frappe/templates/includes/login/login.js:65 +msgid "Valid Login id required." +msgstr "Gyldig påloggings-ID kreves." + +#: frappe/templates/includes/login/login.js:39 +msgid "Valid email and name required" +msgstr "Gyldig e-postadresse og navn kreves" + +#. Label of the validate_action (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Validate Field" +msgstr "Valider felt" + +#. Label of the validate_frappe_mail_settings (Button) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Validate Frappe Mail Settings" +msgstr "Valider e-post innstillinger for Frappe" + +#. Label of the validate_ssl_certificate (Check) field in DocType 'Email +#. Account' +#. Label of the validate_ssl_certificate (Check) field in DocType 'Email +#. Domain' +#. Label of the validate_ssl_certificate_for_outgoing (Check) field in DocType +#. 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Validate SSL Certificate" +msgstr "Valider SSL-sertifikat" + +#: frappe/public/js/frappe/web_form/web_form.js:384 +msgid "Validation Error" +msgstr "Valideringsfeil" + +#. Label of the validity (Select) field in DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Validity" +msgstr "Gyldighet" + +#. Label of the value (Data) field in DocType 'Milestone' +#. Label of the defvalue (Text) field in DocType 'DefaultValue' +#. Label of the value (Data) field in DocType 'Document Naming Rule Condition' +#. Label of the value (Data) field in DocType 'SMS Parameter' +#. Label of the value (Data) field in DocType 'Query Parameters' +#. Label of the value (Small Text) field in DocType 'Webhook Header' +#. Label of the value (Text) field in DocType 'Website Meta Tag' +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/core/doctype/defaultvalue/defaultvalue.json +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +#: frappe/core/doctype/prepared_report/prepared_report.js:8 +#: frappe/core/doctype/sms_parameter/sms_parameter.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:95 +#: frappe/integrations/doctype/query_parameters/query_parameters.json +#: frappe/integrations/doctype/webhook_header/webhook_header.json +#: frappe/public/js/frappe/list/bulk_operations.js:336 +#: frappe/public/js/frappe/list/bulk_operations.js:398 +#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4 +#: frappe/website/doctype/web_form/web_form.js:197 +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json +msgid "Value" +msgstr "Verdi" + +#. 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 "Verdi basert på" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value Change" +msgstr "Verdiendring" + +#. Label of the value_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value Changed" +msgstr "Endret verdi" + +#. Label of the property_value (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value To Be Set" +msgstr "Verdi som skal settes" + +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 +msgid "Value cannot be changed for {0}" +msgstr "Verdien kan ikke endres for {0}" + +#: frappe/model/document.py:781 +msgid "Value cannot be negative for" +msgstr "Verdien kan ikke være negativ for" + +#: frappe/model/document.py:785 +msgid "Value cannot be negative for {0}: {1}" +msgstr "Verdien kan ikke være negativ for {0}: {1}" + +#: frappe/custom/doctype/property_setter/property_setter.js:7 +msgid "Value for a check field can be either 0 or 1" +msgstr "Verdien for et kontrollfelt kan være enten 0 eller 1" + +#: frappe/custom/doctype/customize_form/customize_form.py:616 +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:502 +msgid "Value for {0} cannot be a list" +msgstr "Verdien for {0} kan ikke være en liste" + +#. Description of the 'Due Date Based On' (Select) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Value from this field will be set as the due date in the ToDo" +msgstr "Verdien fra dette feltet vil bli satt som forfallsdato i gjøremål" + +#: frappe/core/doctype/data_import/importer.py:714 +msgid "Value must be one of {0}" +msgstr "Verdien må være en av {0}" + +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "Verdien «Ingen» antyder en offentlig klient. I slike tilfeller gis ikke klienthemmeligheten til klienten, og tokenutvekslingen bruker PKCE." + +#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Value to Validate" +msgstr "Verdi som skal valideres" + +#: frappe/model/base_document.py:1185 +msgid "Value too big" +msgstr "For stor verdi" + +#: frappe/core/doctype/data_import/importer.py:727 +msgid "Value {0} missing for {1}" +msgstr "Verdien {0} mangler for {1}" + +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 +msgid "Value {0} must be in the valid duration format: d h m s" +msgstr "Verdien {0} må være i gyldig varighetsformat: d h m s (dager, timer, minutter, sekunder)" + +#: frappe/core/doctype/data_import/importer.py:745 +#: frappe/core/doctype/data_import/importer.py:760 +msgid "Value {0} must in {1} format" +msgstr "Verdien {0} må være i {1} -format" + +#: frappe/core/doctype/version/version_view.html:9 +msgid "Values Changed" +msgstr "Verdier endret" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Verdana" +msgstr "Verdana" + +#: frappe/templates/includes/login/login.js:333 +msgid "Verification" +msgstr "Verifisering" + +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 +msgid "Verification Code" +msgstr "Verifiseringskode" + +#: frappe/templates/emails/delete_data_confirmation.html:10 +msgid "Verification Link" +msgstr "Verifiseringslenke" + +#: frappe/templates/includes/login/login.js:383 +msgid "Verification code email not sent. Please contact Administrator." +msgstr "Verifiseringskoden er ikke sendt. Vennligst kontakt administrator." + +#: frappe/twofactor.py:248 +msgid "Verification code has been sent to your registered email address." +msgstr "Verifiseringskoden er sendt til din registrerte e-postadresse." + +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Verified" +msgstr "Verifisert" + +#: frappe/public/js/frappe/ui/messages.js:359 +#: frappe/templates/includes/login/login.js:337 +msgid "Verify" +msgstr "Verifiser" + +#: frappe/public/js/frappe/ui/messages.js:358 +msgid "Verify Password" +msgstr "Verifiser passordet" + +#: frappe/templates/includes/login/login.js:171 +msgid "Verifying..." +msgstr "Verifiserer..." + +#. Name of a DocType +#: frappe/core/doctype/version/version.json +msgid "Version" +msgstr "Versjon" + +#: frappe/public/js/frappe/desk.js:166 +msgid "Version Updated" +msgstr "Versjon oppdatert" + +#. Label of the video_url (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Video URL" +msgstr "Video-URL" + +#. Label of the view_name (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "View" +msgstr "Vis" + +#: frappe/core/doctype/success_action/success_action.js:60 +#: frappe/public/js/frappe/form/success_action.js:89 +msgid "View All" +msgstr "Vis alle" + +#: frappe/public/js/frappe/form/toolbar.js:580 +msgid "View Audit Trail" +msgstr "Vis revisjonsspor" + +#: frappe/core/doctype/user/user.js:144 +msgid "View Doctype Permissions" +msgstr "Vis DocType-rettigheter" + +#: frappe/core/doctype/file/file.js:4 +msgid "View File" +msgstr "Vis fil" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:220 +msgid "View Full Log" +msgstr "Vis hele loggen" + +#: frappe/public/js/frappe/views/treeview.js:486 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:258 +msgid "View List" +msgstr "Vis liste" + +#. Name of a DocType +#: frappe/core/doctype/view_log/view_log.json +msgid "View Log" +msgstr "Vis logg" + +#: frappe/core/doctype/user/user.js:135 +#: frappe/core/doctype/user_permission/user_permission.js:24 +msgid "View Permitted Documents" +msgstr "Vis tillatte dokumenter" + +#. Label of the view_properties (Button) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "View Properties (via Customize Form)" +msgstr "Vis egenskaper (via Tilpass skjema)" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "View Report" +msgstr "Vis rapport" + +#. Label of the view_settings (Section Break) field in DocType 'DocType' +#. Label of the view_settings_section (Section Break) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "View Settings" +msgstr "Vis innstillinger" + +#. Label of the view_switcher (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +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/www/confirm_workflow_action.html:12 +msgid "View document" +msgstr "Vis dokument" + +#: frappe/templates/emails/auto_email_report.html:60 +msgid "View report in your browser" +msgstr "Se rapporten i nettleseren din" + +#: frappe/templates/emails/print_link.html:2 +msgid "View this in your browser" +msgstr "Se dette i nettleseren din" + +#: frappe/public/js/frappe/web_form/web_form.js:478 +msgctxt "Button in web form" +msgid "View your response" +msgstr "Se svaret ditt" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:43 +#: frappe/desk/doctype/calendar_view/calendar_view_list.js:10 +#: frappe/desk/doctype/dashboard/dashboard_list.js:10 +msgid "View {0}" +msgstr "Vis" + +#. Label of the viewed_by (Data) field in DocType 'View Log' +#: frappe/core/doctype/view_log/view_log.json +msgid "Viewed By" +msgstr "Sett av" + +#. Group in DocType's connections +#. Label of a Card Break in the Build Workspace +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/workspace/build/build.json +msgid "Views" +msgstr "Visninger" + +#. Label of the is_virtual (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Virtual" +msgstr "Virtuell" + +#: frappe/model/virtual_doctype.py:76 +msgid "Virtual DocType {} requires a static method called {} found {}" +msgstr "Virtuell dokumenttype (DocType) {} krever en statisk metode kalt {}, men fant {}" + +#: frappe/model/virtual_doctype.py:89 +msgid "Virtual DocType {} requires overriding an instance method called {} found {}" +msgstr "Virtuell dokumenttype (DocType) {} krever at en instansmetode kalt {} overstyres, men fant {}" + +#. Label of the visibility_section (Section Break) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Visibility" +msgstr "Synlighet" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:41 +msgid "Visible to website/portal users." +msgstr "Synlig for brukere av nettstedet/portalen." + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Visit" +msgstr "Besøk" + +#: frappe/website/doctype/website_route_meta/website_route_meta.js:7 +msgid "Visit Web Page" +msgstr "Besøk nettsiden" + +#. 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 "Besøks-ID" + +#: frappe/templates/discussions/reply_section.html:39 +msgid "Want to discuss?" +msgstr "Vil du diskutere?" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Warehouse" +msgstr "Varehus" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Warning" +msgstr "Advarsel" + +#: frappe/custom/doctype/customize_form/customize_form.js:217 +msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" +msgstr "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:1126 +msgid "Warning: Naming is not set" +msgstr "Advarsel: Navngiving er ikke angitt" + +#: frappe/public/js/frappe/model/meta.js:182 +msgid "Warning: Unable to find {0} in any table related to {1}" +msgstr "Advarsel: Finner ikke {0} i noen tabell relatert til {1}" + +#. Description of the 'Counter' (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Warning: Updating counter may lead to document name conflicts if not done properly" +msgstr "Advarsel: Oppdatering av telleren kan føre til konflikter i dokumentnavn hvis det ikke gjøres riktig" + +#: frappe/website/doctype/help_article/templates/help_article.html:24 +msgid "Was this article helpful?" +msgstr "Var denne artikkelen nyttig?" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:127 +msgid "Watch Tutorial" +msgstr "Se veiledning" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Watch Video" +msgstr "Se video" + +#: frappe/desk/doctype/workspace/workspace.js:34 +msgid "We do not allow editing of this document. Simply click the Edit button on the workspace page to make your workspace editable and customize it as you wish" +msgstr "Vi tillater ikke redigering av dette dokumentet. Bare klikk på Rediger-knappen på arbeidsområde-siden for å gjøre arbeidsområdet ditt redigerbart og tilpasse det slik du ønsker" + +#: frappe/templates/emails/delete_data_confirmation.html:2 +msgid "We have received a request for deletion of {0} data associated with: {1}" +msgstr "Vi har mottatt en forespørsel om sletting av {0} data knyttet til: {1}" + +#: frappe/templates/emails/download_data.html:2 +msgid "We have received a request from you to download your {0} data associated with: {1}" +msgstr "Vi har mottatt en forespørsel fra deg om å laste ned {0} dataene dine knyttet til: {1}" + +#: frappe/www/attribution.html:12 +msgid "We would like to thank the authors of these packages for their contribution." +msgstr "Vi vil gjerne takke forfatterne av disse pakkene for deres bidrag." + +#: frappe/www/contact.py:50 +msgid "We've received your query!" +msgstr "Vi har mottatt forespørselen din!" + +#: frappe/public/js/frappe/form/controls/password.js:87 +msgid "Weak" +msgstr "Svak" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/workspace/website/website.json +msgid "Web Form" +msgstr "Nettskjema" + +#. Name of a DocType +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Web Form Field" +msgstr "Nettskjemafelt" + +#. 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 "Nettskjemafelt" + +#. Name of a DocType +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +msgid "Web Form List Column" +msgstr "Kolonne for liste over nettskjemaer" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/workspace/website/website.json +msgid "Web Page" +msgstr "Nettside" + +#. Name of a DocType +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Web Page Block" +msgstr "Websideblokk" + +#: frappe/public/js/frappe/utils/utils.js:1749 +msgid "Web Page URL" +msgstr "Nettside-URL" + +#. Name of a DocType +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Web Page View" +msgstr "Nettsidevisning" + +#. Label of a Card Break in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "Web Site" +msgstr "Nettsted" + +#. Label of the web_template (Link) field in DocType 'Web Page Block' +#. Name of a DocType +#: frappe/website/doctype/web_page_block/web_page_block.json +#: frappe/website/doctype/web_template/web_template.json +msgid "Web Template" +msgstr "Nettmal" + +#. Name of a DocType +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Web Template Field" +msgstr "Nettmalfelt" + +#. 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 "Verdier for nettmaler" + +#: frappe/utils/jinja_globals.py:48 +msgid "Web Template is not specified" +msgstr "Nettmal er ikke spesifisert" + +#. Label of the web_view (Tab Break) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Web View" +msgstr "Nettvisning" + +#. Name of a DocType +#. Label of the webhook (Link) field in DocType 'Webhook Request Log' +#. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Webhook" +msgstr "Webhook" + +#. Label of the sb_webhook_data (Section Break) field in DocType 'Webhook' +#. Name of a DocType +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_data/webhook_data.json +msgid "Webhook Data" +msgstr "Webhook data" + +#. Name of a DocType +#: frappe/integrations/doctype/webhook_header/webhook_header.json +msgid "Webhook Header" +msgstr "Webhook header" + +#. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Headers" +msgstr "Webhook headere" + +#. Label of the sb_webhook (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Request" +msgstr "Webhook request" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Webhook Request Log" +msgstr "Webhook request logg" + +#. Label of the webhook_secret (Password) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Secret" +msgstr "Webhook secret" + +#. Label of the sb_security (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Security" +msgstr "Webhook security" + +#. Label of the sb_condition (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Trigger" +msgstr "Webhook trigger" + +#. Label of the webhook_url (Data) field in DocType 'Slack Webhook URL' +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +msgid "Webhook URL" +msgstr "Webhook URL" + +#. Group in Module Def's connections +#. Name of a Workspace +#: frappe/core/doctype/module_def/module_def.json +#: frappe/public/js/frappe/ui/apps_switcher.js:125 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +#: frappe/website/workspace/website/website.json +msgid "Website" +msgstr "Nettsted" + +#. Name of a report +#: frappe/website/report/website_analytics/website_analytics.json +msgid "Website Analytics" +msgstr "Nettstedsanalyse" + +#. Name of a role +#: frappe/core/doctype/comment/comment.json +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/website/doctype/color/color.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/doctype/portal_settings/portal_settings.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_script/website_script.json +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/doctype/website_sidebar/website_sidebar.json +#: frappe/website/doctype/website_slideshow/website_slideshow.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Website Manager" +msgstr "Nettstedsansvarlig" + +#. Name of a DocType +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json +msgid "Website Meta Tag" +msgstr "Meta-tagg for nettstedet" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_route_meta/website_route_meta.json +#: frappe/website/workspace/website/website.json +msgid "Website Route Meta" +msgstr "Sti-metadata for nettsted" + +#. Name of a DocType +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +msgid "Website Route Redirect" +msgstr "Sti-viderekobling for nettsted" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_script/website_script.json +#: frappe/website/workspace/website/website.json +msgid "Website Script" +msgstr "Skript for nettstedet" + +#. Label of the website_search_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Website Search Field" +msgstr "Nettstedets søkefelt" + +#: frappe/core/doctype/doctype/doctype.py:1523 +msgid "Website Search Field must be a valid fieldname" +msgstr "Nettstedets søkefelt må være et gyldig feltnavn" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/workspace/website/website.json +msgid "Website Settings" +msgstr "Innstillinger for nettsted" + +#. Label of the website_sidebar (Link) field in DocType 'Web Form' +#. Label of the website_sidebar (Link) field in DocType 'Web Page' +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_sidebar/website_sidebar.json +#: frappe/website/workspace/website/website.json +msgid "Website Sidebar" +msgstr "Nettstedets sidefelt" + +#. Name of a DocType +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Website Sidebar Item" +msgstr "Element i nettstedets sidefelt" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_slideshow/website_slideshow.json +#: frappe/website/workspace/website/website.json +msgid "Website Slideshow" +msgstr "Lysbildefremvisning på nettstedet" + +#. Name of a DocType +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "Website Slideshow Item" +msgstr "Element i lysbildefremvisning på nettstedet" + +#. Label of the website_theme (Link) field in DocType 'Website Settings' +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/doctype/website_theme/website_theme.json +#: frappe/website/workspace/website/website.json +msgid "Website Theme" +msgstr "Nettstedstema" + +#. Name of a DocType +#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json +msgid "Website Theme Ignore App" +msgstr "Ignorer app for nettstedstema" + +#. 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 "Bilde­ for nettstedstema" + +#. 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 "Bilde­lenke for nettstedstema" + +#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Websocket" +msgstr "Websocket" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the wednesday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Wednesday" +msgstr "Onsdag" + +#: frappe/public/js/frappe/views/calendar/calendar.js:276 +msgid "Week" +msgstr "Uke" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Weekdays" +msgstr "Ukedager" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Frequency' (Select) field in DocType 'User' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:399 +#: frappe/website/report/website_analytics/website_analytics.js:24 +msgid "Weekly" +msgstr "Ukentlig" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Weekly Long" +msgstr "Ukeslang" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:384 +msgid "Welcome" +msgstr "Velkommen" + +#. Label of the welcome_email_template (Link) field in DocType 'System +#. Settings' +#. Label of the welcome_email_template (Link) field in DocType 'Email Group' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/email/doctype/email_group/email_group.json +msgid "Welcome Email Template" +msgstr "Mal for velkomst-e-post" + +#. Label of the welcome_url (Data) field in DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Welcome URL" +msgstr "Velkomst-URL" + +#. Name of a Workspace +#: frappe/core/workspace/welcome_workspace/welcome_workspace.json +msgid "Welcome Workspace" +msgstr "Velkomst og introduksjon" + +#: frappe/core/doctype/user/user.py:416 +msgid "Welcome email sent" +msgstr "Velkomst-e-post sendt" + +#: frappe/core/doctype/user/user.py:477 +msgid "Welcome to {0}" +msgstr "Velkommen til {0}" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:62 +msgid "What's New" +msgstr "Hva er nytt" + +#. Description of the 'Allow Guests to Upload Files' (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "When enabled this will allow guests to upload files to your application, You can enable this if you wish to collect files from user without having them to log in, for example in job applications web form." +msgstr "Når dette er aktivert, vil gjester kunne laste opp filer til applikasjonen din. Du kan aktivere dette hvis du ønsker å samle inn filer fra brukere uten at de må logge inn, for eksempel i et nettskjema for jobbsøknader." + +#. 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 "Når du sender et dokument via e-post, må du lagre PDF-filen på Kommunikasjon. Advarsel: Dette kan øke lagringsplassbruken." + +#. 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 "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 +#: frappe/public/js/frappe/widgets/widget_dialog.js:481 +msgid "Which view of the associated DocType should this shortcut take you to?" +msgstr "Hvilken visning av den tilknyttede dokumenttypen (DocType) skal denne snarveien ta deg til?" + +#. Label of the width (Data) field in DocType 'DocField' +#. Label of the width (Int) field in DocType 'Report Column' +#. Label of the width (Data) field in DocType 'Custom Field' +#. Label of the width (Data) field in DocType 'Customize Form Field' +#. Label of the width (Select) field in DocType 'Dashboard Chart Link' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8 +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11 +msgid "Width" +msgstr "Bredde" + +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:2 +msgid "Widths can be set in px or %." +msgstr "Bredder kan angis i px eller %." + +#. Label of the wildcard_filter (Check) field in DocType 'Report Filter' +#: frappe/core/doctype/report_filter/report_filter.json +msgid "Wildcard Filter" +msgstr "Jokertegnfilter" + +#. 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 "Vil legge til «%» før og etter spørringen" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:485 +msgid "Will be your login ID" +msgstr "Vil være din innloggings-ID" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:424 +msgid "Will only be shown if section headings are enabled" +msgstr "Vil bare vises hvis seksjonsoverskrifter er aktivert" + +#. Description of the 'Run Jobs only Daily if Inactive For (Days)' (Int) field +#. in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." +msgstr "Kjører planlagte jobber bare én gang om dagen for inaktive nettsteder. Sett den til 0 for å unngå automatisk deaktivering av planleggeren." + +#: frappe/public/js/frappe/form/print_utils.js:45 +msgid "With Letter head" +msgstr "Med brevhode" + +#. Label of the worker_information_section (Section Break) field in DocType 'RQ +#. Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Worker Information" +msgstr "Info om bakgrunnsprosesser" + +#. Label of the worker_name (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Worker Name" +msgstr "Prosessnavn" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Group in DocType's connections +#. Name of a DocType +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/public/js/workflow_builder/store.js:129 +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow" +msgstr "Arbeidsflyt" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_action/workflow_action.json +#: frappe/workflow/doctype/workflow_action/workflow_action.py:444 +msgid "Workflow Action" +msgstr "Arbeidsflythandling" + +#. Name of a DocType +#. Description of a DocType +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json +msgid "Workflow Action Master" +msgstr "Mal for arbeidsflythandling" + +#. Label of the workflow_action_name (Data) field in DocType 'Workflow Action +#. Master' +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json +msgid "Workflow Action Name" +msgstr "Navn på arbeidsflythandling" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json +msgid "Workflow Action Permitted Role" +msgstr "Tillatt rolle for arbeidsflythandling" + +#. Description of the 'Is Optional State' (Check) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Workflow Action is not created for optional states" +msgstr "Det opprettes ikke arbeidsflythandling for valgfrie tilstander" + +#: frappe/public/js/workflow_builder/store.js:129 +#: frappe/workflow/doctype/workflow/workflow.js:25 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:4 +msgid "Workflow Builder" +msgstr "Arbeidsflytbygger" + +#. Label of the workflow_builder_id (Data) field in DocType 'Workflow Document +#. State' +#. Label of the workflow_builder_id (Data) field in DocType 'Workflow +#. Transition' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Workflow Builder ID" +msgstr "Arbeidsflytbygger ID" + +#: frappe/workflow/doctype/workflow/workflow.js:11 +msgid "Workflow Builder allows you to create workflows visually. You can drag and drop states and link them to create transitions. Also you can update thieir properties from the sidebar." +msgstr "Med Arbeidsflytbygger kan du lage arbeidsflyter visuelt. Du kan dra og slippe tilstander og koble dem sammen for å lage overganger. Du kan også oppdatere egenskapene deres fra sidefeltet." + +#. Label of the workflow_data (JSON) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow Data" +msgstr "Arbeidsflytdata" + +#: frappe/public/js/workflow_builder/components/Properties.vue:44 +msgid "Workflow Details" +msgstr "Arbeidsflytdetaljer" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Workflow Document State" +msgstr "Tilstand for arbeidsflytdokument" + +#. Label of the workflow_name (Data) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow Name" +msgstr "Navn på arbeidsflyt" + +#. Label of the workflow_state (Data) field in DocType 'Workflow Action' +#. Name of a DocType +#: frappe/workflow/doctype/workflow_action/workflow_action.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow State" +msgstr "Arbeidsflyttilstand" + +#. Label of the workflow_state_field (Data) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow State Field" +msgstr "Felt for arbeidsflyttilstand" + +#: frappe/model/workflow.py:64 +msgid "Workflow State not set" +msgstr "Arbeidsflyttilstand ikke angitt" + +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 +msgid "Workflow State transition not allowed from {0} to {1}" +msgstr "Overgang mellom arbeidsflyttilstander er ikke tillatt fra {0} til {1}" + +#: frappe/workflow/doctype/workflow/workflow.js:140 +msgid "Workflow States Don't Exist" +msgstr "Arbeidsflyttilstander finnes ikke" + +#: frappe/model/workflow.py:384 +msgid "Workflow Status" +msgstr "Arbeidsflyttilstand" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "Oppgaver i arbeidsflyt" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Workflow Transition" +msgstr "Arbeidsflytovergang" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "Oppgave ved arbeidsflytovergang" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "Oppgaver ved arbeidsflytovergang" + +#. Description of a DocType +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow state represents the current state of a document." +msgstr "Arbeidsflyttilstand representerer den nåværende tilstanden til et dokument." + +#: frappe/public/js/workflow_builder/store.js:83 +msgid "Workflow updated successfully" +msgstr "Arbeidsflyten ble oppdatert" + +#. Label of the workspace_section (Section Break) field in DocType 'User' +#. Label of a Link in the Build Workspace +#. Name of a DocType +#. Option for the 'Type' (Select) field in DocType 'Workspace' +#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 +#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/views/workspace/workspace.js:10 +msgid "Workspace" +msgstr "Arbeidsområde" + +#: frappe/public/js/frappe/router.js:180 +msgid "Workspace {0} does not exist" +msgstr "Arbeidsområdet {0} finnes ikke" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_chart/workspace_chart.json +msgid "Workspace Chart" +msgstr "Diagram for arbeidsområde" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json +msgid "Workspace Custom Block" +msgstr "Tilpasset blokk for arbeidsområde" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Workspace Link" +msgstr "Lenke for arbeidsområde" + +#. Name of a role +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Manager" +msgstr "Administrator for arbeidsområder" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json +msgid "Workspace Number Card" +msgstr "Nummerkort for arbeidsområde" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +msgid "Workspace Quick List" +msgstr "Hurtigliste for arbeidsområde" + +#. Label of a standard navbar item +#. Type: Action +#. Name of a DocType +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +#: frappe/hooks.py +msgid "Workspace Settings" +msgstr "Innstillinger for arbeidsområde" + +#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace +#. Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Setup Completed" +msgstr "Oppsett av arbeidsområdet er fullført" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Workspace Shortcut" +msgstr "Snarvei til arbeidsområde" + +#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace +#. Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Visibility" +msgstr "Synlighet av arbeidsområde" + +#: frappe/public/js/frappe/views/workspace/workspace.js:538 +msgid "Workspace {0} created" +msgstr "Arbeidsområde {0} opprettet" + +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Workspaces" +msgstr "Arbeidsområder" + +#: 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." +msgstr "Ønsker du å publisere denne kommentaren? Dette betyr at den blir synlig for brukere av nettstedet/portalen." + +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 +msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." +msgstr "Ønsker du å avpublisere denne kommentaren? Dette betyr at den ikke lenger vil være synlig for brukere av nettstedet/portalen." + +#: frappe/desk/page/setup_wizard/setup_wizard.py:41 +msgid "Wrapping up" +msgstr "Oppsummerer" + +#. Label of the write (Check) field in DocType 'Custom DocPerm' +#. Label of the write (Check) field in DocType 'DocPerm' +#. Label of the write (Check) field in DocType 'DocShare' +#. Label of the write (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "Write" +msgstr "Skrive" + +#: frappe/model/base_document.py:1011 +msgid "Wrong Fetch From value" +msgstr "Feil «Hent fra»-verdi" + +#: frappe/public/js/frappe/views/reports/report_view.js:495 +msgid "X Axis Field" +msgstr "Felt i X-akse" + +#. Label of the x_field (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "X Field" +msgstr "X-felt" + +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "XLSX" +msgstr "XLSX" + +#. Label of the y_axis (Table) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Y Axis" +msgstr "Y-akse" + +#: frappe/public/js/frappe/views/reports/report_view.js:502 +msgid "Y Axis Fields" +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:1233 +msgid "Y Field" +msgstr "Y-felt" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Yahoo Mail" +msgstr "Yahoo Mail" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Yandex.Mail" +msgstr "Yandex.Mail" + +#. Label of the heatmap_year (Select) field in DocType 'Dashboard Chart' +#. Label of the year (Data) field in DocType 'Company History' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/doctype/company_history/company_history.json +msgid "Year" +msgstr "År" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:403 +msgid "Yearly" +msgstr "Årlig" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Yellow" +msgstr "Gul" + +#. Option for the 'Standard' (Select) field in DocType 'Page' +#. Option for the 'Is Standard' (Select) field in DocType 'Report' +#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP +#. Settings' +#. Option for the 'Standard' (Select) field in DocType 'Print Format' +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:498 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 +#: frappe/website/doctype/help_article/templates/help_article.html:25 +msgid "Yes" +msgstr "Ja" + +#: frappe/public/js/frappe/ui/messages.js:32 +msgctxt "Approve confirmation dialog" +msgid "Yes" +msgstr "Ja" + +#: frappe/public/js/frappe/ui/filters/filter.js:545 +msgctxt "Checkbox is checked" +msgid "Yes" +msgstr "Ja" + +#: frappe/public/js/frappe/ui/filters/filter.js:727 +msgid "Yesterday" +msgstr "I går" + +#: frappe/public/js/frappe/utils/user.js:33 +msgctxt "Name of the current user. For example: You edited this 5 hours ago." +msgid "You" +msgstr "Du" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:463 +msgid "You Liked" +msgstr "Du likte" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "Du la til 1 rad til {0}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "Du la til {0} rader til {1}" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + +#: frappe/public/js/frappe/dom.js:438 +msgid "You are connected to internet." +msgstr "Du er koblet til Internett." + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:20 +msgid "You are impersonating as another user." +msgstr "Du utgir deg for å være en annen bruker." + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:28 +msgid "You are not allowed to access this resource" +msgstr "Du har ikke tilgang til denne ressursen" + +#: frappe/permissions.py:431 +msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" +msgstr "Du har ikke tilgang til denne {0} oppføringen fordi den er lenket til {1} '{2}' i felt {3}" + +#: frappe/permissions.py:420 +msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" +msgstr "Du har ikke tilgang til denne {0} -posten fordi den er knyttet til {1} '{2}' i rad {3}, felt {4}" + +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:68 +msgid "You are not allowed to create columns" +msgstr "Du har ikke rettigheter til å opprette kolonner" + +#: frappe/core/doctype/report/report.py:97 +msgid "You are not allowed to delete Standard Report" +msgstr "Du har ikke rettigheter til å slette standardrapporten" + +#: frappe/website/doctype/website_theme/website_theme.py:73 +msgid "You are not allowed to delete a standard Website Theme" +msgstr "Du har ikke rettigheter til å slette et standard nettstedstema" + +#: frappe/core/doctype/report/report.py:391 +msgid "You are not allowed to edit the report." +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:444 frappe/desk/reportview.py:447 +#: frappe/permissions.py:626 +msgid "You are not allowed to export {} doctype" +msgstr "Du har ikke rettigheter til å eksportere {} dokumenttype (DocType)" + +#: frappe/public/js/frappe/views/treeview.js:450 +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:787 +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/website/doctype/web_form/web_form.py:632 +msgid "You are not allowed to update this Web Form Document" +msgstr "Du har ikke rettigheter til å oppdatere dette nettskjemadokumentet" + +#: frappe/public/js/frappe/request.js:37 +msgid "You are not connected to Internet. Retry after sometime." +msgstr "Du er ikke koblet til Internett. Prøv på nytt etter en stund." + +#: frappe/public/js/frappe/web_form/webform_script.js:22 +msgid "You are not permitted to access this page without login." +msgstr "Du har ikke tilgang til denne siden uten å være logget inn." + +#: frappe/www/app.py:27 +msgid "You are not permitted to access this page." +msgstr "Ditt rettighetsnivå hindrer visning av denne siden." + +#: frappe/__init__.py:465 +msgid "You are not permitted to access this resource. Login to access" +msgstr "Du må være innlogget for å få tilgang til denne ressursen." + +#: frappe/public/js/frappe/form/sidebar/document_follow.js:131 +msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." +msgstr "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:117 +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." + +#: frappe/email/doctype/email_account/email_account.js:284 +msgid "You are selecting Sync Option as ALL, It will resync all read as well as unread message from server. This may also cause the duplication of Communication (emails)." +msgstr "Du velger Synkroniseringsalternativet ALLE. Dette vil synkronisere alle leste og uleste meldinger fra serveren på nytt. Dette kan også føre til duplisering av kommunikasjon (e-poster)." + +#: frappe/public/js/frappe/form/footer/form_timeline.js:414 +msgctxt "Form timeline" +msgid "You attached {0}" +msgstr "Du la ved {0}" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:749 +msgid "You can add dynamic properties from the document by using Jinja templating." +msgstr "Du kan legge til dynamiske egenskaper fra dokumentet ved å bruke Jinja-maler." + +#: frappe/printing/doctype/letter_head/letter_head.js:32 +msgid "You can also access wkhtmltopdf variables (valid only in PDF print):" +msgstr "Du kan også få tilgang til wkhtmltopdf-variabler (kun gyldig i PDF-utskrift):" + +#: frappe/templates/emails/new_user.html:22 +msgid "You can also copy-paste following link in your browser" +msgstr "Du kan også kopiere og lime inn følgende lenke i nettleseren din" + +#: frappe/templates/emails/download_data.html:9 +msgid "You can also copy-paste this" +msgstr "Du kan også kopiere og lime inn dette" + +#: frappe/templates/emails/delete_data_confirmation.html:11 +msgid "You can also copy-paste this {0} to your browser" +msgstr "Du kan også kopiere og lime inn denne {0} i nettleseren din" + +#: frappe/templates/emails/user_invitation_expired.html:8 +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}." + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:194 +msgid "You can continue with the onboarding after exploring this page" +msgstr "Du kan fortsette med onboarding-prosessen etter å ha utforsket denne siden" + +#: frappe/model/delete_doc.py:177 +msgid "You can disable this {0} instead of deleting it." +msgstr "Du kan deaktivere denne {0} i stedet for å slette den." + +#: frappe/core/doctype/file/file.py:761 +msgid "You can increase the limit from System Settings." +msgstr "Du kan øke grensen fra systeminnstillingene." + +#: frappe/utils/synchronization.py:48 +msgid "You can manually remove the lock if you think it's safe: {}" +msgstr "Du kan manuelt fjerne låsen hvis du tror det er trygt: {}" + +#: frappe/public/js/frappe/form/controls/markdown_editor.js:75 +msgid "You can only insert images in Markdown fields" +msgstr "Du kan bare sette inn bilder i felter som støtter Markdown" + +#: frappe/public/js/frappe/list/bulk_operations.js:42 +msgid "You can only print upto {0} documents at a time" +msgstr "Du kan bare skrive ut opptil {0} dokumenter om gangen" + +#: frappe/core/doctype/user_type/user_type.py:104 +msgid "You can only set the 3 custom doctypes in the Document Types table." +msgstr "Du kan bare angi tre egendefinerte dokumenttyper (DocType) i dokumenttype-tabellen." + +#: frappe/handler.py:183 +msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." +msgstr "Du kan bare laste opp JPG, PNG, PDF, TXT, CSV eller Microsoft-dokumenter." + +#: frappe/core/doctype/data_export/exporter.py:199 +msgid "You can only upload upto 5000 records in one go. (may be less in some cases)" +msgstr "Du kan bare laste opp opptil 5000 poster samtidig. (I noen tilfeller færre enn det også)" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "You can select one from the following," +msgstr "Du kan velge ett av følgende," + +#. Description of the 'Rate limit for email link login' (Int) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "You can set a high value here if multiple users will be logging in from the same network." +msgstr "Du kan angi en høy verdi her hvis flere brukere skal logge seg på fra samme nettverk." + +#: frappe/desk/query_report.py:382 +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 +msgid "You can use Customize Form to set levels on fields." +msgstr "Du kan bruke Tilpass skjema til å angi nivåer på felt." + +#: frappe/public/js/frappe/form/link_selector.js:30 +msgid "You can use wildcard %" +msgstr "Du kan bruke jokertegn %." + +#: frappe/custom/doctype/customize_form/customize_form.py:394 +msgid "You can't set 'Options' for field {0}" +msgstr "Du kan ikke angi «Alternativer» for felt {0}" + +#: frappe/custom/doctype/customize_form/customize_form.py:398 +msgid "You can't set 'Translatable' for field {0}" +msgstr "Du kan ikke angi «Oversettbar» for felt {0}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:74 +msgctxt "Form timeline" +msgid "You cancelled this document" +msgstr "Du avbrøt dette dokumentet" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:61 +msgctxt "Form timeline" +msgid "You cancelled this document {1}" +msgstr "Du avbrøt dokumentet {1}" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:417 +msgid "You cannot create a dashboard chart from single DocTypes" +msgstr "Du kan ikke opprette et oversiktspanel-diagram fra enkeltstående dokumenttyper (DocType)" + +#: 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}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125 +msgid "You changed the value of {0}" +msgstr "Du endret verdien for {0}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114 +msgid "You changed the value of {0} {1}" +msgstr "Du endret verdien for {0} {1}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:191 +msgid "You changed the values for {0}" +msgstr "Du endret verdiene for {0}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:180 +msgid "You changed the values for {0} {1}" +msgstr "Du endret verdiene for {0} {1}" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:443 +msgctxt "Form timeline" +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:94 +msgid "You created this" +msgstr "Du opprettet dette" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 +msgctxt "Form timeline" +msgid "You created this document {0}" +msgstr "Du opprettet dette dokumentet {0}" + +#: frappe/client.py:417 +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 +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." + +#: frappe/app.py:384 +msgid "You do not have enough permissions to complete the action" +msgstr "Du har ikke tilstrekkelige rettigheter til å fullføre handlingen" + +#: frappe/database/query.py:531 +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:923 +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:960 +msgid "You do not have permissions to cancel all linked documents." +msgstr "Du har ikke rettigheter til å avbryte alle sammenlenkede dokumenter." + +#: frappe/desk/query_report.py:43 +msgid "You don't have access to Report: {0}" +msgstr "Du har ikke tilgang til rapport: {0}" + +#: frappe/website/doctype/web_form/web_form.py:835 +msgid "You don't have permission to access the {0} DocType." +msgstr "Du har ikke rettigheter for tilgang til {} dokumenttype (DocType)." + +#: frappe/utils/response.py:289 frappe/utils/response.py:293 +msgid "You don't have permission to access this file" +msgstr "Du har ikke rettigheter for tilgang til denne filen" + +#: frappe/desk/query_report.py:49 +msgid "You don't have permission to get a report on: {0}" +msgstr "Du har ikke rettigheter til å få en rapport på: {0}" + +#: frappe/website/doctype/web_form/web_form.py:175 +msgid "You don't have the permissions to access this document" +msgstr "Du har ikke rettigheter til å få tilgang til dette dokumentet" + +#: frappe/templates/emails/new_message.html:1 +msgid "You have a new message from:" +msgstr "Du har en ny melding fra:" + +#: frappe/handler.py:119 +msgid "You have been successfully logged out" +msgstr "Du er blitt logget ut" + +#: frappe/custom/doctype/customize_form/customize_form.py:247 +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 +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." + +#: frappe/twofactor.py:437 +msgid "You have to enable Two Factor Auth from System Settings." +msgstr "Du må aktivere tofaktorautentisering fra systeminnstillinger." + +#: frappe/public/js/frappe/model/create_new.js:328 +msgid "You have unsaved changes in this form. Please save before you continue." +msgstr "Du har ulagrede endringer i dette skjemaet. Vennligst lagre før du fortsetter." + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:50 +msgid "You have unseen notifications" +msgstr "Du har usette varsler" + +#: frappe/core/doctype/log_settings/log_settings.py:125 +msgid "You have unseen {0}" +msgstr "Du har usett {0}" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:192 +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:503 +msgid "You haven't created a {0} yet" +msgstr "Du har ikke opprettet en {0} ennå" + +#: frappe/rate_limiter.py:166 +msgid "You hit the rate limit because of too many requests. Please try after sometime." +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:105 +msgid "You last edited this" +msgstr "Du redigerte dette sist" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:352 +msgid "You must add atleast one link." +msgstr "Du må legge til minst én lenke." + +#: frappe/website/doctype/web_form/web_form.py:831 +msgid "You must be logged in to use this form." +msgstr "Du må være innlogget for å bruke dette skjemaet." + +#: frappe/website/doctype/web_form/web_form.py:672 +msgid "You must login to submit this form" +msgstr "Du må logge inn for å kunne registrere dette skjemaet" + +#: frappe/model/document.py:358 +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:127 +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." + +#: frappe/desk/doctype/workspace/workspace.py:76 +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 +msgid "You need to be a system user to access this page." +msgstr "Du må være systembruker for å få adgang til denne siden." + +#: frappe/website/doctype/web_form/web_form.py:91 +msgid "You need to be in developer mode to edit a Standard Web Form" +msgstr "Du må være i utviklermodus for å redigere et standard webskjema" + +#: frappe/utils/response.py:278 +msgid "You need to be logged in and have System Manager Role to be able to access backups." +msgstr "Du må være logget inn og ha rollen som systemansvarlig for å få tilgang til sikkerhetskopier." + +#: frappe/www/me.py:13 frappe/www/third_party_apps.py:10 +msgid "You need to be logged in to access this page" +msgstr "Du må være innlogget for å få tilgang til denne siden" + +#: frappe/website/doctype/web_form/web_form.py:164 +msgid "You need to be logged in to access this {0}." +msgstr "Du må være innlogget for å få tilgang til denne {0}." + +#: frappe/public/js/frappe/widgets/links_widget.js:63 +msgid "You need to create these first:" +msgstr "Du må opprette disse først:" + +#: frappe/www/login.html:76 +msgid "You need to enable JavaScript for your app to work." +msgstr "Du må aktivere JavaScript for at appen skal fungere." + +#: frappe/core/doctype/docshare/docshare.py:62 +msgid "You need to have \"Share\" permission" +msgstr "Du må ha tillatelse til å dele" + +#: frappe/utils/print_format.py:268 +msgid "You need to install pycups to use this feature!" +msgstr "Du må installere pycups for å bruke denne funksjonen!" + +#: frappe/core/doctype/recorder/recorder.js:38 +msgid "You need to select indexes you want to add first." +msgstr "Du må først velge indeksene du vil legge til." + +#: frappe/email/doctype/email_account/email_account.py:160 +msgid "You need to set one IMAP folder for {0}" +msgstr "Du må angi én IMAP-mappe for {0}" + +#: frappe/model/rename_doc.py:391 +msgid "You need write permission on {0} {1} to merge" +msgstr "Du trenger skriverettighet på {0} {1} for å slå sammen" + +#: frappe/model/rename_doc.py:386 +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:449 +msgid "You need {0} permission to fetch values from {1} {2}" +msgstr "Du må ha rettighet fra {0} for å hente verdier fra {1} {2}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "Du fjernet 1 rad fra {0}" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:419 +msgctxt "Form timeline" +msgid "You removed attachment {0}" +msgstr "Du fjernet vedlegg {0}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "Du fjernet {0} rader fra {1}" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:520 +msgid "You seem good to go!" +msgstr "Du ser ut til å være klar for å begynne!" + +#: frappe/templates/includes/contact.js:20 +msgid "You seem to have written your name instead of your email. Please enter a valid email address so that we can get back." +msgstr "Det ser ut som du har skrevet navnet ditt i stedet for e-postadressen din. Vennligst skriv inn en gyldig e-postadresse slik at vi kan svare deg." + +#: frappe/public/js/frappe/list/bulk_operations.js:31 +msgid "You selected Draft or Cancelled documents" +msgstr "Du valgte utkast eller avbrutte dokumenter" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:48 +msgctxt "Form timeline" +msgid "You submitted this document" +msgstr "Du registrerte dette dokumentet" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:35 +msgctxt "Form timeline" +msgid "You submitted this document {0}" +msgstr "Du registrerte dette dokumentet {0}" + +#: frappe/public/js/frappe/form/sidebar/document_follow.js:144 +msgid "You unfollowed this document" +msgstr "Du sluttet å følge dette dokumentet" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:183 +msgid "You viewed this" +msgstr "Du så dette" + +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "Du er blitt invitert til å bli med på {0}" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "Du er blitt invitert til å bli med på {0}" + +#: frappe/public/js/frappe/desk.js:547 +msgid "You've logged in as another user from another tab. Refresh this page to continue using system." +msgstr "Du har logget inn som en annen bruker fra en annen fane. Oppdater denne siden for å fortsette å bruke systemet." + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "YouTube" + +#: frappe/core/doctype/prepared_report/prepared_report.js:57 +msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." +msgstr "CSV-filen din genereres og vil vises i Vedlegg-delen når den er klar. I tillegg vil du bli varslet når filen er tilgjengelig for nedlasting." + +#: frappe/desk/page/setup_wizard/setup_wizard.js:397 +msgid "Your Country" +msgstr "Ditt land" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:389 +msgid "Your Language" +msgstr "Ditt språk" + +#: frappe/templates/includes/comments/comments.html:21 +msgid "Your Name" +msgstr "Ditt navn" + +#: frappe/public/js/frappe/list/bulk_operations.js:132 +msgid "Your PDF is ready for download" +msgstr "PDF-filen din er klar for nedlasting" + +#: frappe/patches/v14_0/update_workspace2.py:34 +msgid "Your Shortcuts" +msgstr "Dine snarveier" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:145 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:151 +msgid "Your account has been deleted" +msgstr "Din konto er blitt slettet" + +#: frappe/auth.py:517 +msgid "Your account has been locked and will resume after {0} seconds" +msgstr "Kontoen din er låst og vil bli gjenopptatt etter {0} sekunder" + +#: frappe/desk/form/assign_to.py:279 +msgid "Your assignment on {0} {1} has been removed by {2}" +msgstr "Oppgaven din på {0} {1} er fjernet av {2}" + +#: frappe/core/doctype/file/file.js:74 +msgid "Your browser does not support the audio element." +msgstr "Nettleseren din støtter ikke audio-elementet." + +#: frappe/core/doctype/file/file.js:56 +msgid "Your browser does not support the video element." +msgstr "Nettleseren din støtter ikke video-elementet." + +#: frappe/templates/pages/integrations/gcalendar-success.html:11 +msgid "Your connection request to Google Calendar was successfully accepted" +msgstr "Forespørselen din om tilkobling til Google Kalender ble godkjent" + +#: frappe/www/contact.html:35 +msgid "Your email address" +msgstr "Din e-postadresse " + +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "Din eksporterte rapport: {0}" + +#: frappe/public/js/frappe/web_form/web_form.js:452 +msgid "Your form has been successfully updated" +msgstr "Skjemaet ditt er blitt oppdatert" + +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "Invitasjonen din til å bli med {0} er blitt kansellert av nettstedadministratoren." + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "Invitasjonen din til å bli medlem av {0} har utløpt." + +#: frappe/templates/emails/new_user.html:6 +msgid "Your login id is" +msgstr "Din innloggings-ID er" + +#: frappe/www/update-password.html:192 +msgid "Your new password has been set successfully." +msgstr "Vellykket oppretting av nytt passord." + +#: frappe/www/update-password.html:172 +msgid "Your old password is incorrect." +msgstr "Det gamle passordet ditt er feil." + +#. Description of the 'Email Footer Address' (Small Text) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Your organization name and address for the email footer." +msgstr "Organisasjonens navn og adresse for bunnteksten i e-posten." + +#: frappe/templates/emails/auto_reply.html:2 +msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." +msgstr "Vi har mottatt forespørselen din. Vi vil svare tilbake innen kort tid. Hvis du har ytterligere informasjon, vennligst svar på denne e-posten." + +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "Rapporten din genereres i bakgrunnen. Du vil motta en e-post på {0} med en nedlastingslenke når den er klar." + +#: frappe/app.py:377 +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:15 +msgid "Your site is undergoing maintenance or being updated." +msgstr "Nettstedet ditt er under vedlikehold eller oppdatering." + +#: frappe/templates/emails/verification_code.html:1 +msgid "Your verification code is {0}" +msgstr "Din verifiseringskode er {0}" + +#: frappe/utils/data.py:1558 +msgid "Zero" +msgstr "Null" + +#. Description of the 'Only Send Records Updated in Last X Hours' (Int) field +#. in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Zero means send records updated at anytime" +msgstr "Null betyr at alle oppdaterte poster sendes, uavhengig av tidspunkt" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 +msgid "[Action taken by {0}]" +msgstr "[Handling utført av {0}]" + +#. Label of the _doctype (Link) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "_doctype" +msgstr "_doctype" + +#. Label of the _report (Link) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "_report" +msgstr "_report" + +#: frappe/database/database.py:360 +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`." + +#: frappe/utils/background_jobs.py:120 +msgid "`job_id` paramater is required for deduplication." +msgstr "job_id-parameter er nødvendig for å hindre duplikater." + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "after_insert" +msgstr "etter_innsetting" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "amend" +msgstr "korriger" + +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 +msgid "and" +msgstr "og" + +#: frappe/public/js/frappe/ui/sort_selector.html:5 +#: frappe/public/js/frappe/ui/sort_selector.js:48 +msgid "ascending" +msgstr "stigende" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "blue" +msgstr "blå" + +#: frappe/public/js/frappe/form/workflow.js:35 +msgid "by Role" +msgstr "etter rolle" + +#. Label of the profile (Code) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "cProfile Output" +msgstr "cProfile-utdata" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 +msgid "calendar" +msgstr "kalender" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "cancel" +msgstr "avbryt" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "canceled" +msgstr "avbrutt" + +#: frappe/templates/includes/list/filters.html:19 +msgid "clear" +msgstr "tøm" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:34 +msgid "commented" +msgstr "kommenterte" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "create" +msgstr "opprett" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "cyan" +msgstr "cyan" + +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 +msgctxt "Days (Field: Duration)" +msgid "d" +msgstr "d" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "darkgrey" +msgstr "mørkegrå" + +#: frappe/core/page/dashboard_view/dashboard_view.js:65 +msgid "dashboard" +msgstr "Oversiktspanel" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "dd-mm-yyyy" +msgstr "dd-mm-yyyy" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "dd.mm.yyyy" +msgstr "dd.mm.yyyy" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "dd/mm/yyyy" +msgstr "dd/mm/yyyy" + +#. Option for the 'Queue' (Select) field in DocType 'RQ Job' +#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "default" +msgstr "standard" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "deferred" +msgstr "utsatt" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "delete" +msgstr "slett" + +#: frappe/public/js/frappe/ui/sort_selector.html:5 +#: frappe/public/js/frappe/ui/sort_selector.js:48 +msgid "descending" +msgstr "synkende" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163 +msgid "document type..., e.g. customer" +msgstr "dokumenttype (DocType) … f.eks. Kunde" + +#. Description of the 'Email Account Name' (Data) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\"" +msgstr "f.eks. \"Support\", \"Salg\", \"Jerry Yang\"" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:183 +msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..." +msgstr "f.eks. (55 + 434) / 4 eller =Math.sin(Math.PI/2)..." + +#. Description of the 'Incoming Server' (Data) field in DocType 'Email Account' +#. Description of the 'Incoming Server' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "e.g. pop.gmail.com / imap.gmail.com" +msgstr "f.eks. pop.gmail.com / imap.gmail.com" + +#. Description of the 'Default Incoming' (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "e.g. replies@yourcomany.com. All replies will come to this inbox." +msgstr "f.eks. svar@dittselskap.no. Alle svar kommer til denne innboksen." + +#. 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 "f.eks. smtp.gmail.com" + +#: frappe/custom/doctype/custom_field/custom_field.js:98 +msgid "e.g.:" +msgstr "f.eks.:" + +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "emacs" +msgstr "emacs" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "email" +msgstr "e-post" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 +msgid "email inbox" +msgstr "e-post innboks" + +#: frappe/permissions.py:425 frappe/permissions.py:436 +#: frappe/public/js/frappe/form/controls/link.js:507 +msgid "empty" +msgstr "tom" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "export" +msgstr "eksport" + +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "facebook" +msgstr "Facebook" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "failed" +msgstr "mislykket" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "fairlogin" +msgstr "fairlogin" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "finished" +msgstr "fullført" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "gray" +msgstr "grå" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "green" +msgstr "grønn" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "grey" +msgstr "grå" + +#: frappe/utils/backups.py:399 +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:219 +#: frappe/public/js/frappe/utils/utils.js:1123 +msgctxt "Hours (Field: Duration)" +msgid "h" +msgstr "h" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +msgid "hub" +msgstr "hub" + +#. Label of the icon (Data) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "icon" +msgstr "ikon" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "import" +msgstr "import" + +#: frappe/templates/signup.html:11 frappe/www/login.html:11 +msgid "jane@example.com" +msgstr "janne@eksempel.no" + +#: frappe/public/js/frappe/utils/pretty_date.js:46 +msgid "just now" +msgstr "akkurat nå" + +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 +msgid "label" +msgstr "etikett" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "light-blue" +msgstr "lyseblå" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "link" +msgstr "lenke" + +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "linkedin" +msgstr "LinkedIn" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "list" +msgstr "liste" + +#: frappe/www/third_party_apps.html:43 +msgid "logged in" +msgstr "innlogget" + +#: frappe/website/doctype/web_form/web_form.js:363 +msgid "login_required" +msgstr "login_required" + +#. Option for the 'Queue' (Select) field in DocType 'RQ Job' +#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "long" +msgstr "lang" + +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 +msgctxt "Minutes (Field: Duration)" +msgid "m" +msgstr "m" + +#: frappe/model/rename_doc.py:215 +msgid "merged {0} into {1}" +msgstr "slått sammen {0} til {1}" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "mm-dd-yyyy" +msgstr "mm-dd-yyyy" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "mm/dd/yyyy" +msgstr "mm/dd/yyyy" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "module" +msgstr "modul" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:178 +msgid "module name..." +msgstr "modulnavn..." + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 +msgid "new" +msgstr "ny" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:158 +msgid "new type of document" +msgstr "ny type dokument" + +#. Label of the no_failed (Int) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "no failed attempts" +msgstr "ingen mislykkede forsøk" + +#. Label of the nonce (Data) field in DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "nonce" +msgstr "nonce" + +#. Label of the notified (Check) field in DocType 'Reminder' +#: frappe/automation/doctype/reminder/reminder.json +msgid "notified" +msgstr "varslet" + +#: frappe/public/js/frappe/utils/pretty_date.js:25 +msgid "now" +msgstr "nå" + +#: frappe/public/js/frappe/form/grid_pagination.js:116 +msgid "of" +msgstr "av" + +#. Label of the old_parent (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "old_parent" +msgstr "old_parent" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_cancel" +msgstr "on_cancel" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_change" +msgstr "on_change" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_submit" +msgstr "on_submit" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_trash" +msgstr "on_trash" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_update" +msgstr "on_update" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_update_after_submit" +msgstr "on_update_after_submit" + +#: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90 +#: frappe/www/login.py:112 +msgid "or" +msgstr "eller" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "orange" +msgstr "oransje" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "page" +msgstr "side" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "pink" +msgstr "rosa" + +#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth +#. Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "plain" +msgstr "enkel" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "print" +msgstr "skriv ut" + +#. Label of the processlist (HTML) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "processlist" +msgstr "prosessliste" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "purple" +msgstr "lilla" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "query-report" +msgstr "spørringsrapport" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "queued" +msgstr "i kø" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "read" +msgstr "lest" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "red" +msgstr "rød" + +#: frappe/model/rename_doc.py:217 +msgid "renamed from {0} to {1}" +msgstr "omnavnet fra {0} til {1}" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "report" +msgstr "rapport" + +#. Label of the response (HTML) field in DocType 'Custom Role' +#: frappe/core/doctype/custom_role/custom_role.json +msgid "response" +msgstr "respons" + +#: frappe/core/doctype/deleted_document/deleted_document.py:61 +msgid "restored {0} as {1}" +msgstr "gjenopprettet {0} som {1}" + +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 +msgctxt "Seconds (Field: Duration)" +msgid "s" +msgstr "s" + +#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth +#. Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "s256" +msgstr "s256" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "scheduled" +msgstr "planlagt" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "select" +msgstr "velg" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "share" +msgstr "del" + +#. 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 "kort" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 +msgid "since last month" +msgstr "siden forrige måned" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 +msgid "since last week" +msgstr "siden forrige uke" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 +msgid "since last year" +msgstr "siden i fjor" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 +msgid "since yesterday" +msgstr "Siden i går" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "started" +msgstr "startet" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:201 +msgid "starting the setup..." +msgstr "starter installasjonen..." + +#. Description of the 'Group Object Class' (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "string value, i.e. group" +msgstr "strengverdi, dvs. gruppe" + +#. 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 "strengverdi, dvs. medlem" + +#. 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 "strengverdi, f.eks. {0} eller uid={0},ou=brukere,dc=eksempel,dc=com" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "submit" +msgstr "registrer" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:173 +msgid "tag name..., e.g. #tag" +msgstr "stikkord… f.eks. #prosjekt" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:168 +msgid "text in document type" +msgstr "tekst i dokumenttype (DocType)" + +#: frappe/public/js/frappe/form/controls/data.js:36 +msgid "this form" +msgstr "dette skjemaet" + +#: frappe/tests/test_translate.py:174 +msgid "this shouldn't break" +msgstr "dette burde ikke ødelegge" + +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "til nettleseren din" + +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "twitter" +msgstr "Twitter(X)" + +#: frappe/public/js/frappe/change_log.html:7 +msgid "updated to {0}" +msgstr "oppdatert til {0}" + +#: frappe/public/js/frappe/ui/filters/filter.js:361 +msgid "use % as wildcard" +msgstr "bruk % som jokertegn" + +#: frappe/public/js/frappe/ui/filters/filter.js:360 +msgid "values separated by commas" +msgstr "verdier atskilt med komma" + +#. Label of the version_table (HTML) field in DocType 'Audit Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json +msgid "version_table" +msgstr "version_table" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:382 +msgid "via Assignment Rule" +msgstr "via tildelingsregel" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 +msgid "via Auto Repeat" +msgstr "via automatisk gjentakelse" + +#: frappe/core/doctype/data_import/importer.py:271 +#: frappe/core/doctype/data_import/importer.py:292 +msgid "via Data Import" +msgstr "via dataimport" + +#. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "via Google Meet" +msgstr "via Google Meet" + +#: frappe/email/doctype/notification/notification.py:405 +msgid "via Notification" +msgstr "via varsel" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:17 +msgid "via {0}" +msgstr "via {0}" + +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "vim" +msgstr "vim" + +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "vscode" +msgstr "vskode" + +#: frappe/templates/includes/oauth_confirmation.html:5 +msgid "wants to access the following details from your account" +msgstr "ønsker tilgang til følgende detaljer fra kontoen din" + +#. Description of the 'Popover Element' (Check) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "when clicked on element it will focus popover if present." +msgstr "Når elementet klikkes, vil fokus settes til popover-en hvis den finnes" + +#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "wkhtmltopdf" +msgstr "wkhtmltopdf" + +#: frappe/printing/page/print/print.js:662 +msgid "wkhtmltopdf 0.12.x (with patched qt)." +msgstr "wkhtmltopdf 0.12.x (med patchet qt)." + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "workflow_transition" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "write" +msgstr "skrive" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "yellow" +msgstr "gul" + +#: frappe/public/js/frappe/utils/pretty_date.js:58 +msgid "yesterday" +msgstr " I går" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "yyyy-mm-dd" +msgstr "yyyy-mm-dd" + +#: frappe/desk/doctype/event/event.js:87 +#: frappe/public/js/frappe/form/footer/form_timeline.js:547 +msgid "{0}" +msgstr "{0}" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 +msgid "{0} ${skip_list ? \"\" : type}" +msgstr "{0} ${skip_list ? \"\" : type}" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 +msgid "{0} ${type}" +msgstr "{0} ${type}" + +#: frappe/public/js/frappe/data_import/data_exporter.js:80 +#: frappe/public/js/frappe/views/gantt/gantt_view.js:54 +msgid "{0} ({1})" +msgstr "{0} ({1})" + +#: frappe/public/js/frappe/data_import/data_exporter.js:77 +msgid "{0} ({1}) (1 row mandatory)" +msgstr "{0} ({1}) (1 rad påkrevet)" + +#: frappe/public/js/frappe/views/gantt/gantt_view.js:53 +msgid "{0} ({1}) - {2}%" +msgstr "{0} ({1}) - {2}%" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:377 +msgid "{0} = {1}" +msgstr "{0} = {1}" + +#: frappe/public/js/frappe/views/calendar/calendar.js:30 +msgid "{0} Calendar" +msgstr "{0} Kalender" + +#: frappe/public/js/frappe/views/reports/report_view.js:575 +msgid "{0} Chart" +msgstr "{0} Diagram" + +#: frappe/core/page/dashboard_view/dashboard_view.js:67 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 +msgid "{0} Dashboard" +msgstr "{0} oversiktspanel" + +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 +msgid "{0} Fields" +msgstr "{0} Felt" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:376 +msgid "{0} Google Calendar Events synced." +msgstr "{0} Google Kalender-hendelser synkronisert." + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:193 +msgid "{0} Google Contacts synced." +msgstr "{0} Google-kontakter synkronisert." + +#: frappe/public/js/frappe/form/footer/form_timeline.js:464 +msgid "{0} Liked" +msgstr "{0} Likt" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:83 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:84 +#: frappe/public/js/frappe/widgets/chart_widget.js:358 frappe/www/list.html:4 +#: frappe/www/list.html:8 +msgid "{0} List" +msgstr "{0} Liste" + +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "{0} Innstillinger for listevisning" + +#: frappe/public/js/frappe/utils/pretty_date.js:37 +msgid "{0} M" +msgstr "{0} M" + +#: frappe/public/js/frappe/views/map/map_view.js:14 +msgid "{0} Map" +msgstr "{0}-kart" + +#: frappe/public/js/frappe/form/quick_entry.js:122 +msgid "{0} Name" +msgstr "{0} Navn" + +#: frappe/model/base_document.py:1215 +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}" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96 +#: frappe/public/js/frappe/widgets/chart_widget.js:366 +msgid "{0} Report" +msgstr "{0} Rapport" + +#: frappe/public/js/frappe/views/reports/query_report.js:964 +msgid "{0} Reports" +msgstr "{0} Rapporter" + +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 +msgid "{0} Settings" +msgstr "{0} Innstillinger" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:87 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:88 +#: frappe/public/js/frappe/views/treeview.js:152 +msgid "{0} Tree" +msgstr "{0} Tre" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:128 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:73 +msgid "{0} Web page views" +msgstr "{0} Nettsidevisninger" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:91 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92 +msgid "{0} Workspace" +msgstr "{0} Arbeidsområde" + +#: frappe/public/js/frappe/form/link_selector.js:225 +msgid "{0} added" +msgstr "{0} lagt til" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "{0} la til 1 rad til {1}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "{0} la til {1} rader til {2}" + +#: frappe/public/js/frappe/form/controls/data.js:215 +msgid "{0} already exists. Select another name" +msgstr "{0} finnes allerede. Velg et annet navn" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:36 +msgid "{0} already unsubscribed" +msgstr "{0} allerede avmeldt" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49 +msgid "{0} already unsubscribed for {1} {2}" +msgstr "{0} allerede avmeldt for {1} {2}" + +#: frappe/utils/data.py:1765 +msgid "{0} and {1}" +msgstr "{0} og {1}" + +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:72 +msgid "{0} are currently {1}" +msgstr "{0} er for øyeblikket {1}" + +#: frappe/printing/doctype/print_format/print_format.py:98 +msgid "{0} are required" +msgstr "{0} er påkrevd" + +#: frappe/desk/form/assign_to.py:286 +msgid "{0} assigned a new task {1} {2} to you" +msgstr "{0} tildelte deg en ny oppgave {1} {2}" + +#: frappe/desk/doctype/todo/todo.py:48 +msgid "{0} assigned {1}: {2}" +msgstr "{0} tilordnet {1}: {2}" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:415 +msgctxt "Form timeline" +msgid "{0} attached {1}" +msgstr "{0} lagt ved {1}" + +#: frappe/core/doctype/system_settings/system_settings.py:153 +msgid "{0} can not be more than {1}" +msgstr "{0} kan ikke være mer enn {1}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:77 +msgid "{0} cancelled this document" +msgstr "{0} avbrøt dette dokumentet" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:68 +msgctxt "Form timeline" +msgid "{0} cancelled this document {1}" +msgstr "{0} avbrøt dette dokumentet {1}" + +#: frappe/model/document.py:548 +msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." +msgstr "{0} kan ikke korrigeres fordi det ikke er avbrutt. Vennligst avbryt dokumentet før du oppretter et korrigeringsforslag." + +#: frappe/public/js/form_builder/store.js:190 +msgid "{0} cannot be hidden and mandatory without any default value" +msgstr "{0} kan ikke være skjult og påkrevet uten noen standardverdi" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128 +msgid "{0} changed the value of {1}" +msgstr "{0} endret verdien for {1}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:119 +msgid "{0} changed the value of {1} {2}" +msgstr "{0} endret verdien for {1} {2}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:194 +msgid "{0} changed the values for {1}" +msgstr "{0} endret verdiene for {1}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:185 +msgid "{0} changed the values for {1} {2}" +msgstr "{0} endret verdiene for {1} {2}" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:444 +msgctxt "Form timeline" +msgid "{0} changed {1} to {2}" +msgstr "{0} endret {1} til {2}" + +#: frappe/core/doctype/doctype/doctype.py:1606 +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/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:95 +msgid "{0} created this" +msgstr "{0} opprettet dette" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 +msgctxt "Form timeline" +msgid "{0} created this document {1}" +msgstr "{0} opprettet dette dokumentet {1}" + +#: frappe/public/js/frappe/utils/pretty_date.js:33 +msgid "{0} d" +msgstr "{0} d" + +#: frappe/public/js/frappe/utils/pretty_date.js:60 +msgid "{0} days ago" +msgstr "{0} dager siden" + +#: 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/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:184 +msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" +msgstr "{0} feltet kan ikke angis som unikt i {1}, siden det finnes ikke-unike eksisterende verdier" + +#: frappe/database/query.py:710 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "{0} felt kan ikke inneholde backticks (`): {1}" + +#: frappe/core/doctype/data_import/importer.py:1071 +msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." +msgstr "{0} -formatet kunne ikke bestemmes fra verdiene i denne kolonnen. Standardverdien er {1}." + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101 +msgid "{0} from {1} to {2}" +msgstr "{0} fra {1} til {2}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:165 +msgid "{0} from {1} to {2} in row #{3}" +msgstr "{0} fra {1} til {2} i rad #{3}" + +#: frappe/public/js/frappe/utils/pretty_date.js:29 +msgid "{0} h" +msgstr "{0} h" + +#: frappe/core/doctype/user_permission/user_permission.py:77 +msgid "{0} has already assigned default value for {1}." +msgstr "{0} har allerede tildelt standardverdi for {1}." + +#: frappe/email/queue.py:124 +msgid "{0} has left the conversation in {1} {2}" +msgstr "{0} har forlatt samtalen på {1} {2}" + +#: frappe/public/js/frappe/utils/pretty_date.js:54 +msgid "{0} hours ago" +msgstr "{0} timer siden." + +#: frappe/website/doctype/web_form/templates/web_form.html:155 +msgid "{0} if you are not redirected within {1} seconds" +msgstr "{0} hvis du ikke blir omdirigert innen {1} sekunder" + +#: frappe/website/doctype/website_settings/website_settings.py:102 +#: frappe/website/doctype/website_settings/website_settings.py:122 +msgid "{0} in row {1} cannot have both URL and child items" +msgstr "{0} i raden {1} kan ikke ha både URL og underordnede elementer" + +#: frappe/core/doctype/doctype/doctype.py:935 +msgid "{0} is a mandatory field" +msgstr "{0} er et påkrevet felt" + +#: frappe/core/doctype/file/file.py:569 +msgid "{0} is a not a valid zip file" +msgstr "{0} er ikke en gyldig zip-fil" + +#: frappe/core/doctype/doctype/doctype.py:1619 +msgid "{0} is an invalid Data field." +msgstr "{0} er et ugyldig datafelt." + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 +msgid "{0} is an invalid email address in 'Recipients'" +msgstr "{0} er en ugyldig e-postadresse i 'Mottakere'" + +#: frappe/public/js/frappe/views/reports/report_view.js:1470 +msgid "{0} is between {1} and {2}" +msgstr "{0} er mellom {1} og {2}" + +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:41 +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:69 +msgid "{0} is currently {1}" +msgstr "{0} er for øyeblikket {1}" + +#: frappe/public/js/frappe/views/reports/report_view.js:1439 +msgid "{0} is equal to {1}" +msgstr "{0} er lik {1}" + +#: frappe/public/js/frappe/views/reports/report_view.js:1459 +msgid "{0} is greater than or equal to {1}" +msgstr "{0} er større enn eller lik {1}" + +#: frappe/public/js/frappe/views/reports/report_view.js:1449 +msgid "{0} is greater than {1}" +msgstr "{0} er større enn {1}" + +#: frappe/public/js/frappe/views/reports/report_view.js:1464 +msgid "{0} is less than or equal to {1}" +msgstr "{0} er mindre enn eller lik {1}" + +#: frappe/public/js/frappe/views/reports/report_view.js:1454 +msgid "{0} is less than {1}" +msgstr "{0} er mindre enn {1}" + +#: frappe/public/js/frappe/views/reports/report_view.js:1489 +msgid "{0} is like {1}" +msgstr "{0} er som {1}" + +#: frappe/email/doctype/email_account/email_account.py:193 +msgid "{0} is mandatory" +msgstr "{0} er påkrevet" + +#: frappe/database/query.py:487 +msgid "{0} is not a child table of {1}" +msgstr "{0} er ikke en undertabell av {1}" + +#: 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}" + +#: frappe/www/printview.py:384 +msgid "{0} is not a raw printing format." +msgstr "{0} er ikke et format for råutskrift." + +#: frappe/public/js/frappe/views/calendar/calendar.js:82 +msgid "{0} is not a valid Calendar. Redirecting to default Calendar." +msgstr "{0} er ikke en gyldig kalender. Omdirigerer til standardkalender." + +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67 +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 +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:208 +msgid "{0} is not a valid Email Address" +msgstr "{0} er ikke en gyldig e-postadresse" + +#: frappe/geo/doctype/country/country.py:30 +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 +msgid "{0} is not a valid Name" +msgstr "{0} er ikke et gyldig navn" + +#: frappe/utils/__init__.py:155 +msgid "{0} is not a valid Phone Number" +msgstr "{0} er ikke et gyldig telefonnummer" + +#: frappe/model/workflow.py:245 +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:809 +msgid "{0} is not a valid parent DocType for {1}" +msgstr "{0} er ikke en gyldig overordnet dokumenttype (DocType) for {1}" + +#: frappe/permissions.py:829 +msgid "{0} is not a valid parentfield for {1}" +msgstr "{0} er ikke et gyldig overordnet felt for {1}" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 +msgid "{0} is not a valid report format. Report format should one of the following {1}" +msgstr "{0} er ikke et gyldig rapportformat. Rapportformat må være ett av følgende: {1}" + +#: frappe/core/doctype/file/file.py:549 +msgid "{0} is not a zip file" +msgstr "{0} er ikke en zip-fil" + +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "{0} er ikke en tillatt rolle for {1}" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 +msgid "{0} is not equal to {1}" +msgstr "{0} er ikke lik {1}" + +#: frappe/public/js/frappe/views/reports/report_view.js:1491 +msgid "{0} is not like {1}" +msgstr "{0} er ikke som {1}" + +#: frappe/public/js/frappe/views/reports/report_view.js:1485 +msgid "{0} is not one of {1}" +msgstr "{0} er ikke en av {1}" + +#: frappe/public/js/frappe/views/reports/report_view.js:1495 +msgid "{0} is not set" +msgstr "{0} er ikke satt" + +#: frappe/printing/doctype/print_format/print_format.py:176 +msgid "{0} is now default print format for {1} doctype" +msgstr "{0} er nå standard utskriftsformat for {1} dokumenttype (DocType)" + +#: frappe/public/js/frappe/views/reports/report_view.js:1478 +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/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/views/reports/report_view.js:1494 +msgid "{0} is set" +msgstr "{0} er satt" + +#: frappe/public/js/frappe/views/reports/report_view.js:1473 +msgid "{0} is within {1}" +msgstr "{0} er innenfor {1}" + +#: frappe/public/js/frappe/list/list_view.js:1841 +msgid "{0} items selected" +msgstr "{0} elementer valgt" + +#: frappe/core/doctype/user/user.py:1393 +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:106 +msgid "{0} last edited this" +msgstr "{0} redigert dette sist " + +#: frappe/core/doctype/activity_log/feed.py:13 +msgid "{0} logged in" +msgstr "{0} logget inn" + +#: frappe/core/doctype/activity_log/feed.py:19 +msgid "{0} logged out: {1}" +msgstr "{0} logget ut: {1}" + +#: frappe/public/js/frappe/utils/pretty_date.js:27 +msgid "{0} m" +msgstr "{0} m" + +#: frappe/desk/notifications.py:408 +msgid "{0} mentioned you in a comment in {1} {2}" +msgstr "{0} nevnte deg i en kommentar i {1} {2}" + +#: frappe/public/js/frappe/utils/pretty_date.js:50 +msgid "{0} minutes ago" +msgstr "{0} minutter siden" + +#: frappe/public/js/frappe/utils/pretty_date.js:68 +msgid "{0} months ago" +msgstr "{0} måneder siden" + +#: frappe/model/document.py:1808 +msgid "{0} must be after {1}" +msgstr "{0} må være etter {1}" + +#: frappe/model/document.py:1564 +msgid "{0} must be beginning with '{1}'" +msgstr "{0} må begynne med '{1}'" + +#: frappe/model/document.py:1566 +msgid "{0} must be equal to '{1}'" +msgstr "{0} må være lik '{1}'" + +#: frappe/model/document.py:1562 +msgid "{0} must be none of {1}" +msgstr "{0} må ikke være noen av {1}" + +#: frappe/model/document.py:1560 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:933 +msgid "{0} must be set first" +msgstr "{0} må angis først" + +#: frappe/model/base_document.py:786 +msgid "{0} must be unique" +msgstr "{0} må være unik" + +#: frappe/model/document.py:1568 +msgid "{0} must be {1} {2}" +msgstr "{0} må være {1} {2}" + +#: frappe/core/doctype/language/language.py:79 +msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." +msgstr "{0} må begynne og slutte med en bokstav og kan bare inneholde bokstaver, bindestrek eller understreking." + +#: frappe/workflow/doctype/workflow/workflow.py:91 +msgid "{0} not a valid State" +msgstr "{0} ikke en gyldig tilstand" + +#: frappe/model/rename_doc.py:394 +msgid "{0} not allowed to be renamed" +msgstr "{0} kan ikke gis nytt navn" + +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:365 +msgid "{0} not found" +msgstr "{0} ikke funnet" + +#: frappe/core/doctype/report/report.py:427 +#: frappe/public/js/frappe/list/list_view.js:1213 +msgid "{0} of {1}" +msgstr "{0} av {1}" + +#: frappe/public/js/frappe/list/list_view.js:1215 +msgid "{0} of {1} ({2} rows with children)" +msgstr "{0} av {1} ({2} rader med underordnede)" + +#: frappe/utils/data.py:1566 +msgctxt "Money in words" +msgid "{0} only." +msgstr "Bare {0} ." + +#: frappe/utils/data.py:1747 +msgid "{0} or {1}" +msgstr "{0} eller {1}" + +#: frappe/core/doctype/user_permission/user_permission_list.js:177 +msgid "{0} record deleted" +msgstr "{0} oppføring slettet" + +#: frappe/public/js/frappe/logtypes.js:22 +msgid "{0} records are not automatically deleted." +msgstr "{0} poster blir ikke automatisk slettet." + +#: frappe/public/js/frappe/logtypes.js:29 +msgid "{0} records are retained for {1} days." +msgstr "{0} oppbevares i {1} dager." + +#: frappe/core/doctype/user_permission/user_permission_list.js:179 +msgid "{0} records deleted" +msgstr "{0} poster slettet" + +#: frappe/public/js/frappe/data_import/data_exporter.js:229 +msgid "{0} records will be exported" +msgstr "{0} oppføringer vil bli eksportert" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "{0} fjernet 1 rad fra {1}" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:420 +msgctxt "Form timeline" +msgid "{0} removed attachment {1}" +msgstr "{0} fjernet vedlegg {1}" + +#: frappe/desk/doctype/todo/todo.py:58 +msgid "{0} removed their assignment." +msgstr "{0} fjernet sin tildeling." + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "{0} fjernet {1} rader fra {2}" + +#: frappe/public/js/frappe/roles_editor.js:64 +msgid "{0} role does not have permission on any doctype" +msgstr "{0}-rollen har ikke tillatelse til noen dokumenttype (DocType)" + +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" +msgstr "{0} rad #{1}:" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "{0} rader fra {1}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "{0} rader til {1}" + +#: frappe/desk/query_report.py:666 +msgid "{0} saved successfully" +msgstr "{0} lagret var vellykket" + +#: frappe/desk/doctype/todo/todo.py:44 +msgid "{0} self assigned this task: {1}" +msgstr "{0} tildelte seg selv denne oppgaven: {1}" + +#: frappe/share.py:233 +msgid "{0} shared a document {1} {2} with you" +msgstr "{0} delte et dokument {1} {2} med deg" + +#: frappe/core/doctype/docshare/docshare.py:77 +msgid "{0} shared this document with everyone" +msgstr "{0} delte dette dokumentet med alle" + +#: frappe/core/doctype/docshare/docshare.py:80 +msgid "{0} shared this document with {1}" +msgstr "{0} delte dette dokumentet med {1}" + +#: frappe/core/doctype/doctype/doctype.py:317 +msgid "{0} should be indexed because it's referred in dashboard connections" +msgstr "{0} bør indekseres fordi det refereres til det i oversiktspanel-tilkoblinger" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 +msgid "{0} should not be same as {1}" +msgstr "{0} kan ikke være samme som {1}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:51 +msgid "{0} submitted this document" +msgstr "{0} registrerte dette dokumentet" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:42 +msgctxt "Form timeline" +msgid "{0} submitted this document {1}" +msgstr "{0} registrerte dette dokumentet {1}" + +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 +msgid "{0} subscribers added" +msgstr "{0} abonnenter lagt til" + +#: frappe/email/queue.py:69 +msgid "{0} to stop receiving emails of this type" +msgstr "{0} for å slutte å motta e-post av denne typen" + +#: frappe/public/js/frappe/form/controls/date_range.js:48 +#: frappe/public/js/frappe/form/controls/date_range.js:64 +#: frappe/public/js/frappe/form/formatters.js:238 +msgid "{0} to {1}" +msgstr "{0} til {1}" + +#: frappe/core/doctype/docshare/docshare.py:89 +msgid "{0} un-shared this document with {1}" +msgstr "{0} sluttet å dele dette dokumentet med {1}" + +#: frappe/custom/doctype/customize_form/customize_form.py:256 +msgid "{0} updated" +msgstr "{0} oppdatert" + +#: frappe/public/js/frappe/form/controls/multiselect_list.js:198 +msgid "{0} values selected" +msgstr "{0} verdier valgt" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:184 +msgid "{0} viewed this" +msgstr "{0} så dette" + +#: frappe/public/js/frappe/utils/pretty_date.js:35 +msgid "{0} w" +msgstr "{0} w" + +#: frappe/public/js/frappe/utils/pretty_date.js:64 +msgid "{0} weeks ago" +msgstr "{0} uker siden" + +#: frappe/public/js/frappe/utils/pretty_date.js:39 +msgid "{0} y" +msgstr "{0} y" + +#: frappe/public/js/frappe/utils/pretty_date.js:72 +msgid "{0} years ago" +msgstr "{0} uker siden" + +#: frappe/public/js/frappe/form/link_selector.js:219 +msgid "{0} {1} added" +msgstr "{0} {1} lagt til" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:270 +msgid "{0} {1} added to Dashboard {2}" +msgstr "Ny {0} {1} lagt til i oversiktspanelet {2}" + +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 +msgid "{0} {1} already exists" +msgstr "{0} {1} finnes allerede" + +#: frappe/model/base_document.py:1044 +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}\"" + +#: frappe/utils/nestedset.py:353 +msgid "{0} {1} cannot be a leaf node as it has children" +msgstr "{0} {1} kan ikke være en bladnode siden den har underordnede" + +#: frappe/model/rename_doc.py:376 +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:951 +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:258 frappe/permissions.py:580 +msgid "{0} {1} not found" +msgstr "{0} {1} ikke funnet" + +#: frappe/model/delete_doc.py:288 +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:1176 +msgid "{0}, Row {1}" +msgstr "{0}, Rad {1}" + +#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192 +msgid "{0}/{1} complete | Please leave this tab open until completion." +msgstr "{0}/{1} fullført | La denne fanen være åpen til den er fullført." + +#: frappe/model/base_document.py:1181 +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:1814 +msgid "{0}: Cannot set Amend without Cancel" +msgstr "{0}: Kan ikke angi Korriger uten å avbryte" + +#: frappe/core/doctype/doctype/doctype.py:1832 +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:1830 +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:1809 +msgid "{0}: Cannot set Cancel without Submit" +msgstr "{0}: Kan ikke angi Avbryt uten å registrere" + +#: frappe/core/doctype/doctype/doctype.py:1816 +msgid "{0}: Cannot set Import without Create" +msgstr "{0}: Kan ikke angi import uten å opprette" + +#: frappe/core/doctype/doctype/doctype.py:1812 +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:1836 +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:1427 +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:1335 +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:1294 +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:1282 +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:1414 +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:1769 +msgid "{0}: No basic permissions set" +msgstr "{0}: Ingen basisrettigheter er angitt" + +#: frappe/core/doctype/doctype/doctype.py:1783 +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:1316 +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:1305 +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:1323 +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}" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "{0}: Other permission rules may also apply" +msgstr "{0}: Andre tillatelsesregler kan også gjelde" + +#: frappe/core/doctype/doctype/doctype.py:1798 +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/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:1269 +msgid "{0}: fieldname cannot be set to reserved keyword {1}" +msgstr "{0}: feltnavn kan ikke settes til reservert nøkkelord {1}" + +#: frappe/contacts/doctype/address/address.js:35 +#: frappe/contacts/doctype/contact/contact.js:88 +msgid "{0}: {1}" +msgstr "{0}: {1}" + +#: frappe/workflow/doctype/workflow_action/workflow_action.py:172 +msgid "{0}: {1} is set to state {2}" +msgstr "{0}: {1} er satt til tilstand {2}" + +#: frappe/public/js/frappe/views/reports/query_report.js:1291 +msgid "{0}: {1} vs {2}" +msgstr "{0}: {1} vs {2}" + +#: frappe/core/doctype/doctype/doctype.py:1435 +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 +msgid "{1} saved" +msgstr "{1} lagret" + +#: frappe/public/js/frappe/utils/datatable.js:12 +msgid "{count} cell copied" +msgstr "{count} celle kopiert" + +#: frappe/public/js/frappe/utils/datatable.js:13 +msgid "{count} cells copied" +msgstr "{count} celler kopiert" + +#: frappe/public/js/frappe/utils/datatable.js:16 +msgid "{count} row selected" +msgstr "{count} rad valgt" + +#: frappe/public/js/frappe/utils/datatable.js:17 +msgid "{count} rows selected" +msgstr "{count} rader valgt" + +#: frappe/core/doctype/doctype/doctype.py:1489 +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:521 +msgid "{} Complete" +msgstr "{} Fullført" + +#: frappe/utils/data.py:2567 +msgid "{} Invalid python code on line {}" +msgstr "{} Ugyldig python-kode på linje {}" + +#: frappe/utils/data.py:2576 +msgid "{} Possibly invalid python code.
    {}" +msgstr "{} Muligens ugyldig python-kode.
    {}" + +#. Count format of shortcut in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "{} Published" +msgstr "{} Publisert" + +#: frappe/core/doctype/log_settings/log_settings.py:54 +msgid "{} does not support automated log clearing." +msgstr "{} støtter ikke automatisk sletting av loggfiler." + +#: frappe/core/doctype/audit_trail/audit_trail.py:41 +msgid "{} field cannot be empty." +msgstr "{}-feltet kan ikke være tomt." + +#: frappe/email/doctype/email_account/email_account.py:223 +#: frappe/email/doctype/email_account/email_account.py:231 +msgid "{} has been disabled. It can only be enabled if {} is checked." +msgstr "{} er deaktivert. Den kan bare aktiveres hvis {} er merket av." + +#: frappe/utils/data.py:145 +msgid "{} is not a valid date string." +msgstr "{} er ikke en gyldig datostreng." + +#: frappe/commands/utils.py:561 +msgid "{} not found in PATH! This is required to access the console." +msgstr "{} ikke funnet i PATH! Dette er påkrevd for å få tilgang til konsollen." + +#: frappe/database/db_manager.py:99 +msgid "{} not found in PATH! This is required to restore the database." +msgstr "{} ikke funnet i PATH! Dette er påkrevd for å gjenopprette databasen." + +#: frappe/utils/backups.py:466 +msgid "{} not found in PATH! This is required to take a backup." +msgstr "{} ikke funnet i PATH! Dette er nødvendig for å ta en sikkerhetskopi." + +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:5 +#: frappe/public/js/frappe/file_uploader/WebLink.vue:4 +msgid "← Back to upload files" +msgstr "← Tilbake til opplasting av filer" + diff --git a/frappe/locale/nl.po b/frappe/locale/nl.po index b50ba1409f..3ceaf014e3 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-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-21 21:50\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Dutch\n" "MIME-Version: 1.0\n" @@ -18,10 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: nl_NL\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr " naar uw browser" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json @@ -61,7 +57,7 @@ msgstr "" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "${values.doctype_name} is toegevoegd aan de wachtrij voor optimalisatie" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" msgstr "© Frappe Technologies Pvt. Ltd. en bijdragers" @@ -74,7 +70,7 @@ msgstr "<head> HTML" msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "'In Global Search' niet toegestaan voor type {0} in rij {1}" @@ -82,19 +78,23 @@ msgstr "'In Global Search' niet toegestaan voor type {0} in rij {1}" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "'In lijst weergave' niet toegestaan voor type {0} in rij {1}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" msgstr "'Ontvangers' niet gespecificeerd" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "'{0}' niet toegestaan voor type {1} in rij {2}" @@ -102,11 +102,11 @@ msgstr "'{0}' niet toegestaan voor type {1} in rij {2}" msgid "(Mandatory)" msgstr "(Verplicht)" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "** Mislukt: {0} tot {1}: {2}" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" msgstr "" @@ -122,7 +122,7 @@ msgstr "" msgid "0 is highest" msgstr "0 is het hoogst" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = Waar & 0 = Onwaar" @@ -140,15 +140,11 @@ msgstr "1 dag" msgid "1 Google Calendar Event synced." msgstr "1 Google Agenda-evenement gesynchroniseerd." -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 rapport" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "1 reactie" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "1 dag geleden" @@ -157,17 +153,17 @@ msgid "1 hour" msgstr "1 uur" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "1 uur geleden" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "1 minuut geleden" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "1 maand geleden" @@ -179,37 +175,47 @@ msgstr "1 van 2" msgid "1 record will be exported" msgstr "1 record wordt geëxporteerd" -#: frappe/tests/test_utils.py:711 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "" + +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "1 seconde geleden" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "1 week geleden" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "1 jaar geleden" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "2 uur geleden" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "2 maanden geleden" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "2 weken geleden" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "2 jaren geleden" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "3 minuten geleden" @@ -225,7 +231,7 @@ msgstr "4 uren" msgid "5 Records" msgstr "5 records" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "5 dagen geleden" @@ -245,6 +251,13 @@ msgstr "<" msgid "<=" msgstr "<=" +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "{0} is geen geldige URL" @@ -254,6 +267,16 @@ msgstr "{0} is geen geldige URL" msgid "
    Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
    " msgstr "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

    Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

    " +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

    Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

    " +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -479,7 +502,7 @@ msgid "

    To interact with above HTML you will have to use `root_element` as a p "" msgstr "" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

    " msgstr "" @@ -546,7 +569,7 @@ msgstr "" msgid ">=" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" @@ -555,15 +578,16 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" -msgstr "Een uitgelicht bericht moet een omslagafbeelding hebben" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "" @@ -576,7 +600,7 @@ msgstr "" msgid "A new account has been created for you at {0}" msgstr "Een nieuw account is aangemaakt voor u op {0}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "Er is een terugkerende {0} {1} voor u gemaakt via Auto Repeat {2}." @@ -675,13 +699,17 @@ msgstr "" msgid "API Endpoint Args" msgstr "" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -700,6 +728,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -720,7 +752,7 @@ msgstr "" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -767,6 +799,20 @@ msgstr "Ongeveer {0} minuten resterend" msgid "About {0} seconds remaining" msgstr "Ongeveer {0} seconden resterend" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "Geaccepteerd" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -792,7 +838,7 @@ msgstr "" msgid "Access Token URL" msgstr "" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Toegang niet toegestaan vanaf dit IP-adres" @@ -856,7 +902,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "Actie is mislukt" @@ -908,7 +954,7 @@ msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Acties" @@ -965,7 +1011,7 @@ msgstr "Activiteitenlogboek" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -976,7 +1022,7 @@ msgstr "Activiteitenlogboek" msgid "Add" msgstr "Toevoegen" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -988,7 +1034,7 @@ msgstr "Toevoegen / bijwerken" msgid "Add A New Rule" msgstr "Voeg een nieuwe regel toe" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Voeg bijlage toe" @@ -1008,7 +1054,7 @@ msgstr "" msgid "Add Border at Top" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "" @@ -1021,10 +1067,10 @@ 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:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "Kolom toevoegen" @@ -1083,7 +1129,7 @@ msgstr "Voeg deelnemers toe" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "" @@ -1116,12 +1162,12 @@ msgstr "Abonnees toevoegen" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "" @@ -1210,7 +1256,7 @@ msgstr "" msgid "Add page break" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "Script toevoegen voor onderliggende tabel" @@ -1248,7 +1294,7 @@ msgstr "" msgid "Add {0}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" msgstr "" @@ -1291,6 +1337,7 @@ msgstr "" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1299,6 +1346,7 @@ msgstr "Adres" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "Adres Lijn 1" @@ -1306,6 +1354,7 @@ msgstr "Adres Lijn 1" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: 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 "" @@ -1356,7 +1405,7 @@ msgstr "" msgid "Adds a custom field to a DocType" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "Toediening" @@ -1370,7 +1419,6 @@ msgstr "Toediening" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1383,11 +1431,11 @@ msgstr "Toediening" msgid "Administrator" msgstr "Beheerder" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1408,8 +1456,8 @@ msgstr "" msgid "Advanced Control" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" msgstr "" @@ -1468,7 +1516,7 @@ msgstr "" msgid "After Submit" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "" @@ -1495,11 +1543,11 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1564,7 +1612,7 @@ msgstr "" msgid "All Records" msgstr "" -#: frappe/public/js/frappe/form/form.js:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "" @@ -1624,7 +1672,7 @@ msgstr "" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " +msgid "Allow Consecutive Login Attempts" msgstr "" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 @@ -1645,11 +1693,6 @@ msgstr "" msgid "Allow Guest to View" msgstr "" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1698,7 +1741,7 @@ msgid "Allow Print for Cancelled" msgstr "" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "" @@ -1930,7 +1973,7 @@ msgstr "" msgid "Allows skipping authorization if a user has active tokens." msgstr "" -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "" @@ -1938,11 +1981,11 @@ msgstr "" msgid "Already in the following Users ToDo list:{0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "" @@ -1951,6 +1994,12 @@ msgstr "" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2002,10 +2051,8 @@ msgstr "" msgid "Amended Documents" msgstr "" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "" @@ -2029,6 +2076,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2122,10 +2174,12 @@ msgid "App Logo" msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2196,6 +2250,10 @@ msgstr "" msgid "Application Version" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2205,7 +2263,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Toewijzingsregel toepassen" @@ -2253,7 +2311,7 @@ msgstr "" msgid "Apply to all Documents Types" msgstr "Toepassen op alle soorten documenten" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "Toepassen: {0}" @@ -2286,7 +2344,11 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2314,11 +2376,15 @@ msgctxt "Confirmation dialog message" msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:191 msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2326,7 +2392,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2381,6 +2447,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2390,7 +2462,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2453,6 +2525,11 @@ msgstr "" msgid "Assigned To/Owner" msgstr "" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "" @@ -2522,7 +2599,13 @@ msgstr "" msgid "Assignments" msgstr "opdrachten" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -2602,7 +2685,7 @@ msgstr "" msgid "Attached To Name" msgstr "" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "" @@ -2618,7 +2701,7 @@ msgstr "" msgid "Attachment Limit (MB)" msgstr "" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "" @@ -2636,15 +2719,15 @@ 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:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "" @@ -2667,6 +2750,10 @@ msgstr "" msgid "Auth URL Data" msgstr "" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "" + #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authenticate as Service Principal" @@ -2684,7 +2771,7 @@ msgid "Authentication" msgstr "" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " +msgid "Authentication Apps you can use are:" msgstr "" #: frappe/email/doctype/email_account/email_account.py:339 @@ -2798,11 +2885,11 @@ msgstr "" msgid "Auto Repeat Day" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "" @@ -2810,11 +2897,16 @@ msgstr "" msgid "Auto Repeat Schedule" msgstr "" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "" @@ -2858,7 +2950,7 @@ msgstr "" msgid "Auto follow documents that you create" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "" @@ -2906,7 +2998,7 @@ msgstr "" msgid "Automatically Assign Documents to Users" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "" @@ -2920,11 +3012,6 @@ msgstr "" msgid "Automation" msgstr "" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3196,8 +3283,8 @@ msgstr "" #. Label of the based_on (Link) field in DocType 'Language' #: frappe/core/doctype/language/language.json -#: frappe/printing/page/print/print.js:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "" @@ -3314,10 +3401,8 @@ msgstr "" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "" @@ -3347,64 +3432,6 @@ msgstr "" msgid "Blocked" msgstr "" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3501,13 +3528,6 @@ msgstr "" msgid "Breadcrumbs" msgstr "" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3565,15 +3585,15 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" msgstr "" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "" @@ -3588,7 +3608,7 @@ msgstr "" msgid "Bulk Update" msgstr "" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "" @@ -3600,7 +3620,7 @@ msgstr "" msgid "Bulk operations only support up to 500 documents." msgstr "" -#: frappe/model/workflow.py:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "" @@ -3730,16 +3750,6 @@ msgstr "" msgid "CSV" msgstr "" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3790,11 +3800,6 @@ msgstr "" msgid "Call To Action URL" msgstr "" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -3812,7 +3817,7 @@ msgid "Camera" msgstr "" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3848,7 +3853,7 @@ msgstr "" msgid "Can not rename as column {0} is already present on DocType." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "" @@ -3872,14 +3877,15 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3897,16 +3903,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -3944,11 +3952,11 @@ msgstr "" msgid "Cannot Remove" msgstr "" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3956,7 +3964,7 @@ msgstr "" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "" @@ -3964,11 +3972,11 @@ msgstr "" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1013 +#: frappe/model/document.py:1017 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -3976,11 +3984,11 @@ msgstr "" msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "" @@ -3992,11 +4000,11 @@ msgstr "" msgid "Cannot create private workspace of other users" msgstr "" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4031,7 +4039,7 @@ msgstr "" msgid "Cannot delete {0}" msgstr "" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" msgstr "" @@ -4039,7 +4047,7 @@ msgstr "" msgid "Cannot edit Standard Dashboards" msgstr "" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "" @@ -4051,7 +4059,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" -#: frappe/model/document.py:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "" @@ -4059,8 +4067,8 @@ msgstr "" msgid "Cannot edit filters for standard charts" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "" @@ -4068,27 +4076,27 @@ msgstr "" msgid "Cannot edit standard fields" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:884 msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1132 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "" @@ -4100,11 +4108,11 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "" @@ -4112,7 +4120,7 @@ msgstr "" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "" @@ -4129,11 +4137,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4201,15 +4209,6 @@ msgstr "" msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4247,7 +4246,7 @@ msgstr "" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
    \n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " +"Warning: Incorrectly updating counters can prevent documents from getting created." msgstr "" #. Label of the changed_at (Datetime) field in DocType 'Permission Log' @@ -4317,7 +4316,7 @@ msgstr "" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "" @@ -4350,7 +4349,7 @@ msgstr "" msgid "Check" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "" @@ -4358,7 +4357,7 @@ msgstr "" msgid "Check columns to select, drag to set order." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "" @@ -4399,11 +4398,6 @@ msgstr "" msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "" -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "" @@ -4413,17 +4407,17 @@ msgstr "" msgid "Child Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4452,6 +4446,7 @@ msgid "Choose authentication method to be used by all users" 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 msgid "City" msgstr "" @@ -4466,7 +4461,7 @@ msgstr "" msgid "Clear" msgstr "" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "" @@ -4478,7 +4473,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4504,7 +4499,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "" @@ -4516,11 +4511,15 @@ msgstr "" msgid "Click On Customize to add your first widget" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "" @@ -4551,24 +4550,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4746,7 +4745,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4801,7 +4800,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:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4857,11 +4856,11 @@ msgstr "" msgid "Column Name cannot be empty" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4888,7 +4887,7 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "" @@ -4930,16 +4929,6 @@ msgstr "" msgid "Comment can only be edited by the owner" msgstr "" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "" @@ -4947,7 +4936,7 @@ msgstr "" #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "" @@ -4956,7 +4945,7 @@ msgstr "" msgid "Comments and Communications will be associated with this linked document" msgstr "" -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "" @@ -5028,12 +5017,12 @@ msgid "Company Name" msgstr "" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "" @@ -5113,8 +5102,8 @@ msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5128,6 +5117,11 @@ msgstr "" msgid "Condition JSON" msgstr "" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5153,11 +5147,11 @@ msgstr "" msgid "Configuration" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5182,7 +5176,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5201,7 +5195,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "" @@ -5228,7 +5222,7 @@ msgstr "" msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "" @@ -5246,8 +5240,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "" @@ -5298,6 +5292,10 @@ msgstr "" msgid "Contact" msgstr "" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
    {0}" +msgstr "" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5355,15 +5353,13 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5371,24 +5367,12 @@ msgstr "" msgid "Content" msgstr "" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "" @@ -5456,7 +5440,7 @@ msgstr "" msgid "Copy embed code" msgstr "" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "" @@ -5464,12 +5448,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "" + #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5477,7 +5465,7 @@ msgstr "" msgid "Core Modules {0} cannot be searched in Global Search." msgstr "" -#: frappe/printing/page/print/print.js:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "" @@ -5485,7 +5473,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "" -#: frappe/model/document.py:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "" @@ -5493,15 +5481,15 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " +msgid "Could not start up:" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "" @@ -5546,13 +5534,14 @@ msgstr "" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "" @@ -5584,13 +5573,13 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5604,7 +5593,7 @@ msgid "Create Card" msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "" @@ -5638,12 +5627,12 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5651,7 +5640,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "" @@ -5663,7 +5652,7 @@ msgstr "" msgid "Create a Reminder" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "" @@ -5671,11 +5660,11 @@ msgstr "" msgid "Create a new record" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "" @@ -5691,7 +5680,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "" @@ -5701,7 +5690,7 @@ msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "" @@ -5717,7 +5706,7 @@ msgstr "" msgid "Created By" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "" @@ -5729,7 +5718,7 @@ msgstr "" msgid "Created On" msgstr "" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "" @@ -6038,7 +6027,7 @@ msgstr "" #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "" @@ -6066,14 +6055,14 @@ msgstr "" msgid "Customizations for {0} exported to:
    {1}" msgstr "" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6092,7 +6081,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "" @@ -6170,7 +6159,7 @@ msgstr "" msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "" -#: frappe/desk/doctype/event/event.py:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "" @@ -6217,7 +6206,7 @@ msgstr "" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "" @@ -6276,7 +6265,6 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6289,7 +6277,6 @@ msgstr "" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6325,7 +6312,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "" @@ -6356,7 +6343,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6494,11 +6481,11 @@ msgstr "" msgid "Debug Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "" @@ -6660,11 +6647,11 @@ msgstr "" msgid "Default display currency" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 msgid "Default value for {0} must be in the list of options." msgstr "" @@ -6698,6 +6685,12 @@ msgstr "" msgid "Defines actions on states and the next step and allowed roles." msgstr "" +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6715,22 +6708,27 @@ 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/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "" @@ -6739,6 +6737,12 @@ msgstr "" 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 +msgid "Delete Background Exported Reports After (Hours)" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6748,7 +6752,7 @@ msgstr "" msgid "Delete Data" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6762,7 +6766,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6771,7 +6775,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "" @@ -6804,12 +6808,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6845,11 +6849,15 @@ msgstr "" msgid "Deleted Name" msgstr "" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "" @@ -6864,7 +6872,7 @@ msgstr "" #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " +msgid "Deletion Steps" msgstr "" #: frappe/core/doctype/page/page.py:110 @@ -6881,7 +6889,7 @@ msgstr "" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "" @@ -6908,7 +6916,7 @@ msgstr "" msgid "Dependencies" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "" @@ -6943,7 +6951,6 @@ msgstr "" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -6964,7 +6971,6 @@ msgstr "" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -6974,11 +6980,6 @@ msgstr "" msgid "Description" msgstr "" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -7062,7 +7063,7 @@ msgstr "" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "" @@ -7123,11 +7124,6 @@ msgstr "" msgid "Disable Comment Count" msgstr "" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7145,11 +7141,6 @@ msgstr "" msgid "Disable Document Sharing" msgstr "" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "" @@ -7159,6 +7150,11 @@ msgstr "" msgid "Disable SMTP server authentication" msgstr "" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7204,7 +7200,6 @@ msgstr "" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7219,7 +7214,6 @@ msgstr "" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "" @@ -7230,7 +7224,7 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "" @@ -7248,7 +7242,7 @@ msgstr "" msgid "Discard {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "" @@ -7271,7 +7265,7 @@ msgstr "" msgid "Discussion Topic" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7307,19 +7301,23 @@ msgstr "" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " +msgid "Do Not Create New User" msgstr "" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7410,7 +7408,7 @@ msgstr "" msgid "DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1577 +#: frappe/core/doctype/doctype/doctype.py:1578 msgid "DocType {0} provided for the field {1} must have atleast one Link field" msgstr "" @@ -7457,11 +7455,11 @@ msgstr "" msgid "DocType View" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "" @@ -7470,7 +7468,7 @@ msgstr "" msgid "DocType is a Table / Form in the application." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "" @@ -7503,7 +7501,7 @@ msgstr "" msgid "DocType {} not found" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "" @@ -7517,7 +7515,7 @@ msgstr "" msgid "Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "" @@ -7579,31 +7577,29 @@ msgstr "" msgid "Document Links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7745,13 +7741,13 @@ msgstr "" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 msgid "Document Type and Function are required to create a number card" msgstr "" @@ -7788,7 +7784,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "" @@ -7796,15 +7792,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "" @@ -7946,13 +7942,13 @@ msgstr "" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "" @@ -7979,7 +7975,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "" @@ -8042,7 +8038,7 @@ msgstr "" msgid "Drag to add state" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "" @@ -8075,7 +8071,7 @@ msgstr "" msgid "Duplicate Filter Name" msgstr "" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "" @@ -8174,17 +8170,17 @@ msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8192,7 +8188,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8202,7 +8198,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8231,7 +8227,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8249,7 +8245,7 @@ msgstr "" msgid "Edit Footer" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "" @@ -8334,7 +8330,7 @@ msgstr "" msgid "Edit to add content" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "" @@ -8343,7 +8339,7 @@ msgstr "" msgid "Edit your workflow visually using the Workflow Builder." msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "" @@ -8351,7 +8347,7 @@ msgstr "" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "" @@ -8390,11 +8386,14 @@ msgstr "" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8403,6 +8402,7 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8412,6 +8412,8 @@ msgstr "" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "" @@ -8443,7 +8445,7 @@ msgstr "" msgid "Email Account Name" msgstr "" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "" @@ -8531,6 +8533,7 @@ msgid "Email IDs" msgstr "" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "" @@ -8574,9 +8577,9 @@ msgstr "" msgid "Email Rule" msgstr "" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" msgstr "" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' @@ -8642,11 +8645,11 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "" @@ -8685,7 +8688,7 @@ msgstr "" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8693,7 +8696,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -8712,7 +8715,7 @@ msgstr "" msgid "Enable Address Autocompletion" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "" @@ -8738,11 +8741,6 @@ msgstr "" msgid "Enable Dynamic Client Registration" msgstr "" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -8836,11 +8834,6 @@ msgstr "" msgid "Enable Social Login" msgstr "" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "" @@ -8848,7 +8841,7 @@ msgstr "" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "" @@ -8860,12 +8853,6 @@ msgstr "" msgid "Enable developer mode to create a standard Web Template" msgstr "" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "" - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -8888,6 +8875,7 @@ msgstr "" #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -8900,6 +8888,7 @@ msgstr "" #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "" @@ -8925,14 +8914,10 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "" - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." msgstr "" #. Description of the 'Queue in Background (BETA)' (Check) field in DocType @@ -8949,11 +8934,11 @@ msgstr "" msgid "Encrypt Backups" msgstr "" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "" @@ -8965,7 +8950,7 @@ msgstr "" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -8981,6 +8966,10 @@ msgstr "" msgid "End Date cannot be before Start Date!" msgstr "" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9025,7 +9014,7 @@ msgstr "" msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "" @@ -9095,10 +9084,17 @@ msgstr "" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9108,7 +9104,7 @@ msgstr "" msgid "Error" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "" @@ -9128,7 +9124,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 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 "" @@ -9156,9 +9152,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "" @@ -9178,19 +9174,19 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "" @@ -9247,7 +9243,7 @@ msgstr "" msgid "Events" msgstr "" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "" @@ -9331,7 +9327,7 @@ msgstr "" msgid "Execute Console script" msgstr "" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "" @@ -9339,7 +9335,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "" @@ -9365,12 +9361,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9398,7 +9394,9 @@ msgid "Expire Notification On" msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "" @@ -9426,13 +9424,13 @@ msgstr "" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9469,7 +9467,7 @@ msgstr "" msgid "Export Import Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "" @@ -9478,11 +9476,11 @@ msgstr "" msgid "Export Type" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "" @@ -9490,6 +9488,10 @@ msgstr "" msgid "Export as zip" msgstr "" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "" @@ -9595,7 +9597,7 @@ msgstr "" msgid "Failed Logins (Last 30 days)" msgstr "" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "" @@ -9612,7 +9614,7 @@ msgstr "" msgid "Failed to complete setup" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "" @@ -9621,15 +9623,15 @@ msgstr "" msgid "Failed to connect to server" msgstr "" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "" @@ -9637,8 +9639,8 @@ msgstr "" msgid "Failed to enable scheduler: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "" @@ -9654,7 +9656,7 @@ msgstr "" msgid "Failed to generate preview of series" msgstr "" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "" @@ -9674,11 +9676,11 @@ msgstr "" msgid "Failed to optimize image: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "" @@ -9728,12 +9730,6 @@ msgstr "" msgid "Fax" msgstr "" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "" @@ -9791,17 +9787,17 @@ msgstr "" #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "" @@ -9814,7 +9810,7 @@ msgstr "" msgid "Field Description" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9844,7 +9840,7 @@ msgstr "" msgid "Field Type" msgstr "" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "" @@ -9870,11 +9866,11 @@ msgstr "" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "" -#: frappe/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "" -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9892,20 +9888,20 @@ 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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "" @@ -9921,15 +9917,15 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "" @@ -9952,7 +9948,7 @@ msgstr "" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -9965,7 +9961,7 @@ msgstr "" msgid "Fields Multicheck" msgstr "" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "" @@ -9973,7 +9969,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10001,7 +9997,7 @@ msgstr "" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10014,7 +10010,7 @@ msgstr "" msgid "File" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "" @@ -10067,7 +10063,7 @@ msgstr "" msgid "File backup is ready" msgstr "" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "" @@ -10075,7 +10071,7 @@ msgstr "" msgid "File not attached" msgstr "" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "" @@ -10084,11 +10080,11 @@ msgstr "" msgid "File too big" msgstr "" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "" @@ -10102,10 +10098,10 @@ msgstr "" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10142,11 +10138,11 @@ msgstr "" msgid "Filter Values" msgstr "" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10164,7 +10160,6 @@ msgstr "" msgid "Filtered Records" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "" @@ -10179,7 +10174,9 @@ msgstr "" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10201,6 +10198,11 @@ msgstr "" msgid "Filters Display" msgstr "" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10213,11 +10215,11 @@ msgstr "" msgid "Filters Section" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "" @@ -10230,18 +10232,18 @@ msgstr "" msgid "Filters {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1427 +#: frappe/public/js/frappe/views/reports/report_view.js:1429 msgid "Filters:" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 msgid "Find '{0}' in ..." msgstr "" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 msgid "Find {0} in {1}" msgstr "" @@ -10265,8 +10267,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "" @@ -10275,10 +10281,6 @@ msgstr "" msgid "First Success Message" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:49 -msgid "First Transaction" -msgstr "" - #: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." msgstr "" @@ -10329,11 +10331,11 @@ msgstr "" msgid "Fold" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1450 +#: frappe/core/doctype/doctype/doctype.py:1451 msgid "Fold can not be at the end of the form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1448 +#: frappe/core/doctype/doctype/doctype.py:1449 msgid "Fold must come before a Section Break" msgstr "" @@ -10351,7 +10353,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "" -#: frappe/core/doctype/file/file.py:472 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "" @@ -10458,7 +10460,7 @@ msgstr "" msgid "Footer HTML" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:75 +#: frappe/printing/doctype/letter_head/letter_head.py:81 msgid "Footer HTML set from attachment {0}" msgstr "" @@ -10495,7 +10497,7 @@ msgstr "" msgid "Footer Template Values" msgstr "" -#: frappe/printing/page/print/print.js:116 +#: frappe/printing/page/print/print.js:129 msgid "Footer might not be visible as {0} option is disabled" msgstr "" @@ -10553,8 +10555,8 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10580,12 +10582,6 @@ msgstr "" msgid "For help see Client Script API and Examples" msgstr "" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "" - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "" @@ -10600,7 +10596,7 @@ msgstr "" msgid "For updating, you can update only selective columns." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "" @@ -10655,7 +10651,7 @@ 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:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "" @@ -10715,6 +10711,11 @@ msgstr "" msgid "Format Data" msgstr "" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "" @@ -10742,7 +10743,15 @@ msgstr "" msgid "Frappe" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "" @@ -10831,7 +10840,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "" @@ -10858,18 +10867,16 @@ msgstr "" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "" @@ -10895,12 +10902,12 @@ msgstr "" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" +msgid "Further sub-groups can only be created under records marked as 'Group'" msgstr "" #: frappe/core/doctype/communication/communication.js:291 @@ -10960,7 +10967,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "" @@ -10968,8 +10975,14 @@ msgstr "" msgid "Generate Random Password" msgstr "" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "" @@ -10992,7 +11005,7 @@ msgstr "" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "" @@ -11128,7 +11141,7 @@ msgid "Go to this URL after completing the form" msgstr "" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "" @@ -11176,10 +11189,6 @@ msgstr "" msgid "Google Calendar" msgstr "" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
    {0}" -msgstr "" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "" @@ -11298,11 +11307,6 @@ msgstr "" msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "" -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11379,14 +11383,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11436,7 +11436,6 @@ msgstr "" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11447,9 +11446,8 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11553,7 +11551,7 @@ msgstr "" msgid "Header HTML" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "" @@ -11611,6 +11609,12 @@ msgstr "" msgid "Hello" msgstr "" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "Hallo," + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11676,7 +11680,7 @@ msgstr "" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "" @@ -11712,7 +11716,7 @@ msgstr "" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11745,11 +11749,6 @@ msgstr "" msgid "Hide Buttons" msgstr "" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "" - #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json @@ -11829,7 +11828,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -11843,7 +11842,7 @@ msgstr "" msgid "Hide descendant records of For Value." msgstr "" -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "" @@ -11892,11 +11891,8 @@ 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:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -11984,16 +11980,16 @@ msgstr "" #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -12089,9 +12085,9 @@ msgstr "" msgid "If Checked workflow status will not override status in list view" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "" @@ -12219,6 +12215,10 @@ msgstr "" msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12250,7 +12250,11 @@ msgstr "" msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "" -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "" @@ -12307,12 +12311,12 @@ msgstr "" msgid "Ignored Apps" msgstr "" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "" @@ -12373,11 +12377,11 @@ msgstr "" msgid "Image Width" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 msgid "Image field must be a valid fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "" @@ -12399,15 +12403,15 @@ msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "" @@ -12433,7 +12437,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12661,15 +12665,16 @@ msgstr "" msgid "Include Web View Link in Email" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "" @@ -12716,7 +12721,7 @@ msgstr "" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "" @@ -12728,7 +12733,7 @@ msgstr "" msgid "Incorrect URL" msgstr "" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "" @@ -12736,11 +12741,11 @@ msgstr "" msgid "Incorrect Verification code" msgstr "" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "" @@ -12752,7 +12757,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "" @@ -12827,7 +12832,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "" @@ -12843,7 +12848,7 @@ msgstr "" msgid "Insert Below" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "" @@ -12861,8 +12866,12 @@ msgstr "" msgid "Insert Style" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "" @@ -12879,7 +12888,7 @@ msgid "Installed Applications" msgstr "" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "" @@ -12896,19 +12905,19 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" msgstr "" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "" @@ -13012,9 +13021,9 @@ msgid "Invalid" msgstr "" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "" @@ -13022,7 +13031,7 @@ msgstr "" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "" @@ -13038,7 +13047,7 @@ msgstr "" msgid "Invalid Code. Please try again." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "" @@ -13058,16 +13067,20 @@ msgstr "" msgid "Invalid DocType: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13099,7 +13112,7 @@ msgstr "" msgid "Invalid Mail Server. Please rectify and try again." msgstr "" -#: frappe/model/naming.py:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "" @@ -13108,8 +13121,8 @@ msgstr "" msgid "Invalid Operation" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "" @@ -13121,25 +13134,25 @@ msgstr "" msgid "Invalid Output Format" msgstr "" -#: frappe/model/base_document.py:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "" @@ -13148,7 +13161,7 @@ msgstr "" msgid "Invalid Search Field {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "" @@ -13156,8 +13169,8 @@ msgstr "" msgid "Invalid Transition" msgstr "" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13171,47 +13184,51 @@ msgstr "" msgid "Invalid Values" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "" @@ -13223,31 +13240,27 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13255,11 +13268,11 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13267,20 +13280,28 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "" @@ -13288,6 +13309,10 @@ msgstr "" msgid "Invalid naming series {}: dot (.) missing" msgstr "" +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "" @@ -13296,19 +13321,27 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13316,7 +13349,7 @@ msgstr "" msgid "Invalid template file for import" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "" @@ -13325,20 +13358,20 @@ msgstr "" msgid "Invalid username or password" msgstr "" -#: frappe/model/naming.py:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "" @@ -13347,10 +13380,47 @@ msgstr "" msgid "Inverse" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "" @@ -13375,7 +13445,7 @@ msgstr "" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "" @@ -13428,6 +13498,10 @@ msgstr "" msgid "Is Global" msgstr "" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13454,8 +13528,13 @@ msgstr "" msgid "Is Primary" msgstr "" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 msgid "Is Primary Contact" msgstr "" @@ -13486,7 +13565,7 @@ msgstr "" msgid "Is Published Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "" @@ -13511,7 +13590,7 @@ msgstr "" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "" @@ -13547,7 +13626,7 @@ msgstr "" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "" @@ -13753,11 +13832,11 @@ msgstr "" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13778,12 +13857,14 @@ msgstr "" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -14045,7 +14126,7 @@ msgstr "" msgid "Landing Page" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "" @@ -14053,10 +14134,13 @@ msgstr "" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14144,8 +14228,12 @@ msgstr "" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "" @@ -14160,6 +14248,11 @@ msgstr "" msgid "Last Quarter" msgstr "" +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" + #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json @@ -14176,11 +14269,6 @@ msgstr "" msgid "Last Sync On" msgstr "" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14291,7 +14379,7 @@ msgstr "" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "" @@ -14340,8 +14428,8 @@ 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:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14369,7 +14457,7 @@ msgstr "" msgid "Letter Head Scripts" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "" @@ -14386,7 +14474,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "" @@ -14436,20 +14524,6 @@ msgstr "" msgid "Like" msgstr "" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "" @@ -14490,6 +14564,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14503,6 +14578,7 @@ msgstr "" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "" @@ -14633,10 +14709,15 @@ msgstr "" msgid "Linked With" msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +msgstr "" + #. Label of the links (Table) field in DocType 'Address' #. Label of the links (Table) field in DocType 'Contact' #. Label of the links_section (Tab Break) field in DocType 'DocType' #. Label of the links (Table) field in DocType 'Customize Form' +#. Label of the links (Table) field in DocType 'Event' #. Label of the links (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14644,6 +14725,7 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "" @@ -14685,7 +14767,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14726,7 +14808,7 @@ msgstr "" msgid "List setting message" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "" @@ -14735,9 +14817,8 @@ msgstr "" msgid "Load Balancing" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14754,10 +14835,10 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "" @@ -14769,7 +14850,7 @@ msgstr "" msgid "Loading import file..." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "" @@ -14779,7 +14860,7 @@ msgstr "" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "" @@ -14840,7 +14921,7 @@ msgstr "" msgid "Log out" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "" @@ -14900,7 +14981,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -14908,7 +14989,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "" @@ -14961,7 +15042,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -14980,7 +15061,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "" @@ -15084,7 +15165,10 @@ msgid "Major" 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 +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "" @@ -15160,7 +15244,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "" @@ -15172,15 +15256,15 @@ msgstr "" msgid "Mandatory field: {0}" msgstr "" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "" @@ -15261,10 +15345,8 @@ msgid "Mark as Unread" msgstr "" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15345,7 +15427,13 @@ msgstr "" msgid "Max auto email report per user" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "" @@ -15354,20 +15442,15 @@ msgstr "" msgid "Maximum" msgstr "" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "" -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "" -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "" @@ -15383,7 +15466,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15396,7 +15479,7 @@ msgstr "" msgid "Meeting" msgstr "" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "" @@ -15437,7 +15520,7 @@ msgstr "" msgid "Merge with existing" msgstr "" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "" @@ -15463,7 +15546,7 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15503,7 +15586,7 @@ msgstr "" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "" @@ -15535,29 +15618,21 @@ msgstr "" msgid "Meta" msgstr "" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "" @@ -15610,7 +15685,7 @@ msgstr "" msgid "Method Not Allowed" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "" @@ -15626,6 +15701,11 @@ msgstr "" msgid "Middle Name" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15692,11 +15772,11 @@ msgstr "" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "" @@ -15732,15 +15812,16 @@ msgstr "" msgid "Mobile No" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "" + #. Label of the modal_trigger (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Modal Trigger" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15761,7 +15842,7 @@ msgstr "" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -15937,10 +16018,12 @@ msgstr "" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "" @@ -15959,7 +16042,7 @@ msgstr "" msgid "Most Used" msgstr "" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "" @@ -15970,7 +16053,7 @@ msgstr "" msgid "Move" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "" @@ -16006,7 +16089,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "" @@ -16033,7 +16116,7 @@ msgstr "" msgid "Ms" msgstr "" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "" @@ -16056,7 +16139,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "" @@ -16074,7 +16157,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16112,9 +16195,9 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16124,11 +16207,11 @@ msgstr "" msgid "Name (Doc Name)" msgstr "" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "" @@ -16140,7 +16223,7 @@ msgstr "" msgid "Name of the new Print Format" msgstr "" -#: frappe/model/naming.py:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "" @@ -16179,7 +16262,7 @@ msgstr "" msgid "Naming Series" msgstr "" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "" @@ -16216,12 +16299,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16236,7 +16319,11 @@ msgstr "" msgid "Navigation Settings" msgstr "" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16244,7 +16331,7 @@ msgstr "" msgid "Negative Value" msgstr "" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16257,6 +16344,12 @@ msgstr "" msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +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 @@ -16265,7 +16358,7 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16286,10 +16379,6 @@ msgstr "" msgid "New Chart" msgstr "" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "" @@ -16298,8 +16387,8 @@ msgstr "" msgid "New Custom Block" msgstr "" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" msgstr "" @@ -16330,7 +16419,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "" @@ -16365,12 +16454,12 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "" @@ -16379,7 +16468,7 @@ msgstr "" msgid "New Quick List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "" @@ -16397,8 +16486,8 @@ msgstr "" msgid "New Users (Last 30 days)" msgstr "" -#: frappe/core/doctype/version/version_view.html:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "" @@ -16455,13 +16544,13 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "" @@ -16477,7 +16566,7 @@ msgstr "" msgid "New {0} {1} created" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "" @@ -16485,7 +16574,7 @@ msgstr "" msgid "New {} releases for the following apps are available" msgstr "" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "" @@ -16498,7 +16587,7 @@ msgstr "" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16605,14 +16694,15 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16662,6 +16752,10 @@ msgstr "" msgid "No Email Accounts Assigned" msgstr "" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "" @@ -16697,15 +16791,15 @@ msgstr "" msgid "No Label" msgstr "" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: frappe/public/js/frappe/list/bulk_operations.js:98 #: frappe/public/js/frappe/list/bulk_operations.js:170 #: frappe/utils/weasyprint.py:52 msgid "No Letterhead" msgstr "" -#: frappe/model/naming.py:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "" @@ -16713,7 +16807,7 @@ msgstr "" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "" @@ -16733,11 +16827,11 @@ msgstr "" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "" @@ -16753,11 +16847,11 @@ msgstr "" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16765,7 +16859,7 @@ msgstr "" msgid "No Suggestions" msgstr "" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "" @@ -16777,7 +16871,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "" @@ -16805,23 +16899,19 @@ msgstr "" msgid "No changes to update" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " -msgstr "" +msgid "No comments yet." +msgstr "Nog geen reacties." #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "" @@ -16837,11 +16927,15 @@ msgstr "" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16865,7 +16959,7 @@ msgstr "" msgid "No matching records. Search something new" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "" @@ -16909,7 +17003,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "" @@ -16921,7 +17015,7 @@ msgstr "" msgid "No records deleted" msgstr "" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "" @@ -16937,7 +17031,7 @@ msgstr "" msgid "No rows" msgstr "" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -16957,11 +17051,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -16970,7 +17064,7 @@ msgid "No {0} mail" msgstr "" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -17013,7 +17107,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "" @@ -17034,7 +17128,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -17060,20 +17154,19 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17082,10 +17175,10 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "" @@ -17117,7 +17210,7 @@ msgstr "" msgid "Not a valid User Image." msgstr "" -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "" @@ -17133,11 +17226,11 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "" @@ -17161,27 +17254,27 @@ msgstr "" msgid "Not in Developer Mode" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17216,7 +17309,7 @@ msgstr "" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17240,10 +17333,9 @@ msgstr "" msgid "Nothing left to undo" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "" @@ -17289,15 +17381,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17348,7 +17440,7 @@ msgstr "" msgid "Notify users with a popup when they log in" msgstr "" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "" @@ -17406,12 +17498,12 @@ msgstr "" msgid "Number of Queries" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17520,11 +17612,11 @@ msgstr "" msgid "OTP Issuer Name" msgstr "" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "" @@ -17643,7 +17735,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "" @@ -17683,7 +17775,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "" @@ -17728,7 +17820,7 @@ msgstr "" msgid "Only Allow Edit For" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "" @@ -17745,7 +17837,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "" @@ -17764,19 +17856,19 @@ msgstr "" msgid "Only one {0} can be set as primary." msgstr "" -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17846,7 +17938,7 @@ msgstr "" msgid "Open Settings" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "" @@ -17864,7 +17956,7 @@ msgstr "" msgid "Open a module or tool" msgstr "" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "" @@ -17872,7 +17964,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17887,13 +17979,13 @@ msgstr "" #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "" @@ -17902,6 +17994,10 @@ msgstr "" msgid "OpenID Configuration" msgstr "" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" @@ -17917,7 +18013,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "" @@ -17943,7 +18039,7 @@ msgstr "" msgid "Option 3" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "" @@ -17963,6 +18059,7 @@ msgstr "" #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -17971,11 +18068,12 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "" @@ -17984,7 +18082,7 @@ msgstr "" msgid "Options Help" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "" @@ -17992,7 +18090,7 @@ msgstr "" msgid "Options for select. Each option on a new line." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 msgid "Options for {0} must be set before setting the default value." msgstr "" @@ -18000,7 +18098,7 @@ msgstr "" msgid "Options is required for field {0} of type {1}" msgstr "" -#: frappe/model/base_document.py:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "" @@ -18016,7 +18114,7 @@ msgstr "" msgid "Order" msgstr "" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18032,12 +18130,12 @@ msgstr "" msgid "Org History Heading" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "" @@ -18105,10 +18203,6 @@ msgstr "" msgid "Overview" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" @@ -18116,9 +18210,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:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18159,11 +18253,11 @@ msgstr "" msgid "PDF generation failed because of broken image links" msgstr "" -#: frappe/printing/page/print/print.js:616 +#: frappe/printing/page/print/print.js:656 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:574 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18335,7 +18429,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:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "" @@ -18362,7 +18456,7 @@ msgstr "" msgid "Parent Document Type" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "" @@ -18379,11 +18473,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:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "" @@ -18392,7 +18486,7 @@ msgstr "" msgid "Parent Label" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 msgid "Parent Missing" msgstr "" @@ -18466,8 +18560,8 @@ msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18477,7 +18571,7 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "" @@ -18490,7 +18584,7 @@ msgstr "" msgid "Password Reset Link Generation Limit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18507,6 +18601,10 @@ msgstr "" msgid "Password is required or select Awaiting Password" msgstr "" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "" @@ -18515,7 +18613,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18523,11 +18621,11 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." msgstr "" @@ -18535,7 +18633,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "" @@ -18605,10 +18703,12 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "" @@ -18684,7 +18784,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "" @@ -18744,16 +18844,16 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: frappe/core/page/permission_manager/permission_manager.js:221 #: frappe/core/workspace/users/users.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Permissions" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "" @@ -18815,15 +18915,18 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -18836,13 +18939,13 @@ msgstr "" msgid "Phone No." msgstr "" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "" @@ -18902,11 +19005,11 @@ msgstr "" msgid "Please Set Chart" msgstr "" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "" @@ -18914,7 +19017,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18922,11 +19025,11 @@ msgstr "" msgid "Please attach a file first." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 msgid "Please attach an image file to set HTML for Footer." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "" @@ -18934,19 +19037,15 @@ msgstr "" msgid "Please attach the package" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "" - #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "" -#: frappe/model/base_document.py:951 +#: frappe/model/base_document.py:1008 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "" @@ -18978,11 +19077,11 @@ msgstr "" msgid "Please confirm your action to {0} this document." msgstr "" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "" @@ -18998,20 +19097,20 @@ msgstr "" msgid "Please do not change the template headings." msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "" @@ -19048,7 +19147,7 @@ msgstr "" msgid "Please enter Client Secret before social login is enabled" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "" @@ -19085,11 +19184,12 @@ msgstr "" msgid "Please enter your old password." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "" @@ -19097,11 +19197,11 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "" -#: frappe/model/document.py:988 +#: frappe/model/document.py:992 msgid "Please refresh to get the latest document." msgstr "" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:575 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19117,7 +19217,7 @@ msgstr "" msgid "Please save the document before removing assignment" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "" @@ -19125,7 +19225,7 @@ msgstr "" msgid "Please save to edit the template." msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "" @@ -19133,19 +19233,19 @@ msgstr "" msgid "Please select Entity Type first" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "" @@ -19153,7 +19253,7 @@ msgstr "" msgid "Please select a file or url" msgstr "" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" msgstr "" @@ -19165,7 +19265,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19191,11 +19291,11 @@ msgstr "" msgid "Please set Email Address" msgstr "" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:589 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "" @@ -19203,7 +19303,7 @@ msgstr "" msgid "Please set filters value in Report Filter table." msgstr "" -#: frappe/model/naming.py:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "" @@ -19215,7 +19315,7 @@ msgstr "" msgid "Please set the series to be used." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -19239,23 +19339,23 @@ msgstr "" msgid "Please specify a valid parent DocType for {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "" @@ -19276,7 +19376,7 @@ msgstr "" msgid "Please use following links to download file backup." msgstr "" -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" @@ -19330,7 +19430,7 @@ msgstr "" msgid "Portal Settings" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "" @@ -19358,6 +19458,7 @@ msgstr "" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "" @@ -19366,15 +19467,7 @@ msgstr "" msgid "Posting Timestamp" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19389,7 +19482,11 @@ msgstr "" msgid "Precision" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "" @@ -19437,7 +19534,7 @@ msgstr "" msgid "Prepared Report User" msgstr "" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "" @@ -19445,7 +19542,7 @@ msgstr "" msgid "Preparing Report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "" @@ -19466,7 +19563,7 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19480,13 +19577,6 @@ msgstr "" msgid "Preview HTML" msgstr "" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19515,7 +19605,7 @@ msgid "Preview:" msgstr "" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19527,12 +19617,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "" @@ -19578,19 +19663,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:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19608,8 +19693,8 @@ 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:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19660,7 +19745,7 @@ msgstr "" msgid "Print Format Type" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19699,7 +19784,7 @@ msgstr "" msgid "Print Language" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "" @@ -19716,8 +19801,8 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "" @@ -19765,11 +19850,11 @@ msgstr "" msgid "Print with letterhead" msgstr "" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "" @@ -19779,11 +19864,11 @@ msgstr "" msgid "Printer Name" msgstr "" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "" @@ -19841,7 +19926,7 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "" @@ -19862,18 +19947,28 @@ msgstr "" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "" + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: 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:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: 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/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "" @@ -19910,7 +20005,7 @@ msgstr "" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -19959,24 +20054,18 @@ msgstr "" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -19986,15 +20075,6 @@ msgstr "" msgid "Published" msgstr "" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json @@ -20084,7 +20164,9 @@ msgid "Put on Hold" msgstr "" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "" @@ -20096,8 +20178,8 @@ msgstr "" msgid "QR Code for Login Verification" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' @@ -20147,7 +20229,7 @@ msgstr "" msgid "Query analysis complete. Check suggested indexes." msgstr "" -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "" @@ -20247,7 +20329,7 @@ msgstr "" msgid "Quick Lists" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20284,12 +20366,6 @@ msgstr "" msgid "Rate Limiting" msgstr "" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20309,7 +20385,7 @@ msgstr "" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "" @@ -20326,7 +20402,7 @@ msgstr "" msgid "Raw Printing" msgstr "" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "" @@ -20343,8 +20419,8 @@ msgid "Re:" msgstr "" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "" @@ -20400,11 +20476,6 @@ msgstr "" msgid "Read Only Mode" msgstr "" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20420,7 +20491,7 @@ msgstr "" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "" @@ -20440,11 +20511,11 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20482,7 +20553,7 @@ msgstr "" msgid "Recent years are easy to guess." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "" @@ -20493,6 +20564,14 @@ msgstr "" msgid "Recipient" msgstr "" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20525,7 +20604,7 @@ msgstr "" msgid "Records for following doctypes will be filtered" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "" @@ -20542,6 +20621,11 @@ msgstr "" msgid "Redirect HTTP Status" msgstr "" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20636,6 +20720,11 @@ msgstr "" msgid "Reference Datetime" msgstr "" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20663,7 +20752,6 @@ msgstr "" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20704,9 +20792,9 @@ msgstr "" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20724,9 +20812,9 @@ msgstr "" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20756,7 +20844,6 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -20804,15 +20891,15 @@ msgstr "" msgid "Referrer" msgstr "" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "" @@ -20826,6 +20913,10 @@ msgstr "" msgid "Refresh Google Sheet" msgstr "" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -20837,18 +20928,18 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "" @@ -21025,7 +21116,7 @@ msgstr "" msgid "Rename {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "" @@ -21156,9 +21247,9 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "" @@ -21228,11 +21319,11 @@ 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:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "" @@ -21266,21 +21357,21 @@ msgstr "" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 msgid "Report cannot be set for Single types" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 -#: frappe/desk/doctype/number_card/number_card.js:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21292,24 +21383,24 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "" @@ -21317,7 +21408,7 @@ msgstr "" msgid "Report {0} is disabled" msgstr "" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "" @@ -21328,7 +21419,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:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "" @@ -21336,7 +21427,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "" @@ -21355,7 +21446,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "" @@ -21407,6 +21501,11 @@ msgstr "" msgid "Request URL" msgstr "" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21458,11 +21557,11 @@ msgstr "" msgid "Reset Dashboard Customizations" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "" @@ -21470,11 +21569,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21509,7 +21608,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21547,6 +21646,7 @@ msgid "Resource TOS URI" msgstr "" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21556,11 +21656,6 @@ msgstr "" msgid "Response" msgstr "" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "" - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21619,7 +21714,7 @@ msgstr "" msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "" @@ -21653,7 +21748,7 @@ msgstr "" msgid "Reverse Icon Color" msgstr "" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "" @@ -21671,9 +21766,7 @@ msgstr "" msgid "Revoked" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21714,6 +21807,7 @@ msgstr "" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21727,6 +21821,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21765,7 +21860,7 @@ msgstr "" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "" @@ -21775,7 +21870,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21818,6 +21913,7 @@ msgstr "" #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -21827,6 +21923,7 @@ msgstr "" #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -21863,7 +21960,7 @@ msgstr "" msgid "Roles can be set for users from their User page." msgstr "" -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "" @@ -21883,8 +21980,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -21896,8 +21991,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -21922,24 +22015,24 @@ msgstr "" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "" @@ -21948,11 +22041,6 @@ msgstr "" msgid "Row Format" msgstr "" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "" - #. Label of the row_indexes (Code) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Row Indexes" @@ -21967,7 +22055,7 @@ msgstr "" msgid "Row Number" msgstr "" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "" @@ -21975,30 +22063,33 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Added" msgstr "" #. Label of the rows_removed_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22089,7 +22180,7 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "" @@ -22167,7 +22258,7 @@ msgstr "" msgid "Salutation" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "" @@ -22195,20 +22286,20 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22217,16 +22308,12 @@ msgstr "" msgid "Save" msgstr "" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "" @@ -22234,11 +22321,11 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "" @@ -22263,7 +22350,7 @@ msgstr "" msgid "Saved Filters" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22342,7 +22429,7 @@ msgstr "" msgid "Scheduled Jobs Logs" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "" @@ -22365,7 +22452,7 @@ msgstr "" msgid "Scheduler Event" msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "" @@ -22378,7 +22465,7 @@ msgstr "" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "" @@ -22510,7 +22597,7 @@ msgstr "" msgid "Search by filename or extension" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "" @@ -22610,7 +22697,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "" @@ -22619,7 +22706,7 @@ msgstr "" msgid "See on Website" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "" @@ -22666,7 +22753,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/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22674,28 +22761,28 @@ msgstr "" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 msgid "Select Column" msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "" @@ -22754,12 +22841,15 @@ msgstr "" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "" @@ -22772,7 +22862,7 @@ msgstr "" msgid "Select Filters" msgstr "" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "" @@ -22805,8 +22895,8 @@ msgstr "" msgid "Select Module" msgstr "" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "" @@ -22871,14 +22961,14 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." +msgid "Select a group {0} first." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 msgid "Select a valid Subject field for creating documents from Email" msgstr "" @@ -22908,13 +22998,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22948,7 +23038,7 @@ msgstr "" msgid "Select {0}" msgstr "" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "" @@ -23132,7 +23222,7 @@ msgstr "" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "" @@ -23226,7 +23316,7 @@ msgstr "" msgid "Series counter for {} updated to {} successfully" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "" @@ -23236,7 +23326,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23255,7 +23345,7 @@ msgstr "" msgid "Server Script" msgstr "" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23302,7 +23392,7 @@ msgstr "" msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "" @@ -23311,14 +23401,14 @@ msgstr "" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "" @@ -23344,12 +23434,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23360,7 +23450,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23414,7 +23504,7 @@ msgstr "" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23424,16 +23514,16 @@ msgstr "" msgid "Set Value" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "" @@ -23452,18 +23542,21 @@ msgstr "" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "" -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23555,14 +23648,9 @@ msgstr "" msgid "Settings for the About Us Page" msgstr "" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "" @@ -23578,8 +23666,8 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "" @@ -23648,11 +23736,6 @@ msgstr "" msgid "Shop" msgstr "" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "" @@ -23672,11 +23755,6 @@ msgstr "" msgid "Show" msgstr "" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23729,7 +23807,13 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23857,7 +23941,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "" @@ -23874,7 +23958,7 @@ msgstr "" msgid "Show Title in Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "" @@ -23914,10 +23998,6 @@ msgstr "" msgid "Show all activity" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "" - #. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" @@ -23966,8 +24046,8 @@ msgstr "" msgid "Show list" msgstr "" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "" @@ -23996,7 +24076,7 @@ msgstr "" msgid "Show {0} List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "" @@ -24031,7 +24111,7 @@ msgstr "" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "" @@ -24068,22 +24148,22 @@ msgstr "" msgid "Signups have been disabled for this website." msgstr "" -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" msgstr "" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" msgstr "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' @@ -24091,13 +24171,13 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "" #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "" @@ -24105,7 +24185,7 @@ msgstr "" msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "" -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "" @@ -24324,11 +24404,11 @@ msgstr "" msgid "Something went wrong." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 msgid "Sorry! I could not find what you were looking for." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "" @@ -24359,20 +24439,23 @@ msgstr "" msgid "Sort Order" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 msgid "Sort field {0} must be a valid fieldname" msgstr "" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' -#: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24399,6 +24482,12 @@ msgstr "" msgid "SparkPost" msgstr "" +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "" @@ -24423,8 +24512,8 @@ msgstr "" msgid "Splash Image" msgstr "" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -24456,11 +24545,11 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "" @@ -24472,7 +24561,7 @@ msgstr "" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "" @@ -24480,11 +24569,11 @@ msgstr "" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "" -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "" @@ -24516,8 +24605,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:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "" @@ -24525,7 +24614,7 @@ msgstr "" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24590,6 +24679,7 @@ msgstr "" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24598,7 +24688,7 @@ msgstr "" msgid "State" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "" @@ -24654,6 +24744,7 @@ msgstr "" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24678,6 +24769,7 @@ msgstr "" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24685,8 +24777,8 @@ msgstr "" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24723,7 +24815,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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24753,6 +24845,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +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." @@ -24831,7 +24927,7 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -24847,7 +24943,7 @@ msgstr "" msgid "Subject Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "" @@ -24861,6 +24957,7 @@ msgstr "" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24869,10 +24966,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24882,7 +24980,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24906,7 +25004,7 @@ msgstr "" msgid "Submit an Issue" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "" @@ -24918,7 +25016,7 @@ msgstr "" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "" @@ -24930,7 +25028,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24939,11 +25037,11 @@ msgstr "" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "" @@ -24966,9 +25064,7 @@ msgid "Subsidiary" msgstr "" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "" @@ -24982,7 +25078,7 @@ msgstr "" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25024,20 +25120,16 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "" - #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" msgstr "" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "" @@ -25079,7 +25171,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "" @@ -25201,7 +25293,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25324,6 +25416,7 @@ msgstr "" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25406,6 +25499,7 @@ msgstr "" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" msgstr "" @@ -25479,7 +25573,7 @@ msgstr "" msgid "Table Break" msgstr "" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "" @@ -25488,7 +25582,7 @@ msgstr "" msgid "Table Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "" @@ -25510,11 +25604,11 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 msgid "Table {0} cannot be empty" msgstr "" @@ -25556,11 +25650,18 @@ msgstr "" msgid "Target" msgstr "" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25622,7 +25723,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "" @@ -25694,7 +25795,7 @@ msgid "Thank you for reaching out to us. We will get back to you at the earliest "{0}" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "" @@ -25718,7 +25819,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "" @@ -25729,15 +25830,15 @@ msgid "The Client ID obtained from the Google Cloud Console under " msgstr "" -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." msgstr "" @@ -25778,7 +25879,7 @@ msgstr "" msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "" -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "" @@ -25786,7 +25887,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:658 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25816,7 +25917,7 @@ msgstr "" msgid "The field {0} is mandatory" msgstr "" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "" @@ -25886,15 +25987,19 @@ msgid "The project number obtained from Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

    Click here to download:
    {0}

    This link will expire in {1} hours." +msgstr "" + +#: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:995 +#: frappe/core/doctype/user/user.py:1002 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25906,7 +26011,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:338 +#: frappe/utils/response.py:336 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25927,7 +26032,7 @@ msgstr "" msgid "The webhook will be triggered if this expression is true" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "" @@ -25967,16 +26072,16 @@ 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:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "" @@ -25988,15 +26093,19 @@ msgstr "" msgid "There is no data to be exported" msgstr "" +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26008,7 +26117,7 @@ msgstr "" msgid "There was an error building this page" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "" @@ -26020,11 +26129,11 @@ msgstr "" msgid "There were errors while creating the document. Please try again." msgstr "" -#: frappe/public/js/frappe/views/communication.js:840 +#: frappe/public/js/frappe/views/communication.js:843 msgid "There were errors while sending email. Please try again." msgstr "" -#: frappe/model/naming.py:494 +#: frappe/model/naming.py:502 msgid "There were some errors setting the name, please contact the administrator" msgstr "" @@ -26065,7 +26174,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "" @@ -26073,6 +26182,10 @@ msgstr "" msgid "This Month" msgstr "" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "" @@ -26098,6 +26211,11 @@ msgstr "" msgid "This cannot be undone" msgstr "" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +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" @@ -26112,11 +26230,11 @@ msgstr "" msgid "This doctype has no orphan fields to trim" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26158,7 +26276,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26174,7 +26292,7 @@ msgstr "" msgid "This form has been modified after you have loaded it" msgstr "" -#: frappe/public/js/frappe/form/form.js:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "" @@ -26193,7 +26311,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26217,12 +26335,6 @@ msgstr "" msgid "This is an automatically generated reply" msgstr "" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "" - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "" @@ -26241,7 +26353,7 @@ msgstr "" msgid "This link is invalid or expired. Please make sure you have pasted correctly." msgstr "" -#: frappe/printing/page/print/print.js:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "" @@ -26249,7 +26361,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26257,7 +26369,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "" @@ -26288,7 +26400,7 @@ msgstr "" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " +msgid "This value specifies the max number of rows that can be rendered in report view." msgstr "" #: frappe/website/doctype/web_page/web_page.js:85 @@ -26320,10 +26432,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " +msgid "This will terminate the job immediately and might be dangerous, are you sure?" msgstr "" -#: frappe/core/doctype/user/user.py:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "" @@ -26399,9 +26511,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26472,11 +26586,11 @@ msgstr "" msgid "Timeline Name" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 msgid "Timeline field must be a Link or Dynamic Link" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "" @@ -26502,10 +26616,7 @@ msgid "Timespan" msgstr "" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "" @@ -26525,9 +26636,6 @@ msgstr "" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26552,9 +26660,6 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26577,7 +26682,7 @@ msgstr "" msgid "Title Prefix" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "" @@ -26671,7 +26776,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "" @@ -26726,7 +26831,7 @@ msgstr "" msgid "Today" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "" @@ -26742,11 +26847,11 @@ msgstr "" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26792,7 +26897,7 @@ msgid "Tomorrow" msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "" @@ -26808,7 +26913,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26870,10 +26975,10 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -26916,18 +27021,18 @@ msgstr "" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " +msgid "Total number of emails to sync in initial sync process" msgstr "" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "" @@ -26993,26 +27098,10 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "" @@ -27026,6 +27115,11 @@ msgstr "" msgid "Transition Rules" msgstr "" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" @@ -27040,7 +27134,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27051,7 +27145,7 @@ msgstr "" msgid "Translate Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "" @@ -27135,8 +27229,8 @@ msgstr "" msgid "Try a Naming Series" msgstr "" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "" @@ -27202,7 +27296,7 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27295,7 +27389,7 @@ msgstr "" msgid "URL for documentation or help" msgstr "" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "" @@ -27398,7 +27492,7 @@ msgstr "" msgid "Unable to update event" msgstr "" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "" @@ -27407,7 +27501,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27423,7 +27517,7 @@ msgstr "" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27470,7 +27564,7 @@ msgstr "" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "" @@ -27482,8 +27576,7 @@ msgstr "" msgid "Unlock Reference Document" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "" @@ -27499,7 +27592,7 @@ msgstr "" msgid "Unread Notification Sent" msgstr "" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "" @@ -27537,8 +27630,8 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27558,7 +27651,7 @@ msgstr "" msgid "Unzipping files..." msgstr "" -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "" @@ -27572,7 +27665,7 @@ msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "" @@ -27606,6 +27699,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27648,7 +27746,7 @@ msgstr "" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "" @@ -27656,7 +27754,7 @@ msgstr "" msgid "Updated Successfully" msgstr "" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "" @@ -27664,7 +27762,7 @@ msgstr "" msgid "Updated successfully" msgstr "" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "" @@ -27709,8 +27807,8 @@ msgstr "" msgid "Upgrade your support experience with Frappe Helpdesk" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27720,11 +27818,11 @@ msgstr "" msgid "Upload Image" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "" @@ -27821,15 +27919,11 @@ msgstr "" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "" -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "" @@ -27850,7 +27944,9 @@ msgid "Used OAuth" msgstr "" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -27859,6 +27955,7 @@ msgstr "" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -27873,11 +27970,12 @@ msgstr "" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -27886,6 +27984,7 @@ msgstr "" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -27902,17 +28001,11 @@ msgstr "" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "" - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "" @@ -27942,7 +28035,7 @@ msgstr "" msgid "User Cannot Search" msgstr "" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "" @@ -28006,11 +28099,6 @@ msgstr "" msgid "User ID Property" msgstr "" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28030,6 +28118,11 @@ msgstr "" msgid "User Image" msgstr "" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "" @@ -28048,12 +28141,12 @@ msgstr "" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28066,7 +28159,9 @@ msgstr "" msgid "User Permissions created successfully" msgstr "" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "" @@ -28132,6 +28227,10 @@ msgstr "" msgid "User does not have permission to create the new {0}" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "" @@ -28162,7 +28261,7 @@ msgstr "" msgid "User {0} cannot be disabled" msgstr "" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "" @@ -28183,7 +28282,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "" @@ -28191,7 +28290,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28212,7 +28311,7 @@ msgstr "" msgid "Username" msgstr "" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "" @@ -28296,7 +28395,7 @@ msgstr "" msgid "Validate SSL Certificate" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "" @@ -28319,8 +28418,8 @@ msgstr "" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28352,7 +28451,7 @@ msgstr "" msgid "Value To Be Set" msgstr "" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "" @@ -28368,11 +28467,11 @@ msgstr "" msgid "Value for a check field can be either 0 or 1" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" -#: frappe/model/base_document.py:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "" @@ -28397,7 +28496,7 @@ msgstr "" msgid "Value to Validate" msgstr "" -#: frappe/model/base_document.py:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "" @@ -28414,7 +28513,7 @@ msgstr "" msgid "Value {0} must in {1} format" msgstr "" -#: frappe/core/doctype/version/version_view.html:8 +#: frappe/core/doctype/version/version_view.html:9 msgid "Values Changed" msgstr "" @@ -28427,7 +28526,7 @@ msgstr "" msgid "Verification" msgstr "" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "" @@ -28489,15 +28588,7 @@ msgstr "" msgid "View Audit Trail" msgstr "" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" @@ -28509,7 +28600,7 @@ msgstr "" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "" @@ -28519,7 +28610,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28566,7 +28657,7 @@ msgstr "" msgid "View this in your browser" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "" @@ -28635,6 +28726,7 @@ msgid "Warehouse" msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "" @@ -28643,7 +28735,7 @@ msgstr "" msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "" @@ -28729,7 +28821,7 @@ msgstr "" msgid "Web Page Block" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "" @@ -28832,7 +28924,7 @@ msgstr "" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "" @@ -28845,10 +28937,6 @@ msgstr "" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -28892,7 +28980,7 @@ msgstr "" msgid "Website Search Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "" @@ -29109,11 +29197,6 @@ msgstr "" msgid "Will add \"%\" before and after the query" msgstr "" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "" - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "" @@ -29128,7 +29211,7 @@ msgstr "" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "" @@ -29206,7 +29289,7 @@ msgstr "" msgid "Workflow Data" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "" @@ -29232,11 +29315,11 @@ msgstr "" msgid "Workflow State Field" msgstr "" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "" @@ -29244,15 +29327,30 @@ msgstr "" msgid "Workflow States Don't Exist" msgstr "" -#: frappe/model/workflow.py:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29268,13 +29366,13 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29344,11 +29442,11 @@ msgstr "" msgid "Workspaces" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "" @@ -29367,11 +29465,11 @@ msgstr "" msgid "Write" msgstr "" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "" @@ -29390,13 +29488,13 @@ msgstr "" msgid "Y Axis" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" msgstr "" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "" @@ -29448,16 +29546,17 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29485,6 +29584,18 @@ msgstr "" msgid "You Liked" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "" @@ -29523,20 +29634,20 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29560,7 +29671,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:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29586,13 +29697,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " +msgid "You can also copy-paste this" msgstr "" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "" +#: frappe/templates/emails/user_invitation_expired.html:8 +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 "" @@ -29605,11 +29720,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29629,7 +29744,7 @@ msgstr "" msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "" -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "" @@ -29647,7 +29762,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "" @@ -29659,11 +29774,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29681,7 +29796,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:385 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29711,7 +29826,7 @@ msgstr "" msgid "You created this" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "" @@ -29724,15 +29839,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29744,11 +29859,11 @@ msgstr "" msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "" @@ -29756,19 +29871,19 @@ msgstr "" msgid "You don't have permission to get a report on: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " +msgid "You have a new message from:" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29776,11 +29891,7 @@ msgstr "" msgid "You have not entered a value. The field will be set to empty." msgstr "" -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "" @@ -29800,7 +29911,7 @@ msgstr "" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29817,11 +29928,11 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "" @@ -29845,7 +29956,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "" @@ -29853,12 +29964,12 @@ msgstr "" msgid "You need to be logged in to access this page" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "" #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " +msgid "You need to create these first:" msgstr "" #: frappe/www/login.html:76 @@ -29893,11 +30004,19 @@ msgstr "" msgid "You need {0} permission to fetch values from {1} {2}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "" @@ -29928,10 +30047,26 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "" @@ -29961,7 +30096,7 @@ msgstr "" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "" @@ -29985,10 +30120,22 @@ msgstr "" msgid "Your email address" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "" @@ -30011,7 +30158,11 @@ msgstr "" msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "" -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "" @@ -30033,7 +30184,7 @@ msgstr "" msgid "Zero means send records updated at anytime" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" msgstr "" @@ -30055,10 +30206,6 @@ msgstr "" msgid "`job_id` paramater is required for deduplication." msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30093,7 +30240,7 @@ msgstr "" msgid "cProfile Output" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "" @@ -30238,12 +30385,12 @@ msgstr "" msgid "email" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "" @@ -30300,7 +30447,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "" @@ -30315,11 +30462,6 @@ msgstr "" msgid "import" msgstr "" -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "" - #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "" @@ -30328,7 +30470,7 @@ msgstr "" msgid "just now" msgstr "" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "" @@ -30357,7 +30499,7 @@ msgstr "" msgid "logged in" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30378,11 +30520,6 @@ msgstr "" msgid "merged {0} into {1}" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "" - #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json @@ -30406,7 +30543,7 @@ msgstr "" msgid "module name..." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "" @@ -30535,10 +30672,6 @@ msgstr "" msgid "red" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "" @@ -30594,19 +30727,19 @@ msgstr "" msgid "short" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "" @@ -30659,6 +30792,10 @@ msgstr "" msgid "this shouldn't break" msgstr "" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "naar uw browser" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30686,7 +30823,7 @@ msgstr "" msgid "via Assignment Rule" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "" @@ -30700,7 +30837,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "" @@ -30733,10 +30870,15 @@ msgstr "" msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "" +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json @@ -30764,11 +30906,11 @@ msgstr "" msgid "{0}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "" @@ -30794,19 +30936,19 @@ msgstr "" msgid "{0} Calendar" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "" @@ -30830,6 +30972,10 @@ msgstr "" msgid "{0} List" msgstr "" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "" @@ -30842,7 +30988,7 @@ msgstr "" msgid "{0} Name" msgstr "" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "" @@ -30852,11 +30998,10 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "" @@ -30881,7 +31026,15 @@ msgstr "" msgid "{0} added" msgstr "" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "" @@ -30893,7 +31046,7 @@ msgstr "" msgid "{0} already unsubscribed for {1} {2}" msgstr "" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "" @@ -30901,7 +31054,7 @@ msgstr "" msgid "{0} are currently {1}" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "" @@ -30918,7 +31071,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -30960,11 +31113,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." msgstr "" @@ -30977,7 +31126,7 @@ msgstr "" msgid "{0} created this" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "" @@ -30999,7 +31148,7 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31031,7 +31180,7 @@ msgstr "" msgid "{0} hours ago" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "" @@ -31040,23 +31189,23 @@ msgstr "" msgid "{0} in row {1} cannot have both URL and child items" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "" @@ -31065,27 +31214,27 @@ msgstr "" msgid "{0} is currently {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "" @@ -31093,7 +31242,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31113,12 +31262,12 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "" @@ -31126,15 +31275,15 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "" @@ -31150,55 +31299,59 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 -#: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: 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/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31231,35 +31384,35 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "" @@ -31267,7 +31420,7 @@ msgstr "" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "" @@ -31280,11 +31433,11 @@ msgid "{0} not found" msgstr "" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31293,7 +31446,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "" @@ -31317,6 +31470,10 @@ msgstr "" msgid "{0} records will be exported" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31326,15 +31483,29 @@ msgstr "" msgid "{0} removed their assignment." msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "" @@ -31354,11 +31525,11 @@ msgstr "" msgid "{0} shared this document with {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "" @@ -31371,8 +31542,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "" @@ -31382,7 +31553,7 @@ msgstr "" #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "" @@ -31390,7 +31561,7 @@ msgstr "" msgid "{0} un-shared this document with {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "" @@ -31426,15 +31597,15 @@ msgstr "" msgid "{0} {1} added to Dashboard {2}" msgstr "" -#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "" @@ -31450,11 +31621,11 @@ msgstr "" msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" -#: frappe/model/base_document.py:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "" @@ -31462,79 +31633,79 @@ msgstr "" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "" -#: frappe/model/base_document.py:1120 +#: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 msgid "{0}: Cannot set import as {1} is not importable" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 +#: 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:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "" @@ -31542,7 +31713,7 @@ msgstr "" msgid "{0}: Other permission rules may also apply" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "" @@ -31550,7 +31721,7 @@ msgstr "" msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "" @@ -31563,11 +31734,11 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "" @@ -31591,7 +31762,7 @@ msgstr "" msgid "{count} rows selected" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "" @@ -31599,11 +31770,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
    {}" msgstr "" @@ -31629,7 +31800,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/pl.po b/frappe/locale/pl.po index 1400f4927b..0f0205451d 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-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-22 21:46\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Polish\n" "MIME-Version: 1.0\n" @@ -18,15 +18,11 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: pl_PL\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr "" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json msgid "!=" -msgstr "" +msgstr "!=" #. Description of the 'Org History Heading' (Data) field in DocType 'About Us #. Settings' @@ -61,7 +57,7 @@ msgstr "" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" msgstr "" @@ -74,7 +70,7 @@ msgstr "" msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "'In Global Search' niedozwolone dla typu {0} w wierszu {1}" @@ -82,19 +78,23 @@ msgstr "'In Global Search' niedozwolone dla typu {0} w wierszu {1}" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" msgstr "" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "" @@ -102,11 +102,11 @@ msgstr "" msgid "(Mandatory)" msgstr "" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" msgstr "" @@ -122,7 +122,7 @@ msgstr "0 - Projekt; 1 - Wysłane; 2 - Anulowane" msgid "0 is highest" msgstr "0 jest najwyższą wartością" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "" @@ -140,15 +140,11 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "" @@ -157,59 +153,69 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "" #: frappe/public/js/print_format_builder/PrintFormat.vue:3 msgid "1 of 2" -msgstr "" +msgstr "1 z 2" #: frappe/public/js/frappe/data_import/data_exporter.js:227 msgid "1 record will be exported" msgstr "" -#: frappe/tests/test_utils.py:711 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "" + +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "" @@ -225,7 +231,7 @@ msgstr "" msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "" @@ -245,6 +251,13 @@ msgstr "" msgid "<=" msgstr "" +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "" @@ -254,6 +267,16 @@ msgstr "" msgid "
    Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
    " msgstr "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

    Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

    " +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

    Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

    " +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -492,7 +515,7 @@ msgid "

    To interact with above HTML you will have to use `root_element` as a p "" msgstr "" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

    " msgstr "" @@ -559,7 +582,7 @@ msgstr "" msgid ">=" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" @@ -568,15 +591,16 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." msgstr "" #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "" @@ -589,7 +613,7 @@ msgstr "Wykaz środków, które App klient będzie miał dostęp do gdy użytkow msgid "A new account has been created for you at {0}" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "" @@ -688,13 +712,17 @@ msgstr "Punkt końcowy API" msgid "API Endpoint Args" msgstr "Argumenty API punktu końcowego" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -713,6 +741,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -733,7 +765,7 @@ msgstr "" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -750,7 +782,7 @@ msgstr "" #. Type: Action #: frappe/hooks.py msgid "About" -msgstr "" +msgstr "O programie" #: frappe/www/about.html:11 frappe/www/about.html:18 msgid "About Us" @@ -780,6 +812,20 @@ msgstr "" msgid "About {0} seconds remaining" msgstr "" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -805,7 +851,7 @@ msgstr "Dostęp za pomocą Tokenu" msgid "Access Token URL" msgstr "Uzyskaj dostęp do adresu URL tokenu" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "" @@ -869,7 +915,7 @@ msgstr "Akcja / Trasa" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "" @@ -921,7 +967,7 @@ msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "" @@ -978,7 +1024,7 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -989,7 +1035,7 @@ msgstr "" msgid "Add" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -1001,7 +1047,7 @@ msgstr "" msgid "Add A New Rule" msgstr "" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "" @@ -1021,7 +1067,7 @@ msgstr "" msgid "Add Border at Top" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "" @@ -1034,10 +1080,10 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "" @@ -1096,7 +1142,7 @@ msgstr "" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "" @@ -1129,12 +1175,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "" @@ -1223,7 +1269,7 @@ msgstr "" msgid "Add page break" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "" @@ -1261,7 +1307,7 @@ msgstr "" msgid "Add {0}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" msgstr "" @@ -1304,6 +1350,7 @@ msgstr "Dodatkowe uprawnienia" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1312,6 +1359,7 @@ msgstr "" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "" @@ -1319,6 +1367,7 @@ msgstr "" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "" @@ -1369,7 +1418,7 @@ msgstr "" msgid "Adds a custom field to a DocType" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "" @@ -1383,7 +1432,6 @@ msgstr "" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1396,11 +1444,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1421,8 +1469,8 @@ msgstr "Zaawansowany" msgid "Advanced Control" msgstr "Zaawansowana kontrola" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" msgstr "" @@ -1481,7 +1529,7 @@ msgstr "" msgid "After Submit" msgstr "Po przesłaniu" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "" @@ -1508,11 +1556,11 @@ msgstr "Alarm" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1577,7 +1625,7 @@ msgstr "" msgid "All Records" msgstr "" -#: frappe/public/js/frappe/form/form.js:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "" @@ -1637,7 +1685,7 @@ msgstr "Zezwalaj na masową edycję" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " +msgid "Allow Consecutive Login Attempts" msgstr "" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 @@ -1658,11 +1706,6 @@ msgstr "Pozwól gościowi" msgid "Allow Guest to View" msgstr "Pozostawić do gości Zobacz" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1711,7 +1754,7 @@ msgid "Allow Print for Cancelled" msgstr "Pozwól na Drukowanie dla Anulowanych" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "" @@ -1944,7 +1987,7 @@ msgstr "" msgid "Allows skipping authorization if a user has active tokens." msgstr "" -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "" @@ -1952,11 +1995,11 @@ msgstr "" msgid "Already in the following Users ToDo list:{0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "" @@ -1965,6 +2008,12 @@ msgstr "" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2016,10 +2065,8 @@ msgstr "" msgid "Amended Documents" msgstr "" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "" @@ -2043,6 +2090,11 @@ msgstr "Zmiana niedozwolona" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2136,10 +2188,12 @@ msgid "App Logo" msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2210,6 +2264,10 @@ msgstr "Nazwa aplikacji" msgid "Application Version" msgstr "Wersja aplikacji" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2219,7 +2277,7 @@ msgstr "Data zastosowania" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2267,7 +2325,7 @@ msgstr "Zastosuj tę regułę, jeśli Użytkownik nie jest właścicielem" msgid "Apply to all Documents Types" msgstr "" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "" @@ -2300,7 +2358,11 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2328,11 +2390,15 @@ msgctxt "Confirmation dialog message" msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:191 msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2340,7 +2406,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2395,6 +2461,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2404,7 +2476,7 @@ msgstr "Przypisz warunek" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2467,6 +2539,11 @@ msgstr "" msgid "Assigned To/Owner" msgstr "" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "" @@ -2536,7 +2613,13 @@ msgstr "" msgid "Assignments" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -2616,7 +2699,7 @@ msgstr "Dołączony do pola" msgid "Attached To Name" msgstr "Przydzielony do nazwy" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "" @@ -2632,7 +2715,7 @@ msgstr "Załącznik" msgid "Attachment Limit (MB)" msgstr "Limit załącznik (MB)" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "" @@ -2650,15 +2733,15 @@ msgstr "Usunięto Attachment" #. Label of the attachments (Code) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "" @@ -2681,6 +2764,10 @@ msgstr "" msgid "Auth URL Data" msgstr "" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "" + #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authenticate as Service Principal" @@ -2698,7 +2785,7 @@ msgid "Authentication" msgstr "" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " +msgid "Authentication Apps you can use are:" msgstr "" #: frappe/email/doctype/email_account/email_account.py:339 @@ -2812,11 +2899,11 @@ msgstr "" msgid "Auto Repeat Day" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "" @@ -2824,11 +2911,16 @@ msgstr "" msgid "Auto Repeat Schedule" msgstr "" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "" @@ -2872,7 +2964,7 @@ msgstr "" msgid "Auto follow documents that you create" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "" @@ -2920,7 +3012,7 @@ msgstr "" msgid "Automatically Assign Documents to Users" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "" @@ -2934,11 +3026,6 @@ msgstr "" msgid "Automation" msgstr "" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3210,8 +3297,8 @@ msgstr "Podstawowy adres URL" #. Label of the based_on (Link) field in DocType 'Language' #: frappe/core/doctype/language/language.json -#: frappe/printing/page/print/print.js:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "" @@ -3328,10 +3415,8 @@ msgstr "" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "Biografia" @@ -3361,64 +3446,6 @@ msgstr "Moduły blokowe" msgid "Blocked" msgstr "Zablokowany" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "Wstęp bloga" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "Wstęp bloga" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "Tytuł bloga" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3515,13 +3542,6 @@ msgstr "" msgid "Breadcrumbs" msgstr "Okruszki" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3579,15 +3599,15 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" msgstr "" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "" @@ -3602,7 +3622,7 @@ msgstr "" msgid "Bulk Update" msgstr "" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "" @@ -3614,7 +3634,7 @@ msgstr "" msgid "Bulk operations only support up to 500 documents." msgstr "" -#: frappe/model/workflow.py:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "" @@ -3744,16 +3764,6 @@ msgstr "" msgid "CSV" msgstr "" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "Etykieta CTA" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "URL wezwania do działania" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3804,11 +3814,6 @@ msgstr "Wezwanie do działania" msgid "Call To Action URL" msgstr "URL wezwania do działania" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -3826,7 +3831,7 @@ msgid "Camera" msgstr "" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3862,7 +3867,7 @@ msgstr "" msgid "Can not rename as column {0} is already present on DocType." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "" @@ -3886,14 +3891,15 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3911,16 +3917,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -3958,11 +3966,11 @@ msgstr "" msgid "Cannot Remove" msgstr "" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3970,7 +3978,7 @@ msgstr "" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "" @@ -3978,11 +3986,11 @@ msgstr "" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1013 +#: frappe/model/document.py:1017 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -3990,11 +3998,11 @@ msgstr "" msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "" @@ -4006,11 +4014,11 @@ msgstr "" msgid "Cannot create private workspace of other users" msgstr "" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4045,7 +4053,7 @@ msgstr "" msgid "Cannot delete {0}" msgstr "" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" msgstr "" @@ -4053,7 +4061,7 @@ msgstr "" msgid "Cannot edit Standard Dashboards" msgstr "" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "" @@ -4065,7 +4073,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" -#: frappe/model/document.py:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "" @@ -4073,8 +4081,8 @@ msgstr "" msgid "Cannot edit filters for standard charts" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "" @@ -4082,27 +4090,27 @@ msgstr "" msgid "Cannot edit standard fields" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:884 msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1132 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "" @@ -4114,11 +4122,11 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "" @@ -4126,7 +4134,7 @@ msgstr "" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "" @@ -4143,11 +4151,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4215,15 +4223,6 @@ msgstr "Środek" msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4261,7 +4260,7 @@ msgstr "" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
    \n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " +"Warning: Incorrectly updating counters can prevent documents from getting created." msgstr "" #. Label of the changed_at (Datetime) field in DocType 'Permission Log' @@ -4331,7 +4330,7 @@ msgstr "Źródło wykresu" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "" @@ -4364,7 +4363,7 @@ msgstr "Czat" msgid "Check" msgstr "Czek" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "" @@ -4372,7 +4371,7 @@ msgstr "" msgid "Check columns to select, drag to set order." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "" @@ -4413,11 +4412,6 @@ msgstr "" msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "" -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "Wersja kontrolna" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "" @@ -4427,17 +4421,17 @@ msgstr "" msgid "Child Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4466,6 +4460,7 @@ 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" #. 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 msgid "City" msgstr "" @@ -4480,7 +4475,7 @@ msgstr "Miasto/Miejscowość" msgid "Clear" msgstr "" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "" @@ -4492,14 +4487,14 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" #: frappe/public/js/frappe/ui/keyboard.js:287 msgid "Clear Cache and Reload" -msgstr "" +msgstr "Wyczyść pamięć podręczną i przeładuj" #: frappe/core/doctype/error_log/error_log_list.js:12 msgid "Clear Error Logs" @@ -4518,7 +4513,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "" @@ -4530,11 +4525,15 @@ msgstr "" msgid "Click On Customize to add your first widget" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "" @@ -4565,24 +4564,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4760,7 +4759,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4815,7 +4814,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:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4871,11 +4870,11 @@ msgstr "" msgid "Column Name cannot be empty" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4902,7 +4901,7 @@ msgstr "" msgid "Columns / Fields" msgstr "Kolumny / Pola" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "" @@ -4944,16 +4943,6 @@ msgstr "Typ Komentarza" msgid "Comment can only be edited by the owner" msgstr "" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "" @@ -4961,7 +4950,7 @@ msgstr "" #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "" @@ -4970,7 +4959,7 @@ msgstr "" msgid "Comments and Communications will be associated with this linked document" msgstr "Komentarze i komunikacja będą związane z tym połączonego dokumentu" -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "" @@ -5042,12 +5031,12 @@ msgid "Company Name" msgstr "" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "" @@ -5127,8 +5116,8 @@ msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5142,6 +5131,11 @@ msgstr "" msgid "Condition JSON" msgstr "" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5167,11 +5161,11 @@ msgstr "" msgid "Configuration" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5196,7 +5190,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5215,7 +5209,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "" @@ -5242,7 +5236,7 @@ msgstr "" msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "" @@ -5260,8 +5254,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "" @@ -5312,6 +5306,10 @@ msgstr "" msgid "Contact" msgstr "" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
    {0}" +msgstr "" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5369,15 +5367,13 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5385,24 +5381,12 @@ msgstr "" msgid "Content" msgstr "" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "Treść (HTML)" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "Treść (Markdown)" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "Hash zawartości" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "Typ zawartości" @@ -5470,7 +5454,7 @@ msgstr "" msgid "Copy embed code" msgstr "" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "" @@ -5478,12 +5462,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "" + #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" msgstr "Prawa autorskie" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5491,7 +5479,7 @@ msgstr "" msgid "Core Modules {0} cannot be searched in Global Search." msgstr "" -#: frappe/printing/page/print/print.js:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "" @@ -5499,7 +5487,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "" -#: frappe/model/document.py:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "" @@ -5507,15 +5495,15 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " +msgid "Could not start up:" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "" @@ -5560,13 +5548,14 @@ msgstr "Licznik" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "" @@ -5598,13 +5587,13 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5618,7 +5607,7 @@ msgid "Create Card" msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "" @@ -5652,12 +5641,12 @@ msgstr "Utwórz dziennik" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5665,7 +5654,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "" @@ -5677,7 +5666,7 @@ msgstr "" msgid "Create a Reminder" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "" @@ -5685,11 +5674,11 @@ msgstr "" msgid "Create a new record" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "" @@ -5705,7 +5694,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "" @@ -5715,7 +5704,7 @@ msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "" @@ -5731,7 +5720,7 @@ msgstr "" msgid "Created By" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "" @@ -5743,7 +5732,7 @@ msgstr "" msgid "Created On" msgstr "" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "" @@ -6052,7 +6041,7 @@ msgstr "" #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "" @@ -6080,14 +6069,14 @@ msgstr "" msgid "Customizations for {0} exported to:
    {1}" msgstr "" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6106,7 +6095,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "" @@ -6184,7 +6173,7 @@ msgstr "" msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "" -#: frappe/desk/doctype/event/event.py:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "" @@ -6231,7 +6220,7 @@ msgstr "" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "" @@ -6290,7 +6279,6 @@ msgstr "Pulpity nawigacyjne" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6303,7 +6291,6 @@ msgstr "Pulpity nawigacyjne" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6339,7 +6326,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "" @@ -6370,7 +6357,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6508,11 +6495,11 @@ msgstr "" msgid "Debug Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "" @@ -6674,11 +6661,11 @@ msgstr "" msgid "Default display currency" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 msgid "Default value for {0} must be in the list of options." msgstr "" @@ -6712,6 +6699,12 @@ msgstr "" msgid "Defines actions on states and the next step and allowed roles." msgstr "" +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6729,22 +6722,27 @@ 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/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "" @@ -6753,6 +6751,12 @@ msgstr "" 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 +msgid "Delete Background Exported Reports After (Hours)" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6762,7 +6766,7 @@ msgstr "" msgid "Delete Data" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6776,7 +6780,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6785,7 +6789,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "" @@ -6818,12 +6822,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6859,11 +6863,15 @@ msgstr "" msgid "Deleted Name" msgstr "Nazwa usunięte" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Usunięte!" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "" @@ -6878,7 +6886,7 @@ msgstr "" #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " +msgid "Deletion Steps" msgstr "" #: frappe/core/doctype/page/page.py:110 @@ -6895,7 +6903,7 @@ msgstr "" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "" @@ -6922,7 +6930,7 @@ msgstr "" msgid "Dependencies" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "" @@ -6957,7 +6965,6 @@ msgstr "" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -6978,7 +6985,6 @@ msgstr "" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -6988,11 +6994,6 @@ msgstr "" msgid "Description" msgstr "" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "Opis strony z listą, zwykłym tekstem, tylko kilka wierszy. (maks. 200 znaków)" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -7076,7 +7077,7 @@ msgstr "" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "" @@ -7137,11 +7138,6 @@ msgstr "" msgid "Disable Comment Count" msgstr "" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "Wyłącz komentarze" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7159,11 +7155,6 @@ msgstr "Wyłącz liczbę" msgid "Disable Document Sharing" msgstr "" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "" @@ -7173,6 +7164,11 @@ msgstr "" msgid "Disable SMTP server authentication" msgstr "Wyłącz uwierzytelnianie serwera SMTP" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7218,7 +7214,6 @@ msgstr "" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7233,7 +7228,6 @@ msgstr "" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "" @@ -7244,7 +7238,7 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "" @@ -7262,7 +7256,7 @@ msgstr "Odrzucać" msgid "Discard {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "" @@ -7285,7 +7279,7 @@ msgstr "" msgid "Discussion Topic" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7321,19 +7315,23 @@ msgstr "" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " +msgid "Do Not Create New User" msgstr "" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7424,7 +7422,7 @@ msgstr "" msgid "DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1577 +#: frappe/core/doctype/doctype/doctype.py:1578 msgid "DocType {0} provided for the field {1} must have atleast one Link field" msgstr "" @@ -7471,11 +7469,11 @@ msgstr "" msgid "DocType View" msgstr "Widok DocType" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "" @@ -7484,7 +7482,7 @@ msgstr "" msgid "DocType is a Table / Form in the application." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "" @@ -7517,7 +7515,7 @@ msgstr "" msgid "DocType {} not found" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "" @@ -7531,7 +7529,7 @@ msgstr "" msgid "Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "" @@ -7593,31 +7591,29 @@ msgstr "" msgid "Document Links" msgstr "Linki do dokumentów" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7759,13 +7755,13 @@ msgstr "Tytuł dokumentu" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 msgid "Document Type and Function are required to create a number card" msgstr "" @@ -7802,7 +7798,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "" @@ -7810,15 +7806,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "" @@ -7960,13 +7956,13 @@ msgstr "Pączek" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "" @@ -7993,7 +7989,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "" @@ -8056,7 +8052,7 @@ msgstr "" msgid "Drag to add state" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "" @@ -8089,7 +8085,7 @@ msgstr "" msgid "Duplicate Filter Name" msgstr "" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "" @@ -8188,17 +8184,17 @@ msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8206,7 +8202,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8216,7 +8212,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8245,7 +8241,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8263,7 +8259,7 @@ msgstr "" msgid "Edit Footer" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "" @@ -8348,7 +8344,7 @@ msgstr "" msgid "Edit to add content" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "" @@ -8357,7 +8353,7 @@ msgstr "" msgid "Edit your workflow visually using the Workflow Builder." msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "" @@ -8365,7 +8361,7 @@ msgstr "" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "" @@ -8404,11 +8400,14 @@ msgstr "" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8417,6 +8416,7 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8426,6 +8426,8 @@ msgstr "" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "" @@ -8457,7 +8459,7 @@ msgstr "" msgid "Email Account Name" msgstr "Nazwa konta e-mail" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "" @@ -8545,6 +8547,7 @@ msgid "Email IDs" msgstr "E-mail identyfikatory" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "" @@ -8588,10 +8591,10 @@ msgstr "" msgid "Email Rule" msgstr "" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" -msgstr "Wiadomość wysłana" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" +msgstr "" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType @@ -8656,11 +8659,11 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "" @@ -8699,7 +8702,7 @@ msgstr "Wiadomości e-mail będą wysyłane z następnymi możliwymi działaniam msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8707,7 +8710,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -8726,7 +8729,7 @@ msgstr "Włączyć" msgid "Enable Address Autocompletion" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "" @@ -8752,11 +8755,6 @@ msgstr "Włącz komentarze" msgid "Enable Dynamic Client Registration" msgstr "" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -8850,11 +8848,6 @@ msgstr "Włącz zabezpieczenia" msgid "Enable Social Login" msgstr "Włącz logowanie społecznościowe" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "Włącz udostępnianie społecznościowe" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "" @@ -8862,7 +8855,7 @@ msgstr "" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "" @@ -8874,12 +8867,6 @@ msgstr "" msgid "Enable developer mode to create a standard Web Template" msgstr "" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "" - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -8902,6 +8889,7 @@ msgstr "" #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -8914,6 +8902,7 @@ msgstr "" #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "" @@ -8939,14 +8928,10 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "" - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." msgstr "" #. Description of the 'Queue in Background (BETA)' (Check) field in DocType @@ -8963,11 +8948,11 @@ msgstr "" msgid "Encrypt Backups" msgstr "" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "" @@ -8979,7 +8964,7 @@ msgstr "" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -8995,6 +8980,10 @@ msgstr "Pole Data zakończenia" msgid "End Date cannot be before Start Date!" msgstr "" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9039,7 +9028,7 @@ msgstr "" msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "" @@ -9109,10 +9098,17 @@ msgstr "" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9122,7 +9118,7 @@ msgstr "" msgid "Error" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "" @@ -9142,7 +9138,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 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 "" @@ -9170,9 +9166,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "" @@ -9192,19 +9188,19 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "" @@ -9261,7 +9257,7 @@ msgstr "Typ wydarzenia" msgid "Events" msgstr "" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "" @@ -9345,7 +9341,7 @@ msgstr "" msgid "Execute Console script" msgstr "" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "" @@ -9353,7 +9349,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "" @@ -9379,12 +9375,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9412,7 +9408,9 @@ msgid "Expire Notification On" msgstr "Wygasają zawiadomienie o" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "" @@ -9440,13 +9438,13 @@ msgstr "Czas wygaśnięcia strony z obrazem QR Code" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9483,7 +9481,7 @@ msgstr "Eksportuj z" msgid "Export Import Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "" @@ -9492,11 +9490,11 @@ msgstr "" msgid "Export Type" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "" @@ -9504,6 +9502,10 @@ msgstr "" msgid "Export as zip" msgstr "" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "" @@ -9609,7 +9611,7 @@ msgstr "" msgid "Failed Logins (Last 30 days)" msgstr "" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "" @@ -9626,7 +9628,7 @@ msgstr "" msgid "Failed to complete setup" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "" @@ -9635,15 +9637,15 @@ msgstr "" msgid "Failed to connect to server" msgstr "" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "" @@ -9651,8 +9653,8 @@ msgstr "" msgid "Failed to enable scheduler: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "" @@ -9668,7 +9670,7 @@ msgstr "" msgid "Failed to generate preview of series" msgstr "" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "" @@ -9688,11 +9690,11 @@ msgstr "" msgid "Failed to optimize image: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "" @@ -9742,12 +9744,6 @@ msgstr "Favicon" msgid "Fax" msgstr "Faks" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "" @@ -9805,17 +9801,17 @@ msgstr "" #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "" @@ -9828,7 +9824,7 @@ msgstr "" msgid "Field Description" msgstr "Opis pola" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9858,7 +9854,7 @@ msgstr "" msgid "Field Type" msgstr "" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "" @@ -9884,11 +9880,11 @@ msgstr "" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "" -#: frappe/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "" -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9906,20 +9902,20 @@ 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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "" @@ -9935,15 +9931,15 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "" @@ -9966,7 +9962,7 @@ msgstr "" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -9979,7 +9975,7 @@ msgstr "" msgid "Fields Multicheck" msgstr "Pola Multicheck" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "" @@ -9987,7 +9983,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10015,7 +10011,7 @@ msgstr "Typ pola" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10028,7 +10024,7 @@ msgstr "" msgid "File" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "" @@ -10081,7 +10077,7 @@ msgstr "URL Pliku" msgid "File backup is ready" msgstr "" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "" @@ -10089,7 +10085,7 @@ msgstr "" msgid "File not attached" msgstr "" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "" @@ -10098,11 +10094,11 @@ msgstr "" msgid "File too big" msgstr "" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "" @@ -10116,10 +10112,10 @@ msgstr "" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10156,11 +10152,11 @@ msgstr "" msgid "Filter Values" msgstr "Filtruj wartości" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10178,7 +10174,6 @@ msgstr "" msgid "Filtered Records" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "" @@ -10193,7 +10188,9 @@ msgstr "" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10215,6 +10212,11 @@ msgstr "Konfiguracja filtrów" msgid "Filters Display" msgstr "" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10227,11 +10229,11 @@ msgstr "Filtry JSON" msgid "Filters Section" msgstr "Sekcja filtrów" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "" @@ -10244,18 +10246,18 @@ msgstr "Filtry będą dostępne za pośrednictwem filters .

    msgid "Filters {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1427 +#: frappe/public/js/frappe/views/reports/report_view.js:1429 msgid "Filters:" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 msgid "Find '{0}' in ..." msgstr "" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 msgid "Find {0} in {1}" msgstr "" @@ -10279,8 +10281,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "" @@ -10289,10 +10295,6 @@ msgstr "" msgid "First Success Message" msgstr "Pierwszy komunikat o sukcesie" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:49 -msgid "First Transaction" -msgstr "" - #: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." msgstr "" @@ -10343,11 +10345,11 @@ msgstr "Precyzja zmiennoprzecinkowa" msgid "Fold" msgstr "Zagiąć" -#: frappe/core/doctype/doctype/doctype.py:1450 +#: frappe/core/doctype/doctype/doctype.py:1451 msgid "Fold can not be at the end of the form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1448 +#: frappe/core/doctype/doctype/doctype.py:1449 msgid "Fold must come before a Section Break" msgstr "" @@ -10365,7 +10367,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "" -#: frappe/core/doctype/file/file.py:472 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "" @@ -10472,7 +10474,7 @@ msgstr "" msgid "Footer HTML" msgstr "Stopka HTML" -#: frappe/printing/doctype/letter_head/letter_head.py:75 +#: frappe/printing/doctype/letter_head/letter_head.py:81 msgid "Footer HTML set from attachment {0}" msgstr "" @@ -10509,7 +10511,7 @@ msgstr "Szablon stopki" msgid "Footer Template Values" msgstr "Wartości szablonu stopki" -#: frappe/printing/page/print/print.js:116 +#: frappe/printing/page/print/print.js:129 msgid "Footer might not be visible as {0} option is disabled" msgstr "" @@ -10567,8 +10569,8 @@ msgstr "" msgid "For Value" msgstr "Dla wartości" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10594,12 +10596,6 @@ msgstr "Na przykład: {} Otwórz" msgid "For help see Client Script API and Examples" msgstr "Aby uzyskać pomoc, zobacz interfejs API skryptu klienta i przykłady" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "Aby uzyskać więcej informacji, kliknij tutaj ." - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "" @@ -10614,7 +10610,7 @@ msgstr "" msgid "For updating, you can update only selective columns." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "" @@ -10658,7 +10654,7 @@ msgstr "" #: frappe/www/login.html:37 msgid "Forgot Password?" -msgstr "" +msgstr "Zapomniałeś hasła?" #. Label of the form_builder_tab (Tab Break) field in DocType 'DocType' #. Option for the 'Apply To' (Select) field in DocType 'Client Script' @@ -10669,7 +10665,7 @@ 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:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "" @@ -10729,6 +10725,11 @@ msgstr "" msgid "Format Data" msgstr "Formatuj dane" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "" @@ -10756,7 +10757,15 @@ msgstr "Jednostki ułamku" msgid "Frappe" msgstr "Frappe" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "" @@ -10782,7 +10791,7 @@ msgstr "" #. Type: Route #: frappe/hooks.py msgid "Frappe Support" -msgstr "" +msgstr "Wsparcie od Frappe" #: frappe/website/doctype/web_page/web_page.js:92 msgid "Frappe page builder using components" @@ -10845,7 +10854,7 @@ msgstr "" msgid "From Date Field" msgstr "Od pola daty" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "" @@ -10872,18 +10881,16 @@ msgstr "Pełny" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "" @@ -10909,12 +10916,12 @@ msgstr "" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" +msgid "Further sub-groups can only be created under records marked as 'Group'" msgstr "" #: frappe/core/doctype/communication/communication.js:291 @@ -10974,7 +10981,7 @@ msgstr "" msgid "Generate Keys" msgstr "Generuj klucze" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "" @@ -10982,8 +10989,14 @@ msgstr "" msgid "Generate Random Password" msgstr "" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "" @@ -11006,7 +11019,7 @@ msgstr "Geolokalizacja" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "" @@ -11091,7 +11104,7 @@ msgstr "" #: frappe/public/js/frappe/ui/keyboard.js:122 msgid "Global Shortcuts" -msgstr "" +msgstr "Skróty globalne" #. Label of the global_unsubscribe (Check) field in DocType 'Email Unsubscribe' #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -11142,7 +11155,7 @@ msgid "Go to this URL after completing the form" msgstr "" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "" @@ -11190,10 +11203,6 @@ msgstr "" msgid "Google Calendar" msgstr "" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
    {0}" -msgstr "" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "" @@ -11312,11 +11321,6 @@ msgstr "" msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "" -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "Podgląd fragmentu Google" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11393,14 +11397,10 @@ msgstr "Grupuj według typu" msgid "Group By field is required to create a dashboard chart" msgstr "" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11450,7 +11450,6 @@ msgstr "GG: mm: ss" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11461,9 +11460,8 @@ msgstr "GG: mm: ss" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11567,7 +11565,7 @@ msgstr "" msgid "Header HTML" msgstr "Nagłówek HTML" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "" @@ -11625,6 +11623,12 @@ msgstr "Mapa ciepła" msgid "Hello" msgstr "" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "" + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11690,7 +11694,7 @@ msgstr "" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "" @@ -11726,7 +11730,7 @@ msgstr "" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11759,11 +11763,6 @@ msgstr "Ukryj obramowanie" msgid "Hide Buttons" msgstr "" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "Ukryj wezwanie do działania" - #. 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 @@ -11843,7 +11842,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "Ukryj standardowego menu" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -11857,7 +11856,7 @@ msgstr "" msgid "Hide descendant records of For Value." msgstr "" -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "" @@ -11906,11 +11905,8 @@ 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:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -11998,16 +11994,16 @@ msgstr "" #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -12103,9 +12099,9 @@ msgstr "Jeśli zastosowano ścisłe uprawnienia użytkownika i zaznaczono uprawn 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" -#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "" @@ -12233,6 +12229,10 @@ msgstr "" msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12264,7 +12264,11 @@ msgstr "" msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "" -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "" @@ -12321,12 +12325,12 @@ msgstr "Ignoruj załączników ponad tym rozmiarze" msgid "Ignored Apps" msgstr "Ignorowane aplikacje" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "" @@ -12387,11 +12391,11 @@ msgstr "Widok obrazka" msgid "Image Width" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 msgid "Image field must be a valid fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "" @@ -12413,15 +12417,15 @@ msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "" @@ -12447,7 +12451,7 @@ msgstr "Bezwarunkowy" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12675,15 +12679,16 @@ msgstr "" msgid "Include Web View Link in Email" msgstr "Wyślij łącze do widoku internetowego dokumentu w wiadomości e-mail" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "" @@ -12730,7 +12735,7 @@ msgstr "" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "" @@ -12742,7 +12747,7 @@ msgstr "" msgid "Incorrect URL" msgstr "" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "" @@ -12750,11 +12755,11 @@ msgstr "" msgid "Incorrect Verification code" msgstr "" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "" @@ -12766,7 +12771,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "" @@ -12841,7 +12846,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "" @@ -12857,7 +12862,7 @@ msgstr "" msgid "Insert Below" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "" @@ -12875,8 +12880,12 @@ msgstr "Wstaw nowe rekordy" msgid "Insert Style" msgstr "Wstaw Styl" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "Zainstaluj {0} z Marketplace" @@ -12893,7 +12902,7 @@ msgid "Installed Applications" msgstr "" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "" @@ -12910,19 +12919,19 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" msgstr "" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "" @@ -13026,9 +13035,9 @@ msgid "Invalid" msgstr "" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "" @@ -13036,7 +13045,7 @@ msgstr "" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "" @@ -13052,7 +13061,7 @@ msgstr "" msgid "Invalid Code. Please try again." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "" @@ -13072,16 +13081,20 @@ msgstr "" msgid "Invalid DocType: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13113,7 +13126,7 @@ msgstr "" msgid "Invalid Mail Server. Please rectify and try again." msgstr "" -#: frappe/model/naming.py:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "" @@ -13122,8 +13135,8 @@ msgstr "" msgid "Invalid Operation" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "" @@ -13135,25 +13148,25 @@ msgstr "" msgid "Invalid Output Format" msgstr "" -#: frappe/model/base_document.py:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "" @@ -13162,7 +13175,7 @@ msgstr "" msgid "Invalid Search Field {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "" @@ -13170,8 +13183,8 @@ msgstr "" msgid "Invalid Transition" msgstr "" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13185,47 +13198,51 @@ msgstr "" msgid "Invalid Values" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "" @@ -13237,31 +13254,27 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13269,11 +13282,11 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13281,20 +13294,28 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "" @@ -13302,6 +13323,10 @@ msgstr "" msgid "Invalid naming series {}: dot (.) missing" msgstr "" +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "" @@ -13310,19 +13335,27 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13330,7 +13363,7 @@ msgstr "" msgid "Invalid template file for import" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "" @@ -13339,20 +13372,20 @@ msgstr "" msgid "Invalid username or password" msgstr "" -#: frappe/model/naming.py:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "" @@ -13361,10 +13394,47 @@ msgstr "" msgid "Inverse" msgstr "Odwrotny" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "" @@ -13389,7 +13459,7 @@ msgstr "" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "" @@ -13442,6 +13512,10 @@ msgstr "Czy Folder" msgid "Is Global" msgstr "" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13468,8 +13542,13 @@ msgstr "Jest stanem opcjonalnym" msgid "Is Primary" msgstr "Jest podstawowa" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: 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" @@ -13500,7 +13579,7 @@ msgstr "Jest publiczny" msgid "Is Published Field" msgstr "Pole jest publikowany" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "" @@ -13525,7 +13604,7 @@ msgstr "" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "" @@ -13561,7 +13640,7 @@ msgstr "Standardowy" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "" @@ -13767,11 +13846,11 @@ msgstr "" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13792,12 +13871,14 @@ msgstr "" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -13809,7 +13890,7 @@ msgstr "Klucz" #. Type: Action #: frappe/hooks.py frappe/public/js/frappe/ui/keyboard.js:130 msgid "Keyboard Shortcuts" -msgstr "" +msgstr "Skróty klawiszowe" #. Option for the 'Social Login Provider' (Select) field in DocType 'Social #. Login Key' @@ -14059,7 +14140,7 @@ msgstr "" msgid "Landing Page" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "" @@ -14067,10 +14148,13 @@ msgstr "" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14158,8 +14242,12 @@ msgstr "W zeszłym miesiącu" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "" @@ -14174,6 +14262,11 @@ msgstr "Data ostatniego resetowania hasła" msgid "Last Quarter" msgstr "Ostatni kwartał" +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" + #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json @@ -14190,11 +14283,6 @@ msgstr "" msgid "Last Sync On" msgstr "Ostatnia synchronizacja" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14305,7 +14393,7 @@ msgstr "" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "" @@ -14354,8 +14442,8 @@ msgstr "List" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14383,7 +14471,7 @@ msgstr "Nazwa nagłówka" msgid "Letter Head Scripts" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "" @@ -14400,7 +14488,7 @@ msgstr "Nagłówek w HTMLu" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "" @@ -14450,20 +14538,6 @@ msgstr "" msgid "Like" msgstr "" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "" @@ -14504,6 +14578,7 @@ msgstr "Linia" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14517,6 +14592,7 @@ msgstr "Linia" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "Połączyć" @@ -14647,10 +14723,15 @@ msgstr "Związany" msgid "Linked With" msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +msgstr "" + #. Label of the links (Table) field in DocType 'Address' #. Label of the links (Table) field in DocType 'Contact' #. Label of the links_section (Tab Break) field in DocType 'DocType' #. Label of the links (Table) field in DocType 'Customize Form' +#. Label of the links (Table) field in DocType 'Event' #. Label of the links (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14658,6 +14739,7 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "" @@ -14699,7 +14781,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14740,7 +14822,7 @@ msgstr "" msgid "List setting message" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "" @@ -14749,9 +14831,8 @@ msgstr "" msgid "Load Balancing" msgstr "Równoważenie obciążenia" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14768,10 +14849,10 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "" @@ -14783,7 +14864,7 @@ msgstr "" msgid "Loading import file..." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "" @@ -14793,7 +14874,7 @@ msgstr "" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "" @@ -14854,7 +14935,7 @@ msgstr "" msgid "Log out" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "" @@ -14914,7 +14995,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -14922,7 +15003,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "" @@ -14945,7 +15026,7 @@ msgstr "" #: frappe/www/login.html:64 msgid "Login to {0}" -msgstr "" +msgstr "Logowanie do {0}" #: frappe/templates/includes/login/login.js:319 msgid "Login token required" @@ -14953,7 +15034,7 @@ msgstr "" #: frappe/www/login.html:126 frappe/www/login.html:210 msgid "Login with Email Link" -msgstr "" +msgstr "Logowanie przez link" #: frappe/www/login.html:116 msgid "Login with Frappe Cloud" @@ -14975,7 +15056,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -14994,7 +15075,7 @@ msgstr "" msgid "Logout" msgstr "Wyloguj" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "" @@ -15098,7 +15179,10 @@ msgid "Major" 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 +#. Form' #: 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" @@ -15174,7 +15258,7 @@ msgstr "Obowiązkowe zależy od" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "" @@ -15186,15 +15270,15 @@ msgstr "" msgid "Mandatory field: {0}" msgstr "" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "" @@ -15275,10 +15359,8 @@ msgid "Mark as Unread" msgstr "" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15359,7 +15441,13 @@ msgstr "" msgid "Max auto email report per user" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "" @@ -15368,20 +15456,15 @@ msgstr "" msgid "Maximum" msgstr "Maksymalny" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "" -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "Maksymalna liczba pól" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "" -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "" @@ -15397,7 +15480,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15410,7 +15493,7 @@ msgstr "" msgid "Meeting" msgstr "" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "" @@ -15451,7 +15534,7 @@ msgstr "" msgid "Merge with existing" msgstr "" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "" @@ -15477,7 +15560,7 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15517,7 +15600,7 @@ msgstr "Widomość wysłana" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "" @@ -15549,29 +15632,21 @@ msgstr "" msgid "Meta" msgstr "" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "Meta tagi" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "" @@ -15624,7 +15699,7 @@ msgstr "Metoda" msgid "Method Not Allowed" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "" @@ -15640,6 +15715,11 @@ msgstr "" msgid "Middle Name" msgstr "Drugie imię" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15706,11 +15786,11 @@ msgstr "Panna" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "" @@ -15746,15 +15826,16 @@ msgstr "" msgid "Mobile No" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "" + #. Label of the modal_trigger (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Modal Trigger" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15775,7 +15856,7 @@ msgstr "" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -15951,10 +16032,12 @@ msgstr "" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Więcej informacji" @@ -15973,7 +16056,7 @@ msgstr "Więcej contentu do dolnej strony." msgid "Most Used" msgstr "" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "" @@ -15984,7 +16067,7 @@ msgstr "" msgid "Move" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "" @@ -16020,7 +16103,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "" @@ -16047,7 +16130,7 @@ msgstr "Pani" msgid "Ms" msgstr "Pani" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "" @@ -16070,7 +16153,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "" @@ -16088,7 +16171,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16126,9 +16209,9 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16138,11 +16221,11 @@ msgstr "" msgid "Name (Doc Name)" msgstr "" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "" @@ -16154,7 +16237,7 @@ msgstr "" msgid "Name of the new Print Format" msgstr "" -#: frappe/model/naming.py:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "" @@ -16193,7 +16276,7 @@ msgstr "" msgid "Naming Series" msgstr "" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "" @@ -16230,12 +16313,12 @@ msgstr "Szablon paska nawigacyjnego" msgid "Navbar Template Values" msgstr "Wartości szablonu paska nawigacyjnego" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16250,7 +16333,11 @@ msgstr "" msgid "Navigation Settings" msgstr "" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16258,7 +16345,7 @@ msgstr "" msgid "Negative Value" msgstr "" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16271,6 +16358,12 @@ msgstr "" msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +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 @@ -16279,7 +16372,7 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16300,10 +16393,6 @@ msgstr "" msgid "New Chart" msgstr "" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "" @@ -16312,8 +16401,8 @@ msgstr "" msgid "New Custom Block" msgstr "" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" msgstr "" @@ -16344,7 +16433,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "" @@ -16379,12 +16468,12 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "" @@ -16393,7 +16482,7 @@ msgstr "" msgid "New Quick List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "" @@ -16411,8 +16500,8 @@ msgstr "" msgid "New Users (Last 30 days)" msgstr "" -#: frappe/core/doctype/version/version_view.html:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "" @@ -16469,13 +16558,13 @@ msgstr "Wstawiam nową wartość" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "" @@ -16491,7 +16580,7 @@ msgstr "" msgid "New {0} {1} created" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "" @@ -16499,7 +16588,7 @@ msgstr "" msgid "New {} releases for the following apps are available" msgstr "" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "" @@ -16512,7 +16601,7 @@ msgstr "" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16619,14 +16708,15 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16676,6 +16766,10 @@ msgstr "" msgid "No Email Accounts Assigned" msgstr "" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "" @@ -16711,15 +16805,15 @@ msgstr "" msgid "No Label" msgstr "" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: frappe/public/js/frappe/list/bulk_operations.js:98 #: frappe/public/js/frappe/list/bulk_operations.js:170 #: frappe/utils/weasyprint.py:52 msgid "No Letterhead" msgstr "" -#: frappe/model/naming.py:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "" @@ -16727,7 +16821,7 @@ msgstr "" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "" @@ -16747,11 +16841,11 @@ msgstr "" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "" @@ -16767,11 +16861,11 @@ msgstr "" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16779,7 +16873,7 @@ msgstr "" msgid "No Suggestions" msgstr "" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "" @@ -16791,7 +16885,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "" @@ -16819,23 +16913,19 @@ msgstr "" msgid "No changes to update" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " -msgstr "" +msgid "No comments yet." +msgstr "Brak komentarzy." #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "" @@ -16851,11 +16941,15 @@ msgstr "" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16879,7 +16973,7 @@ msgstr "" msgid "No matching records. Search something new" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "" @@ -16923,7 +17017,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "" @@ -16935,7 +17029,7 @@ msgstr "" msgid "No records deleted" msgstr "" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "" @@ -16951,7 +17045,7 @@ msgstr "" msgid "No rows" msgstr "" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -16971,11 +17065,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -16984,7 +17078,7 @@ msgid "No {0} mail" msgstr "" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -17027,7 +17121,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "" @@ -17048,7 +17142,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -17074,20 +17168,19 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17096,10 +17189,10 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "" @@ -17131,7 +17224,7 @@ msgstr "" msgid "Not a valid User Image." msgstr "" -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "" @@ -17147,11 +17240,11 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "" @@ -17175,27 +17268,27 @@ msgstr "" msgid "Not in Developer Mode" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17230,7 +17323,7 @@ msgstr "Uwaga: Aby uzyskać najlepsze wyniki, obrazy muszą być tego samego roz msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "Uwaga: Wielokrotne sesje będą dozwolone w przypadku urządzeń mobilnych" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17254,10 +17347,9 @@ msgstr "" msgid "Nothing left to undo" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "" @@ -17303,15 +17395,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17362,7 +17454,7 @@ msgstr "Informuj jeśli Tematy bez do (w min)" msgid "Notify users with a popup when they log in" msgstr "Informuj użytkownikom popup podczas logowania" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "" @@ -17420,12 +17512,12 @@ msgstr "Liczba grup" msgid "Number of Queries" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17534,11 +17626,11 @@ msgstr "" msgid "OTP Issuer Name" msgstr "Nazwa Emitenta OTP" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "" @@ -17657,7 +17749,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "" @@ -17697,7 +17789,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "" @@ -17742,7 +17834,7 @@ msgstr "" msgid "Only Allow Edit For" msgstr "Zezwól tylko na edycję dla" -#: frappe/core/doctype/doctype/doctype.py:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "" @@ -17759,7 +17851,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "" @@ -17778,19 +17870,19 @@ msgstr "" msgid "Only one {0} can be set as primary." msgstr "" -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17848,7 +17940,7 @@ msgstr "Otwórz dokumenty" #: frappe/public/js/frappe/ui/keyboard.js:243 msgid "Open Help" -msgstr "" +msgstr "Otwórz Pomoc" #. Label of the open_reference_document (Button) field in DocType 'Notification #. Log' @@ -17860,7 +17952,7 @@ msgstr "Otwórz dokument referencyjny" msgid "Open Settings" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "" @@ -17878,7 +17970,7 @@ msgstr "" msgid "Open a module or tool" msgstr "" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "" @@ -17886,7 +17978,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17901,13 +17993,13 @@ msgstr "" #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "" @@ -17916,6 +18008,10 @@ msgstr "" msgid "OpenID Configuration" msgstr "" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" @@ -17931,7 +18027,7 @@ msgstr "Otwarty" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "" @@ -17957,7 +18053,7 @@ msgstr "" msgid "Option 3" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "" @@ -17977,6 +18073,7 @@ msgstr "Opcjonalnie: powiadomienie zostanie wysłane, jeśli wyrażenie jest pra #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -17985,11 +18082,12 @@ msgstr "Opcjonalnie: powiadomienie zostanie wysłane, jeśli wyrażenie jest pra #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "" @@ -17998,7 +18096,7 @@ msgstr "" msgid "Options Help" msgstr "Opcje Pomocy" -#: frappe/core/doctype/doctype/doctype.py:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "" @@ -18006,7 +18104,7 @@ msgstr "" msgid "Options for select. Each option on a new line." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 msgid "Options for {0} must be set before setting the default value." msgstr "" @@ -18014,7 +18112,7 @@ msgstr "" msgid "Options is required for field {0} of type {1}" msgstr "" -#: frappe/model/base_document.py:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "" @@ -18030,7 +18128,7 @@ msgstr "" msgid "Order" msgstr "Zamówienie" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18046,12 +18144,12 @@ msgstr "Historia Organizacji" msgid "Org History Heading" msgstr "Nagłówek Historii Organizacji" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "" @@ -18119,10 +18217,6 @@ msgstr "Wydajność" msgid "Overview" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" @@ -18130,9 +18224,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:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18173,11 +18267,11 @@ msgstr "" msgid "PDF generation failed because of broken image links" msgstr "" -#: frappe/printing/page/print/print.js:616 +#: frappe/printing/page/print/print.js:656 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:574 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18349,7 +18443,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:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "" @@ -18376,7 +18470,7 @@ msgstr "" msgid "Parent Document Type" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "" @@ -18393,11 +18487,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:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "" @@ -18406,7 +18500,7 @@ msgstr "" msgid "Parent Label" msgstr "Nadrzędna etykieta" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 msgid "Parent Missing" msgstr "" @@ -18480,8 +18574,8 @@ msgstr "Nieaktywny" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18491,7 +18585,7 @@ msgstr "Nieaktywny" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "" @@ -18504,7 +18598,7 @@ msgstr "" msgid "Password Reset Link Generation Limit" msgstr "Limit generowania linków do resetowania hasła" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18521,6 +18615,10 @@ msgstr "Hasło do bazy DN" msgid "Password is required or select Awaiting Password" msgstr "" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "" @@ -18529,7 +18627,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18537,11 +18635,11 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." msgstr "" @@ -18549,7 +18647,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "" @@ -18619,10 +18717,12 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "" @@ -18698,7 +18798,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "" @@ -18758,16 +18858,16 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: frappe/core/page/permission_manager/permission_manager.js:221 #: frappe/core/workspace/users/users.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Permissions" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "" @@ -18829,15 +18929,18 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -18850,13 +18953,13 @@ msgstr "" msgid "Phone No." msgstr "" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "" @@ -18916,11 +19019,11 @@ msgstr "" msgid "Please Set Chart" msgstr "" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "" @@ -18928,7 +19031,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18936,11 +19039,11 @@ msgstr "" msgid "Please attach a file first." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 msgid "Please attach an image file to set HTML for Footer." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "" @@ -18948,19 +19051,15 @@ msgstr "" msgid "Please attach the package" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "" - #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "" -#: frappe/model/base_document.py:951 +#: frappe/model/base_document.py:1008 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "" @@ -18992,11 +19091,11 @@ msgstr "" msgid "Please confirm your action to {0} this document." msgstr "" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "" @@ -19012,20 +19111,20 @@ msgstr "" msgid "Please do not change the template headings." msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "" @@ -19062,7 +19161,7 @@ msgstr "" msgid "Please enter Client Secret before social login is enabled" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "" @@ -19099,11 +19198,12 @@ msgstr "" msgid "Please enter your old password." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "" @@ -19111,11 +19211,11 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "" -#: frappe/model/document.py:988 +#: frappe/model/document.py:992 msgid "Please refresh to get the latest document." msgstr "" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:575 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19131,7 +19231,7 @@ msgstr "" msgid "Please save the document before removing assignment" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "" @@ -19139,7 +19239,7 @@ msgstr "" msgid "Please save to edit the template." msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "" @@ -19147,19 +19247,19 @@ msgstr "" msgid "Please select Entity Type first" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "" @@ -19167,7 +19267,7 @@ msgstr "" msgid "Please select a file or url" msgstr "" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" msgstr "" @@ -19179,7 +19279,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19205,11 +19305,11 @@ msgstr "" msgid "Please set Email Address" msgstr "" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:589 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "" @@ -19217,7 +19317,7 @@ msgstr "" msgid "Please set filters value in Report Filter table." msgstr "" -#: frappe/model/naming.py:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "" @@ -19229,7 +19329,7 @@ msgstr "" msgid "Please set the series to be used." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -19253,23 +19353,23 @@ msgstr "" msgid "Please specify a valid parent DocType for {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "" @@ -19290,7 +19390,7 @@ msgstr "" msgid "Please use following links to download file backup." msgstr "" -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" @@ -19344,7 +19444,7 @@ msgstr "" msgid "Portal Settings" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "" @@ -19372,6 +19472,7 @@ msgstr "Pocztowy" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "" @@ -19380,15 +19481,7 @@ msgstr "" msgid "Posting Timestamp" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19403,7 +19496,11 @@ msgstr "" msgid "Precision" msgstr "Precyzja liczb" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "" @@ -19451,7 +19548,7 @@ msgstr "" msgid "Prepared Report User" msgstr "" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "" @@ -19459,13 +19556,13 @@ msgstr "" msgid "Preparing Report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "" #: frappe/public/js/frappe/ui/keyboard.js:139 msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar" -msgstr "" +msgstr "Naciśnij klawisz Alt, aby uruchomić dodatkowe skróty w menu i pasku bocznym" #: frappe/public/js/frappe/list/list_filter.js:141 msgid "Press Enter to save" @@ -19480,7 +19577,7 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19494,13 +19591,6 @@ msgstr "" msgid "Preview HTML" msgstr "Podgląd HTML" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19529,7 +19619,7 @@ msgid "Preview:" msgstr "" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19541,12 +19631,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "Poprzedni Hash" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "" @@ -19592,19 +19677,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:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19622,8 +19707,8 @@ 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:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19674,7 +19759,7 @@ msgstr "Format Drukuj Pomoc" msgid "Print Format Type" msgstr "Drukuj Typ Formatu" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19713,7 +19798,7 @@ msgstr "Wydrukuj \"Ukryte\" jeżeli nie została podana wartość" msgid "Print Language" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "" @@ -19730,8 +19815,8 @@ msgstr "Serwer druku" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "" @@ -19779,11 +19864,11 @@ msgstr "" msgid "Print with letterhead" msgstr "Broszura z firmowym" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "" @@ -19793,11 +19878,11 @@ msgstr "" msgid "Printer Name" msgstr "Nazwa drukarki" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "" @@ -19855,7 +19940,7 @@ msgstr "Protip: Dodaj Reference: {{ reference_doctype }} {{ reference_name msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "" @@ -19876,18 +19961,28 @@ msgstr "" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Pomyślnie zaktualizowano profil." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: 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:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: 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/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "" @@ -19924,7 +20019,7 @@ msgstr "Typ Właściwości" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -19973,24 +20068,18 @@ msgstr "" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -20000,15 +20089,6 @@ msgstr "" msgid "Published" msgstr "" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "Opublikowany" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json @@ -20098,7 +20178,9 @@ msgid "Put on Hold" msgstr "" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "" @@ -20110,8 +20192,8 @@ msgstr "" msgid "QR Code for Login Verification" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' @@ -20161,7 +20243,7 @@ msgstr "" msgid "Query analysis complete. Check suggested indexes." msgstr "" -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "" @@ -20261,7 +20343,7 @@ msgstr "" msgid "Quick Lists" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20298,12 +20380,6 @@ msgstr "" msgid "Rate Limiting" msgstr "" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20323,7 +20399,7 @@ msgstr "" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "" @@ -20340,7 +20416,7 @@ msgstr "Raw email" msgid "Raw Printing" msgstr "Drukowanie surowe" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "" @@ -20357,8 +20433,8 @@ msgid "Re:" msgstr "" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "" @@ -20414,11 +20490,6 @@ msgstr "" msgid "Read Only Mode" msgstr "" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "Czas czytania" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20434,7 +20505,7 @@ msgstr "Odczytany przez odbiorcę" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "" @@ -20454,11 +20525,11 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20496,7 +20567,7 @@ msgstr "Parametr Odbiorcy" msgid "Recent years are easy to guess." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "" @@ -20507,6 +20578,14 @@ msgstr "" msgid "Recipient" msgstr "Adresat" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20539,7 +20618,7 @@ msgstr "" msgid "Records for following doctypes will be filtered" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "" @@ -20556,6 +20635,11 @@ msgstr "" msgid "Redirect HTTP Status" msgstr "" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20650,6 +20734,11 @@ msgstr "" msgid "Reference Datetime" msgstr "" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20677,7 +20766,6 @@ msgstr "DocName Odniesienia" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20718,9 +20806,9 @@ msgstr "" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20738,9 +20826,9 @@ msgstr "" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20770,7 +20858,6 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -20818,15 +20905,15 @@ msgstr "" msgid "Referrer" msgstr "" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "" @@ -20840,6 +20927,10 @@ msgstr "" msgid "Refresh Google Sheet" msgstr "Odśwież Arkusz Google" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -20851,18 +20942,18 @@ msgstr "Odśwież Arkusz Google" msgid "Refresh Token" msgstr "Odśwież token" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "" @@ -21039,7 +21130,7 @@ msgstr "" msgid "Rename {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "" @@ -21170,9 +21261,9 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "" @@ -21242,11 +21333,11 @@ 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:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "" @@ -21280,21 +21371,21 @@ msgstr "" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 msgid "Report cannot be set for Single types" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 -#: frappe/desk/doctype/number_card/number_card.js:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21306,24 +21397,24 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "" @@ -21331,7 +21422,7 @@ msgstr "" msgid "Report {0} is disabled" msgstr "" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "" @@ -21342,7 +21433,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:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "" @@ -21350,7 +21441,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "" @@ -21369,7 +21460,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "Żądaj danych" @@ -21421,6 +21515,11 @@ msgstr "" msgid "Request URL" msgstr "Żądaj adresu URL" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21472,11 +21571,11 @@ msgstr "" msgid "Reset Dashboard Customizations" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "" @@ -21484,11 +21583,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21523,7 +21622,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21561,6 +21660,7 @@ msgid "Resource TOS URI" msgstr "" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21570,11 +21670,6 @@ msgstr "" msgid "Response" msgstr "Odpowiedź" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "" - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21633,7 +21728,7 @@ msgstr "Ogranicz do domeny" 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)" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "" @@ -21667,7 +21762,7 @@ msgstr "" msgid "Reverse Icon Color" msgstr "Rewers Ikona kolor" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "" @@ -21685,9 +21780,7 @@ msgstr "" msgid "Revoked" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21728,6 +21821,7 @@ msgstr "robots.txt" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21741,6 +21835,7 @@ msgstr "robots.txt" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21779,7 +21874,7 @@ msgstr "" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "" @@ -21789,7 +21884,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21832,6 +21927,7 @@ msgstr "" #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -21841,6 +21937,7 @@ msgstr "" #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -21877,7 +21974,7 @@ msgstr "Role Html" msgid "Roles can be set for users from their User page." msgstr "" -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "" @@ -21897,8 +21994,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -21910,8 +22005,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -21936,24 +22029,24 @@ msgstr "Przekierowania trasy" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "" @@ -21962,11 +22055,6 @@ msgstr "" msgid "Row Format" msgstr "" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "Indeks wierszy" - #. 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" @@ -21981,7 +22069,7 @@ msgstr "Nazwa wiersza" msgid "Row Number" msgstr "" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "" @@ -21989,30 +22077,33 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Added" msgstr "" #. Label of the rows_removed_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22103,7 +22194,7 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "" @@ -22181,7 +22272,7 @@ msgstr "Siły sprzedaży" msgid "Salutation" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "" @@ -22209,20 +22300,20 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22231,16 +22322,12 @@ msgstr "" msgid "Save" msgstr "" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "" @@ -22248,11 +22335,11 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "" @@ -22277,7 +22364,7 @@ msgstr "" msgid "Saved Filters" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22356,7 +22443,7 @@ msgstr "" msgid "Scheduled Jobs Logs" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "" @@ -22379,7 +22466,7 @@ msgstr "" msgid "Scheduler Event" msgstr "Harmonogram wydarzenia" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "" @@ -22392,7 +22479,7 @@ msgstr "" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "" @@ -22524,7 +22611,7 @@ msgstr "" msgid "Search by filename or extension" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "" @@ -22624,7 +22711,7 @@ msgstr "Ustawienia Zabezpieczeń" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "" @@ -22633,7 +22720,7 @@ msgstr "" msgid "See on Website" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "" @@ -22680,7 +22767,7 @@ msgstr "Widziany przez tabeli" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22688,28 +22775,28 @@ msgstr "" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 msgid "Select Column" msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "" @@ -22768,12 +22855,15 @@ msgstr "" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "" @@ -22786,7 +22876,7 @@ msgstr "" msgid "Select Filters" msgstr "" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "" @@ -22819,8 +22909,8 @@ msgstr "" msgid "Select Module" msgstr "" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "" @@ -22885,14 +22975,14 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." +msgid "Select a group {0} first." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 msgid "Select a valid Subject field for creating documents from Email" msgstr "" @@ -22922,13 +23012,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22962,7 +23052,7 @@ msgstr "" msgid "Select {0}" msgstr "" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "" @@ -23146,7 +23236,7 @@ msgstr "" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "" @@ -23240,7 +23330,7 @@ msgstr "" msgid "Series counter for {} updated to {} successfully" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "" @@ -23250,7 +23340,7 @@ msgstr "" msgid "Server Action" msgstr "Działanie serwera" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23269,7 +23359,7 @@ msgstr "IP serwera" msgid "Server Script" msgstr "" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23316,7 +23406,7 @@ msgstr "" msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "" @@ -23325,14 +23415,14 @@ msgstr "" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "" @@ -23358,12 +23448,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\" msgstr "Ustaw opcje domyślne dla wszystkich wykresów w tym panelu (np. „Colors”: [„# d1d8dd”, „# ff5858”])" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23374,7 +23464,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23428,7 +23518,7 @@ msgstr "" msgid "Set Role For" msgstr "Ustaw rola" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23438,16 +23528,16 @@ msgstr "" msgid "Set Value" msgstr "Ustaw wartość" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "" @@ -23466,18 +23556,21 @@ msgstr "" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "" -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "Ustaw niestandardowy dokładność polu Float lub walut" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23569,14 +23662,9 @@ msgstr "" msgid "Settings for the About Us Page" msgstr "" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "" @@ -23592,8 +23680,8 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "" @@ -23662,11 +23750,6 @@ msgstr "" msgid "Shop" msgstr "Sklep" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "Nazwa skrócona" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "" @@ -23686,11 +23769,6 @@ msgstr "" msgid "Show" msgstr "" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23743,7 +23821,13 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23776,7 +23860,7 @@ msgstr "" #: frappe/public/js/frappe/ui/keyboard.js:234 msgid "Show Keyboard Shortcuts" -msgstr "" +msgstr "Pokaż skróty klawiszowe" #. Label of the show_labels (Check) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json @@ -23871,7 +23955,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "" @@ -23888,7 +23972,7 @@ msgstr "Pokaż tytuł" msgid "Show Title in Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "" @@ -23928,10 +24012,6 @@ msgstr "" msgid "Show all activity" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "" - #. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" @@ -23980,8 +24060,8 @@ msgstr "" msgid "Show list" msgstr "" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "" @@ -24010,7 +24090,7 @@ msgstr "Pokaż tytuł w oknie przeglądarki jako "Prefiks - tytuł"" msgid "Show {0} List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "" @@ -24045,7 +24125,7 @@ msgstr "Pasek boczny i Komentarze" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "" @@ -24082,36 +24162,36 @@ msgstr "" msgid "Signups have been disabled for this website." msgstr "" -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "Proste wyrażenie w Pythonie, przykład: status w („Zamknięte”, „Anulowane”)" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" -msgstr "Proste wyrażenie w języku Python, przykład: Status w („Nieprawidłowy”)" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" -msgstr "Simple Python Expression, Przykład: status == 'Open' i wpisz == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" +msgstr "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "Liczba jednoczesnych sesji" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "" #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "" @@ -24119,7 +24199,7 @@ msgstr "" msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "" -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "" @@ -24338,11 +24418,11 @@ msgstr "" msgid "Something went wrong." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 msgid "Sorry! I could not find what you were looking for." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "" @@ -24373,20 +24453,23 @@ msgstr "" msgid "Sort Order" msgstr "Kolejność" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 msgid "Sort field {0} must be a valid fieldname" msgstr "" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' -#: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24413,6 +24496,12 @@ msgstr "" msgid "SparkPost" msgstr "" +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "" @@ -24437,8 +24526,8 @@ msgstr "" msgid "Splash Image" msgstr "" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -24470,11 +24559,11 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "" @@ -24486,7 +24575,7 @@ msgstr "" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "" @@ -24494,11 +24583,11 @@ msgstr "" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "" -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "" @@ -24530,8 +24619,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:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "" @@ -24539,7 +24628,7 @@ msgstr "" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24604,6 +24693,7 @@ msgstr "Zaczyna się" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24612,7 +24702,7 @@ msgstr "Zaczyna się" msgid "State" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "" @@ -24668,6 +24758,7 @@ msgstr "Statystyki Interwał czasowy" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24692,6 +24783,7 @@ msgstr "Statystyki Interwał czasowy" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24699,8 +24791,8 @@ msgstr "Statystyki Interwał czasowy" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24737,7 +24829,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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24767,6 +24859,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +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." @@ -24845,7 +24941,7 @@ msgstr "Subdomena" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -24861,7 +24957,7 @@ msgstr "" msgid "Subject Field" msgstr "Pole tematu" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "" @@ -24875,6 +24971,7 @@ msgstr "" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24883,10 +24980,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24896,7 +24994,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24920,7 +25018,7 @@ msgstr "Prześlij po imporcie" msgid "Submit an Issue" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "" @@ -24932,7 +25030,7 @@ msgstr "" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "" @@ -24944,7 +25042,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24953,11 +25051,11 @@ msgstr "" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "" @@ -24980,9 +25078,7 @@ msgid "Subsidiary" msgstr "Pomocniczy" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "Podtytuł" @@ -24996,7 +25092,7 @@ msgstr "Podtytuł" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25038,20 +25134,16 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "" - #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" msgstr "" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "" @@ -25093,7 +25185,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "" @@ -25215,7 +25307,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25238,7 +25330,7 @@ msgstr "" #. Type: Route #: frappe/hooks.py msgid "System Health" -msgstr "" +msgstr "Stan systemu" #. Name of a DocType #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -25338,6 +25430,7 @@ msgstr "" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25420,6 +25513,7 @@ msgstr "" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" msgstr "" @@ -25493,7 +25587,7 @@ msgstr "" msgid "Table Break" msgstr "Przerwa na stół" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "" @@ -25502,7 +25596,7 @@ msgstr "" msgid "Table Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "" @@ -25524,11 +25618,11 @@ msgstr "Tabela MultiSelect" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 msgid "Table {0} cannot be empty" msgstr "" @@ -25570,11 +25664,18 @@ msgstr "" msgid "Target" msgstr "" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25636,7 +25737,7 @@ msgstr "Ostrzeżenia szablonu" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "" @@ -25708,7 +25809,7 @@ msgid "Thank you for reaching out to us. We will get back to you at the earliest "{0}" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "" @@ -25732,7 +25833,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "" @@ -25743,15 +25844,15 @@ msgid "The Client ID obtained from the Google Cloud Console under " msgstr "" -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." msgstr "" @@ -25792,7 +25893,7 @@ msgstr "" msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "" -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "" @@ -25800,7 +25901,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:658 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25830,7 +25931,7 @@ msgstr "" msgid "The field {0} is mandatory" msgstr "" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "" @@ -25900,15 +26001,19 @@ msgid "The project number obtained from Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

    Click here to download:
    {0}

    This link will expire in {1} hours." +msgstr "" + +#: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:995 +#: frappe/core/doctype/user/user.py:1002 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25920,7 +26025,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:338 +#: frappe/utils/response.py:336 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25941,7 +26046,7 @@ msgstr "" msgid "The webhook will be triggered if this expression is true" msgstr "Zaczep zostanie uruchomiony, jeśli to wyrażenie jest prawdziwe" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "" @@ -25981,16 +26086,16 @@ 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:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "" @@ -26002,15 +26107,19 @@ msgstr "" msgid "There is no data to be exported" msgstr "" +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26022,7 +26131,7 @@ msgstr "" msgid "There was an error building this page" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "" @@ -26034,11 +26143,11 @@ msgstr "" msgid "There were errors while creating the document. Please try again." msgstr "" -#: frappe/public/js/frappe/views/communication.js:840 +#: frappe/public/js/frappe/views/communication.js:843 msgid "There were errors while sending email. Please try again." msgstr "" -#: frappe/model/naming.py:494 +#: frappe/model/naming.py:502 msgid "There were some errors setting the name, please contact the administrator" msgstr "" @@ -26079,7 +26188,7 @@ msgstr "Uwierzytelnianie przy pomocy trzeciej strony" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "" @@ -26087,6 +26196,10 @@ msgstr "" msgid "This Month" msgstr "" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "" @@ -26112,6 +26225,11 @@ msgstr "" msgid "This cannot be undone" msgstr "" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +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" @@ -26126,11 +26244,11 @@ msgstr "Ten wykres będzie dostępny dla wszystkich użytkowników, jeśli jest msgid "This doctype has no orphan fields to trim" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26172,7 +26290,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26188,7 +26306,7 @@ msgstr "" msgid "This form has been modified after you have loaded it" msgstr "" -#: frappe/public/js/frappe/form/form.js:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "" @@ -26207,7 +26325,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "Występuje ponad slideshow" -#: frappe/public/js/frappe/views/reports/query_report.js:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26231,12 +26349,6 @@ msgstr "" msgid "This is an automatically generated reply" msgstr "" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "To jest przykład podglądu Google SERP." - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "" @@ -26255,7 +26367,7 @@ msgstr "" msgid "This link is invalid or expired. Please make sure you have pasted correctly." msgstr "" -#: frappe/printing/page/print/print.js:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "" @@ -26263,7 +26375,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26271,7 +26383,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "" @@ -26302,7 +26414,7 @@ msgstr "" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " +msgid "This value specifies the max number of rows that can be rendered in report view." msgstr "" #: frappe/website/doctype/web_page/web_page.js:85 @@ -26334,10 +26446,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " +msgid "This will terminate the job immediately and might be dangerous, are you sure?" msgstr "" -#: frappe/core/doctype/user/user.py:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "" @@ -26413,9 +26525,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26486,11 +26600,11 @@ msgstr "Linki na osi czasu" msgid "Timeline Name" msgstr "Timeline Nazwa" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 msgid "Timeline field must be a Link or Dynamic Link" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "" @@ -26516,10 +26630,7 @@ msgid "Timespan" msgstr "" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "" @@ -26539,9 +26650,6 @@ msgstr "" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26566,9 +26674,6 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26591,7 +26696,7 @@ msgstr "Pole tytułu" msgid "Title Prefix" msgstr "Prefiks tytułu" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "" @@ -26685,7 +26790,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "" @@ -26740,7 +26845,7 @@ msgstr "" msgid "Today" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "" @@ -26756,11 +26861,11 @@ msgstr "" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26806,7 +26911,7 @@ msgid "Tomorrow" msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "" @@ -26822,7 +26927,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26884,10 +26989,10 @@ msgstr "" msgid "Topic" msgstr "Temat" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -26930,18 +27035,18 @@ msgstr "" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " +msgid "Total number of emails to sync in initial sync process" msgstr "" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "" @@ -27007,26 +27112,10 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "Hash transakcji" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "" @@ -27040,6 +27129,11 @@ msgstr "" msgid "Transition Rules" msgstr "Zasady transakcji" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" @@ -27054,7 +27148,7 @@ msgstr "Przejścia" msgid "Translatable" msgstr "Przetłumaczalny" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27065,7 +27159,7 @@ msgstr "" msgid "Translate Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "" @@ -27149,8 +27243,8 @@ msgstr "" msgid "Try a Naming Series" msgstr "" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "" @@ -27216,7 +27310,7 @@ msgstr "Metoda uwierzytelniania dwóch czynników" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27309,7 +27403,7 @@ msgstr "" msgid "URL for documentation or help" msgstr "Adres URL dokumentacji lub pomocy" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "" @@ -27412,7 +27506,7 @@ msgstr "" msgid "Unable to update event" msgstr "" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "" @@ -27421,7 +27515,7 @@ msgstr "" msgid "Unassign Condition" msgstr "Stan niepodpisania" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27437,7 +27531,7 @@ msgstr "" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27484,7 +27578,7 @@ msgstr "" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "" @@ -27496,8 +27590,7 @@ msgstr "" msgid "Unlock Reference Document" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "" @@ -27513,7 +27606,7 @@ msgstr "Niewykształcony" msgid "Unread Notification Sent" msgstr "Nieprzeczytane Powiadomienie Wysłano" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "" @@ -27551,8 +27644,8 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27572,7 +27665,7 @@ msgstr "" msgid "Unzipping files..." msgstr "" -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "" @@ -27586,7 +27679,7 @@ msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "" @@ -27620,6 +27713,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27662,7 +27760,7 @@ msgstr "" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "" @@ -27670,7 +27768,7 @@ msgstr "" msgid "Updated Successfully" msgstr "" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "" @@ -27678,7 +27776,7 @@ msgstr "" msgid "Updated successfully" msgstr "" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "" @@ -27723,8 +27821,8 @@ msgstr "" msgid "Upgrade your support experience with Frappe Helpdesk" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27734,11 +27832,11 @@ msgstr "" msgid "Upload Image" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "" @@ -27835,15 +27933,11 @@ msgstr "" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "" -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "" @@ -27864,7 +27958,9 @@ msgid "Used OAuth" msgstr "" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -27873,6 +27969,7 @@ msgstr "" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -27887,11 +27984,12 @@ msgstr "" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -27900,6 +27998,7 @@ msgstr "" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -27916,17 +28015,11 @@ msgstr "" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "" - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "" @@ -27956,7 +28049,7 @@ msgstr "Użytkownik nie może stworzyć" msgid "User Cannot Search" msgstr "Użytkownik nie może szukać" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "" @@ -28020,11 +28113,6 @@ msgstr "ID Użytkownika" msgid "User ID Property" msgstr "Właściwość identyfikatora użytkownika" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28044,6 +28132,11 @@ msgstr "" msgid "User Image" msgstr "Zdjęcie Użytkownika" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "" @@ -28062,12 +28155,12 @@ msgstr "" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28080,7 +28173,9 @@ msgstr "" msgid "User Permissions created successfully" msgstr "" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "" @@ -28146,6 +28241,10 @@ msgstr "" msgid "User does not have permission to create the new {0}" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "" @@ -28176,7 +28275,7 @@ msgstr "" msgid "User {0} cannot be disabled" msgstr "" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "" @@ -28197,7 +28296,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "" @@ -28205,7 +28304,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28226,7 +28325,7 @@ msgstr "" msgid "Username" msgstr "" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "" @@ -28310,7 +28409,7 @@ msgstr "" msgid "Validate SSL Certificate" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "" @@ -28333,8 +28432,8 @@ msgstr "Ważność" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28366,7 +28465,7 @@ msgstr "Wartość Zmieniona" msgid "Value To Be Set" msgstr "Wartość, którą należy ustawić" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "" @@ -28382,11 +28481,11 @@ msgstr "" msgid "Value for a check field can be either 0 or 1" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" -#: frappe/model/base_document.py:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "" @@ -28411,7 +28510,7 @@ msgstr "" msgid "Value to Validate" msgstr "Wartość do zweryfikowania" -#: frappe/model/base_document.py:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "" @@ -28428,7 +28527,7 @@ msgstr "" msgid "Value {0} must in {1} format" msgstr "" -#: frappe/core/doctype/version/version_view.html:8 +#: frappe/core/doctype/version/version_view.html:9 msgid "Values Changed" msgstr "" @@ -28441,7 +28540,7 @@ msgstr "" msgid "Verification" msgstr "" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "" @@ -28473,7 +28572,7 @@ msgstr "" #: frappe/templates/includes/login/login.js:171 msgid "Verifying..." -msgstr "" +msgstr "Weryfikowanie..." #. Name of a DocType #: frappe/core/doctype/version/version.json @@ -28503,15 +28602,7 @@ msgstr "" msgid "View Audit Trail" msgstr "" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" @@ -28523,7 +28614,7 @@ msgstr "" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "" @@ -28533,7 +28624,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28580,7 +28671,7 @@ msgstr "" msgid "View this in your browser" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "" @@ -28649,6 +28740,7 @@ msgid "Warehouse" msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "" @@ -28657,7 +28749,7 @@ msgstr "" msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "" @@ -28743,7 +28835,7 @@ msgstr "" msgid "Web Page Block" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "" @@ -28846,7 +28938,7 @@ msgstr "Adres URL webhooka" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "" @@ -28859,10 +28951,6 @@ msgstr "" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -28906,7 +28994,7 @@ msgstr "" msgid "Website Search Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "" @@ -29123,11 +29211,6 @@ msgstr "Filtr symboli wieloznacznych" msgid "Will add \"%\" before and after the query" msgstr "" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "Zostanie użyty w URL'u (zazwyczaj imię)" - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "" @@ -29142,7 +29225,7 @@ msgstr "" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "" @@ -29220,7 +29303,7 @@ msgstr "" msgid "Workflow Data" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "" @@ -29246,11 +29329,11 @@ msgstr "" msgid "Workflow State Field" msgstr "Pole Stanu Przepływu Pracy" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "" @@ -29258,15 +29341,30 @@ msgstr "" msgid "Workflow States Don't Exist" msgstr "" -#: frappe/model/workflow.py:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29282,13 +29380,13 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29358,11 +29456,11 @@ msgstr "" msgid "Workspaces" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "" @@ -29381,11 +29479,11 @@ msgstr "" msgid "Write" msgstr "Zapisz" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "" @@ -29404,13 +29502,13 @@ msgstr "" msgid "Y Axis" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" msgstr "" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "" @@ -29462,16 +29560,17 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29499,6 +29598,18 @@ msgstr "" msgid "You Liked" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "" @@ -29537,20 +29648,20 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29574,7 +29685,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:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29600,13 +29711,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " +msgid "You can also copy-paste this" msgstr "" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "" +#: frappe/templates/emails/user_invitation_expired.html:8 +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 "" @@ -29619,11 +29734,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29643,7 +29758,7 @@ msgstr "" msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "" -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "" @@ -29661,7 +29776,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "" @@ -29673,11 +29788,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29695,7 +29810,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:385 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29725,7 +29840,7 @@ msgstr "" msgid "You created this" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "" @@ -29738,15 +29853,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29758,11 +29873,11 @@ msgstr "" msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "" @@ -29770,19 +29885,19 @@ msgstr "" msgid "You don't have permission to get a report on: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " +msgid "You have a new message from:" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29790,11 +29905,7 @@ msgstr "" msgid "You have not entered a value. The field will be set to empty." msgstr "" -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "" @@ -29814,7 +29925,7 @@ msgstr "" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29831,11 +29942,11 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "" @@ -29859,7 +29970,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "" @@ -29867,12 +29978,12 @@ msgstr "" msgid "You need to be logged in to access this page" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "" #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " +msgid "You need to create these first:" msgstr "" #: frappe/www/login.html:76 @@ -29907,11 +30018,19 @@ msgstr "" msgid "You need {0} permission to fetch values from {1} {2}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "" @@ -29942,10 +30061,26 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "Youtube" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "" @@ -29975,7 +30110,7 @@ msgstr "" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "" @@ -29999,10 +30134,22 @@ msgstr "" msgid "Your email address" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "" @@ -30025,7 +30172,11 @@ msgstr "Twoje imię i nazwisko i adres organizacji w stopce e-mail." msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "" -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "" @@ -30047,7 +30198,7 @@ msgstr "" msgid "Zero means send records updated at anytime" msgstr "Zero oznacza wysyłanie rekordów w każdej chwili" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" msgstr "" @@ -30069,10 +30220,6 @@ msgstr "" msgid "`job_id` paramater is required for deduplication." msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30107,7 +30254,7 @@ msgstr "" msgid "cProfile Output" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "" @@ -30252,12 +30399,12 @@ msgstr "" msgid "email" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "" @@ -30314,7 +30461,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "" @@ -30329,11 +30476,6 @@ msgstr "ikona" msgid "import" msgstr "" -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "w minutach" - #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "" @@ -30342,7 +30484,7 @@ msgstr "" msgid "just now" msgstr "" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "" @@ -30371,7 +30513,7 @@ msgstr "lista" msgid "logged in" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30392,11 +30534,6 @@ msgstr "" msgid "merged {0} into {1}" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "" - #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json @@ -30420,7 +30557,7 @@ msgstr "moduł" msgid "module name..." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "" @@ -30549,10 +30686,6 @@ msgstr "" msgid "red" msgstr "czerwony" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "" @@ -30608,19 +30741,19 @@ msgstr "udział" msgid "short" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "" @@ -30673,6 +30806,10 @@ msgstr "" msgid "this shouldn't break" msgstr "" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "do twojej przeglądarki" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30700,7 +30837,7 @@ msgstr "" msgid "via Assignment Rule" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "" @@ -30714,7 +30851,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "" @@ -30747,10 +30884,15 @@ msgstr "" msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "" +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json @@ -30778,11 +30920,11 @@ msgstr "rrrr-mm-dd" msgid "{0}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "" @@ -30808,19 +30950,19 @@ msgstr "" msgid "{0} Calendar" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "" @@ -30844,6 +30986,10 @@ msgstr "" msgid "{0} List" msgstr "" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "" @@ -30856,7 +31002,7 @@ msgstr "" msgid "{0} Name" msgstr "" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "" @@ -30866,11 +31012,10 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "" @@ -30895,7 +31040,15 @@ msgstr "" msgid "{0} added" msgstr "" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "" @@ -30907,7 +31060,7 @@ msgstr "" msgid "{0} already unsubscribed for {1} {2}" msgstr "" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "" @@ -30915,7 +31068,7 @@ msgstr "" msgid "{0} are currently {1}" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "" @@ -30932,7 +31085,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -30974,11 +31127,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." msgstr "" @@ -30991,7 +31140,7 @@ msgstr "" msgid "{0} created this" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "" @@ -31013,7 +31162,7 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31045,7 +31194,7 @@ msgstr "" msgid "{0} hours ago" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "" @@ -31054,23 +31203,23 @@ msgstr "" msgid "{0} in row {1} cannot have both URL and child items" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "" @@ -31079,27 +31228,27 @@ msgstr "" msgid "{0} is currently {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "" @@ -31107,7 +31256,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31127,12 +31276,12 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "" @@ -31140,15 +31289,15 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "" @@ -31164,55 +31313,59 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 -#: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: 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/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31245,35 +31398,35 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "" @@ -31281,7 +31434,7 @@ msgstr "" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "" @@ -31294,11 +31447,11 @@ msgid "{0} not found" msgstr "" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31307,7 +31460,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "" @@ -31331,6 +31484,10 @@ msgstr "" msgid "{0} records will be exported" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31340,15 +31497,29 @@ msgstr "" msgid "{0} removed their assignment." msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "" @@ -31368,11 +31539,11 @@ msgstr "" msgid "{0} shared this document with {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "" @@ -31385,8 +31556,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "" @@ -31396,7 +31567,7 @@ msgstr "" #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "" @@ -31404,7 +31575,7 @@ msgstr "" msgid "{0} un-shared this document with {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "" @@ -31440,15 +31611,15 @@ msgstr "" msgid "{0} {1} added to Dashboard {2}" msgstr "" -#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "" @@ -31464,11 +31635,11 @@ msgstr "" msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" -#: frappe/model/base_document.py:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "" @@ -31476,79 +31647,79 @@ msgstr "" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "" -#: frappe/model/base_document.py:1120 +#: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 msgid "{0}: Cannot set import as {1} is not importable" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 +#: 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:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "" @@ -31556,7 +31727,7 @@ msgstr "" msgid "{0}: Other permission rules may also apply" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "" @@ -31564,7 +31735,7 @@ msgstr "" msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "" @@ -31577,11 +31748,11 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "" @@ -31605,7 +31776,7 @@ msgstr "" msgid "{count} rows selected" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "" @@ -31613,11 +31784,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
    {}" msgstr "" @@ -31643,7 +31814,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/pt.po b/frappe/locale/pt.po index da2f7913fc..48a3c3b2e4 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-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-21 21:50\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Portuguese\n" "MIME-Version: 1.0\n" @@ -18,10 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: pt_PT\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr "" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json @@ -32,17 +28,17 @@ msgstr "!=" #. Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "\"Company History\"" -msgstr "" +msgstr "\"História da Empresa\"" #: frappe/core/doctype/data_export/exporter.py:202 msgid "\"Parent\" signifies the parent table in which this row must be added" -msgstr "" +msgstr "\"Principal\" diz respeito à tabela principal na qual deve ser acrescentada esta linha" #. Description of the 'Team Members Heading' (Data) field in DocType 'About Us #. Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json msgid "\"Team Members\" or \"Management\"" -msgstr "" +msgstr "\"Membros da Equipa\" ou \"Administração\"" #: frappe/public/js/frappe/form/form.js:1090 msgid "\"amended_from\" field must be present to do an amendment." @@ -61,7 +57,7 @@ msgstr "#{0}" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" msgstr "" @@ -74,7 +70,7 @@ msgstr "" msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "" @@ -82,34 +78,38 @@ msgstr "" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" -msgstr "" +msgstr "'Destinatários' não especificados" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "'{0}' não é um IBAN válido" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" -msgstr "" +msgstr "'{0}' não é um URL válido" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" -msgstr "" +msgstr "'{0}' não permitido para o tipo {1} na linha {2}" #: frappe/public/js/frappe/data_import/data_exporter.js:302 msgid "(Mandatory)" msgstr "(Obrigatório)" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" -msgstr "" +msgstr "+ Adicionar / Remover Campos" #. Description of the 'Doc Status' (Select) field in DocType 'Workflow Document #. State' @@ -122,7 +122,7 @@ msgstr "" msgid "0 is highest" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "" @@ -134,126 +134,151 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:19 msgid "1 Day" -msgstr "" +msgstr "1 Dia" #: frappe/integrations/doctype/google_calendar/google_calendar.py:374 msgid "1 Google Calendar Event synced." -msgstr "" +msgstr "1 evento do Google Calendar sincronizado." -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" -msgstr "" +msgstr "1 Relatório" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" -msgstr "" +msgstr "há 1 dia" #: frappe/public/js/frappe/form/reminders.js:17 msgid "1 hour" -msgstr "" +msgstr "1 hora" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" -msgstr "" +msgstr "há 1 hora atrás" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" -msgstr "" +msgstr "há 1 minuto atrás" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" -msgstr "" +msgstr "1 mês atrás" #: frappe/public/js/print_format_builder/PrintFormat.vue:3 msgid "1 of 2" -msgstr "" +msgstr "1 de 2" #: frappe/public/js/frappe/data_import/data_exporter.js:227 msgid "1 record will be exported" +msgstr "será exportado 1 registo" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" msgstr "" -#: frappe/tests/test_utils.py:711 -msgid "1 second ago" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" msgstr "" +#: frappe/tests/test_utils.py:840 +msgid "1 second ago" +msgstr "há 1 segundo" + #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" -msgstr "" +msgstr "há 1 semana" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" -msgstr "" +msgstr "1 ano atrás" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" -msgstr "" +msgstr "há 2 horas" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" -msgstr "" +msgstr "há 2 meses" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" -msgstr "" +msgstr "há 2 semanas" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" -msgstr "" +msgstr "há 2 anos" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" -msgstr "" +msgstr "há 3 minutos" #: frappe/public/js/frappe/form/reminders.js:16 msgid "30 minutes" -msgstr "" +msgstr "30 minutos" #: frappe/public/js/frappe/form/reminders.js:18 msgid "4 hours" -msgstr "" +msgstr "4 horas" #: frappe/public/js/frappe/data_import/data_exporter.js:37 msgid "5 Records" -msgstr "" +msgstr "5 registos" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" -msgstr "" +msgstr "há 5 dias" #: frappe/desk/doctype/bulk_update/bulk_update.py:36 msgid "; not allowed in condition" -msgstr "" +msgstr "; não é permitido na condição" #. 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 "<=" + +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "\n" +" Clique aqui para saber mais sobre a autenticação baseada em token\n" +"" #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" -msgstr "" +msgstr "{0} não é um URL válido" #. Content of the 'Help' (HTML) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "
    Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
    " msgstr "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

    Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

    " +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

    Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

    " +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -479,7 +504,7 @@ msgid "

    To interact with above HTML you will have to use `root_element` as a p "" msgstr "" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

    " msgstr "" @@ -532,21 +557,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:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" @@ -555,15 +580,16 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." msgstr "" #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "" @@ -576,7 +602,7 @@ msgstr "" msgid "A new account has been created for you at {0}" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "" @@ -658,12 +684,12 @@ msgstr "" #. Option for the 'Script Type' (Select) field in DocType 'Server Script' #: frappe/core/doctype/server_script/server_script.json msgid "API" -msgstr "" +msgstr "API" #. Label of the api_access (Section Break) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "API Access" -msgstr "" +msgstr "Acesso à API" #. Label of the api_endpoint (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json @@ -675,13 +701,17 @@ msgstr "" msgid "API Endpoint Args" msgstr "" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -700,6 +730,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -720,7 +754,7 @@ msgstr "" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -767,6 +801,20 @@ msgstr "" msgid "About {0} seconds remaining" msgstr "" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "Aceitar Convite" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "Aceitado a" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -792,7 +840,7 @@ msgstr "" msgid "Access Token URL" msgstr "" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "" @@ -856,7 +904,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "" @@ -908,7 +956,7 @@ msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Ações" @@ -965,7 +1013,7 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -974,9 +1022,9 @@ msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:294 #: frappe/public/js/frappe/widgets/widget_dialog.js:30 msgid "Add" -msgstr "" +msgstr "Adicionar" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -988,7 +1036,7 @@ msgstr "" msgid "Add A New Rule" msgstr "" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "" @@ -1008,7 +1056,7 @@ msgstr "" msgid "Add Border at Top" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "" @@ -1021,10 +1069,10 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "Adicionar Coluna" @@ -1083,7 +1131,7 @@ msgstr "" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "" @@ -1116,12 +1164,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "" @@ -1210,7 +1258,7 @@ msgstr "" msgid "Add page break" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "" @@ -1248,7 +1296,7 @@ msgstr "" msgid "Add {0}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" msgstr "" @@ -1291,6 +1339,7 @@ msgstr "" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1299,6 +1348,7 @@ msgstr "Endereço" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "" @@ -1306,6 +1356,7 @@ msgstr "" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "" @@ -1356,7 +1407,7 @@ msgstr "" msgid "Adds a custom field to a DocType" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "" @@ -1370,7 +1421,6 @@ msgstr "" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1383,11 +1433,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1408,8 +1458,8 @@ msgstr "" msgid "Advanced Control" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" msgstr "" @@ -1468,7 +1518,7 @@ msgstr "" msgid "After Submit" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "" @@ -1495,11 +1545,11 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1564,7 +1614,7 @@ msgstr "" msgid "All Records" msgstr "" -#: frappe/public/js/frappe/form/form.js:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "" @@ -1624,7 +1674,7 @@ msgstr "" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " +msgid "Allow Consecutive Login Attempts" msgstr "" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 @@ -1645,11 +1695,6 @@ msgstr "" msgid "Allow Guest to View" msgstr "" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1698,7 +1743,7 @@ msgid "Allow Print for Cancelled" msgstr "" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "" @@ -1930,7 +1975,7 @@ msgstr "" msgid "Allows skipping authorization if a user has active tokens." msgstr "" -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "" @@ -1938,11 +1983,11 @@ msgstr "" msgid "Already in the following Users ToDo list:{0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "" @@ -1951,6 +1996,12 @@ msgstr "" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2002,10 +2053,8 @@ msgstr "" msgid "Amended Documents" msgstr "" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "" @@ -2029,6 +2078,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2122,10 +2176,12 @@ msgid "App Logo" msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2196,6 +2252,10 @@ msgstr "" msgid "Application Version" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2205,7 +2265,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2253,7 +2313,7 @@ msgstr "" msgid "Apply to all Documents Types" msgstr "" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "" @@ -2286,7 +2346,11 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2314,11 +2378,15 @@ msgctxt "Confirmation dialog message" msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:191 msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2326,7 +2394,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2381,6 +2449,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2390,7 +2464,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2415,7 +2489,7 @@ msgstr "" #: frappe/public/js/frappe/form/sidebar/assign_to.js:174 msgid "Assign to me" -msgstr "" +msgstr "Atribuir a mim" #: frappe/automation/doctype/assignment_rule/assignment_rule.js:53 msgid "Assign to the one who has the least assignments" @@ -2453,6 +2527,11 @@ msgstr "" msgid "Assigned To/Owner" msgstr "" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "" @@ -2460,7 +2539,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json msgid "Assignment" -msgstr "" +msgstr "Atribuição" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json @@ -2522,7 +2601,13 @@ msgstr "" msgid "Assignments" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -2602,7 +2687,7 @@ msgstr "" msgid "Attached To Name" msgstr "" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "" @@ -2618,7 +2703,7 @@ msgstr "" msgid "Attachment Limit (MB)" msgstr "" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "" @@ -2636,15 +2721,15 @@ 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:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "Anexos" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "" @@ -2667,6 +2752,10 @@ msgstr "" msgid "Auth URL Data" msgstr "" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "" + #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authenticate as Service Principal" @@ -2684,7 +2773,7 @@ msgid "Authentication" msgstr "" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " +msgid "Authentication Apps you can use are:" msgstr "" #: frappe/email/doctype/email_account/email_account.py:339 @@ -2798,11 +2887,11 @@ msgstr "" msgid "Auto Repeat Day" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "" @@ -2810,11 +2899,16 @@ msgstr "" msgid "Auto Repeat Schedule" msgstr "" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "" @@ -2858,7 +2952,7 @@ msgstr "" msgid "Auto follow documents that you create" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "" @@ -2906,7 +3000,7 @@ msgstr "" msgid "Automatically Assign Documents to Users" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "" @@ -2920,11 +3014,6 @@ msgstr "" msgid "Automation" msgstr "" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3196,8 +3285,8 @@ msgstr "" #. Label of the based_on (Link) field in DocType 'Language' #: frappe/core/doctype/language/language.json -#: frappe/printing/page/print/print.js:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "" @@ -3314,10 +3403,8 @@ msgstr "" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "" @@ -3347,64 +3434,6 @@ msgstr "" msgid "Blocked" msgstr "" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3501,13 +3530,6 @@ msgstr "" msgid "Breadcrumbs" msgstr "" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3565,15 +3587,15 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" msgstr "" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "" @@ -3588,7 +3610,7 @@ msgstr "" msgid "Bulk Update" msgstr "" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "" @@ -3600,7 +3622,7 @@ msgstr "" msgid "Bulk operations only support up to 500 documents." msgstr "" -#: frappe/model/workflow.py:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "" @@ -3730,16 +3752,6 @@ msgstr "" msgid "CSV" msgstr "" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3790,11 +3802,6 @@ msgstr "" msgid "Call To Action URL" msgstr "" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -3812,7 +3819,7 @@ msgid "Camera" msgstr "Câmera" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3848,7 +3855,7 @@ msgstr "" msgid "Can not rename as column {0} is already present on DocType." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "" @@ -3872,14 +3879,15 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "Cancelar" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Cancelar" @@ -3897,16 +3905,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -3944,11 +3954,11 @@ msgstr "" msgid "Cannot Remove" msgstr "" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3956,7 +3966,7 @@ msgstr "" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "" @@ -3964,11 +3974,11 @@ msgstr "" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1013 +#: frappe/model/document.py:1017 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -3976,11 +3986,11 @@ msgstr "" msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "" @@ -3992,11 +4002,11 @@ msgstr "" msgid "Cannot create private workspace of other users" msgstr "" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4031,7 +4041,7 @@ msgstr "" msgid "Cannot delete {0}" msgstr "" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" msgstr "" @@ -4039,7 +4049,7 @@ msgstr "" msgid "Cannot edit Standard Dashboards" msgstr "" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "" @@ -4051,7 +4061,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" -#: frappe/model/document.py:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "" @@ -4059,8 +4069,8 @@ msgstr "" msgid "Cannot edit filters for standard charts" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "" @@ -4068,27 +4078,27 @@ msgstr "" msgid "Cannot edit standard fields" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:884 msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1132 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "" @@ -4100,11 +4110,11 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "" @@ -4112,7 +4122,7 @@ msgstr "" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "" @@ -4129,11 +4139,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4201,15 +4211,6 @@ msgstr "" msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4247,8 +4248,9 @@ msgstr "" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
    \n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " -msgstr "" +"Warning: Incorrectly updating counters can prevent documents from getting created." +msgstr "Altere o número de sequência inicial/atual de uma série existente.
    \n\n" +"Aviso: Atualizar incorretamente os contadores pode impedir a criação de documentos." #. Label of the changed_at (Datetime) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -4317,7 +4319,7 @@ msgstr "" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "" @@ -4350,7 +4352,7 @@ msgstr "" msgid "Check" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "" @@ -4358,7 +4360,7 @@ msgstr "" msgid "Check columns to select, drag to set order." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "" @@ -4399,11 +4401,6 @@ msgstr "" msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "" -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "" @@ -4413,17 +4410,17 @@ msgstr "" msgid "Child Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4452,6 +4449,7 @@ msgid "Choose authentication method to be used by all users" 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 msgid "City" msgstr "" @@ -4466,7 +4464,7 @@ msgstr "" msgid "Clear" msgstr "Claro" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "" @@ -4478,7 +4476,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4504,7 +4502,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "" @@ -4516,11 +4514,15 @@ msgstr "" msgid "Click On Customize to add your first widget" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "" @@ -4551,24 +4553,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4746,7 +4748,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4801,7 +4803,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:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4857,11 +4859,11 @@ msgstr "" msgid "Column Name cannot be empty" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4888,7 +4890,7 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "" @@ -4930,16 +4932,6 @@ msgstr "" msgid "Comment can only be edited by the owner" msgstr "" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "" @@ -4947,7 +4939,7 @@ msgstr "" #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "Comentários" @@ -4956,7 +4948,7 @@ msgstr "Comentários" msgid "Comments and Communications will be associated with this linked document" msgstr "" -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "" @@ -5028,12 +5020,12 @@ msgid "Company Name" msgstr "" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "" @@ -5113,8 +5105,8 @@ msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5128,6 +5120,11 @@ msgstr "" msgid "Condition JSON" msgstr "" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5153,11 +5150,11 @@ msgstr "" msgid "Configuration" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5182,7 +5179,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Confirmar" @@ -5201,7 +5198,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "" @@ -5228,7 +5225,7 @@ msgstr "" msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "" @@ -5246,8 +5243,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "" @@ -5298,6 +5295,10 @@ msgstr "" msgid "Contact" msgstr "Contacto" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
    {0}" +msgstr "" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5355,15 +5356,13 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5371,24 +5370,12 @@ msgstr "" msgid "Content" msgstr "Conteúdo" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "Tipo de Conteúdo" @@ -5456,7 +5443,7 @@ msgstr "" msgid "Copy embed code" msgstr "" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "" @@ -5464,12 +5451,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "" + #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5477,7 +5468,7 @@ msgstr "" msgid "Core Modules {0} cannot be searched in Global Search." msgstr "" -#: frappe/printing/page/print/print.js:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "" @@ -5485,7 +5476,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "" -#: frappe/model/document.py:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "" @@ -5493,15 +5484,15 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " -msgstr "" +msgid "Could not start up:" +msgstr "Não foi possível iniciar:" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "" @@ -5546,13 +5537,14 @@ msgstr "" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "" @@ -5584,13 +5576,13 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Criar" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5604,7 +5596,7 @@ msgid "Create Card" msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "" @@ -5638,12 +5630,12 @@ msgstr "" msgid "Create New" msgstr "Criar Novo" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Criar Novo" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5651,7 +5643,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "" @@ -5663,7 +5655,7 @@ msgstr "" msgid "Create a Reminder" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "" @@ -5671,11 +5663,11 @@ msgstr "" msgid "Create a new record" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "" @@ -5691,7 +5683,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "" @@ -5701,7 +5693,7 @@ msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "" @@ -5717,7 +5709,7 @@ msgstr "" msgid "Created By" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "" @@ -5729,7 +5721,7 @@ msgstr "" msgid "Created On" msgstr "" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "" @@ -6038,7 +6030,7 @@ msgstr "" #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "" @@ -6066,14 +6058,14 @@ msgstr "" msgid "Customizations for {0} exported to:
    {1}" msgstr "" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6092,7 +6084,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "" @@ -6170,7 +6162,7 @@ msgstr "" msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "" -#: frappe/desk/doctype/event/event.py:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "" @@ -6217,7 +6209,7 @@ msgstr "" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "" @@ -6276,7 +6268,6 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6289,7 +6280,6 @@ msgstr "" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6325,7 +6315,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "" @@ -6356,7 +6346,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6494,11 +6484,11 @@ msgstr "" msgid "Debug Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "" @@ -6660,11 +6650,11 @@ msgstr "" msgid "Default display currency" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 msgid "Default value for {0} must be in the list of options." msgstr "" @@ -6698,6 +6688,12 @@ msgstr "" msgid "Defines actions on states and the next step and allowed roles." msgstr "" +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6715,22 +6711,27 @@ 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/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Eliminar" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Eliminar" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "Eliminar" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "" @@ -6739,6 +6740,12 @@ msgstr "" 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 +msgid "Delete Background Exported Reports After (Hours)" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6748,7 +6755,7 @@ msgstr "" msgid "Delete Data" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6762,7 +6769,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6771,7 +6778,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "" @@ -6804,12 +6811,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6845,11 +6852,15 @@ msgstr "" msgid "Deleted Name" msgstr "" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Eliminado!" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "" @@ -6864,7 +6875,7 @@ msgstr "" #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " +msgid "Deletion Steps" msgstr "" #: frappe/core/doctype/page/page.py:110 @@ -6881,7 +6892,7 @@ msgstr "" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "" @@ -6908,7 +6919,7 @@ msgstr "" msgid "Dependencies" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "" @@ -6943,7 +6954,6 @@ msgstr "" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -6964,7 +6974,6 @@ msgstr "" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -6974,11 +6983,6 @@ msgstr "" msgid "Description" msgstr "Descrição" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -7062,7 +7066,7 @@ msgstr "" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "" @@ -7123,11 +7127,6 @@ msgstr "" msgid "Disable Comment Count" msgstr "" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7145,11 +7144,6 @@ msgstr "" msgid "Disable Document Sharing" msgstr "" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "" @@ -7159,6 +7153,11 @@ msgstr "" msgid "Disable SMTP server authentication" msgstr "" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7204,7 +7203,6 @@ msgstr "" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7219,7 +7217,6 @@ msgstr "" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "" @@ -7230,7 +7227,7 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "Descartar" @@ -7248,7 +7245,7 @@ msgstr "Descartar" msgid "Discard {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "" @@ -7271,7 +7268,7 @@ msgstr "" msgid "Discussion Topic" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7307,19 +7304,23 @@ msgstr "" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " +msgid "Do Not Create New User" msgstr "" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7410,7 +7411,7 @@ msgstr "" msgid "DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1577 +#: frappe/core/doctype/doctype/doctype.py:1578 msgid "DocType {0} provided for the field {1} must have atleast one Link field" msgstr "" @@ -7457,11 +7458,11 @@ msgstr "" msgid "DocType View" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "" @@ -7470,7 +7471,7 @@ msgstr "" msgid "DocType is a Table / Form in the application." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "" @@ -7503,7 +7504,7 @@ msgstr "" msgid "DocType {} not found" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "" @@ -7517,7 +7518,7 @@ msgstr "" msgid "Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "" @@ -7579,31 +7580,29 @@ msgstr "" msgid "Document Links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7745,13 +7744,13 @@ msgstr "" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 msgid "Document Type and Function are required to create a number card" msgstr "" @@ -7788,7 +7787,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "" @@ -7796,15 +7795,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "" @@ -7946,13 +7945,13 @@ msgstr "" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "" @@ -7979,7 +7978,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "" @@ -8042,7 +8041,7 @@ msgstr "" msgid "Drag to add state" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "" @@ -8075,7 +8074,7 @@ msgstr "" msgid "Duplicate Filter Name" msgstr "" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "" @@ -8174,17 +8173,17 @@ msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8192,7 +8191,7 @@ msgstr "" msgid "Edit" msgstr "Editar" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Editar" @@ -8202,7 +8201,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Editar" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "Editar" @@ -8231,7 +8230,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8249,7 +8248,7 @@ msgstr "" msgid "Edit Footer" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "" @@ -8334,7 +8333,7 @@ msgstr "" msgid "Edit to add content" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "" @@ -8343,7 +8342,7 @@ msgstr "" msgid "Edit your workflow visually using the Workflow Builder." msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "" @@ -8351,7 +8350,7 @@ msgstr "" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "" @@ -8390,11 +8389,14 @@ msgstr "" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8403,6 +8405,7 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8412,6 +8415,8 @@ msgstr "" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "" @@ -8443,7 +8448,7 @@ msgstr "" msgid "Email Account Name" msgstr "" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "" @@ -8531,6 +8536,7 @@ msgid "Email IDs" msgstr "" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "" @@ -8574,10 +8580,10 @@ msgstr "" msgid "Email Rule" msgstr "" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" -msgstr "" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" +msgstr "Email enviado a" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType @@ -8642,11 +8648,11 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "" @@ -8685,7 +8691,7 @@ msgstr "" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8693,7 +8699,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -8712,7 +8718,7 @@ msgstr "" msgid "Enable Address Autocompletion" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "" @@ -8738,11 +8744,6 @@ msgstr "" msgid "Enable Dynamic Client Registration" msgstr "" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -8836,11 +8837,6 @@ msgstr "" msgid "Enable Social Login" msgstr "" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "" @@ -8848,7 +8844,7 @@ msgstr "" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "" @@ -8860,12 +8856,6 @@ msgstr "" msgid "Enable developer mode to create a standard Web Template" msgstr "" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "" - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -8888,6 +8878,7 @@ msgstr "" #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -8900,6 +8891,7 @@ msgstr "" #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "Ativado" @@ -8925,14 +8917,10 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "" - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." msgstr "" #. Description of the 'Queue in Background (BETA)' (Check) field in DocType @@ -8949,11 +8937,11 @@ msgstr "" msgid "Encrypt Backups" msgstr "" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "" @@ -8965,7 +8953,7 @@ msgstr "" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -8981,6 +8969,10 @@ msgstr "" msgid "End Date cannot be before Start Date!" msgstr "" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9025,7 +9017,7 @@ msgstr "" msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "" @@ -9095,10 +9087,17 @@ msgstr "Iguais" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9108,7 +9107,7 @@ msgstr "Iguais" msgid "Error" msgstr "Erro" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "Erro" @@ -9128,7 +9127,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 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 "" @@ -9156,9 +9155,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "" @@ -9178,19 +9177,19 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "" @@ -9247,7 +9246,7 @@ msgstr "" msgid "Events" msgstr "" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "" @@ -9331,7 +9330,7 @@ msgstr "" msgid "Execute Console script" msgstr "" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "" @@ -9339,7 +9338,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "" @@ -9365,12 +9364,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Expandir" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9398,7 +9397,9 @@ msgid "Expire Notification On" msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "Expirado" @@ -9426,13 +9427,13 @@ msgstr "" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Exportar" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Exportar" @@ -9469,7 +9470,7 @@ msgstr "" msgid "Export Import Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "" @@ -9478,11 +9479,11 @@ msgstr "" msgid "Export Type" msgstr "Tipo de exportação" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "" @@ -9490,6 +9491,10 @@ msgstr "" msgid "Export as zip" msgstr "" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "" @@ -9595,7 +9600,7 @@ msgstr "" msgid "Failed Logins (Last 30 days)" msgstr "" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "" @@ -9612,7 +9617,7 @@ msgstr "" msgid "Failed to complete setup" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "" @@ -9621,15 +9626,15 @@ msgstr "" msgid "Failed to connect to server" msgstr "" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "" @@ -9637,8 +9642,8 @@ msgstr "" msgid "Failed to enable scheduler: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "" @@ -9654,7 +9659,7 @@ msgstr "" msgid "Failed to generate preview of series" msgstr "" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "" @@ -9674,11 +9679,11 @@ msgstr "" msgid "Failed to optimize image: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "" @@ -9728,12 +9733,6 @@ msgstr "" msgid "Fax" msgstr "" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "" @@ -9791,17 +9790,17 @@ msgstr "" #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "Campo" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "" @@ -9814,7 +9813,7 @@ msgstr "" msgid "Field Description" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9844,7 +9843,7 @@ msgstr "" msgid "Field Type" msgstr "" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "" @@ -9870,11 +9869,11 @@ msgstr "" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "" -#: frappe/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "" -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9892,20 +9891,20 @@ 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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "" @@ -9921,15 +9920,15 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -9965,7 +9964,7 @@ msgstr "" msgid "Fields Multicheck" msgstr "" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "" @@ -9973,7 +9972,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10001,7 +10000,7 @@ msgstr "" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10014,7 +10013,7 @@ msgstr "" msgid "File" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "" @@ -10067,7 +10066,7 @@ msgstr "" msgid "File backup is ready" msgstr "" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "" @@ -10075,7 +10074,7 @@ msgstr "" msgid "File not attached" msgstr "" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "" @@ -10084,11 +10083,11 @@ msgstr "" msgid "File too big" msgstr "" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "" @@ -10102,10 +10101,10 @@ msgstr "" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10142,11 +10141,11 @@ msgstr "" msgid "Filter Values" msgstr "" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10164,7 +10163,6 @@ msgstr "" msgid "Filtered Records" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "" @@ -10179,7 +10177,9 @@ msgstr "" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10201,6 +10201,11 @@ msgstr "" msgid "Filters Display" msgstr "" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10213,11 +10218,11 @@ msgstr "" msgid "Filters Section" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "" @@ -10230,18 +10235,18 @@ msgstr "" msgid "Filters {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1427 +#: frappe/public/js/frappe/views/reports/report_view.js:1429 msgid "Filters:" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 msgid "Find '{0}' in ..." msgstr "" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 msgid "Find {0} in {1}" msgstr "" @@ -10265,8 +10270,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "" @@ -10275,10 +10284,6 @@ msgstr "" msgid "First Success Message" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:49 -msgid "First Transaction" -msgstr "" - #: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." msgstr "" @@ -10329,11 +10334,11 @@ msgstr "" msgid "Fold" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1450 +#: frappe/core/doctype/doctype/doctype.py:1451 msgid "Fold can not be at the end of the form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1448 +#: frappe/core/doctype/doctype/doctype.py:1449 msgid "Fold must come before a Section Break" msgstr "" @@ -10351,7 +10356,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "" -#: frappe/core/doctype/file/file.py:472 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "" @@ -10458,7 +10463,7 @@ msgstr "" msgid "Footer HTML" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:75 +#: frappe/printing/doctype/letter_head/letter_head.py:81 msgid "Footer HTML set from attachment {0}" msgstr "" @@ -10495,7 +10500,7 @@ msgstr "" msgid "Footer Template Values" msgstr "" -#: frappe/printing/page/print/print.js:116 +#: frappe/printing/page/print/print.js:129 msgid "Footer might not be visible as {0} option is disabled" msgstr "" @@ -10553,8 +10558,8 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10580,12 +10585,6 @@ msgstr "" msgid "For help see Client Script API and Examples" msgstr "" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "" - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "" @@ -10600,7 +10599,7 @@ msgstr "" msgid "For updating, you can update only selective columns." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "" @@ -10655,7 +10654,7 @@ 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:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "" @@ -10715,6 +10714,11 @@ msgstr "" msgid "Format Data" msgstr "" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "" @@ -10742,7 +10746,15 @@ msgstr "" msgid "Frappe" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "" @@ -10831,7 +10843,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "" @@ -10858,18 +10870,16 @@ msgstr "" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "" @@ -10895,12 +10905,12 @@ msgstr "" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" +msgid "Further sub-groups can only be created under records marked as 'Group'" msgstr "" #: frappe/core/doctype/communication/communication.js:291 @@ -10960,7 +10970,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "" @@ -10968,8 +10978,14 @@ msgstr "" msgid "Generate Random Password" msgstr "" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "" @@ -10992,7 +11008,7 @@ msgstr "" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "" @@ -11128,7 +11144,7 @@ msgid "Go to this URL after completing the form" msgstr "" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "" @@ -11176,10 +11192,6 @@ msgstr "" msgid "Google Calendar" msgstr "" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
    {0}" -msgstr "" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "" @@ -11298,11 +11310,6 @@ msgstr "" msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "" -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11379,14 +11386,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11436,7 +11439,6 @@ msgstr "" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11447,9 +11449,8 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11553,7 +11554,7 @@ msgstr "" msgid "Header HTML" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "" @@ -11611,6 +11612,12 @@ msgstr "" msgid "Hello" msgstr "" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "Olá," + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11676,7 +11683,7 @@ msgstr "" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "" @@ -11712,7 +11719,7 @@ msgstr "" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11745,11 +11752,6 @@ msgstr "" msgid "Hide Buttons" msgstr "" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "" - #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json @@ -11829,7 +11831,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -11843,7 +11845,7 @@ msgstr "" msgid "Hide descendant records of For Value." msgstr "" -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "" @@ -11892,11 +11894,8 @@ 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:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -11984,16 +11983,16 @@ msgstr "" #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -12089,9 +12088,9 @@ msgstr "" msgid "If Checked workflow status will not override status in list view" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "" @@ -12219,6 +12218,10 @@ msgstr "" msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12250,7 +12253,11 @@ msgstr "" msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "" -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "" @@ -12307,12 +12314,12 @@ msgstr "" msgid "Ignored Apps" msgstr "" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "" @@ -12373,11 +12380,11 @@ msgstr "" msgid "Image Width" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 msgid "Image field must be a valid fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "" @@ -12399,15 +12406,15 @@ msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "" @@ -12433,7 +12440,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12661,15 +12668,16 @@ msgstr "" msgid "Include Web View Link in Email" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "" @@ -12716,7 +12724,7 @@ msgstr "" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "" @@ -12728,7 +12736,7 @@ msgstr "" msgid "Incorrect URL" msgstr "" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "" @@ -12736,11 +12744,11 @@ msgstr "" msgid "Incorrect Verification code" msgstr "" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "" @@ -12752,7 +12760,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "" @@ -12827,7 +12835,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "" @@ -12843,7 +12851,7 @@ msgstr "" msgid "Insert Below" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "" @@ -12861,8 +12869,12 @@ msgstr "" msgid "Insert Style" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "" @@ -12879,7 +12891,7 @@ msgid "Installed Applications" msgstr "" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "" @@ -12896,19 +12908,19 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" msgstr "" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "" @@ -13012,9 +13024,9 @@ msgid "Invalid" msgstr "" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "" @@ -13022,7 +13034,7 @@ msgstr "" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "" @@ -13038,7 +13050,7 @@ msgstr "" msgid "Invalid Code. Please try again." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "" @@ -13058,16 +13070,20 @@ msgstr "" msgid "Invalid DocType: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13099,7 +13115,7 @@ msgstr "" msgid "Invalid Mail Server. Please rectify and try again." msgstr "" -#: frappe/model/naming.py:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "" @@ -13108,8 +13124,8 @@ msgstr "" msgid "Invalid Operation" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "" @@ -13121,25 +13137,25 @@ msgstr "" msgid "Invalid Output Format" msgstr "" -#: frappe/model/base_document.py:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "" @@ -13148,7 +13164,7 @@ msgstr "" msgid "Invalid Search Field {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "" @@ -13156,8 +13172,8 @@ msgstr "" msgid "Invalid Transition" msgstr "" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13171,47 +13187,51 @@ msgstr "" msgid "Invalid Values" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "" @@ -13223,31 +13243,27 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13255,11 +13271,11 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13267,20 +13283,28 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "" @@ -13288,6 +13312,10 @@ msgstr "" msgid "Invalid naming series {}: dot (.) missing" msgstr "" +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "" @@ -13296,19 +13324,27 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13316,7 +13352,7 @@ msgstr "" msgid "Invalid template file for import" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "" @@ -13325,20 +13361,20 @@ msgstr "" msgid "Invalid username or password" msgstr "" -#: frappe/model/naming.py:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "" @@ -13347,10 +13383,47 @@ msgstr "" msgid "Inverse" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "Convidado por" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "É" @@ -13375,7 +13448,7 @@ msgstr "" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "" @@ -13428,6 +13501,10 @@ msgstr "" msgid "Is Global" msgstr "" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "É grupo" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13454,8 +13531,13 @@ msgstr "" msgid "Is Primary" msgstr "" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 msgid "Is Primary Contact" msgstr "" @@ -13486,7 +13568,7 @@ msgstr "" msgid "Is Published Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "" @@ -13511,7 +13593,7 @@ msgstr "" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "" @@ -13547,7 +13629,7 @@ msgstr "" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "" @@ -13753,11 +13835,11 @@ msgstr "" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13778,12 +13860,14 @@ msgstr "" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -14045,7 +14129,7 @@ msgstr "" msgid "Landing Page" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "" @@ -14053,10 +14137,13 @@ msgstr "" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14144,8 +14231,12 @@ msgstr "" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "" @@ -14160,6 +14251,11 @@ msgstr "" msgid "Last Quarter" msgstr "" +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" + #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json @@ -14176,11 +14272,6 @@ msgstr "" msgid "Last Sync On" msgstr "" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14291,7 +14382,7 @@ msgstr "" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "" @@ -14340,8 +14431,8 @@ 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:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14369,7 +14460,7 @@ msgstr "" msgid "Letter Head Scripts" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "" @@ -14386,7 +14477,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "" @@ -14436,20 +14527,6 @@ msgstr "" msgid "Like" msgstr "Gostar" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "" @@ -14490,6 +14567,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14503,6 +14581,7 @@ msgstr "" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "" @@ -14633,10 +14712,15 @@ msgstr "" msgid "Linked With" msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +msgstr "" + #. Label of the links (Table) field in DocType 'Address' #. Label of the links (Table) field in DocType 'Contact' #. Label of the links_section (Tab Break) field in DocType 'DocType' #. Label of the links (Table) field in DocType 'Customize Form' +#. Label of the links (Table) field in DocType 'Event' #. Label of the links (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14644,6 +14728,7 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "" @@ -14685,7 +14770,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14726,7 +14811,7 @@ msgstr "" msgid "List setting message" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "" @@ -14735,9 +14820,8 @@ msgstr "" msgid "Load Balancing" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Carregue mais" @@ -14754,10 +14838,10 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "" @@ -14769,7 +14853,7 @@ msgstr "" msgid "Loading import file..." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "" @@ -14779,7 +14863,7 @@ msgstr "" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "" @@ -14840,7 +14924,7 @@ msgstr "" msgid "Log out" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "" @@ -14900,7 +14984,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -14908,7 +14992,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "" @@ -14961,7 +15045,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -14980,7 +15064,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "" @@ -15084,7 +15168,10 @@ msgid "Major" 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 +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "" @@ -15160,7 +15247,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "" @@ -15172,15 +15259,15 @@ msgstr "" msgid "Mandatory field: {0}" msgstr "" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "" @@ -15261,10 +15348,8 @@ msgid "Mark as Unread" msgstr "" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15345,7 +15430,13 @@ msgstr "" msgid "Max auto email report per user" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "" @@ -15354,20 +15445,15 @@ msgstr "" msgid "Maximum" msgstr "" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "" -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "" -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "" @@ -15383,7 +15469,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15396,7 +15482,7 @@ msgstr "Médio" msgid "Meeting" msgstr "" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "" @@ -15437,7 +15523,7 @@ msgstr "" msgid "Merge with existing" msgstr "" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "" @@ -15463,7 +15549,7 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15503,7 +15589,7 @@ msgstr "" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "" @@ -15535,29 +15621,21 @@ msgstr "" msgid "Meta" msgstr "" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "" @@ -15610,7 +15688,7 @@ msgstr "" msgid "Method Not Allowed" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "" @@ -15626,6 +15704,11 @@ msgstr "" msgid "Middle Name" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15692,11 +15775,11 @@ msgstr "" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "" @@ -15732,15 +15815,16 @@ msgstr "" msgid "Mobile No" msgstr "Nr. de Telemóvel" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "" + #. Label of the modal_trigger (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Modal Trigger" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15761,7 +15845,7 @@ msgstr "" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -15937,10 +16021,12 @@ msgstr "" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "" @@ -15959,7 +16045,7 @@ msgstr "" msgid "Most Used" msgstr "" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "" @@ -15970,7 +16056,7 @@ msgstr "" msgid "Move" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "" @@ -16006,7 +16092,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "" @@ -16033,7 +16119,7 @@ msgstr "" msgid "Ms" msgstr "" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "" @@ -16056,7 +16142,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "" @@ -16074,7 +16160,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16112,9 +16198,9 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16124,11 +16210,11 @@ msgstr "Nome" msgid "Name (Doc Name)" msgstr "" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "" @@ -16140,7 +16226,7 @@ msgstr "" msgid "Name of the new Print Format" msgstr "" -#: frappe/model/naming.py:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "" @@ -16179,7 +16265,7 @@ msgstr "" msgid "Naming Series" msgstr "" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "" @@ -16216,12 +16302,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16236,7 +16322,11 @@ msgstr "" msgid "Navigation Settings" msgstr "" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16244,7 +16334,7 @@ msgstr "" msgid "Negative Value" msgstr "" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16257,6 +16347,12 @@ msgstr "" msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +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 @@ -16265,7 +16361,7 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16286,10 +16382,6 @@ msgstr "" msgid "New Chart" msgstr "" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "" @@ -16298,8 +16390,8 @@ msgstr "" msgid "New Custom Block" msgstr "" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" msgstr "" @@ -16330,7 +16422,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "" @@ -16365,12 +16457,12 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "" @@ -16379,7 +16471,7 @@ msgstr "" msgid "New Quick List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "" @@ -16397,8 +16489,8 @@ msgstr "" msgid "New Users (Last 30 days)" msgstr "" -#: frappe/core/doctype/version/version_view.html:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "" @@ -16455,13 +16547,13 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "" @@ -16477,7 +16569,7 @@ msgstr "" msgid "New {0} {1} created" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "" @@ -16485,7 +16577,7 @@ msgstr "" msgid "New {} releases for the following apps are available" msgstr "" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "" @@ -16498,7 +16590,7 @@ msgstr "" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16605,14 +16697,15 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Não" @@ -16662,6 +16755,10 @@ msgstr "" msgid "No Email Accounts Assigned" msgstr "" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "" @@ -16697,15 +16794,15 @@ msgstr "" msgid "No Label" msgstr "" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: frappe/public/js/frappe/list/bulk_operations.js:98 #: frappe/public/js/frappe/list/bulk_operations.js:170 #: frappe/utils/weasyprint.py:52 msgid "No Letterhead" msgstr "" -#: frappe/model/naming.py:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "" @@ -16713,7 +16810,7 @@ msgstr "" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "" @@ -16733,11 +16830,11 @@ msgstr "" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "" @@ -16753,11 +16850,11 @@ msgstr "" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16765,7 +16862,7 @@ msgstr "" msgid "No Suggestions" msgstr "" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "" @@ -16777,7 +16874,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "" @@ -16805,23 +16902,19 @@ msgstr "" msgid "No changes to update" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " -msgstr "" +msgid "No comments yet." +msgstr "Ainda sem comentários." #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "" @@ -16837,11 +16930,15 @@ msgstr "" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16865,7 +16962,7 @@ msgstr "" msgid "No matching records. Search something new" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "" @@ -16909,7 +17006,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "" @@ -16921,7 +17018,7 @@ msgstr "" msgid "No records deleted" msgstr "" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "" @@ -16937,7 +17034,7 @@ msgstr "" msgid "No rows" msgstr "" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -16957,11 +17054,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -16970,7 +17067,7 @@ msgid "No {0} mail" msgstr "" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -17013,7 +17110,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "" @@ -17034,7 +17131,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -17060,20 +17157,19 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17082,10 +17178,10 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "Não Guardado" @@ -17117,7 +17213,7 @@ msgstr "" msgid "Not a valid User Image." msgstr "" -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "" @@ -17133,11 +17229,11 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "" @@ -17161,27 +17257,27 @@ msgstr "" msgid "Not in Developer Mode" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17216,7 +17312,7 @@ msgstr "" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17240,10 +17336,9 @@ msgstr "" msgid "Nothing left to undo" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "" @@ -17289,15 +17384,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17348,7 +17443,7 @@ msgstr "" msgid "Notify users with a popup when they log in" msgstr "" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "" @@ -17406,12 +17501,12 @@ msgstr "" msgid "Number of Queries" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17520,11 +17615,11 @@ msgstr "" msgid "OTP Issuer Name" msgstr "" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "" @@ -17643,7 +17738,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "" @@ -17683,7 +17778,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "" @@ -17728,7 +17823,7 @@ msgstr "" msgid "Only Allow Edit For" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "" @@ -17745,7 +17840,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "" @@ -17764,19 +17859,19 @@ msgstr "" msgid "Only one {0} can be set as primary." msgstr "Somente um {0} pode ser definido como primário." -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17846,7 +17941,7 @@ msgstr "" msgid "Open Settings" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "" @@ -17864,7 +17959,7 @@ msgstr "" msgid "Open a module or tool" msgstr "" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "" @@ -17872,7 +17967,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17887,13 +17982,13 @@ msgstr "" #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "" @@ -17902,6 +17997,10 @@ msgstr "" msgid "OpenID Configuration" msgstr "" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" @@ -17917,7 +18016,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "" @@ -17943,7 +18042,7 @@ msgstr "" msgid "Option 3" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "" @@ -17963,6 +18062,7 @@ msgstr "" #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -17971,11 +18071,12 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "" @@ -17984,7 +18085,7 @@ msgstr "" msgid "Options Help" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "" @@ -17992,7 +18093,7 @@ msgstr "" msgid "Options for select. Each option on a new line." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 msgid "Options for {0} must be set before setting the default value." msgstr "" @@ -18000,7 +18101,7 @@ msgstr "" msgid "Options is required for field {0} of type {1}" msgstr "" -#: frappe/model/base_document.py:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "" @@ -18016,7 +18117,7 @@ msgstr "" msgid "Order" msgstr "" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18032,12 +18133,12 @@ msgstr "" msgid "Org History Heading" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "" @@ -18105,10 +18206,6 @@ msgstr "" msgid "Overview" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "Dono" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" @@ -18116,9 +18213,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:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18159,11 +18256,11 @@ msgstr "" msgid "PDF generation failed because of broken image links" msgstr "" -#: frappe/printing/page/print/print.js:616 +#: frappe/printing/page/print/print.js:656 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:574 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18335,7 +18432,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:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "" @@ -18362,7 +18459,7 @@ msgstr "" msgid "Parent Document Type" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "" @@ -18379,11 +18476,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:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "" @@ -18392,7 +18489,7 @@ msgstr "" msgid "Parent Label" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 msgid "Parent Missing" msgstr "" @@ -18466,8 +18563,8 @@ msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18477,7 +18574,7 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "" @@ -18490,7 +18587,7 @@ msgstr "" msgid "Password Reset Link Generation Limit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18507,6 +18604,10 @@ msgstr "" msgid "Password is required or select Awaiting Password" msgstr "" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "" @@ -18515,7 +18616,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18523,11 +18624,11 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." msgstr "" @@ -18535,7 +18636,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "" @@ -18605,10 +18706,12 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "Pendente" @@ -18684,7 +18787,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "" @@ -18744,16 +18847,16 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: frappe/core/page/permission_manager/permission_manager.js:221 #: frappe/core/workspace/users/users.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Permissions" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "" @@ -18815,15 +18918,18 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -18836,13 +18942,13 @@ msgstr "Telefone" msgid "Phone No." msgstr "" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "" @@ -18902,11 +19008,11 @@ msgstr "" msgid "Please Set Chart" msgstr "" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "" @@ -18914,7 +19020,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18922,11 +19028,11 @@ msgstr "" msgid "Please attach a file first." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 msgid "Please attach an image file to set HTML for Footer." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "" @@ -18934,19 +19040,15 @@ msgstr "" msgid "Please attach the package" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "" - #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "" -#: frappe/model/base_document.py:951 +#: frappe/model/base_document.py:1008 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "" @@ -18978,11 +19080,11 @@ msgstr "" msgid "Please confirm your action to {0} this document." msgstr "" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "" @@ -18998,20 +19100,20 @@ msgstr "" msgid "Please do not change the template headings." msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "" @@ -19048,7 +19150,7 @@ msgstr "" msgid "Please enter Client Secret before social login is enabled" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "" @@ -19085,11 +19187,12 @@ msgstr "" msgid "Please enter your old password." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "" @@ -19097,11 +19200,11 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "" -#: frappe/model/document.py:988 +#: frappe/model/document.py:992 msgid "Please refresh to get the latest document." msgstr "" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:575 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19117,7 +19220,7 @@ msgstr "" msgid "Please save the document before removing assignment" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "" @@ -19125,7 +19228,7 @@ msgstr "" msgid "Please save to edit the template." msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "" @@ -19133,19 +19236,19 @@ msgstr "" msgid "Please select Entity Type first" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "" @@ -19153,7 +19256,7 @@ msgstr "" msgid "Please select a file or url" msgstr "" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" msgstr "" @@ -19165,7 +19268,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19191,11 +19294,11 @@ msgstr "" msgid "Please set Email Address" msgstr "" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:589 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "" @@ -19203,7 +19306,7 @@ msgstr "" msgid "Please set filters value in Report Filter table." msgstr "" -#: frappe/model/naming.py:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "" @@ -19215,7 +19318,7 @@ msgstr "" msgid "Please set the series to be used." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -19239,23 +19342,23 @@ msgstr "" msgid "Please specify a valid parent DocType for {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "" @@ -19276,7 +19379,7 @@ msgstr "" msgid "Please use following links to download file backup." msgstr "" -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" @@ -19330,7 +19433,7 @@ msgstr "" msgid "Portal Settings" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "" @@ -19358,6 +19461,7 @@ msgstr "" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "" @@ -19366,15 +19470,7 @@ msgstr "" msgid "Posting Timestamp" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19389,7 +19485,11 @@ msgstr "" msgid "Precision" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "" @@ -19437,7 +19537,7 @@ msgstr "" msgid "Prepared Report User" msgstr "" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "" @@ -19445,7 +19545,7 @@ msgstr "" msgid "Preparing Report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "" @@ -19466,7 +19566,7 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19480,13 +19580,6 @@ msgstr "" msgid "Preview HTML" msgstr "" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19515,7 +19608,7 @@ msgid "Preview:" msgstr "" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19527,12 +19620,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "" @@ -19578,19 +19666,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:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19608,8 +19696,8 @@ 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:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19660,7 +19748,7 @@ msgstr "" msgid "Print Format Type" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19699,7 +19787,7 @@ msgstr "" msgid "Print Language" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "" @@ -19716,8 +19804,8 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "" @@ -19765,11 +19853,11 @@ msgstr "" msgid "Print with letterhead" msgstr "" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "" @@ -19779,11 +19867,11 @@ msgstr "" msgid "Printer Name" msgstr "" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "" @@ -19841,7 +19929,7 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "" @@ -19862,18 +19950,28 @@ msgstr "" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Perfil atualizado com sucesso." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: 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:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: 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/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "" @@ -19910,7 +20008,7 @@ msgstr "" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -19959,24 +20057,18 @@ msgstr "" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -19986,15 +20078,6 @@ msgstr "" msgid "Published" msgstr "" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json @@ -20084,7 +20167,9 @@ msgid "Put on Hold" msgstr "" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "" @@ -20096,8 +20181,8 @@ msgstr "" msgid "QR Code for Login Verification" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' @@ -20147,7 +20232,7 @@ msgstr "" msgid "Query analysis complete. Check suggested indexes." msgstr "" -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "" @@ -20247,7 +20332,7 @@ msgstr "" msgid "Quick Lists" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20284,12 +20369,6 @@ msgstr "" msgid "Rate Limiting" msgstr "" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20309,7 +20388,7 @@ msgstr "" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "" @@ -20326,7 +20405,7 @@ msgstr "" msgid "Raw Printing" msgstr "" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "" @@ -20343,8 +20422,8 @@ msgid "Re:" msgstr "" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "" @@ -20400,11 +20479,6 @@ msgstr "" msgid "Read Only Mode" msgstr "" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20420,7 +20494,7 @@ msgstr "" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "" @@ -20440,11 +20514,11 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20482,7 +20556,7 @@ msgstr "" msgid "Recent years are easy to guess." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "" @@ -20493,6 +20567,14 @@ msgstr "" msgid "Recipient" msgstr "" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20525,7 +20607,7 @@ msgstr "" msgid "Records for following doctypes will be filtered" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "" @@ -20542,6 +20624,11 @@ msgstr "" msgid "Redirect HTTP Status" msgstr "" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20636,6 +20723,11 @@ msgstr "" msgid "Reference Datetime" msgstr "" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20663,7 +20755,6 @@ msgstr "" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20704,9 +20795,9 @@ msgstr "" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20724,9 +20815,9 @@ msgstr "" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20756,7 +20847,6 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -20804,15 +20894,15 @@ msgstr "" msgid "Referrer" msgstr "" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Recarregar" @@ -20826,6 +20916,10 @@ msgstr "" msgid "Refresh Google Sheet" msgstr "" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -20837,18 +20931,18 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "" @@ -21025,7 +21119,7 @@ msgstr "" msgid "Rename {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "" @@ -21156,9 +21250,9 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "" @@ -21228,11 +21322,11 @@ 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:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "" @@ -21266,21 +21360,21 @@ msgstr "" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 msgid "Report cannot be set for Single types" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 -#: frappe/desk/doctype/number_card/number_card.js:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21292,24 +21386,24 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "" @@ -21317,7 +21411,7 @@ msgstr "" msgid "Report {0} is disabled" msgstr "" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "" @@ -21328,7 +21422,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:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "" @@ -21336,7 +21430,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "" @@ -21355,7 +21449,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "" @@ -21407,6 +21504,11 @@ msgstr "" msgid "Request URL" msgstr "" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21458,11 +21560,11 @@ msgstr "" msgid "Reset Dashboard Customizations" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "" @@ -21470,11 +21572,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21509,7 +21611,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21547,6 +21649,7 @@ msgid "Resource TOS URI" msgstr "" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21556,11 +21659,6 @@ msgstr "" msgid "Response" msgstr "" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "" - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21619,7 +21717,7 @@ msgstr "" msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "" @@ -21653,7 +21751,7 @@ msgstr "" msgid "Reverse Icon Color" msgstr "" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "" @@ -21671,9 +21769,7 @@ msgstr "" msgid "Revoked" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21714,6 +21810,7 @@ msgstr "" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21727,6 +21824,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21765,7 +21863,7 @@ msgstr "" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "" @@ -21775,7 +21873,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21818,6 +21916,7 @@ msgstr "" #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -21827,6 +21926,7 @@ msgstr "" #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -21863,7 +21963,7 @@ msgstr "" msgid "Roles can be set for users from their User page." msgstr "" -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "" @@ -21883,8 +21983,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -21896,8 +21994,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -21922,24 +22018,24 @@ msgstr "" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "" @@ -21948,11 +22044,6 @@ msgstr "" msgid "Row Format" msgstr "" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "" - #. Label of the row_indexes (Code) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Row Indexes" @@ -21967,7 +22058,7 @@ msgstr "" msgid "Row Number" msgstr "" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "" @@ -21975,30 +22066,33 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Added" msgstr "" #. Label of the rows_removed_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22089,7 +22183,7 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "" @@ -22167,7 +22261,7 @@ msgstr "" msgid "Salutation" msgstr "Saudação" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "" @@ -22195,20 +22289,20 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22217,16 +22311,12 @@ msgstr "" msgid "Save" msgstr "Salvar" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "" @@ -22234,11 +22324,11 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "" @@ -22263,7 +22353,7 @@ msgstr "" msgid "Saved Filters" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22342,7 +22432,7 @@ msgstr "" msgid "Scheduled Jobs Logs" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "" @@ -22365,7 +22455,7 @@ msgstr "" msgid "Scheduler Event" msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "" @@ -22378,7 +22468,7 @@ msgstr "" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "" @@ -22510,7 +22600,7 @@ msgstr "" msgid "Search by filename or extension" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "" @@ -22610,7 +22700,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "" @@ -22619,7 +22709,7 @@ msgstr "" msgid "See on Website" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "" @@ -22666,7 +22756,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/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22674,28 +22764,28 @@ msgstr "" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 msgid "Select Column" msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "" @@ -22754,12 +22844,15 @@ msgstr "" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "" @@ -22772,7 +22865,7 @@ msgstr "" msgid "Select Filters" msgstr "" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "" @@ -22805,8 +22898,8 @@ msgstr "" msgid "Select Module" msgstr "" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "" @@ -22871,14 +22964,14 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." +msgid "Select a group {0} first." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 msgid "Select a valid Subject field for creating documents from Email" msgstr "" @@ -22908,13 +23001,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22948,7 +23041,7 @@ msgstr "" msgid "Select {0}" msgstr "Selecione {0}" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "" @@ -23132,7 +23225,7 @@ msgstr "" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "" @@ -23226,7 +23319,7 @@ msgstr "" msgid "Series counter for {} updated to {} successfully" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "" @@ -23236,7 +23329,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23255,7 +23348,7 @@ msgstr "" msgid "Server Script" msgstr "" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23302,7 +23395,7 @@ msgstr "" msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "" @@ -23311,14 +23404,14 @@ msgstr "" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "" @@ -23344,12 +23437,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23360,7 +23453,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23414,7 +23507,7 @@ msgstr "" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23424,16 +23517,16 @@ msgstr "" msgid "Set Value" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "" @@ -23452,18 +23545,21 @@ msgstr "" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "" -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23555,14 +23651,9 @@ msgstr "" msgid "Settings for the About Us Page" msgstr "" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "" @@ -23578,8 +23669,8 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "" @@ -23648,11 +23739,6 @@ msgstr "" msgid "Shop" msgstr "" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "" @@ -23672,11 +23758,6 @@ msgstr "" msgid "Show" msgstr "" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23729,7 +23810,13 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23857,7 +23944,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "" @@ -23874,7 +23961,7 @@ msgstr "" msgid "Show Title in Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "" @@ -23914,10 +24001,6 @@ msgstr "" msgid "Show all activity" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "" - #. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" @@ -23966,8 +24049,8 @@ msgstr "" msgid "Show list" msgstr "" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "" @@ -23996,7 +24079,7 @@ msgstr "" msgid "Show {0} List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "" @@ -24031,7 +24114,7 @@ msgstr "" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "" @@ -24068,22 +24151,22 @@ msgstr "" msgid "Signups have been disabled for this website." msgstr "" -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" msgstr "" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" msgstr "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' @@ -24091,13 +24174,13 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "" #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "" @@ -24105,7 +24188,7 @@ msgstr "" msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "" -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "" @@ -24324,11 +24407,11 @@ msgstr "" msgid "Something went wrong." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 msgid "Sorry! I could not find what you were looking for." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "" @@ -24359,20 +24442,23 @@ msgstr "" msgid "Sort Order" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 msgid "Sort field {0} must be a valid fieldname" msgstr "" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' -#: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "Fonte" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24399,6 +24485,12 @@ msgstr "" msgid "SparkPost" msgstr "" +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "" @@ -24423,8 +24515,8 @@ msgstr "" msgid "Splash Image" msgstr "" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -24456,11 +24548,11 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "" @@ -24472,7 +24564,7 @@ msgstr "" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "" @@ -24480,11 +24572,11 @@ msgstr "" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "" -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "" @@ -24516,8 +24608,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:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "" @@ -24525,7 +24617,7 @@ msgstr "" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24590,6 +24682,7 @@ msgstr "" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24598,7 +24691,7 @@ msgstr "" msgid "State" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "" @@ -24654,6 +24747,7 @@ msgstr "" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24678,6 +24772,7 @@ msgstr "" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24685,8 +24780,8 @@ msgstr "" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24723,7 +24818,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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24753,6 +24848,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +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." @@ -24831,7 +24930,7 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -24847,7 +24946,7 @@ msgstr "Assunto" msgid "Subject Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "" @@ -24861,6 +24960,7 @@ msgstr "" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24869,10 +24969,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24882,7 +24983,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24906,7 +25007,7 @@ msgstr "" msgid "Submit an Issue" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "" @@ -24918,7 +25019,7 @@ msgstr "" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "" @@ -24930,7 +25031,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24939,11 +25040,11 @@ msgstr "" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "" @@ -24966,9 +25067,7 @@ msgid "Subsidiary" msgstr "" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "" @@ -24982,7 +25081,7 @@ msgstr "" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25024,20 +25123,16 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "" - #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" msgstr "" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "" @@ -25079,7 +25174,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "" @@ -25201,7 +25296,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25324,6 +25419,7 @@ msgstr "" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25406,6 +25502,7 @@ msgstr "" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" msgstr "" @@ -25479,7 +25576,7 @@ msgstr "" msgid "Table Break" msgstr "" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "" @@ -25488,7 +25585,7 @@ msgstr "" msgid "Table Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "" @@ -25510,11 +25607,11 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 msgid "Table {0} cannot be empty" msgstr "" @@ -25556,11 +25653,18 @@ msgstr "" msgid "Target" msgstr "" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "Tarefa" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "Tarefas" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25622,7 +25726,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "" @@ -25694,7 +25798,7 @@ msgid "Thank you for reaching out to us. We will get back to you at the earliest "{0}" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "" @@ -25718,7 +25822,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "" @@ -25729,15 +25833,15 @@ msgid "The Client ID obtained from the Google Cloud Console under " msgstr "" -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." msgstr "" @@ -25778,7 +25882,7 @@ msgstr "" msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "" -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "" @@ -25786,7 +25890,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:658 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25816,7 +25920,7 @@ msgstr "" msgid "The field {0} is mandatory" msgstr "" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "" @@ -25886,15 +25990,19 @@ msgid "The project number obtained from Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

    Click here to download:
    {0}

    This link will expire in {1} hours." +msgstr "" + +#: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:995 +#: frappe/core/doctype/user/user.py:1002 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25906,7 +26014,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:338 +#: frappe/utils/response.py:336 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25927,7 +26035,7 @@ msgstr "" msgid "The webhook will be triggered if this expression is true" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "" @@ -25967,16 +26075,16 @@ 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:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "" @@ -25988,15 +26096,19 @@ msgstr "" msgid "There is no data to be exported" msgstr "" +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26008,7 +26120,7 @@ msgstr "" msgid "There was an error building this page" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "" @@ -26020,11 +26132,11 @@ msgstr "" msgid "There were errors while creating the document. Please try again." msgstr "" -#: frappe/public/js/frappe/views/communication.js:840 +#: frappe/public/js/frappe/views/communication.js:843 msgid "There were errors while sending email. Please try again." msgstr "" -#: frappe/model/naming.py:494 +#: frappe/model/naming.py:502 msgid "There were some errors setting the name, please contact the administrator" msgstr "" @@ -26065,7 +26177,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "" @@ -26073,6 +26185,10 @@ msgstr "" msgid "This Month" msgstr "Este mês" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "Este trimestre" @@ -26098,6 +26214,11 @@ msgstr "" msgid "This cannot be undone" msgstr "" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +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" @@ -26112,11 +26233,11 @@ msgstr "" msgid "This doctype has no orphan fields to trim" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26158,7 +26279,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26174,7 +26295,7 @@ msgstr "" msgid "This form has been modified after you have loaded it" msgstr "" -#: frappe/public/js/frappe/form/form.js:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "" @@ -26193,7 +26314,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26217,12 +26338,6 @@ msgstr "" msgid "This is an automatically generated reply" msgstr "" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "" - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "" @@ -26241,7 +26356,7 @@ msgstr "" msgid "This link is invalid or expired. Please make sure you have pasted correctly." msgstr "" -#: frappe/printing/page/print/print.js:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "" @@ -26249,7 +26364,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26257,7 +26372,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "" @@ -26288,7 +26403,7 @@ msgstr "" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " +msgid "This value specifies the max number of rows that can be rendered in report view." msgstr "" #: frappe/website/doctype/web_page/web_page.js:85 @@ -26320,10 +26435,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " +msgid "This will terminate the job immediately and might be dangerous, are you sure?" msgstr "" -#: frappe/core/doctype/user/user.py:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "" @@ -26399,9 +26514,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26472,11 +26589,11 @@ msgstr "" msgid "Timeline Name" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 msgid "Timeline field must be a Link or Dynamic Link" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "" @@ -26502,10 +26619,7 @@ msgid "Timespan" msgstr "" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "" @@ -26525,9 +26639,6 @@ msgstr "" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26552,9 +26663,6 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26577,7 +26685,7 @@ msgstr "" msgid "Title Prefix" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "" @@ -26671,7 +26779,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "" @@ -26726,7 +26834,7 @@ msgstr "" msgid "Today" msgstr "Hoje" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "" @@ -26742,11 +26850,11 @@ msgstr "" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26792,7 +26900,7 @@ msgid "Tomorrow" msgstr "Amanhã" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "" @@ -26808,7 +26916,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26870,10 +26978,10 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -26916,18 +27024,18 @@ msgstr "" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " -msgstr "" +msgid "Total number of emails to sync in initial sync process" +msgstr "Número total de emails a sincronizar no processo de sincronização inicial" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "" @@ -26993,26 +27101,10 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "" @@ -27026,6 +27118,11 @@ msgstr "" msgid "Transition Rules" msgstr "" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" @@ -27040,7 +27137,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27051,7 +27148,7 @@ msgstr "" msgid "Translate Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "" @@ -27135,8 +27232,8 @@ msgstr "" msgid "Try a Naming Series" msgstr "" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "" @@ -27202,7 +27299,7 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27295,7 +27392,7 @@ msgstr "" msgid "URL for documentation or help" msgstr "" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "" @@ -27398,7 +27495,7 @@ msgstr "" msgid "Unable to update event" msgstr "" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "" @@ -27407,7 +27504,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27423,7 +27520,7 @@ msgstr "" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27470,7 +27567,7 @@ msgstr "" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "" @@ -27482,8 +27579,7 @@ msgstr "" msgid "Unlock Reference Document" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "" @@ -27499,7 +27595,7 @@ msgstr "" msgid "Unread Notification Sent" msgstr "" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "" @@ -27537,8 +27633,8 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27558,7 +27654,7 @@ msgstr "" msgid "Unzipping files..." msgstr "" -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "" @@ -27572,7 +27668,7 @@ msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Atualizar" @@ -27606,6 +27702,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27648,7 +27749,7 @@ msgstr "" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "" @@ -27656,7 +27757,7 @@ msgstr "" msgid "Updated Successfully" msgstr "" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "" @@ -27664,7 +27765,7 @@ msgstr "" msgid "Updated successfully" msgstr "" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "" @@ -27709,8 +27810,8 @@ msgstr "" msgid "Upgrade your support experience with Frappe Helpdesk" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27720,11 +27821,11 @@ msgstr "" msgid "Upload Image" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "" @@ -27821,15 +27922,11 @@ msgstr "" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "" -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "" @@ -27850,7 +27947,9 @@ msgid "Used OAuth" msgstr "" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -27859,6 +27958,7 @@ msgstr "" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -27873,11 +27973,12 @@ msgstr "" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -27886,6 +27987,7 @@ msgstr "" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -27902,17 +28004,11 @@ msgstr "" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "" - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "" @@ -27942,7 +28038,7 @@ msgstr "" msgid "User Cannot Search" msgstr "" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "" @@ -28006,11 +28102,6 @@ msgstr "" msgid "User ID Property" msgstr "" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28030,6 +28121,11 @@ msgstr "" msgid "User Image" msgstr "" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "" @@ -28048,12 +28144,12 @@ msgstr "" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28066,7 +28162,9 @@ msgstr "" msgid "User Permissions created successfully" msgstr "" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "" @@ -28132,6 +28230,10 @@ msgstr "" msgid "User does not have permission to create the new {0}" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "" @@ -28162,7 +28264,7 @@ msgstr "" msgid "User {0} cannot be disabled" msgstr "" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "" @@ -28183,7 +28285,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "" @@ -28191,7 +28293,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28212,7 +28314,7 @@ msgstr "" msgid "Username" msgstr "" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "" @@ -28296,7 +28398,7 @@ msgstr "" msgid "Validate SSL Certificate" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "" @@ -28319,8 +28421,8 @@ msgstr "" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28352,7 +28454,7 @@ msgstr "" msgid "Value To Be Set" msgstr "" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "" @@ -28368,11 +28470,11 @@ msgstr "" msgid "Value for a check field can be either 0 or 1" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" -#: frappe/model/base_document.py:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "" @@ -28397,7 +28499,7 @@ msgstr "" msgid "Value to Validate" msgstr "" -#: frappe/model/base_document.py:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "" @@ -28414,7 +28516,7 @@ msgstr "" msgid "Value {0} must in {1} format" msgstr "" -#: frappe/core/doctype/version/version_view.html:8 +#: frappe/core/doctype/version/version_view.html:9 msgid "Values Changed" msgstr "" @@ -28427,7 +28529,7 @@ msgstr "" msgid "Verification" msgstr "" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "" @@ -28489,15 +28591,7 @@ msgstr "" msgid "View Audit Trail" msgstr "" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" @@ -28509,7 +28603,7 @@ msgstr "" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "" @@ -28519,7 +28613,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28566,7 +28660,7 @@ msgstr "" msgid "View this in your browser" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "" @@ -28635,6 +28729,7 @@ msgid "Warehouse" msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "" @@ -28643,7 +28738,7 @@ msgstr "" msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "" @@ -28729,7 +28824,7 @@ msgstr "" msgid "Web Page Block" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "" @@ -28832,7 +28927,7 @@ msgstr "" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "" @@ -28845,10 +28940,6 @@ msgstr "" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -28892,7 +28983,7 @@ msgstr "" msgid "Website Search Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "" @@ -29109,11 +29200,6 @@ msgstr "" msgid "Will add \"%\" before and after the query" msgstr "" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "" - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "" @@ -29128,7 +29214,7 @@ msgstr "" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "" @@ -29206,7 +29292,7 @@ msgstr "" msgid "Workflow Data" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "" @@ -29232,11 +29318,11 @@ msgstr "" msgid "Workflow State Field" msgstr "" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "" @@ -29244,15 +29330,30 @@ msgstr "" msgid "Workflow States Don't Exist" msgstr "" -#: frappe/model/workflow.py:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29268,13 +29369,13 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29344,11 +29445,11 @@ msgstr "" msgid "Workspaces" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "" @@ -29367,11 +29468,11 @@ msgstr "" msgid "Write" msgstr "" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "" @@ -29390,13 +29491,13 @@ msgstr "" msgid "Y Axis" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" msgstr "" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "" @@ -29448,16 +29549,17 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Sim" @@ -29485,6 +29587,18 @@ msgstr "" msgid "You Liked" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "" @@ -29523,20 +29637,20 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29560,7 +29674,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:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29586,13 +29700,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " +msgid "You can also copy-paste this" msgstr "" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "" +#: frappe/templates/emails/user_invitation_expired.html:8 +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 "" @@ -29605,11 +29723,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29629,7 +29747,7 @@ msgstr "" msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "" -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "" @@ -29647,7 +29765,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "" @@ -29659,11 +29777,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29681,7 +29799,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:385 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29711,7 +29829,7 @@ msgstr "" msgid "You created this" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "" @@ -29724,15 +29842,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29744,11 +29862,11 @@ msgstr "" msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "" @@ -29756,19 +29874,19 @@ msgstr "" msgid "You don't have permission to get a report on: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " +msgid "You have a new message from:" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29776,11 +29894,7 @@ msgstr "" msgid "You have not entered a value. The field will be set to empty." msgstr "" -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "" @@ -29800,7 +29914,7 @@ msgstr "" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29817,11 +29931,11 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "" @@ -29845,7 +29959,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "" @@ -29853,13 +29967,13 @@ msgstr "" msgid "You need to be logged in to access this page" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "" #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " -msgstr "" +msgid "You need to create these first:" +msgstr "Precisa de criar estes primeiro:" #: frappe/www/login.html:76 msgid "You need to enable JavaScript for your app to work." @@ -29893,11 +30007,19 @@ msgstr "" msgid "You need {0} permission to fetch values from {1} {2}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "" @@ -29928,10 +30050,26 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "" @@ -29961,7 +30099,7 @@ msgstr "" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "" @@ -29985,10 +30123,22 @@ msgstr "" msgid "Your email address" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "" @@ -30011,7 +30161,11 @@ msgstr "" msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "" -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "" @@ -30033,7 +30187,7 @@ msgstr "" msgid "Zero means send records updated at anytime" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" msgstr "" @@ -30055,10 +30209,6 @@ msgstr "" msgid "`job_id` paramater is required for deduplication." msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30093,7 +30243,7 @@ msgstr "" msgid "cProfile Output" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "" @@ -30238,12 +30388,12 @@ msgstr "" msgid "email" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "" @@ -30300,7 +30450,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "" @@ -30315,11 +30465,6 @@ msgstr "" msgid "import" msgstr "" -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "" - #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "" @@ -30328,7 +30473,7 @@ msgstr "" msgid "just now" msgstr "" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "" @@ -30357,7 +30502,7 @@ msgstr "" msgid "logged in" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30378,11 +30523,6 @@ msgstr "" msgid "merged {0} into {1}" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "" - #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json @@ -30406,7 +30546,7 @@ msgstr "" msgid "module name..." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "novo" @@ -30535,10 +30675,6 @@ msgstr "" msgid "red" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "renomeado de {0} para {1}" @@ -30594,19 +30730,19 @@ msgstr "" msgid "short" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "desde ontem" @@ -30659,6 +30795,10 @@ msgstr "" msgid "this shouldn't break" msgstr "" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "para o seu navegador" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30686,7 +30826,7 @@ msgstr "" msgid "via Assignment Rule" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "" @@ -30700,7 +30840,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "" @@ -30733,10 +30873,15 @@ msgstr "" msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "" +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json @@ -30764,11 +30909,11 @@ msgstr "" msgid "{0}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "" @@ -30794,19 +30939,19 @@ msgstr "" msgid "{0} Calendar" msgstr "{0} Calendário" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "{0} Campos" @@ -30830,6 +30975,10 @@ msgstr "" msgid "{0} List" msgstr "" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "{0} M" @@ -30842,7 +30991,7 @@ msgstr "" msgid "{0} Name" msgstr "" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "" @@ -30852,11 +31001,10 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "" @@ -30881,7 +31029,15 @@ msgstr "" msgid "{0} added" msgstr "" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "" @@ -30893,7 +31049,7 @@ msgstr "" msgid "{0} already unsubscribed for {1} {2}" msgstr "" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "{0} e {1}" @@ -30901,7 +31057,7 @@ msgstr "{0} e {1}" msgid "{0} are currently {1}" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "" @@ -30918,7 +31074,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -30960,11 +31116,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "{0} comentários" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." msgstr "" @@ -30977,7 +31129,7 @@ msgstr "{0} criado com sucesso" msgid "{0} created this" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "" @@ -30999,7 +31151,7 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31031,7 +31183,7 @@ msgstr "" msgid "{0} hours ago" msgstr "há {0} horas" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "" @@ -31040,23 +31192,23 @@ msgstr "" msgid "{0} in row {1} cannot have both URL and child items" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "{0} é um campo obrigatório" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "" @@ -31065,27 +31217,27 @@ msgstr "" msgid "{0} is currently {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "" @@ -31093,7 +31245,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "{0} é obrigatório" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31113,12 +31265,12 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "" @@ -31126,15 +31278,15 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "{0} não é um número de telefone válido" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 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." @@ -31150,55 +31302,59 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} não é um formato de relatório válido. O formato do relatório deve ser um dos seguintes {1}" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 -#: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: 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/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} itens selecionados" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31231,35 +31387,35 @@ msgstr "há {0} minutos" msgid "{0} months ago" msgstr "há {0} meses" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "{0} deve ser posterior a {1}" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} deve ser um dos {1}" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "{0} deve ser definido primeiro" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "{0} deve ser único" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "" @@ -31267,7 +31423,7 @@ msgstr "" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "{0} não é um estado válido" @@ -31280,11 +31436,11 @@ msgid "{0} not found" msgstr "{0} não foi encontrado" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} de {1}" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31293,7 +31449,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "{0} ou {1}" @@ -31317,6 +31473,10 @@ msgstr "{0} registos eliminados" msgid "{0} records will be exported" msgstr "Vão ser exportados {0} registos" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31326,15 +31486,29 @@ msgstr "" msgid "{0} removed their assignment." msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" +msgstr "{0} linha #{1}:" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "{0} guardado com sucesso" @@ -31354,11 +31528,11 @@ msgstr "" msgid "{0} shared this document with {1}" msgstr "{0} partilhou este documento com {1}" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "" @@ -31371,8 +31545,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "" @@ -31382,7 +31556,7 @@ msgstr "" #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "" @@ -31390,7 +31564,7 @@ msgstr "" msgid "{0} un-shared this document with {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "" @@ -31426,15 +31600,15 @@ msgstr "{0} {1} adicionado" msgid "{0} {1} added to Dashboard {2}" msgstr "" -#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "{0} {1} já existe" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "" @@ -31450,11 +31624,11 @@ msgstr "" msgid "{0} {1} not found" msgstr "{0} {1} não foi encontrado" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 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:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "" @@ -31462,79 +31636,79 @@ msgstr "" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "" -#: frappe/model/base_document.py:1120 +#: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "{0}: Não é possível Corrigir sem Cancelar" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "{0}: Não é possível Cancelar sem Submeter" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 msgid "{0}: Cannot set import as {1} is not importable" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 +#: 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:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 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:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "" @@ -31542,7 +31716,7 @@ msgstr "" msgid "{0}: Other permission rules may also apply" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "" @@ -31550,7 +31724,7 @@ msgstr "" msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "" @@ -31563,11 +31737,11 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "" @@ -31591,7 +31765,7 @@ msgstr "" msgid "{count} rows selected" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "" @@ -31599,11 +31773,11 @@ msgstr "" msgid "{} Complete" msgstr "{} Concluído" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
    {}" msgstr "" @@ -31629,7 +31803,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/pt_BR.po b/frappe/locale/pt_BR.po index eaa758a7b2..92acb4f896 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-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-22 21:46\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Portuguese, Brazilian\n" "MIME-Version: 1.0\n" @@ -18,10 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: pt_BR\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr "" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json @@ -61,7 +57,7 @@ msgstr "" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" msgstr "" @@ -74,7 +70,7 @@ msgstr "" msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "" @@ -82,19 +78,23 @@ msgstr "" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" msgstr "" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "" @@ -102,11 +102,11 @@ msgstr "" msgid "(Mandatory)" msgstr "" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" msgstr "" @@ -122,7 +122,7 @@ msgstr "" msgid "0 is highest" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "" @@ -140,15 +140,11 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "" @@ -157,17 +153,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "" @@ -179,37 +175,47 @@ msgstr "" msgid "1 record will be exported" msgstr "" -#: frappe/tests/test_utils.py:711 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "" + +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "" @@ -225,7 +231,7 @@ msgstr "" msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "" @@ -245,6 +251,13 @@ msgstr "" msgid "<=" msgstr "" +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "" @@ -254,6 +267,16 @@ msgstr "" msgid "
    Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
    " msgstr "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

    Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

    " +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

    Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

    " +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -479,7 +502,7 @@ msgid "

    To interact with above HTML you will have to use `root_element` as a p "" msgstr "" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

    " msgstr "" @@ -546,7 +569,7 @@ msgstr "" msgid ">=" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" @@ -555,15 +578,16 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." msgstr "" #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "" @@ -576,7 +600,7 @@ msgstr "Uma lista de recursos que o aplicativo cliente terá acesso a depois que msgid "A new account has been created for you at {0}" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "" @@ -675,13 +699,17 @@ msgstr "" msgid "API Endpoint Args" msgstr "" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -700,6 +728,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -720,7 +752,7 @@ msgstr "" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -767,6 +799,20 @@ msgstr "" msgid "About {0} seconds remaining" msgstr "" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "Aceito" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -792,7 +838,7 @@ msgstr "" msgid "Access Token URL" msgstr "" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "" @@ -856,7 +902,7 @@ msgstr "Ação / Rota" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "" @@ -908,7 +954,7 @@ msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Ações" @@ -965,7 +1011,7 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -976,7 +1022,7 @@ msgstr "" msgid "Add" msgstr "Adicionar" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -988,7 +1034,7 @@ msgstr "" msgid "Add A New Rule" msgstr "" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "" @@ -1008,7 +1054,7 @@ msgstr "" msgid "Add Border at Top" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "" @@ -1021,10 +1067,10 @@ msgid "Add Child" msgstr "Adicionar Sub-item" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "" @@ -1083,7 +1129,7 @@ msgstr "Adicione Participantes" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "" @@ -1116,12 +1162,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "" @@ -1210,7 +1256,7 @@ msgstr "" msgid "Add page break" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "" @@ -1248,7 +1294,7 @@ msgstr "" msgid "Add {0}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" msgstr "" @@ -1291,6 +1337,7 @@ msgstr "Permissões Adicionais" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1299,6 +1346,7 @@ msgstr "Endereço" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "" @@ -1306,6 +1354,7 @@ msgstr "" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "" @@ -1356,7 +1405,7 @@ msgstr "" msgid "Adds a custom field to a DocType" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "" @@ -1370,7 +1419,6 @@ msgstr "" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1383,11 +1431,11 @@ msgstr "" msgid "Administrator" msgstr "Administrador" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1408,8 +1456,8 @@ msgstr "" msgid "Advanced Control" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" msgstr "" @@ -1468,7 +1516,7 @@ msgstr "" msgid "After Submit" msgstr "Após o envio" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "" @@ -1495,11 +1543,11 @@ msgstr "Alerta" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1564,7 +1612,7 @@ msgstr "" msgid "All Records" msgstr "" -#: frappe/public/js/frappe/form/form.js:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "" @@ -1624,8 +1672,8 @@ msgstr "" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " -msgstr "" +msgid "Allow Consecutive Login Attempts" +msgstr "Permitir Tentativas Consecutivas de Login" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 msgid "Allow Google Calendar Access" @@ -1645,11 +1693,6 @@ msgstr "Permitir convidado" msgid "Allow Guest to View" msgstr "Permitir visualização de convidado" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1698,7 +1741,7 @@ msgid "Allow Print for Cancelled" msgstr "Permitir impressão para cancelado" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "" @@ -1930,7 +1973,7 @@ msgstr "" msgid "Allows skipping authorization if a user has active tokens." msgstr "" -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "" @@ -1938,11 +1981,11 @@ msgstr "" msgid "Already in the following Users ToDo list:{0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "" @@ -1951,6 +1994,12 @@ msgstr "" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2002,10 +2051,8 @@ msgstr "" msgid "Amended Documents" msgstr "" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "" @@ -2029,6 +2076,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2122,10 +2174,12 @@ msgid "App Logo" msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2196,6 +2250,10 @@ msgstr "Nome da Aplicação" msgid "Application Version" msgstr "Versão do aplicativo" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2205,7 +2263,7 @@ msgstr "Aplicado em" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2253,7 +2311,7 @@ msgstr "Aplicar esta regra se o usuário é o proprietário" msgid "Apply to all Documents Types" msgstr "" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "" @@ -2286,7 +2344,11 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2314,11 +2376,15 @@ msgctxt "Confirmation dialog message" msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:191 msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2326,7 +2392,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2381,6 +2447,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2390,7 +2462,7 @@ msgstr "Atribuir condição" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2453,6 +2525,11 @@ msgstr "Atribuído A" msgid "Assigned To/Owner" msgstr "" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "" @@ -2522,7 +2599,13 @@ msgstr "" msgid "Assignments" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -2602,7 +2685,7 @@ msgstr "Relacionado ao campo" msgid "Attached To Name" msgstr "Anexado Para Nome" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "" @@ -2618,7 +2701,7 @@ msgstr "Anexo" msgid "Attachment Limit (MB)" msgstr "Limite de Anexo (MB)" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "" @@ -2636,15 +2719,15 @@ msgstr "Anexo Removido" #. Label of the attachments (Code) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "Anexos" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "" @@ -2667,6 +2750,10 @@ msgstr "" msgid "Auth URL Data" msgstr "Dados de URL de autenticação" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "" + #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authenticate as Service Principal" @@ -2684,8 +2771,8 @@ msgid "Authentication" msgstr "" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " -msgstr "" +msgid "Authentication Apps you can use are:" +msgstr "Os aplicativos de autenticação que você pode usar são:" #: frappe/email/doctype/email_account/email_account.py:339 msgid "Authentication failed while receiving emails from Email Account: {0}." @@ -2798,11 +2885,11 @@ msgstr "" msgid "Auto Repeat Day" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "" @@ -2810,11 +2897,16 @@ msgstr "" msgid "Auto Repeat Schedule" msgstr "" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "" @@ -2858,7 +2950,7 @@ msgstr "" msgid "Auto follow documents that you create" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "" @@ -2906,7 +2998,7 @@ msgstr "" msgid "Automatically Assign Documents to Users" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "" @@ -2920,11 +3012,6 @@ msgstr "" msgid "Automation" msgstr "" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3196,8 +3283,8 @@ msgstr "URL Base" #. Label of the based_on (Link) field in DocType 'Language' #: frappe/core/doctype/language/language.json -#: frappe/printing/page/print/print.js:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "Baseado Em" @@ -3314,10 +3401,8 @@ msgstr "" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "" @@ -3347,64 +3432,6 @@ msgstr "Bloquear Módulos" msgid "Blocked" msgstr "Bloqueado" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "Introdução do Blog" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "Introdução do Blog" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "Título do Blog" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3501,13 +3528,6 @@ msgstr "" msgid "Breadcrumbs" msgstr "" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3565,15 +3585,15 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" msgstr "" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "" @@ -3588,7 +3608,7 @@ msgstr "" msgid "Bulk Update" msgstr "" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "" @@ -3600,7 +3620,7 @@ msgstr "" msgid "Bulk operations only support up to 500 documents." msgstr "" -#: frappe/model/workflow.py:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "" @@ -3730,16 +3750,6 @@ msgstr "" msgid "CSV" msgstr "" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "Etiqueta CTA" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "URL CTA" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3790,11 +3800,6 @@ msgstr "Apelo à ação" msgid "Call To Action URL" msgstr "URL de apelo à ação" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -3812,7 +3817,7 @@ msgid "Camera" msgstr "" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3848,7 +3853,7 @@ msgstr "" msgid "Can not rename as column {0} is already present on DocType." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "" @@ -3872,14 +3877,15 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3897,16 +3903,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -3944,11 +3952,11 @@ msgstr "" msgid "Cannot Remove" msgstr "" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3956,7 +3964,7 @@ msgstr "" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "" @@ -3964,11 +3972,11 @@ msgstr "" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1013 +#: frappe/model/document.py:1017 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -3976,11 +3984,11 @@ msgstr "" msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "" @@ -3992,11 +4000,11 @@ msgstr "" msgid "Cannot create private workspace of other users" msgstr "" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4031,7 +4039,7 @@ msgstr "" msgid "Cannot delete {0}" msgstr "" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" msgstr "" @@ -4039,7 +4047,7 @@ msgstr "" msgid "Cannot edit Standard Dashboards" msgstr "" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "" @@ -4051,7 +4059,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" -#: frappe/model/document.py:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "" @@ -4059,8 +4067,8 @@ msgstr "" msgid "Cannot edit filters for standard charts" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "" @@ -4068,27 +4076,27 @@ msgstr "" msgid "Cannot edit standard fields" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:884 msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1132 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "" @@ -4100,11 +4108,11 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "" @@ -4112,7 +4120,7 @@ msgstr "" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "" @@ -4129,11 +4137,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4201,15 +4209,6 @@ msgstr "Centro" msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4247,8 +4246,8 @@ msgstr "" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
    \n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " -msgstr "" +"Warning: Incorrectly updating counters can prevent documents from getting created." +msgstr "Altere o número de sequência inicial/atual de uma série existente.
    Aviso: A atualização incorreta de contadores pode impedir que os documentos sejam criados." #. Label of the changed_at (Datetime) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -4317,7 +4316,7 @@ msgstr "Fonte do gráfico" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "" @@ -4350,7 +4349,7 @@ msgstr "" msgid "Check" msgstr "Verifica" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "" @@ -4358,7 +4357,7 @@ msgstr "" msgid "Check columns to select, drag to set order." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "" @@ -4399,11 +4398,6 @@ msgstr "" msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "" -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "" @@ -4413,17 +4407,17 @@ msgstr "" msgid "Child Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4452,6 +4446,7 @@ 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" #. 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 msgid "City" msgstr "Cidade" @@ -4466,7 +4461,7 @@ msgstr "Cidade/Município" msgid "Clear" msgstr "" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "" @@ -4478,7 +4473,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4504,7 +4499,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "" @@ -4516,11 +4511,15 @@ msgstr "" msgid "Click On Customize to add your first widget" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "" @@ -4551,24 +4550,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4746,7 +4745,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Recolher Todos" @@ -4801,7 +4800,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:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4857,11 +4856,11 @@ msgstr "" msgid "Column Name cannot be empty" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4888,7 +4887,7 @@ msgstr "Colunas" msgid "Columns / Fields" msgstr "Colunas / Campos" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "" @@ -4930,16 +4929,6 @@ msgstr "" msgid "Comment can only be edited by the owner" msgstr "" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "" @@ -4947,7 +4936,7 @@ msgstr "" #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "Comentários" @@ -4956,7 +4945,7 @@ msgstr "Comentários" msgid "Comments and Communications will be associated with this linked document" msgstr "Comentários e comunicações serão associados com este documento relacionado" -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "" @@ -5028,12 +5017,12 @@ msgid "Company Name" msgstr "Nome da Empresa" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "" @@ -5113,8 +5102,8 @@ msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5128,6 +5117,11 @@ msgstr "" msgid "Condition JSON" msgstr "" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5153,11 +5147,11 @@ msgstr "" msgid "Configuration" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5182,7 +5176,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5201,7 +5195,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "" @@ -5228,7 +5222,7 @@ msgstr "" msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "" @@ -5246,8 +5240,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "" @@ -5298,6 +5292,10 @@ msgstr "" msgid "Contact" msgstr "" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
    {0}" +msgstr "" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5355,15 +5353,13 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5371,24 +5367,12 @@ msgstr "" msgid "Content" msgstr "" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "Conteúdo (HTML)" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "Conteúdo (Markdown)" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "" @@ -5456,7 +5440,7 @@ msgstr "" msgid "Copy embed code" msgstr "" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "" @@ -5464,12 +5448,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "" + #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" msgstr "Direitos autorais" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5477,7 +5465,7 @@ msgstr "" msgid "Core Modules {0} cannot be searched in Global Search." msgstr "" -#: frappe/printing/page/print/print.js:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "" @@ -5485,7 +5473,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "" -#: frappe/model/document.py:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "" @@ -5493,15 +5481,15 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " -msgstr "" +msgid "Could not start up:" +msgstr "Não foi possível iniciar:" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "" @@ -5546,13 +5534,14 @@ msgstr "Contador" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "País" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "" @@ -5584,13 +5573,13 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Criar" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5604,7 +5593,7 @@ msgid "Create Card" msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "" @@ -5638,12 +5627,12 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5651,7 +5640,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "" @@ -5663,7 +5652,7 @@ msgstr "" msgid "Create a Reminder" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "" @@ -5671,11 +5660,11 @@ msgstr "" msgid "Create a new record" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "" @@ -5691,7 +5680,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "" @@ -5701,7 +5690,7 @@ msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "" @@ -5717,7 +5706,7 @@ msgstr "" msgid "Created By" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "" @@ -5729,7 +5718,7 @@ msgstr "" msgid "Created On" msgstr "" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "" @@ -6038,7 +6027,7 @@ msgstr "" #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "" @@ -6066,14 +6055,14 @@ msgstr "" msgid "Customizations for {0} exported to:
    {1}" msgstr "" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6092,7 +6081,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "" @@ -6170,7 +6159,7 @@ msgstr "Diário" msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "" -#: frappe/desk/doctype/event/event.py:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "" @@ -6217,7 +6206,7 @@ msgstr "" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "" @@ -6276,7 +6265,6 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6289,7 +6277,6 @@ msgstr "" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6325,7 +6312,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "" @@ -6356,7 +6343,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6494,11 +6481,11 @@ msgstr "" msgid "Debug Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "" @@ -6660,11 +6647,11 @@ msgstr "" msgid "Default display currency" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 msgid "Default value for {0} must be in the list of options." msgstr "" @@ -6698,6 +6685,12 @@ msgstr "" msgid "Defines actions on states and the next step and allowed roles." msgstr "" +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6715,22 +6708,27 @@ 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/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Excluir" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Excluir" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "Excluir" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "" @@ -6739,6 +6737,12 @@ msgstr "" 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 +msgid "Delete Background Exported Reports After (Hours)" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6748,7 +6752,7 @@ msgstr "" msgid "Delete Data" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6762,7 +6766,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6771,7 +6775,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "" @@ -6804,12 +6808,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6845,11 +6849,15 @@ msgstr "" msgid "Deleted Name" msgstr "Nome Excluído" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Excluído!" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "" @@ -6864,8 +6872,8 @@ msgstr "" #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " -msgstr "" +msgid "Deletion Steps" +msgstr "Etapas de exclusão" #: frappe/core/doctype/page/page.py:110 #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 @@ -6881,7 +6889,7 @@ msgstr "" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "" @@ -6908,7 +6916,7 @@ msgstr "Departamento" msgid "Dependencies" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "" @@ -6943,7 +6951,6 @@ msgstr "" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -6964,7 +6971,6 @@ msgstr "" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -6974,11 +6980,6 @@ msgstr "" msgid "Description" msgstr "Descrição" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "Descrição da página de listagem, em texto simples, apenas algumas linhas. (máx. 200 caracteres)" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -7062,7 +7063,7 @@ msgstr "" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "" @@ -7123,11 +7124,6 @@ msgstr "" msgid "Disable Comment Count" msgstr "" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "Desativar comentários" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7145,11 +7141,6 @@ msgstr "Desativar Contagem" msgid "Disable Document Sharing" msgstr "" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "" @@ -7159,6 +7150,11 @@ msgstr "" msgid "Disable SMTP server authentication" msgstr "Desativar autenticação do servidor SMTP" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7204,7 +7200,6 @@ msgstr "" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7219,7 +7214,6 @@ msgstr "" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "Desativado" @@ -7230,7 +7224,7 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "" @@ -7248,7 +7242,7 @@ msgstr "" msgid "Discard {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "" @@ -7271,7 +7265,7 @@ msgstr "" msgid "Discussion Topic" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7307,19 +7301,23 @@ msgstr "" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " -msgstr "" +msgid "Do Not Create New User" +msgstr "Não criar novo usuário" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7410,7 +7408,7 @@ msgstr "" msgid "DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1577 +#: frappe/core/doctype/doctype/doctype.py:1578 msgid "DocType {0} provided for the field {1} must have atleast one Link field" msgstr "" @@ -7457,11 +7455,11 @@ msgstr "" msgid "DocType View" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "" @@ -7470,7 +7468,7 @@ msgstr "" msgid "DocType is a Table / Form in the application." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "" @@ -7503,7 +7501,7 @@ msgstr "" msgid "DocType {} not found" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "" @@ -7517,7 +7515,7 @@ msgstr "" msgid "Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "" @@ -7579,31 +7577,29 @@ msgstr "" msgid "Document Links" msgstr "Links de documentos" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7745,13 +7741,13 @@ msgstr "Título do documento" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 msgid "Document Type and Function are required to create a number card" msgstr "" @@ -7788,7 +7784,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "" @@ -7796,15 +7792,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "" @@ -7946,13 +7942,13 @@ msgstr "Rosquinha" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "Baixar" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "Baixar" @@ -7979,7 +7975,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "" @@ -8042,7 +8038,7 @@ msgstr "" msgid "Drag to add state" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "" @@ -8075,7 +8071,7 @@ msgstr "" msgid "Duplicate Filter Name" msgstr "" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "" @@ -8174,17 +8170,17 @@ msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8192,7 +8188,7 @@ msgstr "" msgid "Edit" msgstr "Editar" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Editar" @@ -8202,7 +8198,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Editar" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "Editar" @@ -8231,7 +8227,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8249,7 +8245,7 @@ msgstr "" msgid "Edit Footer" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "" @@ -8334,7 +8330,7 @@ msgstr "" msgid "Edit to add content" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "" @@ -8343,7 +8339,7 @@ msgstr "" msgid "Edit your workflow visually using the Workflow Builder." msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "" @@ -8351,7 +8347,7 @@ msgstr "" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "" @@ -8390,11 +8386,14 @@ msgstr "" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8403,6 +8402,7 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8412,6 +8412,8 @@ msgstr "" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "" @@ -8443,7 +8445,7 @@ msgstr "" msgid "Email Account Name" msgstr "" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "" @@ -8531,6 +8533,7 @@ msgid "Email IDs" msgstr "" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "" @@ -8574,10 +8577,10 @@ msgstr "" msgid "Email Rule" msgstr "" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" -msgstr "" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" +msgstr "E-mail enviado em" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType @@ -8642,11 +8645,11 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "" @@ -8685,7 +8688,7 @@ msgstr "" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8693,7 +8696,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -8712,7 +8715,7 @@ msgstr "Permitir" msgid "Enable Address Autocompletion" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "" @@ -8738,11 +8741,6 @@ msgstr "Ativação de comentários" msgid "Enable Dynamic Client Registration" msgstr "" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -8836,11 +8834,6 @@ msgstr "Ativar segurança" msgid "Enable Social Login" msgstr "Ativar Login Social" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "Ativar compartilhamento social" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "" @@ -8848,7 +8841,7 @@ msgstr "" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "" @@ -8860,12 +8853,6 @@ msgstr "" msgid "Enable developer mode to create a standard Web Template" msgstr "" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "" - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -8888,6 +8875,7 @@ msgstr "" #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -8900,6 +8888,7 @@ msgstr "" #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "" @@ -8925,14 +8914,10 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "" - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." msgstr "" #. Description of the 'Queue in Background (BETA)' (Check) field in DocType @@ -8949,11 +8934,11 @@ msgstr "" msgid "Encrypt Backups" msgstr "" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "" @@ -8965,7 +8950,7 @@ msgstr "" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -8981,6 +8966,10 @@ msgstr "Campo de data final" msgid "End Date cannot be before Start Date!" msgstr "" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9025,7 +9014,7 @@ msgstr "" msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "" @@ -9095,10 +9084,17 @@ msgstr "" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9108,7 +9104,7 @@ msgstr "" msgid "Error" msgstr "Erro" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "Erro" @@ -9128,7 +9124,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 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 "" @@ -9156,9 +9152,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "" @@ -9178,19 +9174,19 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "" @@ -9247,7 +9243,7 @@ msgstr "" msgid "Events" msgstr "" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "" @@ -9331,7 +9327,7 @@ msgstr "" msgid "Execute Console script" msgstr "" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "" @@ -9339,7 +9335,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "" @@ -9365,12 +9361,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Expandir Todos" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9398,7 +9394,9 @@ msgid "Expire Notification On" msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "Expirado" @@ -9426,13 +9424,13 @@ msgstr "Tempo de expiração da página de imagem de código QR" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9469,7 +9467,7 @@ msgstr "Exportar de" msgid "Export Import Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "" @@ -9478,11 +9476,11 @@ msgstr "" msgid "Export Type" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "" @@ -9490,6 +9488,10 @@ msgstr "" msgid "Export as zip" msgstr "" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "" @@ -9595,7 +9597,7 @@ msgstr "" msgid "Failed Logins (Last 30 days)" msgstr "" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "" @@ -9612,7 +9614,7 @@ msgstr "" msgid "Failed to complete setup" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "" @@ -9621,15 +9623,15 @@ msgstr "" msgid "Failed to connect to server" msgstr "" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "" @@ -9637,8 +9639,8 @@ msgstr "" msgid "Failed to enable scheduler: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "" @@ -9654,7 +9656,7 @@ msgstr "" msgid "Failed to generate preview of series" msgstr "" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "" @@ -9674,11 +9676,11 @@ msgstr "" msgid "Failed to optimize image: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "" @@ -9728,12 +9730,6 @@ msgstr "" msgid "Fax" msgstr "" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "Comentários" @@ -9791,17 +9787,17 @@ msgstr "" #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "" @@ -9814,7 +9810,7 @@ msgstr "" msgid "Field Description" msgstr "Descrição do Campo" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9844,7 +9840,7 @@ msgstr "" msgid "Field Type" msgstr "" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "" @@ -9870,11 +9866,11 @@ msgstr "" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "" -#: frappe/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "" -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9892,20 +9888,20 @@ 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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "" @@ -9921,15 +9917,15 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "" @@ -9952,7 +9948,7 @@ msgstr "" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -9965,7 +9961,7 @@ msgstr "" msgid "Fields Multicheck" msgstr "" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "" @@ -9973,7 +9969,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10001,7 +9997,7 @@ msgstr "" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10014,7 +10010,7 @@ msgstr "" msgid "File" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "" @@ -10067,7 +10063,7 @@ msgstr "URL do arquivo" msgid "File backup is ready" msgstr "" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "" @@ -10075,7 +10071,7 @@ msgstr "" msgid "File not attached" msgstr "" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "" @@ -10084,11 +10080,11 @@ msgstr "" msgid "File too big" msgstr "" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "" @@ -10102,10 +10098,10 @@ msgstr "" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10142,11 +10138,11 @@ msgstr "" msgid "Filter Values" msgstr "Valores de filtro" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10164,7 +10160,6 @@ msgstr "" msgid "Filtered Records" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "" @@ -10179,7 +10174,9 @@ msgstr "" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10201,6 +10198,11 @@ msgstr "Configuração de Filtros" msgid "Filters Display" msgstr "Exibição dos Filtros" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10213,11 +10215,11 @@ msgstr "Filtros JSON" msgid "Filters Section" msgstr "Seção de Filtros" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "" @@ -10230,18 +10232,18 @@ msgstr "" msgid "Filters {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1427 +#: frappe/public/js/frappe/views/reports/report_view.js:1429 msgid "Filters:" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 msgid "Find '{0}' in ..." msgstr "" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 msgid "Find {0} in {1}" msgstr "" @@ -10265,8 +10267,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "" @@ -10275,10 +10281,6 @@ msgstr "" msgid "First Success Message" msgstr "Primeira mensagem de sucesso" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:49 -msgid "First Transaction" -msgstr "" - #: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." msgstr "" @@ -10329,11 +10331,11 @@ msgstr "Precisão de Casas Decimais" msgid "Fold" msgstr "Dobrar" -#: frappe/core/doctype/doctype/doctype.py:1450 +#: frappe/core/doctype/doctype/doctype.py:1451 msgid "Fold can not be at the end of the form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1448 +#: frappe/core/doctype/doctype/doctype.py:1449 msgid "Fold must come before a Section Break" msgstr "" @@ -10351,7 +10353,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "" -#: frappe/core/doctype/file/file.py:472 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "" @@ -10458,7 +10460,7 @@ msgstr "" msgid "Footer HTML" msgstr "HTML de rodapé" -#: frappe/printing/doctype/letter_head/letter_head.py:75 +#: frappe/printing/doctype/letter_head/letter_head.py:81 msgid "Footer HTML set from attachment {0}" msgstr "" @@ -10495,7 +10497,7 @@ msgstr "Modelo de rodapé" msgid "Footer Template Values" msgstr "Valores de modelo de rodapé" -#: frappe/printing/page/print/print.js:116 +#: frappe/printing/page/print/print.js:129 msgid "Footer might not be visible as {0} option is disabled" msgstr "" @@ -10553,8 +10555,8 @@ msgstr "" msgid "For Value" msgstr "Por valor" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10580,12 +10582,6 @@ msgstr "Por exemplo: {} Abra" msgid "For help see Client Script API and Examples" msgstr "" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "" - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "" @@ -10600,7 +10596,7 @@ msgstr "" msgid "For updating, you can update only selective columns." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "" @@ -10655,7 +10651,7 @@ 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:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "" @@ -10715,6 +10711,11 @@ msgstr "" msgid "Format Data" msgstr "Formato de dados" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "" @@ -10742,7 +10743,15 @@ msgstr "Unidades Fracionadas" msgid "Frappe" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "" @@ -10831,7 +10840,7 @@ msgstr "Data De" msgid "From Date Field" msgstr "Do campo de data" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "" @@ -10858,18 +10867,16 @@ msgstr "Cheio" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "" @@ -10895,12 +10902,12 @@ msgstr "" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" +msgid "Further sub-groups can only be created under records marked as 'Group'" msgstr "" #: frappe/core/doctype/communication/communication.js:291 @@ -10960,7 +10967,7 @@ msgstr "" msgid "Generate Keys" msgstr "Gerar Chaves" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "" @@ -10968,8 +10975,14 @@ msgstr "" msgid "Generate Random Password" msgstr "" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "" @@ -10992,7 +11005,7 @@ msgstr "Geolocalização" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "" @@ -11128,7 +11141,7 @@ msgid "Go to this URL after completing the form" msgstr "" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "" @@ -11176,10 +11189,6 @@ msgstr "" msgid "Google Calendar" msgstr "" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
    {0}" -msgstr "" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "" @@ -11194,7 +11203,7 @@ msgstr "" #: frappe/integrations/doctype/google_calendar/google_calendar.py:252 msgid "Google Calendar - Could not find Calendar for {0}, error code {1}." -msgstr "" +msgstr "Google Agenda - Não foi possível encontrar o Agenda para {0}, código de erro {1}." #: frappe/integrations/doctype/google_contacts/google_contacts.py:232 msgid "Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}." @@ -11298,11 +11307,6 @@ msgstr "" msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "" -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11379,14 +11383,10 @@ msgstr "Agrupar por tipo" msgid "Group By field is required to create a dashboard chart" msgstr "" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "Grupo de Nós" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11436,7 +11436,6 @@ msgstr "" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11447,9 +11446,8 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11553,7 +11551,7 @@ msgstr "Cabeçalho" msgid "Header HTML" msgstr "HTML de cabeçalho" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "" @@ -11611,6 +11609,12 @@ msgstr "Mapa de calor" msgid "Hello" msgstr "" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "Olá," + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11676,7 +11680,7 @@ msgstr "" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "" @@ -11712,7 +11716,7 @@ msgstr "" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11745,11 +11749,6 @@ msgstr "Ocultar borda" msgid "Hide Buttons" msgstr "" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "Ocultar CTA" - #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json @@ -11829,7 +11828,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -11843,7 +11842,7 @@ msgstr "" msgid "Hide descendant records of For Value." msgstr "" -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "" @@ -11892,11 +11891,8 @@ 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:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -11984,16 +11980,16 @@ msgstr "" #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -12089,9 +12085,9 @@ msgstr "" msgid "If Checked workflow status will not override status in list view" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "" @@ -12219,6 +12215,10 @@ msgstr "" msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12250,7 +12250,11 @@ msgstr "" msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "" -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "" @@ -12307,12 +12311,12 @@ msgstr "Ignorar anexos maiores que este tamanho" msgid "Ignored Apps" msgstr "Aplicativos ignorados" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "" @@ -12373,11 +12377,11 @@ msgstr "" msgid "Image Width" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 msgid "Image field must be a valid fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "" @@ -12399,15 +12403,15 @@ msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "" @@ -12433,7 +12437,7 @@ msgstr "Implícito" msgid "Import" msgstr "Importar" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "Importar" @@ -12661,15 +12665,16 @@ msgstr "" msgid "Include Web View Link in Email" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "" @@ -12716,7 +12721,7 @@ msgstr "" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "" @@ -12728,7 +12733,7 @@ msgstr "" msgid "Incorrect URL" msgstr "" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "" @@ -12736,11 +12741,11 @@ msgstr "" msgid "Incorrect Verification code" msgstr "" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "" @@ -12752,7 +12757,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "" @@ -12827,7 +12832,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "" @@ -12843,7 +12848,7 @@ msgstr "" msgid "Insert Below" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "" @@ -12861,8 +12866,12 @@ msgstr "Inserir novos registros" msgid "Insert Style" msgstr "Inserir Estilo" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "" @@ -12879,7 +12888,7 @@ msgid "Installed Applications" msgstr "" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "" @@ -12896,19 +12905,19 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" msgstr "" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "" @@ -13012,9 +13021,9 @@ msgid "Invalid" msgstr "" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "" @@ -13022,7 +13031,7 @@ msgstr "" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "" @@ -13038,7 +13047,7 @@ msgstr "" msgid "Invalid Code. Please try again." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "" @@ -13058,16 +13067,20 @@ msgstr "" msgid "Invalid DocType: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13099,7 +13112,7 @@ msgstr "" msgid "Invalid Mail Server. Please rectify and try again." msgstr "" -#: frappe/model/naming.py:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "" @@ -13108,8 +13121,8 @@ msgstr "" msgid "Invalid Operation" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "" @@ -13121,25 +13134,25 @@ msgstr "" msgid "Invalid Output Format" msgstr "" -#: frappe/model/base_document.py:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "" @@ -13148,7 +13161,7 @@ msgstr "" msgid "Invalid Search Field {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "" @@ -13156,8 +13169,8 @@ msgstr "" msgid "Invalid Transition" msgstr "" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13171,47 +13184,51 @@ msgstr "" msgid "Invalid Values" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "" @@ -13223,31 +13240,27 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13255,11 +13268,11 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13267,20 +13280,28 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "" @@ -13288,6 +13309,10 @@ msgstr "" msgid "Invalid naming series {}: dot (.) missing" msgstr "" +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "" @@ -13296,19 +13321,27 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13316,7 +13349,7 @@ msgstr "" msgid "Invalid template file for import" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "" @@ -13325,20 +13358,20 @@ msgstr "" msgid "Invalid username or password" msgstr "" -#: frappe/model/naming.py:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "" @@ -13347,10 +13380,47 @@ msgstr "" msgid "Inverse" msgstr "Inverso" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "" @@ -13375,7 +13445,7 @@ msgstr "" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "" @@ -13428,6 +13498,10 @@ msgstr "É Pasta" msgid "Is Global" msgstr "" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "É Grupo" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13454,8 +13528,13 @@ msgstr "É estado opcional" msgid "Is Primary" msgstr "É primário" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: 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" @@ -13486,7 +13565,7 @@ msgstr "É público" msgid "Is Published Field" msgstr "É Publicado campo" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "" @@ -13511,7 +13590,7 @@ msgstr "" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "" @@ -13547,7 +13626,7 @@ msgstr "É Padrão" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "" @@ -13753,11 +13832,11 @@ msgstr "" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13778,12 +13857,14 @@ msgstr "" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -14045,7 +14126,7 @@ msgstr "" msgid "Landing Page" msgstr "Página de chegada" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "" @@ -14053,10 +14134,13 @@ msgstr "" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14144,8 +14228,12 @@ msgstr "Mês passado" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "" @@ -14160,6 +14248,11 @@ msgstr "Data da última redefinição de senha" msgid "Last Quarter" msgstr "Ultimo quarto" +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" + #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json @@ -14176,11 +14269,6 @@ msgstr "" msgid "Last Sync On" msgstr "Última sincronização em" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14291,7 +14379,7 @@ msgstr "" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "" @@ -14340,8 +14428,8 @@ msgstr "Carta" #. Name of a DocType #: frappe/core/doctype/report/report.json #: frappe/printing/doctype/letter_head/letter_head.json -#: frappe/printing/page/print/print.js:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14369,7 +14457,7 @@ msgstr "Nome do timbrado" msgid "Letter Head Scripts" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "" @@ -14386,7 +14474,7 @@ msgstr "Cabeça Carta em HTML" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "" @@ -14436,20 +14524,6 @@ msgstr "" msgid "Like" msgstr "" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "" @@ -14490,6 +14564,7 @@ msgstr "Linha" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14503,6 +14578,7 @@ msgstr "Linha" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "" @@ -14633,10 +14709,15 @@ msgstr "Relacionado" msgid "Linked With" msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +msgstr "" + #. Label of the links (Table) field in DocType 'Address' #. Label of the links (Table) field in DocType 'Contact' #. Label of the links_section (Tab Break) field in DocType 'DocType' #. Label of the links (Table) field in DocType 'Customize Form' +#. Label of the links (Table) field in DocType 'Event' #. Label of the links (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14644,6 +14725,7 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "" @@ -14685,7 +14767,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14726,7 +14808,7 @@ msgstr "" msgid "List setting message" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "" @@ -14735,9 +14817,8 @@ msgstr "" msgid "Load Balancing" msgstr "Balanceamento de carga" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14754,10 +14835,10 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "" @@ -14769,7 +14850,7 @@ msgstr "" msgid "Loading import file..." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "" @@ -14779,7 +14860,7 @@ msgstr "" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "" @@ -14840,7 +14921,7 @@ msgstr "" msgid "Log out" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "" @@ -14900,7 +14981,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -14908,7 +14989,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "" @@ -14961,7 +15042,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -14980,7 +15061,7 @@ msgstr "" msgid "Logout" msgstr "Sair" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "" @@ -15084,7 +15165,10 @@ msgid "Major" 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 +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "" @@ -15160,7 +15244,7 @@ msgstr "Obrigatório Depende" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "" @@ -15172,15 +15256,15 @@ msgstr "" msgid "Mandatory field: {0}" msgstr "" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "" @@ -15261,10 +15345,8 @@ msgid "Mark as Unread" msgstr "" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15345,7 +15427,13 @@ msgstr "" msgid "Max auto email report per user" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "" @@ -15354,20 +15442,15 @@ msgstr "" msgid "Maximum" msgstr "Máximo" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "" -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "Número Máximo de Campos" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "" -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "" @@ -15383,7 +15466,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15396,7 +15479,7 @@ msgstr "Médio" msgid "Meeting" msgstr "" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "" @@ -15437,7 +15520,7 @@ msgstr "" msgid "Merge with existing" msgstr "Mesclar com existente" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "" @@ -15463,7 +15546,7 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15503,7 +15586,7 @@ msgstr "Mensagem Enviada" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "" @@ -15535,29 +15618,21 @@ msgstr "" msgid "Meta" msgstr "" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "" @@ -15610,7 +15685,7 @@ msgstr "Método" msgid "Method Not Allowed" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "" @@ -15626,6 +15701,11 @@ msgstr "" msgid "Middle Name" msgstr "Nome do Meio" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15692,11 +15772,11 @@ msgstr "Senhorita" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "" @@ -15732,15 +15812,16 @@ msgstr "Móvel" msgid "Mobile No" msgstr "Telefone Celular" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "Número de Celular" + #. Label of the modal_trigger (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Modal Trigger" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15761,7 +15842,7 @@ msgstr "" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -15937,10 +16018,12 @@ msgstr "" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Mais Informações" @@ -15959,7 +16042,7 @@ msgstr "Mais conteúdo na parte de baixo da página." msgid "Most Used" msgstr "" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "" @@ -15970,7 +16053,7 @@ msgstr "" msgid "Move" msgstr "Mover" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "" @@ -16006,7 +16089,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "" @@ -16033,7 +16116,7 @@ msgstr "" msgid "Ms" msgstr "" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "" @@ -16056,7 +16139,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "" @@ -16074,7 +16157,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16112,9 +16195,9 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16124,11 +16207,11 @@ msgstr "Nome" msgid "Name (Doc Name)" msgstr "" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "" @@ -16140,7 +16223,7 @@ msgstr "" msgid "Name of the new Print Format" msgstr "" -#: frappe/model/naming.py:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "" @@ -16179,7 +16262,7 @@ msgstr "" msgid "Naming Series" msgstr "" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "" @@ -16216,12 +16299,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16236,7 +16319,11 @@ msgstr "" msgid "Navigation Settings" msgstr "" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16244,7 +16331,7 @@ msgstr "" msgid "Negative Value" msgstr "" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16257,6 +16344,12 @@ msgstr "" msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +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 @@ -16265,7 +16358,7 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16286,10 +16379,6 @@ msgstr "" msgid "New Chart" msgstr "" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "" @@ -16298,8 +16387,8 @@ msgstr "" msgid "New Custom Block" msgstr "" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" msgstr "" @@ -16330,7 +16419,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "" @@ -16365,12 +16454,12 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "" @@ -16379,7 +16468,7 @@ msgstr "" msgid "New Quick List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "" @@ -16397,8 +16486,8 @@ msgstr "" msgid "New Users (Last 30 days)" msgstr "" -#: frappe/core/doctype/version/version_view.html:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "" @@ -16455,13 +16544,13 @@ msgstr "Novo valor a ser definido" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "" @@ -16477,7 +16566,7 @@ msgstr "" msgid "New {0} {1} created" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "" @@ -16485,7 +16574,7 @@ msgstr "" msgid "New {} releases for the following apps are available" msgstr "" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "" @@ -16498,7 +16587,7 @@ msgstr "" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16605,14 +16694,15 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Não" @@ -16662,6 +16752,10 @@ msgstr "" msgid "No Email Accounts Assigned" msgstr "" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "" @@ -16697,15 +16791,15 @@ msgstr "" msgid "No Label" msgstr "" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: frappe/public/js/frappe/list/bulk_operations.js:98 #: frappe/public/js/frappe/list/bulk_operations.js:170 #: frappe/utils/weasyprint.py:52 msgid "No Letterhead" msgstr "" -#: frappe/model/naming.py:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "" @@ -16713,7 +16807,7 @@ msgstr "" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "" @@ -16733,11 +16827,11 @@ msgstr "" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "" @@ -16753,11 +16847,11 @@ msgstr "" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16765,7 +16859,7 @@ msgstr "" msgid "No Suggestions" msgstr "" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "" @@ -16777,7 +16871,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "" @@ -16805,23 +16899,19 @@ msgstr "" msgid "No changes to update" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " -msgstr "" +msgid "No comments yet." +msgstr "Ainda não há comentários." #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "Nenhum dado para exportar" @@ -16837,11 +16927,15 @@ msgstr "" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16865,7 +16959,7 @@ msgstr "" msgid "No matching records. Search something new" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "" @@ -16909,7 +17003,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "" @@ -16921,7 +17015,7 @@ msgstr "" msgid "No records deleted" msgstr "" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "" @@ -16937,7 +17031,7 @@ msgstr "" msgid "No rows" msgstr "" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -16957,11 +17051,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -16970,7 +17064,7 @@ msgid "No {0} mail" msgstr "" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -17013,7 +17107,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "Não Desejados" @@ -17034,7 +17128,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -17060,20 +17154,19 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "Não Permitido" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17082,10 +17175,10 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "" @@ -17117,7 +17210,7 @@ msgstr "" msgid "Not a valid User Image." msgstr "" -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "" @@ -17133,11 +17226,11 @@ msgstr "Inativo" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "" @@ -17161,27 +17254,27 @@ msgstr "" msgid "Not in Developer Mode" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Não Permitido" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17216,7 +17309,7 @@ msgstr "Nota: Para obter melhores resultados, as imagens devem ter o mesmo taman 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" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17240,10 +17333,9 @@ msgstr "" msgid "Nothing left to undo" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "" @@ -17289,15 +17381,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17348,7 +17440,7 @@ msgstr "Informar se não for respondido em (minutos)" msgid "Notify users with a popup when they log in" msgstr "" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "" @@ -17406,12 +17498,12 @@ msgstr "Número de Grupos" msgid "Number of Queries" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17520,11 +17612,11 @@ msgstr "Aplicação OTP" msgid "OTP Issuer Name" msgstr "Nome da Emissora OTP" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "" @@ -17643,7 +17735,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "" @@ -17683,7 +17775,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "" @@ -17728,7 +17820,7 @@ msgstr "" msgid "Only Allow Edit For" msgstr "Somente permite edição para" -#: frappe/core/doctype/doctype/doctype.py:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "" @@ -17745,7 +17837,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "" @@ -17764,19 +17856,19 @@ msgstr "" msgid "Only one {0} can be set as primary." msgstr "" -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17846,7 +17938,7 @@ msgstr "Documento de Referência Aberto" msgid "Open Settings" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "" @@ -17864,7 +17956,7 @@ msgstr "" msgid "Open a module or tool" msgstr "" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "" @@ -17872,7 +17964,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17887,13 +17979,13 @@ msgstr "" #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "" @@ -17902,6 +17994,10 @@ msgstr "" msgid "OpenID Configuration" msgstr "" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" @@ -17917,7 +18013,7 @@ msgstr "Inaugurado" msgid "Operation" msgstr "Operação" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "" @@ -17943,7 +18039,7 @@ msgstr "" msgid "Option 3" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "" @@ -17963,6 +18059,7 @@ msgstr "Opcional: O alerta será enviado se essa expressão é verdadeira" #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -17971,11 +18068,12 @@ msgstr "Opcional: O alerta será enviado se essa expressão é verdadeira" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "" @@ -17984,7 +18082,7 @@ msgstr "" msgid "Options Help" msgstr "Ajuda sobre Opções" -#: frappe/core/doctype/doctype/doctype.py:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "" @@ -17992,7 +18090,7 @@ msgstr "" msgid "Options for select. Each option on a new line." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 msgid "Options for {0} must be set before setting the default value." msgstr "" @@ -18000,7 +18098,7 @@ msgstr "" msgid "Options is required for field {0} of type {1}" msgstr "" -#: frappe/model/base_document.py:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "" @@ -18016,7 +18114,7 @@ msgstr "" msgid "Order" msgstr "Pedido" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18032,12 +18130,12 @@ msgstr "História da Organização" msgid "Org History Heading" msgstr "Cabeçalho da História da Organização" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "" @@ -18105,10 +18203,6 @@ msgstr "Saída" msgid "Overview" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "Proprietário" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" @@ -18116,9 +18210,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:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18159,11 +18253,11 @@ msgstr "" msgid "PDF generation failed because of broken image links" msgstr "" -#: frappe/printing/page/print/print.js:616 +#: frappe/printing/page/print/print.js:656 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:574 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18335,7 +18429,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:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "Página {0} de {1}" @@ -18362,7 +18456,7 @@ msgstr "" msgid "Parent Document Type" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "" @@ -18379,11 +18473,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:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "" @@ -18392,7 +18486,7 @@ msgstr "" msgid "Parent Label" msgstr "Etiqueta Pai" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 msgid "Parent Missing" msgstr "" @@ -18466,8 +18560,8 @@ msgstr "Passivo" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18477,7 +18571,7 @@ msgstr "Passivo" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "" @@ -18490,7 +18584,7 @@ msgstr "" msgid "Password Reset Link Generation Limit" msgstr "Limite de geração de link de redefinição de senha" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18507,6 +18601,10 @@ msgstr "Senha para DN de base" msgid "Password is required or select Awaiting Password" msgstr "" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "" @@ -18515,7 +18613,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18523,11 +18621,11 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." msgstr "" @@ -18535,7 +18633,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "" @@ -18605,10 +18703,12 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "Pendente" @@ -18684,7 +18784,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "" @@ -18744,16 +18844,16 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: frappe/core/page/permission_manager/permission_manager.js:221 #: frappe/core/workspace/users/users.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Permissions" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "" @@ -18815,15 +18915,18 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -18836,13 +18939,13 @@ msgstr "Telefone" msgid "Phone No." msgstr "" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "" @@ -18902,11 +19005,11 @@ msgstr "" msgid "Please Set Chart" msgstr "" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "" @@ -18914,7 +19017,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18922,11 +19025,11 @@ msgstr "" msgid "Please attach a file first." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 msgid "Please attach an image file to set HTML for Footer." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "" @@ -18934,19 +19037,15 @@ msgstr "" msgid "Please attach the package" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "" - #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "" -#: frappe/model/base_document.py:951 +#: frappe/model/base_document.py:1008 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "" @@ -18978,11 +19077,11 @@ msgstr "" msgid "Please confirm your action to {0} this document." msgstr "" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "" @@ -18998,20 +19097,20 @@ msgstr "" msgid "Please do not change the template headings." msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "" @@ -19048,7 +19147,7 @@ msgstr "" msgid "Please enter Client Secret before social login is enabled" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "" @@ -19085,11 +19184,12 @@ msgstr "" msgid "Please enter your old password." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "" @@ -19097,11 +19197,11 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "" -#: frappe/model/document.py:988 +#: frappe/model/document.py:992 msgid "Please refresh to get the latest document." msgstr "" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:575 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19117,7 +19217,7 @@ msgstr "" msgid "Please save the document before removing assignment" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "" @@ -19125,7 +19225,7 @@ msgstr "" msgid "Please save to edit the template." msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "" @@ -19133,19 +19233,19 @@ msgstr "" msgid "Please select Entity Type first" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "" @@ -19153,7 +19253,7 @@ msgstr "" msgid "Please select a file or url" msgstr "" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" msgstr "" @@ -19165,7 +19265,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19191,11 +19291,11 @@ msgstr "" msgid "Please set Email Address" msgstr "" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:589 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "" @@ -19203,7 +19303,7 @@ msgstr "" msgid "Please set filters value in Report Filter table." msgstr "" -#: frappe/model/naming.py:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "" @@ -19215,7 +19315,7 @@ msgstr "" msgid "Please set the series to be used." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -19239,23 +19339,23 @@ msgstr "" msgid "Please specify a valid parent DocType for {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "" @@ -19276,7 +19376,7 @@ msgstr "" msgid "Please use following links to download file backup." msgstr "" -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" @@ -19330,7 +19430,7 @@ msgstr "" msgid "Portal Settings" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "" @@ -19358,6 +19458,7 @@ msgstr "" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "" @@ -19366,15 +19467,7 @@ msgstr "" msgid "Posting Timestamp" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19389,7 +19482,11 @@ msgstr "" msgid "Precision" msgstr "Precisão" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "" @@ -19437,7 +19534,7 @@ msgstr "" msgid "Prepared Report User" msgstr "" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "" @@ -19445,7 +19542,7 @@ msgstr "" msgid "Preparing Report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "" @@ -19466,7 +19563,7 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19480,13 +19577,6 @@ msgstr "Pré-visualização" msgid "Preview HTML" msgstr "Pré-visualização de HTML" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19515,7 +19605,7 @@ msgid "Preview:" msgstr "" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19527,12 +19617,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "" @@ -19578,19 +19663,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:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "Impressão" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Impressão" @@ -19608,8 +19693,8 @@ 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:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19660,7 +19745,7 @@ msgstr "Ajuda sobre Formatos de Impressão" msgid "Print Format Type" msgstr "Tipo do Formato de Impressão" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19699,7 +19784,7 @@ msgstr "Ocultar Impressão se não Preenchido" msgid "Print Language" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "" @@ -19716,8 +19801,8 @@ msgstr "Servidor de impressão" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "" @@ -19765,11 +19850,11 @@ msgstr "" msgid "Print with letterhead" msgstr "Imprimir com o timbre" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "" @@ -19779,11 +19864,11 @@ msgstr "" msgid "Printer Name" msgstr "Nome da impressora" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "" @@ -19841,7 +19926,7 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "" @@ -19862,18 +19947,28 @@ msgstr "" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Perfil atualizado com sucesso." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "Projeto" #. Label of the property (Data) field in DocType 'Property Setter' -#: frappe/core/doctype/version/version_view.html:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: frappe/core/doctype/version/version_view.html:13 +#: frappe/core/doctype/version/version_view.html:38 +#: frappe/core/doctype/version/version_view.html:75 #: frappe/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "" @@ -19910,7 +20005,7 @@ msgstr "" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -19959,24 +20054,18 @@ msgstr "" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -19986,15 +20075,6 @@ msgstr "" msgid "Published" msgstr "" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "Publicado no" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json @@ -20084,7 +20164,9 @@ msgid "Put on Hold" msgstr "" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "" @@ -20096,9 +20178,9 @@ msgstr "" msgid "QR Code for Login Verification" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " -msgstr "" +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" +msgstr "Falha na bandeja QZ:" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' @@ -20147,7 +20229,7 @@ msgstr "" msgid "Query analysis complete. Check suggested indexes." msgstr "" -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "" @@ -20247,7 +20329,7 @@ msgstr "" msgid "Quick Lists" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20284,12 +20366,6 @@ msgstr "Alcance" msgid "Rate Limiting" msgstr "" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20309,7 +20385,7 @@ msgstr "" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "" @@ -20326,7 +20402,7 @@ msgstr "" msgid "Raw Printing" msgstr "" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "" @@ -20343,8 +20419,8 @@ msgid "Re:" msgstr "" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "" @@ -20400,11 +20476,6 @@ msgstr "" msgid "Read Only Mode" msgstr "" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "Tempo de leitura" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20420,7 +20491,7 @@ msgstr "Lido por destinatário ativado" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "" @@ -20440,11 +20511,11 @@ msgstr "" msgid "Reason" msgstr "Motivo" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20482,7 +20553,7 @@ msgstr "Parâmetro do recebedor" msgid "Recent years are easy to guess." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "" @@ -20493,6 +20564,14 @@ msgstr "" msgid "Recipient" msgstr "Destinatário" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20525,7 +20604,7 @@ msgstr "" msgid "Records for following doctypes will be filtered" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "" @@ -20542,6 +20621,11 @@ msgstr "Vermelho" msgid "Redirect HTTP Status" msgstr "" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20636,6 +20720,11 @@ msgstr "Data de Referência" msgid "Reference Datetime" msgstr "" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20663,7 +20752,6 @@ msgstr "Nome do Documento de Referência" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20704,9 +20792,9 @@ msgstr "" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20724,9 +20812,9 @@ msgstr "" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20756,7 +20844,6 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -20804,15 +20891,15 @@ msgstr "" msgid "Referrer" msgstr "" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Atualizar" @@ -20826,6 +20913,10 @@ msgstr "" msgid "Refresh Google Sheet" msgstr "Atualizar planilha do Google" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -20837,18 +20928,18 @@ msgstr "Atualizar planilha do Google" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "" @@ -21025,7 +21116,7 @@ msgstr "" msgid "Rename {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "" @@ -21156,9 +21247,9 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "Relatório" @@ -21228,11 +21319,11 @@ 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:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "" @@ -21266,21 +21357,21 @@ msgstr "" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 msgid "Report cannot be set for Single types" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 -#: frappe/desk/doctype/number_card/number_card.js:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21292,24 +21383,24 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "" @@ -21317,7 +21408,7 @@ msgstr "" msgid "Report {0} is disabled" msgstr "" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "" @@ -21328,7 +21419,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:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "Relatórios" @@ -21336,7 +21427,7 @@ msgstr "Relatórios" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "" @@ -21355,7 +21446,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "Solicitar Dados" @@ -21407,6 +21501,11 @@ msgstr "" msgid "Request URL" msgstr "URL do pedido" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21458,11 +21557,11 @@ msgstr "" msgid "Reset Dashboard Customizations" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "" @@ -21470,11 +21569,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21509,7 +21608,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21547,6 +21646,7 @@ msgid "Resource TOS URI" msgstr "" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21556,11 +21656,6 @@ msgstr "" msgid "Response" msgstr "Resposta" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "" - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21619,7 +21714,7 @@ msgstr "Restringir ao domínio" msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "" @@ -21653,7 +21748,7 @@ msgstr "" msgid "Reverse Icon Color" msgstr "Inverta Ícone Cor" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "" @@ -21671,9 +21766,7 @@ msgstr "" msgid "Revoked" msgstr "Revogado" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21714,6 +21807,7 @@ msgstr "" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21727,6 +21821,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21765,7 +21860,7 @@ msgstr "" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "" @@ -21775,7 +21870,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21818,6 +21913,7 @@ msgstr "" #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -21827,6 +21923,7 @@ msgstr "" #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -21863,7 +21960,7 @@ msgstr "" msgid "Roles can be set for users from their User page." msgstr "" -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "" @@ -21883,8 +21980,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -21896,8 +21991,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -21922,24 +22015,24 @@ msgstr "Redirecionamentos de rota" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "" @@ -21948,11 +22041,6 @@ msgstr "" msgid "Row Format" msgstr "" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "Índice de linhas" - #. 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" @@ -21967,7 +22055,7 @@ msgstr "Nome da Linha" msgid "Row Number" msgstr "" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "" @@ -21975,30 +22063,33 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Added" msgstr "" #. Label of the rows_removed_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22089,7 +22180,7 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "" @@ -22167,7 +22258,7 @@ msgstr "" msgid "Salutation" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "" @@ -22195,20 +22286,20 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22217,16 +22308,12 @@ msgstr "" msgid "Save" msgstr "Salvar" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "" @@ -22234,11 +22321,11 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "" @@ -22263,7 +22350,7 @@ msgstr "" msgid "Saved Filters" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22342,7 +22429,7 @@ msgstr "" msgid "Scheduled Jobs Logs" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "" @@ -22365,7 +22452,7 @@ msgstr "" msgid "Scheduler Event" msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "Agendador Inativo" @@ -22378,7 +22465,7 @@ msgstr "" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "O agendador está inativo. Não é possível importar dados." @@ -22510,7 +22597,7 @@ msgstr "" msgid "Search by filename or extension" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "" @@ -22610,7 +22697,7 @@ msgstr "Configurações de Segurança" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "" @@ -22619,7 +22706,7 @@ msgstr "" msgid "See on Website" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "" @@ -22666,7 +22753,7 @@ msgstr "Visto por tabela" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22674,28 +22761,28 @@ msgstr "Selecionar" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 msgid "Select Column" msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "" @@ -22754,12 +22841,15 @@ msgstr "" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "" @@ -22772,7 +22862,7 @@ msgstr "" msgid "Select Filters" msgstr "" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "" @@ -22805,8 +22895,8 @@ msgstr "" msgid "Select Module" msgstr "" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "" @@ -22871,14 +22961,14 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." +msgid "Select a group {0} first." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 msgid "Select a valid Subject field for creating documents from Email" msgstr "" @@ -22908,13 +22998,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22948,7 +23038,7 @@ msgstr "" msgid "Select {0}" msgstr "" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "" @@ -23132,7 +23222,7 @@ msgstr "" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "" @@ -23226,7 +23316,7 @@ msgstr "" msgid "Series counter for {} updated to {} successfully" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "" @@ -23236,7 +23326,7 @@ msgstr "" msgid "Server Action" msgstr "Ação do Servidor" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23255,7 +23345,7 @@ msgstr "IP do servidor" msgid "Server Script" msgstr "" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23302,7 +23392,7 @@ msgstr "" msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "" @@ -23311,14 +23401,14 @@ msgstr "" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "" @@ -23344,12 +23434,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23360,7 +23450,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23414,7 +23504,7 @@ msgstr "" msgid "Set Role For" msgstr "Definir papel para" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23424,16 +23514,16 @@ msgstr "" msgid "Set Value" msgstr "Definir valor" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "" @@ -23452,18 +23542,21 @@ msgstr "" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "" -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23555,14 +23648,9 @@ msgstr "" msgid "Settings for the About Us Page" msgstr "" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "" @@ -23578,8 +23666,8 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "" @@ -23648,11 +23736,6 @@ msgstr "Endereço Para Entrega" msgid "Shop" msgstr "Loja" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "Nome Curto" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "" @@ -23672,11 +23755,6 @@ msgstr "" msgid "Show" msgstr "" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23729,7 +23807,13 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23857,7 +23941,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "" @@ -23874,7 +23958,7 @@ msgstr "Mostrar Título" msgid "Show Title in Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "" @@ -23914,10 +23998,6 @@ msgstr "" msgid "Show all activity" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "" - #. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" @@ -23966,8 +24046,8 @@ msgstr "" msgid "Show list" msgstr "" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "" @@ -23996,7 +24076,7 @@ msgstr "" msgid "Show {0} List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "" @@ -24031,7 +24111,7 @@ msgstr "" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "" @@ -24068,22 +24148,22 @@ msgstr "" msgid "Signups have been disabled for this website." msgstr "" -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" msgstr "" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" msgstr "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' @@ -24091,13 +24171,13 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "Sessões simultâneas" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "" #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "" @@ -24105,7 +24185,7 @@ msgstr "" msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "" -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "Tamanho" @@ -24324,11 +24404,11 @@ msgstr "" msgid "Something went wrong." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 msgid "Sorry! I could not find what you were looking for." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "" @@ -24359,20 +24439,23 @@ msgstr "" msgid "Sort Order" msgstr "Ordem de classificação" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 msgid "Sort field {0} must be a valid fieldname" msgstr "" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' -#: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "Origem" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24399,6 +24482,12 @@ msgstr "" msgid "SparkPost" msgstr "" +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "" @@ -24423,8 +24512,8 @@ msgstr "" msgid "Splash Image" msgstr "" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -24456,11 +24545,11 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "" @@ -24472,7 +24561,7 @@ msgstr "" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "" @@ -24480,11 +24569,11 @@ msgstr "" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "" -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "" @@ -24516,8 +24605,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:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "Iniciar" @@ -24525,7 +24614,7 @@ msgstr "Iniciar" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24590,6 +24679,7 @@ msgstr "Inicia em" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24598,7 +24688,7 @@ msgstr "Inicia em" msgid "State" msgstr "Estado" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "" @@ -24654,6 +24744,7 @@ msgstr "Intervalo de tempo das estatísticas" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24678,6 +24769,7 @@ msgstr "Intervalo de tempo das estatísticas" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24685,8 +24777,8 @@ msgstr "Intervalo de tempo das estatísticas" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24723,7 +24815,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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24753,6 +24845,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +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." @@ -24831,7 +24927,7 @@ msgstr "Subdomínio" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -24847,7 +24943,7 @@ msgstr "Assunto" msgid "Subject Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "" @@ -24861,6 +24957,7 @@ msgstr "" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24869,10 +24966,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "Enviar" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Enviar" @@ -24882,7 +24980,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Enviar" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Enviar" @@ -24906,7 +25004,7 @@ msgstr "Enviar após importação" msgid "Submit an Issue" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "" @@ -24918,7 +25016,7 @@ msgstr "" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "" @@ -24930,7 +25028,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24939,11 +25037,11 @@ msgstr "" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "Enviado" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "" @@ -24966,9 +25064,7 @@ msgid "Subsidiary" msgstr "Subsidiário" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "Subtítulo" @@ -24982,7 +25078,7 @@ msgstr "Subtítulo" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25024,20 +25120,16 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "" - #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" msgstr "" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "" @@ -25079,7 +25171,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "" @@ -25135,7 +25227,7 @@ msgstr "" #: frappe/public/js/frappe/list/list_sidebar.js:319 msgid "Switch to Frappe CRM for smarter sales" -msgstr "" +msgstr "Mude para o Frappe CRM para vendas mais inteligentes" #: frappe/public/js/frappe/ui/capture.js:281 msgid "Switching Camera" @@ -25201,7 +25293,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25324,6 +25416,7 @@ msgstr "" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25406,6 +25499,7 @@ msgstr "" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" msgstr "Administrador do Sistema" @@ -25479,7 +25573,7 @@ msgstr "" msgid "Table Break" msgstr "Pausa para a mesa" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "" @@ -25488,7 +25582,7 @@ msgstr "" msgid "Table Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "" @@ -25510,11 +25604,11 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 msgid "Table {0} cannot be empty" msgstr "" @@ -25556,11 +25650,18 @@ msgstr "" msgid "Target" msgstr "" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "Tarefa" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "Tarefas" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25622,7 +25723,7 @@ msgstr "Avisos do modelo" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "" @@ -25694,7 +25795,7 @@ msgid "Thank you for reaching out to us. We will get back to you at the earliest "{0}" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "" @@ -25718,7 +25819,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "" @@ -25729,15 +25830,15 @@ msgid "The Client ID obtained from the Google Cloud Console under " msgstr "" -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." msgstr "" @@ -25778,7 +25879,7 @@ msgstr "" msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "" -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "" @@ -25786,7 +25887,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:658 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25816,7 +25917,7 @@ msgstr "" msgid "The field {0} is mandatory" msgstr "" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "" @@ -25886,15 +25987,19 @@ msgid "The project number obtained from Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

    Click here to download:
    {0}

    This link will expire in {1} hours." +msgstr "" + +#: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:995 +#: frappe/core/doctype/user/user.py:1002 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25906,7 +26011,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:338 +#: frappe/utils/response.py:336 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25927,7 +26032,7 @@ msgstr "" msgid "The webhook will be triggered if this expression is true" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "" @@ -25967,16 +26072,16 @@ 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:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "" @@ -25988,15 +26093,19 @@ msgstr "" msgid "There is no data to be exported" msgstr "" +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26008,7 +26117,7 @@ msgstr "" msgid "There was an error building this page" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "" @@ -26020,11 +26129,11 @@ msgstr "" msgid "There were errors while creating the document. Please try again." msgstr "" -#: frappe/public/js/frappe/views/communication.js:840 +#: frappe/public/js/frappe/views/communication.js:843 msgid "There were errors while sending email. Please try again." msgstr "" -#: frappe/model/naming.py:494 +#: frappe/model/naming.py:502 msgid "There were some errors setting the name, please contact the administrator" msgstr "" @@ -26065,7 +26174,7 @@ msgstr "Autenticação de Terceiros" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "" @@ -26073,6 +26182,10 @@ msgstr "" msgid "This Month" msgstr "" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "" @@ -26098,6 +26211,11 @@ msgstr "" msgid "This cannot be undone" msgstr "" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +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" @@ -26112,11 +26230,11 @@ msgstr "Este gráfico estará disponível para todos os usuários se estiver def msgid "This doctype has no orphan fields to trim" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26158,7 +26276,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26174,7 +26292,7 @@ msgstr "" msgid "This form has been modified after you have loaded it" msgstr "" -#: frappe/public/js/frappe/form/form.js:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "" @@ -26193,7 +26311,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26217,12 +26335,6 @@ msgstr "" msgid "This is an automatically generated reply" msgstr "" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "Este é um exemplo de visualização do Google SERP." - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "" @@ -26241,7 +26353,7 @@ msgstr "" msgid "This link is invalid or expired. Please make sure you have pasted correctly." msgstr "" -#: frappe/printing/page/print/print.js:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "" @@ -26249,7 +26361,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26257,7 +26369,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "" @@ -26288,8 +26400,8 @@ msgstr "" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " -msgstr "" +msgid "This value specifies the max number of rows that can be rendered in report view." +msgstr "Esse valor especifica o número máximo de linhas que podem ser renderizadas no modo de exibição de relatório." #: frappe/website/doctype/web_page/web_page.js:85 msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish" @@ -26320,10 +26432,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " -msgstr "" +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:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "" @@ -26399,9 +26511,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26472,11 +26586,11 @@ msgstr "Links da linha do tempo" msgid "Timeline Name" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 msgid "Timeline field must be a Link or Dynamic Link" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "" @@ -26502,10 +26616,7 @@ msgid "Timespan" msgstr "" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "" @@ -26525,9 +26636,6 @@ msgstr "" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26552,9 +26660,6 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26577,7 +26682,7 @@ msgstr "Campo Título" msgid "Title Prefix" msgstr "Prefixo do Título" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "" @@ -26671,7 +26776,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "" @@ -26726,7 +26831,7 @@ msgstr "" msgid "Today" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "" @@ -26742,11 +26847,11 @@ msgstr "" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26792,7 +26897,7 @@ msgid "Tomorrow" msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "" @@ -26808,7 +26913,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26870,10 +26975,10 @@ msgstr "" msgid "Topic" msgstr "Tópico" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -26916,18 +27021,18 @@ msgstr "" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " -msgstr "" +msgid "Total number of emails to sync in initial sync process" +msgstr "Número total de e-mails a serem sincronizados no processo de sincronização inicial" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "Totais" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "" @@ -26993,26 +27098,10 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "Transgênero" @@ -27026,6 +27115,11 @@ msgstr "" msgid "Transition Rules" msgstr "Regras de transição" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" @@ -27040,7 +27134,7 @@ msgstr "Transições" msgid "Translatable" msgstr "Traduzível" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27051,7 +27145,7 @@ msgstr "" msgid "Translate Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "" @@ -27135,8 +27229,8 @@ msgstr "" msgid "Try a Naming Series" msgstr "" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "" @@ -27202,7 +27296,7 @@ msgstr "Método de autenticação de dois fatores" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27295,7 +27389,7 @@ msgstr "" msgid "URL for documentation or help" msgstr "URL para documentação ou ajuda" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "" @@ -27398,7 +27492,7 @@ msgstr "" msgid "Unable to update event" msgstr "" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "" @@ -27407,7 +27501,7 @@ msgstr "" msgid "Unassign Condition" msgstr "Desatribuir condição" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27423,7 +27517,7 @@ msgstr "" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27470,7 +27564,7 @@ msgstr "" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "" @@ -27482,8 +27576,7 @@ msgstr "" msgid "Unlock Reference Document" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "" @@ -27499,7 +27592,7 @@ msgstr "Não lida" msgid "Unread Notification Sent" msgstr "Notificação de mensagem não lida enviada" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "" @@ -27537,8 +27630,8 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27558,7 +27651,7 @@ msgstr "" msgid "Unzipping files..." msgstr "" -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "" @@ -27572,7 +27665,7 @@ msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Atualizar" @@ -27606,6 +27699,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27648,7 +27746,7 @@ msgstr "" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "" @@ -27656,7 +27754,7 @@ msgstr "" msgid "Updated Successfully" msgstr "" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "" @@ -27664,7 +27762,7 @@ msgstr "" msgid "Updated successfully" msgstr "" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "" @@ -27707,10 +27805,10 @@ msgstr "" #: frappe/public/js/frappe/list/list_sidebar.js:331 msgid "Upgrade your support experience with Frappe Helpdesk" -msgstr "" +msgstr "Atualize sua experiência de suporte com o Frappe Helpdesk" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27720,11 +27818,11 @@ msgstr "" msgid "Upload Image" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "" @@ -27821,15 +27919,11 @@ msgstr "" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "" -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "" @@ -27850,7 +27944,9 @@ msgid "Used OAuth" msgstr "" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -27859,6 +27955,7 @@ msgstr "" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -27873,11 +27970,12 @@ msgstr "" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -27886,6 +27984,7 @@ msgstr "" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -27902,17 +28001,11 @@ msgstr "" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "Usuário" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "Usuário " - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "" @@ -27942,7 +28035,7 @@ msgstr "O Usuário não pode criar" msgid "User Cannot Search" msgstr "O Usuário não pode pesquisar" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "" @@ -28006,11 +28099,6 @@ msgstr "ID de Usuário" msgid "User ID Property" msgstr "Propriedade de ID do usuário" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28030,6 +28118,11 @@ msgstr "" msgid "User Image" msgstr "Imagem do Usuário" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "" @@ -28048,12 +28141,12 @@ msgstr "" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28066,7 +28159,9 @@ msgstr "" msgid "User Permissions created successfully" msgstr "" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "" @@ -28132,6 +28227,10 @@ msgstr "" msgid "User does not have permission to create the new {0}" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "" @@ -28162,7 +28261,7 @@ msgstr "" msgid "User {0} cannot be disabled" msgstr "" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "" @@ -28183,7 +28282,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "" @@ -28191,7 +28290,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "Usuário {0} está desativado" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28212,7 +28311,7 @@ msgstr "" msgid "Username" msgstr "" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "" @@ -28296,7 +28395,7 @@ msgstr "" msgid "Validate SSL Certificate" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "" @@ -28319,8 +28418,8 @@ msgstr "Validade" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28352,7 +28451,7 @@ msgstr "Valor Alterado" msgid "Value To Be Set" msgstr "Valor a ser definido" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "" @@ -28368,11 +28467,11 @@ msgstr "" msgid "Value for a check field can be either 0 or 1" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" -#: frappe/model/base_document.py:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "" @@ -28397,7 +28496,7 @@ msgstr "" msgid "Value to Validate" msgstr "Valor para Validar" -#: frappe/model/base_document.py:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "" @@ -28414,7 +28513,7 @@ msgstr "" msgid "Value {0} must in {1} format" msgstr "" -#: frappe/core/doctype/version/version_view.html:8 +#: frappe/core/doctype/version/version_view.html:9 msgid "Values Changed" msgstr "Valores Alterados" @@ -28427,7 +28526,7 @@ msgstr "" msgid "Verification" msgstr "" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "" @@ -28489,15 +28588,7 @@ msgstr "" msgid "View Audit Trail" msgstr "" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" @@ -28509,7 +28600,7 @@ msgstr "" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "" @@ -28519,7 +28610,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28566,7 +28657,7 @@ msgstr "" msgid "View this in your browser" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "" @@ -28635,6 +28726,7 @@ msgid "Warehouse" msgstr "Armazém" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Aviso" @@ -28643,7 +28735,7 @@ msgstr "Aviso" msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "" @@ -28729,7 +28821,7 @@ msgstr "" msgid "Web Page Block" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "" @@ -28832,7 +28924,7 @@ msgstr "" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "Site" @@ -28845,10 +28937,6 @@ msgstr "" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -28892,7 +28980,7 @@ msgstr "" msgid "Website Search Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "" @@ -29109,11 +29197,6 @@ msgstr "" msgid "Will add \"%\" before and after the query" msgstr "" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "" - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "" @@ -29128,7 +29211,7 @@ msgstr "" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "" @@ -29206,7 +29289,7 @@ msgstr "" msgid "Workflow Data" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "" @@ -29232,11 +29315,11 @@ msgstr "" msgid "Workflow State Field" msgstr "" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "" @@ -29244,15 +29327,30 @@ msgstr "" msgid "Workflow States Don't Exist" msgstr "" -#: frappe/model/workflow.py:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29268,13 +29366,13 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29344,11 +29442,11 @@ msgstr "" msgid "Workspaces" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "" @@ -29367,11 +29465,11 @@ msgstr "Empacotando" msgid "Write" msgstr "Escrever" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "" @@ -29390,13 +29488,13 @@ msgstr "" msgid "Y Axis" msgstr "Eixo Y" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" msgstr "" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "" @@ -29448,16 +29546,17 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29474,7 +29573,7 @@ msgstr "" #: frappe/public/js/frappe/ui/filters/filter.js:727 msgid "Yesterday" -msgstr "" +msgstr "Ontem" #: frappe/public/js/frappe/utils/user.js:33 msgctxt "Name of the current user. For example: You edited this 5 hours ago." @@ -29485,6 +29584,18 @@ msgstr "" msgid "You Liked" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "" @@ -29523,20 +29634,20 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29560,7 +29671,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:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29586,13 +29697,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " -msgstr "" +msgid "You can also copy-paste this" +msgstr "Você também pode copiar e colar isso" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "" +#: frappe/templates/emails/user_invitation_expired.html:8 +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 "" @@ -29605,11 +29720,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29629,7 +29744,7 @@ msgstr "" msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "" -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "" @@ -29647,7 +29762,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "" @@ -29659,11 +29774,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29681,7 +29796,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:385 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29711,7 +29826,7 @@ msgstr "" msgid "You created this" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "" @@ -29724,15 +29839,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29744,11 +29859,11 @@ msgstr "" msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "" @@ -29756,19 +29871,19 @@ msgstr "" msgid "You don't have permission to get a report on: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " -msgstr "" +msgid "You have a new message from:" +msgstr "Você tem uma nova mensagem de:" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29776,11 +29891,7 @@ msgstr "" msgid "You have not entered a value. The field will be set to empty." msgstr "" -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "" @@ -29800,7 +29911,7 @@ msgstr "" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29817,11 +29928,11 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "" @@ -29845,7 +29956,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "" @@ -29853,13 +29964,13 @@ msgstr "" msgid "You need to be logged in to access this page" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "" #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " -msgstr "" +msgid "You need to create these first:" +msgstr "Você precisa criar estes primeiro:" #: frappe/www/login.html:76 msgid "You need to enable JavaScript for your app to work." @@ -29893,11 +30004,19 @@ msgstr "" msgid "You need {0} permission to fetch values from {1} {2}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "" @@ -29928,10 +30047,26 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "" @@ -29961,7 +30096,7 @@ msgstr "" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "" @@ -29985,10 +30120,22 @@ msgstr "" msgid "Your email address" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "" @@ -30011,7 +30158,11 @@ msgstr "" msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "" -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "" @@ -30033,7 +30184,7 @@ msgstr "" msgid "Zero means send records updated at anytime" msgstr "Zero significa enviar registros atualizados a qualquer momento" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" msgstr "" @@ -30055,10 +30206,6 @@ msgstr "" msgid "`job_id` paramater is required for deduplication." msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30093,7 +30240,7 @@ msgstr "" msgid "cProfile Output" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "" @@ -30238,12 +30385,12 @@ msgstr "" msgid "email" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "" @@ -30300,7 +30447,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "" @@ -30315,11 +30462,6 @@ msgstr "ícone" msgid "import" msgstr "" -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "em minutos" - #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "" @@ -30328,7 +30470,7 @@ msgstr "" msgid "just now" msgstr "" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "" @@ -30357,7 +30499,7 @@ msgstr "" msgid "logged in" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30378,11 +30520,6 @@ msgstr "" msgid "merged {0} into {1}" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "" - #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json @@ -30406,7 +30543,7 @@ msgstr "módulo" msgid "module name..." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "" @@ -30535,10 +30672,6 @@ msgstr "" msgid "red" msgstr "vermelho" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "" @@ -30594,19 +30727,19 @@ msgstr "ação" msgid "short" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "" @@ -30659,6 +30792,10 @@ msgstr "" msgid "this shouldn't break" msgstr "" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "para o seu navegador" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30686,7 +30823,7 @@ msgstr "" msgid "via Assignment Rule" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "" @@ -30700,7 +30837,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "" @@ -30733,10 +30870,15 @@ msgstr "" msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "" +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json @@ -30764,11 +30906,11 @@ msgstr "dd/mm/yyyy" msgid "{0}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "" @@ -30794,19 +30936,19 @@ msgstr "" msgid "{0} Calendar" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "" @@ -30830,6 +30972,10 @@ msgstr "" msgid "{0} List" msgstr "" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "" @@ -30842,7 +30988,7 @@ msgstr "" msgid "{0} Name" msgstr "" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "" @@ -30852,11 +30998,10 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "" @@ -30881,7 +31026,15 @@ msgstr "" msgid "{0} added" msgstr "" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "" @@ -30893,7 +31046,7 @@ msgstr "" msgid "{0} already unsubscribed for {1} {2}" msgstr "" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "" @@ -30901,7 +31054,7 @@ msgstr "" msgid "{0} are currently {1}" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "" @@ -30918,7 +31071,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -30960,11 +31113,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." msgstr "" @@ -30977,7 +31126,7 @@ msgstr "" msgid "{0} created this" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "" @@ -30999,7 +31148,7 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31031,7 +31180,7 @@ msgstr "" msgid "{0} hours ago" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "" @@ -31040,23 +31189,23 @@ msgstr "" msgid "{0} in row {1} cannot have both URL and child items" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "" @@ -31065,27 +31214,27 @@ msgstr "" msgid "{0} is currently {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "" @@ -31093,7 +31242,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "{0} é obrigatório" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31113,12 +31262,12 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "" @@ -31126,15 +31275,15 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "" @@ -31150,55 +31299,59 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 -#: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: 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} é necessário" -#: frappe/public/js/frappe/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31231,35 +31384,35 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "" @@ -31267,7 +31420,7 @@ msgstr "" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "" @@ -31280,11 +31433,11 @@ msgid "{0} not found" msgstr "" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31293,7 +31446,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "" @@ -31317,6 +31470,10 @@ msgstr "" msgid "{0} records will be exported" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31326,15 +31483,29 @@ msgstr "" msgid "{0} removed their assignment." msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" +msgstr "{0} linha #{1}:" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "" @@ -31354,11 +31525,11 @@ msgstr "" msgid "{0} shared this document with {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "" @@ -31371,8 +31542,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "" @@ -31382,7 +31553,7 @@ msgstr "" #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "" @@ -31390,7 +31561,7 @@ msgstr "" msgid "{0} un-shared this document with {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "" @@ -31426,15 +31597,15 @@ msgstr "" msgid "{0} {1} added to Dashboard {2}" msgstr "" -#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "" @@ -31450,11 +31621,11 @@ msgstr "" msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" -#: frappe/model/base_document.py:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "" @@ -31462,79 +31633,79 @@ msgstr "" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "" -#: frappe/model/base_document.py:1120 +#: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 msgid "{0}: Cannot set import as {1} is not importable" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 +#: 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:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "" @@ -31542,7 +31713,7 @@ msgstr "" msgid "{0}: Other permission rules may also apply" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "" @@ -31550,7 +31721,7 @@ msgstr "" msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "" @@ -31563,11 +31734,11 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "" @@ -31591,7 +31762,7 @@ msgstr "" msgid "{count} rows selected" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "" @@ -31599,11 +31770,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
    {}" msgstr "" @@ -31629,7 +31800,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/ru.po b/frappe/locale/ru.po index 1f6526c0ee..ff74f68be0 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-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-21 21:50\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Russian\n" "MIME-Version: 1.0\n" @@ -18,10 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: ru_RU\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr "" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json @@ -61,7 +57,7 @@ msgstr "" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" msgstr "" @@ -74,7 +70,7 @@ msgstr "" msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "" @@ -82,19 +78,23 @@ msgstr "" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" msgstr "" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "" @@ -102,11 +102,11 @@ msgstr "" msgid "(Mandatory)" msgstr "" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" msgstr "" @@ -122,7 +122,7 @@ msgstr "" msgid "0 is highest" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "" @@ -140,15 +140,11 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "" @@ -157,17 +153,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "" @@ -179,37 +175,47 @@ msgstr "" msgid "1 record will be exported" msgstr "" -#: frappe/tests/test_utils.py:711 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "" + +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "" @@ -225,7 +231,7 @@ msgstr "" msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "" @@ -245,6 +251,13 @@ msgstr "" msgid "<=" msgstr "" +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "" @@ -254,6 +267,16 @@ msgstr "" msgid "
    Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
    " msgstr "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

    Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

    " +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

    Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

    " +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -479,7 +502,7 @@ msgid "

    To interact with above HTML you will have to use `root_element` as a p "" msgstr "" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

    " msgstr "" @@ -546,7 +569,7 @@ msgstr "" msgid ">=" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" @@ -555,15 +578,16 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." msgstr "" #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "" @@ -576,7 +600,7 @@ msgstr "" msgid "A new account has been created for you at {0}" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "" @@ -675,13 +699,17 @@ msgstr "" msgid "API Endpoint Args" msgstr "" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -700,6 +728,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -720,7 +752,7 @@ msgstr "" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -767,6 +799,20 @@ msgstr "" msgid "About {0} seconds remaining" msgstr "" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -792,7 +838,7 @@ msgstr "" msgid "Access Token URL" msgstr "" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "" @@ -856,7 +902,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "" @@ -908,7 +954,7 @@ msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "" @@ -965,7 +1011,7 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -976,7 +1022,7 @@ msgstr "" msgid "Add" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -988,7 +1034,7 @@ msgstr "" msgid "Add A New Rule" msgstr "" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "" @@ -1008,7 +1054,7 @@ msgstr "" msgid "Add Border at Top" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "" @@ -1021,10 +1067,10 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "" @@ -1083,7 +1129,7 @@ msgstr "" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "" @@ -1116,12 +1162,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "" @@ -1210,7 +1256,7 @@ msgstr "" msgid "Add page break" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "" @@ -1248,7 +1294,7 @@ msgstr "" msgid "Add {0}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" msgstr "" @@ -1291,6 +1337,7 @@ msgstr "" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1299,6 +1346,7 @@ msgstr "" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "" @@ -1306,6 +1354,7 @@ msgstr "" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "" @@ -1356,7 +1405,7 @@ msgstr "" msgid "Adds a custom field to a DocType" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "" @@ -1370,7 +1419,6 @@ msgstr "" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1383,11 +1431,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1408,8 +1456,8 @@ msgstr "" msgid "Advanced Control" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" msgstr "" @@ -1468,7 +1516,7 @@ msgstr "" msgid "After Submit" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "" @@ -1495,11 +1543,11 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1564,7 +1612,7 @@ msgstr "" msgid "All Records" msgstr "" -#: frappe/public/js/frappe/form/form.js:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "" @@ -1624,8 +1672,8 @@ msgstr "" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " -msgstr "" +msgid "Allow Consecutive Login Attempts" +msgstr "Разрешить последовательные попытки входа в систему" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 msgid "Allow Google Calendar Access" @@ -1645,11 +1693,6 @@ msgstr "" msgid "Allow Guest to View" msgstr "" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1698,7 +1741,7 @@ msgid "Allow Print for Cancelled" msgstr "" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "" @@ -1930,7 +1973,7 @@ msgstr "" msgid "Allows skipping authorization if a user has active tokens." msgstr "" -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "" @@ -1938,11 +1981,11 @@ msgstr "" msgid "Already in the following Users ToDo list:{0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "" @@ -1951,6 +1994,12 @@ msgstr "" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2002,10 +2051,8 @@ msgstr "" msgid "Amended Documents" msgstr "" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "" @@ -2029,6 +2076,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2122,10 +2174,12 @@ msgid "App Logo" msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2196,6 +2250,10 @@ msgstr "" msgid "Application Version" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2205,7 +2263,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2253,7 +2311,7 @@ msgstr "" msgid "Apply to all Documents Types" msgstr "" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "" @@ -2286,7 +2344,11 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2314,11 +2376,15 @@ msgctxt "Confirmation dialog message" msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:191 msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2326,7 +2392,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2381,6 +2447,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2390,7 +2462,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2453,6 +2525,11 @@ msgstr "" msgid "Assigned To/Owner" msgstr "" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "" @@ -2522,7 +2599,13 @@ msgstr "" msgid "Assignments" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -2602,7 +2685,7 @@ msgstr "" msgid "Attached To Name" msgstr "" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "" @@ -2618,7 +2701,7 @@ msgstr "" msgid "Attachment Limit (MB)" msgstr "" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "" @@ -2636,15 +2719,15 @@ 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:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "" @@ -2667,6 +2750,10 @@ msgstr "" msgid "Auth URL Data" msgstr "" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "" + #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authenticate as Service Principal" @@ -2684,8 +2771,8 @@ msgid "Authentication" msgstr "" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " -msgstr "" +msgid "Authentication Apps you can use are:" +msgstr "Вы можете использовать следующие приложения для аутентификации:" #: frappe/email/doctype/email_account/email_account.py:339 msgid "Authentication failed while receiving emails from Email Account: {0}." @@ -2798,11 +2885,11 @@ msgstr "" msgid "Auto Repeat Day" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "" @@ -2810,11 +2897,16 @@ msgstr "" msgid "Auto Repeat Schedule" msgstr "" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "" @@ -2858,7 +2950,7 @@ msgstr "" msgid "Auto follow documents that you create" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "Автоматическое повторение не удалось. Пожалуйста, включите автоповтор после устранения неполадок." @@ -2906,7 +2998,7 @@ msgstr "" msgid "Automatically Assign Documents to Users" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "Автоматическое применение фильтра для последних данных. Это поведение можно отключить в настройках представления списка." @@ -2920,11 +3012,6 @@ msgstr "" msgid "Automation" msgstr "" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3196,8 +3283,8 @@ msgstr "" #. Label of the based_on (Link) field in DocType 'Language' #: frappe/core/doctype/language/language.json -#: frappe/printing/page/print/print.js:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "" @@ -3314,10 +3401,8 @@ msgstr "" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "" @@ -3347,64 +3432,6 @@ msgstr "" msgid "Blocked" msgstr "" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3501,13 +3528,6 @@ msgstr "" msgid "Breadcrumbs" msgstr "" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3565,15 +3585,15 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" msgstr "" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "" @@ -3588,7 +3608,7 @@ msgstr "" msgid "Bulk Update" msgstr "" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "" @@ -3600,7 +3620,7 @@ msgstr "" msgid "Bulk operations only support up to 500 documents." msgstr "" -#: frappe/model/workflow.py:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "" @@ -3730,16 +3750,6 @@ msgstr "" msgid "CSV" msgstr "" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3790,11 +3800,6 @@ msgstr "" msgid "Call To Action URL" msgstr "" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -3812,7 +3817,7 @@ msgid "Camera" msgstr "" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3848,7 +3853,7 @@ msgstr "" msgid "Can not rename as column {0} is already present on DocType." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "" @@ -3872,14 +3877,15 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3897,16 +3903,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -3944,11 +3952,11 @@ msgstr "" msgid "Cannot Remove" msgstr "" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3956,7 +3964,7 @@ msgstr "" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "" @@ -3964,11 +3972,11 @@ msgstr "" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1013 +#: frappe/model/document.py:1017 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -3976,11 +3984,11 @@ msgstr "" msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "" @@ -3992,11 +4000,11 @@ msgstr "" msgid "Cannot create private workspace of other users" msgstr "" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4031,7 +4039,7 @@ msgstr "" msgid "Cannot delete {0}" msgstr "" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" msgstr "" @@ -4039,7 +4047,7 @@ msgstr "" msgid "Cannot edit Standard Dashboards" msgstr "" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "" @@ -4051,7 +4059,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" -#: frappe/model/document.py:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "" @@ -4059,8 +4067,8 @@ msgstr "" msgid "Cannot edit filters for standard charts" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "" @@ -4068,27 +4076,27 @@ msgstr "" msgid "Cannot edit standard fields" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:884 msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1132 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "" @@ -4100,11 +4108,11 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "" @@ -4112,7 +4120,7 @@ msgstr "" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "" @@ -4129,11 +4137,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4201,15 +4209,6 @@ msgstr "" msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4247,8 +4246,9 @@ msgstr "" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
    \n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " -msgstr "" +"Warning: Incorrectly updating counters can prevent documents from getting created." +msgstr "Изменение начального / текущего порядкового номера существующей серии.
    \n\n" +"Предупреждение: Неправильное обновление счетчиков может помешать созданию документов." #. Label of the changed_at (Datetime) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -4317,7 +4317,7 @@ msgstr "" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "" @@ -4350,7 +4350,7 @@ msgstr "" msgid "Check" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "" @@ -4358,7 +4358,7 @@ msgstr "" msgid "Check columns to select, drag to set order." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "" @@ -4399,11 +4399,6 @@ msgstr "" msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "" -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "" @@ -4413,17 +4408,17 @@ msgstr "" msgid "Child Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4452,6 +4447,7 @@ msgid "Choose authentication method to be used by all users" 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 msgid "City" msgstr "" @@ -4466,7 +4462,7 @@ msgstr "" msgid "Clear" msgstr "" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "" @@ -4478,7 +4474,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4504,7 +4500,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "" @@ -4516,11 +4512,15 @@ msgstr "" msgid "Click On Customize to add your first widget" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "" @@ -4551,24 +4551,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4746,7 +4746,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4801,7 +4801,7 @@ msgstr "" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4857,11 +4857,11 @@ msgstr "" msgid "Column Name cannot be empty" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4888,7 +4888,7 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "" @@ -4930,16 +4930,6 @@ msgstr "" msgid "Comment can only be edited by the owner" msgstr "" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "" @@ -4947,7 +4937,7 @@ msgstr "" #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "" @@ -4956,7 +4946,7 @@ msgstr "" msgid "Comments and Communications will be associated with this linked document" msgstr "" -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "" @@ -5028,12 +5018,12 @@ msgid "Company Name" msgstr "" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "" @@ -5113,8 +5103,8 @@ msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5128,6 +5118,11 @@ msgstr "" msgid "Condition JSON" msgstr "" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5153,11 +5148,11 @@ msgstr "" msgid "Configuration" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5182,7 +5177,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5201,7 +5196,7 @@ msgstr "Подтвердите доступ" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "" @@ -5228,7 +5223,7 @@ msgstr "" msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "" @@ -5246,8 +5241,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "" @@ -5298,6 +5293,10 @@ msgstr "" msgid "Contact" msgstr "" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
    {0}" +msgstr "" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5355,15 +5354,13 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5371,24 +5368,12 @@ msgstr "" msgid "Content" msgstr "" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "" @@ -5456,7 +5441,7 @@ msgstr "" msgid "Copy embed code" msgstr "" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "" @@ -5464,12 +5449,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "" + #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5477,7 +5466,7 @@ msgstr "" msgid "Core Modules {0} cannot be searched in Global Search." msgstr "" -#: frappe/printing/page/print/print.js:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "" @@ -5485,7 +5474,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "" -#: frappe/model/document.py:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "" @@ -5493,15 +5482,15 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " -msgstr "" +msgid "Could not start up:" +msgstr "Не удалось запустить:" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "" @@ -5546,13 +5535,14 @@ msgstr "" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "" @@ -5584,13 +5574,13 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5604,7 +5594,7 @@ msgid "Create Card" msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "" @@ -5638,12 +5628,12 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5651,7 +5641,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "" @@ -5663,7 +5653,7 @@ msgstr "" msgid "Create a Reminder" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "" @@ -5671,11 +5661,11 @@ msgstr "" msgid "Create a new record" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "" @@ -5691,7 +5681,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "" @@ -5701,7 +5691,7 @@ msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "" @@ -5717,7 +5707,7 @@ msgstr "" msgid "Created By" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "" @@ -5729,7 +5719,7 @@ msgstr "" msgid "Created On" msgstr "" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "" @@ -6038,7 +6028,7 @@ msgstr "" #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "" @@ -6066,14 +6056,14 @@ msgstr "" msgid "Customizations for {0} exported to:
    {1}" msgstr "" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6092,7 +6082,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "" @@ -6170,7 +6160,7 @@ msgstr "" msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "" -#: frappe/desk/doctype/event/event.py:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "" @@ -6217,7 +6207,7 @@ msgstr "" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "" @@ -6276,7 +6266,6 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6289,7 +6278,6 @@ msgstr "" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6325,7 +6313,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "" @@ -6356,7 +6344,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6494,11 +6482,11 @@ msgstr "" msgid "Debug Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "" @@ -6660,11 +6648,11 @@ msgstr "" msgid "Default display currency" msgstr "Валюта отображения по умолчанию" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 msgid "Default value for {0} must be in the list of options." msgstr "" @@ -6698,6 +6686,12 @@ msgstr "" msgid "Defines actions on states and the next step and allowed roles." msgstr "" +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6715,22 +6709,27 @@ 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/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "" @@ -6739,6 +6738,12 @@ msgstr "" 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 +msgid "Delete Background Exported Reports After (Hours)" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6748,7 +6753,7 @@ msgstr "" msgid "Delete Data" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6762,7 +6767,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6771,7 +6776,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "" @@ -6804,12 +6809,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6845,11 +6850,15 @@ msgstr "" msgid "Deleted Name" msgstr "" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Удалено!" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "" @@ -6864,8 +6873,8 @@ msgstr "" #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " -msgstr "" +msgid "Deletion Steps" +msgstr "Шаги удаления" #: frappe/core/doctype/page/page.py:110 #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 @@ -6881,7 +6890,7 @@ msgstr "" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "" @@ -6908,7 +6917,7 @@ msgstr "" msgid "Dependencies" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "" @@ -6943,7 +6952,6 @@ msgstr "" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -6964,7 +6972,6 @@ msgstr "" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -6974,11 +6981,6 @@ msgstr "" msgid "Description" msgstr "" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -7062,7 +7064,7 @@ msgstr "" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "" @@ -7123,11 +7125,6 @@ msgstr "" msgid "Disable Comment Count" msgstr "" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7145,11 +7142,6 @@ msgstr "" msgid "Disable Document Sharing" msgstr "" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "" @@ -7159,6 +7151,11 @@ msgstr "" msgid "Disable SMTP server authentication" msgstr "" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7204,7 +7201,6 @@ msgstr "" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7219,7 +7215,6 @@ msgstr "" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "" @@ -7230,7 +7225,7 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "" @@ -7248,7 +7243,7 @@ msgstr "Отменить" msgid "Discard {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "" @@ -7271,7 +7266,7 @@ msgstr "" msgid "Discussion Topic" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7307,19 +7302,23 @@ msgstr "" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " -msgstr "" +msgid "Do Not Create New User" +msgstr "Не создавать нового пользователя" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7410,7 +7409,7 @@ msgstr "" msgid "DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1577 +#: frappe/core/doctype/doctype/doctype.py:1578 msgid "DocType {0} provided for the field {1} must have atleast one Link field" msgstr "" @@ -7457,11 +7456,11 @@ msgstr "" msgid "DocType View" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "" @@ -7470,7 +7469,7 @@ msgstr "" msgid "DocType is a Table / Form in the application." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "" @@ -7503,7 +7502,7 @@ msgstr "" msgid "DocType {} not found" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "" @@ -7517,7 +7516,7 @@ msgstr "" msgid "Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "" @@ -7579,31 +7578,29 @@ msgstr "" msgid "Document Links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7745,13 +7742,13 @@ msgstr "" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 msgid "Document Type and Function are required to create a number card" msgstr "" @@ -7788,7 +7785,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "" @@ -7796,15 +7793,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "" @@ -7946,13 +7943,13 @@ msgstr "" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "" @@ -7979,7 +7976,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "" @@ -8042,7 +8039,7 @@ msgstr "" msgid "Drag to add state" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "" @@ -8075,7 +8072,7 @@ msgstr "" msgid "Duplicate Filter Name" msgstr "" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "" @@ -8174,17 +8171,17 @@ msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8192,7 +8189,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8202,7 +8199,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8231,7 +8228,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8249,7 +8246,7 @@ msgstr "" msgid "Edit Footer" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "" @@ -8334,7 +8331,7 @@ msgstr "" msgid "Edit to add content" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "" @@ -8343,7 +8340,7 @@ msgstr "" msgid "Edit your workflow visually using the Workflow Builder." msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "" @@ -8351,7 +8348,7 @@ msgstr "" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "" @@ -8390,11 +8387,14 @@ msgstr "" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8403,6 +8403,7 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8412,6 +8413,8 @@ msgstr "" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "" @@ -8443,7 +8446,7 @@ msgstr "" msgid "Email Account Name" msgstr "" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "" @@ -8531,6 +8534,7 @@ msgid "Email IDs" msgstr "" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "" @@ -8574,9 +8578,9 @@ msgstr "" msgid "Email Rule" msgstr "" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" msgstr "" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' @@ -8642,11 +8646,11 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "" @@ -8685,7 +8689,7 @@ msgstr "" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8693,7 +8697,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -8712,7 +8716,7 @@ msgstr "" msgid "Enable Address Autocompletion" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "" @@ -8738,11 +8742,6 @@ msgstr "" msgid "Enable Dynamic Client Registration" msgstr "" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -8836,11 +8835,6 @@ msgstr "" msgid "Enable Social Login" msgstr "" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "" @@ -8848,7 +8842,7 @@ msgstr "" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "" @@ -8860,12 +8854,6 @@ msgstr "" msgid "Enable developer mode to create a standard Web Template" msgstr "" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "" - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -8888,6 +8876,7 @@ msgstr "" #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -8900,6 +8889,7 @@ msgstr "" #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "" @@ -8925,14 +8915,10 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "" - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." msgstr "" #. Description of the 'Queue in Background (BETA)' (Check) field in DocType @@ -8949,11 +8935,11 @@ msgstr "" msgid "Encrypt Backups" msgstr "" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "" @@ -8965,7 +8951,7 @@ msgstr "" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -8981,6 +8967,10 @@ msgstr "" msgid "End Date cannot be before Start Date!" msgstr "" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9025,7 +9015,7 @@ msgstr "" msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "" @@ -9095,10 +9085,17 @@ msgstr "" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9108,7 +9105,7 @@ msgstr "" msgid "Error" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "" @@ -9128,7 +9125,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 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 "" @@ -9156,9 +9153,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "" @@ -9178,19 +9175,19 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "" @@ -9247,7 +9244,7 @@ msgstr "" msgid "Events" msgstr "" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "" @@ -9331,7 +9328,7 @@ msgstr "" msgid "Execute Console script" msgstr "" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "" @@ -9339,7 +9336,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "" @@ -9365,12 +9362,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9398,7 +9395,9 @@ msgid "Expire Notification On" msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "" @@ -9426,13 +9425,13 @@ msgstr "" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9469,7 +9468,7 @@ msgstr "" msgid "Export Import Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "" @@ -9478,11 +9477,11 @@ msgstr "" msgid "Export Type" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "" @@ -9490,6 +9489,10 @@ msgstr "" msgid "Export as zip" msgstr "" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "" @@ -9595,7 +9598,7 @@ msgstr "" msgid "Failed Logins (Last 30 days)" msgstr "" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "" @@ -9612,7 +9615,7 @@ msgstr "" msgid "Failed to complete setup" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "" @@ -9621,15 +9624,15 @@ msgstr "" msgid "Failed to connect to server" msgstr "" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "" @@ -9637,8 +9640,8 @@ msgstr "" msgid "Failed to enable scheduler: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "" @@ -9654,7 +9657,7 @@ msgstr "" msgid "Failed to generate preview of series" msgstr "" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "" @@ -9674,11 +9677,11 @@ msgstr "" msgid "Failed to optimize image: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "" @@ -9728,12 +9731,6 @@ msgstr "" msgid "Fax" msgstr "" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "" @@ -9791,17 +9788,17 @@ msgstr "" #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "" @@ -9814,7 +9811,7 @@ msgstr "" msgid "Field Description" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9844,7 +9841,7 @@ msgstr "" msgid "Field Type" msgstr "" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "" @@ -9870,11 +9867,11 @@ msgstr "" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "" -#: frappe/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "" -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9892,20 +9889,20 @@ 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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "" @@ -9921,15 +9918,15 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "" @@ -9952,7 +9949,7 @@ msgstr "" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -9965,7 +9962,7 @@ msgstr "" msgid "Fields Multicheck" msgstr "" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "" @@ -9973,7 +9970,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10001,7 +9998,7 @@ msgstr "" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10014,7 +10011,7 @@ msgstr "" msgid "File" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "" @@ -10067,7 +10064,7 @@ msgstr "" msgid "File backup is ready" msgstr "" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "" @@ -10075,7 +10072,7 @@ msgstr "" msgid "File not attached" msgstr "" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "" @@ -10084,11 +10081,11 @@ msgstr "" msgid "File too big" msgstr "" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "" @@ -10102,10 +10099,10 @@ msgstr "" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10142,11 +10139,11 @@ msgstr "" msgid "Filter Values" msgstr "" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10164,7 +10161,6 @@ msgstr "" msgid "Filtered Records" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "" @@ -10179,7 +10175,9 @@ msgstr "" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10201,6 +10199,11 @@ msgstr "" msgid "Filters Display" msgstr "" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10213,11 +10216,11 @@ msgstr "" msgid "Filters Section" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "" @@ -10230,18 +10233,18 @@ msgstr "" msgid "Filters {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1427 +#: frappe/public/js/frappe/views/reports/report_view.js:1429 msgid "Filters:" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 msgid "Find '{0}' in ..." msgstr "" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 msgid "Find {0} in {1}" msgstr "" @@ -10265,8 +10268,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "" @@ -10275,10 +10282,6 @@ msgstr "" msgid "First Success Message" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:49 -msgid "First Transaction" -msgstr "" - #: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." msgstr "" @@ -10329,11 +10332,11 @@ msgstr "" msgid "Fold" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1450 +#: frappe/core/doctype/doctype/doctype.py:1451 msgid "Fold can not be at the end of the form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1448 +#: frappe/core/doctype/doctype/doctype.py:1449 msgid "Fold must come before a Section Break" msgstr "" @@ -10351,7 +10354,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "" -#: frappe/core/doctype/file/file.py:472 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "" @@ -10458,7 +10461,7 @@ msgstr "" msgid "Footer HTML" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:75 +#: frappe/printing/doctype/letter_head/letter_head.py:81 msgid "Footer HTML set from attachment {0}" msgstr "" @@ -10495,7 +10498,7 @@ msgstr "" msgid "Footer Template Values" msgstr "" -#: frappe/printing/page/print/print.js:116 +#: frappe/printing/page/print/print.js:129 msgid "Footer might not be visible as {0} option is disabled" msgstr "" @@ -10553,8 +10556,8 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10580,12 +10583,6 @@ msgstr "" msgid "For help see Client Script API and Examples" msgstr "" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "" - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "" @@ -10600,7 +10597,7 @@ msgstr "" msgid "For updating, you can update only selective columns." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "" @@ -10655,7 +10652,7 @@ 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:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "" @@ -10715,6 +10712,11 @@ msgstr "" msgid "Format Data" msgstr "" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "" @@ -10742,7 +10744,15 @@ msgstr "" msgid "Frappe" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "" @@ -10831,7 +10841,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "" @@ -10858,18 +10868,16 @@ msgstr "" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "" @@ -10895,12 +10903,12 @@ msgstr "" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" +msgid "Further sub-groups can only be created under records marked as 'Group'" msgstr "" #: frappe/core/doctype/communication/communication.js:291 @@ -10960,7 +10968,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "" @@ -10968,8 +10976,14 @@ msgstr "" msgid "Generate Random Password" msgstr "" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "" @@ -10992,7 +11006,7 @@ msgstr "" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "" @@ -11128,7 +11142,7 @@ msgid "Go to this URL after completing the form" msgstr "" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "" @@ -11176,10 +11190,6 @@ msgstr "" msgid "Google Calendar" msgstr "" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
    {0}" -msgstr "" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "" @@ -11298,11 +11308,6 @@ msgstr "" msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "" -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11379,14 +11384,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11436,7 +11437,6 @@ msgstr "" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11447,9 +11447,8 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11553,7 +11552,7 @@ msgstr "" msgid "Header HTML" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "" @@ -11611,6 +11610,12 @@ msgstr "" msgid "Hello" msgstr "" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "" + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11676,7 +11681,7 @@ msgstr "" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "" @@ -11712,7 +11717,7 @@ msgstr "" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11745,11 +11750,6 @@ msgstr "" msgid "Hide Buttons" msgstr "" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "" - #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json @@ -11829,7 +11829,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -11843,7 +11843,7 @@ msgstr "" msgid "Hide descendant records of For Value." msgstr "" -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "" @@ -11892,11 +11892,8 @@ 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:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -11984,16 +11981,16 @@ msgstr "" #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -12089,9 +12086,9 @@ msgstr "" msgid "If Checked workflow status will not override status in list view" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "" @@ -12219,6 +12216,10 @@ msgstr "" msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12250,7 +12251,11 @@ msgstr "" msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "" -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "" @@ -12307,12 +12312,12 @@ msgstr "" msgid "Ignored Apps" msgstr "" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "" @@ -12373,11 +12378,11 @@ msgstr "" msgid "Image Width" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 msgid "Image field must be a valid fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "" @@ -12399,15 +12404,15 @@ msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "" @@ -12433,7 +12438,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12661,15 +12666,16 @@ msgstr "" msgid "Include Web View Link in Email" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "" @@ -12716,7 +12722,7 @@ msgstr "" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "" @@ -12728,7 +12734,7 @@ msgstr "" msgid "Incorrect URL" msgstr "" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "" @@ -12736,11 +12742,11 @@ msgstr "" msgid "Incorrect Verification code" msgstr "" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "" @@ -12752,7 +12758,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "" @@ -12827,7 +12833,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "" @@ -12843,7 +12849,7 @@ msgstr "" msgid "Insert Below" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "" @@ -12861,8 +12867,12 @@ msgstr "" msgid "Insert Style" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "" @@ -12879,7 +12889,7 @@ msgid "Installed Applications" msgstr "" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "" @@ -12896,19 +12906,19 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" msgstr "" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "" @@ -13012,9 +13022,9 @@ msgid "Invalid" msgstr "" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "" @@ -13022,7 +13032,7 @@ msgstr "" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "" @@ -13038,7 +13048,7 @@ msgstr "" msgid "Invalid Code. Please try again." msgstr "Неверный код. Пожалуйста, попробуйте еще раз." -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "" @@ -13058,16 +13068,20 @@ msgstr "" msgid "Invalid DocType: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13099,7 +13113,7 @@ msgstr "" msgid "Invalid Mail Server. Please rectify and try again." msgstr "" -#: frappe/model/naming.py:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "" @@ -13108,8 +13122,8 @@ msgstr "" msgid "Invalid Operation" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "" @@ -13121,25 +13135,25 @@ msgstr "" msgid "Invalid Output Format" msgstr "" -#: frappe/model/base_document.py:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "" @@ -13148,7 +13162,7 @@ msgstr "" msgid "Invalid Search Field {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "" @@ -13156,8 +13170,8 @@ msgstr "" msgid "Invalid Transition" msgstr "" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13171,47 +13185,51 @@ msgstr "" msgid "Invalid Values" msgstr "Недопустимые значения" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "" @@ -13223,31 +13241,27 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13255,11 +13269,11 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13267,20 +13281,28 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "" @@ -13288,6 +13310,10 @@ msgstr "" msgid "Invalid naming series {}: dot (.) missing" msgstr "" +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "" @@ -13296,19 +13322,27 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13316,7 +13350,7 @@ msgstr "" msgid "Invalid template file for import" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "" @@ -13325,20 +13359,20 @@ msgstr "" msgid "Invalid username or password" msgstr "" -#: frappe/model/naming.py:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "" @@ -13347,10 +13381,47 @@ msgstr "" msgid "Inverse" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "" @@ -13375,7 +13446,7 @@ msgstr "" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "" @@ -13428,6 +13499,10 @@ msgstr "" msgid "Is Global" msgstr "" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13454,8 +13529,13 @@ msgstr "" msgid "Is Primary" msgstr "" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 msgid "Is Primary Contact" msgstr "" @@ -13486,7 +13566,7 @@ msgstr "" msgid "Is Published Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "" @@ -13511,7 +13591,7 @@ msgstr "" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "" @@ -13547,7 +13627,7 @@ msgstr "" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "" @@ -13753,11 +13833,11 @@ msgstr "" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13778,12 +13858,14 @@ msgstr "" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -14045,7 +14127,7 @@ msgstr "" msgid "Landing Page" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "" @@ -14053,10 +14135,13 @@ msgstr "" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14144,8 +14229,12 @@ msgstr "" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "" @@ -14160,6 +14249,11 @@ msgstr "" msgid "Last Quarter" msgstr "" +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" + #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json @@ -14176,11 +14270,6 @@ msgstr "" msgid "Last Sync On" msgstr "" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14291,7 +14380,7 @@ msgstr "" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "" @@ -14340,8 +14429,8 @@ 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:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14369,7 +14458,7 @@ msgstr "" msgid "Letter Head Scripts" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "" @@ -14386,7 +14475,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "" @@ -14436,20 +14525,6 @@ msgstr "" msgid "Like" msgstr "" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "" @@ -14490,6 +14565,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14503,6 +14579,7 @@ msgstr "" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "" @@ -14633,10 +14710,15 @@ msgstr "" msgid "Linked With" msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +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 (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14644,6 +14726,7 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "" @@ -14685,7 +14768,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14726,7 +14809,7 @@ msgstr "" msgid "List setting message" msgstr "Сообщение о настройке списка" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "" @@ -14735,9 +14818,8 @@ msgstr "" msgid "Load Balancing" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14754,10 +14836,10 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "" @@ -14769,7 +14851,7 @@ msgstr "" msgid "Loading import file..." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "" @@ -14779,7 +14861,7 @@ msgstr "" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "" @@ -14840,7 +14922,7 @@ msgstr "" msgid "Log out" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "" @@ -14900,7 +14982,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -14908,7 +14990,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "" @@ -14961,7 +15043,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -14980,7 +15062,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "" @@ -15084,7 +15166,10 @@ msgid "Major" 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 +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "" @@ -15160,7 +15245,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "" @@ -15172,15 +15257,15 @@ msgstr "" msgid "Mandatory field: {0}" msgstr "" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "" @@ -15261,10 +15346,8 @@ msgid "Mark as Unread" msgstr "" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15345,7 +15428,13 @@ msgstr "Максимальный размер крепления" msgid "Max auto email report per user" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "" @@ -15354,20 +15443,15 @@ msgstr "" msgid "Maximum" msgstr "" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "" -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "" -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "" @@ -15383,7 +15467,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15396,7 +15480,7 @@ msgstr "" msgid "Meeting" msgstr "" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "" @@ -15437,7 +15521,7 @@ msgstr "" msgid "Merge with existing" msgstr "" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "" @@ -15463,7 +15547,7 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15503,7 +15587,7 @@ msgstr "" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "" @@ -15535,29 +15619,21 @@ msgstr "" msgid "Meta" msgstr "" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "" @@ -15610,7 +15686,7 @@ msgstr "" msgid "Method Not Allowed" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "" @@ -15626,6 +15702,11 @@ msgstr "" msgid "Middle Name" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15692,11 +15773,11 @@ msgstr "" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "" @@ -15732,15 +15813,16 @@ msgstr "" msgid "Mobile No" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "" + #. Label of the modal_trigger (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Modal Trigger" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15761,7 +15843,7 @@ msgstr "" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -15937,10 +16019,12 @@ msgstr "" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "" @@ -15959,7 +16043,7 @@ msgstr "" msgid "Most Used" msgstr "" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "" @@ -15970,7 +16054,7 @@ msgstr "" msgid "Move" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "" @@ -16006,7 +16090,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "" @@ -16033,7 +16117,7 @@ msgstr "" msgid "Ms" msgstr "" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "" @@ -16056,7 +16140,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "" @@ -16074,7 +16158,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16112,9 +16196,9 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16124,11 +16208,11 @@ msgstr "" msgid "Name (Doc Name)" msgstr "" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "" @@ -16140,7 +16224,7 @@ msgstr "" msgid "Name of the new Print Format" msgstr "" -#: frappe/model/naming.py:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "" @@ -16179,7 +16263,7 @@ msgstr "" msgid "Naming Series" msgstr "" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "" @@ -16216,12 +16300,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16236,7 +16320,11 @@ msgstr "" msgid "Navigation Settings" msgstr "" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16244,7 +16332,7 @@ msgstr "" msgid "Negative Value" msgstr "" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16257,6 +16345,12 @@ msgstr "" msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +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 @@ -16265,7 +16359,7 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16286,10 +16380,6 @@ msgstr "" msgid "New Chart" msgstr "" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "" @@ -16298,8 +16388,8 @@ msgstr "" msgid "New Custom Block" msgstr "" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" msgstr "" @@ -16330,7 +16420,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "" @@ -16365,12 +16455,12 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "" @@ -16379,7 +16469,7 @@ msgstr "" msgid "New Quick List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "" @@ -16397,8 +16487,8 @@ msgstr "" msgid "New Users (Last 30 days)" msgstr "" -#: frappe/core/doctype/version/version_view.html:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "" @@ -16455,13 +16545,13 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "" @@ -16477,7 +16567,7 @@ msgstr "" msgid "New {0} {1} created" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "" @@ -16485,7 +16575,7 @@ msgstr "" msgid "New {} releases for the following apps are available" msgstr "" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "" @@ -16498,7 +16588,7 @@ msgstr "" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16605,14 +16695,15 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16662,6 +16753,10 @@ msgstr "" msgid "No Email Accounts Assigned" msgstr "" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "" @@ -16697,15 +16792,15 @@ msgstr "" msgid "No Label" msgstr "" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: frappe/public/js/frappe/list/bulk_operations.js:98 #: frappe/public/js/frappe/list/bulk_operations.js:170 #: frappe/utils/weasyprint.py:52 msgid "No Letterhead" msgstr "" -#: frappe/model/naming.py:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "" @@ -16713,7 +16808,7 @@ msgstr "" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "" @@ -16733,11 +16828,11 @@ msgstr "" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "" @@ -16753,11 +16848,11 @@ msgstr "" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16765,7 +16860,7 @@ msgstr "" msgid "No Suggestions" msgstr "" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "" @@ -16777,7 +16872,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "" @@ -16805,23 +16900,19 @@ msgstr "" msgid "No changes to update" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " -msgstr "" +msgid "No comments yet." +msgstr "Комментариев пока нет." #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "" @@ -16837,11 +16928,15 @@ msgstr "" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16865,7 +16960,7 @@ msgstr "" msgid "No matching records. Search something new" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "" @@ -16909,7 +17004,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "" @@ -16921,7 +17016,7 @@ msgstr "" msgid "No records deleted" msgstr "" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "" @@ -16937,7 +17032,7 @@ msgstr "" msgid "No rows" msgstr "" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -16957,11 +17052,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -16970,7 +17065,7 @@ msgid "No {0} mail" msgstr "" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -17013,7 +17108,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "" @@ -17034,7 +17129,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -17060,20 +17155,19 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17082,10 +17176,10 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "" @@ -17117,7 +17211,7 @@ msgstr "" msgid "Not a valid User Image." msgstr "" -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "" @@ -17133,11 +17227,11 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "" @@ -17161,27 +17255,27 @@ msgstr "" msgid "Not in Developer Mode" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17216,7 +17310,7 @@ msgstr "" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17240,10 +17334,9 @@ msgstr "" msgid "Nothing left to undo" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "" @@ -17289,15 +17382,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17348,7 +17441,7 @@ msgstr "" msgid "Notify users with a popup when they log in" msgstr "" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "" @@ -17406,12 +17499,12 @@ msgstr "" msgid "Number of Queries" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17520,11 +17613,11 @@ msgstr "" msgid "OTP Issuer Name" msgstr "" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "" @@ -17643,7 +17736,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "" @@ -17683,7 +17776,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "" @@ -17728,7 +17821,7 @@ msgstr "" msgid "Only Allow Edit For" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "" @@ -17745,7 +17838,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "" @@ -17764,19 +17857,19 @@ msgstr "" msgid "Only one {0} can be set as primary." msgstr "" -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17846,7 +17939,7 @@ msgstr "" msgid "Open Settings" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "" @@ -17864,7 +17957,7 @@ msgstr "" msgid "Open a module or tool" msgstr "" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "" @@ -17872,7 +17965,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17887,13 +17980,13 @@ msgstr "" #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "" @@ -17902,6 +17995,10 @@ msgstr "" msgid "OpenID Configuration" msgstr "" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" @@ -17917,7 +18014,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "" @@ -17943,7 +18040,7 @@ msgstr "" msgid "Option 3" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "" @@ -17963,6 +18060,7 @@ msgstr "" #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -17971,11 +18069,12 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "" @@ -17984,7 +18083,7 @@ msgstr "" msgid "Options Help" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "" @@ -17992,7 +18091,7 @@ msgstr "" msgid "Options for select. Each option on a new line." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 msgid "Options for {0} must be set before setting the default value." msgstr "" @@ -18000,7 +18099,7 @@ msgstr "" msgid "Options is required for field {0} of type {1}" msgstr "" -#: frappe/model/base_document.py:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "" @@ -18016,7 +18115,7 @@ msgstr "" msgid "Order" msgstr "" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18032,12 +18131,12 @@ msgstr "" msgid "Org History Heading" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "" @@ -18105,10 +18204,6 @@ msgstr "" msgid "Overview" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" @@ -18116,9 +18211,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:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18159,11 +18254,11 @@ msgstr "" msgid "PDF generation failed because of broken image links" msgstr "" -#: frappe/printing/page/print/print.js:616 +#: frappe/printing/page/print/print.js:656 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:574 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18335,7 +18430,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:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "" @@ -18362,7 +18457,7 @@ msgstr "" msgid "Parent Document Type" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "" @@ -18379,11 +18474,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:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "" @@ -18392,7 +18487,7 @@ msgstr "" msgid "Parent Label" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 msgid "Parent Missing" msgstr "" @@ -18466,8 +18561,8 @@ msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18477,7 +18572,7 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "" @@ -18490,7 +18585,7 @@ msgstr "" msgid "Password Reset Link Generation Limit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18507,6 +18602,10 @@ msgstr "" msgid "Password is required or select Awaiting Password" msgstr "" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "" @@ -18515,7 +18614,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18523,11 +18622,11 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." msgstr "" @@ -18535,7 +18634,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "" @@ -18605,10 +18704,12 @@ msgstr "Пиковое использование памяти" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "" @@ -18684,7 +18785,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "" @@ -18744,16 +18845,16 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: frappe/core/page/permission_manager/permission_manager.js:221 #: frappe/core/workspace/users/users.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Permissions" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "" @@ -18815,15 +18916,18 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -18836,13 +18940,13 @@ msgstr "" msgid "Phone No." msgstr "" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "" @@ -18902,11 +19006,11 @@ msgstr "" msgid "Please Set Chart" msgstr "" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "" @@ -18914,7 +19018,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18922,11 +19026,11 @@ msgstr "" msgid "Please attach a file first." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 msgid "Please attach an image file to set HTML for Footer." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "" @@ -18934,19 +19038,15 @@ msgstr "" msgid "Please attach the package" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "" - #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "" -#: frappe/model/base_document.py:951 +#: frappe/model/base_document.py:1008 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "" @@ -18978,11 +19078,11 @@ msgstr "" msgid "Please confirm your action to {0} this document." msgstr "" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "" @@ -18998,20 +19098,20 @@ msgstr "" msgid "Please do not change the template headings." msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "" @@ -19048,7 +19148,7 @@ msgstr "" msgid "Please enter Client Secret before social login is enabled" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "" @@ -19085,11 +19185,12 @@ msgstr "" msgid "Please enter your old password." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "" @@ -19097,11 +19198,11 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "" -#: frappe/model/document.py:988 +#: frappe/model/document.py:992 msgid "Please refresh to get the latest document." msgstr "" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:575 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19117,7 +19218,7 @@ msgstr "" msgid "Please save the document before removing assignment" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "" @@ -19125,7 +19226,7 @@ msgstr "" msgid "Please save to edit the template." msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "" @@ -19133,19 +19234,19 @@ msgstr "" msgid "Please select Entity Type first" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "" @@ -19153,7 +19254,7 @@ msgstr "" msgid "Please select a file or url" msgstr "" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" msgstr "" @@ -19165,7 +19266,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19191,11 +19292,11 @@ msgstr "" msgid "Please set Email Address" msgstr "" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:589 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "" @@ -19203,7 +19304,7 @@ msgstr "" msgid "Please set filters value in Report Filter table." msgstr "" -#: frappe/model/naming.py:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "" @@ -19215,7 +19316,7 @@ msgstr "" msgid "Please set the series to be used." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -19239,23 +19340,23 @@ msgstr "" msgid "Please specify a valid parent DocType for {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "" @@ -19276,7 +19377,7 @@ msgstr "" msgid "Please use following links to download file backup." msgstr "" -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" @@ -19330,7 +19431,7 @@ msgstr "" msgid "Portal Settings" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "" @@ -19358,6 +19459,7 @@ msgstr "" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "" @@ -19366,15 +19468,7 @@ msgstr "" msgid "Posting Timestamp" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19389,7 +19483,11 @@ msgstr "" msgid "Precision" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "" @@ -19437,7 +19535,7 @@ msgstr "Подготовленный отчет Аналитика" msgid "Prepared Report User" msgstr "" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "" @@ -19445,7 +19543,7 @@ msgstr "" msgid "Preparing Report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "" @@ -19466,7 +19564,7 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19480,13 +19578,6 @@ msgstr "" msgid "Preview HTML" msgstr "" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19515,7 +19606,7 @@ msgid "Preview:" msgstr "" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19527,12 +19618,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "" @@ -19578,19 +19664,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:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19608,8 +19694,8 @@ 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:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19660,7 +19746,7 @@ msgstr "" msgid "Print Format Type" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19699,7 +19785,7 @@ msgstr "" msgid "Print Language" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "" @@ -19716,8 +19802,8 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "" @@ -19765,11 +19851,11 @@ msgstr "" msgid "Print with letterhead" msgstr "" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "" @@ -19779,11 +19865,11 @@ msgstr "" msgid "Printer Name" msgstr "" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "" @@ -19841,7 +19927,7 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "" @@ -19862,18 +19948,28 @@ msgstr "" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Профиль успешно обновлен." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: 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:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: 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/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "" @@ -19910,7 +20006,7 @@ msgstr "" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -19959,24 +20055,18 @@ msgstr "" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -19986,15 +20076,6 @@ msgstr "" msgid "Published" msgstr "" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json @@ -20084,7 +20165,9 @@ msgid "Put on Hold" msgstr "" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "" @@ -20096,9 +20179,9 @@ msgstr "" msgid "QR Code for Login Verification" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " -msgstr "" +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" +msgstr "QZ Лоток не работает:" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' @@ -20147,7 +20230,7 @@ msgstr "" msgid "Query analysis complete. Check suggested indexes." msgstr "" -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "" @@ -20247,7 +20330,7 @@ msgstr "" msgid "Quick Lists" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20284,12 +20367,6 @@ msgstr "" msgid "Rate Limiting" msgstr "" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20309,7 +20386,7 @@ msgstr "" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "" @@ -20326,7 +20403,7 @@ msgstr "" msgid "Raw Printing" msgstr "" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "" @@ -20343,8 +20420,8 @@ msgid "Re:" msgstr "" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "" @@ -20400,11 +20477,6 @@ msgstr "" msgid "Read Only Mode" msgstr "" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20420,7 +20492,7 @@ msgstr "" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "" @@ -20440,11 +20512,11 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20482,7 +20554,7 @@ msgstr "" msgid "Recent years are easy to guess." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "" @@ -20493,6 +20565,14 @@ msgstr "" msgid "Recipient" msgstr "" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20525,7 +20605,7 @@ msgstr "" msgid "Records for following doctypes will be filtered" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "" @@ -20542,6 +20622,11 @@ msgstr "" msgid "Redirect HTTP Status" msgstr "" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20636,6 +20721,11 @@ msgstr "" msgid "Reference Datetime" msgstr "" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20663,7 +20753,6 @@ msgstr "" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20704,9 +20793,9 @@ msgstr "" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20724,9 +20813,9 @@ msgstr "" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20756,7 +20845,6 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -20804,15 +20892,15 @@ msgstr "" msgid "Referrer" msgstr "" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "" @@ -20826,6 +20914,10 @@ msgstr "" msgid "Refresh Google Sheet" msgstr "" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -20837,18 +20929,18 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "" @@ -21025,7 +21117,7 @@ msgstr "" msgid "Rename {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "" @@ -21156,9 +21248,9 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "" @@ -21228,11 +21320,11 @@ 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:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "" @@ -21266,21 +21358,21 @@ msgstr "" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 msgid "Report cannot be set for Single types" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 -#: frappe/desk/doctype/number_card/number_card.js:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21292,24 +21384,24 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "" @@ -21317,7 +21409,7 @@ msgstr "" msgid "Report {0} is disabled" msgstr "" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "" @@ -21328,7 +21420,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:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "" @@ -21336,7 +21428,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "" @@ -21355,7 +21447,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "" @@ -21407,6 +21502,11 @@ msgstr "" msgid "Request URL" msgstr "" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21458,11 +21558,11 @@ msgstr "" msgid "Reset Dashboard Customizations" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "" @@ -21470,11 +21570,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21509,7 +21609,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21547,6 +21647,7 @@ msgid "Resource TOS URI" msgstr "" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21556,11 +21657,6 @@ msgstr "" msgid "Response" msgstr "" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "" - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21619,7 +21715,7 @@ msgstr "" msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "" @@ -21653,7 +21749,7 @@ msgstr "" msgid "Reverse Icon Color" msgstr "" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "" @@ -21671,9 +21767,7 @@ msgstr "" msgid "Revoked" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21714,6 +21808,7 @@ msgstr "" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21727,6 +21822,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21765,7 +21861,7 @@ msgstr "" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "" @@ -21775,7 +21871,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21818,6 +21914,7 @@ msgstr "" #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -21827,6 +21924,7 @@ msgstr "" #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -21863,7 +21961,7 @@ msgstr "" msgid "Roles can be set for users from their User page." msgstr "" -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "" @@ -21883,8 +21981,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -21896,8 +21992,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -21922,24 +22016,24 @@ msgstr "" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "" @@ -21948,11 +22042,6 @@ msgstr "" msgid "Row Format" msgstr "" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "" - #. Label of the row_indexes (Code) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Row Indexes" @@ -21967,7 +22056,7 @@ msgstr "" msgid "Row Number" msgstr "" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "" @@ -21975,30 +22064,33 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Added" msgstr "" #. Label of the rows_removed_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22089,7 +22181,7 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "SMS успешно отправлено" @@ -22167,7 +22259,7 @@ msgstr "" msgid "Salutation" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "" @@ -22195,20 +22287,20 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22217,16 +22309,12 @@ msgstr "" msgid "Save" msgstr "" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "" @@ -22234,11 +22322,11 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "" @@ -22263,7 +22351,7 @@ msgstr "" msgid "Saved Filters" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22342,7 +22430,7 @@ msgstr "" msgid "Scheduled Jobs Logs" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "" @@ -22365,7 +22453,7 @@ msgstr "" msgid "Scheduler Event" msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "" @@ -22378,7 +22466,7 @@ msgstr "" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "" @@ -22510,7 +22598,7 @@ msgstr "" msgid "Search by filename or extension" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "" @@ -22610,7 +22698,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "" @@ -22619,7 +22707,7 @@ msgstr "" msgid "See on Website" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "" @@ -22666,7 +22754,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/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22674,28 +22762,28 @@ msgstr "" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 msgid "Select Column" msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "" @@ -22754,12 +22842,15 @@ msgstr "" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "" @@ -22772,7 +22863,7 @@ msgstr "" msgid "Select Filters" msgstr "" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "" @@ -22805,8 +22896,8 @@ msgstr "" msgid "Select Module" msgstr "" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "" @@ -22871,14 +22962,14 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." +msgid "Select a group {0} first." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 msgid "Select a valid Subject field for creating documents from Email" msgstr "" @@ -22908,13 +22999,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22948,7 +23039,7 @@ msgstr "" msgid "Select {0}" msgstr "" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "" @@ -23132,7 +23223,7 @@ msgstr "" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "" @@ -23226,7 +23317,7 @@ msgstr "" msgid "Series counter for {} updated to {} successfully" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "" @@ -23236,7 +23327,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23255,7 +23346,7 @@ msgstr "" msgid "Server Script" msgstr "" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23302,7 +23393,7 @@ msgstr "" msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "" @@ -23311,14 +23402,14 @@ msgstr "" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "" @@ -23344,12 +23435,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23360,7 +23451,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23414,7 +23505,7 @@ msgstr "" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23424,16 +23515,16 @@ msgstr "" msgid "Set Value" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "" @@ -23452,18 +23543,21 @@ msgstr "" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "" -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23555,14 +23649,9 @@ msgstr "" msgid "Settings for the About Us Page" msgstr "" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "" @@ -23578,8 +23667,8 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "" @@ -23648,11 +23737,6 @@ msgstr "" msgid "Shop" msgstr "" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "" @@ -23672,11 +23756,6 @@ msgstr "" msgid "Show" msgstr "" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23729,7 +23808,13 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23857,7 +23942,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "" @@ -23874,7 +23959,7 @@ msgstr "" msgid "Show Title in Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "" @@ -23914,10 +23999,6 @@ msgstr "" msgid "Show all activity" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "" - #. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" @@ -23966,8 +24047,8 @@ msgstr "" msgid "Show list" msgstr "" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "" @@ -23996,7 +24077,7 @@ msgstr "" msgid "Show {0} List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "" @@ -24031,7 +24112,7 @@ msgstr "" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "" @@ -24068,22 +24149,22 @@ msgstr "" msgid "Signups have been disabled for this website." msgstr "" -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" msgstr "" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" msgstr "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' @@ -24091,13 +24172,13 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "" #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "" @@ -24105,7 +24186,7 @@ msgstr "" msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "" -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "" @@ -24324,11 +24405,11 @@ msgstr "" msgid "Something went wrong." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 msgid "Sorry! I could not find what you were looking for." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "" @@ -24359,20 +24440,23 @@ msgstr "" msgid "Sort Order" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 msgid "Sort field {0} must be a valid fieldname" msgstr "" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' -#: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24399,6 +24483,12 @@ msgstr "" msgid "SparkPost" msgstr "" +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "" @@ -24423,8 +24513,8 @@ msgstr "Укажите домены или источники, которым р msgid "Splash Image" msgstr "" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -24456,11 +24546,11 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "" @@ -24472,7 +24562,7 @@ msgstr "" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "" @@ -24480,11 +24570,11 @@ msgstr "" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "" -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "" @@ -24516,8 +24606,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:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "" @@ -24525,7 +24615,7 @@ msgstr "" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24590,6 +24680,7 @@ msgstr "" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24598,7 +24689,7 @@ msgstr "" msgid "State" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "" @@ -24654,6 +24745,7 @@ msgstr "" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24678,6 +24770,7 @@ msgstr "" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24685,8 +24778,8 @@ msgstr "" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24723,7 +24816,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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24753,6 +24846,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +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." @@ -24831,7 +24928,7 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -24847,7 +24944,7 @@ msgstr "" msgid "Subject Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "" @@ -24861,6 +24958,7 @@ msgstr "" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24869,10 +24967,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24882,7 +24981,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24906,7 +25005,7 @@ msgstr "" msgid "Submit an Issue" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "" @@ -24918,7 +25017,7 @@ msgstr "Ярлык кнопки отправки" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "" @@ -24930,7 +25029,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24939,11 +25038,11 @@ msgstr "" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "" @@ -24966,9 +25065,7 @@ msgid "Subsidiary" msgstr "" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "" @@ -24982,7 +25079,7 @@ msgstr "" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25024,20 +25121,16 @@ msgstr "Сообщение об успехе" msgid "Success title" msgstr "Название успеха" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "" - #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" msgstr "" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "" @@ -25079,7 +25172,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "" @@ -25201,7 +25294,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25324,6 +25417,7 @@ msgstr "" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25406,6 +25500,7 @@ msgstr "" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" msgstr "" @@ -25479,7 +25574,7 @@ msgstr "" msgid "Table Break" msgstr "" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "" @@ -25488,7 +25583,7 @@ msgstr "" msgid "Table Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "" @@ -25510,11 +25605,11 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 msgid "Table {0} cannot be empty" msgstr "" @@ -25556,11 +25651,18 @@ msgstr "" msgid "Target" msgstr "" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25622,7 +25724,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "" @@ -25694,7 +25796,7 @@ msgid "Thank you for reaching out to us. We will get back to you at the earliest "{0}" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "" @@ -25718,7 +25820,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "" @@ -25729,15 +25831,15 @@ msgid "The Client ID obtained from the Google Cloud Console under " msgstr "" -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." msgstr "Следующая запланированная дата не может быть позже даты окончания." @@ -25778,7 +25880,7 @@ msgstr "" msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "" -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "" @@ -25786,7 +25888,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:658 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25816,7 +25918,7 @@ msgstr "" msgid "The field {0} is mandatory" msgstr "" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "" @@ -25886,15 +25988,19 @@ msgid "The project number obtained from Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

    Click here to download:
    {0}

    This link will expire in {1} hours." +msgstr "" + +#: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:995 +#: frappe/core/doctype/user/user.py:1002 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25906,7 +26012,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:338 +#: frappe/utils/response.py:336 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25927,7 +26033,7 @@ msgstr "" msgid "The webhook will be triggered if this expression is true" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "" @@ -25967,16 +26073,16 @@ 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:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "" @@ -25988,15 +26094,19 @@ msgstr "" msgid "There is no data to be exported" msgstr "" +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26008,7 +26118,7 @@ msgstr "" msgid "There was an error building this page" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "" @@ -26020,11 +26130,11 @@ msgstr "" msgid "There were errors while creating the document. Please try again." msgstr "" -#: frappe/public/js/frappe/views/communication.js:840 +#: frappe/public/js/frappe/views/communication.js:843 msgid "There were errors while sending email. Please try again." msgstr "" -#: frappe/model/naming.py:494 +#: frappe/model/naming.py:502 msgid "There were some errors setting the name, please contact the administrator" msgstr "" @@ -26065,7 +26175,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "" @@ -26073,6 +26183,10 @@ msgstr "" msgid "This Month" msgstr "" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "" @@ -26098,6 +26212,11 @@ msgstr "" msgid "This cannot be undone" msgstr "" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +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" @@ -26112,11 +26231,11 @@ msgstr "" msgid "This doctype has no orphan fields to trim" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26158,7 +26277,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26174,7 +26293,7 @@ msgstr "" msgid "This form has been modified after you have loaded it" msgstr "" -#: frappe/public/js/frappe/form/form.js:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "" @@ -26193,7 +26312,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26217,12 +26336,6 @@ msgstr "" msgid "This is an automatically generated reply" msgstr "" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "" - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "" @@ -26241,7 +26354,7 @@ msgstr "" msgid "This link is invalid or expired. Please make sure you have pasted correctly." msgstr "" -#: frappe/printing/page/print/print.js:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "" @@ -26249,7 +26362,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26257,7 +26370,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "" @@ -26288,7 +26401,7 @@ msgstr "" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " +msgid "This value specifies the max number of rows that can be rendered in report view." msgstr "" #: frappe/website/doctype/web_page/web_page.js:85 @@ -26320,10 +26433,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " -msgstr "" +msgid "This will terminate the job immediately and might be dangerous, are you sure?" +msgstr "Это приведет к немедленному прекращению работы и может быть опасно, вы уверены?" -#: frappe/core/doctype/user/user.py:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "" @@ -26399,9 +26512,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26472,11 +26587,11 @@ msgstr "" msgid "Timeline Name" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 msgid "Timeline field must be a Link or Dynamic Link" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "" @@ -26502,10 +26617,7 @@ msgid "Timespan" msgstr "" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "" @@ -26525,9 +26637,6 @@ msgstr "" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26552,9 +26661,6 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26577,7 +26683,7 @@ msgstr "" msgid "Title Prefix" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "" @@ -26671,7 +26777,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "" @@ -26726,7 +26832,7 @@ msgstr "" msgid "Today" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "" @@ -26742,11 +26848,11 @@ msgstr "" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26792,7 +26898,7 @@ msgid "Tomorrow" msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "" @@ -26808,7 +26914,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26870,10 +26976,10 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -26916,18 +27022,18 @@ msgstr "" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " -msgstr "" +msgid "Total number of emails to sync in initial sync process" +msgstr "Общее количество электронных писем, синхронизируемых в процессе первоначальной синхронизации" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "" @@ -26993,26 +27099,10 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "" @@ -27026,6 +27116,11 @@ msgstr "" msgid "Transition Rules" msgstr "" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" @@ -27040,7 +27135,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "Перевести данные" @@ -27051,7 +27146,7 @@ msgstr "Перевести данные" msgid "Translate Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "" @@ -27135,8 +27230,8 @@ msgstr "" msgid "Try a Naming Series" msgstr "" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "" @@ -27202,7 +27297,7 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27295,7 +27390,7 @@ msgstr "" msgid "URL for documentation or help" msgstr "" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "" @@ -27398,7 +27493,7 @@ msgstr "" msgid "Unable to update event" msgstr "" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "" @@ -27407,7 +27502,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27423,7 +27518,7 @@ msgstr "" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27470,7 +27565,7 @@ msgstr "" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "" @@ -27482,8 +27577,7 @@ msgstr "" msgid "Unlock Reference Document" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "" @@ -27499,7 +27593,7 @@ msgstr "" msgid "Unread Notification Sent" msgstr "" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "" @@ -27537,8 +27631,8 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27558,7 +27652,7 @@ msgstr "" msgid "Unzipping files..." msgstr "" -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "" @@ -27572,7 +27666,7 @@ msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "" @@ -27606,6 +27700,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27648,7 +27747,7 @@ msgstr "" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "" @@ -27656,7 +27755,7 @@ msgstr "" msgid "Updated Successfully" msgstr "" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "" @@ -27664,7 +27763,7 @@ msgstr "" msgid "Updated successfully" msgstr "" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "" @@ -27709,8 +27808,8 @@ msgstr "План модернизации" msgid "Upgrade your support experience with Frappe Helpdesk" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27720,11 +27819,11 @@ msgstr "" msgid "Upload Image" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "" @@ -27821,15 +27920,11 @@ msgstr "" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "" -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "" @@ -27850,7 +27945,9 @@ msgid "Used OAuth" msgstr "" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -27859,6 +27956,7 @@ msgstr "" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -27873,11 +27971,12 @@ msgstr "" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -27886,6 +27985,7 @@ msgstr "" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -27902,17 +28002,11 @@ msgstr "" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "" - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "" @@ -27942,7 +28036,7 @@ msgstr "" msgid "User Cannot Search" msgstr "" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "" @@ -28006,11 +28100,6 @@ msgstr "" msgid "User ID Property" msgstr "" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28030,6 +28119,11 @@ msgstr "" msgid "User Image" msgstr "" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "" @@ -28048,12 +28142,12 @@ msgstr "" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28066,7 +28160,9 @@ msgstr "" msgid "User Permissions created successfully" msgstr "" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "" @@ -28132,6 +28228,10 @@ msgstr "" msgid "User does not have permission to create the new {0}" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "" @@ -28162,7 +28262,7 @@ msgstr "" msgid "User {0} cannot be disabled" msgstr "" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "" @@ -28183,7 +28283,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "" @@ -28191,7 +28291,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28212,7 +28312,7 @@ msgstr "" msgid "Username" msgstr "" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "" @@ -28296,7 +28396,7 @@ msgstr "" msgid "Validate SSL Certificate" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "" @@ -28319,8 +28419,8 @@ msgstr "" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28352,7 +28452,7 @@ msgstr "" msgid "Value To Be Set" msgstr "" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "" @@ -28368,11 +28468,11 @@ msgstr "" msgid "Value for a check field can be either 0 or 1" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" -#: frappe/model/base_document.py:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "" @@ -28397,7 +28497,7 @@ msgstr "" msgid "Value to Validate" msgstr "" -#: frappe/model/base_document.py:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "" @@ -28414,7 +28514,7 @@ msgstr "" msgid "Value {0} must in {1} format" msgstr "" -#: frappe/core/doctype/version/version_view.html:8 +#: frappe/core/doctype/version/version_view.html:9 msgid "Values Changed" msgstr "" @@ -28427,7 +28527,7 @@ msgstr "" msgid "Verification" msgstr "" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "" @@ -28489,15 +28589,7 @@ msgstr "" msgid "View Audit Trail" msgstr "" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" @@ -28509,7 +28601,7 @@ msgstr "Просмотр файла" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "" @@ -28519,7 +28611,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28566,7 +28658,7 @@ msgstr "" msgid "View this in your browser" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "" @@ -28635,6 +28727,7 @@ msgid "Warehouse" msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "" @@ -28643,7 +28736,7 @@ msgstr "" msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "" @@ -28729,7 +28822,7 @@ msgstr "" msgid "Web Page Block" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "" @@ -28832,7 +28925,7 @@ msgstr "" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "" @@ -28845,10 +28938,6 @@ msgstr "" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -28892,7 +28981,7 @@ msgstr "" msgid "Website Search Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "" @@ -29109,11 +29198,6 @@ msgstr "" msgid "Will add \"%\" before and after the query" msgstr "" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "" - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "" @@ -29128,7 +29212,7 @@ msgstr "" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "Будет запускать запланированные задания только раз в день для неактивных сайтов. Установите значение 0, чтобы избежать автоматического отключения планировщика." -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "" @@ -29206,7 +29290,7 @@ msgstr "" msgid "Workflow Data" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "" @@ -29232,11 +29316,11 @@ msgstr "" msgid "Workflow State Field" msgstr "" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "" @@ -29244,15 +29328,30 @@ msgstr "" msgid "Workflow States Don't Exist" msgstr "" -#: frappe/model/workflow.py:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29268,13 +29367,13 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29344,11 +29443,11 @@ msgstr "" msgid "Workspaces" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "" @@ -29367,11 +29466,11 @@ msgstr "" msgid "Write" msgstr "" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "" @@ -29390,13 +29489,13 @@ msgstr "" msgid "Y Axis" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" msgstr "" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "" @@ -29448,16 +29547,17 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29485,6 +29585,18 @@ msgstr "" msgid "You Liked" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "" @@ -29523,20 +29635,20 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29560,7 +29672,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:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29586,13 +29698,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " -msgstr "" +msgid "You can also copy-paste this" +msgstr "Вы также можете скопировать и вставить следующее" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "" +#: frappe/templates/emails/user_invitation_expired.html:8 +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 "" @@ -29605,11 +29721,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29629,7 +29745,7 @@ msgstr "" msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "" -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "Вы можете загружать только документы в форматах JPG, PNG, PDF, TXT, CSV или Microsoft." @@ -29647,7 +29763,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "" @@ -29659,11 +29775,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29681,7 +29797,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:385 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29711,7 +29827,7 @@ msgstr "" msgid "You created this" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "" @@ -29724,15 +29840,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29744,11 +29860,11 @@ msgstr "" msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "" @@ -29756,19 +29872,19 @@ msgstr "" msgid "You don't have permission to get a report on: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " -msgstr "" +msgid "You have a new message from:" +msgstr "У вас новое сообщение от:" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29776,11 +29892,7 @@ msgstr "" msgid "You have not entered a value. The field will be set to empty." msgstr "" -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "" @@ -29800,7 +29912,7 @@ msgstr "" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29817,11 +29929,11 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "" @@ -29845,7 +29957,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "" @@ -29853,13 +29965,13 @@ msgstr "" msgid "You need to be logged in to access this page" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "" #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " -msgstr "" +msgid "You need to create these first:" +msgstr "Сначала их нужно создать:" #: frappe/www/login.html:76 msgid "You need to enable JavaScript for your app to work." @@ -29893,11 +30005,19 @@ msgstr "Чтобы переименовать {0} {1} , вам нужно раз msgid "You need {0} permission to fetch values from {1} {2}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "" @@ -29928,10 +30048,26 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "" @@ -29961,7 +30097,7 @@ msgstr "" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "" @@ -29985,10 +30121,22 @@ msgstr "" msgid "Your email address" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "" @@ -30011,7 +30159,11 @@ msgstr "" msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "" -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "" @@ -30033,9 +30185,9 @@ msgstr "" msgid "Zero means send records updated at anytime" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" -msgstr "" +msgstr "[Действие выполнил {0}]" #. Label of the _doctype (Link) field in DocType 'Desktop Icon' #: frappe/desk/doctype/desktop_icon/desktop_icon.json @@ -30055,10 +30207,6 @@ msgstr "" msgid "`job_id` paramater is required for deduplication." msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30093,7 +30241,7 @@ msgstr "" msgid "cProfile Output" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "" @@ -30238,12 +30386,12 @@ msgstr "" msgid "email" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "" @@ -30300,7 +30448,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "" @@ -30315,11 +30463,6 @@ msgstr "" msgid "import" msgstr "" -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "" - #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "" @@ -30328,7 +30471,7 @@ msgstr "" msgid "just now" msgstr "" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "" @@ -30357,7 +30500,7 @@ msgstr "" msgid "logged in" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30378,11 +30521,6 @@ msgstr "" msgid "merged {0} into {1}" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "" - #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json @@ -30406,7 +30544,7 @@ msgstr "" msgid "module name..." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "" @@ -30535,10 +30673,6 @@ msgstr "" msgid "red" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "" @@ -30594,19 +30728,19 @@ msgstr "" msgid "short" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "" @@ -30659,6 +30793,10 @@ msgstr "" msgid "this shouldn't break" msgstr "" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "в вашем браузере" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30686,7 +30824,7 @@ msgstr "" msgid "via Assignment Rule" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "" @@ -30700,7 +30838,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "" @@ -30733,10 +30871,15 @@ msgstr "" msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "" +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json @@ -30764,11 +30907,11 @@ msgstr "" msgid "{0}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "" @@ -30794,19 +30937,19 @@ msgstr "" msgid "{0} Calendar" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "" @@ -30830,6 +30973,10 @@ msgstr "" msgid "{0} List" msgstr "" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "" @@ -30842,7 +30989,7 @@ msgstr "" msgid "{0} Name" msgstr "" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "" @@ -30852,11 +30999,10 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "" @@ -30881,7 +31027,15 @@ msgstr "" msgid "{0} added" msgstr "" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "" @@ -30893,7 +31047,7 @@ msgstr "" msgid "{0} already unsubscribed for {1} {2}" msgstr "" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "" @@ -30901,7 +31055,7 @@ msgstr "" msgid "{0} are currently {1}" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "" @@ -30918,7 +31072,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -30960,11 +31114,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." msgstr "" @@ -30977,7 +31127,7 @@ msgstr "" msgid "{0} created this" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "" @@ -30999,7 +31149,7 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31031,7 +31181,7 @@ msgstr "" msgid "{0} hours ago" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "" @@ -31040,23 +31190,23 @@ msgstr "" msgid "{0} in row {1} cannot have both URL and child items" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "" @@ -31065,27 +31215,27 @@ msgstr "" msgid "{0} is currently {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "" @@ -31093,7 +31243,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31113,12 +31263,12 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "" @@ -31126,15 +31276,15 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "" @@ -31150,55 +31300,59 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 -#: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: 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/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31231,35 +31385,35 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "" @@ -31267,7 +31421,7 @@ msgstr "" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "" @@ -31280,11 +31434,11 @@ msgid "{0} not found" msgstr "" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31293,7 +31447,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "" @@ -31317,6 +31471,10 @@ msgstr "" msgid "{0} records will be exported" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31326,15 +31484,29 @@ msgstr "" msgid "{0} removed their assignment." msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" +msgstr "{0} ряд #{1}:" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "" @@ -31354,11 +31526,11 @@ msgstr "" msgid "{0} shared this document with {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "" @@ -31371,8 +31543,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "" @@ -31382,7 +31554,7 @@ msgstr "" #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "" @@ -31390,7 +31562,7 @@ msgstr "" msgid "{0} un-shared this document with {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "" @@ -31426,15 +31598,15 @@ msgstr "" msgid "{0} {1} added to Dashboard {2}" msgstr "" -#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "" @@ -31450,11 +31622,11 @@ msgstr "" msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" -#: frappe/model/base_document.py:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "" @@ -31462,79 +31634,79 @@ msgstr "" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "{0}/{1} complete | Пожалуйста, оставьте эту вкладку открытой до завершения." -#: frappe/model/base_document.py:1120 +#: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 msgid "{0}: Cannot set import as {1} is not importable" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 +#: 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:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "" @@ -31542,7 +31714,7 @@ msgstr "" msgid "{0}: Other permission rules may also apply" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "" @@ -31550,7 +31722,7 @@ msgstr "" msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "" @@ -31563,11 +31735,11 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "" @@ -31591,7 +31763,7 @@ msgstr "" msgid "{count} rows selected" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "" @@ -31599,11 +31771,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
    {}" msgstr "" @@ -31629,7 +31801,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/sr.po b/frappe/locale/sr.po index ac1562971f..4c9b847c32 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-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-23 21:53\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-07 23:26\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Serbian (Cyrillic)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: sr_SP\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr " у Ваш интернет претраживач" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json @@ -61,7 +57,7 @@ msgstr "#{0}" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "${values.doctype_name} је додат у ред за чекање за оптимизацију" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" msgstr "© Frappe Technologies Pvt. Ltd. and contributors" @@ -74,7 +70,7 @@ msgstr "<head> HTML" msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "'У глобалној претрази' није дозвољено за поље {0} врсте {1}" -#: frappe/core/doctype/doctype/doctype.py:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "'У глобалној претрази' није дозвољено за врсту {0} у реду {1}" @@ -82,19 +78,23 @@ msgstr "'У глобалној претрази' није дозвољено з msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "'У приказу листе' није дозвољено за поље {0} врсте {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "'У приказу листе' није дозвољено за врсту {0} у реду {1}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" msgstr "'Примаоци' нису наведени" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "'{0}' није важећи IBAN" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" msgstr "'{0}' није важећи URL" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "'{0}' није дозвољен за врсту {1} у реду {2}" @@ -102,11 +102,11 @@ msgstr "'{0}' није дозвољен за врсту {1} у реду {2}" msgid "(Mandatory)" msgstr "(Обавезно)" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "** Неуспешно: {0} до {1}: {2}" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" msgstr "+ Додај / Уклони поља" @@ -122,7 +122,7 @@ msgstr "0 - Нацрт; 1 - Поднето; 2 - Отказано" msgid "0 is highest" msgstr "0 је највише" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = тачно и 0 = нетачно" @@ -141,15 +141,11 @@ msgstr "1 дан" msgid "1 Google Calendar Event synced." msgstr "1 догађај из Google Calendar-а је синхронизован." -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 извештај" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "1 коментар" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "пре 1 дан" @@ -158,17 +154,17 @@ msgid "1 hour" msgstr "1 сат" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "пре 1 сата" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "пре 1 минут" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "пре 1 месец" @@ -180,37 +176,47 @@ msgstr "1 д 2" msgid "1 record will be exported" msgstr "1 запис ће бити извезен" -#: frappe/tests/test_utils.py:711 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "1 ред из {0}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "1 ред у {0}" + +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "пре 1 секунде" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "пре 1 недељу" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "пре 1 годину" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "пре 2 сата" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "пре 2 месеца" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "пре 2 недеље" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "пре 2 године" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "пре 3 минута" @@ -226,7 +232,7 @@ msgstr "4 сата" msgid "5 Records" msgstr "5 записа" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "пре 5 дана" @@ -246,6 +252,13 @@ msgstr "<" msgid "<=" msgstr "<=" +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr " Кликните овде да бисте сазнали више о аутентификацији путем токена " + #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "{0} није важећи URL" @@ -255,6 +268,16 @@ msgstr "{0} није важећи URL" msgid "
    Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
    " msgstr "
    Молимо Вас да не ажурирате јер то може пореметити Ваш образац. Користите поље прилагоди приказ обрасца или прилагођена поља да бисте поставили својства!
    " +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

    Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

    " +msgstr "

    Затражите фајл који садржи Ваше личне податке сачуване у нашем систему. Фајл ће бити у JSON формату и биће Вам послат путем имејла. Уколико желите да се Ваши лични подаци избришу из нашег система, молимо Вас да поднесете захтев за брисање података.

    " + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

    Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

    " +msgstr "

    Пошаљите захтев за брисање Вашег налога и личних података који су сачувани у нашем систему. Добићете имејл за потврду Вашег захтева. Након потврде сви Ваши лични подаци биће обрисани. Уколико само желите да проверите које личне податке имамо сачуване, можете затражити своје податке.

    " + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -641,7 +664,7 @@ msgstr "

    За интеракцију са горе наведеним HTML-о "some_class_element.textContent = \"New content\";\n" "" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

    " msgstr "

    Ваша тајна једнократне лозинке на {0} је ресетована. Уколико нисте извршили ово постављање и нисте га захтевали, одмах контактирајте свог систем администратора.

    " @@ -731,7 +754,7 @@ msgstr ">" msgid ">=" msgstr ">=" -#: frappe/core/doctype/doctype/doctype.py:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "Назив DocType-а треба да почне са словом и може садржати искључиво слова, бројеве, размаке, доње црте и цртице" @@ -740,15 +763,16 @@ msgstr "Назив DocType-а треба да почне са словом и м msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "Једна инстанца Frappe Framework може функционисати и као OAuth клијент, ресурс или ауторизациони сервер. Овај DocType садржи подешавања везана за сва три." -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" -msgstr "Истакнути пост мора имати насловну слику" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "Линк за преузимање Ваших података биће послат на имејл адресу повезану са Вашим налогом." #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "Поље са називом {0} већ постоји у {1}" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "Фајл са истим називом {} већ постоји" @@ -761,7 +785,7 @@ msgstr "Листа ресурса којима ће клијентска апл msgid "A new account has been created for you at {0}" msgstr "Нови налог је креиран за Вас на {0}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "Понављајући {0} {1} је креиран за Вас путем аутоматског понављања {2}." @@ -861,13 +885,17 @@ msgstr "API Endpoint" msgid "API Endpoint Args" msgstr "API Endpoint Args" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "API Endpoint Args морају бити валидан JSON" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -886,6 +914,10 @@ msgstr "API кључ и тајна за интеракцију са релаy с msgid "API Key cannot be regenerated" msgstr "API кључ се не може поново генерисати" +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "API кључеви" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -906,7 +938,7 @@ msgstr "Евиденција API захтева" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -953,6 +985,20 @@ msgstr "Остало је још око {0} минута" msgid "About {0} seconds remaining" msgstr "Остало је још око {0} секунди" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "Прихвати позивницу" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "Прихваћено" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "Прихваћено" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -978,7 +1024,7 @@ msgstr "Приступни токен" msgid "Access Token URL" msgstr "URL приступног токена" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Приступ није дозвољен са ове IP адресе" @@ -1042,7 +1088,7 @@ msgstr "Радња / Путања" msgid "Action Complete" msgstr "Радња завршена" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "Радња неуспешна" @@ -1094,7 +1140,7 @@ msgstr "Радње {0} није успела на {1} {2}. Прегледајт #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Радње" @@ -1151,7 +1197,7 @@ msgstr "Дневник активности" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -1162,7 +1208,7 @@ msgstr "Дневник активности" msgid "Add" msgstr "Додај" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "Додај / Уклони колоне" @@ -1174,7 +1220,7 @@ msgstr "Додај / Ажурирај" msgid "Add A New Rule" msgstr "Додај ново правило" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Додај прилог" @@ -1194,7 +1240,7 @@ msgstr "Додај ивицу на дну" msgid "Add Border at Top" msgstr "Додај ивицу на врху" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "Додај картицу на контролну таблу" @@ -1207,10 +1253,10 @@ msgid "Add Child" msgstr "Додај зависни елемент" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "Додај колону" @@ -1269,7 +1315,7 @@ msgstr "Додај кориснике" msgid "Add Query Parameters" msgstr "Додај параметре упита" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "Додај улоге" @@ -1302,12 +1348,12 @@ msgstr "Додај претплатнике" msgid "Add Tags" msgstr "Додај ознаке" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Додај ознаке" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "Додај шаблон" @@ -1396,7 +1442,7 @@ msgstr "Додај нову картицу" msgid "Add page break" msgstr "Додај прелом странице" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "Додај скрипту за зависну табелу" @@ -1434,7 +1480,7 @@ msgstr "Додај у ову активност слањем имејла на { msgid "Add {0}" msgstr "Додај {0}" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" msgstr "Додај {0}" @@ -1477,6 +1523,7 @@ msgstr "Додатне дозволе" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1485,6 +1532,7 @@ msgstr "Адреса" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "Адреса, ред 1" @@ -1492,6 +1540,7 @@ msgstr "Адреса, ред 1" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "Адреса, ред 2" @@ -1542,7 +1591,7 @@ msgstr "Додаје прилагођену клијентску скрипту msgid "Adds a custom field to a DocType" msgstr "Додаје прилагођено поље у DocType" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "Администрација" @@ -1556,7 +1605,6 @@ msgstr "Администрација" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1569,11 +1617,11 @@ msgstr "Администрација" msgid "Administrator" msgstr "Администратор" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "Администратор пријављен" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Администратор је приступио {0} дана {1} путем IP адресе {2}." @@ -1594,8 +1642,8 @@ msgstr "Напредно" msgid "Advanced Control" msgstr "Напредна контрола" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" msgstr "Напредна претрага" @@ -1654,7 +1702,7 @@ msgstr "Након подношења" msgid "After Submit" msgstr "Након подношења" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "Агрегатно поље је потребно за креирање бројчане картице" @@ -1681,11 +1729,11 @@ msgstr "Упозорење" msgid "Alerts and Notifications" msgstr "Упозорења и обавештења" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "Псеудоним не може бити SQL резервисана реч: {0}" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "Псеудоним мора бити текст" @@ -1750,7 +1798,7 @@ msgstr "Све слике приложене на веб-сајт презент msgid "All Records" msgstr "Сви записи" -#: frappe/public/js/frappe/form/form.js:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "Све поднесено" @@ -1810,8 +1858,8 @@ msgstr "Дозволи масовно уређивање" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " -msgstr "Дозволи узастопне покушаје пријављивања " +msgid "Allow Consecutive Login Attempts" +msgstr "Дозволи узастопне покушаје пријављивања" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 msgid "Allow Google Calendar Access" @@ -1831,11 +1879,6 @@ msgstr "Дозволи госта" msgid "Allow Guest to View" msgstr "Дозволи госту да прегледа" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "Дозволи госту да коментарише" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1884,7 +1927,7 @@ msgid "Allow Print for Cancelled" msgstr "Дозволи штампу за отказане" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "Дозволи штампу за нацрт" @@ -2051,7 +2094,7 @@ msgstr "Дозвољене екстензије фајлова" #. Label of the allowed_in_mentions (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Allowed In Mentions" -msgstr "Дозвољено у помињанима" +msgstr "Дозвољено у помињањима" #. Label of the allowed_modules_section (Section Break) field in DocType 'User #. Type' @@ -2117,7 +2160,7 @@ msgstr "Омогућава да се омогућени URL кључа за пр msgid "Allows skipping authorization if a user has active tokens." msgstr "Омогућава прескакање ауторизације уколико корисник већ има активне токене." -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "Већ регистрован" @@ -2125,11 +2168,11 @@ msgstr "Већ регистрован" msgid "Already in the following Users ToDo list:{0}" msgstr "Већ се налази на листи за урадити следећих корисника: {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "Такође додавање зависног поља за валуту {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "Такође додавање поља од зависности статуса {0}" @@ -2138,6 +2181,12 @@ msgstr "Такође додавање поља од зависности ста msgid "Alternative Email ID" msgstr "Алтернативни имејл ИД" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "Увек" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2189,10 +2238,8 @@ msgstr "Подешавања за именовање измењених доку msgid "Amended Documents" msgstr "Измењени документи" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "Измењено из" @@ -2216,6 +2263,11 @@ msgstr "Измена није дозвољена" msgid "Amendment naming rules updated." msgstr "Правила именовања измена ажурирана." +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 msgid "An error occurred while setting Session Defaults" msgstr "Дошло је до грешке приликом постављања подразумеваних подешавања сесије" @@ -2309,10 +2361,12 @@ msgid "App Logo" msgstr "Лого апликације" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2383,6 +2437,10 @@ msgstr "Назив апликације" msgid "Application Version" msgstr "Верзија апликације" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "Апликација није инсталирана" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2392,7 +2450,7 @@ msgstr "Примењено на" msgid "Apply" msgstr "Примени" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Примени правило доделе" @@ -2440,7 +2498,7 @@ msgstr "Примени ово правило уколико је корисни msgid "Apply to all Documents Types" msgstr "Примени на све врсте докумената" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "Примењивање: {0}" @@ -2473,7 +2531,11 @@ msgstr "Архивирано" msgid "Archived Columns" msgstr "Архивиране колоне" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "Да ли сте сигурни да желите да откажете позивницу?" + +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "Да ли сте сигурни да желите да очистите додељене задатке?" @@ -2501,11 +2563,15 @@ msgctxt "Confirmation dialog message" msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." msgstr "Да ли сте сигурни да желите да обришете картицу? Сви одељци заједно са пољима у картици ће бити премештени у претходну картицу." -#: frappe/public/js/frappe/web_form/web_form.js:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "Да ли сте сигурни да желите да обришете овај запис?" + +#: frappe/public/js/frappe/web_form/web_form.js:191 msgid "Are you sure you want to discard the changes?" msgstr "Да ли сте сигурни да желите да одбаците промене?" -#: frappe/public/js/frappe/views/reports/query_report.js:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "Да ли сте сигурни да желите да генеришете нови извештај?" @@ -2513,7 +2579,7 @@ msgstr "Да ли сте сигурни да желите да генерише msgid "Are you sure you want to merge {0} with {1}?" msgstr "Да ли сте сигурни да желите да спојите {0} са {1}?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "Да ли сте сигурни да желите да наставите?" @@ -2531,7 +2597,7 @@ msgstr "Да ли сте сигурни да желите да уклоните #: frappe/public/js/frappe/list/list_filter.js:116 msgid "Are you sure you want to remove the {0} filter?" -msgstr "Да листе сигурни да желите да уклоните {0} филтер?" +msgstr "Да ли сте сигурни да желите да уклоните {0} филтер?" #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:268 msgid "Are you sure you want to reset all customizations?" @@ -2568,6 +2634,12 @@ msgstr "Пошто је дељење докумената онемогућено msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "Према Вашем захтеву, Ваш налог и подаци на {0} повезани са имејл адресом {1} су трајно обрисани" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "Питај" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2577,7 +2649,7 @@ msgstr "Додели услов" msgid "Assign To" msgstr "Додели" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Додели" @@ -2640,6 +2712,11 @@ msgstr "Додељено" msgid "Assigned To/Owner" msgstr "Додељено кориснику / Власник" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "Додељени корисник" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "Додељивање..." @@ -2709,7 +2786,13 @@ msgstr "Додела за {0} уклоњена од стране {1}" msgid "Assignments" msgstr "Додељени задаци" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "Асинхроно" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "Барем једна колона је обавезна за приказ у табели." @@ -2759,7 +2842,7 @@ 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" @@ -2789,7 +2872,7 @@ msgstr "Приложено уз поље" msgid "Attached To Name" msgstr "Приложено уз назив" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "Приложено уз назив мора бити текст или број" @@ -2805,7 +2888,7 @@ msgstr "Прилог" msgid "Attachment Limit (MB)" msgstr "Ограничење прилога (MB)" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "Ограничење прилога достигнуто" @@ -2823,15 +2906,15 @@ 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:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "Прилози" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "Покушава се повезивање са QZ Tray..." -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "Покушава се покретање QZ Tray..." @@ -2852,7 +2935,11 @@ msgstr "Историја измена" #. Label of the auth_url_data (Code) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Auth URL Data" -msgstr "Верификуј URL податке" +msgstr "Подаци о ауторизационом URL-у" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "Подаци о ауторизационом URL-у морају бити валидан JSON" #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -2871,8 +2958,8 @@ msgid "Authentication" msgstr "Аутентификација" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " -msgstr "Апликација за аутентификацију које можете да користите су: " +msgid "Authentication Apps you can use are:" +msgstr "Апликација за аутентификацију које можете да користите су:" #: frappe/email/doctype/email_account/email_account.py:339 msgid "Authentication failed while receiving emails from Email Account: {0}." @@ -2937,7 +3024,7 @@ msgstr "Одобри приступ Google Contacts" #. Label of the authorize_url (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Authorize URL" -msgstr "Одобри URL" +msgstr "URL за ауторизацију" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/integrations/doctype/integration_request/integration_request.json @@ -2985,11 +3072,11 @@ msgstr "Аутоматско понављање" msgid "Auto Repeat Day" msgstr "Дан аутоматског понављања" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "Дан аутоматског понављања {0} {1} је поновљен." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "Креирање документа за аутоматско понављање није успело" @@ -2997,11 +3084,16 @@ msgstr "Креирање документа за аутоматско понав msgid "Auto Repeat Schedule" msgstr "Распоред аутоматског понављања" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "Корисник са аутоматским понављањем" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "Аутоматско понављање креирано за овај документ" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "Аутоматско понављање није успело за {0}" @@ -3045,7 +3137,7 @@ msgstr "Аутоматски прати документа која си ком msgid "Auto follow documents that you create" msgstr "Аутоматско прати документа које си креирао" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "Аутоматско понављање није успело. Молимо Вас да омогућите аутоматско понављање након што решите проблем." @@ -3093,7 +3185,7 @@ msgstr "Аутоматско повезивање може бити активи msgid "Automatically Assign Documents to Users" msgstr "Аутоматски додели документа корисницима" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "Аутоматски примењени филтер за недавне податке. Ову опцију можете онемогућити у подешавањима приказа листе." @@ -3107,11 +3199,6 @@ msgstr "Аутоматски обриши налог унутар (сати)" msgid "Automation" msgstr "Аутоматизација" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "Аватар" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3383,8 +3470,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:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "На основу" @@ -3501,10 +3588,8 @@ msgstr "Бинарно записивање" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "Биографија" @@ -3534,64 +3619,6 @@ msgstr "Блокирај модуле" msgid "Blocked" msgstr "Блокирано" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "Блог" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "Категорија блога" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "Увод у блог" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "Увод у блог" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "Блог објава" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "Подешавање блога" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "Наслов блога" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "Блогер" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3689,13 +3716,6 @@ msgstr "Бренд је оно што се приказује у горњем л msgid "Breadcrumbs" msgstr "Breadcrumbs" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "Претражи по категорији" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3753,15 +3773,15 @@ msgstr "Масовно брисање" msgid "Bulk Edit" msgstr "Масовно уређивање" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "Масовно уређивање {0}" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" -msgstr "Масовна операције није успела" +msgstr "Масовна операција није успела" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "Масовна операција је успешно завршена" @@ -3776,7 +3796,7 @@ msgstr "Масован извоз PDF" msgid "Bulk Update" msgstr "Масовно ажурирање" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "Масовно одобравање подржава највише до 500 докумената." @@ -3788,7 +3808,7 @@ msgstr "Масовна операција је стављена у ред за msgid "Bulk operations only support up to 500 documents." msgstr "Масовна операција подржава највише до 500 докумената." -#: frappe/model/workflow.py:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "Масовно {0} је стављено у ред за обраду у позадини." @@ -3918,16 +3938,6 @@ msgstr "CSS селектор за елемент који желите да ис msgid "CSV" msgstr "CSV" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "Ознака позива на радњу" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "URL позива на радњу" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3978,11 +3988,6 @@ msgstr "Позив на радњу" msgid "Call To Action URL" msgstr "URL позива на радњу" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "Позив на радњу" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -4000,7 +4005,7 @@ msgid "Camera" msgstr "Камера" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -4036,7 +4041,7 @@ msgstr "Може да мења" msgid "Can not rename as column {0} is already present on DocType." msgstr "Не може се променити назив јер је колона {0} већ присутна у DocType." -#: frappe/core/doctype/doctype/doctype.py:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "Може се променити на/назад у правило аутоматског повећања само када у DocType-у нема података" @@ -4048,7 +4053,7 @@ msgstr "Могу се приказивати само врсте докумен #: frappe/desk/form/document_follow.py:48 msgid "Can't follow since changes are not tracked." -msgstr "Не може се пратити јер промене нису праћење." +msgstr "Не може се пратити јер промене нису забележене." #: frappe/model/rename_doc.py:366 msgid "Can't rename {0} to {1} because {0} doesn't exist." @@ -4060,14 +4065,15 @@ msgstr "Не може се преименовати из {0} у {1} јер {0} #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "Откажи" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Откажи" @@ -4085,16 +4091,18 @@ msgstr "Откажи све" msgid "Cancel All Documents" msgstr "Откажи све документе" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Откажи {0} документа?" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -4132,11 +4140,11 @@ msgstr "Није могуће преузети вредности" msgid "Cannot Remove" msgstr "Није могуће уклонити" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "Није могуће ажурирати након подношења" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "Није могуће приступити путањи фајла {0}" @@ -4144,7 +4152,7 @@ msgstr "Није могуће приступити путањи фајла {0}" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "Није могуће отказати пре подношења током транзиције са {0} стања на {1} стање" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "Није могуће отказати пре подношења. Погледај транзицију {0}" @@ -4152,11 +4160,11 @@ msgstr "Није могуће отказати пре подношења. Пог msgid "Cannot cancel {0}." msgstr "Није могуће отказати {0}." -#: frappe/model/document.py:1013 +#: frappe/model/document.py:1017 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "Није могуће променити статус документа из 0 (нацрт) у 2 (отказан)" -#: frappe/model/document.py:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "Није могуће променити статус документа из 1 (поднет) у 0 (нацрт)" @@ -4164,11 +4172,11 @@ msgstr "Није могуће променити статус документа msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "Није могуће променити стање отказаног документа ({0} стање)" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "Није могуће променити стање отказаног документа. Транзициони ред {0}" -#: frappe/core/doctype/doctype/doctype.py:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "Није могуће променити са/на аутоматско повећање аутоматског назива у пољу прилагоди образац" @@ -4180,11 +4188,11 @@ msgstr "Није могуће креирати {0} против зависног msgid "Cannot create private workspace of other users" msgstr "Није могуће креирати приватни радни простор за остале кориснике" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "Није могуће обрисати почетне и приложене датотеке" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "Није могуће обрисати или отказати јер је {0} {1} повезано са {2} {3} {4}" @@ -4219,7 +4227,7 @@ msgstr "Није могуће обрисати системски генерис msgid "Cannot delete {0}" msgstr "Није могуће обрисати {0}" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" msgstr "Није могуће обрисати {0} јер има зависне чворове" @@ -4227,7 +4235,7 @@ msgstr "Није могуће обрисати {0} јер има зависне msgid "Cannot edit Standard Dashboards" msgstr "Није могуће уредити стандардне контролне табле" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "Није могуће уредити стандардна обавештења. Да бисте их уредили, прво их онемогућите и направите дупликат" @@ -4239,7 +4247,7 @@ msgstr "Није могуће уредити стандардне графико msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "Није могуће уредити стандардне извештаје. Молимо Вас направите дупликат и креирајте нови извештај" -#: frappe/model/document.py:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "Није могуће уредити отказан документ" @@ -4247,8 +4255,8 @@ msgstr "Није могуће уредити отказан документ" msgid "Cannot edit filters for standard charts" msgstr "Није могуће уредити филтере за стандардне графиконе" -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "Није могуће уредити филтере за стандардне бројчане картице" @@ -4256,27 +4264,27 @@ msgstr "Није могуће уредити филтере за стандар msgid "Cannot edit standard fields" msgstr "Није могуће уредити стандардна поља" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "Није могуће дозволити {0} за доцтyпе који се не може поднети" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "Није могуће пронаћи фајл {} на диску" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "Није могуће преузети садржај фајла из датотеке" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:884 msgid "Cannot have multiple printers mapped to a single print format." msgstr "Није могуће мапирати више штампача на један формат за штампу." -#: frappe/public/js/frappe/form/grid.js:1132 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "Није могуће увозити табелу са више од 5000 редова." -#: frappe/model/document.py:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "Није могуће повезати отказани документ: {0}" @@ -4288,11 +4296,11 @@ msgstr "Није могуће мапирање јер следећи услов msgid "Cannot match column {0} with any field" msgstr "Није могуће упарити колону {0} ни са једним пољем" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "Није могуће померити ред" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "Није могуће уклонити ИД поље" @@ -4300,7 +4308,7 @@ msgstr "Није могуће уклонити ИД поље" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "Није могуће поставити дозволу за 'Извештај' уколико је постављена дозвола за 'Искључиво уколико је аутор'" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "Није могуће подесити обавештење са догађајем {0} за врсту документа {1}" @@ -4317,11 +4325,11 @@ msgstr "Није могуће поднети {0}." msgid "Cannot update {0}" msgstr "Није могуће ажурирати {0}" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" -msgstr "Није могуће користити подупит у команди сортирај по" +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." +msgstr "Није могуће користити подупит овде." -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "Није могуће користити {0} у команди сортирај/групиши по" @@ -4389,15 +4397,6 @@ msgstr "Центар" msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." msgstr "Одређени документи, попут фактура, не би требало да се мењају након што постану финални. Финално стање за такве документ се назива поднето. Можете ограничити које улоге могу поднети документе." -#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "Интегритет ланца" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "Хаширање ланца" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4435,9 +4434,9 @@ msgstr "Промени формат штампе" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
    \n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " +"Warning: Incorrectly updating counters can prevent documents from getting created." msgstr "Промените почетни / тренутни број у низу за постојећу серију.
    \n\n" -"Упозорење: Неисправно ажурирање бројача можете спречити креирање докумената. " +"Упозорење: Неисправно ажурирање бројача можете спречити креирање докумената." #. Label of the changed_at (Datetime) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -4506,7 +4505,7 @@ msgstr "Извор дијаграма" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "Врста дијаграма" @@ -4539,7 +4538,7 @@ msgstr "Чет" msgid "Check" msgstr "Означи" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "Провери URL захтева" @@ -4547,7 +4546,7 @@ msgstr "Провери URL захтева" msgid "Check columns to select, drag to set order." msgstr "Провери колоне за означавање, превуци да поставиш редослед." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "Провери евиденцију грешака за више информација: {0}" @@ -4588,11 +4587,6 @@ msgstr "Означавањем овога дошло би до објављив msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "Означавањем овога дошло би до приказивања текстуалне области где је могуће написати прилагођени javascript који ће се извршавати на овој страници." -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "Верзија контролног збира" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "Зависни DocType-ови нису дозвољени" @@ -4602,17 +4596,17 @@ msgstr "Зависни DocType-ови нису дозвољени" msgid "Child Doctype" msgstr "Зависни DocType" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "Зависна табела {0} за поље {1}" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Зависне табеле се приказују као табеле у другим DocType-овима" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "Зависна поља упита за '{0}' морају бити врсте листа или tuple." @@ -4641,6 +4635,7 @@ msgid "Choose authentication method to be used by all users" 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 msgid "City" msgstr "Град" @@ -4655,7 +4650,7 @@ msgstr "Град/Насељено место" msgid "Clear" msgstr "Очисти" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "Очисти и додај шаблон" @@ -4667,7 +4662,7 @@ msgstr "Очисти и додај шаблон" msgid "Clear All" msgstr "Очисти све" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Очисти додељене задатке" @@ -4693,7 +4688,7 @@ msgstr "Очисти евиденције након (дана)" msgid "Clear User Permissions" msgstr "Очисти корисничке дозволе" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "Очисти имејл поруке и додај шаблон" @@ -4705,11 +4700,15 @@ msgstr "Очисти датум завршетка, јер не може бит msgid "Click On Customize to add your first widget" msgstr "Кликните на прилагоди да додате свој први виџет" -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "Кликните испод да бисте започели:" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "Кликните овде" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "Кликните на фајл да га одаберете." @@ -4740,24 +4739,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "Кликните на {0} да генеришете токен за освежавање." #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "Кликните на табелу да бисте је уредили" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "Кликните да поставите динамичке филтере" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "Кликните да поставите филтере" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "Кликните да сортирате по {0}" @@ -4935,7 +4934,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Сажми" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Сажми све" @@ -4947,7 +4946,7 @@ msgstr "Сажми све" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.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 @@ -4955,12 +4954,12 @@ msgstr "Може се сажети" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Collapsible Depends On" -msgstr "Може се сажети зависи од" +msgstr "Склопиво зависи од" #. Label of the collapsible_depends_on (Code) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Collapsible Depends On (JS)" -msgstr "Може се сажети зависи од (JS)" +msgstr "Склопиво зависи од (JS)" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the color (Data) field in DocType 'DocType' @@ -4990,7 +4989,7 @@ msgstr "Може се сажети зависи од (JS)" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5046,11 +5045,11 @@ msgstr "Назив колоне" msgid "Column Name cannot be empty" msgstr "Назив колоне не може бити празан" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "Ширина колоне" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "Ширина колоне не може бити нула." @@ -5077,7 +5076,7 @@ msgstr "Колоне" msgid "Columns / Fields" msgstr "Колоне / Поља" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "Колоне засноване на" @@ -5119,16 +5118,6 @@ msgstr "Врста коментара" msgid "Comment can only be edited by the owner" msgstr "Коментар се може уредити само од власника" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "Лимит коментара" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "Лимит коментара по часу" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "Видљивост коментара може да ажурира искључиво оригинални аутор или систем менаџер." @@ -5136,7 +5125,7 @@ msgstr "Видљивост коментара може да ажурира ис #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "Коментари" @@ -5145,7 +5134,7 @@ msgstr "Коментари" msgid "Comments and Communications will be associated with this linked document" msgstr "Коментари и комуникације ће бити повезани са овим повезаним документом" -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "Коментари не могу садржати линкове или имејл адресе" @@ -5217,12 +5206,12 @@ msgid "Company Name" msgstr "Назив компаније" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "Упореди верзије" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "Упозорење приликом компилације" @@ -5302,8 +5291,8 @@ msgstr "Компримовати" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5317,6 +5306,11 @@ msgstr "Услов" msgid "Condition JSON" msgstr "Услов JSON" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "Врста услова" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5342,11 +5336,11 @@ msgstr "Конфигурација" msgid "Configuration" msgstr "Конфигурација" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "Конфигуришите дијаграм" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "Конфигуришите колоне" @@ -5373,7 +5367,7 @@ msgstr "Конфигуришите како ће се називати изме msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "Конфигуришите различите аспекте како функционише именовање докумената, као што су серије именовања, тренутни бројач." -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Потврди" @@ -5392,7 +5386,7 @@ msgstr "Потврди приступ" msgid "Confirm Deletion of Account" msgstr "Потврди уклањање налога" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "Потврди нову лозинку" @@ -5419,7 +5413,7 @@ msgstr "Потврђено" msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "Честитамо на завршетку поставке модула. Уколико желите да сазнате више, можете се посветити документацији овде." -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "Повежи се са {}" @@ -5437,8 +5431,8 @@ msgstr "Повезане апликације" msgid "Connected User" msgstr "Повезани корисник" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "Повезано са QZ Tray!" @@ -5489,6 +5483,10 @@ msgstr "Ограничења" msgid "Contact" msgstr "Контакт" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
    {0}" +msgstr "Контакт / имејл није пронађен. Учесник није додат за -
    {0}" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5546,15 +5544,13 @@ msgstr "Садржи {0} исправки безбедности" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5562,24 +5558,12 @@ msgstr "Садржи {0} исправки безбедности" msgid "Content" msgstr "Садржај" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "Садржај (HTML)" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "Садржај (Markdown)" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "Хеш садржај" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "Врста садржаја" @@ -5645,9 +5629,9 @@ msgstr "Копирај линк" #: frappe/website/doctype/web_form/web_form.js:29 msgid "Copy embed code" -msgstr "Копирај embed code" +msgstr "Копирај embedded code" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "Копирај грешку у међуспремник" @@ -5655,12 +5639,16 @@ msgstr "Копирај грешку у међуспремник" msgid "Copy to Clipboard" msgstr "Копирај у међуспремник" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "Копирајте токен у међуспремник" + #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" msgstr "Ауторска права" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "Основни DocType-ови не могу бити прилагођени." @@ -5668,7 +5656,7 @@ msgstr "Основни DocType-ови не могу бити прилагође msgid "Core Modules {0} cannot be searched in Global Search." msgstr "Основни модули {0} се не могу претраживати у глобалној претрази." -#: frappe/printing/page/print/print.js:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "Исправна верзија :" @@ -5676,7 +5664,7 @@ msgstr "Исправна верзија :" msgid "Could not connect to outgoing email server" msgstr "Није било могуће повезати се са сервером за излазне имејлове" -#: frappe/model/document.py:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "Није било могуће пронаћи {0}" @@ -5684,15 +5672,15 @@ msgstr "Није било могуће пронаћи {0}" msgid "Could not map column {0} to field {1}" msgstr "Није било могуће мапирати колону {0} на поље {1}" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "Није могуће обрадити поље: {0}" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " -msgstr "Није било могуће покренути: " +msgid "Could not start up:" +msgstr "Није било могуће покренути:" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "Није било могуће сачувати, проверите унесене податке" @@ -5737,13 +5725,14 @@ msgstr "Бројач" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "Држава" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "Шифра државе је неопходна" @@ -5775,13 +5764,13 @@ msgstr "Cr" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Креирај" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "Креирај и настави" @@ -5795,7 +5784,7 @@ msgid "Create Card" msgstr "Креирај картицу" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "Креирај графикон" @@ -5829,12 +5818,12 @@ msgstr "Креирај евиденцију" msgid "Create New" msgstr "Креирај нови" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Креирај нови" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "Креирај нови DocType" @@ -5842,7 +5831,7 @@ msgstr "Креирај нови DocType" msgid "Create New Kanban Board" msgstr "Креирај нову Канбан таблу" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "Креирај кориснички имејл" @@ -5854,7 +5843,7 @@ msgstr "Креирај нови формат" msgid "Create a Reminder" msgstr "Креирај подсетник" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "Креирај нови ..." @@ -5862,11 +5851,11 @@ msgstr "Креирај нови ..." msgid "Create a new record" msgstr "Креирај нови запис" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "Креирај нови {0}" @@ -5882,7 +5871,7 @@ msgstr "Креирај или уреди формат штампе" msgid "Create or Edit Workflow" msgstr "Креирај или уреди радни ток" -#: frappe/public/js/frappe/list/list_view.js:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "Креирај свој први {0}" @@ -5892,7 +5881,7 @@ msgstr "Креирајте Ваш радни ток визуално корис #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "Креирано" @@ -5908,7 +5897,7 @@ msgstr "Креирано на" msgid "Created By" msgstr "Креирано од стране" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "Креирано прилагођено поље {0} у {1}" @@ -5920,7 +5909,7 @@ msgstr "Креирано прилагођено поље {0} у {1}" msgid "Created On" msgstr "Креирано на" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "Креирање {0}" @@ -6229,7 +6218,7 @@ msgstr "Прилагођена get_list метода за {0} мора врат #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "Прилагођени?" @@ -6257,14 +6246,14 @@ msgstr "Ресетуј прилагођавање" msgid "Customizations for {0} exported to:
    {1}" msgstr "Прилагођавање за {0} су извезена:
    {1}" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "Прилагоди" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "Прилагоди" @@ -6283,7 +6272,7 @@ msgstr "Прилагоди контролну таблу" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "Прилагоди образац" @@ -6361,7 +6350,7 @@ msgstr "Дневно" msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "Дневни преглед догађаја се шаље за догађаје на календару где су постављени подсетници." -#: frappe/desk/doctype/event/event.py:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "Дневни догађаји треба да се заврше истог дана." @@ -6408,7 +6397,7 @@ msgstr "Тамна тема" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "Контролна табла" @@ -6467,7 +6456,6 @@ msgstr "Контролне табле" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6480,7 +6468,6 @@ msgstr "Контролне табле" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6516,7 +6503,7 @@ msgstr "Евиденција увоза података" msgid "Data Import Template" msgstr "Шаблон за увоз податка" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "Подаци су преобимни" @@ -6547,7 +6534,7 @@ msgstr "Искоришћеност величине реда базе подат msgid "Database Storage Usage By Tables" msgstr "Искоришћеност простора базе података по табелама" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "Ограничење величине реда табеле базе података" @@ -6685,11 +6672,11 @@ msgstr "Поштовани/на {0}" msgid "Debug Log" msgstr "Дебуг евиденција" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "Децимални сепаратор мора бити тачка '.' када наводник није подешен као нумерички" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "Децимални сепаратор мора бити један знак" @@ -6851,11 +6838,11 @@ msgstr "Подразумевани радни простор" msgid "Default display currency" msgstr "Подразумевана валута за приказ" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "Подразумевана вредност 'Означи' врсте поља {0} мора бити или '0' или '1'" -#: frappe/core/doctype/doctype/doctype.py:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 msgid "Default value for {0} must be in the list of options." msgstr "Подразумевана вредност за {0} мора бити у листи опција." @@ -6889,6 +6876,12 @@ msgstr "Подразумеване вредности ажуриране" msgid "Defines actions on states and the next step and allowed roles." msgstr "Дефинише радње за стање, следећи корак и дозвољене улоге." +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "Дефинише колико дуго се извештаји послати путем имејла чувају у систему. Старији фајлови ће бити аутоматски обрисани." + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6906,22 +6899,27 @@ 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/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Обриши" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Обриши" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "Обриши" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "Обриши налог" @@ -6930,6 +6928,12 @@ msgstr "Обриши налог" 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 +msgid "Delete Background Exported Reports After (Hours)" +msgstr "Обриши извештаје из позадинског извоза након (сати)" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6939,7 +6943,7 @@ msgstr "Обриши колону" msgid "Delete Data" msgstr "Обриши податке" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "Обриши Канбан таблу" @@ -6953,7 +6957,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Обриши картицу" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "Обриши и генериши нови" @@ -6962,7 +6966,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "Обриши колону" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "Обриши коментар?" @@ -6995,12 +6999,12 @@ msgstr "Обриши картицу" msgid "Delete this record to allow sending to this email address" msgstr "Обриши овај запис да би омогућио слање на ову имејл адресу" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "Трајно обриши {0} ставку?" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Трајно обриши {0} ставке?" @@ -7036,11 +7040,15 @@ msgstr "Обрисани документи" msgid "Deleted Name" msgstr "Обрисани назив" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "Сви документи су успешно обрисани" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Обрисано!" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "Брисање {0}" @@ -7055,8 +7063,8 @@ msgstr "Брисање {0}..." #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " -msgstr "Кораци за брисање " +msgid "Deletion Steps" +msgstr "Кораци за брисање" #: frappe/core/doctype/page/page.py:110 #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 @@ -7072,7 +7080,7 @@ msgstr "Опције за раздвајање" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "Детекција за раздвајање није успела. Покушајте да омогућите прилагођене разделнике и прилагодите опције раздвајања према Вашим подацима." -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "Разделник мора бити један карактер" @@ -7099,7 +7107,7 @@ msgstr "Одељење" msgid "Dependencies" msgstr "Зависности" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "Зависности и лиценце" @@ -7134,7 +7142,6 @@ msgstr "Изведени од (са извором)" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -7155,7 +7162,6 @@ msgstr "Изведени од (са извором)" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -7165,11 +7171,6 @@ msgstr "Изведени од (са извором)" msgid "Description" msgstr "Опис" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "Опис за страницу са листом, у обичном тексту, само пар редова (максимално 200 карактера)" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -7253,7 +7254,7 @@ msgstr "Иконица радне површине већ постоји" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "Детаљи" @@ -7314,11 +7315,6 @@ msgstr "Онемогући обавештење о изменама" msgid "Disable Comment Count" msgstr "Онемогући број коментара" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "Онемогући коментаре" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7336,11 +7332,6 @@ msgstr "Онемогући бројање" msgid "Disable Document Sharing" msgstr "Онемогући дељење документа" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "Онемогући лајкове" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "Онемогући извештај" @@ -7350,6 +7341,11 @@ msgstr "Онемогући извештај" msgid "Disable SMTP server authentication" msgstr "Онемогући SMTP сервер аутентификацију" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "Онемогући скроловање" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7395,7 +7391,6 @@ msgstr "Онемогући пријављивања" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7410,7 +7405,6 @@ msgstr "Онемогући пријављивања" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "Онемогућено" @@ -7421,7 +7415,7 @@ msgstr "Онемогући аутоматски одговор" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "Одбаци" @@ -7439,7 +7433,7 @@ msgstr "Одбаци" msgid "Discard {0}" msgstr "Одбаци {0}" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "Одбаци?" @@ -7462,7 +7456,7 @@ msgstr "Одговор на дискусију" msgid "Discussion Topic" msgstr "Тема дискусије" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7498,19 +7492,23 @@ msgstr "Разделник" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " -msgstr "Немој креирати новог корисника " +msgid "Do Not Create New User" +msgstr "Немој креирати новог корисника" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "Немој креирати новог корисника уколико корисник са тим имејлом не постоји у систему" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "Немој уређивати заглавља која су унапред постављена у шаблону" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "Не упозоравај ме више на {0}" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "Да ли још увек желите да наставите?" @@ -7604,7 +7602,7 @@ msgstr "Статус документа следећих стања је про msgid "DocType" msgstr "DocType" -#: frappe/core/doctype/doctype/doctype.py:1577 +#: frappe/core/doctype/doctype/doctype.py:1578 msgid "DocType {0} provided for the field {1} must have atleast one Link field" msgstr "DocType {0} додељен за поље {1} мора имати барем једно линк поље" @@ -7651,11 +7649,11 @@ msgstr "DocType стање" msgid "DocType View" msgstr "DocType приказ" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "DocType не може бити спојен" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "DocType може бити преименован само од стране администратора" @@ -7664,7 +7662,7 @@ msgstr "DocType може бити преименован само од стра msgid "DocType is a Table / Form in the application." msgstr "DocType је табела / образац у апликацији." -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "DocType мора бити подложан подношењу за одабрани догађај документа" @@ -7697,7 +7695,7 @@ msgstr "DocType {0} не постоји." msgid "DocType {} not found" msgstr "DocType {} није пронађен" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "Назив DocType-а не сме почињати или завршавати се размаком" @@ -7711,7 +7709,7 @@ msgstr "DocType не може бити модификован, молимо Ва msgid "Doctype" msgstr "DocType" -#: frappe/core/doctype/doctype/doctype.py:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "Doctype назив је ограничен на {0} карактера ({1})" @@ -7773,31 +7771,29 @@ msgstr "Повезивање документа" msgid "Document Links" msgstr "Линкови документа" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "Ред повезаних докумената #{0}: Није пронађено поље {1} у {2} DocType" -#: frappe/core/doctype/doctype/doctype.py:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "Ред повезаних докумената #{0}: Неважећи доцтyпе или назив поља." -#: frappe/core/doctype/doctype/doctype.py:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "Ред повезаних докумената #{0}: Матични DocType је обавезан за интерне линкове" -#: frappe/core/doctype/doctype/doctype.py:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "Ред повезаних докумената #{0}: Назив поља табеле је обавезно за интерне линкове" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7939,13 +7935,13 @@ msgstr "Наслов документа" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "Врста документа" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 msgid "Document Type and Function are required to create a number card" msgstr "Врста и функција документа су неопходне да би се креирала бројчана картица" @@ -7982,7 +7978,7 @@ msgid "Document Types and Permissions" msgstr "Врсте и дозволе документа" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "Документ је откључан" @@ -7990,15 +7986,15 @@ msgstr "Документ је откључан" msgid "Document follow is not enabled for this user." msgstr "Праћење документа није омогућено за овог корисника." -#: frappe/public/js/frappe/list/list_view.js:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "Документ је отказан" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "Документ је поднет" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "Документ у стању нацрта" @@ -8140,13 +8136,13 @@ msgstr "Кружни" msgid "Double click to edit label" msgstr "Кликни два пута да уредиш ознаку" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "Преузми" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "Преузми" @@ -8173,7 +8169,7 @@ msgstr "Преузми линк" msgid "Download PDF" msgstr "Преузми PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "Преузми извештај" @@ -8236,7 +8232,7 @@ msgstr "Превуци елементе са бочне траке да их д msgid "Drag to add state" msgstr "Превуци да додаш стање" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "Отпусти фајлове овде" @@ -8269,7 +8265,7 @@ msgstr "Дупликат уноса" msgid "Duplicate Filter Name" msgstr "Дупликат назив филтера" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "Дупликат назива" @@ -8368,17 +8364,17 @@ msgstr "ИЗЛАЗ" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8386,7 +8382,7 @@ msgstr "ИЗЛАЗ" msgid "Edit" msgstr "Уреди" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Уреди" @@ -8396,7 +8392,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Уреди" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "Уреди" @@ -8425,7 +8421,7 @@ msgstr "Уреди прилагођени HTML" msgid "Edit DocType" msgstr "Уреди DocType" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Уреди DocType" @@ -8443,7 +8439,7 @@ msgstr "Уреди филтере" msgid "Edit Footer" msgstr "Уреди подножје" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "Уреди формат" @@ -8528,7 +8524,7 @@ msgstr "Уреди {0} Doctype" msgid "Edit to add content" msgstr "Уреди да би додао садржај" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "Уредите Ваш одговор" @@ -8537,7 +8533,7 @@ msgstr "Уредите Ваш одговор" msgid "Edit your workflow visually using the Workflow Builder." msgstr "Визуално уредите свој радни ток помоћу уређивача радног тока." -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "Уреди {0}" @@ -8545,7 +8541,7 @@ msgstr "Уреди {0}" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "Табела која се може уређивати" @@ -8584,11 +8580,14 @@ msgstr "Избор елемента" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8597,6 +8596,7 @@ msgstr "Избор елемента" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8606,6 +8606,8 @@ msgstr "Избор елемента" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "Имејл" @@ -8637,7 +8639,7 @@ msgstr "Имејл налог онемогућен." msgid "Email Account Name" msgstr "Назив имејл налога" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "Имејл налог је додат више пута" @@ -8725,6 +8727,7 @@ msgid "Email IDs" msgstr "Имејл ИД" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "Имејл ИД" @@ -8756,7 +8759,7 @@ 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 @@ -8768,10 +8771,10 @@ msgstr "Ограничење поновних покушаја за имејл" msgid "Email Rule" msgstr "Имејл правило" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" -msgstr "Имејл послат" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" +msgstr "Имејл послат у" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType @@ -8836,11 +8839,11 @@ msgstr "Имејл је означен као спам" msgid "Email has been moved to trash" msgstr "Имејл је премештен у отпад" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "Имејл је обавезан за креирање корисничког имејла" -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "Имејл није послат {0} (отказана претплата / онемогућено)" @@ -8879,7 +8882,7 @@ msgstr "Имејлови ће бити послати са следећим мо msgid "Embed code copied" msgstr "Код за уградњу је копиран" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "Празан псеудоним није дозвољен" @@ -8887,7 +8890,7 @@ msgstr "Празан псеудоним није дозвољен" msgid "Empty column" msgstr "Празна колона" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "Аргументи као празан текст нису дозвољени" @@ -8906,7 +8909,7 @@ msgstr "Омогући" msgid "Enable Address Autocompletion" msgstr "Омогући аутоматско довршавање адресе" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "Омогући дозволу за аутоматско понављање за доцтyпе {0} у пољу прилагоди образац" @@ -8932,11 +8935,6 @@ msgstr "Омогући коментаре" msgid "Enable Dynamic Client Registration" msgstr "Омогући динамичку регистрацију клијента" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "Омогући имејл обавештење" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -9030,11 +9028,6 @@ msgstr "Омогући безбедност" msgid "Enable Social Login" msgstr "Омогући пријављивање путем друштвених мрежа" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "Омогући дељење путем друштвених мрежа" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "Омогући праћење прегледа страница" @@ -9042,7 +9035,7 @@ msgstr "Омогући праћење прегледа страница" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "Омогући двофакторску верификацију" @@ -9054,12 +9047,6 @@ msgstr "Омогући креирање стандардног шаблона з msgid "Enable developer mode to create a standard Web Template" msgstr "Омогући креирање стандардног веб-шаблона у развојном режиму" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "Омогући обавештење путем имејла за сваки коментар или лајк на Вашој објави на блогу." - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -9083,6 +9070,7 @@ msgstr "Омогући праћење веб-сајта унутар аплик #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -9095,6 +9083,7 @@ msgstr "Омогући праћење веб-сајта унутар аплик #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "Омогућено" @@ -9120,15 +9109,11 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "Омогућавање аутоматског одговора на улазне имејлове ће аутоматски слати одговоре на све синхронизоване имејлове. Да ли желите да наставите?" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "Омогућавањем овога региструјете Ваш веб-сајт на централном серверу за слање обавештења за све инсталиране апликације путем Фиребасе Цлоуд Мессагинг-а. Овај сервер чува само токене корисника и евиденције грешака, док се поруке не чувају." - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " -msgstr "Омогућавањем овога региструјете Ваш веб-сајт на централном серверу за слање обавештења за све инсталиране апликације путем Фиребасе Цлоуд Мессагинг-а. Овај сервер чува само токене корисника и евиденције грешака, док се поруке не чувају. " +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "Омогућавањем овога региструјете Ваш веб-сајт на централном серверу за слање обавештења за све инсталиране апликације путем Фиребасе Цлоуд Мессагинг-а. Овај сервер чува само токене корисника и евиденције грешака, док се поруке не чувају." #. Description of the 'Queue in Background (BETA)' (Check) field in DocType #. 'DocType' @@ -9144,11 +9129,11 @@ msgstr "Омогућавањем овога ће се поднети докум msgid "Encrypt Backups" msgstr "Шифрирај резервне копије" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "Кључ за шифровање је у неважећем формату!" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "Кључ за шифровање је неважећи! Молимо Вас да проверите site_config.json" @@ -9160,7 +9145,7 @@ msgstr "Крај" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -9176,6 +9161,10 @@ msgstr "Поље датума завршетка" msgid "End Date cannot be before Start Date!" msgstr "Датум завршетка не може бити пре датума почетка!" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "Датум завршетка не може бити данашњи датум." + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9220,7 +9209,7 @@ msgstr "Унесите клијентски ИД и тајну клијента msgid "Enter Code displayed in OTP App." msgstr "Унесите шифру приказану у апликацији за једнократну лозинку." -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "Унесите примаоце имејла" @@ -9290,10 +9279,17 @@ msgstr "Једнако" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9303,7 +9299,7 @@ msgstr "Једнако" msgid "Error" msgstr "Грешка" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "Грешка" @@ -9323,7 +9319,7 @@ msgstr "Евиденције грешака" msgid "Error Message" msgstr "Порука о грешци" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 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.
    Кликните овде да бисте научили више о необрађеној штампи.." @@ -9351,9 +9347,9 @@ msgstr "Грешка у клијентској скрипти." msgid "Error in Header/Footer Script" msgstr "Грешка у скрипти заглавља/подножја" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "Грешка у обавештењу" @@ -9373,19 +9369,19 @@ msgstr "Грешка приликом обраде угњеждених филт msgid "Error while connecting to email account {0}" msgstr "Грешка при повезивању са имејл налогом {0}" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Грешка при обради обавештења {0}. Молимо Вас да исправите Ваш шаблон." -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "Грешка: Подаци недостају у табели {0}" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "Грешка: Вредност недостаје за {0}: {1}" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "Грешка: {0} Ред #{1}: Вредност недостаје за: {2}" @@ -9442,7 +9438,7 @@ msgstr "Врста догађаја" msgid "Events" msgstr "Догађаји" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "Догађаји у данашњем календару" @@ -9526,7 +9522,7 @@ msgstr "Изврши" msgid "Execute Console script" msgstr "Изврши скрипту у конзоли" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "Извршавање кода" @@ -9534,7 +9530,7 @@ msgstr "Извршавање кода" msgid "Executing..." msgstr "Извршавање..." -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "Време извршавања: {0} секунди" @@ -9560,12 +9556,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Прошири" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Прошири све" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "Очекиван је оператор 'and' или 'or', пронађено: {0}" @@ -9593,7 +9589,9 @@ msgid "Expire Notification On" msgstr "Истек обавештења на" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "Истекло" @@ -9621,13 +9619,13 @@ msgstr "Време истека страница са QR кодом" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Извоз" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Извоз" @@ -9664,7 +9662,7 @@ msgstr "Извоз из" msgid "Export Import Log" msgstr "Евиденција увоза и извоза" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "Извоз извештаја: {0}" @@ -9673,11 +9671,11 @@ msgstr "Извоз извештаја: {0}" msgid "Export Type" msgstr "Врста извоза" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "Извоз свих редова који се подударају?" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "Извоз свих {0} редова?" @@ -9685,6 +9683,10 @@ msgstr "Извоз свих {0} редова?" msgid "Export as zip" msgstr "Извоз као зип" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "Извоз у позадини" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "Извоз није дозвољен. Неопходна је улога {0} за извоз." @@ -9772,7 +9774,7 @@ msgstr "Неуспешно" #. Label of the failed_emails (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Failed Emails" -msgstr "Неуспешн имејлови" +msgstr "Неуспешни имејлови" #. Label of the failed_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json @@ -9790,7 +9792,7 @@ msgstr "Неуспешни задаци" msgid "Failed Logins (Last 30 days)" msgstr "Неуспешне пријаве (последњих 30 дана)" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "Неуспешне трансакције" @@ -9807,7 +9809,7 @@ msgstr "Неуспешна промена лозинке." msgid "Failed to complete setup" msgstr "Неуспешно завршавање поставке" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "Неуспешно израчунавање тела захтева: {}" @@ -9816,15 +9818,15 @@ msgstr "Неуспешно израчунавање тела захтева: {}" msgid "Failed to connect to server" msgstr "Неуспешно повезивање са сервером" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "Неуспешно декодирање токена, молимо Вас да пружите валидан басе64-енкодирани токен." -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "Неуспешно дешифровање кључа {0}" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "Неуспешно брисање {0} докумената: {1}" @@ -9832,8 +9834,8 @@ msgstr "Неуспешно брисање {0} докумената: {1}" msgid "Failed to enable scheduler: {0}" msgstr "Неуспешно омогућавање планера: {0}" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "Неуспешна евалуација услова: {}" @@ -9849,7 +9851,7 @@ msgstr "Неуспешно генерисање назива из серија" msgid "Failed to generate preview of series" msgstr "Неуспешно генерисање прегледа серија" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "Неуспешно добити методу за команду {0} са {1}" @@ -9869,11 +9871,11 @@ msgstr "Неуспешан покушај увоза виртуелног doctyp msgid "Failed to optimize image: {0}" msgstr "Неуспешно оптимизовање слике: {0}" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "Неуспешно рендеровање поруке: {0}" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "Није могуће приказати наслов: {0}" @@ -9923,12 +9925,6 @@ msgstr "FavIcon" msgid "Fax" msgstr "Факс" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "Истакнуто" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "Повратна информација" @@ -9986,17 +9982,17 @@ msgstr "Преузми подразумеване документе за гло #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "Поље" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" msgstr "Поље \"путања\" је обавезно за веб-приказе" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "Поље \"наслов\" је обавезно уколико је постављено \"Поље за претрагу на веб-сајту\"." @@ -10009,7 +10005,7 @@ msgstr "Поље \"вредност\" је обавезно. Молимо Вас msgid "Field Description" msgstr "Опис поља" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "Поље недостаје" @@ -10039,7 +10035,7 @@ msgstr "Шаблон поља" msgid "Field Type" msgstr "Врста поља" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "Поље није дозвољено у реду" @@ -10065,11 +10061,11 @@ msgstr "Поље {0} не постоји у {1}" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "Поље {0} се односи на непостојећи доцтyпе {1}." -#: frappe/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "Поље {0} није пронађено." -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "Поље {0} у документу {1} није ни поље за мобилни број, ни линк за купца или корисника" @@ -10087,20 +10083,20 @@ 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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "Назив поља" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "Назив поља '{0}' је у конфликту са {1} називом {2} у {3}" -#: frappe/core/doctype/doctype/doctype.py:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "Назив поља {0} мора постојати да би се омогућило аутоматско именовање" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "Назив поља је ограничен на 64 карактера ({0})" @@ -10116,15 +10112,15 @@ msgstr "Назив поља које ће бити DocType за ово линк msgid "Fieldname {0} appears multiple times" msgstr "Назив поља {0} се појављује више пута" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "Назив поља {0} не може садржати специјалне карактере попут {1}" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "Назив поље {0} је у конфликту са мета објектом" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "Назив поља {0} је ограничен" @@ -10147,7 +10143,7 @@ msgstr "Назив поља {0} је ограничен" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -10160,7 +10156,7 @@ msgstr "Поља" msgid "Fields Multicheck" msgstr "Поља за више означавања" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "Поља `file_name` или `file_url` морају бити постављена за фајл" @@ -10168,7 +10164,7 @@ msgstr "Поља `file_name` или `file_url` морају бити поста msgid "Fields must be a list or tuple when as_list is enabled" msgstr "Поља морају бити листа или тупле када је опција аслист омогућена" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "Поља морају бити текст, листа, tuple, pypika поље или pypika функција" @@ -10196,7 +10192,7 @@ msgstr "Врста поља" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "Врста поља не може бити промењена са {0} на {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "Врста поља не може бити промењена са {0} на {1} у реду {2}" @@ -10209,7 +10205,7 @@ msgstr "Врста поља не може бити промењена са {0} msgid "File" msgstr "Фајл" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "Фајл \"{0}\" је прескочен због неважеће врсте фајла" @@ -10262,28 +10258,28 @@ msgstr "URL фајла" msgid "File backup is ready" msgstr "Резервна копија фајла је спремна" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" -msgstr "Назив фајле не може садржати {0}" +msgstr "Назив фајла не може садржати {0}" #: frappe/utils/csvutils.py:28 msgid "File not attached" msgstr "Фајл није приложен" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" -msgstr "Величина фајла је премашила маскималну дозвољену величину од {0} MB" +msgstr "Величина фајла је премашила максималну дозвољену величину од {0} MB" #: frappe/public/js/frappe/request.js:198 msgid "File too big" msgstr "Фајл је превелики" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "Врста фајла {0} није дозвољена" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "Фајл {0} не постоји" @@ -10297,10 +10293,10 @@ msgstr "Фајлови" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10337,11 +10333,11 @@ msgstr "Филтер назива" msgid "Filter Values" msgstr "Филтер вредности" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "Недостаје услов филтера након оператора: {0}" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "Поља филтера не могу садржати backticks (`)." @@ -10359,7 +10355,6 @@ msgstr "Филтрирано по" msgid "Filtered Records" msgstr "Филтрирани записи" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "Филтрирани по \"{0}\"" @@ -10374,7 +10369,9 @@ msgstr "Филтрирани по \"{0}\"" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10396,6 +10393,11 @@ msgstr "Конфигурација филтера" msgid "Filters Display" msgstr "Приказ филтера" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "Уређивач филтера" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10408,11 +10410,11 @@ msgstr "JSON филтера" msgid "Filters Section" msgstr "Одељак филтера" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "Филтери примењени за {0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "Филтери сачувани" @@ -10425,18 +10427,18 @@ msgstr "Филтери ће бити доступни путем филт msgid "Filters {0}" msgstr "Филтери {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:1427 +#: frappe/public/js/frappe/views/reports/report_view.js:1429 msgid "Filters:" msgstr "Филтери:" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 msgid "Find '{0}' in ..." msgstr "Пронађи '{0}' у ..." #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 msgid "Find {0} in {1}" msgstr "Пронађи {0} у {1}" @@ -10460,8 +10462,12 @@ msgstr "Први дан у недељи" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "Име" @@ -10470,10 +10476,6 @@ msgstr "Име" msgid "First Success Message" msgstr "Прва порука о успеху" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:49 -msgid "First Transaction" -msgstr "Прва трансакција" - #: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." msgstr "Прва колона са подацима мора бити празна." @@ -10524,11 +10526,11 @@ msgstr "Прецизност децимале" msgid "Fold" msgstr "Склопи" -#: frappe/core/doctype/doctype/doctype.py:1450 +#: frappe/core/doctype/doctype/doctype.py:1451 msgid "Fold can not be at the end of the form" msgstr "Склапање не може бити на крају обрасца" -#: frappe/core/doctype/doctype/doctype.py:1448 +#: frappe/core/doctype/doctype/doctype.py:1449 msgid "Fold must come before a Section Break" msgstr "Склапање мора бити пре прелома одељка" @@ -10546,7 +10548,7 @@ msgstr "Назив датотеке" msgid "Folder name should not include '/' (slash)" msgstr "Назив датотеке не би требало да укључује '/' (косу црту)" -#: frappe/core/doctype/file/file.py:472 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "Датотека {0} није празна" @@ -10651,11 +10653,11 @@ 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 "HTML подножје" -#: frappe/printing/doctype/letter_head/letter_head.py:75 +#: frappe/printing/doctype/letter_head/letter_head.py:81 msgid "Footer HTML set from attachment {0}" -msgstr "HTML подножја постављен из прилога {0}" +msgstr "HTML подножје постављено из прилога {0}" #. Label of the footer_image_section (Section Break) field in DocType 'Letter #. Head' @@ -10690,7 +10692,7 @@ msgstr "Шаблон подножја" msgid "Footer Template Values" msgstr "Вредности шаблона подножја" -#: frappe/printing/page/print/print.js:116 +#: frappe/printing/page/print/print.js:129 msgid "Footer might not be visible as {0} option is disabled" msgstr "Подножје можда неће бити видљиво јер је опција {0} онемогућена" @@ -10731,7 +10733,7 @@ msgstr "На пример: {} отворен" 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' @@ -10749,14 +10751,14 @@ msgstr "За корисника" msgid "For Value" msgstr "За вредност" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 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- Ово Вам помаже да пратите сваку измену." +msgstr "На пример, уколико откажете и измените INV004, он ће постати нови документ INV004-1. Ово Вам помаже да пратите сваку измену." #: frappe/public/js/frappe/utils/dashboard_utils.js:162 msgid "For example:" @@ -10776,12 +10778,6 @@ msgstr "На пример: {} отворен" msgid "For help see Client Script API and Examples" msgstr "За помоћ погледајте API за клијентске скрипте и примери" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "За више информација , кликните овде." - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "За више информација, {0}." @@ -10796,7 +10792,7 @@ msgstr "За више адреса, унесите адресе у различ msgid "For updating, you can update only selective columns." msgstr "За ажурирање, можете ажурирати само одређене колоне." -#: frappe/core/doctype/doctype/doctype.py:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "За {0} на нивоу {1} у {2} у реду {3}" @@ -10851,7 +10847,7 @@ 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:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "Образац" @@ -10911,6 +10907,11 @@ msgstr "Формат" msgid "Format Data" msgstr "Форматирај податке" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "На сваке две недеље" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "Проследи" @@ -10938,7 +10939,15 @@ msgstr "Јединица фракције" msgid "Frappe" msgstr "Frappe" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "Frappe Blog" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "Frappe Forum" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "Frappe Framework" @@ -11027,7 +11036,7 @@ msgstr "Датум почетка" msgid "From Date Field" msgstr "Поље за датум почетка" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "Од врсте документа" @@ -11054,18 +11063,16 @@ msgstr "Цела страница" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "Име и презиме" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "Цела страница" @@ -11091,13 +11098,13 @@ msgstr "Функција заснована на" msgid "Function {0} is not whitelisted." msgstr "Функција {0} није на листи дозвољених." -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "Функција {0} захтева аргументе, али ни један није наведен" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" -msgstr "Даље чворове је могуће креирати само у оквиру чворова врсте 'Група'" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "Даље подгрупе могу се креирати само унутар записа означених као 'Група'" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -11156,7 +11163,7 @@ msgstr "Опште" msgid "Generate Keys" msgstr "Генериши кључеве" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "Генериши нови извештај" @@ -11164,8 +11171,14 @@ msgstr "Генериши нови извештај" msgid "Generate Random Password" msgstr "Генериши насумичну лозинку" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "Генериши одвојене документе за сваког додељеног корисника" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "Генериши URL за праћење" @@ -11188,7 +11201,7 @@ msgstr "Геолокација" msgid "Geolocation Settings" msgstr "Подешавање геолокације" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "Прикажи данашња обавештења" @@ -11324,7 +11337,7 @@ msgid "Go to this URL after completing the form" msgstr "Идите на ову URL адресу након што завршите образац" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "Иди на {0}" @@ -11372,13 +11385,9 @@ msgstr "Анонимизуј ИП адресу у Google Аналyтицс" msgid "Google Calendar" msgstr "Google Calendar" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
    {0}" -msgstr "Google Calendar - Контакт / имејл није пронађен. Није додат учесник за -
    {0}" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." -msgstr "Google Calendar - Није могуће креирати календар за {0}, код грешка {1}." +msgstr "Google Calendar - Није могуће креирати календар за {0}, код грешке {1}." #: frappe/integrations/doctype/google_calendar/google_calendar.py:610 msgid "Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}." @@ -11494,11 +11503,6 @@ msgstr "URL Google Sheets-а није исправан или није јавн msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "URL Google Sheets-а мора да се завршава са \"gid={number}\". Копирај и налепи URL из адресне траке интернет претраживача и покушај поново." -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "Преглед Google Snippet-а" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11575,14 +11579,10 @@ msgstr "Врста Груписано по" msgid "Group By field is required to create a dashboard chart" msgstr "Поље Груписано по је неопходно за креирање графикона на контролној табли" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "Груписано по мора бити текст" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "Чвор групе" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11632,7 +11632,6 @@ msgstr "HH:mm:ss" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11643,9 +11642,8 @@ msgstr "HH:mm:ss" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11749,7 +11747,7 @@ msgstr "Заглавље" msgid "Header HTML" msgstr "HTML заглавље" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "HTML заглавље постављено из прилога {0}" @@ -11807,6 +11805,12 @@ msgstr "Топлотна мапа" msgid "Hello" msgstr "Здраво" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "Здраво," + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11872,7 +11876,7 @@ msgstr "Helvetica" msgid "Helvetica Neue" msgstr "Helvetica Neue" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "Ево Вашег URL за праћење" @@ -11908,7 +11912,7 @@ msgstr "Сакривено" msgid "Hidden Fields" msgstr "Сакривена поља" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "Сакривене колоне укључују: {0}" @@ -11941,11 +11945,6 @@ msgstr "Сакриј границу" msgid "Hide Buttons" msgstr "Сакриј дугмад" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "Сакриј позив на радњу" - #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json @@ -11995,7 +11994,7 @@ msgstr "Сакриј пријављивање" #: frappe/public/js/form_builder/form_builder.bundle.js:43 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 msgid "Hide Preview" -msgstr "Сакриј прегелд" +msgstr "Сакриј преглед" #. Description of the 'Hide Buttons' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json @@ -12025,7 +12024,7 @@ msgstr "Сакриј бочну траку, мени и коментаре" msgid "Hide Standard Menu" msgstr "Сакриј стандардни мени" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "Сакриј ознаке" @@ -12039,7 +12038,7 @@ msgstr "Сакриј викенде" msgid "Hide descendant records of For Value." msgstr "Сакриј потомке записа за Вредност." -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "Сакриј детаље" @@ -12088,11 +12087,8 @@ 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:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -12180,16 +12176,16 @@ msgstr "Изгледа да још увек немаш приступ нијед #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "ИД" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "ИД" @@ -12285,9 +12281,9 @@ msgstr "Уколико је опција примени строге корис msgid "If Checked workflow status will not override status in list view" msgstr "Уколико је означено статус радног тока неће заменити статус у приказу листе" -#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "Уколико је власник" @@ -12415,6 +12411,10 @@ msgstr "Уколико корисник има означену било кој msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "Уколико Вам ове инструкције нису биле од помоћи, молимо Вас да додате своје предлоге на GitHub Issues." +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "Уколико је ово била грешка или Вам је поново неопходан приступ, обратите се свом тиму." + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12446,7 +12446,11 @@ msgstr "Уколико отпремате нове записе, \"Серије msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "Уколико отпремате нове записе, оставите колону \"назив\" (ИД) празну." -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "Уколико имате било каквих питања, обратите се свом систем администратору." + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "Уколико сте недавно вратили сајт из резервне копије, можда ћете морати да копирате site_config.json који садржи оригинални кључ за шифровање." @@ -12503,12 +12507,12 @@ msgstr "Игнориши прилоге веће од ове величине" msgid "Ignored Apps" msgstr "Игнорисане апликације" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "Неважећи статус документа за {0}" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "Неважећи SQL упит" @@ -12569,11 +12573,11 @@ msgstr "Преглед слике" msgid "Image Width" msgstr "Ширина слике" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 msgid "Image field must be a valid fieldname" msgstr "Поље слике мора бити важећи назив поља" -#: frappe/core/doctype/doctype/doctype.py:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "Поље слике мора бити врсте Приложи слику" @@ -12595,15 +12599,15 @@ msgstr "Слике" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "Замени идентитет" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "Замени идентитет као {0}" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "Идентитет је замењен од стране {0}" @@ -12629,7 +12633,7 @@ msgstr "Имплицитно" msgid "Import" msgstr "Увоз" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "Увоз" @@ -12857,15 +12861,16 @@ msgstr "Укључи тему из апликација" msgid "Include Web View Link in Email" msgstr "Укључи линк ка веб-приказу у имејлу" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "Укључи филтере" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "Укључи сакривене колоне" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "Укључи индентацију" @@ -12912,7 +12917,7 @@ msgstr "Налог за улазну пошту није исправан" msgid "Incomplete Virtual Doctype Implementation" msgstr "Непотпуна имплементација виртуелног DocType-а" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "Непотпуни подаци за пријаву" @@ -12924,7 +12929,7 @@ msgstr "Неисправна конфигурација" msgid "Incorrect URL" msgstr "Неисправан URL" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "Погрешно корисничко име или лозинка" @@ -12932,11 +12937,11 @@ msgstr "Погрешно корисничко име или лозинка" msgid "Incorrect Verification code" msgstr "Погрешан верификациони код" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "Погрешна вредност у реду {0}:" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "Погрешна вредност:" @@ -12948,7 +12953,7 @@ msgstr "Погрешна вредност:" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "Индекс" @@ -13023,7 +13028,7 @@ msgstr "Унеси изнад" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "Унеси након" @@ -13039,7 +13044,7 @@ msgstr "Поље за унос након поља '{0}' поменутог у msgid "Insert Below" msgstr "Унеси пре" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "Унеси колону пре {0}" @@ -13057,8 +13062,12 @@ msgstr "Унеси нове записа" msgid "Insert Style" msgstr "Унеси стил" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "Instagram" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "Инсталирај {0} из продавнице" @@ -13075,7 +13084,7 @@ msgid "Installed Applications" msgstr "Инсталиране апликације" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "Инсталиране апликације" @@ -13090,21 +13099,21 @@ msgstr "Упутства послата имејлом" #: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" -msgstr "Недовољан ниво овлашћена за {0}" +msgstr "Недовољан ниво овлашћења за {0}" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" -msgstr "Недовољна овлашћена за {0}" +msgstr "Недовољна овлашћења за {0}" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" -msgstr "Недовољна овлашћена за брисање извештаја" +msgstr "Недовољна овлашћења за брисање извештаја" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" -msgstr "Недовољна овлашћена за уређивање извештаја" +msgstr "Недовољна овлашћења за уређивање извештаја" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "Премашен дозвољени број прилога" @@ -13208,9 +13217,9 @@ msgid "Invalid" msgstr "Неважеће" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "Неважећи \"depends_on\" израз" @@ -13218,9 +13227,9 @@ msgstr "Неважећи \"depends_on\" израз" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "Неважећи \"depends_on\" израз постављен у филтеру {0}" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" -msgstr "Неважечи \"mandatory_depends_on\" израз" +msgstr "Неважећи \"mandatory_depends_on\" израз" #: frappe/utils/nestedset.py:178 msgid "Invalid Action" @@ -13234,7 +13243,7 @@ msgstr "Неважећи CSV формат" msgid "Invalid Code. Please try again." msgstr "Неважећа шифра. Молимо Вас да покушате поново." -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "Неважећи услов: {}" @@ -13254,16 +13263,20 @@ msgstr "Неважећи DocType" msgid "Invalid DocType: {0}" msgstr "Неважећи DocType: {0}" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "Неважећи DocType" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "Неважећи назив поља" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "Неважећи URL фајла" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "Неважећи филтер" @@ -13295,7 +13308,7 @@ msgstr "Неважеће пријављивање. Покушајте понов msgid "Invalid Mail Server. Please rectify and try again." msgstr "Неважећи имејл сервер. Исправите и покушајте поново." -#: frappe/model/naming.py:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "Неважећа серија именовања: {}" @@ -13304,8 +13317,8 @@ msgstr "Неважећа серија именовања: {}" msgid "Invalid Operation" msgstr "Неважећа операција" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "Неважећа опција" @@ -13317,25 +13330,25 @@ msgstr "Неважећи излазни имејл сервер или порт: msgid "Invalid Output Format" msgstr "Неважећи излазни формат" -#: frappe/model/base_document.py:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "Неважећа измена" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "Неважећи параметри." -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "Неважећа лозинка" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "Неважећи број телефона" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "Неважећи захтев" @@ -13344,7 +13357,7 @@ msgstr "Неважећи захтев" msgid "Invalid Search Field {0}" msgstr "Неважеће поље претраге {0}" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "Неважећи назив поља табеле" @@ -13352,8 +13365,8 @@ msgstr "Неважећи назив поља табеле" msgid "Invalid Transition" msgstr "Неважеће транзиција" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13367,47 +13380,51 @@ msgstr "Неважеће корисничко име или лозинка за msgid "Invalid Values" msgstr "Неважеће вредности" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "Неважећа тајна за Webhook" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "Неважећа агрегатна функција" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "Неважећи формат псеудонима: {0}. Псеудоним мора бити једноставан идентификатор." -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "Неважећа апликација" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "Неважећи формат аргумента: {0}. Дозвољени су само наводницима обухваћени текстови или једноставни називи поља." -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "Неважећа врста аргумента: {0}. Дозвољени су текст, број и None." -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "Неважећи карактери у називу поља: {0}. Дозвољена су слова, бројеви и доње црте." -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "Неважећи карактери у називу табеле: {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "Неважећа колона" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "Неважећа врста услова у угњежденим филтерима: {0}" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "Неважећи смер у Сортирај по: {0}. Мора бити 'РАСТУЋЕ' или 'ОПАДАЈУЋЕ'." -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "Неважећи статус документа" @@ -13419,31 +13436,27 @@ msgstr "Неважећи израз постављен у филтеру {0}" msgid "Invalid expression set in filter {0} ({1})" msgstr "Неважећи израз постављен у филтеру {0} ({1})" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "Неважећи формат поља за SELECT: {0}. Називи поља морају бити једноставни, у оквиру backticks, са префиксом табеле, са псеудонимом или '*'." -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "Неважећи формат поља у {0}: {1}. Користите 'field', 'link_field.field', or 'child_table.field'." -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "Неважећи назив поља у функцији: {0}. Дозвољени су само једноставни називи поља." -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "Неважећи назив поља {0}" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "Неважећи назив поља: {0}" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "Неважећа врста поља: {0}" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "Неважећи назив поља '{0}' у аутоматском именовању" @@ -13451,11 +13464,11 @@ msgstr "Неважећи назив поља '{0}' у аутоматском и msgid "Invalid file path: {0}" msgstr "Неважећа путања фајла: {0}" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "Неважећи услов филтера: {0}. Очекивана је листа или tuple." -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "Неважећи формат поља за филтер: {0}. Користите 'fieldname' или 'link_fieldname.target_fieldname'." @@ -13463,20 +13476,28 @@ msgstr "Неважећи формат поља за филтер: {0}. Кори msgid "Invalid filter: {0}" msgstr "Неважећи филтер: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "Неважећа врста аргумента функције: {0}. Дозвољени су искључиво текстови, бројеви, листе и None." -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "Неважећи формат речника функције" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "Неважећи унос" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "Неважећи JSON додат у прилагођене опције: {0}" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "Неважећи кључ" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "Неважећа врста назива (цео број) за колону са називом типа варцхар" @@ -13484,6 +13505,10 @@ msgstr "Неважећа врста назива (цео број) за коло msgid "Invalid naming series {}: dot (.) missing" msgstr "Неважећа серија именовања {}: недостаје тачка (.)" +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "Неважећа серија именовања {}: недостаје тачка (.) пре резервисаних нумеричких карактера. Молимо Вас да користите формат попут ABCD.#####." + #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "Неважећи или оштећен садржај за увоз" @@ -13492,19 +13517,27 @@ msgstr "Неважећи или оштећен садржај за увоз" msgid "Invalid redirect regex in row #{}: {}" msgstr "Неважеће преусмерење регеx функције у реду #{}: {}" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "Неважећи аргументи захтева" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "Неважеће тело захтева" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "Неважећа улога" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "Неважећи једноставни формат филтера: {0}" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "Неважећи почетак услова за филтер: {0}. Очекивана је листа или tuple." -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "Неважећи формат текстуалног израза: {0}" @@ -13512,7 +13545,7 @@ msgstr "Неважећи формат текстуалног израза: {0}" msgid "Invalid template file for import" msgstr "Неважећи фајл шаблона за увоз" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "Неважеће стање токена! Проверите да ли је токен креиран од стране OAuth корисника." @@ -13521,20 +13554,20 @@ msgstr "Неважеће стање токена! Проверите да ли msgid "Invalid username or password" msgstr "Неважеће корисничко име или лозинка" -#: frappe/model/naming.py:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "Неважећа вредност за UUID: {}" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "Неважеће вредности за поља:" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "Неважећа верзија wкхтмлтопдф" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "Неважећи услов за {0}" @@ -13543,10 +13576,47 @@ msgstr "Неважећи услов за {0}" msgid "Inverse" msgstr "Обрнуто" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "Позивница је већ прихваћена" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "Позивница већ постоји" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "Позивница се не може отказати" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "Позивница је отказана" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "Позивница је истекла" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "Позивница није пронађена" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "Позивница за придруживање {0} је отказана" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "Позивница за придруживање {0} је истекла" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "Позови као корисника" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "Позван од стране" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "Јесте" @@ -13571,7 +13641,7 @@ msgstr "Календар и гантограм" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "Зависна табела" @@ -13624,6 +13694,10 @@ msgstr "Датотека" msgid "Is Global" msgstr "Глобално" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Група" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13650,8 +13724,13 @@ msgstr "Опционо стање" msgid "Is Primary" msgstr "Примарно" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "Примарна адреса" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 msgid "Is Primary Contact" msgstr "Примарни контакт" @@ -13682,7 +13761,7 @@ msgstr "Јавно" msgid "Is Published Field" msgstr "Објављено поље" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "Објављено поље мора бити важећи назив поља" @@ -13707,7 +13786,7 @@ msgstr "Да ли је поставка завршена?" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "Јединствени запис" @@ -13743,7 +13822,7 @@ msgstr "Стандардно" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "Могуће поднети" @@ -13807,7 +13886,7 @@ msgstr "Врста ставке" #: frappe/utils/nestedset.py:229 msgid "Item cannot be added to its own descendants" -msgstr "Ставке не може бити додата својим потомцима" +msgstr "Ставка не може бити додата својим потомцима" #. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json @@ -13949,11 +14028,11 @@ msgstr "Колона Канбан табле" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "Назив Канбан табле" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Канбан подешавање" @@ -13974,12 +14053,14 @@ msgstr "Евидентира сву комуникацију" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -14241,7 +14322,7 @@ msgstr "Ознака је обавезна" msgid "Landing Page" msgstr "Циљна страница" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "Пејзажни" @@ -14249,10 +14330,13 @@ msgstr "Пејзажни" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Језик" @@ -14340,8 +14424,12 @@ msgstr "Прошли месец" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "Презиме" @@ -14356,6 +14444,11 @@ msgstr "Датум последњег ресетовања лозинке" msgid "Last Quarter" msgstr "Прошли квартал" +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "Последњи пут примљено у" + #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json @@ -14372,11 +14465,6 @@ msgstr "Последње покретање" msgid "Last Sync On" msgstr "Последња синхронизација" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "Последња синхронизација у" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14463,7 +14551,7 @@ 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" @@ -14487,7 +14575,7 @@ msgstr "Дужина" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "Дужина прослеђеног низа података већа је од максималног дозвољеног броја поена за ознаке!" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "Дужина поља {0} мора бити између 1 и 1000" @@ -14536,8 +14624,8 @@ 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:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14565,7 +14653,7 @@ msgstr "Назив заглавља" msgid "Letter Head Scripts" msgstr "Скрипте за заглавље" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "Заглавље не може бити и онемогућено и подразумевано" @@ -14582,7 +14670,7 @@ msgstr "Заглавље у HTML-у" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "Ниво" @@ -14632,20 +14720,6 @@ msgstr "Светла тема" msgid "Like" msgstr "Лајк" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "Лимит за лајкове" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "Лимит лајкова по часу" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "Лајк на {0}: {1}" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "Лајковано" @@ -14686,6 +14760,7 @@ msgstr "Линијски" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14699,6 +14774,7 @@ msgstr "Линијски" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "Линк" @@ -14829,10 +14905,15 @@ msgstr "Повезано" msgid "Linked With" msgstr "Повезано са" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +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 (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14840,6 +14921,7 @@ msgstr "Повезано са" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "Линкови" @@ -14881,7 +14963,7 @@ msgstr "Филтер листе" msgid "List Settings" msgstr "Подешавање листе" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Подешавање листе" @@ -14922,7 +15004,7 @@ msgstr "Листа извршених закрпа" msgid "List setting message" msgstr "Порука подешавања листе" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "Листе" @@ -14931,9 +15013,8 @@ msgstr "Листе" msgid "Load Balancing" msgstr "Балансирање оптерећења" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Учитај више" @@ -14950,10 +15031,10 @@ msgstr "Учита више" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "Учитавање" @@ -14963,9 +15044,9 @@ msgstr "Учитавање филтера..." #: frappe/core/doctype/data_import/data_import.js:257 msgid "Loading import file..." -msgstr "Учитвање фајлова за увоз..." +msgstr "Учитавање фајлова за увоз..." -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "Учитавање верзија..." @@ -14975,7 +15056,7 @@ msgstr "Учитавање верзија..." #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "Учитавање..." @@ -15036,7 +15117,7 @@ msgstr "Пријавите се да бисте приступили овој с msgid "Log out" msgstr "Ођавите се" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "Ођављени сте" @@ -15096,7 +15177,7 @@ msgstr "Верификациони код за пријаву од {}" msgid "Login and view in Browser" msgstr "Пријавите се и погледајте у интернет претраживачу" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "Пријављивање је неопходно да бисте видели листу веб-образаца. Омогућите {0} да бисте видели подешавања листе" @@ -15104,7 +15185,7 @@ msgstr "Пријављивање је неопходно да бисте вид msgid "Login link sent to your email" msgstr "Линк за пријављивање је послат на Вашу имејл адресу" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "Пријављивање тренутно није дозвољено" @@ -15157,9 +15238,9 @@ msgstr "Пријављивање путем линка из имејла" msgid "Login with email link expiry (in minutes)" msgstr "Истицање линка за пријављивање (у минутима)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." -msgstr "Пријављивање путем корисничком имена и лозинке није дозвољена." +msgstr "Пријављивање путем корисничког имена и лозинке није дозвољено." #: frappe/www/login.html:100 msgid "Login with {0}" @@ -15176,7 +15257,7 @@ msgstr "Лого URI" msgid "Logout" msgstr "Одјава" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "Одјава из свих сесија" @@ -15280,7 +15361,10 @@ msgid "Major" 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 +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "Омогући \"назив\" доступним за претрагу у глобалној претрази" @@ -15356,7 +15440,7 @@ msgstr "Обавезно зависи од" msgid "Mandatory Depends On (JS)" msgstr "Обавезно зависи од (JS)" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "Недостају обавезни подаци:" @@ -15368,15 +15452,15 @@ msgstr "Обавезно поље: постави улогу за" msgid "Mandatory field: {0}" msgstr "Обавезно поље: {0}" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "Обавезна поља су неопходна у табели {0}, ред {1}" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "Обавезна поља су неопходна у {0}" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "Обавезна поља су неопходна:" @@ -15457,10 +15541,8 @@ msgid "Mark as Unread" msgstr "Означи као непрочитано" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15541,7 +15623,13 @@ msgstr "Максимална величина прилога" msgid "Max auto email report per user" msgstr "Максималан број аутоматских извештаја по кориснику" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "Максималан број пријављивања по сату" + +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "Максимална ширина за врсту валуте је 100 пиксела у реду {0}" @@ -15550,20 +15638,15 @@ msgstr "Максимална ширина за врсту валуте је 100 msgid "Maximum" msgstr "Максимално" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "Достигнут је максимални број прилога од {0} за {1} {2}." -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "Максималан број поља" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "Достигнут је максимални број прилога од {0}." -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "Дозвољено је највише {0} редова" @@ -15579,7 +15662,7 @@ msgstr "Значење опција поднеси, откажи, измени" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15592,7 +15675,7 @@ msgstr "Средње" msgid "Meeting" msgstr "Састанак" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "Испуњава услов?" @@ -15633,7 +15716,7 @@ msgstr "Мени" msgid "Merge with existing" msgstr "Споји са постојећим" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "Спајање је могуће само између групе и групе или чвора и чвора" @@ -15659,7 +15742,7 @@ msgstr "Спајање је могуће само између групе и г #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15699,7 +15782,7 @@ msgstr "Порука послата" msgid "Message Type" msgstr "Врста поруке" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "Порука је скраћена" @@ -15731,29 +15814,21 @@ msgstr "Поруке" msgid "Meta" msgstr "Мета" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "Мета опис" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "Мета слика" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "Мета ознаке" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "Мета наслов" @@ -15806,7 +15881,7 @@ msgstr "Метода" msgid "Method Not Allowed" msgstr "Метода није дозвољена" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "Метода је неопходна да би се креирала бројчана картица" @@ -15822,6 +15897,11 @@ msgstr "Центрирано" msgid "Middle Name" msgstr "Средње име" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "Средње име (опционо)" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15888,11 +15968,11 @@ msgstr "Пропуштено" msgid "Missing DocType" msgstr "Недостајући DocType" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "Недостајуће поље" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "Недостајућа поља" @@ -15928,15 +16008,16 @@ msgstr "Мобилни" msgid "Mobile No" msgstr "Број мобилног телефона" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "Број мобилног телефона" + #. Label of the modal_trigger (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Modal Trigger" msgstr "Покретач модалног прозора" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "Измењено од стране" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15957,7 +16038,7 @@ msgstr "Измењено од стране" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -16133,10 +16214,12 @@ msgstr "Више информација" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Више информација" @@ -16155,7 +16238,7 @@ msgstr "Додатни садржај за дно странице." msgid "Most Used" msgstr "Највише коришћено" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "Вероватно је Ваша лозинка предугачка." @@ -16166,7 +16249,7 @@ msgstr "Вероватно је Ваша лозинка предугачка." msgid "Move" msgstr "Премести" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "Премести у" @@ -16202,7 +16285,7 @@ msgstr "Премести одељке у нову картицу" msgid "Move the current field and the following fields to a new column" msgstr "Премести тренутно поље и следећа поља у нову колону" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "Премести на број реда" @@ -16229,7 +16312,7 @@ msgstr "Госпођа" msgid "Ms" msgstr "Госпођица" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "Више коренских чворова није дозвољено." @@ -16252,7 +16335,7 @@ msgstr "Мора бити затворен у '()' и укључивати '{0}' msgid "Must be of type \"Attach Image\"" msgstr "Мора бити врсте \"Приложи слику\"" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "Мора имати дозволу за извештај да би приступио овом извештају." @@ -16270,7 +16353,7 @@ msgid "Mx" msgstr "Mx" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16278,7 +16361,7 @@ msgstr "Мој налог" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:57 msgid "My Device" -msgstr "Мој уређан" +msgstr "Мој уређај" #: frappe/public/js/frappe/ui/apps_switcher.js:71 msgid "My Workspaces" @@ -16308,9 +16391,9 @@ msgstr "НАПОМЕНА: Овај оквир ће бити уклоњен. Мо #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16320,11 +16403,11 @@ msgstr "Назив" msgid "Name (Doc Name)" msgstr "Назив (Документа)" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "Назив је већ заузет, молимо Вас да поставите нови назив" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "Назив не може садржати специјалне карактере као што је {0}" @@ -16336,7 +16419,7 @@ msgstr "Назив врсте документа (DocType) са којим же msgid "Name of the new Print Format" msgstr "Назив новог формата за штампање" -#: frappe/model/naming.py:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "Назив {0} не може бити {1}" @@ -16377,7 +16460,7 @@ msgstr "Правило именовања" msgid "Naming Series" msgstr "Серија именовања" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "Серија именовања је обавезна" @@ -16414,12 +16497,12 @@ msgstr "Шаблон навигационе траке" msgid "Navbar Template Values" msgstr "Вредности шаблона навигационе траке" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Помери листу према доле" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Помери листу према горе" @@ -16434,7 +16517,11 @@ msgstr "Иди на главни садржај" msgid "Navigation Settings" msgstr "Подешавање навигације" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "Треба Вам помоћ?" + +#: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "Неопходна је улога менаџера радног простора да бисте уређивали приватни радни простор других корисника" @@ -16442,7 +16529,7 @@ msgstr "Неопходна је улога менаџера радног про msgid "Negative Value" msgstr "Негативна вредност" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "Угњеждени филтери морају бити предати као листа или tuple." @@ -16455,6 +16542,12 @@ msgstr "Грешка у угњежденом сету. Молимо Вас да msgid "Network Printer Settings" msgstr "Подешавање мрежног штампача" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +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 @@ -16463,7 +16556,7 @@ msgstr "Подешавање мрежног штампача" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16484,10 +16577,6 @@ msgstr "Нова адреса" msgid "New Chart" msgstr "Нови графикон" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "Нови коментар на {0}: {1}" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "Нови контакт" @@ -16496,8 +16585,8 @@ msgstr "Нови контакт" msgid "New Custom Block" msgstr "Нови прилагођени блок" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" msgstr "Нови прилагођени формат штампе" @@ -16528,7 +16617,7 @@ msgstr "Нови догађај" msgid "New Folder" msgstr "Нова датотека" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "Нова Канбан табла" @@ -16563,12 +16652,12 @@ msgstr "Нова бројчана картица" msgid "New Onboarding" msgstr "Нова уводна обука" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "Нова лозинка" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "Нови назив формата штампе" @@ -16577,7 +16666,7 @@ msgstr "Нови назив формата штампе" msgid "New Quick List" msgstr "Нова брза листа" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "Нови назив извештаја" @@ -16595,8 +16684,8 @@ msgstr "Нова пречица" msgid "New Users (Last 30 days)" msgstr "Нови корисници (претходних 30 дана)" -#: frappe/core/doctype/version/version_view.html:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "Нова вредност" @@ -16655,13 +16744,13 @@ msgstr "Нова вредност треба да буде постављена" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "Нови {0}" @@ -16677,7 +16766,7 @@ msgstr "Нови {0} {1} додат у контролну таблу {2}" msgid "New {0} {1} created" msgstr "Нови {0} {1} креиран" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "Нови {0}: {1}" @@ -16685,7 +16774,7 @@ msgstr "Нови {0}: {1}" msgid "New {} releases for the following apps are available" msgstr "Нови {} верзије за следеће апликација су доступне" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "Новокреирани корисник {0} нема омогућене улоге." @@ -16698,7 +16787,7 @@ msgstr "Менаџер билтена" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16805,14 +16894,15 @@ msgstr "Следеће на клик" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Не" @@ -16862,6 +16952,10 @@ msgstr "Нема имејл налога" msgid "No Email Accounts Assigned" msgstr "Ниједан имејл налог није додељен" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "Поље за имејл није пронађено у {0}" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "Нема имејлова" @@ -16897,15 +16991,15 @@ msgstr "Ниједан LDAP корисник није пронађен за им msgid "No Label" msgstr "Нема ознаке" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: frappe/public/js/frappe/list/bulk_operations.js:98 #: frappe/public/js/frappe/list/bulk_operations.js:170 #: frappe/utils/weasyprint.py:52 msgid "No Letterhead" msgstr "Нема заглавља" -#: frappe/model/naming.py:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "Није наведен назив за {0}" @@ -16913,7 +17007,7 @@ msgstr "Није наведен назив за {0}" msgid "No New notifications" msgstr "Нема нових обавештења" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "Дозволе нису наведене" @@ -16933,17 +17027,17 @@ msgstr "Нема дозвољених графикона на контролно msgid "No Preview" msgstr "Нема прегледа" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "Преглед није доступан" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "Ниједан штампач није доступан." #: frappe/core/doctype/rq_worker/rq_worker_list.js:3 msgid "No RQ Workers connected. Try restarting the bench." -msgstr "Нема повезани RQ Workers. Покушајте да рестартујете bench." +msgstr "Нема повезаних RQ Workers. Покушајте да рестартујете bench." #: frappe/public/js/frappe/form/link_selector.js:135 msgid "No Results" @@ -16953,11 +17047,11 @@ msgstr "Нема резултата" msgid "No Results found" msgstr "Ниједан резултат није пронађен" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "Улоге нису наведене" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "Није пронађено поље за избор" @@ -16965,7 +17059,7 @@ msgstr "Није пронађено поље за избор" msgid "No Suggestions" msgstr "Нема предлога" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "Нема ознака" @@ -16977,7 +17071,7 @@ msgstr "Нема предстојећих догађаја" msgid "No address added yet." msgstr "Ниједна адреса још увек није додата." -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "Нема упозорења за данас" @@ -17005,23 +17099,19 @@ msgstr "Нема промена за синхронизацију" msgid "No changes to update" msgstr "Нема промена за ажурирање" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "Још увек нема коментара" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " -msgstr "Још увек нема коментара. " +msgid "No comments yet." +msgstr "Још увек нема коментара." #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." -msgstr "Ниједан контакт није још увек додат." +msgstr "Нема додатих контакта." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "Ниједан контакт није повезан са документом" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "Нема података за извоз" @@ -17037,11 +17127,15 @@ msgstr "Нису пронађени документи са ознаком {0}" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "Ниједан имејл налог није повезан са корисником. Молимо Вас да додате налогу у оквиру Корисник > Пријемна пошта имејла." +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "Није пронађена имејл адреса за позивање" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "Нема неуспешних евиденција" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "Није пронађено поље које може бити коришћено као Канбан колона. Користите прилагоди образац да бисте додали прилагођено поље врсте \"Избор\"." @@ -17065,7 +17159,7 @@ msgstr "Нема додатних записа" msgid "No matching records. Search something new" msgstr "Нема одговарајућих записа. Покушајте другачију претрагу" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "Нема више ставки за приказ" @@ -17109,7 +17203,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "Не постоји дозвола за '{0}' {1}" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "Не постоји дозвола за читање {0}" @@ -17121,7 +17215,7 @@ msgstr "Не постоји дозвола за {0} {1} {2}" msgid "No records deleted" msgstr "Ниједан запис није обрисан" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "Ниједан запис није доступан у {0}" @@ -17137,7 +17231,7 @@ msgstr "Ниједан запис неће бити извезен" msgid "No rows" msgstr "Нема редова" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "Нема наслова" @@ -17157,11 +17251,11 @@ msgstr "Нема {0}" msgid "No {0} Found" msgstr "Није пронађен ниједан {0}" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "Није пронађен ниједан {0}" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "Нема {0} који одговарају филтерима. Очистите филтере да видите све {0}." @@ -17170,7 +17264,7 @@ msgid "No {0} mail" msgstr "Нема {0} поште" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "Бр." @@ -17213,7 +17307,7 @@ msgstr "Нормализоване копије" msgid "Normalized Query" msgstr "Нормализовани упити" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "Није дозвољено" @@ -17234,7 +17328,7 @@ msgstr "Нису потомци од" msgid "Not Equals" msgstr "Није једнако" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "Није пронађено" @@ -17260,20 +17354,19 @@ msgstr "Није повезани ни са једним записом" msgid "Not Nullable" msgstr "Не може бити празно" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "Није дозвољено" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "Није дозвољено за читање {0}" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17282,10 +17375,10 @@ msgstr "Није објављено" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "Није сачувано" @@ -17317,7 +17410,7 @@ msgstr "Неважећи Comma Separated Value (CSV фајл)" msgid "Not a valid User Image." msgstr "Неважећа слика корисника." -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "Неважећа радња радног тока" @@ -17333,11 +17426,11 @@ msgstr "Није активно" msgid "Not allowed for {0}: {1}" msgstr "Није дозвољено за {0}: {1}" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "Није дозвољено приложити документа врсте {0}, молимо Вас да омогућите Дозволи штампу за {0} у подешавањима штампе" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "Није дозвољено креирање прилагођеног виртуелног DocType-а." @@ -17361,27 +17454,27 @@ msgstr "Није пронађено" msgid "Not in Developer Mode" msgstr "Није у развојном режиму" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "Није у развојном режиму! Поставите у ситецонфиг.јсон или направите 'Прилагођени' DocType." -#: frappe/core/doctype/system_settings/system_settings.py:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Није дозвољено" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "Није дозвољено за преглед {0}" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17416,7 +17509,7 @@ msgstr "Напомена: За најбоље резултате, слике м msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "Напомена: Вишеструке сесије ће бити дозвољене на мобилним уређајима" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "Напомена: Ово ће бити подељено са корисником." @@ -17440,10 +17533,9 @@ msgstr "Нема више ставки за понављање" msgid "Nothing left to undo" msgstr "Нема више ставки за опозив" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "Нема ничега за приказивање" @@ -17489,15 +17581,15 @@ msgstr "Документ на који је корисник претплаће msgid "Notification sent to" msgstr "Обавештење послато ка" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "Обавештење: купац {0} нема подешен број мобилног телефона" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "Обавештење: документ {0} нема подешен {1} број (поље: {2})" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "Обавештење: корисник {0} нема подешен број мобилног телефона" @@ -17548,7 +17640,7 @@ msgstr "Обавести уколико није одговорено (у мин msgid "Notify users with a popup when they log in" msgstr "Обавести кориснике путем искачућег прозора када се пријаве" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "Сада" @@ -17604,14 +17696,14 @@ 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:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "Број поља за приложене фајлове је већи од {}, ограничење је ажурирано на {}." -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "Број резервних копија мора бити већи од нуле." @@ -17720,11 +17812,11 @@ msgstr "Апликација за једнократну лозинку" msgid "OTP Issuer Name" msgstr "Назив издаваоца једнократне лозинке" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "Ресетовање тајне за једнократну лозинку - {0}" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "Тајна за једнократну лозинку је ресетована. Поновна регистрација биће неопходна приликом следећег пријављивања." @@ -17843,7 +17935,7 @@ msgstr "На или након" msgid "On or Before" msgstr "На или пре" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "На {0}, {1} је написао/ла:" @@ -17883,7 +17975,7 @@ msgstr "Уводна обука завршена" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "Једном када су поднети, документи који се могу поднети не могу се мењати. Могу се само отказати или изменити." @@ -17909,7 +18001,7 @@ msgstr "Дозвољено је искључиво 200 уноса по захт #: frappe/email/doctype/email_queue/email_queue.py:87 msgid "Only Administrator can delete Email Queue" -msgstr "Искључиво администратор може обрисати имејл чекање" +msgstr "Искључиво администратор може обрисати ред чекања имејлова" #: frappe/core/doctype/page/page.py:66 msgid "Only Administrator can edit" @@ -17928,7 +18020,7 @@ msgstr "Искључиво администратор може да корист msgid "Only Allow Edit For" msgstr "Дозволи уређивање само за" -#: frappe/core/doctype/doctype/doctype.py:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "Једине опције дозвољене за поље података су:" @@ -17945,7 +18037,7 @@ msgstr "Искључиво менаџер радног простора може msgid "Only allowed to export customizations in developer mode" msgstr "Извоз прилагођавања је дозвољен само у развојном режиму" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "Искључиво нацрти докумената могу бити одбачени" @@ -17964,19 +18056,19 @@ msgstr "Искључиво су обавезна поља неопходна з msgid "Only one {0} can be set as primary." msgstr "Може бити постављен само један {0} као примарни." -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "Могу се брисати само извештаји креирани помоћу уређивача извештаја" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "Могу се уређивати само извештаји креирани помоћу уређивача извештаја" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Само стандардни DocType-ови могу бити прилагођени путем поља прилагоди образац." -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "Искључиво администратор може обрисати стандардни DocType." @@ -18046,7 +18138,7 @@ msgstr "Отвори референтни документ" msgid "Open Settings" msgstr "Отвори подешавања" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "Апликације отвореног кода за веб" @@ -18064,7 +18156,7 @@ msgstr "Отвори дијалог са обавезним пољима за б msgid "Open a module or tool" msgstr "Отвори модул или алат" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "Отвори конзолу" @@ -18072,7 +18164,7 @@ msgstr "Отвори конзолу" msgid "Open in a new tab" msgstr "Отвори у новој картици" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Отворене ставке" @@ -18087,13 +18179,13 @@ msgstr "Отвори апликацију за аутентификацију н #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "Отвори {0}" @@ -18102,6 +18194,10 @@ msgstr "Отвори {0}" msgid "OpenID Configuration" msgstr "OpenID конфигурација" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "OpenID конфигурација је успешно преузета!" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" @@ -18117,7 +18213,7 @@ msgstr "Отворено" msgid "Operation" msgstr "Операција" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "Оператор мора бити један од следећих {0}" @@ -18143,7 +18239,7 @@ msgstr "Опција 2" msgid "Option 3" msgstr "Опција 3" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "Опција {0} за поље {1} није зависна табела" @@ -18163,6 +18259,7 @@ msgstr "Опционо: Упозорење ће бити послато укол #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -18171,11 +18268,12 @@ msgstr "Опционо: Упозорење ће бити послато укол #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "Опције" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "Опција 'Динамички линк' мора да показује на друго линк поље чије су опције 'DocType'" @@ -18184,7 +18282,7 @@ msgstr "Опција 'Динамички линк' мора да показуј msgid "Options Help" msgstr "Помоћ за опције" -#: frappe/core/doctype/doctype/doctype.py:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "Опције за поље оцењивања могу бити у распону од 3 до 10" @@ -18192,7 +18290,7 @@ msgstr "Опције за поље оцењивања могу бити у ра msgid "Options for select. Each option on a new line." msgstr "Опције за одабир. Свака опција у новом реду." -#: frappe/core/doctype/doctype/doctype.py:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 msgid "Options for {0} must be set before setting the default value." msgstr "Опције за {0} морају бити подешене пре него што се постави подразумевана вредност." @@ -18200,7 +18298,7 @@ msgstr "Опције за {0} морају бити подешене пре не msgid "Options is required for field {0} of type {1}" msgstr "Опције су неопходне за поље {0} врсте {1}" -#: frappe/model/base_document.py:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "Опције нису постављене за линк поље {0}" @@ -18216,7 +18314,7 @@ msgstr "Наранџаста" msgid "Order" msgstr "Редослед" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "Сортирај по мора бити текст" @@ -18232,12 +18330,12 @@ msgstr "Историја организације" msgid "Org History Heading" msgstr "Наслов историје организације" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "Оријентација" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "Оригинална вредност" @@ -18305,10 +18403,6 @@ msgstr "Резултат" msgid "Overview" msgstr "Преглед" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "Власник" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" @@ -18316,9 +18410,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:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "PDF" @@ -18359,11 +18453,11 @@ msgstr "Генерисање PDF-а није успело" msgid "PDF generation failed because of broken image links" msgstr "Генерисање PDF-а није успело због неисправних линкова ка сликама" -#: frappe/printing/page/print/print.js:616 +#: frappe/printing/page/print/print.js:656 msgid "PDF generation may not work as expected." msgstr "Генерисање PDF-а можда неће радити како је очекивано." -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:574 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "Штампање PDF-а путем опције \"Необрађена штампа\" није подржано." @@ -18535,7 +18629,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:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "Страна {0} од {1}" @@ -18562,7 +18656,7 @@ msgstr "Матични DocType" msgid "Parent Document Type" msgstr "Матична врста документа" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "Матична врста документа је неопходна за креирање бројчане картице" @@ -18579,11 +18673,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:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "Матично поље (стабло)" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "Матично поље мора бити важећи назив поља" @@ -18592,7 +18686,7 @@ msgstr "Матично поље мора бити важећи назив пољ msgid "Parent Label" msgstr "Матична ознака" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 msgid "Parent Missing" msgstr "Матични ентитет недостаје" @@ -18666,8 +18760,8 @@ msgstr "Пасиван" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18677,7 +18771,7 @@ msgstr "Пасиван" msgid "Password" msgstr "Лозинка" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "Имејл са лозинком послат" @@ -18690,7 +18784,7 @@ msgstr "Ресетовање лозинке" msgid "Password Reset Link Generation Limit" msgstr "Ограничење за генерисање линкова за ресетовање лозинке" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "Лозинка се не може филтрирати" @@ -18707,6 +18801,10 @@ msgstr "Лозинка за основни DN" msgid "Password is required or select Awaiting Password" msgstr "Лозинка је обавезна или изаберите Чека лозинку" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "Лозинка је важећа. 👍" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "Лозинка није унета у имејл налогу" @@ -18715,7 +18813,7 @@ msgstr "Лозинка није унета у имејл налогу" msgid "Password not found for {0} {1} {2}" msgstr "Лозинка није пронађена за {0} {1} {2}" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "Упутство за ресетовање лозинке је послато на имејл корисника {}" @@ -18723,19 +18821,19 @@ msgstr "Упутство за ресетовање лозинке је посл msgid "Password set" msgstr "Лозинка постављена" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "Величина лозинке премашује дозвољену границу" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." -msgstr "Величине лозинке премашује дозвољену границу." +msgstr "Дужина лозинке премашује дозвољену границу." #: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "Лозинке се не подударају" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "Лозинке се не подударају!" @@ -18757,7 +18855,7 @@ msgstr "Евиденција закрпа" #: frappe/modules/patch_handler.py:136 msgid "Patch type {} not found in patches.txt" -msgstr "Врста закрпе {} није пронађен у патцхес.тxт" +msgstr "Врста закрпе {} није пронађена у патцхес.тxт" #. Label of the path (Data) field in DocType 'API Request Log' #. Label of the path (Small Text) field in DocType 'Package Release' @@ -18805,10 +18903,12 @@ msgstr "Највећа искоришћеност меморије" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "На чекању" @@ -18884,7 +18984,7 @@ msgstr "Трајно поднети {0}?" msgid "Permanently delete {0}?" msgstr "Трајно обрисати {0}?" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "Грешка у дозволама" @@ -18944,16 +19044,16 @@ msgstr "Врста дозволе" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: frappe/core/page/permission_manager/permission_manager.js:221 #: frappe/core/workspace/users/users.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Permissions" msgstr "Дозволе" -#: frappe/core/doctype/doctype/doctype.py:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "Грешка у дозволама" @@ -19015,15 +19115,18 @@ msgstr "Захтев за преузимање личних података" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -19036,13 +19139,13 @@ msgstr "Телефон" msgid "Phone No." msgstr "Телефон бр." -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 msgid "Phone Number {0} set in field {1} is not valid." msgstr "Број телефона {0} постављен у пољу {1} није валидан." -#: frappe/public/js/frappe/form/print_utils.js:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "Изаберите колоне" @@ -19102,11 +19205,11 @@ msgstr "Молимо Вас да инсталирате ldap3 библиотек msgid "Please Set Chart" msgstr "Молимо Вас да поставите графикон" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "Молимо Вас да ажурирате SMS подешавања" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "Молимо Вас да додате наслов у Ваш имејл" @@ -19114,7 +19217,7 @@ msgstr "Молимо Вас да додате наслов у Ваш имејл" msgid "Please add a valid comment." msgstr "Молимо Вас да додате валидан коментар." -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "Молимо Вас да затражите од администратора да верификује Вашу регистрацију" @@ -19122,11 +19225,11 @@ msgstr "Молимо Вас да затражите од администрат msgid "Please attach a file first." msgstr "Молимо Вас да прво приложите фајл." -#: frappe/printing/doctype/letter_head/letter_head.py:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 msgid "Please attach an image file to set HTML for Footer." msgstr "Молимо Вас да приложите слику како бисте поставили HTML за подножје." -#: frappe/printing/doctype/letter_head/letter_head.py:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "Молимо Вас да приложите слику како бисте поставили HTML за заглавље." @@ -19134,19 +19237,15 @@ msgstr "Молимо Вас да приложите слику како бист msgid "Please attach the package" msgstr "Молимо Вас да приложите пакет" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "Молимо Вас да проверите URL за OpenID конфигурацију" - #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "Молимо Вас да проверите вредности филтера постављене за графикон за контролној табли: {}" -#: frappe/model/base_document.py:951 +#: frappe/model/base_document.py:1008 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "Молимо Вас да проверите вредности поља \"Преузми из\" постављених за поље {0}" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "Молимо Вас да проверите свој имејл за верификацију" @@ -19178,11 +19277,11 @@ msgstr "Молимо Вас да кликнете на следећи линк msgid "Please confirm your action to {0} this document." msgstr "Молимо Вас да потврдите своју радњу како бисте {0} овај документ." -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "Молимо Вас да контактирате систем менаџера како бисте инсталирали исправну верзију." -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "Молимо Вас да прво креирате картицу" @@ -19198,20 +19297,20 @@ msgstr "Молимо Вас да обришете поље из {0} или да msgid "Please do not change the template headings." msgstr "Молимо Вас да не мењате наслове шаблона." -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" -msgstr "Молимо Вас дуплирате ово како бисте направили измене" +msgstr "Молимо Вас да дуплирате ово како бисте направили измене" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "Молимо Вас да омогућите барем један кључ за пријављивање путем друштвених мрежа или LDAP или пријављивање путем имејл линка пре него што онемогућите пријаву помоћу корисничког имена и лозинке." #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "Молимо Вас да омогућите искачуће прозоре" @@ -19234,7 +19333,7 @@ msgstr "Молимо Вас да унесте URL токен за приступ #: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" -msgstr "Молимо Вас да унесете URL ауторизацију" +msgstr "Молимо Вас да унесете URL за ауторизацију" #: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" @@ -19248,7 +19347,7 @@ msgstr "Молимо Вас да унесете клијентски ИД пре msgid "Please enter Client Secret before social login is enabled" msgstr "Молимо Вас да унесте тајну клијента пре него што је пријављивање путем друштвених мрежа омогућено" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "Молимо Вас да унесете URL за OpenID конфигурацију" @@ -19285,11 +19384,12 @@ msgstr "Молимо Вас да унесете своју нову лозинк msgid "Please enter your old password." msgstr "Молимо Вас да унесете своју стару лозинку." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "У прилогу можете пронаћи {0}: {1}" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "Молимо Вас да се пријавите како бисте оставили коментар." @@ -19297,11 +19397,11 @@ msgstr "Молимо Вас да се пријавите како бисте о msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "Молимо Вас да се уверите да документи референтне комуникације нису кружно повезани." -#: frappe/model/document.py:988 +#: frappe/model/document.py:992 msgid "Please refresh to get the latest document." msgstr "Молимо Вас да освежите како бисте добили најновији документ." -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:575 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "Молимо Вас да уклоните мапирање штампача у подешавањима штампе и покушате поново." @@ -19317,7 +19417,7 @@ msgstr "Молимо Вас да сачувате документ пре дод msgid "Please save the document before removing assignment" msgstr "Молимо Вас да сачувате документ пре уклањања додељивања" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "Молимо Вас да прво сачувате извештај" @@ -19325,7 +19425,7 @@ msgstr "Молимо Вас да прво сачувате извештај" msgid "Please save to edit the template." msgstr "Молимо Вас да сачувате да бисте уредили овај шаблон." -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "Молимо Вас да прво изаберете DocType" @@ -19333,19 +19433,19 @@ msgstr "Молимо Вас да прво изаберете DocType" msgid "Please select Entity Type first" msgstr "Молимо Вас да прво изаберете врсту ентитета" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "Молимо Вас да одаберете минималну оцену јачине лозинке" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "Молимо Вас да изаберете X и Y поља" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "Молимо Вас да изаберете шифру државе за поље {1}." -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "Молимо Вас да прво изаберете фајл." @@ -19353,9 +19453,9 @@ msgstr "Молимо Вас да прво изаберете фајл." msgid "Please select a file or url" msgstr "Молим Вас да изаберете фајл или URL" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" -msgstr "Молимо Вас да изаберете важећи цсв фајл са подацима" +msgstr "Молимо Вас да изаберете важећи CSV фајл са подацима" #: frappe/utils/data.py:309 msgid "Please select a valid date filter" @@ -19365,7 +19465,7 @@ msgstr "Молимо Вас да изаберете важећи филтер д msgid "Please select applicable Doctypes" msgstr "Молимо Вас да изаберете примењиве DocType-ове" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Молимо Вас да изаберете барем 1 колону из {0} за сортирање/груписање" @@ -19391,11 +19491,11 @@ msgstr "Молимо Вас да изаберете {0}" msgid "Please set Email Address" msgstr "Молимо Вас да поставите имејл адресу" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:589 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "Молимо Вас да поставите мапирање штампача за овај формат штампе у подешавањима штампе" -#: frappe/public/js/frappe/views/reports/query_report.js:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "Молимо Вас да поставите филтере" @@ -19403,7 +19503,7 @@ msgstr "Молимо Вас да поставите филтере" msgid "Please set filters value in Report Filter table." msgstr "Молимо Вас да поставите вредности филтера у табели филтер извештаја." -#: frappe/model/naming.py:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "Молимо Вас да поставите назив документа" @@ -19415,7 +19515,7 @@ msgstr "Молимо Вас да прво поставите следећа до msgid "Please set the series to be used." msgstr "Молимо Вас да поставите серију која ће се користити." -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "Молимо Вас да поставите SMS пре него што га поставите као метод аутентификације, путем SMS подешавања" @@ -19439,23 +19539,23 @@ msgstr "Молимо Вас да наведете" msgid "Please specify a valid parent DocType for {0}" msgstr "Молимо Вас да наведете важећи матични DocType за {0}" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "Молимо Вас да наведете најмање 10 минута због учесталости покретања планера" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "Молимо Вас да наведете одступање и минутима" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "Молимо Вас да наведете које поље за датум мора бити проверено" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "Молимо Вас да наведете које поље за датум и време мора бити проверено" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "Молимо Вас да наведете које поље за вредност мора бити проверено" @@ -19476,7 +19576,7 @@ msgstr "Молимо Вас да користите важећи LDAP филте msgid "Please use following links to download file backup." msgstr "Молимо Вас да користите следеће линкове да преузмете резервну копију фајла." -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "Молимо Вас да посетите https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key за више информација." @@ -19530,7 +19630,7 @@ msgstr "Ставка менија портала" msgid "Portal Settings" msgstr "Подешавање портала" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "Портрет" @@ -19558,6 +19658,7 @@ msgstr "Адреса за пријем поште" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "Поштански број" @@ -19566,15 +19667,7 @@ msgstr "Поштански број" msgid "Posting Timestamp" msgstr "Време објаве" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "Објаве корисника {0}" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "Објаве у категорији {0}" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "Потенцијално опасан садржај у текстуалном изразу: {0}" @@ -19589,7 +19682,11 @@ msgstr "Потенцијално опасан садржај у текстуал msgid "Precision" msgstr "Прецизност" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "Прецизност ({0}) за {1} не може бити већа од његове дужине ({2})." + +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "Прецизност треба да буде између 1 и 6" @@ -19637,7 +19734,7 @@ msgstr "Аналитика припремљених извештаја" msgid "Prepared Report User" msgstr "Корисник припремљеног извештаја" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "Приказ припремљеног извештаја није успео" @@ -19645,7 +19742,7 @@ msgstr "Приказ припремљеног извештаја није усп msgid "Preparing Report" msgstr "Припрема извештаја" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "Додај шаблон на почетак имејл поруке" @@ -19666,7 +19763,7 @@ msgstr "Притисните Enter да сачувате" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19680,13 +19777,6 @@ msgstr "Преглед" msgid "Preview HTML" msgstr "Преглед HTML-а" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "Преглед слике" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19715,7 +19805,7 @@ msgid "Preview:" msgstr "Преглед:" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19727,12 +19817,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "Претходни" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "Претходни хеш" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "Претходно подношење" @@ -19778,19 +19863,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:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "Штампа" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Штампа" @@ -19808,8 +19893,8 @@ 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:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19860,7 +19945,7 @@ msgstr "Помоћ за формат штампе" msgid "Print Format Type" msgstr "Врста формата штампе" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "Формат штампе није пронађен" @@ -19899,7 +19984,7 @@ msgstr "Сакриј штампу уколико нема вредности" msgid "Print Language" msgstr "Језик штампе" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "Штампа је послата на штампач!" @@ -19916,8 +20001,8 @@ msgstr "Сервер за штампу" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "Подешавање штампе" @@ -19965,11 +20050,11 @@ msgstr "Штампа документа" msgid "Print with letterhead" msgstr "Штампа са заглављем" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "Штампач" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "Мапирање штампача" @@ -19979,11 +20064,11 @@ msgstr "Мапирање штампача" msgid "Printer Name" msgstr "Назив штампача" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "Подешавање штампача" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "Мапирање штампача није подешено." @@ -20041,7 +20126,7 @@ msgstr "Савет: Додаје Reference: {{ reference_doctype }} {{ ref msgid "Proceed" msgstr "Настави" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "Ипак настави" @@ -20062,18 +20147,28 @@ msgstr "Проф" msgid "Profile" msgstr "Профил" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "Профилна слика" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Профил је успешно ажуриран." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "Напредак" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: 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:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: 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/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "Својство" @@ -20110,7 +20205,7 @@ msgstr "Врста својства" msgid "Protect Attached Files" msgstr "Заштити приложене фајлове" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "Заштићени фајл" @@ -20159,24 +20254,18 @@ msgstr "Резервна копија јавних фајлова:" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "Објави" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -20186,15 +20275,6 @@ msgstr "Објави" msgid "Published" msgstr "Објављено" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "Објављено на" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "Објављено на" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json @@ -20239,7 +20319,7 @@ msgstr "Менаџер набавке" #. Name of a role #: frappe/contacts/doctype/contact/contact.json msgid "Purchase Master Manager" -msgstr "Главни менџер за набавку" +msgstr "Главни менаџер за набавку" #. Name of a role #: frappe/contacts/doctype/address/address.json @@ -20284,7 +20364,9 @@ msgid "Put on Hold" msgstr "Стави на чекање" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "Python" @@ -20296,9 +20378,9 @@ msgstr "QR код" msgid "QR Code for Login Verification" msgstr "QR код за верификацију пријављивања" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " -msgstr "QZ Tray неуспешно: " +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" +msgstr "QZ Tray неуспешно:" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' @@ -20347,7 +20429,7 @@ msgstr "Извештај по упиту" msgid "Query analysis complete. Check suggested indexes." msgstr "Анализа упита завршена. Погледајте предложене индексе." -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "Упит мора бити врсте SELECT или read-only WITH type." @@ -20447,7 +20529,7 @@ msgstr "Брзи филтер листе" msgid "Quick Lists" msgstr "Брза листа" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "Број понуда мора бити између 0 и 3" @@ -20484,12 +20566,6 @@ msgstr "Опсег" msgid "Rate Limiting" msgstr "Ограничење протока" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "Ограничење протока" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20509,7 +20585,7 @@ msgstr "Оцена" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "Необрађене команде" @@ -20526,7 +20602,7 @@ msgstr "Необрађени имејл" msgid "Raw Printing" msgstr "Необрађено штампање" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "Подешавање необрађеног штампања" @@ -20543,8 +20619,8 @@ msgid "Re:" msgstr "Re:" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "Re: {0}" @@ -20600,11 +20676,6 @@ msgstr "Искључиво за читање зависи од (JS)" msgid "Read Only Mode" msgstr "Режим искључиво за читање" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "Време читања" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20620,7 +20691,7 @@ msgstr "Прочитао прималац на" msgid "Read mode" msgstr "Режим читања" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "Прочитајте документацију за више информација" @@ -20640,11 +20711,11 @@ msgstr "У реалном времену (SocketIO)" msgid "Reason" msgstr "Разлог" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "Обнови" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "Обнови стабло" @@ -20682,7 +20753,7 @@ msgstr "Параметар примаоца" msgid "Recent years are easy to guess." msgstr "Недавне године се лако наслућују." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "Недавно" @@ -20693,6 +20764,14 @@ msgstr "Недавно" msgid "Recipient" msgstr "Прималац" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "Поље налога примаоца" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20725,7 +20804,7 @@ msgstr "Предложени индекси из алата за снимање" msgid "Records for following doctypes will be filtered" msgstr "Записи за следеће врсте докумената биће филтрирани" -#: frappe/core/doctype/doctype/doctype.py:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "Рекурзивно преузимање из" @@ -20742,6 +20821,11 @@ msgstr "Црвено" msgid "Redirect HTTP Status" msgstr "HTTP статус преусмеравања" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "Преусмери на путању" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20836,6 +20920,11 @@ msgstr "Датум референце" msgid "Reference Datetime" msgstr "Време и датум референце" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "Референца документа" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20863,7 +20952,6 @@ msgstr "Назив референтног документа" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20904,9 +20992,9 @@ msgstr "Назив референтног документа" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20924,9 +21012,9 @@ msgstr "Назив референтног документа" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20956,7 +21044,6 @@ msgstr "Врста референтног документа" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -21004,15 +21091,15 @@ msgstr "Референца: {0} {1}" msgid "Referrer" msgstr "Извор приступа" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Освежи" @@ -21026,6 +21113,10 @@ msgstr "Освежи све" msgid "Refresh Google Sheet" msgstr "Освежи Google Sheet" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "Освежи преглед штампе" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -21037,18 +21128,18 @@ msgstr "Освежи Google Sheet" msgid "Refresh Token" msgstr "Токен за освежавање" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "Освежавање" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "Освежавање..." -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "Регистровано, али онемогућено" @@ -21225,7 +21316,7 @@ msgstr "Преименуј назив поља" msgid "Rename {0}" msgstr "Преименуј {0}" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "Преименовани фајлови и замењени код у контролерима, молимо Вас проверите!" @@ -21356,9 +21447,9 @@ msgstr "Одговори свима" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "Извештај" @@ -21428,11 +21519,11 @@ 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:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "Назив извештаја" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "Назив извештаја, поље извештаја и функција су неопходни за креирање бројчане картице" @@ -21466,21 +21557,21 @@ msgstr "Приказ извештаја" msgid "Report bug" msgstr "Пријави грешку" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 msgid "Report cannot be set for Single types" msgstr "Извештај се може бити постављен за појединачне врсте" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 -#: frappe/desk/doctype/number_card/number_card.js:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "Извештај нема података, молимо Вас да измените филтере или промените назив извештаја" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 msgid "Report has no numeric fields, please change the Report Name" msgstr "Извештај нема нумеричких поља, молимо Вас да промените назив извештаја" -#: frappe/public/js/frappe/views/reports/query_report.js:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "Извештај је покренут, кликните да бисте погледали статус" @@ -21492,24 +21583,24 @@ msgstr "Достигнуто је ограничење извештаја" msgid "Report timed out." msgstr "Извештај је истекао." -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "Извештај је успешно ажуриран" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 msgid "Report was not saved (there were errors)" msgstr "Извештај није сачуван (догодиле су се грешке)" -#: frappe/public/js/frappe/views/reports/query_report.js:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "Извештај са више од 10 колона изгледа боље у пејзажном режиму." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "Извештај {0}" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "Извештај {0} је обрисан" @@ -21517,7 +21608,7 @@ msgstr "Извештај {0} је обрисан" msgid "Report {0} is disabled" msgstr "Извештај {0} је онемогућен" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "Извештај {0} је сачуван" @@ -21528,7 +21619,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:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "Извештаји" @@ -21536,7 +21627,7 @@ msgstr "Извештаји" msgid "Reports & Masters" msgstr "Извештаји и мастер подаци" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "Извештаји су већ у реду" @@ -21555,7 +21646,10 @@ msgid "Request Body" msgstr "Тело захтева" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "Подаци захтева" @@ -21607,6 +21701,11 @@ msgstr "Време за захтев је истекло" msgid "Request URL" msgstr "URL захтева" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "Захтев за брисање налога" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21622,7 +21721,7 @@ msgstr "Захтева поуздани сертификат" #. 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Requires any valid fdn path. i.e. ou=groups,dc=example,dc=com" -msgstr "Захтева било који важећу FDN путању, нпр. ou=groups,dc=example,dc=com" +msgstr "Захтева било коју важећу FDN путању, нпр. ou=groups,dc=example,dc=com" #. Description of the 'LDAP search path for Users' (Data) field in DocType #. 'LDAP Settings' @@ -21658,11 +21757,11 @@ msgstr "Ресетуј графикон" msgid "Reset Dashboard Customizations" msgstr "Ресетуј прилагођавања контролне табле" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "Ресетуј поља" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "Ресетуј LDAP лозинку" @@ -21670,11 +21769,11 @@ msgstr "Ресетуј LDAP лозинку" msgid "Reset Layout" msgstr "Ресетуј распоред" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "Ресетуј тајну једнократне лозинке" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21709,7 +21808,7 @@ msgstr "Врати на подразумевано" msgid "Reset sorting" msgstr "Ресетуј сортирање" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "Врати на подразумевано" @@ -21747,6 +21846,7 @@ msgid "Resource TOS URI" msgstr "URI услова коришћења ресурса" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21756,11 +21856,6 @@ msgstr "URI услова коришћења ресурса" msgid "Response" msgstr "Одговор" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "Одговор " - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21819,7 +21914,7 @@ msgstr "Ограничи на домен" msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)" msgstr "Ограничи корисника само са ове IP адресе. Више адреса се може унети раздвајањем зарезима. Прихваћене су и делимичне IP адресе, као што је (111.111.111)" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "Ограничења" @@ -21853,7 +21948,7 @@ msgstr "Врати се на екран за верификацију и уне msgid "Reverse Icon Color" msgstr "Обрни боју иконице" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "Враћање дужине на {0} за '{1}' у '{2}'. Постављање дужине на {3} ће скратити податке." @@ -21871,9 +21966,7 @@ msgstr "Опозови" msgid "Revoked" msgstr "Опозвано" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21902,7 +21995,7 @@ 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 @@ -21914,6 +22007,7 @@ msgstr "Robots.txt" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21927,6 +22021,7 @@ msgstr "Robots.txt" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21965,7 +22060,7 @@ msgstr "Дозволе улоге за страницу и извештај" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "Дозволе улога" @@ -21975,7 +22070,7 @@ msgstr "Дозволе улога" msgid "Role Permissions Manager" msgstr "Менаџер дозвола улога" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Менаџер дозвола улога" @@ -22018,6 +22113,7 @@ msgstr "Улога је постављена према врсти корисн #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -22027,6 +22123,7 @@ msgstr "Улога је постављена према врсти корисн #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -22063,7 +22160,7 @@ msgstr "HTML улогe" msgid "Roles can be set for users from their User page." msgstr "Улоге се не могу поставити корисницима са њихове странице корисника." -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "Коренски ентитет {0} не може бити обрисан" @@ -22083,8 +22180,6 @@ msgstr "Метод заокруживања" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -22096,8 +22191,6 @@ msgstr "Метод заокруживања" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -22122,24 +22215,24 @@ msgstr "Преусмеравање путање" msgid "Route: Example \"/app\"" msgstr "Путања: Пример \"/app\"" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "Ред" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "Ред #" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "Ред # {0}: Корисник који није администратор не може да постави улогу {1} у прилагођени доцтyпе" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "Ред #{0}:" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "Ред #{}: Назив поља је обавезан" @@ -22148,11 +22241,6 @@ msgstr "Ред #{}: Назив поља је обавезан" msgid "Row Format" msgstr "Формат реда" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "Индекс реда" - #. Label of the row_indexes (Code) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Row Indexes" @@ -22167,7 +22255,7 @@ msgstr "Назив реда" msgid "Row Number" msgstr "Број реда" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "Вредности у реду су измењене" @@ -22175,30 +22263,33 @@ msgstr "Вредности у реду су измењене" msgid "Row {0}" msgstr "Ред {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "Ред {0}: Није дозвољено онемогућити обавезно за стандардна поља" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "Ред {0}: Није дозвољено омогућити дозволу при подношењу за стандардна поља" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Added" msgstr "Редови додати" #. Label of the rows_removed_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "Редови уклоњени" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "Праг редова за претрагу у табели" @@ -22236,7 +22327,7 @@ 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 @@ -22289,7 +22380,7 @@ msgstr "SMS параметар" msgid "SMS Settings" msgstr "SMS подешавање" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "SMS је успешно послат" @@ -22315,7 +22406,7 @@ msgstr "SQL услови. Пример: status=\"Open\"" #: frappe/core/doctype/recorder/recorder.js:85 #: frappe/core/doctype/recorder_query/recorder_query.json msgid "SQL Explain" -msgstr "SQL објашењење" +msgstr "Објашњење SQL упита" #. Label of the sql_output (HTML) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json @@ -22367,7 +22458,7 @@ msgstr "Salesforce" msgid "Salutation" msgstr "Поздрав" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "Исти унос је унет више пута" @@ -22395,20 +22486,20 @@ msgstr "Субота" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22417,16 +22508,12 @@ msgstr "Субота" msgid "Save" msgstr "Сачувај" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "Сачувај API тајну: {0}" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "Ипак сачувај" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "Сачувај као" @@ -22434,11 +22521,11 @@ msgstr "Сачувај као" msgid "Save Customizations" msgstr "Сачувај прилагођавања" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "Сачувај извештај" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "Сачувај филтере" @@ -22463,7 +22550,7 @@ msgstr "Сачувано" msgid "Saved Filters" msgstr "Сачувани филтери" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22542,7 +22629,7 @@ msgstr "Врста заказаног задатка" msgid "Scheduled Jobs Logs" msgstr "Евиденције заказаних задатака" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "Заказано извршавање за скрипту {0} је ажурирано" @@ -22565,7 +22652,7 @@ msgstr "Планер" msgid "Scheduler Event" msgstr "Догађај планера" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "Планер је неактиван" @@ -22578,7 +22665,7 @@ msgstr "Статус планера" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "Планер се не може поново омогућити док је режим одржавања активан." -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "Планер је неактиван. Нема могућности увоза података." @@ -22710,7 +22797,7 @@ msgstr "Резултати претраге" msgid "Search by filename or extension" msgstr "Претрага по називу фајла или екстензији" -#: frappe/core/doctype/doctype/doctype.py:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "Поље за претрагу {0} није важеће" @@ -22742,7 +22829,7 @@ msgstr "Претражи или унеси команду ({0})" #: frappe/public/js/form_builder/components/SearchBox.vue:8 msgid "Search properties..." -msgstr "Својства претраге...." +msgstr "Својства претраге..." #: frappe/templates/includes/search_box.html:8 msgid "Search results for" @@ -22810,7 +22897,7 @@ msgstr "Подешавања безбедности" msgid "See all Activity" msgstr "Погледај све активности" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "Погледај све претходне извештаје." @@ -22819,7 +22906,7 @@ msgstr "Погледај све претходне извештаје." msgid "See on Website" msgstr "Погледај на веб-сајту" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "Погледај претходне одговоре" @@ -22866,7 +22953,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/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22874,28 +22961,28 @@ msgstr "Изабери" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "Изабери све" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "Изабери прилоге" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "Изабери зависну табелу" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 msgid "Select Column" msgstr "Изабери колону" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "Изабери колоне" @@ -22954,12 +23041,15 @@ msgstr "Изабери поље" msgid "Select Field..." msgstr "Изабери поље..." -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "Изабери поља" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "Изаберите поља (до {0})" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "Изабери поља за унос" @@ -22972,7 +23062,7 @@ msgstr "Изабери поља за ажурирање" msgid "Select Filters" msgstr "Изабери филтере" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "Изабери Google Calendar за синхронизацију догађаја." @@ -22982,7 +23072,7 @@ msgstr "Изабери Google Contacts за синхронизацију кон #: frappe/public/js/frappe/ui/group_by/group_by.html:10 msgid "Select Group By..." -msgstr "Изабери групиши по...." +msgstr "Изабери групиши по..." #: frappe/public/js/frappe/list/list_view_select.js:185 msgid "Select Kanban" @@ -23005,8 +23095,8 @@ msgstr "Изабери обавезно" msgid "Select Module" msgstr "Изабери модул" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "Изабери мрежни штампач" @@ -23068,17 +23158,17 @@ msgstr "Изабери DocType за креирање новог формата" #: frappe/public/js/form_builder/components/Sidebar.vue:56 msgid "Select a field to edit its properties." -msgstr "Изабери поље да би уредио његова својства." +msgstr "Изаберите поље да бисте уредили његова својства." #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "Изабери групни чвор." +msgid "Select a group {0} first." +msgstr "Најпре изаберите групу {0}." -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" msgstr "Изабери важеће поље пошиљаоца за креирање документа из имејла" -#: frappe/core/doctype/doctype/doctype.py:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 msgid "Select a valid Subject field for creating documents from Email" msgstr "Изабери важеће поље за наслов за креирање документа из мејла" @@ -23108,13 +23198,13 @@ msgstr "Изабери бар један запис за штампање" msgid "Select atleast 2 actions" msgstr "Изабери бар 2 радње" -#: frappe/public/js/frappe/list/list_view.js:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Изабери ставку из листе" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Изабери више ставки из листе" @@ -23148,7 +23238,7 @@ msgstr "Изабери две верзије за приказ разлика." msgid "Select {0}" msgstr "Изаберите {0}" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "Самопотврда није дозвољена" @@ -23243,7 +23333,7 @@ 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 @@ -23332,7 +23422,7 @@ msgstr "Имејл пошиљаоца" msgid "Sender Email Field" msgstr "Поље за имејл пошиљаоца" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "Поље пошиљаоца треба да има имејл међу опцијама" @@ -23426,7 +23516,7 @@ msgstr "Серија ажурирана за {}" msgid "Series counter for {} updated to {} successfully" msgstr "Бројач серије за {} је успешно ажуриран на {}" -#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "Серија {0} је већ искоришћена у {1}" @@ -23436,7 +23526,7 @@ msgstr "Серија {0} је већ искоришћена у {1}" msgid "Server Action" msgstr "Серверска радња" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Серверска грешка" @@ -23455,7 +23545,7 @@ msgstr "ИП адреса сервера" msgid "Server Script" msgstr "Серверска скрипта" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "Серверска скрипта је онемогућена. Молимо Вас да је омогућите у конфигурацији командне линије." @@ -23502,7 +23592,7 @@ msgstr "Подразумеване вредности сесије" msgid "Session Defaults Saved" msgstr "Подразумеване вредности сесије су сачуване" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "Сесија је истекла" @@ -23511,14 +23601,14 @@ msgstr "Сесија је истекла" msgid "Session Expiry (idle timeout)" msgstr "Истек сесије (време неактивности)" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "Истек сесије мора бити у формату {0}" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "Постави" @@ -23541,15 +23631,15 @@ msgstr "Постави графикон" #. Description of the 'Chart Options' (Code) field in DocType 'Dashboard' #: frappe/desk/doctype/dashboard/dashboard.json msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"])" -msgstr "Постави подразумевана опције за све графиконе на овој контролној табли (Пример: \"боје\": [\"#d1d8dd\", \"#ff5858\"])" +msgstr "Постави подразумеване опције за све графиконе на овој контролној табли (Пример: \"боје\": [\"#d1d8dd\", \"#ff5858\"])" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "Постави динамичке филтере" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23560,7 +23650,7 @@ msgstr "Постави филтере" msgid "Set Filters for {0}" msgstr "Постави филтере за {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "Постави ниво" @@ -23614,7 +23704,7 @@ msgstr "Постави количину" msgid "Set Role For" msgstr "Постави улогу за" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Постави корисничке дозволе" @@ -23624,16 +23714,16 @@ msgstr "Постави корисничке дозволе" msgid "Set Value" msgstr "Постави вредност" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "Постави све као приватно" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "Постави све као јавно" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "Постави као подразумевано" @@ -23652,18 +23742,21 @@ msgstr "Постављено од стране корисника" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "Овде поставите динамичке вредности филтера у JavaScript-у за неопходна поља." -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "Поставите нестандардну прецизност за поље са децималним бројем или валутом" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "Подесите нестандардну прецизност за поља врсте децимални број, валута или проценат" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23672,7 +23765,7 @@ msgstr "Постави само једном" #. Description of the 'Max attachment size' (Int) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Set size in MB" -msgstr "Постави величну у MB" +msgstr "Постави величину у MB" #. Description of the 'Filters Configuration' (Code) field in DocType 'Number #. Card' @@ -23779,14 +23872,9 @@ msgstr "Подешавање за страницу контактирајте н msgid "Settings for the About Us Page" msgstr "Подешавање за страницу о нама" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "Подешавања за управљање категоријама блога и интеракцијама као што су коментари и лајкови" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "Поставке" @@ -23802,8 +23890,8 @@ msgstr "Поставке > Корисник" msgid "Setup > User Permissions" msgstr "Поставке > Корисничке дозволе" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "Поставке аутоматског имејла" @@ -23872,11 +23960,6 @@ msgstr "Адреса за испоруку" msgid "Shop" msgstr "Продавница" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "Надимак" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "Кратки обрасци на тастатури се лако наслућују" @@ -23896,11 +23979,6 @@ msgstr "Пречице" msgid "Show" msgstr "Прикажи" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "Прикажи \"Позив на радњу\" у блогу" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23953,7 +24031,13 @@ msgstr "Прикажи документ" msgid "Show Error" msgstr "Прикажи грешку" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "Прикажи упозорење за екстерне линкове" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "Прикажи назив поља (кликни за копирање)" @@ -24081,7 +24165,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "Прикажи кључ за пријављивање путем друштвених мрежа као ауторизациони сервер" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "Прикажи ознаке" @@ -24098,7 +24182,7 @@ msgstr "Прикажи наслов" msgid "Show Title in Link Fields" msgstr "Прикажи наслов у пољима за линк" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "Прикажи укупне вредности" @@ -24138,10 +24222,6 @@ msgstr "Прикажи све верзије" msgid "Show all activity" msgstr "Прикажи све активности" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "Прикажи све блогове" - #. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" @@ -24190,8 +24270,8 @@ msgstr "Прикажи линк ка документу" msgid "Show list" msgstr "Прикажи листу" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "Прикажи више детаља" @@ -24220,7 +24300,7 @@ msgstr "Прикажи наслов у интернет претраживачу msgid "Show {0} List" msgstr "Прикажи листу {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "Приказ само нумеричких поља из извештаја" @@ -24255,7 +24335,7 @@ msgstr "Бочна трака и коментари" msgid "Sign Up and Confirmation" msgstr "Регистрација и потврда" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "Регистрација је онемогућена" @@ -24292,36 +24372,36 @@ msgstr "Регистрација онемогућена" msgid "Signups have been disabled for this website." msgstr "Регистрација је онемогућена за овај веб-сајт." -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "Једноставни пyтхон израз, пример: Статус ин (\"Затворено\", \"Отказано\")" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" -msgstr "Једноставни пyтхон израз, пример: статус ин (\"Неважеће\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "Једноставни python израз, пример: status == \"Invalid\"" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" -msgstr "Једноставни пyтхон израз, пример: status == 'Open' and type == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "Једноставни python израз, пример: status == 'Open' and issue_type == 'Bug'" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" +msgstr "Једноставни python израз, пример: status in (\"Closed\", \"Cancelled\")" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "Истовремене сесије" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "Јединствени DocType-ови се не могу прилагођавати." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Јединствене врсте имају само један запис, без повезаних табела. Вредности се чувају у табели tabSingles" @@ -24329,7 +24409,7 @@ msgstr "Јединствене врсте имају само један зап msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "Страница је у режиму искључиво за читање због одржавања или ажурирања странице, ова радња се тренутно не може извршити. Молимо Вас да покушате поново касније." -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "Величина" @@ -24548,11 +24628,11 @@ msgstr "Дошло је до грешке приликом генерисања msgid "Something went wrong." msgstr "Дошло је до грешке." -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 msgid "Sorry! I could not find what you were looking for." msgstr "Опростите! Нисам могао да пронађем оно што сте тражили." -#: frappe/public/js/frappe/views/pageview.js:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "Опростите! Немате дозволу да прегледате ову страницу." @@ -24583,20 +24663,23 @@ msgstr "Опције сортирања" msgid "Sort Order" msgstr "Редослед сортирања" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 msgid "Sort field {0} must be a valid fieldname" msgstr "Поље за сортирање {0} мора бити важећи назив поља" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' -#: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "Извор" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "Изворни код" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24606,7 +24689,7 @@ msgstr "Назив извора" #: frappe/core/doctype/translation/translation.json #: frappe/public/js/frappe/views/translation_manager.js:38 msgid "Source Text" -msgstr "Тескст извора" +msgstr "Изворни текст" #: frappe/public/js/frappe/views/workspace/blocks/spacer.js:23 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:174 @@ -24623,6 +24706,12 @@ msgstr "Нежељено" msgid "SparkPost" msgstr "SparkPost" +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "Покреће радње у позадинском задатку" + #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "Специјални карактери нису дозвољени" @@ -24647,8 +24736,8 @@ msgstr "Одредите домене или порекла која имају msgid "Splash Image" msgstr "Спласх слика" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "Ср" @@ -24680,11 +24769,11 @@ msgstr "Stack Trace" msgid "Standard" msgstr "Стандардно" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "Стандардни DocType не може бити обрисан." -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "Стандардни DocType не може имати подразумевани формат штампе, користите поље прилагоди образац" @@ -24696,7 +24785,7 @@ msgstr "Стандардно није постављено" msgid "Standard Permissions" msgstr "Стандардне дозволе" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "Стандардни формат штампе не може бити ажуриран" @@ -24704,11 +24793,11 @@ msgstr "Стандардни формат штампе не може бити а msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "Стандардни стил штампе не може да се мења. Молимо Вас да направите дупликат да бисте уредили." -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "Стандардни извештаји не могу бити обрисани" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "Стандардни извештаји се не могу уредити" @@ -24740,8 +24829,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:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "Почетак" @@ -24749,7 +24838,7 @@ msgstr "Почетак" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24814,6 +24903,7 @@ msgstr "Почиње у" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24822,7 +24912,7 @@ msgstr "Почиње у" msgid "State" msgstr "Стање" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "Својства стања" @@ -24878,6 +24968,7 @@ msgstr "Временски интервал статистике" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24902,6 +24993,7 @@ msgstr "Временски интервал статистике" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24909,8 +25001,8 @@ msgstr "Временски интервал статистике" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24947,7 +25039,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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "Прикачен" @@ -24977,6 +25069,10 @@ msgstr "Искоришћеност простора по табелама" msgid "Store Attached PDF Document" msgstr "Спреми приложени PDF документ" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +msgstr "Сачувајте API тајну на сигурном месту. Неће бити више приказивана." + #. 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." @@ -25055,7 +25151,7 @@ msgstr "Поддомен" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -25071,7 +25167,7 @@ msgstr "Наслов" msgid "Subject Field" msgstr "Поље за наслов" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "Врста поља за наслов треба да буде податак, текст, дужи текст, краћи текст, уређивач текста" @@ -25085,6 +25181,7 @@ msgstr "Ред чекања за подношење" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -25093,10 +25190,11 @@ msgstr "Ред чекања за подношење" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "Поднеси" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Поднеси" @@ -25106,7 +25204,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Поднеси" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Поднеси" @@ -25130,7 +25228,7 @@ msgstr "Поднеси након увоза" msgid "Submit an Issue" msgstr "Пријави проблем" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "Поднеси још један одговор" @@ -25142,7 +25240,7 @@ msgstr "Ознака дугмета за подношење" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "Поднеси приликом креирања" @@ -25154,7 +25252,7 @@ msgstr "Поднесите овај документ да бисте заврш msgid "Submit this document to confirm" msgstr "Поднесите овај документ да бисте потврдили" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Поднеси {0} докумената?" @@ -25163,11 +25261,11 @@ msgstr "Поднеси {0} докумената?" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "Поднето" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "Поднети документ се не може вратити у нацрт. Ред транзиције {0}" @@ -25190,9 +25288,7 @@ msgid "Subsidiary" msgstr "Подружница" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "Поднаслов" @@ -25206,7 +25302,7 @@ msgstr "Поднаслов" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25248,20 +25344,16 @@ msgstr "Порука о успеху" msgid "Success title" msgstr "Наслов успеха" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "Успешно! Спремни сте за наставак 👍" - #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" msgstr "Број успешних задатака" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "Успешне трансакције" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "Успешно: {0} до {1}" @@ -25303,7 +25395,7 @@ msgstr "Предложи оптимизације" msgid "Suggested Indexes" msgstr "Предложи индексе" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "Предложено корисничко име: {0}" @@ -25425,7 +25517,7 @@ msgstr "Синхронизовање" msgid "Syncing {0} of {1}" msgstr "Синхронизовање {0} од {1}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "Грешка у синтакси" @@ -25548,6 +25640,7 @@ msgstr "Евиденције система" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25630,6 +25723,7 @@ msgstr "Евиденције система" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" msgstr "Систем менаџер" @@ -25703,7 +25797,7 @@ msgstr "Табела" msgid "Table Break" msgstr "Прелом табеле" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "Поље табеле" @@ -25712,7 +25806,7 @@ msgstr "Поље табеле" msgid "Table Fieldname" msgstr "Назив поља табеле" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "Назив поља табеле недостаје" @@ -25734,11 +25828,11 @@ msgstr "Вишеструки одабир у табели" msgid "Table Trimmed" msgstr "Скраћена табела" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "Табела ажурирана" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 msgid "Table {0} cannot be empty" msgstr "Табела {0} не може бити празна" @@ -25780,11 +25874,18 @@ msgstr "Направи фотографију" msgid "Target" msgstr "Циљ" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "Задатак" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "Задаци" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25846,7 +25947,7 @@ msgstr "Упозорења у шаблону" msgid "Templates" msgstr "Шаблони" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "Привремено онемогућено" @@ -25916,11 +26017,11 @@ msgstr "Хвала Вам" msgid "Thank you for reaching out to us. We will get back to you at the earliest.\n\n\n" "Your query:\n\n" "{0}" -msgstr "Хвала Вам што сте нас контактирали. Јавићемо Вам се у најкраћем могућем року.\n\n\n" +msgstr "Хвала Вам што сте нас контактирали. Одговорићемо Вам у најкраћем могућем року.\n\n\n" "Ваше питање:\n\n" "{0}" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "Хвала Вам што сте издвојили своје драгоцене време да попуните овај образац" @@ -25944,7 +26045,7 @@ msgstr "Хвала" msgid "The Auto Repeat for this document has been disabled." msgstr "Аутоматско понављање за овај документ је онемогућено." -#: frappe/public/js/frappe/form/grid.js:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "CSV формат разликује велика и мала слова" @@ -25957,15 +26058,15 @@ msgstr "ИД клијента добијен путем Google Cloud конзо "\"APIs & Services\" > \"Credentials\"\n" "" -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "Услов '{0}' је неважећи" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "Унета URL адреса фајла није исправна" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." msgstr "Следећи планирани датум не може бити после датума завршетка." @@ -26008,7 +26109,7 @@ msgstr "Промене су враћене на претходно стање." msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "Колона {0} садржи {1} различитих формата датума. Аутоматски се поставља {2} као подразумевани формат јер је најчешћи. Молимо Вас да промените остале вредности у овој колони у овај формат." -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "Коментар не може бити празан" @@ -26016,7 +26117,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:658 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "Приказан број процена. Кликните овде да видите тачан број." @@ -26046,7 +26147,7 @@ msgstr "Изабрана врста документа је зависна та msgid "The field {0} is mandatory" msgstr "Поље {0} је обавезно" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "Назив поља које сте навели у приложено уз поље није важеће" @@ -26118,15 +26219,19 @@ msgstr "Број пројекта добијен путем Google Cloud кон "\"IAM & Admin\" > \"Settings\"\n" "" -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +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:1000 msgid "The reset password link has been expired" msgstr "Линк за ресетовање лозинке је истекао" -#: frappe/core/doctype/user/user.py:995 +#: frappe/core/doctype/user/user.py:1002 msgid "The reset password link has either been used before or is invalid" msgstr "Линк за ресетовање лозинке је већ коришћен или је неважећи" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "Ресурс који тражите није доступан" @@ -26138,7 +26243,7 @@ msgstr "Улога {0} треба да буде прилагођена улог msgid "The selected document {0} is not a {1}." msgstr "Изабрани документ {0} није {1}." -#: frappe/utils/response.py:338 +#: frappe/utils/response.py:336 msgid "The system is being updated. Please refresh again after a few moments." msgstr "Систем се ажурира. Молимо Вас да освежите страницу за неколико тренутака." @@ -26159,7 +26264,7 @@ msgstr "Унета вредност има {0} карактера. Максим msgid "The webhook will be triggered if this expression is true" msgstr "Webhook ће бити активиран уколико је овај израз тачан" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "{0} је већ постављен на аутоматско понављање {1}" @@ -26199,16 +26304,16 @@ 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:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "Већ постоји {0} са истим филтерима у реду чекања:" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "У веб-обрасцу може бити највише 9 поља за прелом странице" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "Може постојати само једно преклапање у обрасцу" @@ -26220,15 +26325,19 @@ msgstr "Дошло је до грешке у шаблону адресе {0}" msgid "There is no data to be exported" msgstr "Нема података за извоз" +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "Не постоји задатак под називом \"{}\"" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "Тренутно нема ничег новог да се прикаже." -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "Дошло је до проблема са URL адресом фајла: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "Већ постоји {0} са истим филтерима у реду чекања:" @@ -26240,7 +26349,7 @@ msgstr "Мора постојати барем једно правило доз msgid "There was an error building this page" msgstr "Дошло је до грешке приликом изградње ове странице" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "Дошло је до грешке приликом чувања филтера" @@ -26252,11 +26361,11 @@ msgstr "Дошло је до грешака" msgid "There were errors while creating the document. Please try again." msgstr "Дошло је до грешака приликом креирања документа. Молимо Вас да покушате поново." -#: frappe/public/js/frappe/views/communication.js:840 +#: frappe/public/js/frappe/views/communication.js:843 msgid "There were errors while sending email. Please try again." msgstr "Дошло је до грешке приликом слања имејла. Молимо Вас да покушате поново." -#: frappe/model/naming.py:494 +#: frappe/model/naming.py:502 msgid "There were some errors setting the name, please contact the administrator" msgstr "Дошло је до грешака приликом постављања назива, молимо Вас да контактирате администратора" @@ -26297,7 +26406,7 @@ msgstr "Аутентификација путем екстерних аплик msgid "This Currency is disabled. Enable to use in transactions" msgstr "Ова валута је онемогућена. Омогућите је да бисте је користили у трансакцијама" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "Ова Канбан табла ће бити приватна" @@ -26305,6 +26414,10 @@ msgstr "Ова Канбан табла ће бити приватна" msgid "This Month" msgstr "Овај месец" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "Овај PDF не може бити отпремљен јер садржи небезбедан садржај." + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "Овај квартал" @@ -26330,6 +26443,11 @@ msgstr "Ова радња је дозвољена само за {}" msgid "This cannot be undone" msgstr "Ово се не може опозвати" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +msgstr "Ова картица је подразумевано видљива само администратору и систем менаџерима. Подесите DocType да је делите са корисницима који имају право читања." + #. 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" @@ -26344,11 +26462,11 @@ msgstr "Овај графикон ће бити доступан свим кор msgid "This doctype has no orphan fields to trim" msgstr "Овај доцтyпе нема неповезаних поља која треба уклонити" -#: frappe/core/doctype/doctype/doctype.py:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "Овај доцтyпе има неизвршене миграције, покрените 'bench migrate' пре измене како бисте избегли губитак измена." -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "Овај документ се не може тренутно обрисати јер га други корисник уређује. Покушајте поново касније." @@ -26394,7 +26512,7 @@ msgstr "Ово поље ће се приказати само уколико п "eval:doc.myfield=='My Value'\n" "eval:doc.age>18" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "Овај фајл је приложен у заштићени документ и не може се обрисати." @@ -26410,7 +26528,7 @@ msgstr "Овај фајл је јаван. Може му се приступит msgid "This form has been modified after you have loaded it" msgstr "Овај образац је измењен након што је учитан" -#: frappe/public/js/frappe/form/form.js:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "Овај образац није могуће уредити због радног тока." @@ -26429,7 +26547,7 @@ msgstr "Овај провајдер геолокације још увек ни msgid "This goes above the slideshow." msgstr "Ово се приказује изнад презентације." -#: frappe/public/js/frappe/views/reports/query_report.js:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "Ово је извештај који се генерише у позадини. Поставите одговарајуће филтере и затим генеришите нови извештај." @@ -26453,12 +26571,6 @@ msgstr "Ово је виртуелни доцтyпе и подаци се пер msgid "This is an automatically generated reply" msgstr "Ово је аутоматски генерисан одговор" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "Ово је пример Google SERP прегледа." - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "Ово је слично често коришћеној лозинки." @@ -26477,7 +26589,7 @@ msgstr "Овај линк је већ активиран за верификац msgid "This link is invalid or expired. Please make sure you have pasted correctly." msgstr "Овај линк је неважећи или је истекао. Проверите да ли сте га исправно унели." -#: frappe/printing/page/print/print.js:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "Ово може бити одштампано на више страница" @@ -26485,7 +26597,7 @@ msgstr "Ово може бити одштампано на више страни msgid "This month" msgstr "Овај месец" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "Овај извештај садржи {0} редова и превелики је за приказ у интернет претраживачу, уместо тога можете га {1}." @@ -26493,7 +26605,7 @@ msgstr "Овај извештај садржи {0} редова и превел msgid "This report was generated on {0}" msgstr "Овај извештај је генерисан на {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "Овај извештај је генерисан {0}." @@ -26524,8 +26636,8 @@ msgstr "Ова вредност је преузета из поља {1} обје #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " -msgstr "Ова вредност одређује максималан број редова који се могу приказати у приказу извештаја. " +msgid "This value specifies the max number of rows that can be rendered in report view." +msgstr "Ова вредност одређује максималан број редова који се могу приказати у приказу извештаја." #: frappe/website/doctype/web_page/web_page.js:85 msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish" @@ -26556,10 +26668,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "Ово ће ресетовати обилазак и приказати је свим корисницима. Да ли сте сигурни?" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " -msgstr "Ово ће тренутно прекинути задатак и може бити ризично, да ли сте сигурни? " +msgid "This will terminate the job immediately and might be dangerous, are you sure?" +msgstr "Ово ће тренутно прекинути задатак и може бити ризично, да ли сте сигурни?" -#: frappe/core/doctype/user/user.py:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "Загушено" @@ -26635,9 +26747,11 @@ msgstr "Временски прозор (у секундама)" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26708,11 +26822,11 @@ msgstr "Линкови временског редоследа" msgid "Timeline Name" msgstr "Назив временског редоследа" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 msgid "Timeline field must be a Link or Dynamic Link" msgstr "Поље временског редоследа мора бити линк или динамички линк" -#: frappe/core/doctype/doctype/doctype.py:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "Поље временског редоследа мора бити важећи назив поља" @@ -26738,10 +26852,7 @@ msgid "Timespan" msgstr "Временски опсег" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "Временски жиг" @@ -26761,9 +26872,6 @@ msgstr "Савет: Испробајте нови падајући мени за #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26788,9 +26896,6 @@ msgstr "Савет: Испробајте нови падајући мени за #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26813,7 +26918,7 @@ msgstr "Поље за наслов" msgid "Title Prefix" msgstr "Префикс наслова" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "Поље за наслов мора бити важећи назив поља" @@ -26913,7 +27018,7 @@ msgstr "Да бисте извршили извоз овог корака као msgid "To generate password click {0}" msgstr "За генерисање лозинке кликните {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "За ажурирани извештај кликните на {0}." @@ -26968,7 +27073,7 @@ msgstr "За урадити" msgid "Today" msgstr "Данас" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "Пребаци графикон" @@ -26984,11 +27089,11 @@ msgstr "Пребаци у приказ мреже" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "Пребаци бочну траку" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Пребаци бочну траку" @@ -27034,7 +27139,7 @@ msgid "Tomorrow" msgstr "Сутра" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "Превише докумената" @@ -27050,7 +27155,7 @@ msgstr "Превише промена базе податка у једној р msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "Превише задатака у позадини у реду чекања ({0}). Молимо Вас да покушате поново касније." -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "Превише корисника се регистровало у последње време, стога је регистрација привремено онемогућена. Покушајте поново за сат времена" @@ -27112,10 +27217,10 @@ msgstr "Горе десно" msgid "Topic" msgstr "Тема" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "Укупно" @@ -27158,18 +27263,18 @@ msgstr "Укупно време рада" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " -msgstr "Укупан број имејл порука за синхронизацију током почетног процеса " +msgid "Total number of emails to sync in initial sync process" +msgstr "Укупан број имејл порука за синхронизацију током почетног процеса" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "Укупно:" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "Укупно" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "Укупно редова" @@ -27237,26 +27342,10 @@ msgstr "Прати кључне тачке документа" msgid "Tracking" msgstr "Праћење" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "URL за праћење је генерисан и копиран у међуспремник" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "Хеш трансакције" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "Евиденција трансакције" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "Извештај о евиденцији трансакције" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "Трансродно" @@ -27270,10 +27359,15 @@ msgstr "Својства транзиције" msgid "Transition Rules" msgstr "Правила транзиције" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +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' @@ -27284,7 +27378,7 @@ msgstr "Транизиција" msgid "Translatable" msgstr "Могуће превођење" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "Преведи податке" @@ -27295,7 +27389,7 @@ msgstr "Преведи податке" msgid "Translate Link Fields" msgstr "Преведи поља са линковима" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "Преведи вредности" @@ -27379,8 +27473,8 @@ msgstr "Покушајте поново" msgid "Try a Naming Series" msgstr "Испробајте серију именовања" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "Испробајте нови дизајнер штампе" @@ -27446,7 +27540,7 @@ msgstr "Метод двофакторске аутентификације" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27540,7 +27634,7 @@ msgstr "URL" msgid "URL for documentation or help" msgstr "URL за документацију или помоћ" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "URL мора почети са http:// или https://" @@ -27643,7 +27737,7 @@ msgstr "Није могуће послати имејл због недоста msgid "Unable to update event" msgstr "Није могуће ажурирати догађај" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "Није могуће уписати формат фајла за {0}" @@ -27652,7 +27746,7 @@ msgstr "Није могуће уписати формат фајла за {0}" msgid "Unassign Condition" msgstr "Уклони додељивање услова" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "Неухваћени изузетак" @@ -27668,7 +27762,7 @@ msgstr "Поништи" msgid "Undo last action" msgstr "Поништи последњу радњу" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "Наводници нису правилно избегнути у текстуалном изразу: {0}" @@ -27717,7 +27811,7 @@ msgstr "Непозната колона: {0}" msgid "Unknown Rounding Method: {}" msgstr "Непознат метод заокруживања: {}" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "Непознати корисник" @@ -27729,8 +27823,7 @@ msgstr "Непознато форматирање фајла. Покушано msgid "Unlock Reference Document" msgstr "Откључај референтни документ" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "Повуци са објаве" @@ -27746,7 +27839,7 @@ msgstr "Непрочитано" msgid "Unread Notification Sent" msgstr "Послата обавештења о непрочитаним" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "Несигуран SQL упит" @@ -27784,8 +27877,8 @@ msgstr "Параметри отказивања претплате" msgid "Unsubscribed" msgstr "Отказана претплата" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "Неподржана функција или неисправан назив поља: {0}" @@ -27805,7 +27898,7 @@ msgstr "Издвојени {0} фајлови" msgid "Unzipping files..." msgstr "Издвајање фајлова..." -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "Предстојећи догађаји за данас" @@ -27819,7 +27912,7 @@ msgstr "Предстојећи догађаји за данас" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Ажурирај" @@ -27853,6 +27946,11 @@ msgstr "Ажурирај редослед" msgid "Update Password" msgstr "Ажурирај лозинку" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "Ажурирај профил" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27895,7 +27993,7 @@ msgstr "Ажурирај {0} записа" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "Ажурирано" @@ -27903,7 +28001,7 @@ msgstr "Ажурирано" msgid "Updated Successfully" msgstr "Успешно ажурирано" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "Ажурирано на нову верзију 🎉" @@ -27911,7 +28009,7 @@ msgstr "Ажурирано на нову верзију 🎉" msgid "Updated successfully" msgstr "Успешно ажурирано" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "Ажурирање" @@ -27956,8 +28054,8 @@ msgstr "Надоградња плана" msgid "Upgrade your support experience with Frappe Helpdesk" msgstr "Надоградите Ваше искуство подршке са Frappe Helpdesk" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27967,11 +28065,11 @@ msgstr "Отпреми" msgid "Upload Image" msgstr "Отпреми слику" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "Отпреми фајл" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "Отпреми {0} фајлова" @@ -28068,15 +28166,11 @@ msgstr "Користите други ИД имејла" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "Користите уколико подразумевана подешавања не препознају тачно Ваше податке" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "Коришћење функције {0} у пољу је ограничено" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "Коришћење подупита или функције је ограничено" -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "Користите нови алат за креирање формата за штампу" @@ -28097,7 +28191,9 @@ msgid "Used OAuth" msgstr "Коришћен OAuth" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -28106,6 +28202,7 @@ msgstr "Коришћен OAuth" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -28120,11 +28217,12 @@ msgstr "Коришћен OAuth" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -28133,6 +28231,7 @@ msgstr "Коришћен OAuth" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -28149,17 +28248,11 @@ msgstr "Коришћен OAuth" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "Корисник" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "Корисник " - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "Корисник '{0}' већ има улогу '{1}'" @@ -28189,7 +28282,7 @@ msgstr "Корисник не може да креира" msgid "User Cannot Search" msgstr "Корисник не може да претражује" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "Корисник промењен" @@ -28253,11 +28346,6 @@ msgstr "ИД корисника" msgid "User ID Property" msgstr "Својство ИД корисника" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "ИД корисника блогера" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28277,6 +28365,11 @@ msgstr "Поље ИД корисника је обавезно за врсту msgid "User Image" msgstr "Слика корисника" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "Позивница кориснику" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "Мени корисника" @@ -28295,12 +28388,12 @@ msgstr "Корисничка дозвола" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "Корисничке дозволе" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Корисничке дозволе" @@ -28313,7 +28406,9 @@ msgstr "Корисничке дозволе се користе за огран msgid "User Permissions created successfully" msgstr "Корисничке дозволе су успешно креиране" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "Улога корисника" @@ -28379,6 +28474,10 @@ msgstr "Корисник не постоји." msgid "User does not have permission to create the new {0}" msgstr "Корисник нема дозволу да креира нови {0}" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "Корисник је онемогућен" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "Корисник је обавезан за дељење" @@ -28409,7 +28508,7 @@ msgstr "Корисник {0} не може бити обрисан" msgid "User {0} cannot be disabled" msgstr "Корисник {0} не може бити онемогућен" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "Корисник {0} не може бити преименован" @@ -28430,7 +28529,7 @@ msgstr "Корисник {0} нема дозволу да креира радн msgid "User {0} has requested for data deletion" msgstr "Корисник {0} је затражио брисање података" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "Корисник {0} се представља као {1}" @@ -28438,7 +28537,7 @@ msgstr "Корисник {0} се представља као {1}" msgid "User {0} is disabled" msgstr "Корисник {0} је онемогућен" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "Корисник {0} је онемогућен. Молимо Вас да контактирате систем менаџера." @@ -28459,7 +28558,7 @@ msgstr "URI са подацима о кориснику" msgid "Username" msgstr "Корисничко име" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "Корисничко име {0} већ постоји" @@ -28543,7 +28642,7 @@ msgstr "Валидирај Frappe подешавање имејла" msgid "Validate SSL Certificate" msgstr "Валидирај SSL сертификат" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "Грешка при валидацији" @@ -28566,8 +28665,8 @@ msgstr "Важење" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28599,7 +28698,7 @@ msgstr "Вредност промењена" msgid "Value To Be Set" msgstr "Вредност коју треба поставити" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "Вредност се не може променити за {0}" @@ -28615,11 +28714,11 @@ msgstr "Вредност не може бити негативна за {0}: {1} msgid "Value for a check field can be either 0 or 1" msgstr "Вредност за поље избора може бити само 0 или 1" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "Вредност за поље {0} у {1} је предугачка. Дужина треба да буде мања од {2} карактера" -#: frappe/model/base_document.py:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "Вредност за {0} не може бити листа" @@ -28644,7 +28743,7 @@ msgstr "Вредност \"None\" указује на јавног клијен msgid "Value to Validate" msgstr "Вредност за валидацију" -#: frappe/model/base_document.py:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "Вредност је превелика" @@ -28661,7 +28760,7 @@ msgstr "Вредност {0} мора бити у важећем формату msgid "Value {0} must in {1} format" msgstr "Вредност {0} мора бити у {1} формату" -#: frappe/core/doctype/version/version_view.html:8 +#: frappe/core/doctype/version/version_view.html:9 msgid "Values Changed" msgstr "Промењене вредности" @@ -28674,7 +28773,7 @@ msgstr "Вердана" msgid "Verification" msgstr "Верификација" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "Верификациони код" @@ -28736,15 +28835,7 @@ msgstr "Прикажи све" msgid "View Audit Trail" msgstr "Прикажи историју измена" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "Прикажи блог објаву" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "Прикажи коментар" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "Прикажи DocType дозволе" @@ -28756,7 +28847,7 @@ msgstr "Прикажи фајл" msgid "View Full Log" msgstr "Прикажи целу евиденцију" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "Прикажи листу" @@ -28766,7 +28857,7 @@ msgstr "Прикажи листу" msgid "View Log" msgstr "Прикажи евиденцију" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Прикажи дозвољена документа" @@ -28813,7 +28904,7 @@ msgstr "Прикажи извештај у интернет претражива msgid "View this in your browser" msgstr "Прикажи ово у интернет претраживачу" -#: frappe/public/js/frappe/web_form/web_form.js:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "Прикажите Ваш одговор" @@ -28882,15 +28973,16 @@ msgid "Warehouse" msgstr "Складиште" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Упозорење" #: frappe/custom/doctype/customize_form/customize_form.js:217 msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" -msgstr "Упозорење: ГУБИТАК ПОДАТАКА НЕИЗБЕЖАН! Наставак ће трајно обрисати следеће колоне базе податак из DocType-а {0}:" +msgstr "Упозорење: ГУБИТАК ПОДАТАКА НЕИЗБЕЖАН! Наставак ће трајно обрисати следеће колоне базе података из DocType-а {0}:" -#: frappe/core/doctype/doctype/doctype.py:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "Упозорење: Именовање није постављено" @@ -28976,7 +29068,7 @@ msgstr "Веб-страница" msgid "Web Page Block" msgstr "Блок веб-странице" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "URL веб-странице" @@ -29079,7 +29171,7 @@ msgstr "URL Webhook-а" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "Веб-сајт" @@ -29092,10 +29184,6 @@ msgstr "Аналитика веб-сајта" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -29139,7 +29227,7 @@ msgstr "Скрипта веб-сајта" msgid "Website Search Field" msgstr "Поље за претрагу на веб-сајту" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "Поље за претрагу на веб-сајту мора бити важећи назив поља" @@ -29343,7 +29431,7 @@ msgstr "Ширина" #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:2 msgid "Widths can be set in px or %." -msgstr "Ширине могу биди подешене у пикселима или процентима." +msgstr "Ширине могу бити подешене у пикселима или процентима." #. Label of the wildcard_filter (Check) field in DocType 'Report Filter' #: frappe/core/doctype/report_filter/report_filter.json @@ -29356,11 +29444,6 @@ msgstr "Филтер са заменским симболом" msgid "Will add \"%\" before and after the query" msgstr "Додаће \"%\" пре и после упита" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "Биће коришћено у URL (обично име)." - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "Биће Ваш ИД за пријављивање" @@ -29375,7 +29458,7 @@ msgstr "Биће приказано само уколико су наслови msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "Планирани задаци ће се извршавати само једном дневно за неактивне сајтове. Поставите на 0 да бисте избегли аутоматско искључивање планера." -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "Са заглављем" @@ -29453,7 +29536,7 @@ msgstr "Уређивач радног тока Вам дозвољава да в msgid "Workflow Data" msgstr "Подаци радног тока" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "Детаљи радног тока" @@ -29479,11 +29562,11 @@ msgstr "Стање радног тока" msgid "Workflow State Field" msgstr "Поље стања радног тока" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "Стање радног тока није постављено" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "Транзиција стања радног тока није дозвољена са {0} на {1}" @@ -29491,15 +29574,30 @@ msgstr "Транзиција стања радног тока није дозв msgid "Workflow States Don't Exist" msgstr "Стања радног тока не постоје" -#: frappe/model/workflow.py:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "Статус радног тока" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "Задатак радног тока" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "Транзиција радног тока" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "Транзициони задатак радног тока" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "Транзициони задаци радног тока" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29515,13 +29613,13 @@ msgstr "Радни ток је успешно ажуриран" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "Радни простор" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "Радни простор {0} не постоји" @@ -29591,11 +29689,11 @@ msgstr "Радни простор {0} је креиран" msgid "Workspaces" msgstr "Радни простори" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "Да ли желите да објавите овај коментар? Ово значи да ће постати видљив корисницима веб-сајта/портала." -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "Да ли желите да повучете овај коментар? Ово значи да више неће бити видљив корисницима веб-сајта/портала." @@ -29614,11 +29712,11 @@ msgstr "Завршавање" msgid "Write" msgstr "Измена" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "Погрешна вредност у пољу преузми из" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "Поље X осе" @@ -29637,13 +29735,13 @@ msgstr "XLSX" msgid "Y Axis" msgstr "Y оса" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" msgstr "Поље Y осе" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "Y поље" @@ -29695,16 +29793,17 @@ msgstr "Жута" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Да" @@ -29732,6 +29831,18 @@ msgstr "Ви" msgid "You Liked" msgstr "Лајковали сте" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "Додали сте 1 ред у {0}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "Додали сте {0} редова у {1}" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "Покушавате да отворите екстерни линк. Да потврдите, кликните поново на линк." + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "Повезани сте на интернет." @@ -29770,20 +29881,20 @@ msgstr "Немате дозволу да уређујете извештај." #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "Немате дозволу да извезете DocType {}" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "Немате дозволу да одштампате овај извештај" -#: frappe/public/js/frappe/views/communication.js:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "Немате дозволу да пошаљете имејл везан за овај документ" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "Немате дозволу да ажурирате овај документ веб-обрасца" @@ -29807,7 +29918,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:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 msgid "You are only allowed to update order, do not remove or add apps." msgstr "Дозвољено Вам је да ажурирате редослед, немојте уклањати или додавати апликације." @@ -29833,13 +29944,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "Такође можете копирати и налепити следећи линк у Вашем интернет претраживачу" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " -msgstr "Такође можете копирати и налепити ово " +msgid "You can also copy-paste this" +msgstr "Такође можете копирати и налепити ово" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "Такође можете копирати и налепити овај {0} у Ваш интернет претраживач" +#: frappe/templates/emails/user_invitation_expired.html:8 +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 "Можете променити поднета документа тако што ћете их прво отказати, а затим изменити." @@ -29852,11 +29967,11 @@ msgstr "Можете променити политику чувања подат msgid "You can continue with the onboarding after exploring this page" msgstr "Можете наставити са уводном обуком након што истражите ову страницу" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "Можете онемогућити овај {0} уместо да га обришете." -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "Можете повећати ограничење у подешавањима система." @@ -29876,7 +29991,7 @@ msgstr "Можете одштампати највише {0} докуменат msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "Можете поставити само 3 прилагођене доцтyпе-а у табели врсте докумената." -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "Можете само отпремити JPG, PNG, PDF, TXT, CSV или Мајкрософт документа." @@ -29894,7 +30009,7 @@ msgstr "Можете изабрати једну од следећих," msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "Можете поставити вишу вредност овде уколико се више корисника пријављује са исте мреже." -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "Можете покушати да промените филтере Вашег извештаја." @@ -29906,11 +30021,11 @@ msgstr "Можете користити прилагоди образац за msgid "You can use wildcard %" msgstr "Можете користити заменски симбол %" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "Не можете поставити 'Опције' за поље {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "Не можете поставити 'Могуће превођење' за поље {0}" @@ -29928,7 +30043,7 @@ msgstr "Отказали сте овај документ {1}" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "Не можете креирати графикон контролне табле из једног DocType-а" -#: frappe/custom/doctype/customize_form/customize_form.py:385 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "Не можете уклонити опцију 'Искључиво за читање' за поље {0}" @@ -29958,7 +30073,7 @@ msgstr "Променили сте {0} у {1}" msgid "You created this" msgstr "Креирали сте ово" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "Ви сте креирали овај документ {0}" @@ -29971,15 +30086,15 @@ msgstr "Немате дозволу за читање или избор за {}" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "Немате довољно дозвола за приступ овом ресурсу. Обратите се свом менаџеру за приступ." -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "Немате довољно дозвола да довршите ову радњу" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "Немате дозволу за приступ пољу: {0}" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "Немате дозволу за приступ {0}: {1}." @@ -29991,11 +30106,11 @@ msgstr "Немате дозволу да откажете све повезан msgid "You don't have access to Report: {0}" msgstr "Немате приступ извештају: {0}" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "Немате дозволе за приступ DocType-у {0}." -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "Немате дозволу за приступ овом фајлу" @@ -30003,19 +30118,19 @@ msgstr "Немате дозволу за приступ овом фајлу" msgid "You don't have permission to get a report on: {0}" msgstr "Немате дозволу да добијате извештај за: {0}" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "Немате дозволу за приступ овом документу" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " -msgstr "Имате нову поруку од: " +msgid "You have a new message from:" +msgstr "Имате нову поруку од:" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "Успешно сте ођављени" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "Достигли сте ограничење броја редова у табели базе података: {0}" @@ -30023,11 +30138,7 @@ msgstr "Достигли сте ограничење броја редова у msgid "You have not entered a value. The field will be set to empty." msgstr "Нисте унели вредност. Поље ће бити постављено као празно." -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "Добили сте ❤️ лајкова на својој блог објави" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "Морате омогућити двофакторску аутентификацију у подешавањима система." @@ -30047,7 +30158,7 @@ msgstr "Имате непрочитано {0}" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "Још увек нисте додали графиконе или бројчане картице на контролну таблу." -#: frappe/public/js/frappe/list/list_view.js:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "Још увек нисте креирали {0}" @@ -30064,11 +30175,11 @@ msgstr "Ви сте последњи пут ово уредили" msgid "You must add atleast one link." msgstr "Морате додати барем један линк." -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "Морате бити пријављени да бисте користили овај образац." -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "Морате бити пријављени да бисте поднели овај образац" @@ -30092,7 +30203,7 @@ msgstr "Морате бити системски корисник да бист msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "Морате бити у развојном режиму да бисте уредили стандардни веб-образац" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "Морате бити пријављени и имати улогу систем менаџера да бисте приступили резервним копијама." @@ -30100,13 +30211,13 @@ msgstr "Морате бити пријављени и имати улогу си msgid "You need to be logged in to access this page" msgstr "Морате бити пријављени да бисте приступили овој страници" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "Морате бити пријављени да бисте приступили овом {0}." #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " -msgstr "Прво морате креирати ово: " +msgid "You need to create these first:" +msgstr "Прво морате креирати ово:" #: frappe/www/login.html:76 msgid "You need to enable JavaScript for your app to work." @@ -30140,11 +30251,19 @@ msgstr "Потребна Вам је дозвола за измену на {0} { msgid "You need {0} permission to fetch values from {1} {2}" msgstr "Потребна Вам је дозвола {0} да бисте преузели вредности из {1} {2}" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "Уклонили сте 1 ред из {0}" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "Уклонили сте овај прилог {0}" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "Уклонили сте {0} редова из {1}" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "Изгледа да сте спремни за наставак!" @@ -30175,10 +30294,26 @@ msgstr "Престали сте да пратите овај документ" msgid "You viewed this" msgstr "Прегледали сте ово" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "Бићете преусмерени на:" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "Позвани сте да се придружите {0}" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "Позвани сте да се придружите {0}." + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "Пријављени сте као други корисник на другој картици. Освежите ову страницу да бисте наставили рад у систему." +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "YouTube" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "Ваш CSV фајл се генерише и биће приказан у секцији прилози када буде спреман. Такође, биће Вам послато обавештење када фајл буде доступан за преузимање." @@ -30208,7 +30343,7 @@ msgstr "Ваше пречице" msgid "Your account has been deleted" msgstr "Ваш налог је обрисан" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "Ваш налог је закључан и биће поново омогућен након {0} секунди" @@ -30232,10 +30367,22 @@ msgstr "Захтев за повезивање са Google Цалендар-а msgid "Your email address" msgstr "Ваша имејл адреса" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "Ваш извештај који сте извезли: {0}" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "Ваш образац је успешно ажуриран" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "Вашу позивницу за придруживање {0} је отказао администратор сајта." + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "Ваша позивница за придруживање {0} је истекла." + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "Ваш ИД за пријављивање је" @@ -30258,7 +30405,11 @@ msgstr "Назив и адреса Ваше организације за под msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "Ваш упит је примљен. Одговорићемо Вам ускоро, уколико имате додатне информације молимо Вас да одговорите на ову поруку." -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "Ваш извештај се генерише у позадини. Добићете имејл на {0} са линком за преузимање када буде спреман." + +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "Ваша сесија је истекла, молимо Вас да се пријавите поново да бисте наставили." @@ -30280,7 +30431,7 @@ msgstr "Нула" msgid "Zero means send records updated at anytime" msgstr "Нула значи послати записе који су ажурирани у било којем тренутку" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" msgstr "[Радња предузета од стране {0}]" @@ -30302,10 +30453,6 @@ msgstr "`as_iterator` ради само са `as_list=True` или `as_dict=True msgid "`job_id` paramater is required for deduplication." msgstr "параметар `job_id` је обавезан за уклањање дупликата." -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "додати су редови за {0}" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30340,7 +30487,7 @@ msgstr "по улози" msgid "cProfile Output" msgstr "cProfile излаз" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "календар" @@ -30485,12 +30632,12 @@ msgstr "emacs" msgid "email" msgstr "имејл" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "пријемна пошта имејла" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "празно" @@ -30547,7 +30694,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "х" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "hub" @@ -30562,11 +30709,6 @@ msgstr "иконица" msgid "import" msgstr "увоз" -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "у минутима" - #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "jane@example.com" @@ -30575,7 +30717,7 @@ msgstr "jane@example.com" msgid "just now" msgstr "управо сада" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "ознака" @@ -30604,7 +30746,7 @@ msgstr "листа" msgid "logged in" msgstr "пријављен" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "login_required" @@ -30625,11 +30767,6 @@ msgstr "m" msgid "merged {0} into {1}" msgstr "спојено {0} у {1}" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "мин за читање" - #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json @@ -30653,7 +30790,7 @@ msgstr "модул" msgid "module name..." msgstr "назив модула..." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "ново" @@ -30782,10 +30919,6 @@ msgstr "читање" msgid "red" msgstr "црвена" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "уклоњени редови за {0}" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "преименовано са {0} у {1}" @@ -30841,19 +30974,19 @@ msgstr "подели" msgid "short" msgstr "кратко" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "од прошлог месеца" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "од прошле недеље" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "од прошле године" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "од јуче" @@ -30906,6 +31039,10 @@ msgstr "овај образац" msgid "this shouldn't break" msgstr "ово не би требало да се поквари" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "у Ваш интернет претраживач" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30933,7 +31070,7 @@ msgstr "version_table" msgid "via Assignment Rule" msgstr "путем правила доделе" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "путем аутоматског понављања" @@ -30947,7 +31084,7 @@ msgstr "путем увоза података" msgid "via Google Meet" msgstr "путем Google Meet" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "путем обавештења" @@ -30980,10 +31117,15 @@ msgstr "када се кликне на елемент, фокусираће с msgid "wkhtmltopdf" msgstr "wkhtmltopdf" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "wkhtmltopdf 0.12.x (са исправљеним qt)." +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "workflow_transition" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json @@ -31011,11 +31153,11 @@ msgstr "yyyy-mm-dd" msgid "{0}" msgstr "{0}" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "{0} ${skip_list ? \"\" : vrsta}" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "{0} ${type}" @@ -31041,19 +31183,19 @@ msgstr "{0} = {1}" msgid "{0} Calendar" msgstr "{0} календар" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "{0} графикон" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "{0} контролна табла" -#: frappe/public/js/frappe/form/grid_row.js:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "{0} поља" @@ -31077,6 +31219,10 @@ msgstr "{0} лајковано" msgid "{0} List" msgstr "{0} листа" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "{0} подешавање приказа листе" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "{0} М" @@ -31089,7 +31235,7 @@ msgstr "{0} мапа" msgid "{0} Name" msgstr "{0} назив" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "{0} није дозвољено мењати {1}, након што је поднето од {2} за {3}" @@ -31099,11 +31245,10 @@ msgstr "{0} није дозвољено мењати {1}, након што је msgid "{0} Report" msgstr "{0} извештај" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "{0} извештаји" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "{0} подешавања" @@ -31128,7 +31273,15 @@ msgstr "{0} радни простор" msgid "{0} added" msgstr "{0} додато" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "{0} је додао 1 ред у {1}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "{0} је додао {1} редова у {2}" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0} већ постоји. Изаберите други назив" @@ -31140,7 +31293,7 @@ msgstr "{0} је већ отказао претплату" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0} је већ отказао претплату за {1} {2}" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "{0} и {1}" @@ -31148,7 +31301,7 @@ msgstr "{0} и {1}" msgid "{0} are currently {1}" msgstr "{0} је тренутно {1}" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "{0} су неопходни" @@ -31165,7 +31318,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0} приложен {1}" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "{0} не може бити веће од {1}" @@ -31207,11 +31360,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "{0} је променио {1} у {2}" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "{0} коментара" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." msgstr "{0} садржи неважећи израз функције преузми из, функција преузми из не може бити самореференцијална." @@ -31224,7 +31373,7 @@ msgstr "{0} је успешно креирано" msgid "{0} created this" msgstr "{0} је креирао ово" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "документ {1} је креиран од стране {0}" @@ -31246,7 +31395,7 @@ msgstr "{0} не постоји у реду {1}" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "{0} поље не може бити постављено као јединствено у {1}, јер постоје нејединствене постојеће вредности" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "Поља {0} не смеју да садрже backticks (`): {1}" @@ -31278,7 +31427,7 @@ msgstr "{0} је напустио разговор у {1} {2}" msgid "{0} hours ago" msgstr "пре {0} часова" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "{0} уколико нисте преусмерени унутар {1} секунди" @@ -31287,23 +31436,23 @@ 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:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "{0} је обавезно поље" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "{0} није важећи зип фајл" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "{0} није важеће поље за податак." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "{0} није важећа имејл адреса у 'Примаоци'" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "{0} је између {1} и {2}" @@ -31312,27 +31461,27 @@ msgstr "{0} је између {1} и {2}" msgid "{0} is currently {1}" msgstr "{0} је тренутно {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "{0} је једнако {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "{0} је веће или једнако {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "{0} је веће од {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "{0} је мање или једнако {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "{0} је мање од {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "{0} је као {1}" @@ -31340,7 +31489,7 @@ msgstr "{0} је као {1}" msgid "{0} is mandatory" msgstr "{0} је обавезно" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "{0} није зависна табела од {1}" @@ -31360,12 +31509,12 @@ msgstr "{0} није важећи календар. Преусмеравање msgid "{0} is not a valid Cron expression." msgstr "{0} није важећи Црон израз." -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} није важећи DocType или динамички линк" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "{0} није важећа имејл адреса" @@ -31373,15 +31522,15 @@ msgstr "{0} није важећа имејл адреса" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "{0} није важећа ISO 3166 ALPHA-2 шифра." -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "{0} није важећи назив" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "{0} није важећи број телефона" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "{0} није важеће стање радног тока. Молимо Вас да ажурирате свој радни ток и покушате поново." @@ -31397,55 +31546,59 @@ msgstr "{0} није важеће матично поље за {1}" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} није важећи формат извештаја. Формат извештаја треба да буде један од следећих {1}" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "{0} није зип фајл" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "{0} није дозвољена улога за {1}" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "{0} није једнако {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "{0} није као {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "{0} није један од {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "{0} није постављен" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "{0} је сада подразумевани формат за штампање за {1} доцтyпе" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" msgstr "{0} је једно од {1}" #: frappe/email/doctype/email_account/email_account.py:304 -#: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: 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/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "{0} је постављено" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "{0} је унутар {1}" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "одабрано {0} ставки" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} се управо представио као Ви. Навео је следећи разлог: {1}" @@ -31478,35 +31631,35 @@ msgstr "пре {0} минута" msgid "{0} months ago" msgstr "пре {0} месеци" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "{0} мора бити након {1}" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "{0} мора почињати са '{1}'" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "{0} мора бити једнако '{1}'" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "{0} не сме бити ниједно од {1}" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} мора бити један од {1}" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "{0} мора прво бити постављено" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "{0} мора бити јединствено" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "{0} мора бити {1} {2}" @@ -31514,7 +31667,7 @@ msgstr "{0} мора бити {1} {2}" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "{0} мора почињати и завршавати се словом и може садржати само слова, црту или доњу црту." -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "{0} није важеће стање" @@ -31527,11 +31680,11 @@ msgid "{0} not found" msgstr "{0} није пронађено" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} од {1}" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} од {1} ({2} редова са зависним подацима)" @@ -31540,7 +31693,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "само {0}." -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "{0} или {1}" @@ -31564,6 +31717,10 @@ msgstr "{0} записа обрисано" msgid "{0} records will be exported" msgstr "{0} записа ће бити извезено" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "{0} је уклонио 1 ред из {1}" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31573,15 +31730,29 @@ msgstr "{0} је уклонио прилог {1}" msgid "{0} removed their assignment." msgstr "{0} је уклонио свој задатак." -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "{0} је уклонио {1} редова из {2}" + +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "Улога {0} нема дозволе ни за једну врсту документа" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " -msgstr "{0} ред#{1}: " +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" +msgstr "{0} ред#{1}:" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "{0} редова из {1}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "{0} редова у {1}" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "{0} је успешно сачувано" @@ -31601,11 +31772,11 @@ msgstr "{0} је поделио овај документ са свима" msgid "{0} shared this document with {1}" msgstr "{0} је поделио овај документ са {1}" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "{0} треба да буде индексирано јер се користи у везама на контролној табли" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "{0} не сме бити исто као {1}" @@ -31618,8 +31789,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "{0} је поднео овај документ {1}" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "{0} претплатника додато" @@ -31629,7 +31800,7 @@ msgstr "{0} да бисте престали да примате имејл ов #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "{0} до {1}" @@ -31637,7 +31808,7 @@ msgstr "{0} до {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} је опозвао дељење овог документа {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} је ажурирано" @@ -31673,15 +31844,15 @@ msgstr "{0} {1} је додат" msgid "{0} {1} added to Dashboard {2}" msgstr "{0} {1} је додат на контролну таблу {2}" -#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "{0} {1} већ постоји" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "{0} {1} не може бити \"{2}\". Требало би да буде једно од \"{3}\"" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "{0} {1} не може бити крајњи чвор јер има зависне ентитете" @@ -31697,11 +31868,11 @@ msgstr "{0} {1} је повезан са следећим поднетим до msgid "{0} {1} not found" msgstr "{0} {1} није пронађен" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: Поднети запис не може бити обрисан. Прво морате {2} отказати {3}." -#: frappe/model/base_document.py:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "{0}, ред {1}" @@ -31709,79 +31880,79 @@ msgstr "{0}, ред {1}" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "{0}/{1} завршено | Оставите ову картицу отвореном док се процес не заврши." -#: frappe/model/base_document.py:1120 +#: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "{0}: '{1}' ({3}) ће бити скраћено, јер је максималан број дозвољених карактера {2}" -#: frappe/core/doctype/doctype/doctype.py:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "{0}: Не може се поставити измена без отказивања" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "{0}: Не може се поставити додељена измена уколико није могуће поднети" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "{0}: Не може се поставити додељено подношење уколико није могуће поднети" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "{0}: Не може се поставити отказивање без подношења" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "{0}: Не може се поставити увоз без креирања" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "{0}: Не може се поставити подношење, отказивање или допуна без измене" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 msgid "{0}: Cannot set import as {1} is not importable" msgstr "{0}: Не може се поставити увоз као {1} јер није могуће увести" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 +#: 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:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "{0}: Поље '{1}' не може бити постављено као јединствено јер садржи нејединствене вредности" -#: frappe/core/doctype/doctype/doctype.py:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "{0}: Поље {1} у реду {2} не може бити сакривено и обавезно без подразумеване вредности" -#: frappe/core/doctype/doctype/doctype.py:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "{0}: Поље {1} врсте {2} не може бити обавезно" -#: frappe/core/doctype/doctype/doctype.py:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "{0}: Назив поља {1} се појављује више пута у редовима {2}" -#: frappe/core/doctype/doctype/doctype.py:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "{0}: Врста поља {1} за {2} не може бити јединствено" -#: frappe/core/doctype/doctype/doctype.py:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "{0}: Основне дозволе нису постављене" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "{0}: Искључиво је дозвољено само једно правило са истом улогом, нивоом и {1}" -#: frappe/core/doctype/doctype/doctype.py:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" msgstr "{0}: Опције морају да буду валидни DocType за поље {1} у реду {2}" -#: frappe/core/doctype/doctype/doctype.py:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "{0}: Опције су обавезне за врсту поља линк или табела {1} у реду {2}" -#: frappe/core/doctype/doctype/doctype.py:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "{0}: Опције {1} морају бити исте као назив DocType-а {2} за поље {3}" @@ -31789,7 +31960,7 @@ msgstr "{0}: Опције {1} морају бити исте као назив D msgid "{0}: Other permission rules may also apply" msgstr "{0}: Могу се применити и друга правила дозвола" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "{0}: Дозвола на нивоу 0 мора бити постављена пре виших нивоа" @@ -31797,7 +31968,7 @@ msgstr "{0}: Дозвола на нивоу 0 мора бити поставље msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "{0}: Можете повећати ограничење за ово поље уколико је потребно путем {1}" -#: frappe/core/doctype/doctype/doctype.py:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "{0}: назив поља не сме да садржи резервисане речи {1}" @@ -31810,11 +31981,11 @@ msgstr "{0}: {1}" msgid "{0}: {1} is set to state {2}" msgstr "{0}: {1} је постављено на стање {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} у односу на {2}" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "{0}: назив поља {1} за {2} не може бити индексиран" @@ -31838,7 +32009,7 @@ msgstr "{count} ред изабран" msgid "{count} rows selected" msgstr "{count} редова изабрано" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "{{{0}}} није исправан формат назива поља. Требало би да буде {{field_name}}." @@ -31846,11 +32017,11 @@ msgstr "{{{0}}} није исправан формат назива поља. Т msgid "{} Complete" msgstr "{} завршено" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "{} Неважећи пyтхон код на линији {}" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
    {}" msgstr "{} Потенцијално неважећи пyтхон код.
    {}" @@ -31876,7 +32047,7 @@ msgstr "{} је онемогућено. Може се омогућити сам msgid "{} is not a valid date string." msgstr "{} није исправан датум у текстуалном формату." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "{} није пронађен PATH! Ово је неопходно за приступ конзоли." diff --git a/frappe/locale/sr_CS.po b/frappe/locale/sr_CS.po index 230c038287..d8a11e371a 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-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-23 21:53\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-07 23:26\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Serbian (Latin)\n" "MIME-Version: 1.0\n" @@ -18,10 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: sr_CS\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr " u Vaš internet pretraživač" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json @@ -61,7 +57,7 @@ msgstr "#{0}" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "${values.doctype_name} je dodat u red za čekanje za optimizaciju" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" msgstr "© Frappe Technologies Pvt. Ltd. and contributors" @@ -74,7 +70,7 @@ msgstr "<head> HTML" 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:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "'U globalnoj pretrazi' nije dozvoljeno za vrstu {0} u redu {1}" @@ -82,19 +78,23 @@ msgstr "'U globalnoj pretrazi' nije dozvoljeno za vrstu {0} u redu {1}" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "'U prikazu liste' nije dozvoljeno za polje {0} vrste {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "'U prikazu liste' nije dozvoljeno za vrstu {0} u redu {1}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" msgstr "'Primaoci' nisu navedeni" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "'{0}' nije važeći IBAN" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" msgstr "'{0}' nije važeći URL" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "'{0}' nije dozvoljen za vrstu {1} u redu {2}" @@ -102,11 +102,11 @@ msgstr "'{0}' nije dozvoljen za vrstu {1} u redu {2}" msgid "(Mandatory)" msgstr "(Obavezno)" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "** Neuspešno: {0} do {1}: {2}" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" msgstr "+ Dodaj / Ukloni polja" @@ -122,7 +122,7 @@ msgstr "0 - Nacrt; 1 - Podneto; 2 - Otkazano" msgid "0 is highest" msgstr "0 je najviše" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = tačno i 0 = netačno" @@ -141,15 +141,11 @@ 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:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 izveštaj" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "1 komentar" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "pre 1 dan" @@ -158,17 +154,17 @@ msgid "1 hour" msgstr "1 sat" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "pre 1 sata" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "pre 1 minut" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "pre 1 mesec" @@ -180,37 +176,47 @@ msgstr "1 оd 2" msgid "1 record will be exported" msgstr "1 zapis će biti izvezen" -#: frappe/tests/test_utils.py:711 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "1 red iz {0}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "1 red u {0}" + +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "pre 1 sekunde" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "pre 1 nedelju" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "pre 1 godinu" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "pre 2 sata" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "pre 2 meseca" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "pre 2 nedelje" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "pre 2 godine" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "pre 3 minuta" @@ -226,7 +232,7 @@ msgstr "4 sata" msgid "5 Records" msgstr "5 zapisa" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "pre 5 dana" @@ -246,6 +252,13 @@ msgstr "<" msgid "<=" msgstr "<=" +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr " Kliknite ovde da biste saznali više o autentifikaciji putem tokena " + #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "{0} nije važeći URL" @@ -255,6 +268,16 @@ msgstr "{0} nije važeći URL" msgid "
    Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
    " msgstr "
    Molimo Vas da ne ažurirate jer to može poremetiti Vaš obrazac. Koristite polje prilagodi prikaz obrasca ili prilagođena polja da biste postavili svojstva!
    " +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

    Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

    " +msgstr "

    Zatražite fajl koji sadrži Vaše lične podatke sačuvane u našem sistemu. Fajl će biti u JSON formatu i biće Vam poslat putem imejla. Ukoliko želite da se Vaši lični podaci izbrišu iz našeg sistema, molimo Vas da podnesete zahtev za brisanje podataka.

    " + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

    Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

    " +msgstr "

    Pošaljite zahtev za brisanje Vašeg naloga i ličnih podataka koji su sačuvani u našem sistemu. Dobićete imejl za potvrdu Vašeg zahteva. Nakon potvrde svi Vaši lični podaci biće obrisani. Ukoliko samo želite da proverite koje lične podatke imamo sačuvane, možete zatražiti svoje podatke.

    " + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -641,7 +664,7 @@ msgstr "

    Za interakciju sa gore navedenim HTML-om neophodno je da koristite `r "some_class_element.textContent = \"Novi sadržaj\";\n" "" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

    " msgstr "

    Vaša tajna jednokratne lozinke na {0} je resetovana. Ukoliko niste izvršili ovo postavljanje i niste ga zahtevali, odmah kontaktirajte svog sistem administratora.

    " @@ -731,7 +754,7 @@ msgstr ">" msgid ">=" msgstr ">=" -#: frappe/core/doctype/doctype/doctype.py:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 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" @@ -740,15 +763,16 @@ msgstr "Naziv DocType-a treba da počne sa slovom i može sadržati isključivo msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "Jedna instanca Frappe Framework može funkcionisati i kao OAuth klijent, resurs ili autorizacioni server. Ovaj DocType sadrži podešavanja vezana za sva tri." -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" -msgstr "Istaknuti post mora imati naslovnu sliku" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "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:175 msgid "A field with the name {0} already exists in {1}" msgstr "Polje sa nazivom {0} već postoji u {1}" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "Fajl sa istim nazivom {} već postoji" @@ -761,7 +785,7 @@ msgstr "Lista resursa kojima će klijentska aplikacija imati pristup nakon što msgid "A new account has been created for you at {0}" msgstr "Novi nalog je kreiran za Vas na {0}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "Ponavljajući {0} {1} je kreiran za Vas putem automatskog ponavljanja {2}." @@ -862,13 +886,17 @@ msgstr "API Endpoint" msgid "API Endpoint Args" msgstr "API Endpoint Args" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "API Endpoint Args moraju biti validan JSON" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -887,6 +915,10 @@ msgstr "API ključ i tajna za interakciju sa relay serverom. Ovi podaci će biti msgid "API Key cannot be regenerated" msgstr "API ključ se ne može ponovo generisati" +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "API ključevi" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -907,7 +939,7 @@ msgstr "Evidencija API zahteva" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -954,6 +986,20 @@ msgstr "Ostalo je još oko {0} minuta" msgid "About {0} seconds remaining" msgstr "Ostalo je još oko {0} sekundi" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "Prihvati pozivnicu" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "Prihvaćeno" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "Prihvaćeno" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -979,7 +1025,7 @@ msgstr "Pristupni token" msgid "Access Token URL" msgstr "URL pristupnog tokena" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Pristup nije dozvoljen sa ove IP adrese" @@ -1043,7 +1089,7 @@ msgstr "Radnja / Putanja" msgid "Action Complete" msgstr "Radnja završena" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "Radnja neuspešna" @@ -1095,7 +1141,7 @@ msgstr "Radnje {0} nije uspela na {1} {2}. Pregledajte je {3}" #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Radnje" @@ -1152,7 +1198,7 @@ msgstr "Dnevnik aktivnosti" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -1163,7 +1209,7 @@ msgstr "Dnevnik aktivnosti" msgid "Add" msgstr "Dodaj" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "Dodaj / Ukloni kolone" @@ -1175,7 +1221,7 @@ msgstr "Dodaj / Ažuriraj" msgid "Add A New Rule" msgstr "Dodaj novo pravilo" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Dodaj prilog" @@ -1195,7 +1241,7 @@ msgstr "Dodaj ivicu na dnu" msgid "Add Border at Top" msgstr "Dodaj ivicu na vrhu" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "Dodaj karticu na kontrolnu tablu" @@ -1208,10 +1254,10 @@ msgid "Add Child" msgstr "Dodaj zavisni element" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "Dodaj kolonu" @@ -1270,7 +1316,7 @@ msgstr "Dodaj korisnike" msgid "Add Query Parameters" msgstr "Dodaj parametre upita" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "Dodaj uloge" @@ -1303,12 +1349,12 @@ msgstr "Dodaj pretplatnike" msgid "Add Tags" msgstr "Dodaj oznake" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Dodaj oznake" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "Dodaj šablon" @@ -1397,7 +1443,7 @@ msgstr "Dodaj novu karticu" msgid "Add page break" msgstr "Dodaj prelom stranice" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "Dodaj skriptu za zavisnu tabelu" @@ -1435,7 +1481,7 @@ msgstr "Dodaj u ovu aktivnost slanjem imejla na {0}" msgid "Add {0}" msgstr "Dodaj {0}" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" msgstr "Dodaj {0}" @@ -1478,6 +1524,7 @@ msgstr "Dodatne dozvole" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1486,6 +1533,7 @@ msgstr "Adresa" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "Adresa, red 1" @@ -1493,6 +1541,7 @@ msgstr "Adresa, red 1" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "Adresa, red 2" @@ -1543,7 +1592,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:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "Administracija" @@ -1557,7 +1606,6 @@ msgstr "Administracija" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1570,11 +1618,11 @@ msgstr "Administracija" msgid "Administrator" msgstr "Administrator" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "Administrator prijavljen" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Administrator je pristupio {0} dana {1} putem IP adrese {2}." @@ -1595,8 +1643,8 @@ msgstr "Napredno" msgid "Advanced Control" msgstr "Napredna kontrola" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" msgstr "Napredna pretraga" @@ -1655,7 +1703,7 @@ msgstr "Nakon podnošenja" msgid "After Submit" msgstr "Nakon podnošenja" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "Agregatno polje je potrebno za kreiranje brojčane kartice" @@ -1682,11 +1730,11 @@ msgstr "Upozorenje" msgid "Alerts and Notifications" msgstr "Upozorenja i obaveštenja" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "Pseudonim ne može biti SQL rezervisana reč: {0}" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "Pseudonim mora biti tekst" @@ -1751,7 +1799,7 @@ 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:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "Sve podneseno" @@ -1811,8 +1859,8 @@ msgstr "Dozvoli masovno uređivanje" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " -msgstr "Dozvoli uzastopne pokušaje prijavljivanja " +msgid "Allow Consecutive Login Attempts" +msgstr "Dozvoli uzastopne pokušaje prijavljivanja" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 msgid "Allow Google Calendar Access" @@ -1832,11 +1880,6 @@ msgstr "Dozvoli gosta" msgid "Allow Guest to View" msgstr "Dozvoli gostu da pregleda" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "Dozvoli gostu da komentariše" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1885,7 +1928,7 @@ msgid "Allow Print for Cancelled" msgstr "Dozvoli štampu za otkazane" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "Dozvoli štampu za nacrt" @@ -2052,7 +2095,7 @@ msgstr "Dozvoljene ekstenzije fajlova" #. Label of the allowed_in_mentions (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Allowed In Mentions" -msgstr "Dozvoljeno u pominjanima" +msgstr "Dozvoljeno u pominjanjima" #. Label of the allowed_modules_section (Section Break) field in DocType 'User #. Type' @@ -2092,7 +2135,7 @@ msgstr "Omogućava klijentima da preuzmu metapodatke sa /.well-known/oauth #. DocType 'OAuth Settings' #: frappe/integrations/doctype/oauth_settings/oauth_settings.json msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" -msgstr "Omogućava klijentima da preuzmi metapodatke sa /.well-known/oauth-protected-resource endpoint-a. Referenca: RFC9728" +msgstr "Omogućava klijentima da preuzmu metapodatke sa /.well-known/oauth-protected-resource endpoint-a. Referenca: RFC9728" #. Description of the 'Enable Dynamic Client Registration' (Check) field in #. DocType 'OAuth Settings' @@ -2118,7 +2161,7 @@ msgstr "Omogućava da se omogućeni osnovni URL ključa za prijavljivanje putem msgid "Allows skipping authorization if a user has active tokens." msgstr "Omogućava preskakanje autorizacije ukoliko korisnik već ima aktivne tokene." -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "Već registrovan" @@ -2126,11 +2169,11 @@ msgstr "Već registrovan" msgid "Already in the following Users ToDo list:{0}" msgstr "Već se nalazi na listi za uraditi sledećih korisnika: {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "Takođe dodavanje zavisnog polja za valutu {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "Takođe dodavanje polja od zavisnosti statusa {0}" @@ -2139,6 +2182,12 @@ msgstr "Takođe dodavanje polja od zavisnosti statusa {0}" msgid "Alternative Email ID" msgstr "Alternativni imejl ID" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "Uvek" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2190,10 +2239,8 @@ msgstr "Podešavanja za imenovanje izmenjenih dokumenata" msgid "Amended Documents" msgstr "Izmenjeni dokumenti" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "Izmenjeno iz" @@ -2217,6 +2264,11 @@ msgstr "Izmena nije dozvoljena" msgid "Amendment naming rules updated." msgstr "Pravila imenovanja izmena ažurirana." +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 msgid "An error occurred while setting Session Defaults" msgstr "Došlo je do greške prilikom postavljanja podrazumevanih podešavanja sesije" @@ -2310,10 +2362,12 @@ msgid "App Logo" msgstr "Logo aplikacije" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2384,6 +2438,10 @@ msgstr "Naziv aplikacije" msgid "Application Version" msgstr "Verzija aplikacije" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "Aplikacija nije instalirana" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2393,7 +2451,7 @@ msgstr "Primenjeno na" msgid "Apply" msgstr "Primeni" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Primeni pravilo dodele" @@ -2441,7 +2499,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:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "Primenjivanje: {0}" @@ -2474,7 +2532,11 @@ msgstr "Arhivirano" msgid "Archived Columns" msgstr "Arhivirane kolone" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +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:2115 msgid "Are you sure you want to clear the assignments?" msgstr "Da li ste sigurni da želite da očistite dodeljene zadatke?" @@ -2502,11 +2564,15 @@ 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:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +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 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:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "Da li ste sigurni da želite da generišete novi izveštaj?" @@ -2514,7 +2580,7 @@ msgstr "Da li ste sigurni da želite da generišete novi izveštaj?" msgid "Are you sure you want to merge {0} with {1}?" msgstr "Da li ste sigurni da želite da spojite {0} sa {1}?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "Da li ste sigurni da želite da nastavite?" @@ -2532,7 +2598,7 @@ msgstr "Da li ste sigurni da želite da uklonite sve neuspele zadatke?" #: frappe/public/js/frappe/list/list_filter.js:116 msgid "Are you sure you want to remove the {0} filter?" -msgstr "Da liste sigurni da želite da uklonite {0} filter?" +msgstr "Da li ste sigurni da želite da uklonite {0} filter?" #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:268 msgid "Are you sure you want to reset all customizations?" @@ -2569,6 +2635,12 @@ msgstr "Pošto je deljenje dokumenata onemogućeno, molimo Vas da im dodelite ne msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "Prema Vašem zahtevu, Vaš nalog i podaci na {0} povezani sa imejl adresom {1} su trajno obrisani" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "Pitaj" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2578,7 +2650,7 @@ msgstr "Dodeli uslov" msgid "Assign To" msgstr "Dodeli" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Dodeli" @@ -2641,6 +2713,11 @@ msgstr "Dodeljeno" msgid "Assigned To/Owner" msgstr "Dodeljeno korisniku / Vlasnik" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "Dodeljeni korisnik" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "Dodeljivanje..." @@ -2710,7 +2787,13 @@ msgstr "Dodela za {0} uklonjena od strane {1}" msgid "Assignments" msgstr "Dodeljeni zadaci" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "Asinhrono" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "Barem jedna kolona je obavezna za prikaz u tabeli." @@ -2760,7 +2843,7 @@ msgstr "Priloži paket" #. Label of the attach_print (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Attach Print" -msgstr "Priloži štampanu veriju" +msgstr "Priloži štampanu verziju" #: frappe/public/js/frappe/file_uploader/WebLink.vue:10 msgid "Attach a web link" @@ -2790,7 +2873,7 @@ msgstr "Priloženo uz polje" msgid "Attached To Name" msgstr "Priloženo uz naziv" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "Priloženo uz naziv mora biti tekst ili broj" @@ -2806,7 +2889,7 @@ msgstr "Prilog" msgid "Attachment Limit (MB)" msgstr "Ograničenje priloga (MB)" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "Ograničenje priloga dostignuto" @@ -2824,15 +2907,15 @@ msgstr "Prilog uklonjen" #. Label of the attachments (Code) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "Prilozi" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "Pokušava se povezivanje sa QZ Tray..." -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "Pokušava se pokretanje QZ Tray..." @@ -2853,7 +2936,11 @@ msgstr "Istorija izmena" #. 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 "Verifikuj URL podatke" +msgstr "Podaci o autorizacionom URL-u" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "Podaci o autorizacionom URL-u moraju biti validan JSON" #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json @@ -2872,8 +2959,8 @@ msgid "Authentication" msgstr "Autentifikacija" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " -msgstr "Aplikacija za autentifikaciju koje možete da koristite su: " +msgid "Authentication Apps you can use are:" +msgstr "Aplikacija za autentifikaciju koje možete da koristite su:" #: frappe/email/doctype/email_account/email_account.py:339 msgid "Authentication failed while receiving emails from Email Account: {0}." @@ -2938,7 +3025,7 @@ msgstr "Odobri pristup Google Contacts" #. Label of the authorize_url (Data) field in DocType 'Social Login Key' #: frappe/integrations/doctype/social_login_key/social_login_key.json msgid "Authorize URL" -msgstr "Odobri URL" +msgstr "URL za autorizaciju" #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/integrations/doctype/integration_request/integration_request.json @@ -2986,11 +3073,11 @@ msgstr "Automatsko ponavljanje" msgid "Auto Repeat Day" msgstr "Dan automatskog ponavljanja" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "Dan automatskog ponavljanja {0} {1} je ponovljen." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "Kreiranje dokumenta za automatsko ponavljanje nije uspelo" @@ -2998,11 +3085,16 @@ msgstr "Kreiranje dokumenta za automatsko ponavljanje nije uspelo" msgid "Auto Repeat Schedule" msgstr "Raspored automatskog ponavljanja" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "Korisnik sa automatskim ponavljanjem" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "Automatsko ponavljanje kreirano za ovaj dokument" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "Automatsko ponavljanje nije uspelo za {0}" @@ -3046,7 +3138,7 @@ msgstr "Automatski prati dokumenta koja si komentarisao" msgid "Auto follow documents that you create" msgstr "Automatsko prati dokumenta koje si kreirao" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "Automatsko ponavljanje nije uspelo. Molimo Vas da omogućite automatsko ponavljanje nakon što rešite problem." @@ -3094,7 +3186,7 @@ msgstr "Automatsko povezivanje može biti aktivirano samo ukoliko je ulazni omog msgid "Automatically Assign Documents to Users" msgstr "Automatski dodeli dokumenta korisnicima" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "Automatski primenjeni filter za nedavne podatke. Ovu opciju možete onemogućiti u podešavanjima prikaza liste." @@ -3108,11 +3200,6 @@ msgstr "Automatski obriši nalog unutar (sati)" msgid "Automation" msgstr "Automatizacija" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "Avatar" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3384,8 +3471,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:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "Na osnovu" @@ -3502,10 +3589,8 @@ msgstr "Binarno zapisivanje" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "Biografija" @@ -3535,64 +3620,6 @@ msgstr "Blokiraj module" msgid "Blocked" msgstr "Blokirano" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "Blog" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "Kategorija bloga" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "Uvod u blog" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "Uvod u blog" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "Blog objava" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "Podešavanje bloga" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "Naslov bloga" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "Bloger" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3690,13 +3717,6 @@ msgstr "Brend je ono što se prikazuje u gornjem levom delu trake sa alatkama. U msgid "Breadcrumbs" msgstr "Breadcrumbs" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "Pretraži po kategoriji" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3754,15 +3774,15 @@ msgstr "Masovno brisanje" msgid "Bulk Edit" msgstr "Masovno uređivanje" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "Masovno uređivanje {0}" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" -msgstr "Masovna operacije nije uspela" +msgstr "Masovna operacija nije uspela" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "Masovna operacija je uspešno završena" @@ -3777,7 +3797,7 @@ msgstr "Masovan izvoz PDF" msgid "Bulk Update" msgstr "Masovno ažuriranje" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "Masovno odobravanje podržava najviše do 500 dokumenata." @@ -3789,7 +3809,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:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "Masovno {0} je stavljeno u red za obradu u pozadini." @@ -3919,16 +3939,6 @@ msgstr "CSS selektor za element koji želite da istaknete." msgid "CSV" msgstr "CSV" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "Oznaka poziva na radnju" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "URL poziva na radnju" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3979,11 +3989,6 @@ msgstr "Poziv na radnju" msgid "Call To Action URL" msgstr "URL poziva na radnju" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "Poziv na radnju" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -4001,7 +4006,7 @@ msgid "Camera" msgstr "Kamera" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -4037,7 +4042,7 @@ msgstr "Može da menja" 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:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 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" @@ -4049,7 +4054,7 @@ msgstr "Mogu se prikazivati samo vrste dokumenata koji su povezani sa korisničk #: frappe/desk/form/document_follow.py:48 msgid "Can't follow since changes are not tracked." -msgstr "Ne može se pratiti jer promene nisu praćenje." +msgstr "Ne može se pratiti jer promene nisu zabeležene." #: frappe/model/rename_doc.py:366 msgid "Can't rename {0} to {1} because {0} doesn't exist." @@ -4061,14 +4066,15 @@ msgstr "Ne može se preimenovati iz {0} u {1} jer {0} ne postoji." #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "Otkaži" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Otkaži" @@ -4086,16 +4092,18 @@ msgstr "Otkaži sve" msgid "Cancel All Documents" msgstr "Otkaži sve dokumente" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Otkaži {0} dokumenta?" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -4133,11 +4141,11 @@ msgstr "Nije moguće preuzeti vrednosti" msgid "Cannot Remove" msgstr "Nije moguće ukloniti" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "Nije moguće ažurirati nakon podnošenja" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "Nije moguće pristupiti putanji fajla {0}" @@ -4145,7 +4153,7 @@ msgstr "Nije moguće pristupiti putanji fajla {0}" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "Nije moguće otkazati pre podnošenja tokom tranzicije sa {0} stanja na {1} stanje" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "Nije moguće otkazati pre podnošenja. Pogledaj tranziciju {0}" @@ -4153,11 +4161,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:1013 +#: frappe/model/document.py:1017 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:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "Nije moguće promeniti status dokumenta iz 1 (podnet) u 0 (nacrt)" @@ -4165,11 +4173,11 @@ msgstr "Nije moguće promeniti status dokumenta iz 1 (podnet) u 0 (nacrt)" msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "Nije moguće promeniti stanje otkazanog dokumenta ({0} stanje)" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 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:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 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" @@ -4181,11 +4189,11 @@ msgstr "Nije moguće kreirati {0} protiv zavisnog dokumenta: {1}" msgid "Cannot create private workspace of other users" msgstr "Nije moguće kreirati privatni radni prostor za ostale korisnike" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "Nije moguće obrisati početne i priložene datoteke" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 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}" @@ -4220,7 +4228,7 @@ msgstr "Nije moguće obrisati sistemski generisano polje {0}. M msgid "Cannot delete {0}" msgstr "Nije moguće obrisati {0}" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" msgstr "Nije moguće obrisati {0} jer ima zavisne čvorove" @@ -4228,7 +4236,7 @@ msgstr "Nije moguće obrisati {0} jer ima zavisne čvorove" msgid "Cannot edit Standard Dashboards" msgstr "Nije moguće urediti standardne kontrolne table" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "Nije moguće urediti standardna obaveštenja. Da biste ih uredili, prvo ih onemogućite i napravite duplikat" @@ -4240,7 +4248,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:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "Nije moguće urediti otkazan dokument" @@ -4248,8 +4256,8 @@ msgstr "Nije moguće urediti otkazan dokument" msgid "Cannot edit filters for standard charts" msgstr "Nije moguće urediti filtere za standardne grafikone" -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "Nije moguće urediti filtere za standardne brojčane kartice" @@ -4257,27 +4265,27 @@ msgstr "Nije moguće urediti filtere za standardne brojčane kartice" msgid "Cannot edit standard fields" msgstr "Nije moguće urediti standardna polja" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "Nije moguće dozvoliti {0} za doctype koji se ne može podneti" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "Nije moguće pronaći fajl {} na disku" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "Nije moguće preuzeti sadržaj fajla iz datoteke" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:884 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:1132 +#: frappe/public/js/frappe/form/grid.js:1134 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:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "Nije moguće povezati otkazani dokument: {0}" @@ -4289,11 +4297,11 @@ 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:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "Nije moguće pomeriti red" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "Nije moguće ukloniti ID polje" @@ -4301,7 +4309,7 @@ msgstr "Nije moguće ukloniti ID polje" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "Nije moguće postaviti dozvolu za 'Izveštaj' ukoliko je postavljena dozvola za 'Isključivo ukoliko je autor'" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "Nije moguće podesiti obaveštenje sa događajem {0} za vrstu dokumenta {1}" @@ -4318,11 +4326,11 @@ msgstr "Nije moguće podneti {0}." msgid "Cannot update {0}" msgstr "Nije moguće ažurirati {0}" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" -msgstr "Nije moguće koristiti podupit u komandi sortiraj po" +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." +msgstr "Nije moguće koristiti podupit ovde." -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "Nije moguće koristiti {0} u komandi sortiraj/grupiši po" @@ -4390,15 +4398,6 @@ msgstr "Centar" 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/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "Integritet lanca" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "Haširanje lanca" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4436,9 +4435,9 @@ msgstr "Promeni format štampe" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
    \n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " +"Warning: Incorrectly updating counters can prevent documents from getting created." msgstr "Promenite početni / trenutni broj u nizu za postojeću seriju.
    \n\n" -"Upozorenje: Neispravno ažuriranje brojača možete sprečiti kreiranje dokumenata. " +"Upozorenje: Neispravno ažuriranje brojača možete sprečiti kreiranje dokumenata." #. Label of the changed_at (Datetime) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -4507,7 +4506,7 @@ msgstr "Izvor dijagrama" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "Vrsta dijagrama" @@ -4540,7 +4539,7 @@ msgstr "Čet" msgid "Check" msgstr "Označi" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "Proveri URL zahteva" @@ -4548,7 +4547,7 @@ msgstr "Proveri URL zahteva" msgid "Check columns to select, drag to set order." msgstr "Proveri kolone za označavanje, prevuci da postaviš redosled." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "Proveri evidenciju grešaka za više informacija: {0}" @@ -4589,11 +4588,6 @@ msgstr "Označavanjem ovoga došlo bi do objavljivanja stranice na Vašem veb-sa msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "Označavanjem ovoga došlo bi do prikazivanja tekstualne oblasti gde je moguće napisati prilagođeni javascript koji će se izvršavati na ovoj stranici." -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "Verzija kontrolnog zbira" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "Zavisni DocType-ovi nisu dozvoljeni" @@ -4603,17 +4597,17 @@ msgstr "Zavisni DocType-ovi nisu dozvoljeni" msgid "Child Doctype" msgstr "Zavisni DocType" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "Zavisna tabela {0} za polje {1}" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Zavisne tabele se prikazuju kao tabele u drugim DocType-ovima" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "Zavisna polja upita za '{0}' moraju biti vrste lista ili tuple." @@ -4642,6 +4636,7 @@ msgid "Choose authentication method to be used by all users" msgstr "Izaberi metod autentifikacije koji će koristiti svi korisnici" #. 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 msgid "City" msgstr "Grad" @@ -4656,7 +4651,7 @@ msgstr "Grad/Naseljeno mesto" msgid "Clear" msgstr "Očisti" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "Očisti i dodaj šablon" @@ -4668,7 +4663,7 @@ msgstr "Očisti i dodaj šablon" msgid "Clear All" msgstr "Očisti sve" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Očisti dodeljene zadatke" @@ -4694,7 +4689,7 @@ msgstr "Očisti evidencije nakon (dana)" msgid "Clear User Permissions" msgstr "Očisti korisničke dozvole" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "Očisti imejl poruke i dodaj šablon" @@ -4706,11 +4701,15 @@ msgstr "Očisti datum završetka, jer ne može biti u prošlosti za objavljene s msgid "Click On Customize to add your first widget" msgstr "Kliknite na prilagodi da dodate svoj prvi vidžet" -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "Kliknite ispod da biste započeli:" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "Kliknite ovde" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "Kliknite na fajl da ga odaberete." @@ -4741,24 +4740,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "Kliknite na {0} da generišete token za osvežavanje." #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "Kliknite na tabelu da biste je uredili" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "Kliknite da postavite dinamičke filtere" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "Kliknite da postavite filtere" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "Kliknite da sortirate po {0}" @@ -4936,7 +4935,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Sažmi" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Sažmi sve" @@ -4948,7 +4947,7 @@ msgstr "Sažmi sve" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Collapsible" -msgstr "Može se sažeti" +msgstr "Sklopivo" #. Label of the collapsible_depends_on (Code) field in DocType 'Custom Field' #. Label of the collapsible_depends_on (Code) field in DocType 'Customize Form @@ -4956,12 +4955,12 @@ msgstr "Može se sažeti" #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Collapsible Depends On" -msgstr "Može se sažeti zavisi od" +msgstr "Sklopivo zavisi od" #. Label of the collapsible_depends_on (Code) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Collapsible Depends On (JS)" -msgstr "Može se sažeti zavisi od (JS)" +msgstr "Sklopivo zavisi od (JS)" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the color (Data) field in DocType 'DocType' @@ -4991,7 +4990,7 @@ msgstr "Može se sažeti zavisi od (JS)" #: frappe/desk/doctype/number_card/number_card.json #: frappe/desk/doctype/todo/todo.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/reports/query_report.js:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5047,11 +5046,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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "Širina kolone" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "Širina kolone ne može biti nula." @@ -5078,7 +5077,7 @@ msgstr "Kolone" msgid "Columns / Fields" msgstr "Kolone / Polja" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "Kolone zasnovane na" @@ -5120,16 +5119,6 @@ msgstr "Vrsta komentara" msgid "Comment can only be edited by the owner" msgstr "Komentar se može urediti samo od vlasnika" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "Limit komentara" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "Limit komentara po času" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "Vidljivost komentara može da ažurira isključivo originalni autor ili sistem menadžer." @@ -5137,7 +5126,7 @@ msgstr "Vidljivost komentara može da ažurira isključivo originalni autor ili #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "Komentari" @@ -5146,7 +5135,7 @@ msgstr "Komentari" msgid "Comments and Communications will be associated with this linked document" msgstr "Komentari i komunikacije će biti povezani sa ovim povezanim dokumentom" -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "Komentari ne mogu sadržati linkove ili imejl adrese" @@ -5218,12 +5207,12 @@ msgid "Company Name" msgstr "Naziv kompanije" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "Uporedi verzije" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "Upozorenje prilikom kompilacije" @@ -5303,8 +5292,8 @@ msgstr "Komprimovati" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5318,6 +5307,11 @@ msgstr "Uslov" msgid "Condition JSON" msgstr "Uslov JSON" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "Vrsta uslova" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5343,11 +5337,11 @@ msgstr "Konfiguracija" msgid "Configuration" msgstr "Konfiguracija" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "Konfigurišite dijagram" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "Konfigurišite kolone" @@ -5374,7 +5368,7 @@ msgstr "Konfigurišite kako će se nazivati izmenjeni dokumenti.
    \n\n" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "Konfigurišite različite aspekte kako funkcioniše imenovanje dokumenata, kao što su serije imenovanja, trenutni brojač." -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Potvrdi" @@ -5393,7 +5387,7 @@ msgstr "Potvrdi pristup" msgid "Confirm Deletion of Account" msgstr "Potvrdi uklanjanje naloga" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "Potvrdi novu lozinku" @@ -5420,7 +5414,7 @@ msgstr "Potvrđeno" msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "Čestitamo na završetku postavke modula. Ukoliko želite da saznate više, možete se posvetiti dokumentaciji ovde." -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "Poveži se sa {}" @@ -5438,8 +5432,8 @@ msgstr "Povezane aplikacije" msgid "Connected User" msgstr "Povezani korisnik" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "Povezano sa QZ Tray!" @@ -5490,6 +5484,10 @@ msgstr "Ograničenja" msgid "Contact" msgstr "Kontakt" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
    {0}" +msgstr "Kontakt / imejl nije pronađen. Učesnik nije dodat za -
    {0}" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5547,15 +5545,13 @@ msgstr "Sadrži {0} ispravki bezbednosti" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5563,24 +5559,12 @@ msgstr "Sadrži {0} ispravki bezbednosti" msgid "Content" msgstr "Sadržaj" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "Sadržaj (HTML)" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "Sadržaj (Markdown)" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "Heš sadržaj" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "Vrsta sadržaja" @@ -5646,9 +5630,9 @@ msgstr "Kopiraj link" #: frappe/website/doctype/web_form/web_form.js:29 msgid "Copy embed code" -msgstr "Kopiraj embeded code" +msgstr "Kopiraj embedded code" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "Kopiraj grešku u međuspremnik" @@ -5656,12 +5640,16 @@ msgstr "Kopiraj grešku u međuspremnik" msgid "Copy to Clipboard" msgstr "Kopiraj u međuspremnik" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "Kopirajte token u međuspremnik" + #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" msgstr "Autorska prava" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "Osnovni DocType-ovi ne mogu biti prilagođeni." @@ -5669,7 +5657,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:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "Ispravna verzija :" @@ -5677,7 +5665,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:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "Nije bilo moguće pronaći {0}" @@ -5685,15 +5673,15 @@ msgstr "Nije bilo moguće pronaći {0}" msgid "Could not map column {0} to field {1}" msgstr "Nije bilo moguće mapirati kolonu {0} na polje {1}" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "Nije moguće obraditi polje: {0}" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " -msgstr "Nije bilo moguće pokrenuti: " +msgid "Could not start up:" +msgstr "Nije bilo moguće pokrenuti:" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "Nije bilo moguće sačuvati, proverite unesene podatke" @@ -5738,13 +5726,14 @@ msgstr "Brojač" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "Država" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "Šifra države je neophodna" @@ -5776,13 +5765,13 @@ msgstr "Cr" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Kreiraj" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "Kreiraj i nastavi" @@ -5796,7 +5785,7 @@ 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:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "Kreiraj grafikon" @@ -5830,12 +5819,12 @@ msgstr "Kreiraj evidenciju" msgid "Create New" msgstr "Kreiraj novi" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Kreiraj novi" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "Kreiraj novi DocType" @@ -5843,7 +5832,7 @@ msgstr "Kreiraj novi DocType" msgid "Create New Kanban Board" msgstr "Kreiraj novu Kanban tablu" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "Kreiraj korisnički imejl" @@ -5855,7 +5844,7 @@ msgstr "Kreiraj novi format" msgid "Create a Reminder" msgstr "Kreiraj podsetnik" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "Kreiraj novi ..." @@ -5863,11 +5852,11 @@ msgstr "Kreiraj novi ..." msgid "Create a new record" msgstr "Kreiraj novi zapis" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "Kreiraj novi {0}" @@ -5883,7 +5872,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:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "Kreiraj svoj prvi {0}" @@ -5893,7 +5882,7 @@ msgstr "Kreirajte Vaš radni tok vizualno koristeći uređivač radnog toka." #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "Kreirano" @@ -5909,7 +5898,7 @@ msgstr "Kreirano na" msgid "Created By" msgstr "Kreirano od strane" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "Kreirano prilagođeno polje {0} u {1}" @@ -5921,7 +5910,7 @@ msgstr "Kreirano prilagođeno polje {0} u {1}" msgid "Created On" msgstr "Kreirano na" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "Kreiranje {0}" @@ -6230,7 +6219,7 @@ msgstr "Prilagođena get_list metoda za {0} mora vratiti QueryBuilder objekat il #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "Prilagođeni?" @@ -6258,14 +6247,14 @@ msgstr "Resetuj prilagođavanje" msgid "Customizations for {0} exported to:
    {1}" msgstr "Prilagođavanje za {0} su izvezena:
    {1}" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "Prilagodi" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "Prilagodi" @@ -6284,7 +6273,7 @@ msgstr "Prilagodi kontrolnu tablu" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "Prilagodi obrazac" @@ -6362,7 +6351,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:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "Dnevni događaji treba da se završe istog dana." @@ -6409,7 +6398,7 @@ msgstr "Tamna tema" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "Kontrolna tabla" @@ -6468,7 +6457,6 @@ msgstr "Kontrolne table" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6481,7 +6469,6 @@ msgstr "Kontrolne table" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6517,7 +6504,7 @@ msgstr "Evidencija uvoza podataka" msgid "Data Import Template" msgstr "Šablon za uvoz podatka" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "Podaci su preobimni" @@ -6548,7 +6535,7 @@ msgstr "Iskorišćenost veličine reda baze podataka" msgid "Database Storage Usage By Tables" msgstr "Iskorišćenost prostora baze podataka po tabelama" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "Ograničenje veličine reda tabele baze podataka" @@ -6686,11 +6673,11 @@ msgstr "Poštovani/na {0}" msgid "Debug Log" msgstr "Debug evidencija" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "Decimalni separator mora biti tačka '.' kada navodnik nije podešen kao numerički" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "Decimalni separator mora biti jedan znak" @@ -6852,11 +6839,11 @@ msgstr "Podrazumevani radni prostor" msgid "Default display currency" msgstr "Podrazumevana valuta za prikaz" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 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:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 msgid "Default value for {0} must be in the list of options." msgstr "Podrazumevana vrednost za {0} mora biti u listi opcija." @@ -6890,6 +6877,12 @@ msgstr "Podrazumevane vrednosti ažurirane" msgid "Defines actions on states and the next step and allowed roles." msgstr "Definiše radnje za stanje, sledeći korak i dozvoljene uloge." +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "Definiše koliko dugo se izveštaji poslati putem imejla čuvaju u sistemu. Stariji fajlovi će biti automatski obrisani." + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6907,22 +6900,27 @@ 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/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Obriši" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Obriši" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "Obriši" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "Obriši nalog" @@ -6931,6 +6929,12 @@ msgstr "Obriši nalog" 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 +msgid "Delete Background Exported Reports After (Hours)" +msgstr "Obriši izveštaje iz pozadinskog izvoza nakon (sati)" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6940,7 +6944,7 @@ msgstr "Obriši kolonu" msgid "Delete Data" msgstr "Obriši podatke" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "Obriši Kanban tablu" @@ -6954,7 +6958,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Obriši karticu" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "Obriši i generiši novi" @@ -6963,7 +6967,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "Obriši kolonu" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "Obriši komentar?" @@ -6996,12 +7000,12 @@ msgstr "Obriši karticu" msgid "Delete this record to allow sending to this email address" msgstr "Obriši ovaj zapis da bi omogućio slanje na ovu imejl adresu" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "Trajno obriši {0} stavku?" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Trajno obriši {0} stavke?" @@ -7037,11 +7041,15 @@ msgstr "Obrisani dokumenti" msgid "Deleted Name" msgstr "Obrisani naziv" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "Svi dokumenti su uspešno obrisani" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Obrisano!" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "Brisanje {0}" @@ -7056,8 +7064,8 @@ msgstr "Brisanje {0}..." #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " -msgstr "Koraci za brisanje " +msgid "Deletion Steps" +msgstr "Koraci za brisanje" #: frappe/core/doctype/page/page.py:110 #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 @@ -7073,7 +7081,7 @@ msgstr "Opcije za razdvajanje" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "Detekcija za razdvajanje nije uspela. Pokušajte da omogućite prilagođene razdelnike i prilagodite opcije razdvajanja prema Vašim podacima." -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "Razdelnik mora biti jedan karakter" @@ -7100,7 +7108,7 @@ msgstr "Odeljenje" msgid "Dependencies" msgstr "Zavisnosti" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "Zavisnosti i licence" @@ -7135,7 +7143,6 @@ msgstr "Izvedeni od (sa izvorom)" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -7156,7 +7163,6 @@ msgstr "Izvedeni od (sa izvorom)" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -7166,11 +7172,6 @@ msgstr "Izvedeni od (sa izvorom)" msgid "Description" msgstr "Opis" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "Opis za stranicu sa listom, u običnom tekstu, samo par redova (maksimalno 200 karaktera)" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -7254,7 +7255,7 @@ msgstr "Ikonica radne površine već postoji" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "Detalji" @@ -7315,11 +7316,6 @@ msgstr "Onemogući obaveštenje o izmenama" msgid "Disable Comment Count" msgstr "Onemogući broj komentara" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "Onemogući komentare" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7337,11 +7333,6 @@ msgstr "Onemogući brojanje" msgid "Disable Document Sharing" msgstr "Onemogući deljenje dokumenta" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "Onemogući lajkove" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "Onemogući izveštaj" @@ -7351,6 +7342,11 @@ msgstr "Onemogući izveštaj" msgid "Disable SMTP server authentication" msgstr "Onemogući SMTP server autentifikaciju" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "Onemogući skrolovanje" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7396,7 +7392,6 @@ msgstr "Onemogući prijavljivanja" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7411,7 +7406,6 @@ msgstr "Onemogući prijavljivanja" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "Onemogućeno" @@ -7422,7 +7416,7 @@ msgstr "Onemogući automatski odgovor" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "Odbaci" @@ -7440,7 +7434,7 @@ msgstr "Odbaci" msgid "Discard {0}" msgstr "Odbaci {0}" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "Odbaci?" @@ -7463,7 +7457,7 @@ msgstr "Odgovor na diskusiju" msgid "Discussion Topic" msgstr "Tema diskusije" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7499,19 +7493,23 @@ msgstr "Razdelnik" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " -msgstr "Nemoj kreirati novog korisnika " +msgid "Do Not Create New User" +msgstr "Nemoj kreirati novog korisnika" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "Nemoj kreirati novog korisnika ukoliko korisnik sa tim imejlom ne postoji u sistemu" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 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 +msgid "Do not warn me again about {0}" +msgstr "Ne upozoravaj me više na {0}" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "Da li još uvek želite da nastavite?" @@ -7605,7 +7603,7 @@ msgstr "Status dokumenta sledećih stanja je promenjen:
    {0}< msgid "DocType" msgstr "DocType" -#: frappe/core/doctype/doctype/doctype.py:1577 +#: frappe/core/doctype/doctype/doctype.py:1578 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" @@ -7652,11 +7650,11 @@ msgstr "DocType stanje" msgid "DocType View" msgstr "DocType prikaz" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "DocType ne može biti spojen" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "DocType može biti preimenovan samo od strane administratora" @@ -7665,7 +7663,7 @@ msgstr "DocType može biti preimenovan samo od strane administratora" msgid "DocType is a Table / Form in the application." msgstr "DocType je tabela / obrazac u aplikaciji." -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "DocType mora biti podložan podnošenju za odabrani događaj dokumenta" @@ -7698,7 +7696,7 @@ msgstr "DocType {0} ne postoji." msgid "DocType {} not found" msgstr "DocType {} nije pronađen" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "Naziv DocType-a ne sme počinjati ili završavati se razmakom" @@ -7712,7 +7710,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:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "Doctype naziv je ograničen na {0} karaktera ({1})" @@ -7774,31 +7772,29 @@ msgstr "Povezivanje dokumenta" msgid "Document Links" msgstr "Linkovi dokumenta" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 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:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 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:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 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:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 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" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7940,13 +7936,13 @@ msgstr "Naslov dokumenta" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "Vrsta dokumenta" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 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" @@ -7983,7 +7979,7 @@ msgid "Document Types and Permissions" msgstr "Vrste i dozvole dokumenta" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "Dokument je otključan" @@ -7991,15 +7987,15 @@ msgstr "Dokument je otključan" 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:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "Dokument je otkazan" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "Dokument je podnet" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "Dokument u stanju nacrta" @@ -8141,13 +8137,13 @@ msgstr "Kružni" msgid "Double click to edit label" msgstr "Klikni dva puta da urediš oznaku" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "Preuzmi" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "Preuzmi" @@ -8174,7 +8170,7 @@ msgstr "Preuzmi link" msgid "Download PDF" msgstr "Preuzmi PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "Preuzmi izveštaj" @@ -8237,7 +8233,7 @@ msgstr "Prevuci elemente sa bočne trake da ih dodaš. Prevuci ih nazad da ih uk msgid "Drag to add state" msgstr "Prevuci da dodaš stanje" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "Otpusti fajlove ovde" @@ -8270,7 +8266,7 @@ msgstr "Duplikat unosa" msgid "Duplicate Filter Name" msgstr "Duplikat naziv filtera" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "Duplikat naziva" @@ -8369,17 +8365,17 @@ msgstr "IZLAZ" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8387,7 +8383,7 @@ msgstr "IZLAZ" msgid "Edit" msgstr "Uredi" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Uredi" @@ -8397,7 +8393,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Uredi" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "Uredi" @@ -8426,7 +8422,7 @@ msgstr "Uredi prilagođeni HTML" msgid "Edit DocType" msgstr "Uredi DocType" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Uredi DocType" @@ -8444,7 +8440,7 @@ msgstr "Uredi filtere" msgid "Edit Footer" msgstr "Uredi podnožje" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "Uredi format" @@ -8529,7 +8525,7 @@ msgstr "Uredi {0} Doctype" msgid "Edit to add content" msgstr "Uredi da bi dodao sadržaj" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "Uredite Vaš odgovor" @@ -8538,7 +8534,7 @@ msgstr "Uredite Vaš odgovor" msgid "Edit your workflow visually using the Workflow Builder." msgstr "Vizualno uredite svoj radni tok pomoću uređivača radnog toka." -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "Uredi {0}" @@ -8546,7 +8542,7 @@ msgstr "Uredi {0}" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "Tabela koja se može uređivati" @@ -8585,11 +8581,14 @@ msgstr "Izbor elementa" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8598,6 +8597,7 @@ msgstr "Izbor elementa" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8607,6 +8607,8 @@ msgstr "Izbor elementa" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "Imejl" @@ -8638,7 +8640,7 @@ msgstr "Imejl nalog onemogućen." msgid "Email Account Name" msgstr "Naziv imejl naloga" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "Imejl nalog je dodat više puta" @@ -8726,6 +8728,7 @@ msgid "Email IDs" msgstr "Imejl ID" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "Imejl ID" @@ -8757,7 +8760,7 @@ msgstr "Zapisi u redu čekanja za imejlove." #. 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 "Pomoć za odgovor na imejl" +msgstr "Pomoć pri odgovoru na imejl" #. Label of the email_retry_limit (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -8769,10 +8772,10 @@ msgstr "Ograničenje ponovnih pokušaja za imejl" msgid "Email Rule" msgstr "Imejl pravilo" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" -msgstr "Imejl poslat" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" +msgstr "Imejl poslat u" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType @@ -8837,11 +8840,11 @@ msgstr "Imejl je označen kao spam" msgid "Email has been moved to trash" msgstr "Imejl je premešten u otpad" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "Imejl je obavezan za kreiranje korisničkog imejla" -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "Imejl nije poslat {0} (otkazana pretplata / onemogućeno)" @@ -8880,7 +8883,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:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "Prazan pseudonim nije dozvoljen" @@ -8888,7 +8891,7 @@ msgstr "Prazan pseudonim nije dozvoljen" msgid "Empty column" msgstr "Prazna kolona" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "Argumenti kao prazan tekst nisu dozvoljeni" @@ -8907,7 +8910,7 @@ msgstr "Omogući" msgid "Enable Address Autocompletion" msgstr "Omogući automatsko dovršavanje adrese" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "Omogući dozvolu za automatsko ponavljanje za doctype {0} u polju prilagodi obrazac" @@ -8933,11 +8936,6 @@ msgstr "Omogući komentare" msgid "Enable Dynamic Client Registration" msgstr "Omogući dinamičku registraciju klijenta" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "Omogući imejl obaveštenje" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -9031,11 +9029,6 @@ msgstr "Omogući bezbednost" msgid "Enable Social Login" msgstr "Omogući prijavljivanje putem društvenih mreža" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "Omogući deljenje putem društvenih mreža" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "Omogući praćenje pregleda stranica" @@ -9043,7 +9036,7 @@ msgstr "Omogući praćenje pregleda stranica" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "Omogući dvofaktorsku verifikaciju" @@ -9055,12 +9048,6 @@ msgstr "Omogući kreiranje standardnog šablona za štampu u razvojnom režimu" msgid "Enable developer mode to create a standard Web Template" msgstr "Omogući kreiranje standardnog veb-šablona u razvojnom režimu" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "Omogući obaveštenje putem imejla za svaki komentar ili lajk na Vašoj objavi na blogu." - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -9084,6 +9071,7 @@ msgstr "Omogući praćenje veb-sajta unutar aplikacije" #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -9096,6 +9084,7 @@ msgstr "Omogući praćenje veb-sajta unutar aplikacije" #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "Omogućeno" @@ -9121,15 +9110,11 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "Omogućavanje automatskog odgovora na ulazne imejlove će automatski slati odgovore na sve sinhronizovane imejlove. Da li želite da nastavite?" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "Omogućavanjem ovoga registrujete Vaš veb-sajt na centralnom serveru za slanje obaveštenja za sve instalirane aplikacije putem Firebase Cloud Messaging-a. Ovaj server čuva samo tokene korisnika i evidencije grešaka, dok se poruke ne čuvaju." - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " -msgstr "Omogućavanjem ovoga registrujete Vaš veb-sajt na centralnom serveru za slanje obaveštenja za sve instalirane aplikacije putem Firebase Cloud Messaging-a. Ovaj server čuva samo tokene korisnika i evidencije grešaka, dok se poruke ne čuvaju. " +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "Omogućavanjem ovoga registrujete Vaš veb-sajt na centralnom serveru za slanje obaveštenja za sve instalirane aplikacije putem Firebase Cloud Messaging-a. Ovaj server čuva samo tokene korisnika i evidencije grešaka, dok se poruke ne čuvaju." #. Description of the 'Queue in Background (BETA)' (Check) field in DocType #. 'DocType' @@ -9145,11 +9130,11 @@ msgstr "Omogućavanjem ovoga će se podneti dokumenti u pozadini" msgid "Encrypt Backups" msgstr "Šifriraj rezervne kopije" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "Ključ za šifrovanje je u nevažećem formatu!" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "Ključ za šifrovanje je nevažeći! Molimo Vas da proverite site_config.json" @@ -9161,7 +9146,7 @@ msgstr "Kraj" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -9177,6 +9162,10 @@ msgstr "Polje datuma završetka" msgid "End Date cannot be before Start Date!" msgstr "Datum završetka ne može biti pre datuma početka!" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "Datum završetka ne može biti današnji datum." + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9221,7 +9210,7 @@ msgstr "Unesite klijentski ID i tajnu klijenta u Google podešavanja." msgid "Enter Code displayed in OTP App." msgstr "Unesite šifru prikazanu u aplikaciji za jednokratnu lozinku." -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "Unesite primaoce imejla" @@ -9291,10 +9280,17 @@ msgstr "Jednako" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9304,7 +9300,7 @@ msgstr "Jednako" msgid "Error" msgstr "Greška" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "Greška" @@ -9324,7 +9320,7 @@ msgstr "Evidencije grešaka" msgid "Error Message" msgstr "Poruka o grešci" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 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.." @@ -9352,9 +9348,9 @@ msgstr "Greška u klijentskoj skripti." msgid "Error in Header/Footer Script" msgstr "Greška u skripti zaglavlja/podnožja" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "Greška u obaveštenju" @@ -9374,19 +9370,19 @@ msgstr "Greška prilikom obrade ugnježdenih filtera: {0}" msgid "Error while connecting to email account {0}" msgstr "Greška pri povezivanju sa imejl nalogom {0}" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Greška pri obradi obaveštenja {0}. Molimo Vas da ispravite Vaš šablon." -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "Greška: Podaci nedostaju u tabeli {0}" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "Greška: Vrednost nedostaje za {0}: {1}" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "Greška: {0} Red #{1}: Vrednost nedostaje za: {2}" @@ -9443,7 +9439,7 @@ msgstr "Vrsta događaja" msgid "Events" msgstr "Događaji" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "Događaji u današnjem kalendaru" @@ -9527,7 +9523,7 @@ msgstr "Izvrši" msgid "Execute Console script" msgstr "Izvrši skriptu u konzoli" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "Izvršavanje koda" @@ -9535,7 +9531,7 @@ msgstr "Izvršavanje koda" msgid "Executing..." msgstr "Izvršavanje..." -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "Vreme izvršavanja: {0} sekundi" @@ -9561,12 +9557,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Proširi" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Proširi sve" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "Očekivan je operator 'and' ili 'or', pronađeno: {0}" @@ -9594,7 +9590,9 @@ msgid "Expire Notification On" msgstr "Istek obaveštenja na" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "Isteklo" @@ -9622,13 +9620,13 @@ msgstr "Vreme isteka stranica sa QR kodom" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Izvoz" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Izvoz" @@ -9665,7 +9663,7 @@ msgstr "Izvoz iz" msgid "Export Import Log" msgstr "Evidencija uvoza i izvoza" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "Izvoz izveštaja: {0}" @@ -9674,11 +9672,11 @@ msgstr "Izvoz izveštaja: {0}" msgid "Export Type" msgstr "Vrsta izvoza" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "Izvoz svih redova koji se podudaraju?" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "Izvoz svih {0} redova?" @@ -9686,6 +9684,10 @@ msgstr "Izvoz svih {0} redova?" msgid "Export as zip" msgstr "Izvoz kao zip" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "Izvoz u pozadini" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "Izvoz nije dozvoljen. Neophodna je uloga {0} za izvoz." @@ -9773,7 +9775,7 @@ msgstr "Neuspešno" #. Label of the failed_emails (Int) field in DocType 'System Health Report' #: frappe/desk/doctype/system_health_report/system_health_report.json msgid "Failed Emails" -msgstr "Neuspešn imejlovi" +msgstr "Neuspešni imejlovi" #. Label of the failed_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json @@ -9791,7 +9793,7 @@ msgstr "Neuspešni zadaci" msgid "Failed Logins (Last 30 days)" msgstr "Neuspešne prijave (poslednjih 30 dana)" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "Neuspešne transakcije" @@ -9808,7 +9810,7 @@ msgstr "Neuspešna promena lozinke." msgid "Failed to complete setup" msgstr "Neuspešno završavanje postavke" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "Neuspešno izračunavanje tela zahteva: {}" @@ -9817,15 +9819,15 @@ msgstr "Neuspešno izračunavanje tela zahteva: {}" msgid "Failed to connect to server" msgstr "Neuspešno povezivanje sa serverom" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "Neuspešno dekodiranje tokena, molimo Vas da pružite validan base64-enkodirani token." -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "Neuspešno dešifrovanje ključa {0}" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "Neuspešno brisanje {0} dokumenata: {1}" @@ -9833,8 +9835,8 @@ msgstr "Neuspešno brisanje {0} dokumenata: {1}" msgid "Failed to enable scheduler: {0}" msgstr "Neuspešno omogućavanje planera: {0}" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "Neuspešna evaluacija uslova: {}" @@ -9850,7 +9852,7 @@ msgstr "Neuspešno generisanje naziva iz serija" msgid "Failed to generate preview of series" msgstr "Neuspešno generisanje pregleda serija" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "Neuspešno dobiti metodu za komandu {0} sa {1}" @@ -9870,11 +9872,11 @@ msgstr "Neuspešan pokušaj uvoza virtuelnog doctype {}, da li je fajl kontroler msgid "Failed to optimize image: {0}" msgstr "Neuspešno optimizovanje slike: {0}" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "Neuspešno renderovanje poruke: {0}" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "Nije moguće prikazati naslov: {0}" @@ -9924,12 +9926,6 @@ msgstr "FavIcon" msgid "Fax" msgstr "Faks" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "Istaknuto" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "Povratna informacija" @@ -9987,17 +9983,17 @@ msgstr "Preuzmi podrazumevane dokumente za globalnu pretragu." #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "Polje" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" msgstr "Polje \"putanja\" je obavezno za veb-prikaze" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 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\"." @@ -10010,7 +10006,7 @@ msgstr "Polje \"vrednost\" je obavezno. Molimo Vas da navedete vrednost koja tre msgid "Field Description" msgstr "Opis polja" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "Polje nedostaje" @@ -10040,7 +10036,7 @@ msgstr "Šablon polja" msgid "Field Type" msgstr "Vrsta polja" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "Polje nije dozvoljeno u redu" @@ -10066,11 +10062,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/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "Polje {0} nije pronađeno." -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "Polje {0} u dokumentu {1} nije ni polje za mobilni broj, ni link za kupca ili korisnika" @@ -10088,20 +10084,20 @@ 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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "Naziv polja" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 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:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "Naziv polja {0} mora postojati da bi se omogućilo automatsko imenovanje" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "Naziv polja je ograničen na 64 karaktera ({0})" @@ -10117,15 +10113,15 @@ msgstr "Naziv polja koje će biti DocType za ovo link polje." msgid "Fieldname {0} appears multiple times" msgstr "Naziv polja {0} se pojavljuje više puta" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 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:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "Naziv polje {0} je u konfliktu sa meta objektom" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "Naziv polja {0} je ograničen" @@ -10148,7 +10144,7 @@ msgstr "Naziv polja {0} je ograničen" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -10161,7 +10157,7 @@ msgstr "Polja" msgid "Fields Multicheck" msgstr "Polja za više označavanja" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "Polja `file_name` ili `file_url` moraju biti postavljena za fajl" @@ -10169,7 +10165,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:611 +#: frappe/database/query.py:613 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" @@ -10197,7 +10193,7 @@ msgstr "Vrsta polja" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "Vrsta polja ne može biti promenjena sa {0} na {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "Vrsta polja ne može biti promenjena sa {0} na {1} u redu {2}" @@ -10210,7 +10206,7 @@ msgstr "Vrsta polja ne može biti promenjena sa {0} na {1} u redu {2}" msgid "File" msgstr "Fajl" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "Fajl \"{0}\" je preskočen zbog nevažeće vrste fajla" @@ -10263,28 +10259,28 @@ msgstr "URL fajla" msgid "File backup is ready" msgstr "Rezervna kopija fajla je spremna" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" -msgstr "Naziv fajle ne može sadržati {0}" +msgstr "Naziv fajla ne može sadržati {0}" #: frappe/utils/csvutils.py:28 msgid "File not attached" msgstr "Fajl nije priložen" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" -msgstr "Veličina fajla je premašila maskimalnu dozvoljenu veličinu od {0} MB" +msgstr "Veličina fajla je premašila maksimalnu dozvoljenu veličinu od {0} MB" #: frappe/public/js/frappe/request.js:198 msgid "File too big" msgstr "Fajl je preveliki" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "Vrsta fajla {0} nije dozvoljena" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "Fajl {0} ne postoji" @@ -10298,10 +10294,10 @@ msgstr "Fajlovi" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10338,11 +10334,11 @@ msgstr "Filter naziva" msgid "Filter Values" msgstr "Filter vrednosti" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "Nedostaje uslov filtera nakon operatora: {0}" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "Polja filtera ne mogu sadržati backticks (`)." @@ -10360,7 +10356,6 @@ msgstr "Filtrirano po" msgid "Filtered Records" msgstr "Filtrirani zapisi" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "Filtrirani po \"{0}\"" @@ -10375,7 +10370,9 @@ msgstr "Filtrirani po \"{0}\"" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10397,6 +10394,11 @@ msgstr "Konfiguracija filtera" msgid "Filters Display" msgstr "Prikaz filtera" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "Uređivač filtera" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10409,11 +10411,11 @@ msgstr "JSON filtera" msgid "Filters Section" msgstr "Odeljak filtera" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "Filteri primenjeni za {0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "Filteri sačuvani" @@ -10426,18 +10428,18 @@ msgstr "Filteri će biti dostupni putem filtera.

    Pošalji i msgid "Filters {0}" msgstr "Filteri {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:1427 +#: frappe/public/js/frappe/views/reports/report_view.js:1429 msgid "Filters:" msgstr "Filteri:" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 msgid "Find '{0}' in ..." msgstr "Pronađi '{0}' u ..." #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 msgid "Find {0} in {1}" msgstr "Pronađi {0} u {1}" @@ -10461,8 +10463,12 @@ msgstr "Prvi dan u nedelji" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "Ime" @@ -10471,10 +10477,6 @@ msgstr "Ime" msgid "First Success Message" msgstr "Prva poruka o uspehu" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:49 -msgid "First Transaction" -msgstr "Prva transakcija" - #: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." msgstr "Prva kolona sa podacima mora biti prazna." @@ -10525,11 +10527,11 @@ msgstr "Preciznost decimale" msgid "Fold" msgstr "Sklopi" -#: frappe/core/doctype/doctype/doctype.py:1450 +#: frappe/core/doctype/doctype/doctype.py:1451 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:1448 +#: frappe/core/doctype/doctype/doctype.py:1449 msgid "Fold must come before a Section Break" msgstr "Sklapanje mora biti pre preloma odeljka" @@ -10547,7 +10549,7 @@ msgstr "Naziv datoteke" msgid "Folder name should not include '/' (slash)" msgstr "Naziv datoteke ne bi trebalo da uključuje '/' (kosu crtu)" -#: frappe/core/doctype/file/file.py:472 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "Datoteka {0} nije prazna" @@ -10652,11 +10654,11 @@ msgstr "Detalji podnožja" #. Label of the footer (HTML Editor) field in DocType 'Letter Head' #: frappe/printing/doctype/letter_head/letter_head.json msgid "Footer HTML" -msgstr "HMTL podnožja" +msgstr "HTML podnožje" -#: frappe/printing/doctype/letter_head/letter_head.py:75 +#: frappe/printing/doctype/letter_head/letter_head.py:81 msgid "Footer HTML set from attachment {0}" -msgstr "HMTL podnožja postavljen iz priloga {0}" +msgstr "HTML podnožje postavljeno iz priloga {0}" #. Label of the footer_image_section (Section Break) field in DocType 'Letter #. Head' @@ -10691,7 +10693,7 @@ msgstr "Šablon podnožja" msgid "Footer Template Values" msgstr "Vrednosti šablona podnožja" -#: frappe/printing/page/print/print.js:116 +#: frappe/printing/page/print/print.js:129 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" @@ -10732,7 +10734,7 @@ msgstr "Na primer: {} otvoren" 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 opciju, svaku u novom redu." +"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' @@ -10750,14 +10752,14 @@ msgstr "Za korisnika" msgid "For Value" msgstr "Za vrednost" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 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." +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:" @@ -10777,12 +10779,6 @@ msgstr "Na primer: {} otvoren" msgid "For help see Client Script API and Examples" msgstr "Za pomoć pogledajte API za klijentske skripte i primeri" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "Za više informacija , kliknite ovde." - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "Za više informacija, {0}." @@ -10797,7 +10793,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:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "Za {0} na nivou {1} u {2} u redu {3}" @@ -10852,7 +10848,7 @@ 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:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "Obrazac" @@ -10912,6 +10908,11 @@ msgstr "Format" msgid "Format Data" msgstr "Formatiraj podatke" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "Na svake dve nedelje" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "Prosledi" @@ -10939,7 +10940,15 @@ msgstr "Jedinica frakcije" msgid "Frappe" msgstr "Frappe" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "Frappe Blog" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "Frappe Forum" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "Frappe Framework" @@ -11028,7 +11037,7 @@ msgstr "Datum početka" msgid "From Date Field" msgstr "Polje za datum početka" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "Od vrste dokumenta" @@ -11055,18 +11064,16 @@ msgstr "Cela stranica" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "Ime i prezime" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "Cela stranica" @@ -11092,13 +11099,13 @@ msgstr "Funkcija zasnovana na" msgid "Function {0} is not whitelisted." msgstr "Funkcija {0} nije na listi dozvoljenih." -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "Funkcija {0} zahteva argumente, ali ni jedan nije naveden" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" -msgstr "Dalje čvorove je moguće kreirati samo u okviru čvorova vrste 'Grupa'" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "Dalje podgrupe mogu se kreirati samo unutar zapisa označenih kao 'Grupa'" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -11157,7 +11164,7 @@ msgstr "Opšte" msgid "Generate Keys" msgstr "Generiši ključeve" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "Generiši novi izveštaj" @@ -11165,8 +11172,14 @@ msgstr "Generiši novi izveštaj" msgid "Generate Random Password" msgstr "Generiši nasumičnu lozinku" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "Generiši odvojene dokumente za svakog dodeljenog korisnika" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "Generiši URL za praćenje" @@ -11189,7 +11202,7 @@ msgstr "Geolokacija" msgid "Geolocation Settings" msgstr "Podešavanje geolokacije" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "Prikaži današnja obaveštenja" @@ -11325,7 +11338,7 @@ msgid "Go to this URL after completing the form" msgstr "Idite na ovu URL adresu nakon što završite obrazac" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "Idi na {0}" @@ -11373,13 +11386,9 @@ msgstr "Anonimizuj IP adresu u Google Analytics" msgid "Google Calendar" msgstr "Google Calendar" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
    {0}" -msgstr "Google Calendar - Kontakt / imejl nije pronađen. Nije dodat učesnik za -
    {0}" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." -msgstr "Google Calendar - Nije moguće kreirati kalendar za {0}, kod greška {1}." +msgstr "Google Calendar - Nije moguće kreirati kalendar za {0}, kod greške {1}." #: frappe/integrations/doctype/google_calendar/google_calendar.py:610 msgid "Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}." @@ -11495,11 +11504,6 @@ msgstr "URL Google Sheets-a nije ispravan ili nije javno dostupan." msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "URL Google Sheets-a mora da se završava sa \"gid={number}\". Kopiraj i nalepi URL iz adresne trake internet pretraživača i pokušaj ponovo." -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "Pregled Google Snippet-a" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11576,14 +11580,10 @@ msgstr "Vrsta Grupisano po" msgid "Group By field is required to create a dashboard chart" msgstr "Polje Grupisano po je neophodno za kreiranje grafikona na kontrolnoj tabli" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "Grupisano po mora biti tekst" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "Čvor grupe" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11633,7 +11633,6 @@ msgstr "HH:mm:ss" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11644,9 +11643,8 @@ msgstr "HH:mm:ss" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11750,7 +11748,7 @@ msgstr "Zaglavlje" msgid "Header HTML" msgstr "HTML zaglavlje" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "HTML zaglavlje postavljeno iz priloga {0}" @@ -11808,6 +11806,12 @@ msgstr "Toplotna mapa" msgid "Hello" msgstr "Zdravo" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "Zdravo," + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11873,7 +11877,7 @@ msgstr "Helvetica" msgid "Helvetica Neue" msgstr "Helvetica Neue" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "Evo Vašeg URL za praćenje" @@ -11909,7 +11913,7 @@ msgstr "Sakriveno" msgid "Hidden Fields" msgstr "Sakrivena polja" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "Sakrivene kolone uključuju: {0}" @@ -11942,11 +11946,6 @@ msgstr "Sakrij granicu" msgid "Hide Buttons" msgstr "Sakrij dugmad" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "Sakrij poziv na radnju" - #. 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 @@ -11996,7 +11995,7 @@ msgstr "Sakrij prijavljivanje" #: frappe/public/js/form_builder/form_builder.bundle.js:43 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 msgid "Hide Preview" -msgstr "Sakrij pregeld" +msgstr "Sakrij pregled" #. Description of the 'Hide Buttons' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json @@ -12026,7 +12025,7 @@ msgstr "Sakrij bočnu traku, meni i komentare" msgid "Hide Standard Menu" msgstr "Sakrij standardni meni" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "Sakrij oznake" @@ -12040,7 +12039,7 @@ msgstr "Sakrij vikende" msgid "Hide descendant records of For Value." msgstr "Sakrij potomke zapisa za Vrednost." -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "Sakrij detalje" @@ -12089,11 +12088,8 @@ 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:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -12181,16 +12177,16 @@ msgstr "Izgleda da još uvek nemaš pristup nijednom radnom prostoru, uvek može #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "ID" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "ID" @@ -12286,9 +12282,9 @@ 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:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "Ukoliko je vlasnik" @@ -12416,6 +12412,10 @@ msgstr "Ukoliko korisnik ima označenu bilo koju ulogu, postaje \"Sistemski kori 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." +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "Ukoliko je ovo bila greška ili Vam je ponovo neophodan pristup, obratite se svom timu." + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12447,7 +12447,11 @@ msgstr "Ukoliko otpremate nove zapise, \"Serije imenovanja\" postaju obavezne, u msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "Ukoliko otpremate nove zapise, ostavite kolonu \"naziv\" (ID) praznu." -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "Ukoliko imate bilo kakvih pitanja, obratite se svom sistem administratoru." + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "Ukoliko ste nedavno vratili sajt iz rezervne kopije, možda ćete morati da kopirate site_config.json koji sadrži originalni ključ za šifrovanje." @@ -12504,12 +12508,12 @@ msgstr "Ignoriši priloge veće od ove veličine" msgid "Ignored Apps" msgstr "Ignorisane aplikacije" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "Nevažeći status dokumenta za {0}" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "Nevažeći SQL upit" @@ -12570,11 +12574,11 @@ msgstr "Pregled slike" msgid "Image Width" msgstr "Širina slike" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 msgid "Image field must be a valid fieldname" msgstr "Polje slike mora biti važeći naziv polja" -#: frappe/core/doctype/doctype/doctype.py:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "Polje slike mora biti vrste Priloži sliku" @@ -12596,15 +12600,15 @@ msgstr "Slike" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "Zameni identitet" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "Zameni identitet kao {0}" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "Identitet je zamenjen od strane {0}" @@ -12630,7 +12634,7 @@ msgstr "Implicitno" msgid "Import" msgstr "Uvoz" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "Uvoz" @@ -12858,15 +12862,16 @@ msgstr "Uključi temu iz aplikacija" msgid "Include Web View Link in Email" msgstr "Uključi link ka veb-prikazu u imejlu" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "Uključi filtere" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "Uključi sakrivene kolone" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "Uključi indentaciju" @@ -12913,7 +12918,7 @@ msgstr "Nalog za ulaznu poštu nije ispravan" msgid "Incomplete Virtual Doctype Implementation" msgstr "Nepotpuna implementacija virtuelnog DocType-a" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "Nepotpuni podaci za prijavu" @@ -12925,7 +12930,7 @@ msgstr "Neispravna konfiguracija" msgid "Incorrect URL" msgstr "Neispravan URL" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "Pogrešno korisničko ime ili lozinka" @@ -12933,11 +12938,11 @@ msgstr "Pogrešno korisničko ime ili lozinka" msgid "Incorrect Verification code" msgstr "Pogrešan verifikacioni kod" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "Pogrešna vrednost u redu {0}:" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "Pogrešna vrednost:" @@ -12949,7 +12954,7 @@ msgstr "Pogrešna vrednost:" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "Indeks" @@ -13024,7 +13029,7 @@ msgstr "Unesi iznad" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "Unesi nakon" @@ -13040,7 +13045,7 @@ msgstr "Polje za unos nakon polja '{0}' pomenutog u prilagođenom polju '{1}', s msgid "Insert Below" msgstr "Unesi pre" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "Unesi kolonu pre {0}" @@ -13058,8 +13063,12 @@ msgstr "Unesi nove zapisa" msgid "Insert Style" msgstr "Unesi stil" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "Instagram" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "Instaliraj {0} iz prodavnice" @@ -13076,7 +13085,7 @@ msgid "Installed Applications" msgstr "Instalirane aplikacije" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "Instalirane aplikacije" @@ -13091,21 +13100,21 @@ msgstr "Uputstva poslata imejlom" #: frappe/permissions.py:840 msgid "Insufficient Permission Level for {0}" -msgstr "Nedovoljan nivo ovlašćena za {0}" +msgstr "Nedovoljan nivo ovlašćenja za {0}" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" -msgstr "Nedovoljna ovlašćena za {0}" +msgstr "Nedovoljna ovlašćenja za {0}" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" -msgstr "Nedovoljna ovlašćena za brisanje izveštaja" +msgstr "Nedovoljna ovlašćenja za brisanje izveštaja" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" -msgstr "Nedovoljna ovlašćena za uređivanje izveštaja" +msgstr "Nedovoljna ovlašćenja za uređivanje izveštaja" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "Premašen dozvoljeni broj priloga" @@ -13209,9 +13218,9 @@ msgid "Invalid" msgstr "Nevažeće" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "Nevažeći \"depends_on\" izraz" @@ -13219,9 +13228,9 @@ msgstr "Nevažeći \"depends_on\" izraz" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "Nevažeći \"depends_on\" izraz postavljen u filteru {0}" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" -msgstr "Nevažeči \"mandatory_depends_on\" izraz" +msgstr "Nevažeći \"mandatory_depends_on\" izraz" #: frappe/utils/nestedset.py:178 msgid "Invalid Action" @@ -13235,7 +13244,7 @@ msgstr "Nevažeći CSV format" msgid "Invalid Code. Please try again." msgstr "Nevažeća šifra. Molimo Vas da pokušate ponovo." -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "Nevažeći uslov: {}" @@ -13255,16 +13264,20 @@ msgstr "Nevažeći DocType" msgid "Invalid DocType: {0}" msgstr "Nevažeći DocType: {0}" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "Nevažeći DocType" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "Nevažeći naziv polja" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "Nevažeći URL fajla" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "Nevažeći filter" @@ -13296,7 +13309,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:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "Nevažeća serija imenovanja: {}" @@ -13305,8 +13318,8 @@ msgstr "Nevažeća serija imenovanja: {}" msgid "Invalid Operation" msgstr "Nevažeća operacija" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "Nevažeća opcija" @@ -13318,25 +13331,25 @@ 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:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "Nevažeća izmena" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "Nevažeći parametri." -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "Nevažeća lozinka" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "Nevažeći broj telefona" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "Nevažeći zahtev" @@ -13345,7 +13358,7 @@ msgstr "Nevažeći zahtev" msgid "Invalid Search Field {0}" msgstr "Nevažeće polje pretrage {0}" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "Nevažeći naziv polja tabele" @@ -13353,8 +13366,8 @@ msgstr "Nevažeći naziv polja tabele" msgid "Invalid Transition" msgstr "Nevažeće tranzicija" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13368,47 +13381,51 @@ msgstr "Nevažeće korisničko ime ili lozinka za podršku. Ispravite i pokušaj msgid "Invalid Values" msgstr "Nevažeće vrednosti" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "Nevažeća tajna za Webhook" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "Nevažeća agregatna funkcija" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "Nevažeći format pseudonima: {0}. Pseudonim mora biti jednostavan identifikator." -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "Nevažeća aplikacija" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "Nevažeći format argumenta: {0}. Dozvoljeni su samo navodnicima obuhvaćeni tekstovi ili jednostavni nazivi polja." -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "Nevažeća vrsta argumenta: {0}. Dozvoljeni su tekst, broj i None." -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "Nevažeći karakteri u nazivu polja: {0}. Dozvoljena su slova, brojevi i donje crte." -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "Nevažeći karakteri u nazivu tabele: {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "Nevažeća kolona" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "Nevažeća vrsta uslova u ugnježdenom filteru: {0}" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "Nevažeći smer u Sortiraj po: {0}. Mora biti 'RASTUĆE' ili 'OPADAJUĆE'." -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "Nevažeći status dokumenta" @@ -13420,31 +13437,27 @@ 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:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "Nevažeći format polja za SELECT: {0}. Nazivi polja moraju biti jednostavni, u okviru backtics, sa prefiksom tabele, sa pseudonimom ili '*'." -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "Nevažeći format polja u {0}: {1}. Koristite 'field', 'link_field.field', or 'child_table.field'." -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "Nevažeći naziv polja u funkciji: {0}. Dozvoljeni su samo jednostavni nazivi polja." -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "Nevažeći naziv polja {0}" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "Nevažeći naziv polja: {0}" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "Nevažeća vrsta polja: {0}" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "Nevažeći naziv polja '{0}' u automatskom imenovanju" @@ -13452,11 +13465,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:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "Nevažeći uslov filtera: {0}. Očekivana je lista ili tuple." -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 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'." @@ -13464,20 +13477,28 @@ 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:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "Nevažeća vrsta argumenta funkcije: {0}. Dozvoljeni su isključivo tekstovi, brojevi, liste i None." -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "Nevažeći format rečnika funkcije" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "Nevažeći unos" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "Nevažeći JSON dodat u prilagođene opcije: {0}" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "Nevažeći ključ" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "Nevažeća vrsta naziva (ceo broj) za kolonu sa nazivom tipa varchar" @@ -13485,6 +13506,10 @@ msgstr "Nevažeća vrsta naziva (ceo broj) za kolonu sa nazivom tipa varchar" msgid "Invalid naming series {}: dot (.) missing" msgstr "Nevažeća serija imenovanja {}: nedostaje tačka (.)" +#: frappe/model/naming.py:76 +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/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "Nevažeći ili oštećen sadržaj za uvoz" @@ -13493,19 +13518,27 @@ msgstr "Nevažeći ili oštećen sadržaj za uvoz" msgid "Invalid redirect regex in row #{}: {}" msgstr "Nevažeće preusmerenje regex funkcije u redu #{}: {}" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "Nevažeći argumenti zahteva" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "Nevažeće telo zahteva" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "Nevažeća uloga" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "Nevažeći jednostavni format filtera: {0}" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "Nevažeći početak uslova za filter: {0}. Očekivana je lista ili tuple." -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "Nevažeći format tekstualnog izraza: {0}" @@ -13513,7 +13546,7 @@ msgstr "Nevažeći format tekstualnog izraza: {0}" msgid "Invalid template file for import" msgstr "Nevažeći fajl šablona za uvoz" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "Nevažeće stanje tokena! Proverite da li je token kreiran od strane OAuth korisnika." @@ -13522,20 +13555,20 @@ 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:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "Nevažeća vrednost za UUID: {}" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "Nevažeće vrednosti za polja:" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "Nevažeća verzija wkhtmltopdf" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "Nevažeći uslov za {0}" @@ -13544,10 +13577,47 @@ msgstr "Nevažeći uslov za {0}" msgid "Inverse" msgstr "Obrnuto" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "Pozivnica je već prihvaćena" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "Pozivnica već postoji" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "Pozivnica se ne može otkazati" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "Pozivnica je otkazana" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "Pozivnica je istekla" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "Pozivnica nije pronađena" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "Pozivnica za pridruživanje {0} je otkazana" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "Pozivnica za pridruživanje {0} je istekla" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "Pozovi kao korisnika" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "Pozvan od strane" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "Jeste" @@ -13572,7 +13642,7 @@ msgstr "Kalendar i gantogram" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "Zavisna tabela" @@ -13625,6 +13695,10 @@ msgstr "Datoteka" msgid "Is Global" msgstr "Globalno" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Grupa" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13651,8 +13725,13 @@ msgstr "Opciono stanje" msgid "Is Primary" msgstr "Primarno" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "Primarna adresa" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 msgid "Is Primary Contact" msgstr "Primarni kontakt" @@ -13683,7 +13762,7 @@ msgstr "Javno" msgid "Is Published Field" msgstr "Objavljeno polje" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "Objavljeno polje mora biti važeći naziv polja" @@ -13708,7 +13787,7 @@ msgstr "Da li je postavka završena?" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "Jedinstveni zapis" @@ -13744,7 +13823,7 @@ msgstr "Standardno" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "Moguće podneti" @@ -13808,7 +13887,7 @@ msgstr "Vrsta stavke" #: frappe/utils/nestedset.py:229 msgid "Item cannot be added to its own descendants" -msgstr "Stavke ne može biti dodata svojim potomcima" +msgstr "Stavka ne može biti dodata svojim potomcima" #. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json @@ -13950,11 +14029,11 @@ msgstr "Kolona Kanban table" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "Naziv Kanban table" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Kanban podešavanje" @@ -13975,12 +14054,14 @@ msgstr "Evidentira svu komunikaciju" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -14242,7 +14323,7 @@ msgstr "Oznaka je obavezna" msgid "Landing Page" msgstr "Ciljna stranica" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "Pejzažni" @@ -14250,10 +14331,13 @@ msgstr "Pejzažni" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Jezik" @@ -14341,8 +14425,12 @@ msgstr "Prošli mesec" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "Prezime" @@ -14357,6 +14445,11 @@ msgstr "Datum poslednjeg resetovanja lozinke" msgid "Last Quarter" msgstr "Prošli kvartal" +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "Poslednji put primljeno u" + #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json @@ -14373,11 +14466,6 @@ msgstr "Poslednje pokretanje" msgid "Last Sync On" msgstr "Poslednja sinhronizacija" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "Poslednja sinhronizacija u" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14464,7 +14552,7 @@ msgstr "Levo dole" #. 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 "Levo centrirano" +msgstr "Centrirano levo" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:58 msgid "Left this conversation" @@ -14488,7 +14576,7 @@ msgstr "Dužina" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "Dužina prosleđenog niza podataka veća je od maksimalnog dozvoljenog broja poena za oznake!" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "Dužina polja {0} mora biti između 1 i 1000" @@ -14537,8 +14625,8 @@ 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:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14566,7 +14654,7 @@ msgstr "Naziv zaglavlja" msgid "Letter Head Scripts" msgstr "Skripte za zaglavlje" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "Zaglavlje ne može biti i onemogućeno i podrazumevano" @@ -14583,7 +14671,7 @@ msgstr "Zaglavlje u HTML-u" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "Nivo" @@ -14633,20 +14721,6 @@ msgstr "Svetla tema" msgid "Like" msgstr "Lajk" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "Limit za lajkove" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "Limit lajkova po času" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "Lajk na {0}: {1}" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "Lajkovano" @@ -14687,6 +14761,7 @@ msgstr "Linijski" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14700,6 +14775,7 @@ msgstr "Linijski" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "Link" @@ -14830,10 +14906,15 @@ msgstr "Povezano" msgid "Linked With" msgstr "Povezano sa" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +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 (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14841,6 +14922,7 @@ msgstr "Povezano sa" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "Linkovi" @@ -14882,7 +14964,7 @@ msgstr "Filter liste" msgid "List Settings" msgstr "Podešavanje liste" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Podešavanje liste" @@ -14923,7 +15005,7 @@ msgstr "Lista izvršenih zakrpa" msgid "List setting message" msgstr "Poruka podešavanja liste" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "Liste" @@ -14932,9 +15014,8 @@ msgstr "Liste" msgid "Load Balancing" msgstr "Balansiranje opterećenja" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Učitaj više" @@ -14951,10 +15032,10 @@ msgstr "Učita više" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "Učitavanje" @@ -14964,9 +15045,9 @@ msgstr "Učitavanje filtera..." #: frappe/core/doctype/data_import/data_import.js:257 msgid "Loading import file..." -msgstr "Učitvanje fajlova za uvoz..." +msgstr "Učitavanje fajlova za uvoz..." -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "Učitavanje verzija..." @@ -14976,7 +15057,7 @@ msgstr "Učitavanje verzija..." #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "Učitavanje..." @@ -15037,7 +15118,7 @@ msgstr "Prijavite se da biste pristupili ovoj stranici." msgid "Log out" msgstr "Odjavite se" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "Odjavljeni ste" @@ -15097,7 +15178,7 @@ msgstr "Verifikacioni kod za prijavu od {}" msgid "Login and view in Browser" msgstr "Prijavite se i pogledajte u internet pretraživaču" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "Prijavljivanje je neophodno da biste videli listu veb-obrazaca. Omogućite {0} da biste videli podešavanja liste" @@ -15105,7 +15186,7 @@ msgstr "Prijavljivanje je neophodno da biste videli listu veb-obrazaca. Omogući msgid "Login link sent to your email" msgstr "Link za prijavljivanje je poslat na Vašu imejl adresu" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "Prijavljivanje trenutno nije dozvoljeno" @@ -15158,9 +15239,9 @@ msgstr "Prijavljivanje putem linka iz imejla" msgid "Login with email link expiry (in minutes)" msgstr "Isticanje linka za prijavljivanje (u minutima)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." -msgstr "Prijavljivanje putem korisničkom imena i lozinke nije dozvoljena." +msgstr "Prijavljivanje putem korisničkog imena i lozinke nije dozvoljeno." #: frappe/www/login.html:100 msgid "Login with {0}" @@ -15177,7 +15258,7 @@ msgstr "Logo URI" msgid "Logout" msgstr "Odjava" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "Odjava iz svih sesija" @@ -15281,7 +15362,10 @@ msgid "Major" msgstr "Glavno" #. 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 +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "Omogući \"naziv\" dostupnim za pretragu u globalnoj pretrazi" @@ -15357,7 +15441,7 @@ msgstr "Obavezno zavisi od" msgid "Mandatory Depends On (JS)" msgstr "Obavezno zavisi od (JS)" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "Nedostaju obavezni podaci:" @@ -15369,15 +15453,15 @@ msgstr "Obavezno polje: postavi ulogu za" msgid "Mandatory field: {0}" msgstr "Obavezno polje: {0}" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "Obavezna polja su neophodna u tabeli {0}, red {1}" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "Obavezna polja su neophodna u {0}" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "Obavezna polja su neophodna:" @@ -15458,10 +15542,8 @@ msgid "Mark as Unread" msgstr "Označi kao nepročitano" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15542,7 +15624,13 @@ msgstr "Maksimalna veličina priloga" msgid "Max auto email report per user" msgstr "Maksimalan broj automatskih izveštaja po korisniku" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "Maksimalan broj prijavljivanja po satu" + +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "Maksimalna širina za vrstu valute je 100px u redu {0}" @@ -15551,20 +15639,15 @@ msgstr "Maksimalna širina za vrstu valute je 100px u redu {0}" msgid "Maximum" msgstr "Maksimalno" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "Dostignut je maksimalni broj priloga od {0} za {1} {2}." -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "Maksimalan broj polja" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "Dostignut je maksimalni broj priloga od {0}." -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "Dozvoljeno je najviše {0} redova" @@ -15580,7 +15663,7 @@ msgstr "Značenje opcija podnesi, otkaži, izmeni" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15593,7 +15676,7 @@ msgstr "Srednje" msgid "Meeting" msgstr "Sastanak" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "Ispunjava uslov?" @@ -15634,7 +15717,7 @@ msgstr "Meni" msgid "Merge with existing" msgstr "Spoji sa postojećim" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "Spajanje je moguće samo između grupe i grupe ili čvora i čvora" @@ -15660,7 +15743,7 @@ msgstr "Spajanje je moguće samo između grupe i grupe ili čvora i čvora" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15700,7 +15783,7 @@ msgstr "Poruka poslata" msgid "Message Type" msgstr "Vrsta poruke" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "Poruka je skraćena" @@ -15732,29 +15815,21 @@ msgstr "Poruke" msgid "Meta" msgstr "Meta" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "Meta opis" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "Meta slika" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "Meta oznake" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "Meta naslov" @@ -15807,7 +15882,7 @@ msgstr "Metoda" msgid "Method Not Allowed" msgstr "Metoda nije dozvoljena" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "Metoda je neophodna da bi se kreirala brojčana kartica" @@ -15823,6 +15898,11 @@ msgstr "Centrirano" msgid "Middle Name" msgstr "Srednje ime" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "Srednje ime (opciono)" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15889,11 +15969,11 @@ msgstr "Propušteno" msgid "Missing DocType" msgstr "Nedostajući DocType" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "Nedostajuće polje" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "Nedostajuća polja" @@ -15929,15 +16009,16 @@ msgstr "Mobilni" msgid "Mobile No" msgstr "Broj mobilnog telefona" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "Broj mobilnog telefona" + #. 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 "Pokretač modalnog prozora" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "Izmenjeno od strane" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15958,7 +16039,7 @@ msgstr "Izmenjeno od strane" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -16134,10 +16215,12 @@ msgstr "Više informacija" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Više informacija" @@ -16156,7 +16239,7 @@ msgstr "Dodatni sadržaj za dno stranice." msgid "Most Used" msgstr "Najviše korišćeno" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "Verovatno je Vaša lozinka predugačka." @@ -16167,7 +16250,7 @@ msgstr "Verovatno je Vaša lozinka predugačka." msgid "Move" msgstr "Premesti" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "Premesti u" @@ -16203,7 +16286,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:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "Premesti na broj reda" @@ -16230,7 +16313,7 @@ msgstr "Gospođa" msgid "Ms" msgstr "Gospođica" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "Više korenskih čvorova nije dozvoljeno." @@ -16253,7 +16336,7 @@ msgstr "Mora biti zatvoren u '()' i uključivati '{0}', koji je rezervisani teks msgid "Must be of type \"Attach Image\"" msgstr "Mora biti vrste \"Priloži sliku\"" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "Mora imati dozvolu za izveštaj da bi pristupio ovom izveštaju." @@ -16271,7 +16354,7 @@ msgid "Mx" msgstr "Mx" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16279,7 +16362,7 @@ msgstr "Moj nalog" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:57 msgid "My Device" -msgstr "Moj uređan" +msgstr "Moj uređaj" #: frappe/public/js/frappe/ui/apps_switcher.js:71 msgid "My Workspaces" @@ -16309,9 +16392,9 @@ msgstr "NAPOMENA: Ovaj okvir će biti uklonjen. Molimo Vas da ponovo postavite L #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16321,11 +16404,11 @@ msgstr "Naziv" msgid "Name (Doc Name)" msgstr "Naziv (Dokumenta)" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "Naziv je već zauzet, molimo Vas da postavite novi naziv" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "Naziv ne može sadržati specijalne karaktere kao što je {0}" @@ -16337,7 +16420,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:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "Naziv {0} ne može biti {1}" @@ -16378,7 +16461,7 @@ msgstr "Pravilo imenovanja" msgid "Naming Series" msgstr "Serija imenovanja" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "Serija imenovanja je obavezna" @@ -16415,12 +16498,12 @@ msgstr "Šablon navigacione trake" msgid "Navbar Template Values" msgstr "Vrednosti šablona navigacione trake" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Pomeri listu prema dole" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Pomeri listu prema gore" @@ -16435,7 +16518,11 @@ msgstr "Idi na glavni sadržaj" msgid "Navigation Settings" msgstr "Podešavanje navigacije" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "Treba Vam pomoć?" + +#: frappe/desk/doctype/workspace/workspace.py:322 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" @@ -16443,7 +16530,7 @@ msgstr "Neophodna je uloga menadžera radnog prostora da biste uređivali privat msgid "Negative Value" msgstr "Negativna vrednost" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "Ugnježdeni filteri moraju biti predati kao lista ili tuple." @@ -16456,6 +16543,12 @@ msgstr "Greška u ugnježdenom setu. Molimo Vas da kontaktirate administratora." msgid "Network Printer Settings" msgstr "Podešavanje mrežnog štampača" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +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 @@ -16464,7 +16557,7 @@ msgstr "Podešavanje mrežnog štampača" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16485,10 +16578,6 @@ msgstr "Nova adresa" msgid "New Chart" msgstr "Novi grafikon" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "Novi komentar na {0}: {1}" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "Novi kontakt" @@ -16497,8 +16586,8 @@ msgstr "Novi kontakt" msgid "New Custom Block" msgstr "Novi prilagođeni blok" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" msgstr "Novi prilagođeni format štampe" @@ -16529,7 +16618,7 @@ msgstr "Novi događaj" msgid "New Folder" msgstr "Nova datoteka" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "Nova Kanban tabla" @@ -16564,12 +16653,12 @@ msgstr "Nova brojčana kartica" msgid "New Onboarding" msgstr "Nova uvodna obuka" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "Nova lozinka" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "Novi naziv formata štampe" @@ -16578,7 +16667,7 @@ msgstr "Novi naziv formata štampe" msgid "New Quick List" msgstr "Nova brza lista" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "Novi naziv izveštaja" @@ -16596,8 +16685,8 @@ msgstr "Nova prečica" msgid "New Users (Last 30 days)" msgstr "Novi korisnici (prethodnih 30 dana)" -#: frappe/core/doctype/version/version_view.html:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "Nova vrednost" @@ -16656,13 +16745,13 @@ msgstr "Nova vrednost treba da bude postavljena" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "Novi {0}" @@ -16678,7 +16767,7 @@ msgstr "Novi {0} {1} dodat u kontrolnu tablu {2}" msgid "New {0} {1} created" msgstr "Novi {0} {1} kreiran" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "Novi {0}: {1}" @@ -16686,7 +16775,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:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "Novokreirani korisnik {0} nema omogućene uloge." @@ -16699,7 +16788,7 @@ msgstr "Menadžer biltena" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16806,14 +16895,15 @@ msgstr "Sledeće na klik" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Ne" @@ -16863,6 +16953,10 @@ msgstr "Nema imejl naloga" msgid "No Email Accounts Assigned" msgstr "Nijedan imejl nalog nije dodeljen" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "Polje za imejl nije pronađeno u {0}" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "Nema imejlova" @@ -16898,15 +16992,15 @@ msgstr "Nijedan LDAP korisnik nije pronađen za imejl: {0}" msgid "No Label" msgstr "Nema oznake" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: 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:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "Nije naveden naziv za {0}" @@ -16914,7 +17008,7 @@ msgstr "Nije naveden naziv za {0}" msgid "No New notifications" msgstr "Nema novih obaveštenja" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "Dozvole nisu navedene" @@ -16934,17 +17028,17 @@ msgstr "Nema dozvoljenih grafikona na kontrolnoj tabli" msgid "No Preview" msgstr "Nema pregleda" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "Pregled nije dostupan" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "Nijedan štampač nije dostupan." #: frappe/core/doctype/rq_worker/rq_worker_list.js:3 msgid "No RQ Workers connected. Try restarting the bench." -msgstr "Nema povezani RQ Worker-a. Pokušajte da restartujete bench." +msgstr "Nema povezanih RQ Worker-a. Pokušajte da restartujete bench." #: frappe/public/js/frappe/form/link_selector.js:135 msgid "No Results" @@ -16954,11 +17048,11 @@ msgstr "Nema rezultata" msgid "No Results found" msgstr "Nijedan rezultat nije pronađen" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "Uloge nisu navedene" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "Nije pronađeno polje za izbor" @@ -16966,7 +17060,7 @@ msgstr "Nije pronađeno polje za izbor" msgid "No Suggestions" msgstr "Nema predloga" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "Nema oznaka" @@ -16978,7 +17072,7 @@ msgstr "Nema predstojećih događaja" msgid "No address added yet." msgstr "Nijedna adresa još uvek nije dodata." -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "Nema upozorenja za danas" @@ -17006,23 +17100,19 @@ msgstr "Nema promena za sinhronizaciju" msgid "No changes to update" msgstr "Nema promena za ažuriranje" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "Još uvek nema komentara" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " -msgstr "Još uvek nema komentara. " +msgid "No comments yet." +msgstr "Još uvek nema komentara." #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." -msgstr "Nijedan kontakt nije još uvek dodat." +msgstr "Nema dodatih kontakta." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "Nijedan kontakt nije povezan sa dokumentom" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "Nema podataka za izvoz" @@ -17038,11 +17128,15 @@ msgstr "Nisu pronađeni dokumenti sa oznakom {0}" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "Nijedan imejl nalog nije povezan sa korisnikom. Molimo Vas da dodate nalogu u okviru Korisnik > Prijemna pošta imejla." +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "Nije pronađena imejl adresa za pozivanje" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "Nema neuspešnih evidencija" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "Nije pronađeno polje koje može biti korišćeno kao Kanban kolona. Koristite prilagodi obrazac da biste dodali prilagođeno polje vrste \"Izbor\"." @@ -17066,7 +17160,7 @@ msgstr "Nema dodatnih zapisa" msgid "No matching records. Search something new" msgstr "Nema odgovarajućih zapisa. Pokušajte drugačiju pretragu" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "Nema više stavki za prikaz" @@ -17110,7 +17204,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "Ne postoji dozvola za '{0}' {1}" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "Ne postoji dozvola za čitanje {0}" @@ -17122,7 +17216,7 @@ msgstr "Ne postoji dozvola za {0} {1} {2}" msgid "No records deleted" msgstr "Nijedan zapis nije obrisan" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "Nijedan zapis nije dostupan u {0}" @@ -17138,7 +17232,7 @@ msgstr "Nijedan zapis neće biti izvezen" msgid "No rows" msgstr "Nema redova" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "Nema naslova" @@ -17158,11 +17252,11 @@ msgstr "Nema {0}" msgid "No {0} Found" msgstr "Nije pronađen nijedan {0}" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "Nije pronađen nijedan {0}" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 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}." @@ -17171,7 +17265,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:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "Br." @@ -17214,7 +17308,7 @@ msgstr "Normalizovane kopije" msgid "Normalized Query" msgstr "Normalizovani upiti" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "Nije dozvoljeno" @@ -17235,7 +17329,7 @@ msgstr "Nisu potomci od" msgid "Not Equals" msgstr "Nije jednako" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "Nije pronađeno" @@ -17261,20 +17355,19 @@ msgstr "Nije povezani ni sa jednim zapisom" msgid "Not Nullable" msgstr "Ne može biti prazno" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "Nije dozvoljeno" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "Nije dozvoljeno za čitanje {0}" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17283,10 +17376,10 @@ msgstr "Nije objavljeno" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "Nije sačuvano" @@ -17318,7 +17411,7 @@ msgstr "Nevažeći Comma Separated Value (CSV fajl)" msgid "Not a valid User Image." msgstr "Nevažeća slika korisnika." -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "Nevažeća radnja radnog toka" @@ -17334,11 +17427,11 @@ msgstr "Nije aktivno" msgid "Not allowed for {0}: {1}" msgstr "Nije dozvoljeno za {0}: {1}" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "Nije dozvoljeno priložiti dokumenta vrste {0}, molimo Vas da omogućite Dozvoli štampu za {0} u podešavanjima štampe" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "Nije dozvoljeno kreiranje prilagođenog virtuelnog DocType-a." @@ -17362,27 +17455,27 @@ msgstr "Nije pronađeno" msgid "Not in Developer Mode" msgstr "Nije u razvojnom režimu" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 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:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Nije dozvoljeno" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "Nije dozvoljeno za pregled {0}" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17417,7 +17510,7 @@ msgstr "Napomena: Za najbolje rezultate, slike moraju biti iste veličine i šir msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "Napomena: Višestruke sesije će biti dozvoljene na mobilnim uređajima" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "Napomena: Ovo će biti podeljeno sa korisnikom." @@ -17441,10 +17534,9 @@ msgstr "Nema više stavki za ponavljanje" msgid "Nothing left to undo" msgstr "Nema više stavki za opoziv" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "Nema ničega za prikazivanje" @@ -17490,15 +17582,15 @@ msgstr "Dokument na koji je korisnik pretplaćen za obaveštenja" msgid "Notification sent to" msgstr "Obaveštenje poslato ka" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "Obaveštenje: kupac {0} nema podešen broj mobilnog telefona" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "Obaveštenje: dokument {0} nema podešen {1} broj (polje: {2})" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "Obaveštenje: korisnik {0} nema podešen broj mobilnog telefona" @@ -17549,7 +17641,7 @@ msgstr "Obavesti ukoliko nije odgovoreno (u minutima)" msgid "Notify users with a popup when they log in" msgstr "Obavesti korisnike putem iskačućeg prozora kada se prijave" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "Sada" @@ -17605,14 +17697,14 @@ msgstr "Broj grupa" #. Label of the number_of_queries (Int) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "Number of Queries" -msgstr "Brup upita" +msgstr "Broj upita" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "Broj polja za priložene fajlove je veći od {}, ograničenje je ažurirano na {}." -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "Broj rezervnih kopija mora biti veći od nule." @@ -17721,11 +17813,11 @@ msgstr "Aplikacija za jednokratnu lozinku" msgid "OTP Issuer Name" msgstr "Naziv izdavaoca jednokratne lozinke" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "Resetovanje tajne za jednokratnu lozinku - {0}" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "Tajna za jednokratnu lozinku je resetovana. Ponovna registracija biće neophodna prilikom sledećeg prijavljivanja." @@ -17844,7 +17936,7 @@ msgstr "Na ili nakon" msgid "On or Before" msgstr "Na ili pre" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "Na {0}, {1} je napisao/la:" @@ -17884,7 +17976,7 @@ msgstr "Uvodna obuka završena" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 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." @@ -17910,7 +18002,7 @@ msgstr "Dozvoljeno je isključivo 200 unosa po zahtevu" #: frappe/email/doctype/email_queue/email_queue.py:87 msgid "Only Administrator can delete Email Queue" -msgstr "Isključivo administrator može obrisati imejl čekanje" +msgstr "Isključivo administrator može obrisati red čekanja imejlova" #: frappe/core/doctype/page/page.py:66 msgid "Only Administrator can edit" @@ -17929,7 +18021,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:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "Jedine opcije dozvoljene za polje podataka su:" @@ -17946,7 +18038,7 @@ msgstr "Isključivo menadžer radnog prostora može da uređuje javne radne pros msgid "Only allowed to export customizations in developer mode" msgstr "Izvoz prilagođavanja je dozvoljen samo u razvojnom režimu" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "Isključivo nacrti dokumenata mogu biti odbačeni" @@ -17965,19 +18057,19 @@ msgstr "Isključivo su obavezna polja neophodna za nove zapise. Možete obrisati msgid "Only one {0} can be set as primary." msgstr "Može biti postavljen samo jedan {0} kao primarni." -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "Mogu se brisati samo izveštaji kreirani pomoću uređivača izveštaja" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "Mogu se uređivati samo izveštaji kreirani pomoću uređivača izveštaja" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Samo standardni DocType-ovi mogu biti prilagođeni putem polja prilagodi obrazac." -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "Isključivo administrator može obrisati standardni DocType." @@ -18047,7 +18139,7 @@ msgstr "Otvori referentni dokument" msgid "Open Settings" msgstr "Otvori podešavanja" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "Aplikacije otvorenog koda za veb" @@ -18065,7 +18157,7 @@ msgstr "Otvori dijalog sa obaveznim poljima za brzo kreiranje novog zapisa. Dija msgid "Open a module or tool" msgstr "Otvori modul ili alat" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "Otvori konzolu" @@ -18073,7 +18165,7 @@ msgstr "Otvori konzolu" msgid "Open in a new tab" msgstr "Otvori u novoj kartici" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Otvorene stavke" @@ -18088,13 +18180,13 @@ 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:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "Otvori {0}" @@ -18103,6 +18195,10 @@ msgstr "Otvori {0}" msgid "OpenID Configuration" msgstr "OpenID konfiguracija" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "OpenID konfiguracija je uspešno preuzeta!" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" @@ -18118,7 +18214,7 @@ msgstr "Otvoreno" msgid "Operation" msgstr "Operacija" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "Operator mora biti jedan od sledećih {0}" @@ -18144,7 +18240,7 @@ msgstr "Opcija 2" msgid "Option 3" msgstr "Opcija 3" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "Opcija {0} za polje {1} nije zavisna tabela" @@ -18164,6 +18260,7 @@ msgstr "Opciono: Upozorenje će biti poslato ukoliko je ovaj izraz tačan" #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -18172,11 +18269,12 @@ msgstr "Opciono: Upozorenje će biti poslato ukoliko je ovaj izraz tačan" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "Opcije" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 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'" @@ -18185,7 +18283,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:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "Opcije za polje ocenjivanja mogu biti u rasponu od 3 do 10" @@ -18193,7 +18291,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:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 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." @@ -18201,7 +18299,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:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "Opcije nisu postavljene za link polje {0}" @@ -18217,7 +18315,7 @@ msgstr "Narandžasta" msgid "Order" msgstr "Redosled" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "Sortiraj po mora biti tekst" @@ -18233,12 +18331,12 @@ msgstr "Istorija organizacije" msgid "Org History Heading" msgstr "Naslov istorije organizacije" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "Orijentacija" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "Originalna vrednost" @@ -18306,10 +18404,6 @@ msgstr "Rezultat" msgid "Overview" msgstr "Pregled" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "Vlasnik" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" @@ -18317,9 +18411,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:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "PDF" @@ -18360,11 +18454,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:616 +#: frappe/printing/page/print/print.js:656 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:534 +#: frappe/printing/page/print/print.js:574 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "Štampanje PDF-a putem opcije \"Neobrađena štampa\" nije podržano." @@ -18536,7 +18630,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:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "Strana {0} od {1}" @@ -18563,7 +18657,7 @@ msgstr "Matični DocType" msgid "Parent Document Type" msgstr "Matična vrsta dokumenta" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "Matična vrsta dokumenta je neophodna za kreiranje brojčane kartice" @@ -18580,11 +18674,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:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "Matično polje (stablo)" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "Matično polje mora biti važeći naziv polja" @@ -18593,7 +18687,7 @@ msgstr "Matično polje mora biti važeći naziv polja" msgid "Parent Label" msgstr "Matična oznaka" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 msgid "Parent Missing" msgstr "Matični entitet nedostaje" @@ -18667,8 +18761,8 @@ msgstr "Pasivan" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18678,7 +18772,7 @@ msgstr "Pasivan" msgid "Password" msgstr "Lozinka" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "Imejl sa lozinkom poslat" @@ -18691,7 +18785,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:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "Lozinka se ne može filtrirati" @@ -18708,6 +18802,10 @@ msgstr "Lozinka za osnovni DN" msgid "Password is required or select Awaiting Password" msgstr "Lozinka je obavezna ili izaberite Čeka lozinku" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "Lozinka je važeća. 👍" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "Lozinka nije uneta u imejl nalogu" @@ -18716,7 +18814,7 @@ msgstr "Lozinka nije uneta u imejl nalogu" msgid "Password not found for {0} {1} {2}" msgstr "Lozinka nije pronađena za {0} {1} {2}" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "Uputstvo za resetovanje lozinke je poslato na imejl korisnika {}" @@ -18724,19 +18822,19 @@ msgstr "Uputstvo za resetovanje lozinke je poslato na imejl korisnika {}" msgid "Password set" msgstr "Lozinka postavljena" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "Veličina lozinke premašuje dozvoljenu granicu" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." -msgstr "Veličine lozinke premašuje dozvoljenu granicu." +msgstr "Dužina lozinke premašuje dozvoljenu granicu." #: frappe/www/update-password.html:93 msgid "Passwords do not match" msgstr "Lozinke se ne podudaraju" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "Lozinke se ne podudaraju!" @@ -18758,7 +18856,7 @@ msgstr "Evidencija zakrpa" #: frappe/modules/patch_handler.py:136 msgid "Patch type {} not found in patches.txt" -msgstr "Vrsta zakrpe {} nije pronađen u patches.txt" +msgstr "Vrsta zakrpe {} nije pronađena u patches.txt" #. Label of the path (Data) field in DocType 'API Request Log' #. Label of the path (Small Text) field in DocType 'Package Release' @@ -18806,10 +18904,12 @@ msgstr "Najveća iskorišćenost memorije" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "Na čekanju" @@ -18885,7 +18985,7 @@ 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:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "Greška u dozvolama" @@ -18945,16 +19045,16 @@ msgstr "Vrsta dozvole" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "Greška u dozvolama" @@ -19016,15 +19116,18 @@ msgstr "Zahtev za preuzimanje ličnih podataka" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -19037,13 +19140,13 @@ msgstr "Telefon" msgid "Phone No." msgstr "Telefon br." -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 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:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "Izaberite kolone" @@ -19103,11 +19206,11 @@ msgstr "Molimo Vas da instalirate Idap3 biblioteku putem pip-a da biste koristil msgid "Please Set Chart" msgstr "Molimo Vas da postavite grafikon" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "Molimo Vas da ažurirate SMS podešavanja" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "Molimo Vas da dodate naslov u Vaš imejl" @@ -19115,7 +19218,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:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "Molimo Vas da zatražite od administratora da verifikuje Vašu registraciju" @@ -19123,11 +19226,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:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 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:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 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." @@ -19135,19 +19238,15 @@ msgstr "Molimo Vas da priložite sliku kako biste postavili HTML za zaglavlje." msgid "Please attach the package" msgstr "Molimo Vas da priložite paket" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "Molimo Vas da proverite URL za OpenID konfiguraciju" - #: frappe/utils/dashboard.py:58 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:951 +#: frappe/model/base_document.py:1008 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:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "Molimo Vas da proverite svoj imejl za verifikaciju" @@ -19179,11 +19278,11 @@ 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:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "Molimo Vas da kontaktirate sistem menadžera kako biste instalirali ispravnu verziju." -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "Molimo Vas da prvo kreirate karticu" @@ -19199,20 +19298,20 @@ msgstr "Molimo Vas da obrišete polje iz {0} ili da dodate neophodni doctype." msgid "Please do not change the template headings." msgstr "Molimo Vas da ne menjate naslove šablona." -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" -msgstr "Molimo Vas duplirate ovo kako biste napravili izmene" +msgstr "Molimo Vas da duplirate ovo kako biste napravili izmene" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." -msgstr "Molimo Vas da omogućite barem jedan ključ za prijavljivanje putem društvenih mreža ili LADP ili prijavljivanje putem imejl linka pre nego što onemogućite prijavu pomoću korisničkog imena i lozinke." +msgstr "Molimo Vas da omogućite barem jedan ključ za prijavljivanje putem društvenih mreža ili LDAP ili prijavljivanje putem imejl linka pre nego što onemogućite prijavu pomoću korisničkog imena i lozinke." #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "Molimo Vas da omogućite iskačuće prozore" @@ -19235,7 +19334,7 @@ msgstr "Molimo Vas da uneste URL token za pristup" #: frappe/integrations/doctype/social_login_key/social_login_key.py:81 msgid "Please enter Authorize URL" -msgstr "Molimo Vas da unesete URL autorizaciju" +msgstr "Molimo Vas da unesete URL za autorizaciju" #: frappe/integrations/doctype/social_login_key/social_login_key.py:79 msgid "Please enter Base URL" @@ -19249,7 +19348,7 @@ msgstr "Molimo Vas da unesete klijentski ID pre nego što je prijavljivanje pute msgid "Please enter Client Secret before social login is enabled" msgstr "Molimo Vas da uneste tajnu klijenta pre nego što je prijavljivanje putem društvenih mreža omogućeno" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "Molimo Vas da unesete URL za OpenID konfiguraciju" @@ -19286,11 +19385,12 @@ msgstr "Molimo Vas da unesete svoju novu lozinku." msgid "Please enter your old password." msgstr "Molimo Vas da unesete svoju staru lozinku." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "U prilogu možete pronaći {0}: {1}" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "Molimo Vas da se prijavite kako biste ostavili komentar." @@ -19298,11 +19398,11 @@ 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:988 +#: frappe/model/document.py:992 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:535 +#: frappe/printing/page/print/print.js:575 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." @@ -19318,7 +19418,7 @@ msgstr "Molimo Vas da sačuvate dokument pre dodeljivanja" msgid "Please save the document before removing assignment" msgstr "Molimo Vas da sačuvate dokument pre uklanjanja dodeljivanja" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "Molimo Vas da prvo sačuvate izveštaj" @@ -19326,7 +19426,7 @@ msgstr "Molimo Vas da prvo sačuvate izveštaj" msgid "Please save to edit the template." msgstr "Molimo Vas da sačuvate da biste uredili ovaj šablon." -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "Molimo Vas da prvo izaberete DocType" @@ -19334,19 +19434,19 @@ msgstr "Molimo Vas da prvo izaberete DocType" msgid "Please select Entity Type first" msgstr "Molimo Vas da prvo izaberete vrstu entiteta" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 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:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "Molimo Vas da izaberete X i Y polja" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "Molimo Vas da izaberete šifru države za polje {1}." -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "Molimo Vas da prvo izaberete fajl." @@ -19354,9 +19454,9 @@ msgstr "Molimo Vas da prvo izaberete fajl." msgid "Please select a file or url" msgstr "Molim Vas da izaberete fajl ili URL" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" -msgstr "Molimo Vas da izaberete važeći csv fajl sa podacima" +msgstr "Molimo Vas da izaberete važeći CSV fajl sa podacima" #: frappe/utils/data.py:309 msgid "Please select a valid date filter" @@ -19366,7 +19466,7 @@ msgstr "Molimo Vas da izaberete važeći filter da datum" msgid "Please select applicable Doctypes" msgstr "Molimo Vas da izaberete primenjive DocType-ove" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Molimo Vas da izaberete barem 1 kolonu iz {0} za sortiranje/grupisanje" @@ -19392,11 +19492,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:549 +#: frappe/printing/page/print/print.js:589 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:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "Molimo Vas da postavite filtere" @@ -19404,7 +19504,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:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "Molimo Vas da postavite naziv dokumenta" @@ -19416,7 +19516,7 @@ msgstr "Molimo Vas da prvo postavite sledeća dokumenta u ovoj kontrolnoj tabli msgid "Please set the series to be used." msgstr "Molimo Vas da postavite seriju koja će se koristiti." -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "Molimo Vas da postavite SMS pre nego što ga postavite kao metod autentifikacije, putem SMS podešavanja" @@ -19440,23 +19540,23 @@ msgstr "Molimo Vas da navedete" msgid "Please specify a valid parent DocType for {0}" msgstr "Molimo Vas da navedete važeći matični DocType za {0}" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "Molimo Vas da navedete najmanje 10 minuta zbog učestalosti pokretanja planera" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "Molimo Vas da navedete odstupanje i minutima" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "Molimo Vas da navedete koje polje za datum mora biti provereno" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "Molimo Vas da navedete koje polje za datum i vreme mora biti provereno" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "Molimo Vas da navedete koje polje za vrednost mora biti provereno" @@ -19477,7 +19577,7 @@ msgstr "Molimo Vas da koristite važeći LDAP filter za pretragu" msgid "Please use following links to download file backup." msgstr "Molimo Vas da koristite sledeće linkove da preuzmete rezervnu kopiju fajla." -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "Molimo Vas da posetite https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key za više informacija." @@ -19531,7 +19631,7 @@ msgstr "Stavka menija portala" msgid "Portal Settings" msgstr "Podešavanje portala" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "Portret" @@ -19559,6 +19659,7 @@ msgstr "Adresa za prijem pošte" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "Poštanski broj" @@ -19567,15 +19668,7 @@ msgstr "Poštanski broj" msgid "Posting Timestamp" msgstr "Vreme objave" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "Objave korisnika {0}" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "Objave u kategoriji {0}" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "Potencijalno opasan sadržaj u tekstualnom izrazu: {0}" @@ -19590,7 +19683,11 @@ msgstr "Potencijalno opasan sadržaj u tekstualnom izrazu: {0}" msgid "Precision" msgstr "Preciznost" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +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:1401 msgid "Precision should be between 1 and 6" msgstr "Preciznost treba da bude između 1 i 6" @@ -19638,7 +19735,7 @@ msgstr "Analitika pripremljenih izveštaja" msgid "Prepared Report User" msgstr "Korisnik pripremljenog izveštaja" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "Prikaz pripremljenog izveštaja nije uspeo" @@ -19646,7 +19743,7 @@ msgstr "Prikaz pripremljenog izveštaja nije uspeo" msgid "Preparing Report" msgstr "Priprema izveštaja" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "Dodaj šablon na početak imejl poruke" @@ -19667,7 +19764,7 @@ msgstr "Pritisnite Enter da sačuvate" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19681,13 +19778,6 @@ msgstr "Pregled" msgid "Preview HTML" msgstr "Pregled HTML-a" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "Pregled slike" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19716,7 +19806,7 @@ msgid "Preview:" msgstr "Pregled:" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19728,12 +19818,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "Prethodni" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "Prethodni heš" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "Prethodno podnošenje" @@ -19779,19 +19864,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:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: 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:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Štampa" @@ -19809,8 +19894,8 @@ 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:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19861,7 +19946,7 @@ msgstr "Pomoć za format štampe" msgid "Print Format Type" msgstr "Vrsta formata štampe" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "Format štampe nije pronađen" @@ -19900,7 +19985,7 @@ msgstr "Sakrij štampu ukoliko nema vrednosti" msgid "Print Language" msgstr "Jezik štampe" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "Štampa je poslata na štampač!" @@ -19917,8 +20002,8 @@ msgstr "Server za štampu" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "Podešavanje štampe" @@ -19966,11 +20051,11 @@ msgstr "Štampa dokumenta" msgid "Print with letterhead" msgstr "Štampa sa zaglavljem" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "Štampač" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "Mapiranje štampača" @@ -19980,11 +20065,11 @@ msgstr "Mapiranje štampača" msgid "Printer Name" msgstr "Naziv štampača" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "Podešavanje štampača" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "Mapiranje štampača nije podešeno." @@ -20042,7 +20127,7 @@ msgstr "Savet: Dodaje Reference: {{ reference_doctype }} {{ reference_name msgid "Proceed" msgstr "Nastavi" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "Ipak nastavi" @@ -20063,18 +20148,28 @@ msgstr "Prof" msgid "Profile" msgstr "Profil" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "Profilna slika" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Profil je uspešno ažuriran." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "Napredak" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "Projekat" #. Label of the property (Data) field in DocType 'Property Setter' -#: frappe/core/doctype/version/version_view.html:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: frappe/core/doctype/version/version_view.html:13 +#: frappe/core/doctype/version/version_view.html:38 +#: frappe/core/doctype/version/version_view.html:75 #: frappe/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "Svojstvo" @@ -20111,7 +20206,7 @@ msgstr "Vrsta svojstva" msgid "Protect Attached Files" msgstr "Zaštiti priložene fajlove" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "Zaštićeni fajl" @@ -20160,24 +20255,18 @@ msgstr "Rezervna kopija javnih fajlova:" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "Objavi" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -20187,15 +20276,6 @@ msgstr "Objavi" msgid "Published" msgstr "Objavljeno" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "Objavljeno na" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "Objavljeno na" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json @@ -20240,7 +20320,7 @@ msgstr "Menadžer nabavke" #. Name of a role #: frappe/contacts/doctype/contact/contact.json msgid "Purchase Master Manager" -msgstr "Glavni mendžer za nabavku" +msgstr "Glavni menadžer za nabavku" #. Name of a role #: frappe/contacts/doctype/address/address.json @@ -20285,7 +20365,9 @@ msgid "Put on Hold" msgstr "Stavi na čekanje" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "Python" @@ -20297,9 +20379,9 @@ msgstr "QR kod" msgid "QR Code for Login Verification" msgstr "QR kod za verifikaciju prijavljivanja" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " -msgstr "QZ Tray neuspešno: " +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" +msgstr "QZ Tray neuspešno:" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' @@ -20348,7 +20430,7 @@ msgstr "Izveštaj po upitu" msgid "Query analysis complete. Check suggested indexes." msgstr "Analiza upita završena. Pogledajte predložene indekse." -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "Upit mora biti vrste SELECT ili read-only." @@ -20448,7 +20530,7 @@ msgstr "Brzi filter liste" msgid "Quick Lists" msgstr "Brza lista" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "Broj ponuda mora biti između 0 i 3" @@ -20485,12 +20567,6 @@ msgstr "Opseg" msgid "Rate Limiting" msgstr "Ograničenje protoka" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "Ograničenje protoka" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20510,7 +20586,7 @@ msgstr "Ocena" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "Neobrađene komande" @@ -20527,7 +20603,7 @@ msgstr "Neobrađeni imejl" msgid "Raw Printing" msgstr "Neobrađeno štampanje" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "Podešavanje neobrađenog štampanja" @@ -20544,8 +20620,8 @@ msgid "Re:" msgstr "Re:" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "Re: {0}" @@ -20601,11 +20677,6 @@ msgstr "Isključivo za čitanje zavisi od (JS)" msgid "Read Only Mode" msgstr "Režim isključivo za čitanje" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "Vreme čitanja" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20621,7 +20692,7 @@ msgstr "Pročitao primalac na" msgid "Read mode" msgstr "Režim čitanja" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "Pročitajte dokumentaciju za više informacija" @@ -20641,11 +20712,11 @@ msgstr "U realnom vremenu (SocketIO)" msgid "Reason" msgstr "Razlog" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "Obnovi" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "Obnovi stablo" @@ -20683,7 +20754,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:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "Nedavno" @@ -20694,6 +20765,14 @@ msgstr "Nedavno" msgid "Recipient" msgstr "Primalac" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "Polje naloga primaoca" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20726,7 +20805,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:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "Rekurzivno preuzimanje iz" @@ -20743,6 +20822,11 @@ msgstr "Crveno" msgid "Redirect HTTP Status" msgstr "HTTP status preusmeravanja" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "Preusmeri na putanju" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20837,6 +20921,11 @@ msgstr "Datum reference" msgid "Reference Datetime" msgstr "Vreme i datum reference" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "Referenca dokumenta" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20864,7 +20953,6 @@ msgstr "Naziv referentnog dokumenta" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20905,9 +20993,9 @@ msgstr "Naziv referentnog dokumenta" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20925,9 +21013,9 @@ msgstr "Naziv referentnog dokumenta" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20957,7 +21045,6 @@ msgstr "Vrsta referentnog dokumenta" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -21005,15 +21092,15 @@ msgstr "Referenca: {0} {1}" msgid "Referrer" msgstr "Izvor pristupa" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Osveži" @@ -21027,6 +21114,10 @@ msgstr "Osveži sve" msgid "Refresh Google Sheet" msgstr "Osveži Google Sheet" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "Osveži pregled štampe" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -21038,18 +21129,18 @@ msgstr "Osveži Google Sheet" msgid "Refresh Token" msgstr "Token za osvežavanje" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "Osvežavanje" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "Osvežavanje..." -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "Registrovano, ali onemogućeno" @@ -21226,7 +21317,7 @@ msgstr "Preimenuj naziv polja" msgid "Rename {0}" msgstr "Preimenuj {0}" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "Preimenovani fajlovi i zamenjeni kod u kontrolerima, molimo Vas proverite!" @@ -21357,9 +21448,9 @@ msgstr "Odgovori svima" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "Izveštaj" @@ -21429,11 +21520,11 @@ 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:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "Naziv izveštaja" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "Naziv izveštaja, polje izveštaja i funkcija su neophodni za kreiranje brojčane kartice" @@ -21467,21 +21558,21 @@ msgstr "Prikaz izveštaja" msgid "Report bug" msgstr "Prijavi grešku" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 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:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "Izveštaj nema podataka, molimo Vas da izmenite filtere ili promenite naziv izveštaja" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 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:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "Izveštaj je pokrenut, kliknite da biste pogledali status" @@ -21493,24 +21584,24 @@ msgstr "Dostignuto je ograničenje izveštaja" msgid "Report timed out." msgstr "Izveštaj je istekao." -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "Izveštaj je uspešno ažuriran" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 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:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 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:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "Izveštaj {0}" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "Izveštaj {0} je obrisan" @@ -21518,7 +21609,7 @@ msgstr "Izveštaj {0} je obrisan" msgid "Report {0} is disabled" msgstr "Izveštaj {0} je onemogućen" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "Izveštaj {0} je sačuvan" @@ -21529,7 +21620,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:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "Izveštaji" @@ -21537,7 +21628,7 @@ msgstr "Izveštaji" msgid "Reports & Masters" msgstr "Izveštaji i master podaci" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "Izveštaji su već u redu" @@ -21556,7 +21647,10 @@ msgid "Request Body" msgstr "Telo zahteva" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "Podaci zahteva" @@ -21608,6 +21702,11 @@ msgstr "Vreme za zahtev je isteklo" msgid "Request URL" msgstr "URL zahteva" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "Zahtev za brisanje naloga" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21623,7 +21722,7 @@ msgstr "Zahteva pouzdani sertifikat" #. '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 "Zahteva bilo koji važeću FDN putanju, npr. ou=groups,dc=example,dc=com" +msgstr "Zahteva bilo koju važeću FDN putanju, npr. ou=groups,dc=example,dc=com" #. Description of the 'LDAP search path for Users' (Data) field in DocType #. 'LDAP Settings' @@ -21659,11 +21758,11 @@ msgstr "Resetuj grafikon" msgid "Reset Dashboard Customizations" msgstr "Resetuj prilagođavanja kontrolne table" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "Resetuj polja" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "Resetuj LDAP lozinku" @@ -21671,11 +21770,11 @@ msgstr "Resetuj LDAP lozinku" msgid "Reset Layout" msgstr "Resetuj raspored" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "Resetuj tajnu jednokratne lozinke" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21710,7 +21809,7 @@ msgstr "Vrati na podrazumevano" msgid "Reset sorting" msgstr "Resetuj sortiranje" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "Vrati na podrazumevano" @@ -21748,6 +21847,7 @@ msgid "Resource TOS URI" msgstr "URI uslova korišćenja resursa" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21757,11 +21857,6 @@ msgstr "URI uslova korišćenja resursa" msgid "Response" msgstr "Odgovor" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "Odgovor " - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21820,7 +21915,7 @@ msgstr "Ograniči na domen" 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 "Ograniči korisnika samo sa ove IP adrese. Više adresa se može uneti razdvajanjem zarezima. Prihvaćene su i delimične IP adrese, kao što je (111.111.111)" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "Ograničenja" @@ -21854,7 +21949,7 @@ msgstr "Vrati se na ekran za verifikaciju i unesi kod prikazan u tvojoj aplikaci msgid "Reverse Icon Color" msgstr "Obrni boju ikonice" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "Vraćanje dužine na {0} za '{1}' u '{2}'. Postavljanje dužine na {3} će skratiti podatke." @@ -21872,9 +21967,7 @@ msgstr "Opozovi" msgid "Revoked" msgstr "Opozvano" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21903,7 +21996,7 @@ msgstr "Desno dole" #. 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 "Desno centrirano" +msgstr "Centrirano desno" #. Label of the robots_txt (Code) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json @@ -21915,6 +22008,7 @@ msgstr "Robots.txt" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21928,6 +22022,7 @@ msgstr "Robots.txt" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21966,7 +22061,7 @@ msgstr "Dozvole uloge za stranicu i izveštaj" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "Dozvole uloga" @@ -21976,7 +22071,7 @@ msgstr "Dozvole uloga" msgid "Role Permissions Manager" msgstr "Menadžer dozvola uloga" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Menadžer dozvola uloga" @@ -22019,6 +22114,7 @@ msgstr "Uloga je postavljena prema vrsti korisnika {0}" #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -22028,6 +22124,7 @@ msgstr "Uloga je postavljena prema vrsti korisnika {0}" #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -22064,7 +22161,7 @@ msgstr "HTML uloge" msgid "Roles can be set for users from their User page." msgstr "Uloge se ne mogu postaviti korisnicima sa njihove stranice korisnika." -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "Korenski entitet {0} ne može biti obrisan" @@ -22084,8 +22181,6 @@ msgstr "Metod zaokruživanja" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -22097,8 +22192,6 @@ msgstr "Metod zaokruživanja" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -22123,24 +22216,24 @@ msgstr "Preusmeravanje putanje" msgid "Route: Example \"/app\"" msgstr "Putanja: Primer \"/app\"" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "Red" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "Red #" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "Red # {0}: Korisnik koji nije administrator ne može da postavi ulogu {1} u prilagođeni doctype" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "Red #{0}:" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "Red #{}: Naziv polja je obavezan" @@ -22149,11 +22242,6 @@ msgstr "Red #{}: Naziv polja je obavezan" msgid "Row Format" msgstr "Format reda" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "Indeks reda" - #. Label of the row_indexes (Code) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Row Indexes" @@ -22168,7 +22256,7 @@ msgstr "Naziv reda" msgid "Row Number" msgstr "Broj reda" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "Vrednosti u redu su izmenjene" @@ -22176,30 +22264,33 @@ msgstr "Vrednosti u redu su izmenjene" msgid "Row {0}" msgstr "Red {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "Red {0}: Nije dozvoljeno onemogućiti obavezno za standardna polja" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "Red {0}: Nije dozvoljeno omogućiti dozvolu pri podnošenju za standardna polja" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 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:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "Redovi uklonjeni" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "Prag redova za pretragu u tabeli" @@ -22237,7 +22328,7 @@ msgstr "Pravila za tranziciju između stanja, kao što su sledeće stanje i koja #. 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 "Pravila sa većim brojem prioriteta se primenjuje prva." +msgstr "Pravila sa većim brojem prioriteta se primenjuju prva." #. Label of the dormant_days (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -22290,7 +22381,7 @@ msgstr "SMS parametar" msgid "SMS Settings" msgstr "SMS podešavanje" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "SMS je uspešno poslat" @@ -22316,7 +22407,7 @@ msgstr "SQL uslovi. Primer: status=\"Open\"" #: frappe/core/doctype/recorder/recorder.js:85 #: frappe/core/doctype/recorder_query/recorder_query.json msgid "SQL Explain" -msgstr "SQL objašenjenje" +msgstr "Objašnjenje SQL upita" #. Label of the sql_output (HTML) field in DocType 'System Console' #: frappe/desk/doctype/system_console/system_console.json @@ -22368,7 +22459,7 @@ msgstr "Salesforce" msgid "Salutation" msgstr "Pozdrav" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "Isti unos je unet više puta" @@ -22396,20 +22487,20 @@ msgstr "Subota" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22418,16 +22509,12 @@ msgstr "Subota" msgid "Save" msgstr "Sačuvaj" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "Sačuvaj API tajnu: {0}" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "Ipak sačuvaj" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "Sačuvaj kao" @@ -22435,11 +22522,11 @@ msgstr "Sačuvaj kao" msgid "Save Customizations" msgstr "Sačuvaj prilagođavanja" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "Sačuvaj izveštaj" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "Sačuvaj filtere" @@ -22464,7 +22551,7 @@ msgstr "Sačuvano" msgid "Saved Filters" msgstr "Sačuvani filteri" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22543,7 +22630,7 @@ msgstr "Vrsta zakazanog zadatka" msgid "Scheduled Jobs Logs" msgstr "Evidencije zakazanih zadataka" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "Zakazano izvršavanje za skriptu {0} je ažurirano" @@ -22566,7 +22653,7 @@ msgstr "Planer" msgid "Scheduler Event" msgstr "Događaj planera" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "Planer je neaktivan" @@ -22579,7 +22666,7 @@ msgstr "Status planera" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "Planer se ne može ponovo omogućiti dok je režim održavanja aktivan." -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "Planer je neaktivan. Nema mogućnosti uvoza podataka." @@ -22711,7 +22798,7 @@ msgstr "Rezultati pretrage" msgid "Search by filename or extension" msgstr "Pretraga po nazivu fajla ili ekstenziji" -#: frappe/core/doctype/doctype/doctype.py:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "Polje za pretragu {0} nije važeće" @@ -22743,7 +22830,7 @@ msgstr "Pretraži ili unesi komandu ({0})" #: frappe/public/js/form_builder/components/SearchBox.vue:8 msgid "Search properties..." -msgstr "Svojstva pretrage...." +msgstr "Svojstva pretrage..." #: frappe/templates/includes/search_box.html:8 msgid "Search results for" @@ -22811,7 +22898,7 @@ msgstr "Podešavanja bezbednosti" msgid "See all Activity" msgstr "Pogledaj sve aktivnosti" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "Pogledaj sve prethodne izveštaje." @@ -22820,7 +22907,7 @@ msgstr "Pogledaj sve prethodne izveštaje." msgid "See on Website" msgstr "Pogledaj na veb-sajtu" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "Pogledaj prethodne odgovore" @@ -22867,7 +22954,7 @@ msgstr "Tabela korisnika koji su videli" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22875,28 +22962,28 @@ msgstr "Izaberi" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "Izaberi sve" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "Izaberi priloge" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "Izaberi zavisnu tabelu" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 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:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "Izaberi kolone" @@ -22955,12 +23042,15 @@ msgstr "Izaberi polje" msgid "Select Field..." msgstr "Izaberi polje..." -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "Izaberi polja" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "Izaberite polja (do {0})" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "Izaberi polja za unos" @@ -22973,7 +23063,7 @@ msgstr "Izaberi polja za ažuriranje" msgid "Select Filters" msgstr "Izaberi filtere" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "Izaberi Google Calendar za sinhronizaciju događaja." @@ -22983,7 +23073,7 @@ msgstr "Izaberi Google Contacts za sinhronizaciju kontakata." #: frappe/public/js/frappe/ui/group_by/group_by.html:10 msgid "Select Group By..." -msgstr "Izaberi grupiši po...." +msgstr "Izaberi grupiši po..." #: frappe/public/js/frappe/list/list_view_select.js:185 msgid "Select Kanban" @@ -23006,8 +23096,8 @@ msgstr "Izaberi obavezno" msgid "Select Module" msgstr "Izaberi modul" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "Izaberi mrežni štampač" @@ -23069,17 +23159,17 @@ msgstr "Izaberi DocType za kreiranje novog formata" #: frappe/public/js/form_builder/components/Sidebar.vue:56 msgid "Select a field to edit its properties." -msgstr "Izaberi polje da bi uredio njegova svojstva." +msgstr "Izaberite polje da biste uredili njegova svojstva." #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "Izaberi grupni čvor." +msgid "Select a group {0} first." +msgstr "Najpre izaberite grupu {0}." -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 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:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 msgid "Select a valid Subject field for creating documents from Email" msgstr "Izaberi važeće polje za naslov za kreiranje dokumenta iz mejla" @@ -23109,13 +23199,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:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Izaberi stavku iz liste" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Izaberi više stavki iz liste" @@ -23149,7 +23239,7 @@ msgstr "Izaberi dve verzije za prikaz razlika." msgid "Select {0}" msgstr "Izaberite {0}" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "Samopotvrda nije dozvoljena" @@ -23244,7 +23334,7 @@ msgstr "Pošalji sistemsko obaveštenje" #. Label of the send_to_all_assignees (Check) field in DocType 'Notification' #: frappe/email/doctype/notification/notification.json msgid "Send To All Assignees" -msgstr "Pošalji svim zaduženima" +msgstr "Pošalji svim dodeljenim korisnicima" #. Label of the send_welcome_email (Check) field in DocType 'User' #: frappe/core/doctype/user/user.json @@ -23333,7 +23423,7 @@ msgstr "Imejl pošiljaoca" msgid "Sender Email Field" msgstr "Polje za imejl pošiljaoca" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "Polje pošiljaoca treba da ima imejl među opcijama" @@ -23427,7 +23517,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:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: 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}" @@ -23437,7 +23527,7 @@ msgstr "Serija {0} je već iskorišćena u {1}" msgid "Server Action" msgstr "Serverska radnja" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Serverska greška" @@ -23456,7 +23546,7 @@ msgstr "IP adresa servera" msgid "Server Script" msgstr "Serverska skripta" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "Serverska skripta je onemogućena. Molimo Vas da je omogućite u konfiguraciji komandne linije." @@ -23503,7 +23593,7 @@ msgstr "Podrazumevane vrednosti sesije" msgid "Session Defaults Saved" msgstr "Podrazumevane vrednosti sesije su sačuvane" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "Sesija je istekla" @@ -23512,14 +23602,14 @@ msgstr "Sesija je istekla" msgid "Session Expiry (idle timeout)" msgstr "Istek sesije (vreme neaktivnosti)" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "Istek sesije mora biti u formatu {0}" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "Postavi" @@ -23542,15 +23632,15 @@ msgstr "Postavi grafikon" #. Description of the 'Chart Options' (Code) field in DocType 'Dashboard' #: frappe/desk/doctype/dashboard/dashboard.json msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"])" -msgstr "Postavi podrazumevana opcije za sve grafikone na ovoj kontrolnoj tabli (Primer: \"boje\": [\"#d1d8dd\", \"#ff5858\"])" +msgstr "Postavi podrazumevane opcije za sve grafikone na ovoj kontrolnoj tabli (Primer: \"boje\": [\"#d1d8dd\", \"#ff5858\"])" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "Postavi dinamičke filtere" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23561,7 +23651,7 @@ msgstr "Postavi filtere" msgid "Set Filters for {0}" msgstr "Postavi filtere za {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "Postavi nivo" @@ -23615,7 +23705,7 @@ msgstr "Postavi količinu" msgid "Set Role For" msgstr "Postavi ulogu za" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Postavi korisničke dozvole" @@ -23625,16 +23715,16 @@ msgstr "Postavi korisničke dozvole" msgid "Set Value" msgstr "Postavi vrednost" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "Postavi sve kao privatno" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "Postavi sve kao javno" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "Postavi kao podrazumevano" @@ -23653,18 +23743,21 @@ msgstr "Postavljeno od strane korisnika" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "Ovde postavite dinamičke vrednosti filtera u JavaScript-u za neophodna polja." -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "Postavite nestandardnu preciznost za polje sa decimalnim brojem ili valutom" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "Podesite nestandardnu preciznost za polja vrste decimalni broj, valuta ili procenat" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23673,7 +23766,7 @@ msgstr "Postavi samo jednom" #. Description of the 'Max attachment size' (Int) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Set size in MB" -msgstr "Postavi veličnu u MB" +msgstr "Postavi veličinu u MB" #. Description of the 'Filters Configuration' (Code) field in DocType 'Number #. Card' @@ -23780,14 +23873,9 @@ msgstr "Podešavanje za stranicu kontaktirajte nas" msgid "Settings for the About Us Page" msgstr "Podešavanje za stranicu o nama" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "Podešavanja za upravljanje kategorijama bloga i interakcijama kao što su komentari i lajkovi" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "Postavke" @@ -23803,8 +23891,8 @@ msgstr "Postavke > Korisnik" msgid "Setup > User Permissions" msgstr "Postavke > Korisničke dozvole" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "Postavke automatskog imejla" @@ -23873,11 +23961,6 @@ msgstr "Adresa za isporuku" msgid "Shop" msgstr "Prodavnica" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "Nadimak" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "Kratki obrasci na tastaturi se lako naslućuju" @@ -23897,11 +23980,6 @@ msgstr "Prečice" msgid "Show" msgstr "Prikaži" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "Prikaži \"Poziv na radnju\" u blogu" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23954,7 +24032,13 @@ msgstr "Prikaži dokument" msgid "Show Error" msgstr "Prikaži grešku" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "Prikaži upozorenje za eksterne linkove" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "Prikaži naziv polja (klikni za kopiranje)" @@ -24082,7 +24166,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "Prikaži ključ za prijavljivanje putem društvenih mreža kao autorizacioni server" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "Prikaži oznake" @@ -24099,7 +24183,7 @@ msgstr "Prikaži naslov" msgid "Show Title in Link Fields" msgstr "Prikaži naslov u poljima za link" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "Prikaži ukupne vrednosti" @@ -24139,10 +24223,6 @@ msgstr "Prikaži sve verzije" msgid "Show all activity" msgstr "Prikaži sve aktivnosti" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "Prikaži sve blogove" - #. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" @@ -24191,8 +24271,8 @@ msgstr "Prikaži link ka dokumentu" msgid "Show list" msgstr "Prikaži listu" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "Prikaži više detalja" @@ -24221,7 +24301,7 @@ msgstr "Prikaži naslov u internet pretraživaču kao \"Prefiks - naslov\"" msgid "Show {0} List" msgstr "Prikaži listu {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "Prikaz samo numeričkih polja iz izveštaja" @@ -24256,7 +24336,7 @@ msgstr "Bočna traka i komentari" msgid "Sign Up and Confirmation" msgstr "Registracija i potvrda" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "Registracija je onemogućena" @@ -24293,36 +24373,36 @@ msgstr "Registracija onemogućena" msgid "Signups have been disabled for this website." msgstr "Registracija je onemogućena za ovaj veb-sajt." -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "Jednostavni python izraz, primer: Status in (\"Zatvoreno\", \"Otkazano\")" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" -msgstr "Jednostavni python izraz, primer: status in (\"Nevažeće\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "Jednostavni python izraz, primer: status == \"Invalid\"" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" -msgstr "Jednostavni python izraz, primer: status == 'Otvoreno' and type == 'Greška'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "Jednostavni python izraz, primer: status == 'Open' and issue_type == 'Bug'" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" +msgstr "Jednostavni python izraz, primer: status in (\"Closed\", \"Cancelled\")" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "Istovremene sesije" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "Jedinstveni DocType-ovi se ne mogu prilagođavati." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Jedinstvene vrste imaju samo jedan zapis, bez povezanih tabela. Vrednosti se čuvaju u tabeli tabSingles" @@ -24330,7 +24410,7 @@ msgstr "Jedinstvene vrste imaju samo jedan zapis, bez povezanih tabela. Vrednost msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "Stranica je u režimu isključivo za čitanje zbog održavanja ili ažuriranja stranice, ova radnja se trenutno ne može izvršiti. Molimo Vas da pokušate ponovo kasnije." -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "Veličina" @@ -24549,11 +24629,11 @@ msgstr "Došlo je do greške prilikom generisanja tokena. Kliknite na {0} da bis msgid "Something went wrong." msgstr "Došlo je do greške." -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 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:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "Oprostite! Nemate dozvolu da pregledate ovu stranicu." @@ -24584,20 +24664,23 @@ msgstr "Opcije sortiranja" msgid "Sort Order" msgstr "Redosled sortiranja" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 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/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "Izvor" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "Izvorni kod" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24607,7 +24690,7 @@ msgstr "Naziv izvora" #: frappe/core/doctype/translation/translation.json #: frappe/public/js/frappe/views/translation_manager.js:38 msgid "Source Text" -msgstr "Teskst izvora" +msgstr "Izvorni tekst" #: frappe/public/js/frappe/views/workspace/blocks/spacer.js:23 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:174 @@ -24624,6 +24707,12 @@ msgstr "Neželjeno" msgid "SparkPost" msgstr "SparkPost" +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "Pokreće radnje u pozadinskom zadatku" + #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "Specijalni karakteri nisu dozvoljeni" @@ -24648,8 +24737,8 @@ msgstr "Odredite domene ili porekla koja imaju dozvolu da budu ugrađena u ovaj msgid "Splash Image" msgstr "Splash slika" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "Sr" @@ -24681,11 +24770,11 @@ msgstr "Stack Trace" msgid "Standard" msgstr "Standardno" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "Standardni DocType ne može biti obrisan." -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "Standardni DocType ne može imati podrazumevani format štampe, koristite polje prilagodi obrazac" @@ -24697,7 +24786,7 @@ msgstr "Standardno nije postavljeno" msgid "Standard Permissions" msgstr "Standardne dozvole" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "Standardni format štampe ne može biti ažuriran" @@ -24705,11 +24794,11 @@ msgstr "Standardni format štampe ne može biti ažuriran" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "Standardni stil štampe ne može da se menja. Molimo Vas da napravite duplikat da biste uredili." -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "Standardni izveštaji ne mogu biti obrisani" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "Standardni izveštaji se ne mogu urediti" @@ -24741,8 +24830,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:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "Početak" @@ -24750,7 +24839,7 @@ msgstr "Početak" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24815,6 +24904,7 @@ msgstr "Počinje u" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24823,7 +24913,7 @@ msgstr "Počinje u" msgid "State" msgstr "Stanje" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "Svojstva stanja" @@ -24879,6 +24969,7 @@ msgstr "Vremenski interval statistike" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24903,6 +24994,7 @@ msgstr "Vremenski interval statistike" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24910,8 +25002,8 @@ msgstr "Vremenski interval statistike" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24948,7 +25040,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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "Prikačen" @@ -24978,6 +25070,10 @@ msgstr "Iskorišćenost prostora po tabelama" msgid "Store Attached PDF Document" msgstr "Spremi priloženi PDF dokument" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +msgstr "Sačuvajte API tajnu na sigurnom mestu. Neće biti više prikazivana." + #. 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." @@ -25056,7 +25152,7 @@ msgstr "Poddomen" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -25072,7 +25168,7 @@ msgstr "Naslov" msgid "Subject Field" msgstr "Polje za naslov" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 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" @@ -25086,6 +25182,7 @@ msgstr "Red čekanja za podnošenje" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -25094,10 +25191,11 @@ msgstr "Red čekanja za podnošenje" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: 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:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Podnesi" @@ -25107,7 +25205,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Podnesi" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Podnesi" @@ -25131,7 +25229,7 @@ msgstr "Podnesi nakon uvoza" msgid "Submit an Issue" msgstr "Prijavi problem" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "Podnesi još jedan odgovor" @@ -25143,7 +25241,7 @@ msgstr "Oznaka dugmeta za podnošenje" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "Podnesi prilikom kreiranja" @@ -25155,7 +25253,7 @@ msgstr "Podnesite ovaj dokument da biste završili ovaj korak." msgid "Submit this document to confirm" msgstr "Podnesite ovaj dokument da biste potvrdili" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Podnesi {0} dokumenata?" @@ -25164,11 +25262,11 @@ msgstr "Podnesi {0} dokumenata?" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "Podneto" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "Podneti dokument se ne može vratiti u nacrt. Red tranzicije {0}" @@ -25191,9 +25289,7 @@ msgid "Subsidiary" msgstr "Podružnica" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "Podnaslov" @@ -25207,7 +25303,7 @@ msgstr "Podnaslov" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25249,20 +25345,16 @@ msgstr "Poruka o uspehu" msgid "Success title" msgstr "Naslov uspeha" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "Uspešno! Spremni ste za nastavak 👍" - #. 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 "Broj uspešnih zadataka" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "Uspešne transakcije" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "Uspešno: {0} do {1}" @@ -25304,7 +25396,7 @@ msgstr "Predloži optimizacije" msgid "Suggested Indexes" msgstr "Predloži indekse" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "Predloženo korisničko ime: {0}" @@ -25426,7 +25518,7 @@ msgstr "Sinhronizovanje" msgid "Syncing {0} of {1}" msgstr "Sinhronizovanje {0} od {1}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "Greška u sintaksi" @@ -25549,6 +25641,7 @@ msgstr "Evidencije sistema" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25631,6 +25724,7 @@ msgstr "Evidencije sistema" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" msgstr "Sistem menadžer" @@ -25704,7 +25798,7 @@ msgstr "Tabela" msgid "Table Break" msgstr "Prelom tabele" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "Polje tabele" @@ -25713,7 +25807,7 @@ msgstr "Polje tabele" msgid "Table Fieldname" msgstr "Naziv polja tabele" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "Naziv polja tabele nedostaje" @@ -25735,11 +25829,11 @@ msgstr "Višestruki odabir u tabeli" msgid "Table Trimmed" msgstr "Skraćena tabela" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "Tabela ažurirana" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 msgid "Table {0} cannot be empty" msgstr "Tabela {0} ne može biti prazna" @@ -25781,11 +25875,18 @@ msgstr "Napravi fotografiju" msgid "Target" msgstr "Cilj" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "Zadatak" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "Zadaci" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25847,7 +25948,7 @@ msgstr "Upozorenja u šablonu" msgid "Templates" msgstr "Šabloni" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "Privremeno onemogućeno" @@ -25917,11 +26018,11 @@ msgstr "Hvala Vam" msgid "Thank you for reaching out to us. We will get back to you at the earliest.\n\n\n" "Your query:\n\n" "{0}" -msgstr "Hvala Vam što ste nas kontaktirali. Javićemo Vam se u najkraćem mogućem roku.\n\n\n" +msgstr "Hvala Vam što ste nas kontaktirali. Odgovorićemo Vam u najkraćem mogućem roku.\n\n\n" "Vaše pitanje:\n\n" "{0}" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "Hvala Vam što ste izdvojili svoje dragocene vreme da popunite ovaj obrazac" @@ -25945,7 +26046,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:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "CSV format razlikuje velika i mala slova" @@ -25958,15 +26059,15 @@ msgstr "ID klijenta dobijen putem Google Cloud konzole u odeljku " -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "Uslov '{0}' je nevažeći" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "Uneta URL adresa fajla nije ispravna" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." msgstr "Sledeći planirani datum ne može biti posle datuma završetka." @@ -26009,7 +26110,7 @@ msgstr "Promene su vraćene na prethodno stanje." msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "Kolona {0} sadrži {1} različitih formata datuma. Automatski se postavlja {2} kao podrazumevani format jer je najčešći. Molimo Vas da promenite ostale vrednosti u ovoj koloni u ovaj format." -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "Komentar ne može biti prazan" @@ -26017,7 +26118,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:658 +#: frappe/public/js/frappe/list/list_view.js:687 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." @@ -26047,7 +26148,7 @@ msgstr "Izabrana vrsta dokumenta je zavisna tabela, stoga je potrebna matična v msgid "The field {0} is mandatory" msgstr "Polje {0} je obavezno" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "Naziv polja koje ste naveli u priloženo uz polje nije važeće" @@ -26119,15 +26220,19 @@ msgstr "Broj projekta dobijen putem Google Cloud konzole, u odeljku " -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

    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:1000 msgid "The reset password link has been expired" msgstr "Link za resetovanje lozinke je istekao" -#: frappe/core/doctype/user/user.py:995 +#: frappe/core/doctype/user/user.py:1002 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:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "Resurs koji tražite nije dostupan" @@ -26139,7 +26244,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:336 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." @@ -26160,7 +26265,7 @@ msgstr "Uneta vrednost ima {0} karaktera. Maksimalan dozvoljeni broj karaktera j msgid "The webhook will be triggered if this expression is true" msgstr "Webhook će biti aktiviran ukoliko je ovaj izraz tačan" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "{0} je već postavljen na automatsko ponavljanje {1}" @@ -26200,16 +26305,16 @@ 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:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "Već postoji {0} sa istim filterima u redu čekanja:" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 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:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "Može postojati samo jedno preklapanje u obrascu" @@ -26221,15 +26326,19 @@ 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 +msgid "There is no task called \"{}\"" +msgstr "Ne postoji zadatak pod nazivom \"{}\"" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "Trenutno nema ničeg novog da se prikaže." -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 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:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "Već postoji {0} sa istim filterima u redu čekanja:" @@ -26241,7 +26350,7 @@ msgstr "Mora postojati barem jedno pravilo dozvole." msgid "There was an error building this page" msgstr "Došlo je do greške prilikom izgradnje ove stranice" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "Došlo je do greške prilikom čuvanja filtera" @@ -26253,11 +26362,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:840 +#: frappe/public/js/frappe/views/communication.js:843 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:494 +#: frappe/model/naming.py:502 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" @@ -26298,7 +26407,7 @@ msgstr "Autentifikacija putem eksternih aplikacija" msgid "This Currency is disabled. Enable to use in transactions" msgstr "Ova valuta je onemogućena. Omogućite je da biste je koristili u transakcijama" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "Ova Kanban tabla će biti privatna" @@ -26306,6 +26415,10 @@ msgstr "Ova Kanban tabla će biti privatna" msgid "This Month" msgstr "Ovaj mesec" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "Ovaj PDF ne može biti otpremljen jer sadrži nebezbedan sadržaj." + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "Ovaj kvartal" @@ -26331,6 +26444,11 @@ msgstr "Ova radnja je dozvoljena samo za {}" msgid "This cannot be undone" msgstr "Ovo se ne može opozvati" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +msgstr "Ova kartica je podrazumevano vidljiva samo administratoru i sistem menadžerima. Podesite DocType da je delite sa korisnicima koji imaju pravo čitanja." + #. 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" @@ -26345,11 +26463,11 @@ 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:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "Ovaj doctype ima neizvršene migracije, pokrenite 'bench migrate' pre izmene kako biste izbegli gubitak izmena." -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "Ovaj dokument se ne može trenutno obrisati jer ga drugi korisnik uređuje. Pokušajte ponovo kasnije." @@ -26395,7 +26513,7 @@ msgstr "Ovo polje će se prikazati samo ukoliko polje definisano ovde ima neku v "eval:doc.myfield=='My Value'\n" "eval:doc.age>18" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "Ovaj fajl je priložen u zaštićeni dokument i ne može se obrisati." @@ -26411,7 +26529,7 @@ msgstr "Ovaj fajl je javan. Može mu se pristupiti bez autentifikacije." 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:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "Ovaj obrazac nije moguće urediti zbog radnog toka." @@ -26430,7 +26548,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:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 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." @@ -26454,12 +26572,6 @@ msgstr "Ovo je virtuelni doctype i podaci se periodično brišu." msgid "This is an automatically generated reply" msgstr "Ovo je automatski generisan odgovor" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "Ovo je primer Google SERP pregleda." - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "Ovo je slično često korišćenoj lozinki." @@ -26478,7 +26590,7 @@ 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:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "Ovo može biti odštampano na više stranica" @@ -26486,7 +26598,7 @@ msgstr "Ovo može biti odštampano na više stranica" msgid "This month" msgstr "Ovaj mesec" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 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}." @@ -26494,7 +26606,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:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "Ovaj izveštaj je generisan {0}." @@ -26525,8 +26637,8 @@ msgstr "Ova vrednost je preuzeta iz polja {1} objekta {0}" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " -msgstr "Ova vrednost određuje maksimalan broj redova koji se mogu prikazati u prikazu izveštaja. " +msgid "This value specifies the max number of rows that can be rendered in report view." +msgstr "Ova vrednost određuje maksimalan broj redova koji se mogu prikazati u prikazu izveštaja." #: frappe/website/doctype/web_page/web_page.js:85 msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish" @@ -26557,10 +26669,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "Ovo će resetovati obilazak i prikazati je svim korisnicima. Da li ste sigurni?" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " -msgstr "Ovo će trenutno prekinuti zadatak i može biti rizično, da li ste sigurni? " +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:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "Zagušeno" @@ -26636,9 +26748,11 @@ msgstr "Vremenski prozor (u sekundama)" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26709,11 +26823,11 @@ msgstr "Linkovi vremenskog redosleda" msgid "Timeline Name" msgstr "Naziv vremenskog redosleda" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 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:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "Polje vremenskog redosleda mora biti važeći naziv polja" @@ -26739,10 +26853,7 @@ msgid "Timespan" msgstr "Vremenski opseg" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "Vremenski žig" @@ -26762,9 +26873,6 @@ msgstr "Savet: Isprobajte novi padajući meni za konzolu pomoću" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26789,9 +26897,6 @@ msgstr "Savet: Isprobajte novi padajući meni za konzolu pomoću" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26814,7 +26919,7 @@ msgstr "Polje za naslov" msgid "Title Prefix" msgstr "Prefiks naslova" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "Polje za naslov mora biti važeći naziv polja" @@ -26914,7 +27019,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:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "Za ažurirani izveštaj kliknite na {0}." @@ -26969,7 +27074,7 @@ msgstr "Za uraditi" msgid "Today" msgstr "Danas" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "Prebaci grafikon" @@ -26985,11 +27090,11 @@ msgstr "Prebaci u prikaz mreže" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "Prebaci bočnu traku" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Prebaci bočnu traku" @@ -27035,7 +27140,7 @@ msgid "Tomorrow" msgstr "Sutra" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "Previše dokumenata" @@ -27051,7 +27156,7 @@ msgstr "Previše promena baze podatka u jednoj radnji." msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "Previše zadataka u pozadini u redu čekanja ({0}). Molimo Vas da pokušate ponovo kasnije." -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 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" @@ -27113,10 +27218,10 @@ msgstr "Gore desno" msgid "Topic" msgstr "Tema" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "Ukupno" @@ -27159,18 +27264,18 @@ msgstr "Ukupno vreme rada" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " -msgstr "Ukupan broj imejl poruka za sinhronizaciju tokom početnog procesa " +msgid "Total number of emails to sync in initial sync process" +msgstr "Ukupan broj imejl poruka za sinhronizaciju tokom početnog procesa" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "Ukupno:" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "Ukupno" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "Ukupno redova" @@ -27238,26 +27343,10 @@ msgstr "Prati ključne tačke dokumenta" msgid "Tracking" msgstr "Praćenje" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "URL za praćenje je generisan i kopiran u međuspremnik" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "Heš transakcije" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "Evidencija transakcije" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "Izveštaj o evidenciji transakcije" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "Transrodno" @@ -27271,10 +27360,15 @@ msgstr "Svojstva tranzicije" msgid "Transition Rules" msgstr "Pravila tranzicije" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "Tranzicioni zadaci" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" -msgstr "Tranizicija" +msgstr "Tranzicije" #. Label of the translatable (Check) field in DocType 'DocField' #. Label of the translatable (Check) field in DocType 'Custom Field' @@ -27285,7 +27379,7 @@ msgstr "Tranizicija" msgid "Translatable" msgstr "Moguće prevođenje" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "Prevedi podatke" @@ -27296,7 +27390,7 @@ msgstr "Prevedi podatke" msgid "Translate Link Fields" msgstr "Prevedi polja sa linkovima" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "Prevedi vrednosti" @@ -27380,8 +27474,8 @@ msgstr "Pokušajte ponovo" msgid "Try a Naming Series" msgstr "Isprobajte seriju imenovanja" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "Isprobajte novi dizajner štampe" @@ -27447,7 +27541,7 @@ msgstr "Metod dvofaktorske autentifikacije" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27541,7 +27635,7 @@ msgstr "URL" msgid "URL for documentation or help" msgstr "URL za dokumentaciju ili pomoć" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "URL mora početi sa http:// ili https://" @@ -27644,7 +27738,7 @@ msgstr "Nije moguće poslati imejl zbog nedostajućeg imejl naloga. Molimo Vas d msgid "Unable to update event" msgstr "Nije moguće ažurirati događaj" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "Nije moguće upisati format fajla za {0}" @@ -27653,7 +27747,7 @@ msgstr "Nije moguće upisati format fajla za {0}" msgid "Unassign Condition" msgstr "Ukloni dodeljivanje uslova" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "Neuhvaćeni izuzetak" @@ -27669,7 +27763,7 @@ msgstr "Poništi" msgid "Undo last action" msgstr "Poništi poslednju radnju" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "Navodnici nisu pravilno izbegnuti u tekstualnom izrazu: {0}" @@ -27717,7 +27811,7 @@ msgstr "Nepoznata kolona: {0}" msgid "Unknown Rounding Method: {}" msgstr "Nepoznat metod zaokruživanja: {}" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "Nepoznati korisnik" @@ -27729,8 +27823,7 @@ msgstr "Nepoznato formatiranje fajla. Pokušano je korišćenje: {0}" msgid "Unlock Reference Document" msgstr "Otključaj referentni dokument" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "Povuci sa objave" @@ -27746,7 +27839,7 @@ msgstr "Nepročitano" msgid "Unread Notification Sent" msgstr "Poslata obaveštenja o nepročitanim" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "Nesiguran SQL upit" @@ -27784,8 +27877,8 @@ msgstr "Parametri otkazivanja pretplate" msgid "Unsubscribed" msgstr "Otkazana pretplata" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "Nepodržana funkcija ili neispravan naziv polja: {0}" @@ -27805,7 +27898,7 @@ msgstr "Izdvojeni {0} fajlovi" msgid "Unzipping files..." msgstr "Izdvajanje fajlova..." -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "Predstojeći događaji za danas" @@ -27819,7 +27912,7 @@ msgstr "Predstojeći događaji za danas" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Ažuriraj" @@ -27853,6 +27946,11 @@ msgstr "Ažuriraj redosled" msgid "Update Password" msgstr "Ažuriraj lozinku" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "Ažuriraj profil" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27895,7 +27993,7 @@ msgstr "Ažuriraj {0} zapisa" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "Ažurirano" @@ -27903,7 +28001,7 @@ msgstr "Ažurirano" msgid "Updated Successfully" msgstr "Uspešno ažurirano" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "Ažurirano na novu verziju 🎉" @@ -27911,7 +28009,7 @@ msgstr "Ažurirano na novu verziju 🎉" msgid "Updated successfully" msgstr "Uspešno ažurirano" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "Ažuriranje" @@ -27956,8 +28054,8 @@ msgstr "Nadogradnja plana" msgid "Upgrade your support experience with Frappe Helpdesk" msgstr "Nadogradite Vaše iskustvo podrške sa Frappe Helpdesk" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27967,11 +28065,11 @@ msgstr "Otpremi" msgid "Upload Image" msgstr "Otpremi sliku" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "Otpremi fajl" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "Otpremi {0} fajlova" @@ -28068,15 +28166,11 @@ msgstr "Koristite drugi ID imejla" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "Koristite ukoliko podrazumevana podešavanja ne prepoznaju tačno Vaše podatke" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "Korišćenje funkcije {0} u polju je ograničeno" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "Korišćenje podupita ili funkcije je ograničeno" -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "Koristite novi alat za kreiranje formata za štampu" @@ -28097,7 +28191,9 @@ msgid "Used OAuth" msgstr "Korišćen OAuth" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -28106,6 +28202,7 @@ msgstr "Korišćen OAuth" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -28120,11 +28217,12 @@ msgstr "Korišćen OAuth" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -28133,6 +28231,7 @@ msgstr "Korišćen OAuth" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -28149,17 +28248,11 @@ msgstr "Korišćen OAuth" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "Korisnik" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "Korisnik " - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "Korisnik '{0}' već ima ulogu '{1}'" @@ -28189,7 +28282,7 @@ msgstr "Korisnik ne može da kreira" msgid "User Cannot Search" msgstr "Korisnik ne može da pretražuje" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "Korisnik promenjen" @@ -28253,11 +28346,6 @@ msgstr "ID korisnika" msgid "User ID Property" msgstr "Svojstvo ID korisnika" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "ID korisnika blogera" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28277,6 +28365,11 @@ msgstr "Polje ID korisnika je obavezno za vrstu korisnika {0}" msgid "User Image" msgstr "Slika korisnika" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "Pozivnica korisniku" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "Meni korisnika" @@ -28295,12 +28388,12 @@ msgstr "Korisnička dozvola" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "Korisničke dozvole" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Korisničke dozvole" @@ -28313,7 +28406,9 @@ msgstr "Korisničke dozvole se koriste za ograničavanje korisnika na određene msgid "User Permissions created successfully" msgstr "Korisničke dozvole su uspešno kreirane" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "Uloga korisnika" @@ -28379,6 +28474,10 @@ msgstr "Korisnik ne postoji." msgid "User does not have permission to create the new {0}" msgstr "Korisnik nema dozvolu da kreira novi {0}" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "Korisnik je onemogućen" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "Korisnik je obavezan za deljenje" @@ -28409,7 +28508,7 @@ msgstr "Korisnik {0} ne može biti obrisan" msgid "User {0} cannot be disabled" msgstr "Korisnik {0} ne može biti onemogućen" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "Korisnik {0} ne može biti preimenovan" @@ -28430,7 +28529,7 @@ msgstr "Korisnik {0} nema dozvolu da kreira radni prostor." msgid "User {0} has requested for data deletion" msgstr "Korisnik {0} je zatražio brisanje podataka" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "Korisnik {0} se predstavlja kao {1}" @@ -28438,7 +28537,7 @@ msgstr "Korisnik {0} se predstavlja kao {1}" msgid "User {0} is disabled" msgstr "Korisnik {0} je onemogućen" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "Korisnik {0} je onemogućen. Molimo Vas da kontaktirate sistem menadžera." @@ -28459,7 +28558,7 @@ msgstr "URI sa podacima o korisniku" msgid "Username" msgstr "Korisničko ime" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "Korisničko ime {0} već postoji" @@ -28543,7 +28642,7 @@ msgstr "Validiraj Frappe podešavanje imejla" msgid "Validate SSL Certificate" msgstr "Validiraj SSL sertifikat" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "Greška pri validaciji" @@ -28566,8 +28665,8 @@ msgstr "Važenje" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28599,7 +28698,7 @@ msgstr "Vrednost promenjena" msgid "Value To Be Set" msgstr "Vrednost koju treba postaviti" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "Vrednost se ne može promeniti za {0}" @@ -28615,11 +28714,11 @@ msgstr "Vrednost ne može biti negativna za {0}: {1}" msgid "Value for a check field can be either 0 or 1" msgstr "Vrednost za polje izbora može biti samo 0 ili 1" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 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:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "Vrednost za {0} ne može biti lista" @@ -28644,7 +28743,7 @@ 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:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "Vrednost je prevelika" @@ -28661,7 +28760,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:8 +#: frappe/core/doctype/version/version_view.html:9 msgid "Values Changed" msgstr "Promenjene vrednosti" @@ -28674,7 +28773,7 @@ msgstr "Verdana" msgid "Verification" msgstr "Verifikacija" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "Verifikacioni kod" @@ -28736,15 +28835,7 @@ msgstr "Prikaži sve" msgid "View Audit Trail" msgstr "Prikaži istoriju izmena" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "Prikaži blog objavu" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "Prikaži komentar" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "Prikaži DocType dozvole" @@ -28756,7 +28847,7 @@ msgstr "Prikaži fajl" msgid "View Full Log" msgstr "Prikaži celu evidenciju" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "Prikaži listu" @@ -28766,7 +28857,7 @@ msgstr "Prikaži listu" msgid "View Log" msgstr "Prikaži evidenciju" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Prikaži dozvoljena dokumenta" @@ -28813,7 +28904,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:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "Prikažite Vaš odgovor" @@ -28882,15 +28973,16 @@ msgid "Warehouse" msgstr "Skladište" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Upozorenje" #: frappe/custom/doctype/customize_form/customize_form.js:217 msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" -msgstr "Upozorenje: GUBITAK PODATAKA NEIZBEŽAN! Nastavak će trajno obrisati sledeće kolone baze podatak iz doctype-a {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:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "Upozorenje: Imenovanje nije postavljeno" @@ -28976,7 +29068,7 @@ msgstr "Veb-stranica" msgid "Web Page Block" msgstr "Blok veb-stranice" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "URL veb-stranice" @@ -29079,7 +29171,7 @@ msgstr "URL webhook-a" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "Veb-sajt" @@ -29092,10 +29184,6 @@ msgstr "Analitika veb-sajta" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -29139,7 +29227,7 @@ msgstr "Skripta veb-sajta" msgid "Website Search Field" msgstr "Polje za pretragu na veb-sajtu" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "Polje za pretragu na veb-sajtu mora biti važeći naziv polja" @@ -29343,7 +29431,7 @@ msgstr "Širina" #: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:2 msgid "Widths can be set in px or %." -msgstr "Širine mogu bidi podešene u pikselima ili procentima." +msgstr "Širine mogu biti podešene u pikselima ili procentima." #. Label of the wildcard_filter (Check) field in DocType 'Report Filter' #: frappe/core/doctype/report_filter/report_filter.json @@ -29356,11 +29444,6 @@ msgstr "Filter sa zamenskim simbolom" msgid "Will add \"%\" before and after the query" msgstr "Dodaće \"%\" pre i posle upita" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "Biće korišćeno u URL (obično ime)." - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "Biće Vaš ID za prijavljivanje" @@ -29375,7 +29458,7 @@ msgstr "Biće prikazano samo ukoliko su naslovi odeljaka omogućeni" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "Planirani zadaci će se izvršavati samo jednom dnevno za neaktivne sajtove. Postavite na 0 da biste izbegli automatsko isključivanje planera." -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "Sa zaglavljem" @@ -29453,7 +29536,7 @@ msgstr "Uređivač radnog toka Vam dozvoljava da vizualno kreirate radne tokove. msgid "Workflow Data" msgstr "Podaci radnog toka" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "Detalji radnog toka" @@ -29479,11 +29562,11 @@ msgstr "Stanje radnog toka" msgid "Workflow State Field" msgstr "Polje stanja radnog toka" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "Stanje radnog toka nije postavljeno" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "Tranzicija stanja radnog toka nije dozvoljena sa {0} na {1}" @@ -29491,15 +29574,30 @@ 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:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "Status radnog toka" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "Zadatak radnog toka" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "Tranzicija radnog toka" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "Tranzicioni zadatak radnog toka" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "Tranzicioni zadaci radnog toka" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29515,13 +29613,13 @@ msgstr "Radni tok je uspešno ažuriran" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "Radni prostor" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "Radni prostor {0} ne postoji" @@ -29591,11 +29689,11 @@ msgstr "Radni prostor {0} je kreiran" msgid "Workspaces" msgstr "Radni prostori" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "Da li želite da objavite ovaj komentar? Ovo znači da će postati vidljiv korisnicima veb-sajta/portala." -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "Da li želite da povučete ovaj komentar? Ovo znači da više neće biti vidljiv korisnicima veb-sajta/portala." @@ -29614,11 +29712,11 @@ msgstr "Završavanje" msgid "Write" msgstr "Izmena" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "Pogrešna vrednost u polju preuzmi iz" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "Polje X ose" @@ -29637,13 +29735,13 @@ msgstr "XLSX" msgid "Y Axis" msgstr "Y osa" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" msgstr "Polje Y ose" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "Y polje" @@ -29695,16 +29793,17 @@ msgstr "Žuta" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Da" @@ -29732,6 +29831,18 @@ msgstr "Vi" msgid "You Liked" msgstr "Lajkovali ste" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "Dodali ste 1 red u {0}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "Dodali ste {0} redova u {1}" + +#: frappe/public/js/frappe/router.js:642 +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." + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "Povezani ste na internet." @@ -29770,20 +29881,20 @@ msgstr "Nemate dozvolu da uređujete izveštaj." #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "Nemate dozvolu da izvezete doctype {}" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 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:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "Nemate dozvolu da pošaljete imejl vezan za ovaj dokument" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "Nemate dozvolu da ažurirate ovaj dokument veb-obrasca" @@ -29807,7 +29918,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:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 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." @@ -29833,13 +29944,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "Takođe možete kopirati i nalepiti sledeći link u Vašem internet pretraživaču" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " -msgstr "Takođe možete kopirati i nalepiti ovo " +msgid "You can also copy-paste this" +msgstr "Takođe možete kopirati i nalepiti ovo" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "Takođe možete kopirati i nalepiti ovaj {0} u Vaš internet pretraživač" +#: frappe/templates/emails/user_invitation_expired.html:8 +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." @@ -29852,11 +29967,11 @@ msgstr "Možete promeniti politiku čuvanja podataka u {0}." msgid "You can continue with the onboarding after exploring this page" msgstr "Možete nastaviti sa uvodnom obukom nakon što istražite ovu stranicu" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "Možete onemogućiti ovaj {0} umesto da ga obrišete." -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "Možete povećati ograničenje u podešavanjima sistema." @@ -29876,7 +29991,7 @@ msgstr "Možete odštampati najviše {0} dokumenata odjednom" msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "Možete postaviti samo 3 prilagođene doctype-a u tabeli vrste dokumenata." -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "Možete samo otpremiti JPG, PNG, PDF, TXT, CSV ili Majkrosoft dokumenta." @@ -29894,7 +30009,7 @@ msgstr "Možete izabrati jednu od sledećih," msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "Možete postaviti višu vrednost ovde ukoliko se više korisnika prijavljuje sa iste mreže." -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "Možete pokušati da promenite filtere Vašeg izveštaja." @@ -29906,11 +30021,11 @@ msgstr "Možete koristiti prilagodi obrazac za postavljanje nivoa na poljima." msgid "You can use wildcard %" msgstr "Možete koristiti zamenski simbol %" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "Ne možete postaviti 'Opcije' za polje {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "Ne možete postaviti 'Moguće prevođenje' za polje {0}" @@ -29928,7 +30043,7 @@ 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/custom/doctype/customize_form/customize_form.py:385 +#: 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}" @@ -29958,7 +30073,7 @@ msgstr "Promenili ste {0} u {1}" msgid "You created this" msgstr "Kreirali ste ovo" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "Vi ste kreirali ovaj dokument {0}" @@ -29971,15 +30086,15 @@ msgstr "Nemate dozvolu za čitanje ili izbor za {}" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "Nemate dovoljno dozvola za pristup ovom resursu. Obratite se svom menadžeru za pristup." -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "Nemate dovoljno dozvola da dovršite ovu radnju" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "Nemate dozvolu za pristup polju: {0}" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "Nemate dozvolu za pristup {0}: {1}." @@ -29991,11 +30106,11 @@ msgstr "Nemate dozvolu da otkažete sve povezane dokumente." msgid "You don't have access to Report: {0}" msgstr "Nemate pristup izveštaju: {0}" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "Nemate dozvole za pristup DocType-u {0}." -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "Nemate dozvolu za pristup ovom fajlu" @@ -30003,19 +30118,19 @@ msgstr "Nemate dozvolu za pristup ovom fajlu" msgid "You don't have permission to get a report on: {0}" msgstr "Nemate dozvolu da dobijate izveštaj za: {0}" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "Nemate dozvolu za pristup ovom dokumentu" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " -msgstr "Imate novu poruku od: " +msgid "You have a new message from:" +msgstr "Imate novu poruku od:" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "Uspešno ste odjavljeni" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "Dostigli ste ograničenje broja redova u tabeli baze podataka: {0}" @@ -30023,11 +30138,7 @@ msgstr "Dostigli ste ograničenje broja redova u tabeli baze podataka: {0}" msgid "You have not entered a value. The field will be set to empty." msgstr "Niste uneli vrednost. Polje će biti postavljeno kao prazno." -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "Dobili ste ❤️ lajkova na svojoj blog objavi" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "Morate omogućiti dvofaktorsku autentifikaciju u podešavanjima sistema." @@ -30047,7 +30158,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:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "Još uvek niste kreirali {0}" @@ -30064,11 +30175,11 @@ msgstr "Vi ste poslednji put ovo uredili" msgid "You must add atleast one link." msgstr "Morate dodati barem jedan link." -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "Morate biti prijavljeni da biste koristili ovaj obrazac." -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "Morate biti prijavljeni da biste podneli ovaj obrazac" @@ -30092,7 +30203,7 @@ msgstr "Morate biti sistemski korisnik da biste pristupili ovoj stranici." msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "Morate biti u razvojnom režimu da biste uredili standardni veb-obrazac" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "Morate biti prijavljeni i imati ulogu sistem menadžera da biste pristupili rezervnim kopijama." @@ -30100,13 +30211,13 @@ msgstr "Morate biti prijavljeni i imati ulogu sistem menadžera da biste pristup msgid "You need to be logged in to access this page" msgstr "Morate biti prijavljeni da biste pristupili ovoj stranici" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "Morate biti prijavljeni da biste pristupili ovom {0}." #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " -msgstr "Prvo morate kreirati ovo: " +msgid "You need to create these first:" +msgstr "Prvo morate kreirati ovo:" #: frappe/www/login.html:76 msgid "You need to enable JavaScript for your app to work." @@ -30140,11 +30251,19 @@ msgstr "Potrebna Vam je dozvola za izmenu na {0} {1} za preimenovanje" msgid "You need {0} permission to fetch values from {1} {2}" msgstr "Potrebna Vam je dozvola {0} da biste preuzeli vrednosti iz {1} {2}" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "Uklonili ste 1 red iz {0}" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "Uklonili ste ovaj prilog {0}" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "Uklonili ste {0} redova iz {1}" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "Izgleda da ste spremni za nastavak!" @@ -30175,10 +30294,26 @@ msgstr "Prestali ste da pratite ovaj dokument" msgid "You viewed this" msgstr "Pregledali ste ovo" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "Bićete preusmereni na:" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "Pozvani ste da se pridružite {0}" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "Pozvani ste da se pridružite {0}." + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "Prijavljeni ste kao drugi korisnik na drugoj kartici. Osvežite ovu stranicu da biste nastavili rad u sistemu." +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "YouTube" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "Vaš CSV fajl se generiše i biće prikazan u sekciji prilozi kada bude spreman. Takođe, biće Vam poslato obaveštenje kada fajl bude dostupan za preuzimanje." @@ -30208,7 +30343,7 @@ msgstr "Vaše prečice" msgid "Your account has been deleted" msgstr "Vaš nalog je obrisan" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "Vaš nalog je zaključan i biće ponovo omogućen nakon {0} sekundi" @@ -30232,10 +30367,22 @@ msgstr "Zahtev za povezivanje sa Google Calendar-a je uspešno prihvaćen" msgid "Your email address" msgstr "Vaša imejl adresa" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "Vaš izveštaj koji ste izvezli: {0}" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "Vaš obrazac je uspešno ažuriran" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "Vašu pozivnicu za pridruživanje {0} je otkazao administrator sajta." + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "Vaša pozivnica za pridruživanje {0} je istekla." + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "Vaš ID za prijavljivanje je" @@ -30258,7 +30405,11 @@ msgstr "Naziv i adresa Vaše organizacije za podnožje imejla." msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "Vaš upit je primljen. Odgovorićemo Vam uskoro, ukoliko imate dodatne informacije molimo Vas da odgovorite na ovu poruku." -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "Vaš izveštaj se generiše u pozadini. Dobićete imejl na {0} sa linkom za preuzimanje kada bude spreman." + +#: frappe/app.py:377 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." @@ -30280,7 +30431,7 @@ msgstr "Nula" msgid "Zero means send records updated at anytime" msgstr "Nula znači poslati zapise koji su ažurirani u bilo kojem trenutku" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" msgstr "[Radnja preduzeta od strane {0}]" @@ -30302,10 +30453,6 @@ msgstr "`as_iterator` radi samo sa `as_list=True` ili `as_dict=True`" msgid "`job_id` paramater is required for deduplication." msgstr "parametar `job_id` je obavezan za uklanjanje duplikata." -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "dodati su redovi za {0}" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30340,7 +30487,7 @@ msgstr "po ulozi" msgid "cProfile Output" msgstr "cProfile izlaz" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "kalendar" @@ -30485,12 +30632,12 @@ msgstr "emacs" msgid "email" msgstr "imejl" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "prijemna pošta imejla" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "prazno" @@ -30547,7 +30694,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "h" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "hub" @@ -30562,11 +30709,6 @@ msgstr "ikonica" msgid "import" msgstr "uvoz" -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "u minutima" - #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "jane@example.com" @@ -30575,7 +30717,7 @@ msgstr "jane@example.com" msgid "just now" msgstr "upravo sada" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "oznaka" @@ -30604,7 +30746,7 @@ msgstr "lista" msgid "logged in" msgstr "prijavljen" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "login_required" @@ -30625,11 +30767,6 @@ msgstr "m" msgid "merged {0} into {1}" msgstr "spojeno {0} u {1}" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "min za čitanje" - #. 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 @@ -30653,7 +30790,7 @@ msgstr "modul" msgid "module name..." msgstr "naziv modula..." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "novo" @@ -30782,10 +30919,6 @@ msgstr "čitanje" msgid "red" msgstr "crvena" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "uklonjeni redovi za {0}" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "preimenovano sa {0} u {1}" @@ -30841,19 +30974,19 @@ msgstr "podeli" msgid "short" msgstr "kratko" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "od prošlog meseca" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "od prošle nedelje" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "od prošle godine" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "od juče" @@ -30906,6 +31039,10 @@ msgstr "ovaj obrazac" msgid "this shouldn't break" msgstr "ovo ne bi trebalo da se pokvari" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "u Vaš internet pretraživač" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30933,7 +31070,7 @@ msgstr "version_table" msgid "via Assignment Rule" msgstr "putem pravila dodele" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "putem automatskog ponavljanja" @@ -30947,7 +31084,7 @@ msgstr "putem uvoza podataka" msgid "via Google Meet" msgstr "putem Google Meet" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "putem obaveštenja" @@ -30980,10 +31117,15 @@ msgstr "kada se klikne na element, fokusiraće se na iskačuću poruku ukoliko j msgid "wkhtmltopdf" msgstr "wkhtmltopdf" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "wkhtmltopdf 0.12.x (sa ispravljenim qt)." +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "workflow_transition" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json @@ -31011,11 +31153,11 @@ msgstr "yyyy-mm-dd" msgid "{0}" msgstr "{0}" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "{0} ${skip_list ? \"\" : vrsta}" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "{0} ${type}" @@ -31041,19 +31183,19 @@ msgstr "{0} = {1}" msgid "{0} Calendar" msgstr "{0} kalendar" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "{0} grafikon" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: 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:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "{0} polja" @@ -31077,6 +31219,10 @@ msgstr "{0} lajkovano" msgid "{0} List" msgstr "{0} lista" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "{0} podešavanje prikaza liste" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "{0} M" @@ -31089,7 +31235,7 @@ msgstr "{0} mapa" msgid "{0} Name" msgstr "{0} naziv" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 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}" @@ -31099,11 +31245,10 @@ 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:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "{0} izveštaji" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "{0} podešavanja" @@ -31128,7 +31273,15 @@ msgstr "{0} radni prostor" msgid "{0} added" msgstr "{0} dodato" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "{0} je dodao 1 red u {1}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "{0} je dodao {1} redova u {2}" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0} već postoji. Izaberite drugi naziv" @@ -31140,7 +31293,7 @@ msgstr "{0} je već otkazao pretplatu" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0} je već otkazao pretplatu za {1} {2}" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "{0} i {1}" @@ -31148,7 +31301,7 @@ msgstr "{0} i {1}" msgid "{0} are currently {1}" msgstr "{0} je trenutno {1}" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "{0} su neophodni" @@ -31165,7 +31318,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0} priložen {1}" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "{0} ne može biti veće od {1}" @@ -31207,11 +31360,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "{0} je promenio {1} u {2}" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "{0} komentara" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 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." @@ -31224,7 +31373,7 @@ msgstr "{0} je uspešno kreirano" msgid "{0} created this" msgstr "{0} je kreirao ovo" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "dokument {1} je kreiran od strane {0}" @@ -31246,7 +31395,7 @@ msgstr "{0} ne postoji u redu {1}" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "{0} polje ne može biti postavljeno kao jedinstveno u {1}, jer postoje nejedinstvene postojeće vrednosti" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "Polja {0} ne smeju da sadrže backticks (`): {1}" @@ -31278,7 +31427,7 @@ msgstr "{0} je napustio razgovor u {1} {2}" msgid "{0} hours ago" msgstr "pre {0} časova" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "{0} ukoliko niste preusmereni unutar {1} sekundi" @@ -31287,23 +31436,23 @@ 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:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "{0} je obavezno polje" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "{0} nije važeći zip fajl" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "{0} nije važeće polje za podatak." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "{0} nije važeća imejl adresa u 'Primaoci'" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "{0} je između {1} i {2}" @@ -31312,27 +31461,27 @@ msgstr "{0} je između {1} i {2}" msgid "{0} is currently {1}" msgstr "{0} je trenutno {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "{0} je jednako {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "{0} je veće ili jednako {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "{0} je veće od {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "{0} je manje ili jednako {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "{0} je manje od {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "{0} je kao {1}" @@ -31340,7 +31489,7 @@ msgstr "{0} je kao {1}" msgid "{0} is mandatory" msgstr "{0} je obavezno" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "{0} nije zavisna tabela od {1}" @@ -31360,12 +31509,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:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} nije važeći DocType ili dinamički link" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "{0} nije važeća imejl adresa" @@ -31373,15 +31522,15 @@ 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:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "{0} nije važeći naziv" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "{0} nije važeći broj telefona" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 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." @@ -31397,55 +31546,59 @@ msgstr "{0} nije važeće matično polje za {1}" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} nije važeći format izveštaja. Format izveštaja treba da bude jedan od sledećih {1}" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "{0} nije zip fajl" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "{0} nije dozvoljena uloga za {1}" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "{0} nije jednako {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "{0} nije kao {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "{0} nije jedan od {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "{0} nije postavljen" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "{0} je sada podrazumevani format za štampanje za {1} doctype" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 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:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: 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/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "{0} je postavljeno" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "{0} je unutar {1}" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "odabrano {0} stavki" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} se upravo predstavio kao Vi. Naveo je sledeći razlog: {1}" @@ -31478,35 +31631,35 @@ msgstr "pre {0} minuta" msgid "{0} months ago" msgstr "pre {0} meseci" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "{0} mora biti nakon {1}" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "{0} mora počinjati sa '{1}'" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "{0} mora biti jednako '{1}'" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "{0} ne sme biti nijedno od {1}" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} mora biti jedan od {1}" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "{0} mora prvo biti postavljeno" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "{0} mora biti jedinstveno" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "{0} mora biti {1} {2}" @@ -31514,7 +31667,7 @@ msgstr "{0} mora biti {1} {2}" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "{0} mora počinjati i završavati se slovom i može sadržati samo slova, crtu ili donju crtu." -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "{0} nije važeće stanje" @@ -31527,11 +31680,11 @@ msgid "{0} not found" msgstr "{0} nije pronađeno" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} od {1}" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} od {1} ({2} redova sa zavisnim podacima)" @@ -31540,7 +31693,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "samo {0}." -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "{0} ili {1}" @@ -31564,6 +31717,10 @@ msgstr "{0} zapisa obrisano" msgid "{0} records will be exported" msgstr "{0} zapisa će biti izvezeno" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "{0} je uklonio 1 red iz {1}" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31573,15 +31730,29 @@ msgstr "{0} je uklonio prilog {1}" msgid "{0} removed their assignment." msgstr "{0} je uklonio svoj zadatak." -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "{0} je uklonio {1} redova iz {2}" + +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "Uloga {0} nema dozvole ni za jednu vrstu dokumenta" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " -msgstr "{0} red#{1}: " +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" +msgstr "{0} red#{1}:" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "{0} redova iz {1}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "{0} redova u {1}" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "{0} je uspešno sačuvano" @@ -31601,11 +31772,11 @@ msgstr "{0} je podelio ovaj dokument sa svima" msgid "{0} shared this document with {1}" msgstr "{0} je podelio ovaj dokument sa {1}" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "{0} treba da bude indeksirano jer se koristi u vezama na kontrolnoj tabli" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "{0} ne sme biti isto kao {1}" @@ -31618,8 +31789,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "{0} je podneo ovaj dokument {1}" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "{0} pretplatnika dodato" @@ -31629,7 +31800,7 @@ msgstr "{0} da biste prestali da primate imejl ove vrste" #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "{0} do {1}" @@ -31637,7 +31808,7 @@ msgstr "{0} do {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} je opozvao deljenje ovog dokumenta {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} je ažurirano" @@ -31673,15 +31844,15 @@ 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:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "{0} {1} već postoji" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 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}\"" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "{0} {1} ne može biti krajnji čvor jer ima zavisne entitete" @@ -31697,11 +31868,11 @@ msgstr "{0} {1} je povezan sa sledećim podnetim dokumentima: {2}" msgid "{0} {1} not found" msgstr "{0} {1} nije pronađen" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 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:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "{0}, red {1}" @@ -31709,79 +31880,79 @@ 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:1120 +#: frappe/model/base_document.py:1181 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:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "{0}: Ne može se postaviti izmena bez otkazivanja" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 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:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 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:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "{0}: Ne može se postaviti otkazivanje bez podnošenja" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "{0}: Ne može se postaviti uvoz bez kreiranja" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 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:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 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:405 +#: 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:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 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:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 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:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 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:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 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:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 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:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "{0}: Osnovne dozvole nisu postavljene" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 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:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 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:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 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:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 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}" @@ -31789,7 +31960,7 @@ 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:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 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" @@ -31797,7 +31968,7 @@ msgstr "{0}: Dozvola na nivou 0 mora biti postavljena pre viših nivoa" 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:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "{0}: naziv polja ne sme da sadrži rezervisane reči {1}" @@ -31810,11 +31981,11 @@ 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:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} u odnosu na {2}" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "{0}: naziv polja {1} za {2} ne može biti indeksiran" @@ -31838,7 +32009,7 @@ msgstr "{count} red izabran" msgid "{count} rows selected" msgstr "{count} redova izabrano" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 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}}." @@ -31846,11 +32017,11 @@ msgstr "{{{0}}} nije ispravan format naziva polja. Trebalo bi da bude {{field_na msgid "{} Complete" msgstr "{} završeno" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "{} Nevažeći python kod na liniji {}" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
    {}" msgstr "{} Potencijalno nevažeći python kod.
    {}" @@ -31876,7 +32047,7 @@ msgstr "{} je onemogućeno. Može se omogućiti samo ukoliko je {} označeno." msgid "{} is not a valid date string." msgstr "{} nije ispravan datum u tekstualnom formatu." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "{} nije pronađen PATH! Ovo je neophodno za pristup konzoli." diff --git a/frappe/locale/sv.po b/frappe/locale/sv.po index 19aa178092..f23c41c952 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-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-22 21:46\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Swedish\n" "MIME-Version: 1.0\n" @@ -18,10 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: sv_SE\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr "till din webbläsare" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json @@ -61,7 +57,7 @@ msgstr "#{0}" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "${values.doctype_name} har lagts till i kö för optimering" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" msgstr "© Frappe Technologies Pvt. Ltd. och bidragsgivare" @@ -74,7 +70,7 @@ msgstr "<head> HTML" 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:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 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}" @@ -82,19 +78,23 @@ msgstr "\"I Global Sökning\" är otillåtet för {0} på rad {1}" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "\"I List Vy\" är inte tillåtet för fält {0} av typ {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "\"I Lista Vy\" är otillåtet for typ {0} på rad {1}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" msgstr "\"Mottagare\" inte angivet" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "'{0}' är inte ett giltigt IBAN nummer" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" msgstr "'{0}' är inte en giltig webbadress" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "'{0}' är otillåtet för typ {1} på rad {2}" @@ -102,11 +102,11 @@ msgstr "'{0}' är otillåtet för typ {1} på rad {2}" msgid "(Mandatory)" msgstr "(Erfordrad)" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "** Misslyckades: {0} till {1}: {2}" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" msgstr "+Lägg Till/Ta Bort Fält" @@ -122,7 +122,7 @@ msgstr "0 - Utkast; 1 - Godkänd; 2 - Annullerad" msgid "0 is highest" msgstr "0 är högsta värde" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = Sant & 0 = Falskt" @@ -140,15 +140,11 @@ 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:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 Rapport" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "1 kommentar" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "1 dag sedan" @@ -157,17 +153,17 @@ msgid "1 hour" msgstr "1 timme" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "1 timme sedan" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "1 minut sedan" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "1 månad sedan" @@ -179,37 +175,47 @@ msgstr "1 av 2" msgid "1 record will be exported" msgstr "1 post exporteras" -#: frappe/tests/test_utils.py:711 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "1 rad från {0}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "1 rad till {0}" + +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "1 sekund sedan" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "1 vecka sedan" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "1 år sedan" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "2 timmar sedan" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "2 månader sedan" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "2 veckor sedan" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "2 år sedan" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "3 minuter sedan" @@ -225,7 +231,7 @@ msgstr "4 timmar" msgid "5 Records" msgstr "5 Poster" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "5 dagar sedan" @@ -245,6 +251,15 @@ msgstr "<" msgid "<=" msgstr "<=" +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "\n" +" Klicka här för att läsa mer om tokenbaserad autentisering\n" +"" + #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "{0} är inte giltig URL" @@ -254,6 +269,16 @@ msgstr "{0} är inte giltig URL" msgid "
    Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
    " msgstr "
    Vänligen uppdatera inte det eftersom det kan förstöra ditt formulär. Använd Anpassa Formulär och anpassa Fält och ange egenskaper!
    " +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

    Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

    " +msgstr "

    Begär fil som innehåller din personligt identifierbara information (PII) som sparas i vårt system. Filen kommer att vara i JSON format och skickas till dig via e-post. Om du vill att din PII ska raderas från vårt system kan skapa begäran om att radera data.

    " + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

    Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

    " +msgstr "

    Skicka en begäran om att radera ditt konto och personligt identifierbar information (PII) som lagras i vårt system. Du kommer att få ett e-postmeddelande för att verifiera din begäran. När begäran har verifierats kommer vi att ta hand om att radera din PII. Om du bara vill kontrollera vilken PII vi har lagrat kan du begära dina uppgifter.

    " + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -638,7 +663,7 @@ msgstr "

    För att interagera med ovanstående HTML måste du använda `root_el "some_class_element.textContent = \"Ny innehåll\";\n" "" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

    " msgstr "

    Din OTP hemlighet på {0} är återställd. Om du inte begärde återställning kontakta din systemadministratör omedelbart.

    " @@ -728,7 +753,7 @@ msgstr ">" msgid ">=" msgstr ">=" -#: frappe/core/doctype/doctype/doctype.py:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 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" @@ -737,15 +762,16 @@ msgstr "DocType namn ska börja med bokstav och kan bara bestå av bokstäver, s msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "System instans kan fungera som en OAuth Klient, Resurs eller Auktorisering Server. Denna DocType innehåller inställningar som rör alla tre." -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" -msgstr "Utvalt inlägg måste ha omslagsbild" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "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:175 msgid "A field with the name {0} already exists in {1}" msgstr "Ett fält med detta namn {0} finns redan i {1}" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "En fil med samma namn {} finns redan" @@ -758,7 +784,7 @@ msgstr "Lista över resurser som Kund App kommer att ha tillgång till efter att msgid "A new account has been created for you at {0}" msgstr "Ny konto har skapats för dig på {0}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "Återkommande {0} {1} har skapats via Återkommande {2}." @@ -859,13 +885,17 @@ msgstr "API Slutpunkt" msgid "API Endpoint Args" msgstr "API Slutpunkt Argument" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "API slutpunkt argument ska vara giltig JSON" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -884,6 +914,10 @@ msgstr "API Nyckel och Hemlighet för att interagera med relä server. Dessa kom msgid "API Key cannot be regenerated" msgstr "API Nyckel kan inte återskapas" +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "API Nycklar" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -904,7 +938,7 @@ msgstr "API Begäran Logg" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -951,6 +985,20 @@ msgstr "Cirka {0} minuter kvar" msgid "About {0} seconds remaining" msgstr "Cirka {0} sekunder kvar" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "Acceptera Inbjudan" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "Accepterad" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "Accepterad" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -976,7 +1024,7 @@ msgstr "Åtkomst Token" msgid "Access Token URL" msgstr "Åtkomst Token URL" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Åtkomst är ej tillåtet från denna IP Adress" @@ -1040,7 +1088,7 @@ msgstr "Åtgärd / Sökväg" msgid "Action Complete" msgstr "Åtgärd Klar" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "Åtgärd Misslyckades" @@ -1092,7 +1140,7 @@ msgstr "Åtgärd {0} misslyckades {1} {2}. Visa {3}" #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "Åtgärder" @@ -1149,7 +1197,7 @@ msgstr "Aktivitet Logg" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -1160,7 +1208,7 @@ msgstr "Aktivitet Logg" msgid "Add" msgstr "Lägg till" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "Lägg till/Ta Bort Kolumn" @@ -1172,7 +1220,7 @@ msgstr "Lägg till / Uppdatera" msgid "Add A New Rule" msgstr "Lägg till Ny Regel" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Lägg till Bilaga" @@ -1192,7 +1240,7 @@ msgstr "Lägg till Kant Längst Ner" msgid "Add Border at Top" msgstr "Lägg till Kant Längst Upp" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "Lägg till i Översikt Panel" @@ -1205,10 +1253,10 @@ msgid "Add Child" msgstr "Lägg till Underval" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "Lägg till Kolumn" @@ -1267,7 +1315,7 @@ msgstr "Lägg till Deltagare" msgid "Add Query Parameters" msgstr "Lägg till Fråge Parametrar" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "Lägg till Roller" @@ -1300,12 +1348,12 @@ msgstr "Lägg till Prenumeranter" msgid "Add Tags" msgstr "Lägg till Taggar" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Lägg till Taggar" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "Lägg till Mall" @@ -1394,7 +1442,7 @@ msgstr "Lägg till ny flik" msgid "Add page break" msgstr "Lägg till sidbrytning" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "Lägg till Skript för Undertabell" @@ -1432,7 +1480,7 @@ msgstr "Lägg till den här aktiviteten genom att skicka E-post till {0}" msgid "Add {0}" msgstr "Lägg till {0} " -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" msgstr "Lägg till {0}" @@ -1475,6 +1523,7 @@ msgstr "Extra Behörigheter" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1483,16 +1532,18 @@ msgstr "Adress" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" -msgstr "Adress Linje 1" +msgstr "Adressrad 1" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "Adress Linje 2" +msgstr "Adressrad 2" #. Name of a DocType #: frappe/contacts/doctype/address_template/address_template.json @@ -1540,7 +1591,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:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "Administration" @@ -1554,7 +1605,6 @@ msgstr "Administration" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1567,11 +1617,11 @@ msgstr "Administration" msgid "Administrator" msgstr "Administratör" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "Administratör Inloggad" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "Administratör loggade in {0} {1} via IP Adress {2}." @@ -1592,8 +1642,8 @@ msgstr "Avancerad" msgid "Advanced Control" msgstr "Avancerad Kontroll" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" msgstr "Avancerad Sökning" @@ -1652,7 +1702,7 @@ msgstr "Efter Godkännande" msgid "After Submit" msgstr "Efter Godkännande" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "Aggregerad Fält erfordras för att skapa nummerkort" @@ -1679,11 +1729,11 @@ msgstr "Varna" msgid "Alerts and Notifications" msgstr "Varningar och Aviseringar" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "Alias kan inte vara SQL nyckelord: {0}" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "Alias måste vara sträng" @@ -1748,7 +1798,7 @@ 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:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "Alla Godkännande" @@ -1808,8 +1858,8 @@ msgstr "Tillåt Massredigering" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " -msgstr "Antal Tillåtna Inloggning Försök i Följd " +msgid "Allow Consecutive Login Attempts" +msgstr "Antal Tillåtna Inloggning Försök i Följd" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 msgid "Allow Google Calendar Access" @@ -1829,11 +1879,6 @@ msgstr "Tillåt Gäst" msgid "Allow Guest to View" msgstr "Tillåt Gäst att Visa" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "Tillåt Gäst att Kommentera" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1882,7 +1927,7 @@ msgid "Allow Print for Cancelled" msgstr "Tillåt Utskrift för Annullerad" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "Tillåt Utskrift för Utkast" @@ -2115,7 +2160,7 @@ msgstr "Tillåter att aktiverad Social Inloggning Nyckel Bas URL visas som aukto msgid "Allows skipping authorization if a user has active tokens." msgstr "Tillåter hoppa över auktorisering om användare har aktiva tokens." -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "Redan Registrerad" @@ -2123,11 +2168,11 @@ msgstr "Redan Registrerad" msgid "Already in the following Users ToDo list:{0}" msgstr "Redan i följande Användare Att-Göra lista: {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "Lägger till beroende valuta fält {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "Lägger till status beroende fält {0}" @@ -2136,6 +2181,12 @@ msgstr "Lägger till status beroende fält {0}" msgid "Alternative Email ID" msgstr "Alternativ E-post" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "Alltid" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2150,13 +2201,13 @@ msgstr "'Utkast' Rubrik för Utkast Dokument" #. 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always use this email address as sender address" -msgstr "Använd alltid denna E-post som Avsändare Adress" +msgstr "Använd alltid som Avsändare Adress" #. 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 "Använd alltid detta Namn som Avsändarens Namn" +msgstr "Använd alltid som Avsändare Namn" #. Label of the amend (Check) field in DocType 'Custom DocPerm' #. Label of the amend (Check) field in DocType 'DocPerm' @@ -2187,10 +2238,8 @@ msgstr "Ändrad Dokument Namngivning Inställningar" msgid "Amended Documents" msgstr "Ändrade Dokument" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "Ändrad Från" @@ -2214,6 +2263,11 @@ msgstr "Ändring Ej Tillåten" msgid "Amendment naming rules updated." msgstr "Ändring Namngivning Regler uppdaterad." +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 msgid "An error occurred while setting Session Defaults" msgstr "Fel inträffade vid konfiguration av Session Standard" @@ -2307,10 +2361,12 @@ msgid "App Logo" msgstr "App Logotyp " #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2381,6 +2437,10 @@ msgstr "Applikation Namn" msgid "Application Version" msgstr "Applikation Version" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "Appen är inte installerad" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2390,7 +2450,7 @@ msgstr "Tillämpad På" msgid "Apply" msgstr "Tillämpa" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Tillämpa Tilldelning Regel" @@ -2438,7 +2498,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:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "Tillämpar: {0}" @@ -2471,7 +2531,11 @@ msgstr "Arkiverad" msgid "Archived Columns" msgstr "Arkiverade Kolumner" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +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:2115 msgid "Are you sure you want to clear the assignments?" msgstr "Är du säker på att du vill ta bort tilldelningar?" @@ -2499,11 +2563,15 @@ 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:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +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 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:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "Är du säker på att du vill skapa ny rapport?" @@ -2511,7 +2579,7 @@ msgstr "Är du säker på att du vill skapa ny rapport?" 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}?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "Är du säker på att du vill fortsätta?" @@ -2521,7 +2589,7 @@ msgstr "Är du säker på att du vill återaktivera schemaläggare?" #: frappe/core/doctype/communication/communication.js:163 msgid "Are you sure you want to relink this communication to {0}?" -msgstr "Är du säker att du vill länka om konversation till {0}?" +msgstr "Är du säker att du vill länka om kommunikation till {0}?" #: frappe/core/doctype/rq_job/rq_job_list.js:10 msgid "Are you sure you want to remove all failed jobs?" @@ -2566,6 +2634,12 @@ msgstr "Eftersom dokumentdelning är inaktiverat, skapa nödvändiga behörighet msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "Enligt begäran har ditt konto och data på {0} kopplat till E-post {1} tagits bort permanent" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "Fråga" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2575,7 +2649,7 @@ msgstr "Tilldela Villkor" msgid "Assign To" msgstr "Tilldela till" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Tilldela till" @@ -2638,6 +2712,11 @@ msgstr "Tilldelad Till" msgid "Assigned To/Owner" msgstr "Tilldelad Till/Ansvarig" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "Tilldelad" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "Tilldelar..." @@ -2707,7 +2786,13 @@ msgstr "Tilldelning av {0} är borttagen av {1}" msgid "Assignments" msgstr "Uppgifter" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "Asynkron" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "Minst en kolumn erfordras för att visas i rutnät." @@ -2787,7 +2872,7 @@ msgstr "Bifogad till Fält" msgid "Attached To Name" msgstr "Bifogad till Namn" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "Bifogat till namn måste vara en sträng eller ett heltal" @@ -2803,7 +2888,7 @@ msgstr "Bilaga" msgid "Attachment Limit (MB)" msgstr "Bilaga Gräns (MB)" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "Bilaga Gräns uppnådd" @@ -2821,15 +2906,15 @@ msgstr "Bilaga Borttagen" #. Label of the attachments (Code) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "Bilagor" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "Försöker ansluta till QZ Aktivitet Fält..." -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "Försöker starta QZ Aktivitet Fält..." @@ -2852,6 +2937,10 @@ msgstr "Granskning Spår" msgid "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" +msgstr "Autentisering URL data ska vara giltig JSON" + #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authenticate as Service Principal" @@ -2869,8 +2958,8 @@ msgid "Authentication" msgstr "Autentisering" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " -msgstr "Autentisering App som kan användas är: " +msgid "Authentication Apps you can use are:" +msgstr "Autentisering App som kan användas är:" #: frappe/email/doctype/email_account/email_account.py:339 msgid "Authentication failed while receiving emails from Email Account: {0}." @@ -2983,11 +3072,11 @@ msgstr "Återkommande Händelse" msgid "Auto Repeat Day" msgstr "Återkommande Händelse Dag" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "Återkommande Händelse Dag{0} {1} är upprepad." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "Återkommande Händelse av Dokument Skapande Misslyckades" @@ -2995,11 +3084,16 @@ msgstr "Återkommande Händelse av Dokument Skapande Misslyckades" msgid "Auto Repeat Schedule" msgstr "Återkommande Händelse Schema" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "Automatisk Upprepning Användare" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "Återkommande Händelse skapad för detta dokument" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "Återkommande Händelse misslyckades för {0}" @@ -3043,7 +3137,7 @@ msgstr "Automatiskt följ.dokument som du kommenterar" msgid "Auto follow documents that you create" msgstr "Automatiskt följ dokument som du skapar" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "Automatisk upprepning misslyckad. Aktivera automatisk upprepning när problem är åtgärdad." @@ -3091,7 +3185,7 @@ msgstr "Automatisk länkning kan endast aktiveras om Inkommande E-post är aktiv msgid "Automatically Assign Documents to Users" msgstr "Automatisk Tilldela Dokument till Användare" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "Automatiskt tillämpat filter för senaste data. Du kan inaktivera detta beteende från listvy inställningar." @@ -3105,11 +3199,6 @@ msgstr "Automatiskt borttagning av konto inom (timmar)" msgid "Automation" msgstr "Automatisering" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "Avatar" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3381,8 +3470,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:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "Baserat På" @@ -3499,10 +3588,8 @@ msgstr "Binär Logg" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "Resume" @@ -3532,64 +3619,6 @@ msgstr "Spärra Moduler" msgid "Blocked" msgstr "Spärra" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "Blogg" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "Blogg Kategori" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "Blogg Introduktion" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "Blogg Inledning" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "Blogg Inlägg" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "Blogg Inställningar" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "Blogg Benämning" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "Bloggare" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3687,13 +3716,6 @@ msgstr "Märke är det som visas uppe till vänster i verktyg fält. Om det är msgid "Breadcrumbs" msgstr "Brödsmulor" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "Bläddra efter kategori" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3723,7 +3745,7 @@ msgstr "Bufferpool Storlek" #. Name of a Workspace #: frappe/core/workspace/build/build.json msgid "Build" -msgstr "Utveckla" +msgstr "Skapa" #. Description of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json @@ -3751,15 +3773,15 @@ msgstr "Massborttagning" msgid "Bulk Edit" msgstr "Mass Redigera" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "Mass Redigera {0}" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" msgstr "Mass Åtgärd Fel" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "Mass Åtgärd Klar" @@ -3774,7 +3796,7 @@ msgstr "Mass PDF Export" msgid "Bulk Update" msgstr "Mass Uppdatera" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "Mass Godkännande stöder endast upp till 500 dokument." @@ -3786,7 +3808,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:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "Mass {0} i bakgrund kö." @@ -3802,17 +3824,17 @@ msgstr "Knapp" #. Label of the button_gradients (Check) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Button Gradients" -msgstr "Gradient Knapp" +msgstr "Knapp Gradienter" #. 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 "Rundade Hörn Knapp" +msgstr "Knapp Rundade Hörn" #. Label of the button_shadows (Check) field in DocType 'Website Theme' #: frappe/website/doctype/website_theme/website_theme.json msgid "Button Shadows" -msgstr "Skugg Knapp" +msgstr "Knapp Skuggor" #. Option for the 'Naming Rule' (Select) field in DocType 'DocType' #. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' @@ -3916,16 +3938,6 @@ msgstr "CSS väljare för element som ska markeras." msgid "CSV" msgstr "CSV" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "Funktion Knapp Etikett" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "Funktion Knapp URL" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3976,11 +3988,6 @@ msgstr "Funktion Knapp" msgid "Call To Action URL" msgstr "Funktion Knapp URL" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "Funktion Knapp" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -3998,7 +4005,7 @@ msgid "Camera" msgstr "Kamera" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -4034,7 +4041,7 @@ msgstr "Kan Skriva" 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:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 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" @@ -4058,14 +4065,15 @@ msgstr "Kan inte byta namn på {0} till {1} eftersom {0} inte finns." #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "Annullera" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "Annullera" @@ -4083,16 +4091,18 @@ msgstr "Annullera" msgid "Cancel All Documents" msgstr "Annullera Alla Dokument" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "Annullera {0} dokument?" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -4130,11 +4140,11 @@ msgstr "Kan inte Hämta Värden" msgid "Cannot Remove" msgstr "Kan inte Ta Bort" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "Kan inte Uppdatera efter Godkännande" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "Kan inte komma åt filsökväg {0}" @@ -4142,7 +4152,7 @@ msgstr "Kan inte komma åt filsökväg {0}" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "Kan inte att annullera innan godkännade under övergång från {0} Tillstånd till {1} Tillstånd" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "Kan inte annullera före godkännande.Se Övergång {0}" @@ -4150,11 +4160,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:1013 +#: frappe/model/document.py:1017 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:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "Kan inte ändra dokument status från 1 (Godkänd) till 0 (Utkast)" @@ -4162,11 +4172,11 @@ msgstr "Kan inte ändra dokument status från 1 (Godkänd) till 0 (Utkast)" msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "Kan inte ändra tillstånd för Annullerad Dokument ({0} Tillstånd)" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 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:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 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" @@ -4178,11 +4188,11 @@ msgstr "Kan inte skapa {0} mot underordnad dokument: {1}" msgid "Cannot create private workspace of other users" msgstr "Kan inte skapa privat arbetsyta för andra användare" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "Kan inte ta bort Hem och Bilaga mappar" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 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}" @@ -4217,7 +4227,7 @@ msgstr "Kan inte ta bort system skapad fält {0}. Dölj det ist msgid "Cannot delete {0}" msgstr "Kan inte ta bort {0}" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" msgstr "Kan inte ta bort {0} eftersom det har underordnade noder" @@ -4225,7 +4235,7 @@ msgstr "Kan inte ta bort {0} eftersom det har underordnade noder" msgid "Cannot edit Standard Dashboards" msgstr "Kan inte redigera standard översikt panel" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "Kan inte redigera standard avisering. För att redigera, inaktivera detta och kopiera" @@ -4237,7 +4247,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:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "Kan inte redigera annullerad dokument" @@ -4245,8 +4255,8 @@ msgstr "Kan inte redigera annullerad dokument" msgid "Cannot edit filters for standard charts" msgstr "Kan inte redigera filter för standard diagram" -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "Kan inte redigera filter för standard diagram" @@ -4254,27 +4264,27 @@ msgstr "Kan inte redigera filter för standard diagram" msgid "Cannot edit standard fields" msgstr "Kan inte redigera standard fält" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "Kan inte aktivera {0} för ej godkännbar doctype" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "Kan inte hitta fil {} på disk" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 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:844 +#: frappe/printing/page/print/print.js:884 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:1132 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "Kan inte importera tabell med fler än 5000 rader." -#: frappe/model/document.py:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "Kan inte länka annullerad dokument: {0}" @@ -4286,11 +4296,11 @@ 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:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "Kan inte flytta rad" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "Kan inte ta bort ID fält" @@ -4298,7 +4308,7 @@ msgstr "Kan inte ta bort ID fält" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "Kan inte ange \"Rapport\" behörighet om behörighet \"Endast om Ägare\" är angiven" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "Kan inte ange Avisering med händelse {0} på Dokument Typ {1}" @@ -4315,11 +4325,11 @@ msgstr "Kan inte godkänna {0}." msgid "Cannot update {0}" msgstr "Kan inte uppdatera {0}" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" -msgstr "Kan inte använda underfråga i ordna efter" +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." +msgstr "Kan inte använda underfråga här." -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "Kan inte använda {0} i ordna/gruppera efter" @@ -4387,15 +4397,6 @@ msgstr "Center" 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/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "Kedjeintegritet" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "Kedjehash" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4433,9 +4434,9 @@ msgstr "Ändra Utskrift Format" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
    \n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " -msgstr "Ändra start / aktuell sekvens nummer för befintlig serie.
    \n\n" -"Varning: Felaktig uppdatering av sekvens kan förhindra att dokument skapas." +"Warning: Incorrectly updating counters can prevent documents from getting created." +msgstr "Ändra start / aktuell sekvensnummer för befintlig serie.
    \n\n" +"Varning: Felaktig uppdatering av räknare kan förhindra att dokument skapas." #. Label of the changed_at (Datetime) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -4504,7 +4505,7 @@ msgstr "Diagram Källa" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "Diagram Typ" @@ -4537,7 +4538,7 @@ msgstr "Chatta" msgid "Check" msgstr "Markera" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "Kontrollera Begärd URL" @@ -4545,7 +4546,7 @@ msgstr "Kontrollera Begärd URL" msgid "Check columns to select, drag to set order." msgstr "Markera kolumner för att välja, dra för att ange ordning." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "Kontrollera Fel Logg för mer information: {0}" @@ -4586,11 +4587,6 @@ msgstr "Om vald kommer sida att publiceras på webbplats och vara synlig för al msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "Om vald visas textområde där du kan skriva anpassad javascript som körs på den här sida." -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "Checksum Version" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "Underordnade DocTyper är ej tillåtna" @@ -4600,17 +4596,17 @@ msgstr "Underordnade DocTyper är ej tillåtna" msgid "Child Doctype" msgstr "Underordnad Doctype" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "Underordnad tabell {0} för fält {1}" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Underordnade Tabeller visas som rutnät i andra DocTyper" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 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." @@ -4639,6 +4635,7 @@ msgid "Choose authentication method to be used by all users" msgstr "Välj autentiseringsätt som ska användas av alla Användare" #. 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 msgid "City" msgstr "Ort" @@ -4653,7 +4650,7 @@ msgstr "Stad/Ort" msgid "Clear" msgstr "Rensa" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "Rensa & Lägg till Mall" @@ -4665,7 +4662,7 @@ msgstr "Rensa & Lägg till Mall" msgid "Clear All" msgstr "Rensa Alla" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Rensa Tilldelning" @@ -4691,7 +4688,7 @@ msgstr "Rensa Logg Efter (dagar)" msgid "Clear User Permissions" msgstr "Rensa Användare Rättigheter" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "Rensa e-post meddelande och lägg till mall" @@ -4703,11 +4700,15 @@ msgstr "Rensar slut datum, eftersom det kan inte vara före publicering datum." msgid "Click On Customize to add your first widget" msgstr "Klicka på Anpassa för att lägga till din första widget" -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "Klicka nedan för att komma igång:" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "Klicka här" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "Klicka på fil för att välja det." @@ -4738,24 +4739,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "Klicka på {0} att skapa Uppdatering Token." #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "Klicka på tabell att redigera" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "Klicka på att Ange Dynamisk Filter" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "Klicka på att Ange Filter" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "Klicka på att sortera efter {0}" @@ -4933,7 +4934,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Fäll In" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Fäll In Alla" @@ -4988,7 +4989,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:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5044,11 +5045,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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "Kolumn Bred" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "Kolumn bredd kan inte vara noll." @@ -5075,7 +5076,7 @@ msgstr "Kolumner" msgid "Columns / Fields" msgstr "Kolumner / Fält" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "Kolumner baserade på" @@ -5117,16 +5118,6 @@ msgstr "Kommentar Typ" msgid "Comment can only be edited by the owner" msgstr "Kommentar kan endast redigeras av ansvarig" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "Kommentar" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "Kommentar per timme" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "Kommentar publicitet kan endast uppdateras av den ursprungliga författaren eller System Ansvarig." @@ -5134,7 +5125,7 @@ msgstr "Kommentar publicitet kan endast uppdateras av den ursprungliga författa #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "Kommentarer" @@ -5143,7 +5134,7 @@ msgstr "Kommentarer" msgid "Comments and Communications will be associated with this linked document" msgstr "Kommentarer och Kommunikation kommer att kopplas till detta länkade dokument" -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "Kommentarer kan inte ha länkar eller e-post adress" @@ -5215,12 +5206,12 @@ msgid "Company Name" msgstr "Bolag Namn" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "Jämför Versioner" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "Kompilering varning" @@ -5300,8 +5291,8 @@ msgstr "Komprimerad" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5315,6 +5306,11 @@ msgstr "Villkor" msgid "Condition JSON" msgstr "JSON Villkor" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "Villkor Typ" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5340,11 +5336,11 @@ msgstr "Konfiguration" msgid "Configuration" msgstr "Konfiguration" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "Försäljning Order Diagram" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "Konfigurera Kolumner" @@ -5371,7 +5367,7 @@ msgstr "Konfigurera hur ändrade dokument ska namnges.\n\n" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "Konfigurera olika aspekter av hur dokument namn fungerar som att namnge serier, aktuell räknare." -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "Bekräfta" @@ -5390,7 +5386,7 @@ msgstr "Bekräfta Åtkomst" msgid "Confirm Deletion of Account" msgstr "Bekräfta Borttagning av Konto" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "Bekräfta Ny Lösenord" @@ -5417,7 +5413,7 @@ msgstr "Bekräftad" msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "Grattis till konfiguration av modul inställning . För att veta mer läs dokumentation här." -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "Anslut till {}" @@ -5435,8 +5431,8 @@ msgstr "Ansluten App" msgid "Connected User" msgstr "Ansluten Användare" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "Ansluten till QZ Aktivitet Fält!" @@ -5487,6 +5483,10 @@ msgstr "Begränsningar" msgid "Contact" msgstr "Kontakt" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
    {0}" +msgstr "Kontakt / e-post hittades inte. Har inte lagt till deltagare för -
    {0}" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5544,15 +5544,13 @@ msgstr "Innehåller {0} säkerhetskorrigeringar" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5560,24 +5558,12 @@ msgstr "Innehåller {0} säkerhetskorrigeringar" msgid "Content" msgstr "Innehåll " -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "Innehåll (HTML)" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "Innehåll (Markdown)" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "Innehåll Hash" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "Innehåll Typ" @@ -5645,7 +5631,7 @@ msgstr "Kopiera Länk" msgid "Copy embed code" msgstr "Kopiera inbäddningskod" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "Kopiera fel till urklipp" @@ -5653,12 +5639,16 @@ msgstr "Kopiera fel till urklipp" msgid "Copy to Clipboard" msgstr "Kopiera till Urklipp" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +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" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "System DocType kan inte anpassas." @@ -5666,7 +5656,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:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "Rätt version : " @@ -5674,7 +5664,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:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "Kunde inte hitta {0}" @@ -5682,15 +5672,15 @@ msgstr "Kunde inte hitta {0}" msgid "Could not map column {0} to field {1}" msgstr "Kunde inte mappa kolumn {0} till fält {1}" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "Kunde inte parsa fält: {0}" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " -msgstr "Kunde inte starta: " +msgid "Could not start up:" +msgstr "Kunde inte starta:" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "Kunde inte spara. Kontrollera angivna uppgifter" @@ -5735,13 +5725,14 @@ msgstr "Räknare" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "Land" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "Land Kod Erfordras" @@ -5773,13 +5764,13 @@ msgstr "Cr" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Skapa" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "Skapa & Fortsätt" @@ -5793,7 +5784,7 @@ 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:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "Skapa Diagram" @@ -5827,12 +5818,12 @@ msgstr "Skapa Logg" msgid "Create New" msgstr "Skapa Ny" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Skapa Ny " -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "Skapa Ny DocType" @@ -5840,7 +5831,7 @@ msgstr "Skapa Ny DocType" msgid "Create New Kanban Board" msgstr "Skapa Ny Anslagstavla" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "Skapa E-post Konto" @@ -5852,7 +5843,7 @@ msgstr "Skapa ny Format" msgid "Create a Reminder" msgstr "Skapa Påminnelse" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "Skapa ny..." @@ -5860,11 +5851,11 @@ msgstr "Skapa ny..." msgid "Create a new record" msgstr "Skapa ny Post" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "Skapa {0}" @@ -5880,7 +5871,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:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "Skapa {0}" @@ -5890,7 +5881,7 @@ msgstr "Skapa Arbetsflöde med Arbetsflöde Generator." #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "Skapad" @@ -5906,7 +5897,7 @@ msgstr "Skapad" msgid "Created By" msgstr "Skapad Av" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "Skapade Anpassad Fält {0} i {1}" @@ -5918,7 +5909,7 @@ msgstr "Skapade Anpassad Fält {0} i {1}" msgid "Created On" msgstr "Skapad" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "Skapar {0}" @@ -6227,7 +6218,7 @@ msgstr "Anpassad get_list-metod för {0} måste returnera QueryBuilder objekt el #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "Anpassad?" @@ -6255,14 +6246,14 @@ msgstr "Anpassningar Återställda " msgid "Customizations for {0} exported to:
    {1}" msgstr "Anpassningar för {0} som exporterades till:
    {1}" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "Anpassa" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "Anpassa" @@ -6281,7 +6272,7 @@ msgstr "Anpassa Översikt Panel" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "Anpassa Formulär" @@ -6359,7 +6350,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:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "Dagliga Händelser ska avslutas samma dag." @@ -6406,7 +6397,7 @@ msgstr "Mörk Tema" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "Översikt Panel" @@ -6465,7 +6456,6 @@ msgstr "Översikt Paneler" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6478,7 +6468,6 @@ msgstr "Översikt Paneler" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6514,7 +6503,7 @@ msgstr "Data Import Logg" msgid "Data Import Template" msgstr "Data Import Mall" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "Data För Lång" @@ -6545,7 +6534,7 @@ msgstr "Databas Rad Storlek Användning" msgid "Database Storage Usage By Tables" msgstr "Databas Lagring Användning Efter Tabeller" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "Databas Tabell Rad Storlek Gräns" @@ -6683,11 +6672,11 @@ msgstr "Hej {0}" msgid "Debug Log" msgstr "Felsökning Logg" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "Decimalavgränsare måste vara '.' när quoting är angiven som Ej-numerisk" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "Decimalavgränsare måste vara singel tecken" @@ -6849,11 +6838,11 @@ msgstr "Standard Arbetsyta" msgid "Default display currency" msgstr "Standard Valuta" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 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:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 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." @@ -6887,6 +6876,12 @@ msgstr "Standard Inställningar Uppdaterade" msgid "Defines actions on states and the next step and allowed roles." msgstr "Definierar åtgärder på tillstånd, nästa steg och tillåtna roller." +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "Definierar hur länge exporterade rapporter som skickas via e-post ska sparas i system. Äldre filer raderas automatiskt." + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6904,22 +6899,27 @@ 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/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Ta bort" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Ta bort" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "Ta bort" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "Ta bort Konto" @@ -6928,6 +6928,12 @@ msgstr "Ta bort Konto" 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 +msgid "Delete Background Exported Reports After (Hours)" +msgstr "Ta bort Exporterade Bakgrund Rapporter efter (timmar)" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6937,7 +6943,7 @@ msgstr "Ta bort Kolumn" msgid "Delete Data" msgstr "Ta bort Data" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "Ta bort Anslagstavla" @@ -6951,7 +6957,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Ta bort Flik" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "Ta bort och Skapa Ny" @@ -6960,7 +6966,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "Ta bort kolumn" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "Ta bort Kommentar?" @@ -6993,12 +6999,12 @@ msgstr "Ta bort flik" msgid "Delete this record to allow sending to this email address" msgstr "Ta bort denna post för att tillåta utskick till denna E-post" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "Ta bort {0} Post permanent?" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "Ta bort {0} Poster permanent?" @@ -7034,11 +7040,15 @@ msgstr "Raderade Dokument" msgid "Deleted Name" msgstr "Borttaget Namn" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "Alla Dokument Borttagna" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Borttagen!" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "Tar Bort {0}" @@ -7053,7 +7063,7 @@ msgstr "Tar Bort {0}..." #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " +msgid "Deletion Steps" msgstr "Borttagning Steg" #: frappe/core/doctype/page/page.py:110 @@ -7070,7 +7080,7 @@ msgstr "Avgränsning Alternativ" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "Kunde inte identifiera avgränsare. Försök att aktivera anpassade avgränsare och justera avgränsningsalternativ enligt dina uppgifter." -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "Avgränsare måste vara ett enda tecken" @@ -7097,7 +7107,7 @@ msgstr "Avdelning" msgid "Dependencies" msgstr "Beroenden " -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "Beroenden & Licenser" @@ -7132,7 +7142,6 @@ msgstr "Underordnad Av (inklusive)" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -7153,7 +7162,6 @@ msgstr "Underordnad Av (inklusive)" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -7163,11 +7171,6 @@ msgstr "Underordnad Av (inklusive)" msgid "Description" msgstr "Beskrivning" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "Beskrivning för list sida, i vanlig text, bara par rader. (max 200 tecken)" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -7251,7 +7254,7 @@ msgstr "Skrivbord Ikon finns redan" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "Detaljer" @@ -7312,11 +7315,6 @@ msgstr "Inaktivera Ändring Logg Avisering" msgid "Disable Comment Count" msgstr "Inaktivera Räkning av Kommentarer" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "Inaktivera Kommentarer" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7334,11 +7332,6 @@ msgstr "Inaktivera Räkning" msgid "Disable Document Sharing" msgstr "Inaktivera Dokument Delning" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "Inaktivera Gilla" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "Inaktivera Rapport" @@ -7348,6 +7341,11 @@ msgstr "Inaktivera Rapport" msgid "Disable SMTP server authentication" msgstr "Inaktivera SMTP Server Verifiering" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "Inaktivera Rullning" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7362,7 +7360,7 @@ msgstr "Inaktivera Registrering för Webbplats" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Disable Standard Email Footer" -msgstr "Inaktivera Standard Bolag E-post Sidfot" +msgstr "Inaktivera Standard Bolag E-post Signatur" #. Label of the disable_system_update_notification (Check) field in DocType #. 'System Settings' @@ -7393,7 +7391,6 @@ msgstr "Inaktivera Registrering" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7408,7 +7405,6 @@ msgstr "Inaktivera Registrering" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "Inaktiverad" @@ -7419,7 +7415,7 @@ msgstr "Inaktiverad Autosvar" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "Ångra" @@ -7437,7 +7433,7 @@ msgstr "Ångra" msgid "Discard {0}" msgstr "Ångra {0}" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "Ångra?" @@ -7460,7 +7456,7 @@ msgstr "Diskussion Svar" msgid "Discussion Topic" msgstr "Diskussion Ämne" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7496,19 +7492,23 @@ msgstr "Avdelare" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " -msgstr "Skapa inte ny Användare " +msgid "Do Not Create New User" +msgstr "Skapa inte ny Användare" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "Skapa inte ny Användare om Användare med E-post inte finns i system" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 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 +msgid "Do not warn me again about {0}" +msgstr "Varna mig inte igen om {0}" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "Vill du fortfarande fortsätta?" @@ -7602,7 +7602,7 @@ msgstr "Status för följande tillstånd är ändrad:
    {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" @@ -7649,11 +7649,11 @@ msgstr "DocType Tillstånd" msgid "DocType View" msgstr "DocType Vy" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "DocType kan inte slås samman" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "DocType kan namn ändras endast av Administrator" @@ -7662,7 +7662,7 @@ msgstr "DocType kan namn ändras endast av Administrator" msgid "DocType is a Table / Form in the application." msgstr "DocType är Tabell/Formulär i app." -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "DocType måste kunna godkännas för vald DocType Händelse" @@ -7695,7 +7695,7 @@ msgstr "DocType {0} finns inte." msgid "DocType {} not found" msgstr "DocType {} hittades inte" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "DocType namn ska inte börja eller sluta med blanksteg" @@ -7709,7 +7709,7 @@ msgstr "DocTypes kan inte ändras, använd {0} istället" msgid "Doctype" msgstr "DocType" -#: frappe/core/doctype/doctype/doctype.py:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "Doctype namn är begränsad till {0} tecken ({1})" @@ -7771,31 +7771,29 @@ msgstr "Dokument Länkning" msgid "Document Links" msgstr "Dokument Länkar" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 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:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 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:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 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:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 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" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7937,13 +7935,13 @@ msgstr "Dokument Benämning" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "DocType" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 msgid "Document Type and Function are required to create a number card" msgstr "Dokument Typ och Funktion erfordras för att skapa nummerkort" @@ -7980,7 +7978,7 @@ msgid "Document Types and Permissions" msgstr "Dokument Typer och Behörigheter" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "Dokument Upplåst" @@ -7988,15 +7986,15 @@ msgstr "Dokument Upplåst" 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:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "Dokumentet är annullerad" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "Dokument är godkänd" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "Dokumentet är i utkast tillstånd" @@ -8138,13 +8136,13 @@ msgstr "Ring" msgid "Double click to edit label" msgstr "Dubbelklicka för att redigera etikett" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "Ladda ner" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "Ladda ner" @@ -8171,7 +8169,7 @@ msgstr "Nedladdning Länk" msgid "Download PDF" msgstr "Ladda ner PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "Ladda ner Rapport" @@ -8200,7 +8198,7 @@ msgstr "Ladda ner vCard" #: frappe/desk/page/setup_wizard/install_fixtures.py:46 msgid "Dr" -msgstr "Dr" +msgstr "Debet" #: frappe/public/js/frappe/model/indicator.js:73 #: frappe/public/js/frappe/ui/filters/filter.js:538 @@ -8234,7 +8232,7 @@ msgstr "Dra element från sidofält för att lägga till. Dra tillbaka dem till msgid "Drag to add state" msgstr "Dra för att lägga till tillstånd" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "Släpp filer här" @@ -8267,7 +8265,7 @@ msgstr "Kopiera Post" msgid "Duplicate Filter Name" msgstr "Kopiera Filter Namn" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "Kopiera Namn" @@ -8366,17 +8364,17 @@ msgstr "ESC" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8384,7 +8382,7 @@ msgstr "ESC" msgid "Edit" msgstr "Redigera" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Redigera" @@ -8394,7 +8392,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Redigera" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "Redigera" @@ -8423,7 +8421,7 @@ msgstr "Redigera Anpassad HTML" msgid "Edit DocType" msgstr "Redigera DocType" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "Redigera DocType" @@ -8441,7 +8439,7 @@ msgstr "Redigera Filter" msgid "Edit Footer" msgstr "Redigera Sidfot" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "Redigera Format" @@ -8526,7 +8524,7 @@ msgstr "Redigera {0} Doctype" msgid "Edit to add content" msgstr "Redigera att Lägga till Innehåll" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "Redigera din respons" @@ -8535,7 +8533,7 @@ msgstr "Redigera din respons" msgid "Edit your workflow visually using the Workflow Builder." msgstr "Redigera arbetsflöde visuellt med Arbetsflöde Generator." -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "Redigera {0}" @@ -8543,7 +8541,7 @@ msgstr "Redigera {0}" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "Redigerbar Rutnät" @@ -8582,11 +8580,14 @@ msgstr "Element Väljare" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8595,6 +8596,7 @@ msgstr "Element Väljare" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8604,6 +8606,8 @@ msgstr "Element Väljare" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "E-post" @@ -8635,7 +8639,7 @@ msgstr "E-post Konto Inaktiverad" msgid "Email Account Name" msgstr "E-post Konto Namn" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "E-post Konto lagt till flera gånger" @@ -8686,7 +8690,7 @@ msgstr "E-post Flagg Kö" #. Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Email Footer Address" -msgstr "Bolag E-post Sidfot" +msgstr "Standard Bolag E-post Signatur" #. Label of a Link in the Tools Workspace #. Name of a DocType @@ -8723,6 +8727,7 @@ msgid "Email IDs" msgstr "E-post" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "E-post" @@ -8766,10 +8771,10 @@ msgstr "Antal E-post Försök" msgid "Email Rule" msgstr "E-post Regel" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" -msgstr "E-post Skickad" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" +msgstr "E-post skickad Kl" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType @@ -8834,11 +8839,11 @@ msgstr "E-post är markerad som skräp post" msgid "Email has been moved to trash" msgstr "E-post är flyttad till papperskorg" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 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:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "E-post inte skickad till {0} (avregistrerad / inaktiverad)" @@ -8877,7 +8882,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:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "Tomt alias är inte tillåtet" @@ -8885,7 +8890,7 @@ msgstr "Tomt alias är inte tillåtet" msgid "Empty column" msgstr "Tom kolumn" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "Tomma strängargument är inte tillåtna" @@ -8904,7 +8909,7 @@ msgstr "Aktivera" msgid "Enable Address Autocompletion" msgstr "Aktivera Adress Autokomplettering" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "Aktivera Tillåt Återkommande för DocType {0} i Anpassa Formulär" @@ -8930,11 +8935,6 @@ msgstr "Aktivera Kommentarer" msgid "Enable Dynamic Client Registration" msgstr "Aktivera Dynamisk Klient Registrering" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "Aktivera E-post Avisering" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -9028,11 +9028,6 @@ msgstr "Aktivera Säkerhet" msgid "Enable Social Login" msgstr "Aktivera Social Inloggning" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "Aktivera Social Delning" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "Aktivera Spårning Sid Visningar" @@ -9040,7 +9035,7 @@ msgstr "Aktivera Spårning Sid Visningar" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "Aktivera Två Faktor Autentisering" @@ -9052,12 +9047,6 @@ msgstr "Aktivera utvecklarläge för att skapa en standardutskriftsmall" msgid "Enable developer mode to create a standard Web Template" msgstr "Aktivera Utvecklarläge för att skapa en Standard Webb Mall" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "Aktivera E-post Avisering för alla kommentarer eller gilla från Blogg Inlägg." - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -9081,6 +9070,7 @@ msgstr "Aktivera Webbplats Spårning i App" #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -9093,6 +9083,7 @@ msgstr "Aktivera Webbplats Spårning i App" #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "Aktiverad" @@ -9118,15 +9109,11 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "Om automatiskt svar aktiveras på inkommande E-post Konto, skickas automatiska svar på alla synkroniserade E-post meddelanden. Vill du fortsätta?" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "Om aktiverad kommer detta registreras på webbplats på central reläserver för att skicka push aviseringar för alla installerade appar via Firebase Cloud Messaging. Den här servern lagrar endast användare token och felloggar, och inga aviseringar sparas." - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " -msgstr "Om aktiverad kommer detta registreras på webbplats på central reläserver för att skicka push aviseringar för alla installerade appar via Firebase Cloud Messaging. Den här servern lagrar endast användare token och felloggar, och inga aviseringar sparas. " +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "Om aktiverad kommer detta registreras på webbplats på central reläserver för att skicka push aviseringar för alla installerade appar via Firebase Cloud Messaging. Den här servern lagrar endast användare token och felloggar, och inga aviseringar sparas." #. Description of the 'Queue in Background (BETA)' (Check) field in DocType #. 'DocType' @@ -9142,11 +9129,11 @@ msgstr "Om aktiverad skickas dokument i bakgrunden" msgid "Encrypt Backups" msgstr "Kryptera Säkerhetskopior" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "Krypteringsnyckeln är i ogiltigt format!" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "Krypteringsnyckeln är ogiltig! Kontrollera site_config.json" @@ -9158,7 +9145,7 @@ msgstr "Slut" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -9174,6 +9161,10 @@ msgstr "Slut Datum" msgid "End Date cannot be before Start Date!" msgstr "Slut Datum kan inte vara före Start Datum!" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "Slutdatum kan inte vara idag." + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9218,7 +9209,7 @@ msgstr "Ange Klient ID och Klient Hemlighet i Google Inställningar." msgid "Enter Code displayed in OTP App." msgstr "Ange kod som visad i OTP App." -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "Ange E-post Mottagare" @@ -9288,10 +9279,17 @@ msgstr "Lika" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9301,7 +9299,7 @@ msgstr "Lika" msgid "Error" msgstr "Fel" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "Fel" @@ -9321,7 +9319,7 @@ msgstr "Fel Logg" msgid "Error Message" msgstr "Felmeddelande" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 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." @@ -9349,9 +9347,9 @@ msgstr "Fel i Klient Skript." msgid "Error in Header/Footer Script" msgstr "Fel i Brevhuvud/Sidfot Skript" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "Fel i Avisering" @@ -9371,19 +9369,19 @@ msgstr "Fel vid parsning av nästlade filter: {0}" msgid "Error while connecting to email account {0}" msgstr "Fel vid anslutning till E-post Konto {0}" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "Fel vid test av Avisering {0}. Fixa Mall." -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "Fel: Data saknas i tabell {0}" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "Fel: Värdet saknas för {0}: {1}" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "Fel: {0} Rad #{1}: Värde saknas för: {2}" @@ -9440,7 +9438,7 @@ msgstr "Händelse Typ" msgid "Events" msgstr "Händelser" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "Händelser i Dagens Kalender" @@ -9524,7 +9522,7 @@ msgstr "Kör" msgid "Execute Console script" msgstr "Kör Konsol Skript" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "Exekverar Kod" @@ -9532,7 +9530,7 @@ msgstr "Exekverar Kod" msgid "Executing..." msgstr "Kör..." -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "Exekvering Tid: {0} sek" @@ -9558,12 +9556,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Expandera" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Expandera Alla" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "Operator \"and\" eller \"or\" förväntades, resultat: {0}" @@ -9591,7 +9589,9 @@ msgid "Expire Notification On" msgstr "Förfallo Avisering Aktiverad" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "Utgått" @@ -9619,13 +9619,13 @@ msgstr "Förfallo Tid för QR Kod Bild Sida" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Export" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Export" @@ -9662,7 +9662,7 @@ msgstr "Exportera Från" msgid "Export Import Log" msgstr "Exportera Import Logg" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "Exportera Rapport: {0}" @@ -9671,11 +9671,11 @@ msgstr "Exportera Rapport: {0}" msgid "Export Type" msgstr "Export Typ" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "Exportera alla matchande rader?" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "Exportera alla {0} rader? " @@ -9683,6 +9683,10 @@ msgstr "Exportera alla {0} rader? " msgid "Export as zip" msgstr "Exportera som zip fil" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "Exportera i Bakgrunden" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "Export ej tillåtet.{0} roll erfordras för att exportera." @@ -9788,7 +9792,7 @@ msgstr "Misslyckade Jobb" msgid "Failed Logins (Last 30 days)" msgstr "Misslyckade Inloggningar (senaste 30 dagarna)" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "Misslyckade Transaktioner" @@ -9805,7 +9809,7 @@ msgstr "Misslyckades att ändra lösenord." msgid "Failed to complete setup" msgstr "Misslyckades att slutföra Installation" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "Misslyckades att beräkna text för begäran: {}" @@ -9814,15 +9818,15 @@ msgstr "Misslyckades att beräkna text för begäran: {}" msgid "Failed to connect to server" msgstr "Misslyckades att ansluta till server" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "Misslyckades med att avkoda token. Ange giltig base64 kodad token." -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "Misslyckades med att dekryptera nyckel {0}" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "Misslyckades att ta bort {0} dokument: {1}" @@ -9830,8 +9834,8 @@ msgstr "Misslyckades att ta bort {0} dokument: {1}" msgid "Failed to enable scheduler: {0}" msgstr "Misslyckades att aktivera schemaläggare: {0}" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "Misslyckades att utvärdera villkor: {}" @@ -9847,7 +9851,7 @@ msgstr "Misslyckades att skapa namn från serie" msgid "Failed to generate preview of series" msgstr "Misslyckades att skapa förhandsvisning av serie" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "Misslyckades att hämta sätt för kommando {0} med {1}" @@ -9867,11 +9871,11 @@ msgstr "Misslyckadesc att importera virtuell doctype {}, finns kontroll fil?" msgid "Failed to optimize image: {0}" msgstr "Misslyckades att optimera bild: {0}" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "Misslyckades med att rendera meddelande: {}" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "Misslyckades med att rendera ämne: {}" @@ -9921,12 +9925,6 @@ msgstr "FavIkon" msgid "Fax" msgstr "Fax" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "Utvald" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "Återkoppling " @@ -9984,17 +9982,17 @@ msgstr "Hämtar standard Global Sökning dokument." #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "Fält" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 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:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "Fält \"benämning\" erfordras om \"Webbplats Sökfält\" är angiven." @@ -10007,7 +10005,7 @@ msgstr "Fält 'värde' erfordras. Ange värde som ska uppdateras" msgid "Field Description" msgstr "Fält Beskrivning" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "Fält Saknas" @@ -10037,7 +10035,7 @@ msgstr "Fält Mall" msgid "Field Type" msgstr "Fält Typ " -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "Fält är ej tillåtet i fråga" @@ -10063,11 +10061,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/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "Fält {0} hittades inte." -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "Fält {0} på dokument {1} är varken mobil nummer fält, Kund eller Användarlänk" @@ -10085,20 +10083,20 @@ 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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "Fält Namn" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 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:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "Fält Namn {0} måste finnas för att aktivera automatisk namngivning" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "Fält Namn är begränsad till 64 tecken ({0})" @@ -10114,15 +10112,15 @@ msgstr "Fält Namn som kommer att vara DocType för den här länk fält." msgid "Fieldname {0} appears multiple times" msgstr "Fält Namn {0} visas flera gånger" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 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:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "Fält Namn {0} i konflikt mot meta objekt" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "Fält Namn {0} är begränsad" @@ -10145,7 +10143,7 @@ msgstr "Fält Namn {0} är begränsad" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -10158,7 +10156,7 @@ msgstr "Fält" msgid "Fields Multicheck" msgstr "Fält Multicheck" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "Fält `file_name` eller `file_url` måste anges för fil" @@ -10166,7 +10164,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:611 +#: frappe/database/query.py:613 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" @@ -10194,7 +10192,7 @@ msgstr "Fält Typ" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "Fält Typ kan inte ändras från {0} till {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "Fält Typ kan inte ändras från {0} till {1} på rad {2}" @@ -10207,7 +10205,7 @@ msgstr "Fält Typ kan inte ändras från {0} till {1} på rad {2}" msgid "File" msgstr "Fil" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "Fil \"{0}\" hoppades över på grund av ogiltig filtyp" @@ -10260,7 +10258,7 @@ msgstr "Fil URL" msgid "File backup is ready" msgstr "Fil Säkerhetskopiering är klar" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "Fil Namn får inte innehålla {0}" @@ -10268,7 +10266,7 @@ msgstr "Fil Namn får inte innehålla {0}" msgid "File not attached" msgstr "Fil inte bifogad" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "Fil storlek överskred högsta tillåtna storlek på {0} MB" @@ -10277,11 +10275,11 @@ msgstr "Fil storlek överskred högsta tillåtna storlek på {0} MB" msgid "File too big" msgstr "Fil för stor" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "Fil typ {0} är inte tillåten" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "Fil {0} existerar inte" @@ -10295,10 +10293,10 @@ msgstr "Filer" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10335,11 +10333,11 @@ msgstr "Filter Namn" msgid "Filter Values" msgstr "Filtervärden" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "Filtervillkor saknas efter operator: {0}" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "Filterfält får inte innehålla bakåttecken (`)." @@ -10357,7 +10355,6 @@ msgstr "Filtrerad Efter" msgid "Filtered Records" msgstr "Filtrerade Poster" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "Filtrerad efter \"{0}\"" @@ -10372,7 +10369,9 @@ msgstr "Filtrerad efter \"{0}\"" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10394,6 +10393,11 @@ msgstr "Filter Konfiguration" msgid "Filters Display" msgstr "Filter Visning" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "Filter Redigerare" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10406,11 +10410,11 @@ msgstr "Filter JSON" msgid "Filters Section" msgstr "Filter Sektion" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "Filter tillämpade för {0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "Filter Sparade" @@ -10423,18 +10427,18 @@ msgstr "Filter är tillgänglig via filters .

    Skicka utdata msgid "Filters {0}" msgstr "Filter {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:1427 +#: frappe/public/js/frappe/views/reports/report_view.js:1429 msgid "Filters:" msgstr "Filter:" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 msgid "Find '{0}' in ..." msgstr "Hitta '{0}' i..." #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 msgid "Find {0} in {1}" msgstr "Hitta {0} i {1}" @@ -10458,8 +10462,12 @@ msgstr "Veckans Första Arbetsdag" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "Förnamn" @@ -10468,10 +10476,6 @@ msgstr "Förnamn" msgid "First Success Message" msgstr "Första Lyckade Meddelande" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:49 -msgid "First Transaction" -msgstr "Första Transaktion" - #: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." msgstr "Första Data Kolumn måste vara tom." @@ -10522,11 +10526,11 @@ msgstr "Flyttal Precision" msgid "Fold" msgstr "Vika" -#: frappe/core/doctype/doctype/doctype.py:1450 +#: frappe/core/doctype/doctype/doctype.py:1451 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:1448 +#: frappe/core/doctype/doctype/doctype.py:1449 msgid "Fold must come before a Section Break" msgstr "Vikning måste komma före Sektion Brytning" @@ -10544,7 +10548,7 @@ msgstr "Mapp Namn" msgid "Folder name should not include '/' (slash)" msgstr "Mapp namn ska inte innehålla '/' (snedstreck)" -#: frappe/core/doctype/file/file.py:472 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "Mapp {0} är inte tom" @@ -10651,7 +10655,7 @@ msgstr "Sidfot Detaljer" msgid "Footer HTML" msgstr "Sidfot HTML" -#: frappe/printing/doctype/letter_head/letter_head.py:75 +#: frappe/printing/doctype/letter_head/letter_head.py:81 msgid "Footer HTML set from attachment {0}" msgstr "Sidfot HTML angiven från bilaga {0}" @@ -10688,7 +10692,7 @@ msgstr "Sidfot Mall" msgid "Footer Template Values" msgstr "Sidfot Mall Värde" -#: frappe/printing/page/print/print.js:116 +#: frappe/printing/page/print/print.js:129 msgid "Footer might not be visible as {0} option is disabled" msgstr "Sidfot kanske inte visas eftersom alternativ {0} är inaktiverad" @@ -10746,8 +10750,8 @@ msgstr "För Användare" msgid "For Value" msgstr "För Värde" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 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)." @@ -10773,12 +10777,6 @@ msgstr "Till exempel: {} Öppna" msgid "For help see Client Script API and Examples" msgstr "För mer information Klient Skript API och exempel" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "För mer information, klicka här ." - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "För mer information, {0}." @@ -10793,7 +10791,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:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "För {0} på nivå {1} i {2} på rad {3}" @@ -10848,7 +10846,7 @@ 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:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "Formulär" @@ -10908,6 +10906,11 @@ msgstr "Format" msgid "Format Data" msgstr "Format Data" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "Varannan Vecka" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "Vidarebefordra" @@ -10935,7 +10938,15 @@ msgstr "Bråkdel Enheter" msgid "Frappe" msgstr "Frappe" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "System Blogg" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "System Forum" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "Frappe Framework" @@ -11024,7 +11035,7 @@ msgstr "Från Datum" msgid "From Date Field" msgstr "Från Datum" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "Från DocType" @@ -11051,18 +11062,16 @@ msgstr "Full" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "Fullständig Namn" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "Hel Sida" @@ -11088,13 +11097,13 @@ msgstr "Funktion Baserad på" msgid "Function {0} is not whitelisted." msgstr "Funktion {0} är inte vitlistad." -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "Funktion {0} erfordrar argument men inga angavs" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" -msgstr "Extra noder kan endast skapas under 'grupp' typ noder" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "Fler undergrupper kan endast skapas under poster markerade som 'Grupp'" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -11153,7 +11162,7 @@ msgstr "Allmän" msgid "Generate Keys" msgstr "Skapa Nycklar" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "Skapa Ny Rapport" @@ -11161,8 +11170,14 @@ msgstr "Skapa Ny Rapport" msgid "Generate Random Password" msgstr "Skapa Slumpmässig Lösenord" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "Skapa Separata Dokument för varje Tilldelad" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "Skapa Spårning URL" @@ -11185,7 +11200,7 @@ msgstr "Geolocation" msgid "Geolocation Settings" msgstr "Geolokalisering Inställningar" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "Hämta Dagens Alerts" @@ -11321,7 +11336,7 @@ msgid "Go to this URL after completing the form" msgstr "Gå till denna URL efter att ha fyllt i formulär" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "Gå till {0}" @@ -11369,10 +11384,6 @@ msgstr "Google Analytics Anonymisera IP" msgid "Google Calendar" msgstr "Google Kalender" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
    {0}" -msgstr "Google Kalender - Kontakt/E-post hittades inte. La inte till deltagare för -
    {0}" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "Google Kalender - kunde inte skapa kalender för {0}, felkod {1}." @@ -11491,11 +11502,6 @@ msgstr "Google Sheets URL är ogiltig eller inte tillgänglig för allmänhet." msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "Google Sheets URL måste sluta med 'gid = {number}'. Kopiera och klistra in URL från webbläsarens adressfält och försök igen." -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "Google Förhandsvisning" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11572,14 +11578,10 @@ msgstr "Gruppera Efter Typ" msgid "Group By field is required to create a dashboard chart" msgstr "Gruppera Efter Fält erfordras för att skapa Översikt Panel" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "Gruppera Efter måste vara sträng" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "Grupp Nod" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11629,7 +11631,6 @@ msgstr "HH: mm: ss" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11640,9 +11641,8 @@ msgstr "HH: mm: ss" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11746,7 +11746,7 @@ msgstr "Huvud Rubrik" msgid "Header HTML" msgstr "Sidhuvud HTML" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "HTML från bilaga {0}" @@ -11804,6 +11804,12 @@ msgstr "Värme Karta" msgid "Hello" msgstr "Hej" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "Hej," + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11869,7 +11875,7 @@ msgstr "Helvetica" msgid "Helvetica Neue" msgstr "Helvetica Neue" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "Här är din spårning URL" @@ -11905,7 +11911,7 @@ msgstr "Dold " msgid "Hidden Fields" msgstr "Dolda fält" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "Dolda kolumner inkluderar: {0}" @@ -11938,11 +11944,6 @@ msgstr "Dölj Kant" msgid "Hide Buttons" msgstr "Dölj Knappar" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "Dölj Funktion Knapp" - #. 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 @@ -12022,7 +12023,7 @@ msgstr "Dölj Sidofält, Meny och Kommentarer" msgid "Hide Standard Menu" msgstr "Dölj Standard Meny" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "Dölj Taggar" @@ -12036,7 +12037,7 @@ msgstr "Dölj Helger" msgid "Hide descendant records of For Value." msgstr "Dölj Underordnade poster för För Värde." -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "Dölj Detaljer" @@ -12049,7 +12050,7 @@ msgstr "Dölj sidfot" #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Hide footer in auto email reports" -msgstr "Inaktivera Sidfot i Automatiska E-post Rapporter" +msgstr "Inaktivera Signatur i Automatiska E-post Rapporter" #. Label of the hide_footer_signup (Check) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json @@ -12085,11 +12086,8 @@ 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:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -12177,16 +12175,16 @@ msgstr "Antar att du inte har tillgång till någon arbetsyta ännu, men du kan #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "ID" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "ID" @@ -12282,9 +12280,9 @@ 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:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "Ägare" @@ -12412,6 +12410,10 @@ msgstr "Om användare har någon roll vald, blir Användare \"Systemanvändare\" 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." +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "Om detta var ett misstag eller om du behöver tillgång igen, vänligen kontakta ditt team." + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12443,7 +12445,11 @@ msgstr "Om du laddar upp ny information, blir \"Namngivning Serie\" erfordrad, o msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "Om du laddar upp nya poster, lämna kolumn 'namn' (ID) tomt." -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "Om du har några frågor kan du kontakta din system administratör." + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "Om du nyligen återställt webbplats kan du behöva kopiera site_config.json som innehåller ursprunglig kryptering nyckel." @@ -12500,12 +12506,12 @@ msgstr "Ignorera bifogade filer över denna storlek" msgid "Ignored Apps" msgstr "Ignorerade Appar" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "Ej Tillåten Dokument Status för {0}" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "Ej Tillåten SQL Data förfråga" @@ -12566,11 +12572,11 @@ msgstr "Bild Vy" msgid "Image Width" msgstr "Bild Bredd" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 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:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "Bild Fält måste vara av typ Bifoga Bild" @@ -12592,15 +12598,15 @@ msgstr "Bilder" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "Efterlikna" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "Efterlikna som {0}" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "Efterliknat av '{0}'" @@ -12626,7 +12632,7 @@ msgstr "Implicit" msgid "Import" msgstr "Importera" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "Importera" @@ -12854,15 +12860,16 @@ msgstr "Inkludera Tema från Appar" msgid "Include Web View Link in Email" msgstr "Inkludera Länk till Webbvy i E-post" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "Inkludera Filter" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "Inkludera dolda kolumner" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "Inkludera Fördjupning" @@ -12909,7 +12916,7 @@ msgstr "Inkommande E-post Konto är inte korrekt" msgid "Incomplete Virtual Doctype Implementation" msgstr "Ofullständig Virtuell DocType Implementering" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "Ofullständiga inloggning detaljer" @@ -12921,7 +12928,7 @@ msgstr "Felaktig Konfiguration" msgid "Incorrect URL" msgstr "Felaktig URL" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "Felaktig Användare eller Lösenord" @@ -12929,11 +12936,11 @@ msgstr "Felaktig Användare eller Lösenord" msgid "Incorrect Verification code" msgstr "Felaktig Verifiering Kod" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "Felaktigt värde i rad {0}:" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "Felaktigt värde:" @@ -12945,7 +12952,7 @@ msgstr "Felaktigt värde:" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "Index" @@ -13020,7 +13027,7 @@ msgstr "Infoga \tOvan" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "Infoga Efter" @@ -13036,7 +13043,7 @@ msgstr "Infoga Efter fält '{0}' som anges i Anpassad Fält '{1}', med Etikett ' msgid "Insert Below" msgstr "Infoga Nedan" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "Infoga Kolumn Före {0}" @@ -13054,8 +13061,12 @@ msgstr "Infoga Nya Poster" msgid "Insert Style" msgstr "Infoga Stil" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "Instagram" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "Installera {0} från Marknadsplats" @@ -13072,7 +13083,7 @@ msgid "Installed Applications" msgstr "Installerade Applikationer" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "Installerade Appar" @@ -13089,19 +13100,19 @@ msgstr "Instruktioner skickade per E-post" msgid "Insufficient Permission Level for {0}" msgstr "Otillräckliga Behörigheter för ändring av {0}" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "Otillräckliga Behörigheter för ändring av {0}" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" msgstr "Otillräckliga Behörigheter för att radera Rapport" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" msgstr "Otillräckliga Behörigheter för att redigera Rapport" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "Otillräcklig Bifoga Gräns" @@ -13140,7 +13151,7 @@ msgstr "System Integrationer" #. 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Integrations can use this field to set email delivery status" -msgstr "Integrationer kan använda detta fält för att ange E-post leverans status" +msgstr "System Integrationer kan använda detta fält för att ange E-post leverans status" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json @@ -13205,9 +13216,9 @@ msgid "Invalid" msgstr "Ogiltig" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "Ogiltig 'depends_on' uttryck" @@ -13215,7 +13226,7 @@ msgstr "Ogiltig 'depends_on' uttryck" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "Ogiltig uttryck 'beroende på' i filter {0}" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "Ogiltigt uttryck för \"obligatoriskt_beror_på\"" @@ -13231,7 +13242,7 @@ msgstr "Ogiltig CSV Format" msgid "Invalid Code. Please try again." msgstr "Ogiltig kod. Försök igen." -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "Ogiltig Villkor: {}" @@ -13251,16 +13262,20 @@ msgstr "Ogiltig DocType" msgid "Invalid DocType: {0}" msgstr "Ogiltig DocType: {0}" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "Ogiltig Doctype" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "Ogiltigt Fält Namn" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "Ogiltig Fil URL" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "Ogiltigt Filter" @@ -13292,7 +13307,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:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "Ogiltig Namngivning Serie: {}" @@ -13301,8 +13316,8 @@ msgstr "Ogiltig Namngivning Serie: {}" msgid "Invalid Operation" msgstr "Ogiltig Åtgärd" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "Ogiltig Alternativ" @@ -13314,25 +13329,25 @@ msgstr "Ogiltig Utgående E-Post Server eller Port: {0}" msgid "Invalid Output Format" msgstr "Ogiltig Utdata Format" -#: frappe/model/base_document.py:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "Ogiltig Åsidosättning" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "Ogiltiga Parametrar" -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "Ogiltigt Lösenord" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "Ogiltig Telefon Nummer" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "Ogiltig Begäran" @@ -13341,7 +13356,7 @@ msgstr "Ogiltig Begäran" msgid "Invalid Search Field {0}" msgstr "Ogiltig Sök Fält {0}" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "Ogiltigt Tabell Fältnamn" @@ -13349,8 +13364,8 @@ msgstr "Ogiltigt Tabell Fältnamn" msgid "Invalid Transition" msgstr "Ogiltig Övergång" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13364,47 +13379,51 @@ msgstr "Ogiltig Användar Namn eller Support Lösenord. Rätta till och försök msgid "Invalid Values" msgstr "Ogiltiga Värden" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "Ogiltig Webbhook Hemlighet" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "Ogiltig aggregatfunktion" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "Ogiltig alias format: {0}. Alias måste vara enkel identifierare." -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "Ogiltig app" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "Ogiltig argument format: {0}. Endast citerade sträng litteraler eller enkla fältnamn är tillåtna." -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "Ogiltig argumenttyp: {0}. Endast strängar, siffror och None är tillåtna." -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "Ogiltiga tecken i fältnamn: {0}. Endast bokstäver, siffror och understreck är tillåtna." -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "Ogiltiga tecken i tabellnamn: {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "Ogiltig Kolumn" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "Ogiltig villkorstyp i nästlade filter: {0}" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "Ogiltig riktning i Sortera Efter: {0}. Måste vara 'ASC' eller 'DESC'." -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "Ogiltig dokument status" @@ -13416,31 +13435,27 @@ 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:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "Ogiltig fältformat för SELECT: {0}. Fältnamn måste vara enkla, bakåtkvalificerade, tabellkvalificerade, alias eller '*'." -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "Ogiltig fältformat i {0}: {1}. Använd \"field\", \"link_field.field\" eller \"child_table.field\"." -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "Ogiltig fältnamn i funktion: {0}. Endast enkla fältnamn är tillåtna." -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "Ogiltig Fält Namn {0}" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "Ogiltigt fältnamn: {0}" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "Ogiltig fälttyp: {0}" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "Ogiltig Fält Namn '{0}' i automatisk namn" @@ -13448,11 +13463,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:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "Ogiltig filtervillkor: {0}. Förväntade lista eller tupel." -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 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'." @@ -13460,20 +13475,28 @@ msgstr "Ogiltig filter fältformat: {0}. Använd 'fieldname' eller 'link_fieldna msgid "Invalid filter: {0}" msgstr "Ogiltig Filter: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "Ogiltig typ av funktionsargument: {0}. Endast strängar, siffror, listor och None är tillåtna." -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "Ogiltigt funktion ordbok format" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "Ogiltig inmatning" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "Ogiltig JSON har lagts till i anpassade alternativ: {0}" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "Ogiltig nyckel" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "Ogiltig namn typ (heltal) för varchar namn kolumn" @@ -13481,6 +13504,10 @@ msgstr "Ogiltig namn typ (heltal) för varchar namn kolumn" msgid "Invalid naming series {}: dot (.) missing" msgstr "Ogiltig namngivning serie {}: punkt (.) saknas" +#: frappe/model/naming.py:76 +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/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "Ogiltig eller skadat innehåll för import" @@ -13489,19 +13516,27 @@ msgstr "Ogiltig eller skadat innehåll för import" msgid "Invalid redirect regex in row #{}: {}" msgstr "Ogiltigt omdirigering regex på rad #{}: {}" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "Ogiltiga begäran argument" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "Ogiltig begäran" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "Ogiltig roll" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "Ogiltig enkelt filterformat: {0}" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "Ogiltig start för filtervillkor: {0}. Förväntade lista eller tupel." -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "Ogiltig sträng litteral format: {0}" @@ -13509,7 +13544,7 @@ msgstr "Ogiltig sträng litteral format: {0}" msgid "Invalid template file for import" msgstr "Ogiltig mall fil för import" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "Ogiltig token tillstånd! Kontrollera om token är skapad av OAuth användare." @@ -13518,20 +13553,20 @@ 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:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "Ogiltiga värden specifierade för UUID: {}" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 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:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "Ogiltig wkhtmltopdf version" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "Ogiltig {0} villkor" @@ -13540,10 +13575,47 @@ msgstr "Ogiltig {0} villkor" msgid "Inverse" msgstr "Omvänd" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "Inbjudan redan accepterad" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "Inbjudan finns redan" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "Inbjudan kan inte avbrytas" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "Inbjudan är avbruten" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "Inbjudan har gått ut" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "Inbjudan hittades inte" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "Inbjudan att gå med {0} avbruten" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "Inbjudan att gå med {0} har gått ut" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "Skapa Användare" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "Inbjuden av" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "Är" @@ -13568,7 +13640,7 @@ msgstr "Är Kalender och Gantt" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "Är Undertabell" @@ -13621,6 +13693,10 @@ msgstr "Är Mapp" msgid "Is Global" msgstr "Är Global" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Är Grupp" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13647,8 +13723,13 @@ msgstr "Är Valfri Tillstånd" msgid "Is Primary" msgstr "Är Primär" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "Är Primär Adress" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 msgid "Is Primary Contact" msgstr "Är Primär Kontakt Person" @@ -13679,7 +13760,7 @@ msgstr "Är Allmän" msgid "Is Published Field" msgstr "Är Publicerad Fält" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "Är Publicerad Fält måste vara giltig Fält Namn" @@ -13704,7 +13785,7 @@ msgstr "Är Installation Klar?" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "Är Singel" @@ -13740,7 +13821,7 @@ msgstr "Är Standard" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "Är Godkännbar" @@ -13946,11 +14027,11 @@ msgstr "Anslagstavla Bord Kolumn" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "Anslagstavla Bord Namn" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Anslagstavla Inställningar" @@ -13967,16 +14048,18 @@ msgstr "Håll koll på alla uppdatering flöde" #. Description of a DocType #: frappe/core/doctype/communication/communication.json msgid "Keeps track of all communications" -msgstr "Konversation Översikt" +msgstr "Kommunikation Övervakning" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -14238,7 +14321,7 @@ msgstr "Etikett erfordras" msgid "Landing Page" msgstr "Webbplats" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "Landskap" @@ -14246,10 +14329,13 @@ msgstr "Landskap" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Språk" @@ -14337,8 +14423,12 @@ msgstr "Förra Månad" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "Efternamn" @@ -14353,6 +14443,11 @@ msgstr "Senaste Lösenord Återställning Datum" msgid "Last Quarter" msgstr "Förra Kvartal" +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "Senast Mottagen" + #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json @@ -14369,11 +14464,6 @@ msgstr "Sista Körning" msgid "Last Sync On" msgstr "Senast Synkroniserad" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "Senast Synkroniserad" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14430,7 +14520,7 @@ msgstr "Lämna tom för ingen slut datum" #: frappe/core/doctype/communication/mixins.py:207 #: frappe/email/doctype/email_account/email_account.py:720 msgid "Leave this conversation" -msgstr "Lämna denna konversation" +msgstr "Lämna denna kommunikation" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json @@ -14464,7 +14554,7 @@ msgstr "Vänster Center" #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:58 msgid "Left this conversation" -msgstr "Lämnade denna konversation" +msgstr "Lämnade denna kommunikation" #. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json @@ -14484,7 +14574,7 @@ msgstr "Längd" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "Längd av datamatrisen är större än värdet för maximum tillåtna etikett punkter!" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "Längd av {0} ska vara mellan 1 och 1000" @@ -14533,8 +14623,8 @@ 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:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14562,7 +14652,7 @@ msgstr "Brevhuvud Namn" msgid "Letter Head Scripts" msgstr "Brevhuvud Skript" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "Brevhuvud kan inte vara både Inaktiverad och Standard" @@ -14579,7 +14669,7 @@ msgstr "Brevhuvud i HTML" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "Nivå" @@ -14629,20 +14719,6 @@ msgstr "Ljus Tema" msgid "Like" msgstr "Gillar" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "Gillar Gräns" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "Gillar per timme" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "Gillar på {0}: {1}" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "Gillad" @@ -14683,6 +14759,7 @@ msgstr "Linje" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14696,6 +14773,7 @@ msgstr "Linje" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "Länk" @@ -14826,10 +14904,15 @@ msgstr "Länkad" msgid "Linked With" msgstr "Länkad Med" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +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 (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14837,6 +14920,7 @@ msgstr "Länkad Med" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "Länkar" @@ -14878,7 +14962,7 @@ msgstr "Lista Filter" msgid "List Settings" msgstr "Lista Inställningar" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Lista Inställningar" @@ -14919,7 +15003,7 @@ msgstr "Lista av exekverade patchar" msgid "List setting message" msgstr "Listinställning Meddelande" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "Listor" @@ -14928,9 +15012,8 @@ msgstr "Listor" msgid "Load Balancing" msgstr "Last Balansering" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Ladda Mer" @@ -14938,7 +15021,7 @@ msgstr "Ladda Mer" #: frappe/public/js/frappe/form/footer/form_timeline.js:215 msgctxt "Form timeline" msgid "Load More Communications" -msgstr "Ladda mer Konversation" +msgstr "Ladda Mer Kommunikation" #: frappe/public/js/frappe/file_uploader/TreeNode.vue:45 msgid "Load more" @@ -14947,10 +15030,10 @@ msgstr "Läs in mer" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "Laddar" @@ -14962,7 +15045,7 @@ msgstr "Laddar Filter..." msgid "Loading import file..." msgstr "Laddar Import Fil..." -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "Laddar versioner..." @@ -14972,7 +15055,7 @@ msgstr "Laddar versioner..." #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "Laddar..." @@ -15033,7 +15116,7 @@ msgstr "Logga in för att öppna denna sida." msgid "Log out" msgstr "Logga Ut" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "Utloggad" @@ -15093,7 +15176,7 @@ msgstr "Inloggning Verifiering Kod från {}" msgid "Login and view in Browser" msgstr "Logga in och visa i Webbläsare" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "Inloggning erfordras för att se webbformulär lista. Aktivera {0} för att se list inställningar" @@ -15101,7 +15184,7 @@ msgstr "Inloggning erfordras för att se webbformulär lista. Aktivera {0} för msgid "Login link sent to your email" msgstr "Inloggning länk skickad till din e-post" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "Inloggning inte tillåtet vid denna tid" @@ -15154,7 +15237,7 @@ msgstr "Logga in med E-post länk" msgid "Login with email link expiry (in minutes)" msgstr "E-post Länk Giltig (minuter)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "Inloggning med användarnamn och lösenord är inte tillåtet." @@ -15173,7 +15256,7 @@ msgstr "Logotyp URI" msgid "Logout" msgstr "Logga Ut" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "Logga ut Alla Sessioner" @@ -15277,7 +15360,10 @@ msgid "Major" msgstr "Stora" #. 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 +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "'namn' sökbar i Global Sökning" @@ -15353,7 +15439,7 @@ msgstr "Erfordrad Beroende Av" msgid "Mandatory Depends On (JS)" msgstr "Erfodrad Beroende Av (JS)" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "Erfodrad Information saknas:" @@ -15365,15 +15451,15 @@ msgstr "Erfodrade Fält: Ange Roll för" msgid "Mandatory field: {0}" msgstr "Erfodrade Fält: {0}" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "Erfordrade fält som saknas i tabell {0}, Rad {1}" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "Erfodrade Fält saknas i {0}" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "Erfodrade Fält saknas:" @@ -15454,10 +15540,8 @@ msgid "Mark as Unread" msgstr "Markera som Oläst" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15520,7 +15604,7 @@ msgstr "Maximum Längd" #. Label of the max_report_rows (Int) field in DocType 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Max Report Rows" -msgstr "Max Antal Rapportrader" +msgstr "Maximal Antal Rapportrader" #. Label of the max_value (Int) field in DocType 'Web Form Field' #: frappe/website/doctype/web_form_field/web_form_field.json @@ -15538,7 +15622,13 @@ msgstr "Max Bilaga storlek" msgid "Max auto email report per user" msgstr "Maximum Antal Automatiska E-post Rapporter per Användare" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "Max antal tillåtna registreringar per timme" + +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "Maximum bredd för typ Valuta är 100px på rad {0}" @@ -15547,20 +15637,15 @@ msgstr "Maximum bredd för typ Valuta är 100px på rad {0}" msgid "Maximum" msgstr "Maximum" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "Maximum bilaga gräns på {0} är uppnåd för {1} {2}." -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "Maximum Antal Fält" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "Maxim bilaga gräns på {0} är uppnåd." -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "Maximum {0} rader tillåtna" @@ -15576,7 +15661,7 @@ msgstr "Innebörd av Godkänn, Annullera, Ändra" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15589,7 +15674,7 @@ msgstr "Medium" msgid "Meeting" msgstr "Möte" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "Uppfyller Villkor?" @@ -15630,7 +15715,7 @@ msgstr "Meny" msgid "Merge with existing" msgstr "Slå samman med befintlig" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "Sammanslafning är endast möjlig mellan grupp till grupp eller underordnad till underordnad" @@ -15656,7 +15741,7 @@ msgstr "Sammanslafning är endast möjlig mellan grupp till grupp eller underord #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15696,7 +15781,7 @@ msgstr "Meddelande Skickad" msgid "Message Type" msgstr "Meddelande Typ" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "Meddelande Urlippt" @@ -15728,29 +15813,21 @@ msgstr "Meddelanden" msgid "Meta" msgstr "Meta" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "Meta Beskrivning" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "Meta Bild" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "Meta Taggar" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "Meta Benämning" @@ -15803,7 +15880,7 @@ msgstr "Sätt" msgid "Method Not Allowed" msgstr "Metod ej Tillåten" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "Sätt erfordras för att skapa nummerkort" @@ -15819,6 +15896,11 @@ msgstr "Mitt Center" msgid "Middle Name" msgstr "Mellannamn" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "Mellannamn (Valfritt)" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15885,11 +15967,11 @@ msgstr "Fröken" msgid "Missing DocType" msgstr "Saknar DocType" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "Fält Värde saknas" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "Fält Värden saknas" @@ -15925,15 +16007,16 @@ msgstr "Mobil" msgid "Mobile No" msgstr "Mobil Nummer" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "Mobilnummer" + #. 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 "Modal Utlösare" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "Ändrad Av" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15954,7 +16037,7 @@ msgstr "Ändrad Av" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -16070,7 +16153,7 @@ msgstr "Måndag" #. Description of a Card Break in the Build Workspace #: frappe/core/workspace/build/build.json msgid "Monitor logs for errors, background jobs, communications, and user activity" -msgstr "Övervaka loggar för fel, bakgrundsjobb, konversation och användaraktivitet" +msgstr "Övervaka loggar för fel, bakgrundsjobb, kommunikation och användaraktivitet" #. Option for the 'Font' (Select) field in DocType 'Print Settings' #: frappe/printing/doctype/print_settings/print_settings.json @@ -16130,10 +16213,12 @@ msgstr "Extra Information" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Mer Information" @@ -16152,7 +16237,7 @@ msgstr "Mer innehåll för sidfot." msgid "Most Used" msgstr "Mest Använd" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "Troligtvis är lösenord för lång." @@ -16163,7 +16248,7 @@ msgstr "Troligtvis är lösenord för lång." msgid "Move" msgstr "Flytta" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "Flytta till" @@ -16199,7 +16284,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:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "Flytta till Rad Nummer" @@ -16226,7 +16311,7 @@ msgstr "Fru" msgid "Ms" msgstr "Fru" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "Flera rot noder är inte tillåtna." @@ -16249,7 +16334,7 @@ msgstr "Måste omges av '()' och inkludera '{0}', som är platshållare för Anv msgid "Must be of type \"Attach Image\"" msgstr "Måste vara av typ 'Bifoga Bild'" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "Behörigheter saknas till den här rapport." @@ -16267,7 +16352,7 @@ msgid "Mx" msgstr "Mx" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16305,9 +16390,9 @@ msgstr "OBS: Denna ruta ska tas bort.Konfigurera LDAP att fungera med nya instä #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16317,11 +16402,11 @@ msgstr "Namn" msgid "Name (Doc Name)" msgstr "Namn(Doctyope Namn)" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "Namn redan tagen, ange ny namn" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "Namn kan inte innehålla special tecken som {0}" @@ -16333,7 +16418,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:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "Namn på {0} kan inte vara {1}" @@ -16374,7 +16459,7 @@ msgstr "Namngivining Regel" msgid "Naming Series" msgstr "Namngivning Serie" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "Namngivning Serie erfordras" @@ -16411,12 +16496,12 @@ msgstr "Toppfält Mall" msgid "Navbar Template Values" msgstr "Toppfält Mall Värden" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Navigera lista ner" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Navigera lista upp" @@ -16431,7 +16516,11 @@ msgstr "Navigera till huvud innehåll" msgid "Navigation Settings" msgstr "Navigation Inställningar" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "Behövs hjälp?" + +#: frappe/desk/doctype/workspace/workspace.py:322 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" @@ -16439,7 +16528,7 @@ msgstr "Arbetsyta Ansvarig roll erfordras för att redigera andra användares pr msgid "Negative Value" msgstr "Negativ Värde" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "Nästlade filter måste anges som lista eller tupel." @@ -16452,6 +16541,12 @@ msgstr "Nested set fel. Kontakta Administratör." msgid "Network Printer Settings" msgstr "Nätverk Skrivare Inställningar" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +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 @@ -16460,7 +16555,7 @@ msgstr "Nätverk Skrivare Inställningar" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16481,10 +16576,6 @@ msgstr "Ny Adress" msgid "New Chart" msgstr "Ny Diagram" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "Ny Kommentar {0}: {1}" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "Ny Kontakt" @@ -16493,8 +16584,8 @@ msgstr "Ny Kontakt" msgid "New Custom Block" msgstr "Ny Anpassad Avsnitt" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" msgstr "Ny Anpassad Utskrift Mall" @@ -16525,7 +16616,7 @@ msgstr "Ny Händelse" msgid "New Folder" msgstr "Ny Mapp" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "Ny Anslagstavla" @@ -16560,12 +16651,12 @@ msgstr "Ny Nummer Kort" msgid "New Onboarding" msgstr "Ny Introduktion" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "Ny Lösenord" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "Ny Utskrift Format Namn" @@ -16574,7 +16665,7 @@ msgstr "Ny Utskrift Format Namn" msgid "New Quick List" msgstr "Ny Snabb Lista" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "Ny Rapport Namn" @@ -16592,8 +16683,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:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "Ny Värde" @@ -16652,13 +16743,13 @@ msgstr "Ny värde att ange" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "Ny {0}" @@ -16674,7 +16765,7 @@ msgstr "Ny {0} {1} har lagts till i Översikt Panel {2}" msgid "New {0} {1} created" msgstr "Ny {0} {1} skapad" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "Ny {0}: {1}" @@ -16682,7 +16773,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:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "Nyskapad användare {0} har inga roller aktiverade." @@ -16695,7 +16786,7 @@ msgstr "Nyhetsbrev Ansvarig" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16802,14 +16893,15 @@ msgstr "Nästa på Klick" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Nej" @@ -16859,6 +16951,10 @@ msgstr "Ingen E-post Konto" msgid "No Email Accounts Assigned" msgstr "Ingen E-post Konto Tilldelad" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "Inget E-post fält hittades i {0}" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "Inga E-post" @@ -16894,15 +16990,15 @@ msgstr "Ingen LDAP Användare hittades för E-post: {0}" msgid "No Label" msgstr "Ingen Etikett" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: 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:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "Inget Namn angiven för {0}" @@ -16910,7 +17006,7 @@ msgstr "Inget Namn angiven för {0}" msgid "No New notifications" msgstr "Inga nya Aviseringar" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "Inga Behörigheter Angivna" @@ -16930,11 +17026,11 @@ msgstr "Inga tillåtna Diagram på denna Översikt Panel" msgid "No Preview" msgstr "Ingen Förhandsgranskning" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "Ingen Förhandsgranskning Tillgänglig." -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "Ingen Skrivare är Tillgänglig." @@ -16950,11 +17046,11 @@ msgstr "Inga Träffar" msgid "No Results found" msgstr "Inga Träffar" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "Inga Roller Specificerade" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "Ingen Välj Fält Hittad" @@ -16962,7 +17058,7 @@ msgstr "Ingen Välj Fält Hittad" msgid "No Suggestions" msgstr "Inga Förslag" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "Inga Taggar" @@ -16974,7 +17070,7 @@ msgstr "Inga Kommande Händelser" msgid "No address added yet." msgstr "Ingen adress upplagd än" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "Inga varningar för idag" @@ -17002,23 +17098,19 @@ msgstr "Inga ändringar att synkronisera" msgid "No changes to update" msgstr "Inga ändringar att uppdatera" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "Inga Kommentarer än" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " +msgid "No comments yet." msgstr "Inga Kommentarer än." #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." msgstr "Inga kontakter upplagda än." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "Inga Kontakter länkade till dokument" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "Ingen Data att exportera" @@ -17034,11 +17126,15 @@ msgstr "Inga dokument hittade taggade med {0}" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "Ingen E-post Konto kopplad till Användare. Lägg till konto under Användare > E-post Inkorg." +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "Inga e-postadresser hittades att bjuda in" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "Inga Misslyckade Logg" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "Inga fält hittades som kan användas som Anslagstavla kolumn. Använd Anpassa Formulär för att lägga till anpassat fält av typ \"Välj\"." @@ -17062,7 +17158,7 @@ msgstr "Inga fler poster" msgid "No matching records. Search something new" msgstr "Inga poster. Sök på nytt" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "Inga fler artiklar att visa" @@ -17106,7 +17202,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "Behörigheter saknas att '{0}' {1}" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "Behörigheter saknas att läsa {0}" @@ -17118,7 +17214,7 @@ msgstr "Behörigheter saknas att {0} {1} {2}" msgid "No records deleted" msgstr "Inga poster borttagna" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "Inga poster finns i {0}" @@ -17134,7 +17230,7 @@ msgstr "Inga poster kommer att exporteras" msgid "No rows" msgstr "Inga rader" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "Inget Ämne" @@ -17154,11 +17250,11 @@ msgstr "Ingen {0}" msgid "No {0} Found" msgstr "Ingen {0} Hittades" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "Ingen {0} Hittades" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 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}." @@ -17167,7 +17263,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:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "Antal. " @@ -17210,7 +17306,7 @@ msgstr "Normaliserade Kopior" msgid "Normalized Query" msgstr "Normaliserad Fråga" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "Ej Tillåtet" @@ -17231,7 +17327,7 @@ msgstr "Ej Underordnad Av" msgid "Not Equals" msgstr "Inte Lika" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "Hittades Inte" @@ -17257,20 +17353,19 @@ msgstr "Ej Länkad till någon post" msgid "Not Nullable" msgstr "Ej Nollställbar" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "Inte Tillåtet" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "Ej Tillåtet att läsa {0}" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17279,10 +17374,10 @@ msgstr "Ej Publicerad" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "Ej Sparad" @@ -17314,7 +17409,7 @@ msgstr "Ej giltig Komma Separerad Värde (CSV Fil)" msgid "Not a valid User Image." msgstr "Ej giltig Användare Bild." -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "Ej giltig Arbetsflöde Åtgärd" @@ -17330,11 +17425,11 @@ msgstr "Inte Aktiv" msgid "Not allowed for {0}: {1}" msgstr "Ej tillåtet för {0}: {1}" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "Ej Tillåtet att bifoga {0} dokument, aktivera \"Tillåt Utskrift\" för {0} i Utskrift Inställningar" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "Ej Tillåtet att skapa anpassad Virtuell DocType." @@ -17358,27 +17453,27 @@ msgstr "Hittade inte" msgid "Not in Developer Mode" msgstr "Ej i Utvecklar Läge" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 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:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "Ej Tillåtet" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "Ej Tillåtet att visa {0}" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17413,7 +17508,7 @@ msgstr "Obs: För bästa resultat måste bilderna ha samma storlek och bredden m msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "Obs: Flera sessioner kommer att tillåtas i fall av mobil enhet" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "Obs: Detta kommer att delas med användare." @@ -17437,10 +17532,9 @@ msgstr "Inget mer att göra om" msgid "Nothing left to undo" msgstr "Inget mer att ångra" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "Inget att visa" @@ -17486,15 +17580,15 @@ msgstr "Avisering Prenumererad Dokument" msgid "Notification sent to" msgstr "Avisering skickad till" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "Meddelande: kund {0} har inget mobil nummer angivet" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "Meddelande: dokument {0} har inget {1} nummer angivet (fält: {2})" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "Meddelande: användare {0} har inget mobil nummer angivet" @@ -17545,7 +17639,7 @@ msgstr "Avisera om Obesvarade för (i minuter)" msgid "Notify users with a popup when they log in" msgstr "Avisera Användare med Meddelande vid första Inloggning" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "Nu" @@ -17603,12 +17697,12 @@ msgstr "Antal Grupper" msgid "Number of Queries" msgstr "Antal Frågor" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "Antalet bifogade fält är fler än {}, gränsen uppdaterad till {}." -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "Antal säkerhetskopior måste vara än noll." @@ -17717,11 +17811,11 @@ msgstr "OTP App" msgid "OTP Issuer Name" msgstr "OTP Utgivarens Namn" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "OTP Hemlighet Återställning - {0}" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "OTP Hemlighet är återställd. Registrering erfordras vid nästa inloggning." @@ -17738,7 +17832,7 @@ msgstr "Förekommanden" #. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Off" -msgstr "Av" +msgstr "Inaktiv" #. Option for the 'Address Type' (Select) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json @@ -17758,12 +17852,12 @@ msgstr "Officiell Dokumentation" #. 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 "Offset X" +msgstr "Förskjutning X" #. Label of the offset_y (Int) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Offset Y" -msgstr "Offset Y" +msgstr "Förskjutning Y" #: frappe/database/query.py:121 msgid "Offset must be a non-negative integer" @@ -17840,7 +17934,7 @@ msgstr "På eller efter" msgid "On or Before" msgstr "På eller före" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "{0}, {1} skrev" @@ -17880,7 +17974,7 @@ msgstr "Introduktion Klar" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 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." @@ -17925,7 +18019,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:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "Endast alternativ som är tillåtna för Data Fält är:" @@ -17942,7 +18036,7 @@ msgstr "Endast Workspace Manager kan redigera offentliga arbetsytor" msgid "Only allowed to export customizations in developer mode" msgstr "Endast tillåtet att exportera anpassningar i utvecklarläge" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "Endast utkast dokument kan ångras" @@ -17961,19 +18055,19 @@ msgstr "Endast erfordrade fält är nödvändiga för nya register. Du kan ta bo msgid "Only one {0} can be set as primary." msgstr "Endast en {0} kan anges som primär." -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "Endast rapporter av typ Rapport Generator kan tas bort" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "Endast rapporter av typ Report Generator kan redigeras" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Endast standard DocTypes får anpassas från Anpasning Formulär." -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "Endast administratör kan ta bort standard DocType." @@ -18043,7 +18137,7 @@ msgstr "Öppna Referens Dokument" msgid "Open Settings" msgstr "Öppna Inställningar" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "Öppen Källkod Applikationer för Webb" @@ -18061,7 +18155,7 @@ msgstr "Öppna dialogruta med erfordrade fält för att snabbt skapa ny post. De msgid "Open a module or tool" msgstr "Öppna modul eller verktyg" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "Öppna konsol" @@ -18069,7 +18163,7 @@ msgstr "Öppna konsol" msgid "Open in a new tab" msgstr "Öppna i ny flik" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Öppna List Post" @@ -18084,13 +18178,13 @@ 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:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "Öppna {0}" @@ -18099,6 +18193,10 @@ msgstr "Öppna {0}" msgid "OpenID Configuration" msgstr "OpenID Konfiguration" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "OpenID Konfiguration hämtad!" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" @@ -18114,7 +18212,7 @@ msgstr "Öppnad" msgid "Operation" msgstr "Åtgärd" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "Operatören måste vara en av {0}" @@ -18140,7 +18238,7 @@ msgstr "Alternativ 2" msgid "Option 3" msgstr "Alternativ 3" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "Alternativ {0} för fält {1} är inte underordnad tabell" @@ -18160,6 +18258,7 @@ msgstr "Tillval: Avisering kommer att skickas om detta uttryck är sant" #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -18168,11 +18267,12 @@ msgstr "Tillval: Avisering kommer att skickas om detta uttryck är sant" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "Alternativ " -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 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'" @@ -18181,7 +18281,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:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "Alternativen för betygsfältet kan variera från 3 till 10" @@ -18189,7 +18289,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:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 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." @@ -18197,7 +18297,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:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "Alternativ inte angiven för länk fält {0}" @@ -18213,7 +18313,7 @@ msgstr "Orange" msgid "Order" msgstr "Order" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "Sortera Efter måste vara sträng" @@ -18229,12 +18329,12 @@ msgstr "Bolag Historik" msgid "Org History Heading" msgstr "Bolag Historik Huvud Rubrik" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "Orientering" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "Ursprung Värde" @@ -18302,10 +18402,6 @@ msgstr "Utdata" msgid "Overview" msgstr "Recension " -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "Ansvarig" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" @@ -18313,9 +18409,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:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "PDF" @@ -18356,11 +18452,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:616 +#: frappe/printing/page/print/print.js:656 msgid "PDF generation may not work as expected." msgstr "PDF skapande kanske inte fungerar som förväntat." -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:574 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "PDF utskrift via \"Direkt Utskrift\" stöds inte." @@ -18532,7 +18628,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:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "Sida {0} av {1}" @@ -18559,7 +18655,7 @@ msgstr "Överordnad DocType" msgid "Parent Document Type" msgstr "Överordnad Dokument Typ" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "Överordnad Dokument Typ erfordras för att skapa nummerkort" @@ -18576,11 +18672,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:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "Överordnad Fält (Träd)" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "Överordnad Fält måste vara giltigt fält namn" @@ -18589,7 +18685,7 @@ msgstr "Överordnad Fält måste vara giltigt fält namn" msgid "Parent Label" msgstr "Överordnad Etikett" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 msgid "Parent Missing" msgstr "Överordnad Saknas" @@ -18663,8 +18759,8 @@ msgstr "Passiv" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18674,7 +18770,7 @@ msgstr "Passiv" msgid "Password" msgstr "Lösenord" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "Lösenord skickat via E-post" @@ -18687,7 +18783,7 @@ msgstr "Lösenord Återställning" msgid "Password Reset Link Generation Limit" msgstr "Maximum Antal Lösenord Återställning Länkar per timme" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "Lösenord kan inte filtreras" @@ -18704,6 +18800,10 @@ msgstr "Lösenord för Bas DN" msgid "Password is required or select Awaiting Password" msgstr "Lösenord erfordras eller välj Väntar på Lösenord" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "Lösenord är giltigt. 👍" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "Lösenord saknas i E-post Konto" @@ -18712,7 +18812,7 @@ msgstr "Lösenord saknas i E-post Konto" msgid "Password not found for {0} {1} {2}" msgstr "Lösenord hittades inte för {0} {1} {2}" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 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" @@ -18720,11 +18820,11 @@ msgstr "Instruktioner för återställning av lösenord är skickade till {}'s e msgid "Password set" msgstr "Lösenord angiven" -#: frappe/auth.py:258 +#: frappe/auth.py:261 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:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." msgstr "Lösenord längd överskred maximum tillåten längd." @@ -18732,7 +18832,7 @@ msgstr "Lösenord längd överskred maximum tillåten längd." msgid "Passwords do not match" msgstr "Lösenord stämmer inte" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "Lösenord stämmer inte!" @@ -18802,10 +18902,12 @@ msgstr "Högsta Minnesanvändning" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "Pågående" @@ -18881,7 +18983,7 @@ 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:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "Behörighet Fel" @@ -18941,16 +19043,16 @@ msgstr "Behörighet Typ" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "Behörighet Fel" @@ -19012,15 +19114,18 @@ msgstr "Personligt Data Nedladdning Begäran" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -19033,13 +19138,13 @@ msgstr "Telefon" msgid "Phone No." msgstr "Telefon Nummer." -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 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:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "Välj Kolumner" @@ -19099,11 +19204,11 @@ msgstr "Installera ldap3 bibliotek via pip3 för att använda ldap funktion." msgid "Please Set Chart" msgstr "Skapa Diagram" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "Uppdatera SMS Inställningar" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "Lägg till ämne i E-post" @@ -19111,7 +19216,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:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "Be Administratör att verifiera din registrering" @@ -19119,11 +19224,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:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 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:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "Bifoga bild för att ange HTML för Brevhuvud." @@ -19131,19 +19236,15 @@ msgstr "Bifoga bild för att ange HTML för Brevhuvud." msgid "Please attach the package" msgstr "Lägg till App" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "Kontrollera OpenID Configuration URL" - #: frappe/utils/dashboard.py:58 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:951 +#: frappe/model/base_document.py:1008 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:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "Kontrollera din E-post för verifiering" @@ -19175,11 +19276,11 @@ 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:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "Kontakta System Ansvarig för att installera rätt version." -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "Skapa Kort först" @@ -19195,20 +19296,20 @@ msgstr "Ta bort fält från {0} eller lägg till erfodrad doctype." msgid "Please do not change the template headings." msgstr "Ändra inte mall huvud rubriker." -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" msgstr "Kopiera för att göra ändringar" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "Aktivera minst en social inloggning nyckel eller LDAP eller Logga in med E-post Länk innan du inaktiverar användarnamn/lösenord baserad inloggning." #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "Aktivera PopUp" @@ -19245,7 +19346,7 @@ msgstr "Ange Klient ID innan social inloggning är aktiverad" msgid "Please enter Client Secret before social login is enabled" msgstr "Ange Klient hemlighet innan social inloggning är aktiverad" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "Ange OpenID Konfiguration URL" @@ -19282,23 +19383,24 @@ msgstr "Ange ny lösenord." msgid "Please enter your old password." msgstr "Ange ditt gamla lösenord." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "Se bifogad {0}: {1}" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "Logga in för att lämna kommentar." #: frappe/core/doctype/communication/communication.py:186 msgid "Please make sure the Reference Communication Docs are not circularly linked." -msgstr "Kontrollera att Referens Dokument för Konversation inte är cirkulärt länkade." +msgstr "Kontrollera att Kommunikation Referens Dokument inte är cirkulärt länkade." -#: frappe/model/document.py:988 +#: frappe/model/document.py:992 msgid "Please refresh to get the latest document." msgstr "Uppdatera för att se senaste dokument." -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:575 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." @@ -19314,7 +19416,7 @@ msgstr "Spara dokument före tilldelning" msgid "Please save the document before removing assignment" msgstr "Spara dokument före radering av tilldelning" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "Spara Rapport" @@ -19322,7 +19424,7 @@ msgstr "Spara Rapport" msgid "Please save to edit the template." msgstr "Spara att redigera mall." -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "Välj DocType" @@ -19330,19 +19432,19 @@ msgstr "Välj DocType" msgid "Please select Entity Type first" msgstr "Välj Entitet Typ" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "Välj Minsta Lösenord Värde" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "Välj X och Y fält" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "Välj landskod för fält {1}." -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "Välj fil först." @@ -19350,7 +19452,7 @@ msgstr "Välj fil först." msgid "Please select a file or url" msgstr "Välj fil eller URL" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" msgstr "Välj giltig CSV fil med data" @@ -19362,7 +19464,7 @@ msgstr "Välj giltig datum filter" msgid "Please select applicable Doctypes" msgstr "Välj tillämpliga DocTypes" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Välj minst en kolumn från {0} för att sortera/gruppera" @@ -19388,11 +19490,11 @@ msgstr "Välj {0}" msgid "Please set Email Address" msgstr "Ange E-postadress" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:589 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:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "Ange Filter" @@ -19400,7 +19502,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:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "Vänligen ange dokument namn" @@ -19412,7 +19514,7 @@ msgstr "Ange följande dokument i Översikt Panel som standard." msgid "Please set the series to be used." msgstr "Ange Namngivning Serie som ska användas." -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "Konfigurera SMS före du anger den som Autentisering Sätt via SMS Inställningar" @@ -19436,23 +19538,23 @@ msgstr "Specificera" msgid "Please specify a valid parent DocType for {0}" msgstr "Ange giltig överordnad DocType för {0}" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "Ange minst 10 minuter på grund av utlösande stegfrekvens av schemaläggare" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "Ange minutförskjutning" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "Ange Datum Fält som måste kontrolleras" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "Ange vilket datum och tid fält som måste bli vald" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "Ange Värde Fält som måste kontrolleras" @@ -19473,7 +19575,7 @@ msgstr "Använd giltig LDAP Sökfilter" msgid "Please use following links to download file backup." msgstr "Använd följande länkar för att ladda ner säkerhetskopior." -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "Besök https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key för mer information." @@ -19527,7 +19629,7 @@ msgstr "Portal Meny Post" msgid "Portal Settings" msgstr "Portal Inställningar" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "Porträtt" @@ -19555,6 +19657,7 @@ msgstr "Posten" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "Postnummer" @@ -19563,15 +19666,7 @@ msgstr "Postnummer" msgid "Posting Timestamp" msgstr "Registrering Tid" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "Poster av {0}" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "Poster arkiverade under {0}" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "Potentiell farligt innehåll i sträng litteral: {0}" @@ -19586,7 +19681,11 @@ msgstr "Potentiell farligt innehåll i sträng litteral: {0}" msgid "Precision" msgstr "Precision" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +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:1401 msgid "Precision should be between 1 and 6" msgstr "Precision ska vara mellan 1 och 6" @@ -19634,7 +19733,7 @@ msgstr "Förberedd Rapport Analys" msgid "Prepared Report User" msgstr "Förberedd Rapport Användare" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "Förberedd Rapport Misslyckad" @@ -19642,7 +19741,7 @@ msgstr "Förberedd Rapport Misslyckad" msgid "Preparing Report" msgstr "Förbereder Rapport" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "Lägg mall före e-post meddelande" @@ -19663,7 +19762,7 @@ msgstr "Tryck på Enter att Spara" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19677,13 +19776,6 @@ msgstr "Förhandsgranska" msgid "Preview HTML" msgstr "Förhandsgranska HTML" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "Förhandsgranska Bild" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19712,7 +19804,7 @@ msgid "Preview:" msgstr "Förhandsgranska:" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19724,12 +19816,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "Föregående " -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "Föregående Hash" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "Föregående Godkännande" @@ -19775,19 +19862,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:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: 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:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Utskrift" @@ -19805,8 +19892,8 @@ 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:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19857,7 +19944,7 @@ msgstr "Utskrift Format Hjälp" msgid "Print Format Type" msgstr "Utskrift Format Typ" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "Utskriftsformat hittades inte" @@ -19896,7 +19983,7 @@ msgstr "Dölj Utskrift om Ingen Värde" msgid "Print Language" msgstr "Utskrift Språk" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "Utskrift Skickad till skrivare!" @@ -19913,8 +20000,8 @@ msgstr "Skrivar Server" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "Utskrift Inställningar" @@ -19962,11 +20049,11 @@ msgstr "Dokument Utskrift" msgid "Print with letterhead" msgstr "Utskrift med Brevhuvud" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "Skrivare" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "Skrivare Mappning" @@ -19976,11 +20063,11 @@ msgstr "Skrivare Mappning" msgid "Printer Name" msgstr "Skrivare Namn" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "Skrivare Inställningar" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "Skrivare Mappning inte angiven" @@ -20038,7 +20125,7 @@ msgstr "Tips: Lägg Referens: {{ reference_doctype }} {{ reference_name }} msgid "Proceed" msgstr "Fortsätt" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "Fortsätt Ändå" @@ -20059,18 +20146,28 @@ msgstr "Prof" msgid "Profile" msgstr "Profil" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "Profilbild" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Profil uppdaterad." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "Framsteg" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "Projekt" #. Label of the property (Data) field in DocType 'Property Setter' -#: frappe/core/doctype/version/version_view.html:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: frappe/core/doctype/version/version_view.html:13 +#: frappe/core/doctype/version/version_view.html:38 +#: frappe/core/doctype/version/version_view.html:75 #: frappe/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "Egenskap" @@ -20107,7 +20204,7 @@ msgstr "Egenskap Typ" msgid "Protect Attached Files" msgstr "Skydda Bifogade Filer" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "Skyddad Fil" @@ -20156,24 +20253,18 @@ msgstr "Allmänna Filer Säkerhetskopiering:" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "Publicera" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -20183,15 +20274,6 @@ msgstr "Publicera" msgid "Published" msgstr "Publicerad" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "Publicerad" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "Publicerad" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json @@ -20281,7 +20363,9 @@ msgid "Put on Hold" msgstr "Pausa" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "Python" @@ -20293,9 +20377,9 @@ msgstr "QR Kod" msgid "QR Code for Login Verification" msgstr "QR kod för Inloggning Verifiering" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " -msgstr "QZ Aktivitet Fält Misslyckades:" +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" +msgstr "QZ Tray Misslyckades:" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' @@ -20344,7 +20428,7 @@ msgstr "Dataförfråga Rapport" msgid "Query analysis complete. Check suggested indexes." msgstr "Frågeanalys klar. Kontrollera föreslagna index." -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "Dataförfråga måste vara av typen SELECT eller skrivskyddad WITH." @@ -20444,7 +20528,7 @@ msgstr "Snabb List Filter" msgid "Quick Lists" msgstr "Snabb Listor" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "Citering måste vara mellan 0 och 3" @@ -20481,12 +20565,6 @@ msgstr "Intervall" msgid "Rate Limiting" msgstr "Begränsa" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "Begränsa" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20506,7 +20584,7 @@ msgstr "Bedömning" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "Rå Kommand" @@ -20523,7 +20601,7 @@ msgstr "Rå E-post" msgid "Raw Printing" msgstr "Direkt Utskrift" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "Direkt Utskrift Inställningar" @@ -20540,8 +20618,8 @@ msgid "Re:" msgstr "Sv:" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "Sv: {0}" @@ -20597,11 +20675,6 @@ msgstr "Skrivskyddat Beroende På (JS)" msgid "Read Only Mode" msgstr "Skrivskyddat Läge" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "Läs Tid" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20617,7 +20690,7 @@ msgstr "Läst av Mottagare(Datum)" msgid "Read mode" msgstr "Läs läge " -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "Läs dokumentation för att reda på mer" @@ -20637,11 +20710,11 @@ msgstr "Realtid (SocketIO)" msgid "Reason" msgstr "Anledning" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "Uppdatera" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "Uppdatera Träd Vy" @@ -20679,7 +20752,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:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "Senaste" @@ -20690,6 +20763,14 @@ msgstr "Senaste" msgid "Recipient" msgstr "Mottagare" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "Mottagare Konto" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20722,7 +20803,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:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "Rekursiv Hämta Från" @@ -20739,6 +20820,11 @@ msgstr "Röd" msgid "Redirect HTTP Status" msgstr "Omdirigera HTTP Status" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "Omdirigera till Sökväg" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20833,6 +20919,11 @@ msgstr "Referens Datum" msgid "Reference Datetime" msgstr "Referens Datum och Tid" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "Referens Dokument" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20860,7 +20951,6 @@ msgstr "Referens Dokument Namn" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20901,9 +20991,9 @@ msgstr "Referens Dokument Namn" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20921,9 +21011,9 @@ msgstr "Referens Dokument Namn" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20953,7 +21043,6 @@ msgstr "Referens Dokument Typ" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -21001,15 +21090,15 @@ msgstr "Referens: {0} {1}" msgid "Referrer" msgstr "Referens" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Uppdatera" @@ -21023,6 +21112,10 @@ msgstr "Uppdatera Alla" msgid "Refresh Google Sheet" msgstr "Uppdatera Google Sheet" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "Uppdatera Utskrift Förhandsgranskning" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -21034,18 +21127,18 @@ msgstr "Uppdatera Google Sheet" msgid "Refresh Token" msgstr "Uppdatera Token" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "Uppdaterar" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "Uppdaterar..." -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "Registrerad men inaktiverad" @@ -21084,7 +21177,7 @@ msgstr "Länka om" #: frappe/core/doctype/communication/communication.js:138 msgid "Relink Communication" -msgstr "Länka om Konversation" +msgstr "Länka om Kommunikation" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json @@ -21222,7 +21315,7 @@ msgstr "Ändra Fältnamn" msgid "Rename {0}" msgstr "Ändra Namn {0}" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "Ändrade namn på filer och ändrade kod i kontroller, kontrollera!" @@ -21353,9 +21446,9 @@ msgstr "Svara Alla" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "Rapport" @@ -21425,11 +21518,11 @@ 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:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "Rapport Namn" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "Rapport Namn, Rapport Fält och Funktion erfordras för att skapa nummerkort" @@ -21463,21 +21556,21 @@ msgstr "Rapport Vy" msgid "Report bug" msgstr "Rapportera Fel" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 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:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "Rapport har ingen data, ändra filter eller ändra rapport namn" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 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:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "Rapport initierad, klicka för att se status" @@ -21489,24 +21582,24 @@ msgstr "Rapport gräns nådd" msgid "Report timed out." msgstr "Rapport förföll." -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "Rapport är uppdaterad" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 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:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 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:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "Rapport {0}" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "Rapport {0} raderad" @@ -21514,7 +21607,7 @@ msgstr "Rapport {0} raderad" msgid "Report {0} is disabled" msgstr "Rapport {0} är inaktiverad" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "Rapport {0} är sparad" @@ -21525,7 +21618,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:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "Rapporter" @@ -21533,7 +21626,7 @@ msgstr "Rapporter" msgid "Reports & Masters" msgstr "Rapporter & Inställningar" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "Rapporter redan i Kö" @@ -21552,7 +21645,10 @@ msgid "Request Body" msgstr "Begärd Av" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "Begäran Data" @@ -21604,6 +21700,11 @@ msgstr "Begäran förfaller om" msgid "Request URL" msgstr "Begäran URL" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "Begäran för Kontoborttagning" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21655,11 +21756,11 @@ msgstr "Återställ Diagram" msgid "Reset Dashboard Customizations" msgstr "Återställ Översikt Panel Anpassningar" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "Återställ Fält" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "Återställ LDAP Lösenord" @@ -21667,11 +21768,11 @@ msgstr "Återställ LDAP Lösenord" msgid "Reset Layout" msgstr "Återställ Layout" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "Återställ OTP Hemlighet" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21706,7 +21807,7 @@ msgstr "Återställ Till Standard" msgid "Reset sorting" msgstr "Återställ Sortering" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "Återställ Standard" @@ -21744,6 +21845,7 @@ msgid "Resource TOS URI" msgstr "Resurs TOS URI" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21753,11 +21855,6 @@ msgstr "Resurs TOS URI" msgid "Response" msgstr "Svar" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "Svar" - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21816,7 +21913,7 @@ msgstr "Begränsa till Domän" 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 "Begränsa Användare endast från denna IP adress. Flera IP adresser kan läggas till genom att separera med komma tecken. Dessutom accepteras delvisa IP adresser som (111.111.111)" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "Begränsningar" @@ -21850,7 +21947,7 @@ msgstr "Återgå till Verifiering skärm och ange kod som visas på din Autentis msgid "Reverse Icon Color" msgstr "Omvänd Ikon Färg" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "Återställer längd till {0} för '{1}' i '{2}'. Om du anger längd som {3} kommer data att trunkeras." @@ -21868,9 +21965,7 @@ msgstr "Återkalla" msgid "Revoked" msgstr "Återkallad" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21911,6 +22006,7 @@ msgstr "Robots.txt" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21924,6 +22020,7 @@ msgstr "Robots.txt" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21962,7 +22059,7 @@ msgstr "Roll Behörighet för Sida och Rapport" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "Roll Behörigheter" @@ -21972,7 +22069,7 @@ msgstr "Roll Behörigheter" msgid "Role Permissions Manager" msgstr "Roll Behörigheter Hanterare" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Roll Behörigheter Hanterare" @@ -22015,6 +22112,7 @@ msgstr "Rollen angiven enligt användare typ {0}" #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -22024,6 +22122,7 @@ msgstr "Rollen angiven enligt användare typ {0}" #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -22060,7 +22159,7 @@ msgstr "Roller HTML" msgid "Roles can be set for users from their User page." msgstr "Roller kan anges för användare från deras Användarsida." -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "Rot {0} kan inte tas bort" @@ -22080,8 +22179,6 @@ msgstr "Avrundning Sätt" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -22093,8 +22190,6 @@ msgstr "Avrundning Sätt" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -22119,24 +22214,24 @@ msgstr "Sökväg Omdirigeringar" msgid "Route: Example \"/app\"" msgstr "Sökväg: Exempel \"/app\"" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "Rad" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "Rad #" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "Rad # {0}: Användare som inte är administratör kan inte ange roll {1} till anpassad Dokument Typ" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "Rad # {0}:" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "Rad # {}: Fältnamn erfordras" @@ -22145,11 +22240,6 @@ msgstr "Rad # {}: Fältnamn erfordras" msgid "Row Format" msgstr "Rad Format" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "Rad Index" - #. 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" @@ -22164,7 +22254,7 @@ msgstr "Rad Namn" msgid "Row Number" msgstr "Rad Nummer" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "Rad Värde Ändrad" @@ -22172,30 +22262,33 @@ msgstr "Rad Värde Ändrad" msgid "Row {0}" msgstr "Rad # {0} " -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "Rad {0}: Ej Tillåtet att inaktivera Erfodrad för standard fält" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "Rad {0}: Ej Tillåtet att aktivera Tillåt vid Godkännande för standard fält" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 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:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "Rader Borttagna " #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "Rad Tröskelvärde för Rutnät Sökning" @@ -22286,7 +22379,7 @@ msgstr "SMS Parameter" msgid "SMS Settings" msgstr "SMS Inställningar" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "SMS skickad" @@ -22364,7 +22457,7 @@ msgstr "Salesforce" msgid "Salutation" msgstr "Tilltal" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "Samma Fält angavs mer än en gång" @@ -22392,20 +22485,20 @@ msgstr "Lördag" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22414,16 +22507,12 @@ msgstr "Lördag" msgid "Save" msgstr "Spara" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "Spara API Hemlighet: {0}" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "Spara Ändå" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "Spara Som" @@ -22431,11 +22520,11 @@ msgstr "Spara Som" msgid "Save Customizations" msgstr "Spara Anpassningar" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "Spara Rapport" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "Spara Filter" @@ -22460,7 +22549,7 @@ msgstr "Sparad" msgid "Saved Filters" msgstr "Sparade Filter" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22539,7 +22628,7 @@ msgstr "Schemalagd Jobb" msgid "Scheduled Jobs Logs" msgstr "Schemalagda Jobb Logg" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "Schemalagd körning av Skript {0} är uppdaterad" @@ -22562,7 +22651,7 @@ msgstr "Schemaläggare" msgid "Scheduler Event" msgstr "Schemaläggare Händelse" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "Schemaläggare Inaktiv" @@ -22575,7 +22664,7 @@ msgstr "Schemaläggare Status" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "Schemaläggare kan inte återaktiveras när underhåll läge är aktiv." -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "Schemaläggare är Inaktiv. Kan inte importera data." @@ -22707,7 +22796,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:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "Sökfält {0} är inte giltigt" @@ -22807,7 +22896,7 @@ msgstr "Säkerhet Inställningar" msgid "See all Activity" msgstr "Visa All Aktivitet" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "Visa alla tidigare rapporter." @@ -22816,7 +22905,7 @@ msgstr "Visa alla tidigare rapporter." msgid "See on Website" msgstr "Visapå Webbplats" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "Visa föregående respons" @@ -22863,7 +22952,7 @@ msgstr "Visning Tabell" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22871,28 +22960,28 @@ msgstr "Välj i Listan" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "Välj Alla" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "Välj Bilagor" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "Välj Undertabell" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 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:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "Välj Kolumner" @@ -22951,12 +23040,15 @@ msgstr "Välj Fält" msgid "Select Field..." msgstr "Välj Fält..." -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "Välj Fält" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "Välj Fält (upp till {0})" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "Välj Fält att Infoga" @@ -22969,7 +23061,7 @@ msgstr "Välj Fält att Uppdatera" msgid "Select Filters" msgstr "Välj Filter" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "Välj Google Kalender till vilken händelse ska synkroniseras." @@ -23002,8 +23094,8 @@ msgstr "Välj Erfordrad" msgid "Select Module" msgstr "Välj Modul" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "Välj Nätverksskrivare" @@ -23068,14 +23160,14 @@ msgid "Select a field to edit its properties." msgstr "Välj fält för att redigera dess egenskaper." #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "Välj Grupp nod." +msgid "Select a group {0} first." +msgstr "Välj grupp {0}." -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 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:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 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" @@ -23105,13 +23197,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:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Välj List Artikel" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Välj flera List Artiklar" @@ -23145,7 +23237,7 @@ msgstr "Välj två versioner för att se skillnader." msgid "Select {0}" msgstr "Välj {0}" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "Ej Tillåtet att godkänna själv " @@ -23329,7 +23421,7 @@ msgstr "Avsändare E-post" msgid "Sender Email Field" msgstr "Avsändare E-post Fält" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "Avsändare Fält ska ha E-post i Alternativ" @@ -23423,7 +23515,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:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: 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}" @@ -23433,7 +23525,7 @@ msgstr "Namngivning Serie {0} används redan i {1}" msgid "Server Action" msgstr "Server Åtgärd" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Server Fel" @@ -23452,7 +23544,7 @@ msgstr "Server IP" msgid "Server Script" msgstr "Server Skript" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "Server Skript är inaktiverad. Aktivera Server Skript från bench." @@ -23499,7 +23591,7 @@ msgstr "Session Inställningar" msgid "Session Defaults Saved" msgstr "Session Inställningar Sparade" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "Session Förföll" @@ -23508,14 +23600,14 @@ msgstr "Session Förföll" msgid "Session Expiry (idle timeout)" msgstr "Session Förfaller (Tid av Inaktivitet)" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "Session Förfallo tid måste vara i format {0}" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "Ange" @@ -23541,12 +23633,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\" msgstr "Ange Standard Alternativ för alla diagram för Översikt Panel (Ex: 'färger': ['#d1d8dd', '#ff5858'])" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "Ange Dynamisk Filter" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23557,7 +23649,7 @@ msgstr "Ange Filter" msgid "Set Filters for {0}" msgstr "Ange Filter för {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "Ange Nivå" @@ -23603,7 +23695,7 @@ msgstr "Ange Egenskap efter Avisering" #: frappe/public/js/frappe/form/link_selector.js:207 #: frappe/public/js/frappe/form/link_selector.js:208 msgid "Set Quantity" -msgstr "Ange Kvantitet" +msgstr "Bekräfta" #. Label of the set_role_for (Select) field in DocType 'Role Permission for #. Page and Report' @@ -23611,7 +23703,7 @@ msgstr "Ange Kvantitet" msgid "Set Role For" msgstr "Ange Roll För" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Ange Användar Behörigheter" @@ -23621,16 +23713,16 @@ msgstr "Ange Användar Behörigheter" msgid "Set Value" msgstr "Ange Värde" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "Ange som Privat" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "Ange som Allmän" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "Ange som Standard" @@ -23649,18 +23741,21 @@ msgstr "Anges av Användare" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "Ange dynamiska filtervärden i JavaScript för erfordrade fält här." -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "Ange ej Standard Precision för Komma eller Valuta Fält" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "Ange ej standard precision för Flyttal, Valuta eller Procent fält" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23776,14 +23871,9 @@ msgstr "Inställmningar för Kontakta Oss Sida" msgid "Settings for the About Us Page" msgstr "Inställningar för Kontakta Oss Sida" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "Inställningar för att kontrollera blogg kategorier och interaktioner som kommentarer och gillar" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "Inställning" @@ -23799,8 +23889,8 @@ msgstr "Inställningar > Användare" msgid "Setup > User Permissions" msgstr "Inställningar > Användar Behörigheter" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "Automatisk E-post Rapport" @@ -23869,11 +23959,6 @@ msgstr "Leverans Adress" msgid "Shop" msgstr "Butik" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "Kort Namn" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "Korta tangentbord mönster är lätt att gissa" @@ -23893,11 +23978,6 @@ msgstr "Genvägar" msgid "Show" msgstr "Visa" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "Visa \"Funktion Knapp\" i Blogg" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23950,7 +24030,13 @@ msgstr "Visa Dokument" msgid "Show Error" msgstr "Visa Fel" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "Visa Extern Länk Varning" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "Visa Fältnamn (klicka för att kopiera till urklipp)" @@ -24078,7 +24164,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "Visa Social Inloggningsnyckel som Auktorisering Server" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "Visa Taggar" @@ -24095,7 +24181,7 @@ msgstr "Visa Benämning" msgid "Show Title in Link Fields" msgstr "Visa Benämning i Länk Fält" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "Visa Totalt" @@ -24135,10 +24221,6 @@ msgstr "Visa alla versioner" msgid "Show all activity" msgstr "Visa All Aktivitet" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "Visa alla bloggar" - #. 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" @@ -24187,8 +24269,8 @@ msgstr "Visa Länk till Dokument" msgid "Show list" msgstr "Visa lista" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "Visa fler detaljer" @@ -24217,7 +24299,7 @@ msgstr "Visar Benämning i webbläsare fönster som 'Prefix - Benämning'" msgid "Show {0} List" msgstr "Visa {0} Lista" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "Visar endast Numeriska fält från Rapport" @@ -24252,7 +24334,7 @@ msgstr "Sidofält och Kommentarer" msgid "Sign Up and Confirmation" msgstr "Registrering och Bekräftelse" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "Registrering är inaktiverad" @@ -24289,36 +24371,36 @@ msgstr "Registrering Inaktiverad" msgid "Signups have been disabled for this website." msgstr "Registrering har inaktiverats för Webbplats." -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "Enkel Python Uttryck, Exempel: Status in ('Closed', 'Cancelled')" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" -msgstr "Enkel Python Uttryck, Exempel: Status in ('Invalid')" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "Enkelt Python Uttryck, Exempel: status == \"Invalid\"" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" -msgstr "Enkel Python Uttryck, Exempel: Status == 'Open' and type == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "Enkelt Python Uttryck, Exempel: status == 'Open' och issue_type == 'Bug'" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" +msgstr "Enkelt Python Uttryck, Exempel: status in (\"Closed\", \"Cancelled\")" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "Samtidiga Sessioner" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "Enskild DocTypes kan inte anpassas." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Enskilda Typer har endast en post inga tabeller associerade. Värden lagras i tabSingles" @@ -24326,7 +24408,7 @@ msgstr "Enskilda Typer har endast en post inga tabeller associerade. Värden lag msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "Webbplats körs i skrivskyddat läge för underhåll eller uppdatering, denna åtgärd kan inte utföras just nu. Vänligen försök igen senare." -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "SStorlek" @@ -24545,11 +24627,11 @@ msgstr "Något gick fel under token skapande. Klicka på {0} att skapa ny." msgid "Something went wrong." msgstr "Något gick fel." -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 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:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "Det är inte tillåten att visa denna sida." @@ -24580,20 +24662,23 @@ msgstr "Sortering Alternativ" msgid "Sort Order" msgstr "Sortering Order" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 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/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "Källa" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "Källkod" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24620,6 +24705,12 @@ msgstr "Spam" msgid "SparkPost" msgstr "Spark Post" +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "Startar åtgärder i bakgrundsjobb" + #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "Special tecken är inte tillåtna" @@ -24644,8 +24735,8 @@ msgstr "Ange domäner eller ursprung som är tillåtna att bädda in detta formu msgid "Splash Image" msgstr "Splash Bild" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "Rad" @@ -24677,11 +24768,11 @@ msgstr "Stack Trace" msgid "Standard" msgstr "Standard" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "Standard DocType kan inte tas bort." -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "Standard DocType kan inte ha standard utskrift mall, använd Anpassa Formulär" @@ -24693,7 +24784,7 @@ msgstr "Standard Ej Angiven" msgid "Standard Permissions" msgstr "Standard Behörigheter" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "Standard Utskrift Format kan inte uppdateras" @@ -24701,11 +24792,11 @@ msgstr "Standard Utskrift Format kan inte uppdateras" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "Standard Utskrift Stil kan inte ändras. Kopiera för att redigera." -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "Standard Rapporter kan inte tas bort" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "Standard Rapporter kan inte redigeras" @@ -24737,8 +24828,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:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "Start" @@ -24746,7 +24837,7 @@ msgstr "Start" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24811,6 +24902,7 @@ msgstr "Startar" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24819,7 +24911,7 @@ msgstr "Startar" msgid "State" msgstr "Tillstånd" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "Tillstånd Egenskaper" @@ -24875,6 +24967,7 @@ msgstr "Statistik Tid Intervall" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24899,6 +24992,7 @@ msgstr "Statistik Tid Intervall" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24906,8 +25000,8 @@ msgstr "Statistik Tid Intervall" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24944,7 +25038,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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "Klistrad" @@ -24974,6 +25068,10 @@ msgstr "Lagring Användning Efter Tabeller" msgid "Store Attached PDF Document" msgstr "Spara Bifogade PDF dokument" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +msgstr "Förvara API Hemlighet på ett säkert sätt. Den kommer inte att visas igen." + #. 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." @@ -25052,7 +25150,7 @@ msgstr "Underdomän" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -25068,7 +25166,7 @@ msgstr "Ämne" msgid "Subject Field" msgstr "Ämne Fält" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 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" @@ -25082,6 +25180,7 @@ msgstr "Godkännande Kö" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -25090,10 +25189,11 @@ msgstr "Godkännande Kö" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: 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:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Godkänn" @@ -25103,7 +25203,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Skicka" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Godkänn" @@ -25127,7 +25227,7 @@ msgstr "Godkänn efter Import" msgid "Submit an Issue" msgstr "Anmäl Ärende" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "Anmäl annan respons" @@ -25139,7 +25239,7 @@ msgstr "Godkänn Knapp Titel" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "Godkänn vid Skapande" @@ -25151,7 +25251,7 @@ msgstr "Godkänn detta dokument för att slutföra detta steg." msgid "Submit this document to confirm" msgstr "Tryck på Spara/Godkänn för att genomföra." -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "Godkänn {0} dokument?" @@ -25160,11 +25260,11 @@ msgstr "Godkänn {0} dokument?" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "Godkänd" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "Godkänd dokument kan inte konverteras tillbaka till utkast. Övergång rad {0}" @@ -25187,9 +25287,7 @@ msgid "Subsidiary" msgstr "Dotter Bolag" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "Underbenämning" @@ -25203,7 +25301,7 @@ msgstr "Underbenämning" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25245,20 +25343,16 @@ msgstr "Klart Meddelande" msgid "Success title" msgstr "Klart Benämning" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "Klart! 👍" - #. 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 "Antal Klara Jobb " -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "Klara Transaktioner" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "Klar: {0} till {1}" @@ -25300,7 +25394,7 @@ msgstr "Föreslå Optimeringar" msgid "Suggested Indexes" msgstr "Föreslagen Indexering" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "Föreslagen Användarnamn: {0}" @@ -25422,7 +25516,7 @@ msgstr "Synkroniserar" msgid "Syncing {0} of {1}" msgstr "Synkroniserar {0} av {1}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "Syntaxfel" @@ -25545,6 +25639,7 @@ msgstr "System Logg" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25627,6 +25722,7 @@ msgstr "System Logg" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" msgstr "System Ansvarig" @@ -25700,7 +25796,7 @@ msgstr "Tabell" msgid "Table Break" msgstr "Tabell Brytning" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "Tabell Fält" @@ -25709,7 +25805,7 @@ msgstr "Tabell Fält" msgid "Table Fieldname" msgstr "Tabell Fältnamn" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "Tabell Fältnamn saknas" @@ -25731,11 +25827,11 @@ msgstr "Tabell FlerVal" msgid "Table Trimmed" msgstr "Tabell Optimerad" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "Tabell Uppdaterad" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 msgid "Table {0} cannot be empty" msgstr "Tabell {0} kan inte vara tom" @@ -25777,11 +25873,18 @@ msgstr "Ta Foto" msgid "Target" msgstr "Mål" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "Uppgift" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "Uppgifter" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25843,7 +25946,7 @@ msgstr "Mall Varningar" msgid "Templates" msgstr "Mallar" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "Tillfälligt Inaktiverad" @@ -25917,7 +26020,7 @@ msgstr "Tack för att du når ut till oss. Vi återkommer snarast.\n\n\n" "Din fråga:\n\n" "{0}" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "Tack för att ni lägger ner värdefull tid på att fylla i detta formulär" @@ -25941,7 +26044,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:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "CSV format är skiftläge känslig" @@ -25952,15 +26055,15 @@ msgid "The Client ID obtained from the Google Cloud Console under " msgstr "Klient ID som erhållits från Google Cloud Console under \"API och tjänster\" > \"Inloggningsuppgifter\"" -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "Villkor '{0}' är ogiltig" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "Angiven Fil URL är felaktig" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." msgstr "Nästa Schemalagda datum kan inte vara senare än Slut Datum." @@ -26001,7 +26104,7 @@ msgstr "Ändringarna är återställda." msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "Kolumn {0} har {1} olika datum format. Automatiskt ange {2} som standard format eftersom det är vanligast. Ändra andra värden i den här kolumnen till detta format." -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "Kommentar kan inte vara tom" @@ -26009,7 +26112,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:658 +#: frappe/public/js/frappe/list/list_view.js:687 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." @@ -26039,7 +26142,7 @@ msgstr "Vald Dokument Typ är underordnad tabell, så överordnad Dokument Typ e msgid "The field {0} is mandatory" msgstr "Fält {0} erfordras" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "Fältnamn angiven i Bifogad Till Fält är ogiltig" @@ -26111,15 +26214,19 @@ msgstr "Projekt Nummer erhålln från Google Cloud Console under " -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

    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:1000 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:995 +#: frappe/core/doctype/user/user.py:1002 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:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "Resurs är inte tillgänglig" @@ -26131,7 +26238,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:336 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." @@ -26152,7 +26259,7 @@ msgstr "Antal tecken som klistrades in var {0}. Max tillåtet antal är {1}." msgid "The webhook will be triggered if this expression is true" msgstr "Webhook utlöses om detta uttryck är sant" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "{0} är redan återkommande {1}" @@ -26192,16 +26299,16 @@ 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:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "Det finns {0} med samma filter redan i kö:" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 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:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "Det kan bara finnas en vikning per formulär" @@ -26213,15 +26320,19 @@ 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 +msgid "There is no task called \"{}\"" +msgstr "Det finns ingen aktivitet som heter \"{}\"" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "Det finns inget nytt att visa dig just nu." -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 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:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "Det finns {0} med samma filter som redan finns i kö:" @@ -26233,7 +26344,7 @@ msgstr "Det måste finnas minst en behörighet regel." msgid "There was an error building this page" msgstr "Det uppstod fel när denna sida skulle skapas" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "Det uppstod fel när filter skulle sparas" @@ -26245,11 +26356,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:840 +#: frappe/public/js/frappe/views/communication.js:843 msgid "There were errors while sending email. Please try again." msgstr "Det fanns fel när e-post skickades. Försök igen." -#: frappe/model/naming.py:494 +#: frappe/model/naming.py:502 msgid "There were some errors setting the name, please contact the administrator" msgstr "Det uppstod några fel vid namngivning, kontakta administratör" @@ -26290,7 +26401,7 @@ msgstr "Tredje Parts Autentisering" msgid "This Currency is disabled. Enable to use in transactions" msgstr "Denna Valuta är inaktiverad. Aktivera det att använda i transaktioner" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "Detta Anslagstavla Bord kommer att vara privat" @@ -26298,6 +26409,10 @@ msgstr "Detta Anslagstavla Bord kommer att vara privat" msgid "This Month" msgstr "Denna Månad" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "Denna PDF kan inte laddas upp eftersom den innehåller osäkert innehåll." + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "Detta Kvartal" @@ -26323,6 +26438,11 @@ msgstr "Åtgärd är endast tillåten för {}" msgid "This cannot be undone" msgstr "Detta kan inte ångras" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +msgstr "Detta kort är som standard endast synligt för Administratörer och System Ansvariga. Ange DocType som ska delas med användare som har läsbehörighet." + #. 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" @@ -26337,11 +26457,11 @@ 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:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "Denna doctype har pågående migrering, kör 'bench migrate' innan du ändrar doctype för att undvika att förlora ändringar." -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "Detta dokument kan inte tas bort just nu eftersom det ändras av en annan användare. Försök igen senare." @@ -26386,7 +26506,7 @@ msgstr "Detta fält visas endast om fält namn definieras här har värde eller "myfield eval: doc.myfield == 'Min värde'\n" "eval:doc.age>18" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "Den här filen är kopplad till ett skyddat dokument och kan inte tas bort." @@ -26402,7 +26522,7 @@ msgstr "Denna fil är allmän fil. Den kan nås utan autentisering." 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:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "Detta formulär är inte redigerbart på grund av ett arbetsflöde." @@ -26421,7 +26541,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:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 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." @@ -26445,12 +26565,6 @@ msgstr "Detta är virtuell doctype och data rensas regelbundet." msgid "This is an automatically generated reply" msgstr "Detta är automatiskt skapad svar" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "Detta är ett exempel på Google SERP Förhandsvisning." - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "Detta liknar vanlig använd lösenord." @@ -26469,7 +26583,7 @@ 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:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "Detta kan skrivas ut på flera sidor" @@ -26477,7 +26591,7 @@ msgstr "Detta kan skrivas ut på flera sidor" msgid "This month" msgstr "Nuvarande Månad" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 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." @@ -26485,7 +26599,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:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "Denna rapport skapades {0}." @@ -26516,8 +26630,8 @@ msgstr "Detta värde hämtas från {0} fält {1}" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " -msgstr "Detta värde anger maximal antal rader som kan återges i rapport vyn. " +msgid "This value specifies the max number of rows that can be rendered in report view." +msgstr "Detta värde anger maximal antal rader som kan återges i rapport vyn." #: frappe/website/doctype/web_page/web_page.js:85 msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish" @@ -26548,10 +26662,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "Detta återställer Formulär Tur och visar den för alla användare. Är du säker?" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " -msgstr "Detta avslutar jobb omedelbart och kan vara farligt, är du säker?" +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:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "Strypt" @@ -26627,9 +26741,11 @@ msgstr "Tidsram (Sekunder)" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26700,11 +26816,11 @@ msgstr "Tidslinje Länkar" msgid "Timeline Name" msgstr "Tidslinje Namn" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 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:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "Tidslinje Fält måste vara giltig fält namn" @@ -26730,10 +26846,7 @@ msgid "Timespan" msgstr "Tid Intervall" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "Tid Stämpel" @@ -26753,9 +26866,6 @@ msgstr "Tips: Testa ny konsol med" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26780,9 +26890,6 @@ msgstr "Tips: Testa ny konsol med" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26805,7 +26912,7 @@ msgstr "Benämning Fält" msgid "Title Prefix" msgstr "Benämning Prefix" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "Benämning Fält måste vara giltig fält namn" @@ -26903,7 +27010,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:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "Klicka på {0} att hämta uppdaterad rapport." @@ -26958,7 +27065,7 @@ msgstr "Att Göra" msgid "Today" msgstr "Idag" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "Växla Diagram" @@ -26974,11 +27081,11 @@ msgstr "Växla Rutnät Vy" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "Växla Sidofält" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Växla Sidofält" @@ -27024,7 +27131,7 @@ msgid "Tomorrow" msgstr "I morgon" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "För Många Dokument" @@ -27040,7 +27147,7 @@ msgstr "För många ändringar i databas i en enda åtgärd." msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "För många bakgrundsjobb i kö ({0}). Försök igen efter en tid." -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 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" @@ -27102,10 +27209,10 @@ msgstr "Topp Höger" msgid "Topic" msgstr "Ämne" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "Totalt" @@ -27148,18 +27255,18 @@ msgstr "Totalt Antal Arbetade Timmar" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " -msgstr "Totalt antal E-post meddelande som ska synkroniseras i första synkronisering " +msgid "Total number of emails to sync in initial sync process" +msgstr "Totalt antal E-post meddelande som ska synkroniseras i första synkronisering" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "Totalt:" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "Totals" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "Totalt Antal Rader" @@ -27227,26 +27334,10 @@ msgstr "Spåra milstolpar för alla dokument" msgid "Tracking" msgstr "Spårning" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "Spårning URL skapad och kopierad till urklipp" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "Transaktion Hash" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "Transaktion Logg" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "Transaktion Logg Rapport" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "Transgender" @@ -27260,6 +27351,11 @@ msgstr "Övergång Egenskaper" msgid "Transition Rules" msgstr "Övergång Regler" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "Övergång Aktivitet" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" @@ -27274,7 +27370,7 @@ msgstr "Övergångar" msgid "Translatable" msgstr "Översättningbar" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "Översätt Data" @@ -27285,7 +27381,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:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "Översätt värden" @@ -27369,8 +27465,8 @@ msgstr "Försök igen" msgid "Try a Naming Series" msgstr "Prova Namngivning Serie" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "Prova ny Urskrift Format Redigerare" @@ -27436,7 +27532,7 @@ msgstr "Två Faktor Autentisering Sätt" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27530,7 +27626,7 @@ msgstr "URL" msgid "URL for documentation or help" msgstr "URL för dokumentation eller hjälp" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "URL måste börja med http:// eller https://" @@ -27633,7 +27729,7 @@ msgstr "Kunde inte att skicka e-post på grund av att standard e-post konto sakn msgid "Unable to update event" msgstr "Kan inte uppdatera händelse" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "Kunde inte skriva fil format för {0}" @@ -27642,7 +27738,7 @@ msgstr "Kunde inte skriva fil format för {0}" msgid "Unassign Condition" msgstr "Inaktivera Villkor" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "Ofångat Undantag" @@ -27658,7 +27754,7 @@ msgstr "Ångra" msgid "Undo last action" msgstr "Ångra Senaste Åtgärd" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "Oescapede citattecken i sträng literal: {0}" @@ -27707,7 +27803,7 @@ msgstr "Okänd Kolumn: {0}" msgid "Unknown Rounding Method: {}" msgstr "Okänd Avrundning Sätt: {}" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "Okänd Användare" @@ -27719,8 +27815,7 @@ msgstr "Okänd fil kodning. Försökte använda: {0}" msgid "Unlock Reference Document" msgstr "Lås upp Referens Dokument" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "Avpublicera" @@ -27736,7 +27831,7 @@ msgstr "Oläst" msgid "Unread Notification Sent" msgstr "Oläst Avisering Skickad" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "Osäker SQL Fråga" @@ -27774,8 +27869,8 @@ msgstr "Avregistrering Parameter" msgid "Unsubscribed" msgstr "Avregistrerad" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "Funktion som inte stöds eller ogiltigt fältnamn: {0}" @@ -27795,7 +27890,7 @@ msgstr "Packade upp {0} filer" msgid "Unzipping files..." msgstr "Packar upp filer..." -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "Uppkommande Händelser för Idag" @@ -27809,7 +27904,7 @@ msgstr "Uppkommande Händelser för Idag" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Uppdatera" @@ -27843,6 +27938,11 @@ msgstr "Uppdatera Order" msgid "Update Password" msgstr "Uppdatera lösenord" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "Uppdatera Profil" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27885,7 +27985,7 @@ msgstr "Uppdatera {0} poster" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "Uppdaterad" @@ -27893,7 +27993,7 @@ msgstr "Uppdaterad" msgid "Updated Successfully" msgstr "Uppdaterad" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "Uppdaterad till ny Version 🎉" @@ -27901,7 +28001,7 @@ msgstr "Uppdaterad till ny Version 🎉" msgid "Updated successfully" msgstr "Uppdaterad" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "Uppdaterar" @@ -27946,8 +28046,8 @@ msgstr "Uppgradera plan" msgid "Upgrade your support experience with Frappe Helpdesk" msgstr "Förbättra din supportupplevelse med Helpdesk" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27957,11 +28057,11 @@ msgstr "Ladda upp" msgid "Upload Image" msgstr "Ladda upp Bild" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "Ladda upp fil" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "Ladda upp {0} filer" @@ -28058,15 +28158,11 @@ msgstr "Använda annan E-post " msgid "Use if the default settings don't seem to detect your data correctly" msgstr "Använd om standard inställningar inte kan identifiera din data korrekt" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "Användning av funktion {0} i fält är begränsad" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 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:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "Använd ny Urskrift Format Redigerare" @@ -28087,7 +28183,9 @@ msgid "Used OAuth" msgstr "Använd OAuth" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -28096,6 +28194,7 @@ msgstr "Använd OAuth" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -28110,11 +28209,12 @@ msgstr "Använd OAuth" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -28123,6 +28223,7 @@ msgstr "Använd OAuth" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -28139,17 +28240,11 @@ msgstr "Använd OAuth" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "Användare" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "Användare" - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "Användare '{0}' har redan roll '{1}'" @@ -28179,7 +28274,7 @@ msgstr "Användare kan inte Skapa" msgid "User Cannot Search" msgstr "Användare kan inte Söka" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "Användare Ändrad" @@ -28243,11 +28338,6 @@ msgstr "Användare" msgid "User ID Property" msgstr "Användare Egenskap" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "Användare ID för Bloggare" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28267,6 +28357,11 @@ msgstr "Fält Användare erfordras i användare typ {0}" msgid "User Image" msgstr "Användare Bild" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "Användare Inbjudan" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "Användare Meny" @@ -28285,12 +28380,12 @@ msgstr "Användare Behörighet" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "Användare Behörigheter" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Användare Behörigheter" @@ -28303,7 +28398,9 @@ msgstr "Användarbehörigheter används för att begränsa användare till speci msgid "User Permissions created successfully" msgstr "Användare Rättigheter skapade" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "Användare Roll" @@ -28369,6 +28466,10 @@ msgstr "Användare finns inte " msgid "User does not have permission to create the new {0}" msgstr "Användare Behörigheter saknas att skapa den nya {0}" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "Användare är inaktiverad" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "Användare erfordras för Delad Mapp" @@ -28377,7 +28478,7 @@ msgstr "Användare erfordras för Delad Mapp" #. Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "User must always select" -msgstr "Användare måste altid välja" +msgstr "Användare måste alltid välja" #: frappe/core/doctype/user_permission/user_permission.py:60 msgid "User permission already exists" @@ -28399,7 +28500,7 @@ msgstr "Användare {0} kan inte tas bort" msgid "User {0} cannot be disabled" msgstr "Användare {0} kan inte inaktiveras" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "Användare {0} kan inte byta namn" @@ -28420,7 +28521,7 @@ msgstr "Användare {0} har inte behörighet att skapa Arbetsyta." msgid "User {0} has requested for data deletion" msgstr "Användare {0} begärde radering av data" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "Användare {0} efterliknade som {1}" @@ -28428,7 +28529,7 @@ msgstr "Användare {0} efterliknade som {1}" msgid "User {0} is disabled" msgstr "Användare {0} är inaktiverad" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "Användare {0} är inaktiverad. Kontakta System Ansvarig." @@ -28449,7 +28550,7 @@ msgstr "Användare Info URI" msgid "Username" msgstr "Användarnamn" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "Användare Namn {0} finns redan" @@ -28533,7 +28634,7 @@ msgstr "Validera Frappe Mail Inställningar" msgid "Validate SSL Certificate" msgstr "Validera SSL Certifikat" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "Validering Fel" @@ -28556,8 +28657,8 @@ msgstr "Giltighet" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28589,7 +28690,7 @@ msgstr "Värde Ändrad" msgid "Value To Be Set" msgstr "Värde som ska Anges" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "Värde kan inte ändras för {0}" @@ -28605,11 +28706,11 @@ msgstr "Värde kan inte vara negativ för {0}: {1}" msgid "Value for a check field can be either 0 or 1" msgstr "Värde för ett kontroll fält kan vara antingen 0 eller 1" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 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:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "Värde för {0} kan inte vara en lista" @@ -28634,7 +28735,7 @@ 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:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "Värde för hög" @@ -28651,7 +28752,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:8 +#: frappe/core/doctype/version/version_view.html:9 msgid "Values Changed" msgstr "Värde Ändrad " @@ -28664,7 +28765,7 @@ msgstr "Verdana" msgid "Verification" msgstr "Verifiering" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "Verifiering Kod" @@ -28726,15 +28827,7 @@ msgstr "Visa Alla" msgid "View Audit Trail" msgstr "Visa Audit Spår" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "Visa Blogg Inlägg" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "Visa Kommentar" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "Visa Doctype Behörigheter" @@ -28746,7 +28839,7 @@ msgstr "Visa Fil" msgid "View Full Log" msgstr "Visa Full Logg" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "Visa Lista" @@ -28756,7 +28849,7 @@ msgstr "Visa Lista" msgid "View Log" msgstr "Visa Logg" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "Visa Behöriga Dokument" @@ -28803,7 +28896,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:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "Visa din respons" @@ -28872,6 +28965,7 @@ msgid "Warehouse" msgstr "Lager" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Varning" @@ -28880,7 +28974,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:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "Varning: Namngivning är inte angiven" @@ -28966,7 +29060,7 @@ msgstr "Webbsida" msgid "Web Page Block" msgstr "Webbsida Avsnitt" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "Webbsida URL" @@ -29069,7 +29163,7 @@ msgstr "Webhook URL" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "Webbplats" @@ -29082,10 +29176,6 @@ msgstr "Webbplats Analys" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -29129,7 +29219,7 @@ msgstr "Webbplats Skript" msgid "Website Search Field" msgstr "Webbplats Sökfält" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "Webbplats Sökfält måste vara giltigt fältnamn" @@ -29346,11 +29436,6 @@ msgstr "Jokertecken Filter" msgid "Will add \"%\" before and after the query" msgstr "Lägger till \"%\" före och efter fråga" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "Kommer att användas i URL (vanligtvis förnamn)." - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "Kommer att vara ditt inloggning ID" @@ -29365,7 +29450,7 @@ msgstr "Kommer visas bara om sektion rubriker är aktiverade" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "Kör schemalagda jobb endast en gång om dagen för inaktiva webbplatser. Ange som 0 för att undvika att schemaläggare inaktiveras automatiskt." -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "Med Brevhuvud" @@ -29443,7 +29528,7 @@ msgstr "Arbetsflöde Generator skapar arbetsflöden visuellt. Dra och släpp Til msgid "Workflow Data" msgstr "Arbetsflöde Data" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "Arbetsflöde Detaljer" @@ -29469,11 +29554,11 @@ msgstr "Arbetsflöde Tillstånd" msgid "Workflow State Field" msgstr "Arbetsflöde Tillstånd Fält" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "Arbetsflöde Tillstånd inte angiven" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 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}" @@ -29481,15 +29566,30 @@ 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:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "Arbetsflöde Status" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "Arbetsflöde Aktivitet" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "Arbetsflöde Övergång" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "Arbetsflöde Övergång Aktivitet" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "Arbetsflöde Övergång Aktiviteter" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29505,13 +29605,13 @@ msgstr "Arbetsflöde är uppdaterad" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "Arbetsyta" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "Arbetsyta {0} finns inte" @@ -29581,11 +29681,11 @@ msgstr "Arbetsyta {0} skapad" msgid "Workspaces" msgstr "Arbetsytor" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "Vill du publicera denna kommentar? Detta innebär att den blir synlig för webbplatsens/portalens användare." -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "Vill du inaktivera denna kommentar? Detta innebär att den inte längre kommer att vara synlig för webbplatsens/portalens användare." @@ -29604,11 +29704,11 @@ msgstr "Slutför" msgid "Write" msgstr "Skriva" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "Fel Hämtning Från Värde" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "X Axel Fält" @@ -29627,13 +29727,13 @@ msgstr "XLSX" msgid "Y Axis" msgstr "Y Axel" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" msgstr "Y Axel Fält" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "Y Fält" @@ -29685,16 +29785,17 @@ msgstr "Gul" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Ja" @@ -29722,6 +29823,18 @@ msgstr "Du" msgid "You Liked" msgstr "Du Gillade" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "Du lade till 1 rad till {0}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "Du lade till {0} rader till {1}" + +#: frappe/public/js/frappe/router.js:642 +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." + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "Ansluten till Nätverk." @@ -29760,20 +29873,20 @@ msgstr "Du har inte behörighet att redigera rapport." #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "Du har inte behörighet att exportera {} doctype" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 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:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "Du har inte behörighet att skicka e-post i kopplad till detta dokument" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "Du har inte behörighet att uppdatera denna Webb Formulär Dokument" @@ -29797,13 +29910,13 @@ 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:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 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." #: frappe/email/doctype/email_account/email_account.js:284 msgid "You are selecting Sync Option as ALL, It will resync all read as well as unread message from server. This may also cause the duplication of Communication (emails)." -msgstr "Du väljer Synkronisering Alternativ som ALLA. Det kommer att synkronisera alla lästa såväl som olästa meddelanden från server. Detta kan också orsaka kopior av konversation (e-post)." +msgstr "Du väljer Synkronisering Alternativ som ALLA. Det kommer att synkronisera alla lästa såväl som olästa meddelanden från server. Detta kan också orsaka kopior av kommunikation (e-post)." #: frappe/public/js/frappe/form/footer/form_timeline.js:414 msgctxt "Form timeline" @@ -29823,13 +29936,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "Du kan också kopiera och klistra in följande länk i din webbläsare" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " -msgstr "Du kan kopiera och klistra in detta" +msgid "You can also copy-paste this" +msgstr "Du kan också kopiera och klistra in detta" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "Du kan kopiera och klistra in {0} i webbläsare" +#: frappe/templates/emails/user_invitation_expired.html:8 +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." @@ -29842,11 +29959,11 @@ msgstr "Ändra lagring regel från {0}." msgid "You can continue with the onboarding after exploring this page" msgstr "Du kan fortsätta med Introduktion efter att utforskning av denna sida" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "Du kan inaktivera denna {0} istället för att ta bort." -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "Du kan öka gräns från System Inställningar." @@ -29866,7 +29983,7 @@ msgstr "Du kan bara skriva ut upp till {0} dokument åt gången" msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "Du kan endas ange 3 Anpassade Dokument Typer i tabell Dokument Typer." -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "Du kan bara ladda upp JPG, PNG, PDF, TXT, CSV eller Microsoft dokument." @@ -29884,7 +30001,7 @@ msgstr "Välja en från följande," msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "Ange ett högt värde här om flera användare kommer att logga in från samma nätverk." -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "Du kan försöka ändra Filter i Rapport." @@ -29896,11 +30013,11 @@ msgstr "Använd Anpassa Formulär för att ange nivåer på fält." msgid "You can use wildcard %" msgstr "Du kan använda jokertecken %" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "Du kan inte ange 'Alternativ' för fält {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "Du kan inte ange 'Översättningbar' för fält {0}" @@ -29918,7 +30035,7 @@ 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/custom/doctype/customize_form/customize_form.py:385 +#: 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}" @@ -29948,7 +30065,7 @@ msgstr "Du ändrade {0} till {1}" msgid "You created this" msgstr "Du skapade detta" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "Du skapade detta dokument {0}" @@ -29961,15 +30078,15 @@ msgstr "Du har inte Läs eller Val Behörigheter för {}" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "Du har inte behörighet för att komma åt denna resurs. Kontakta Administratör ." -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "Du har inte behörighet att slutföra åtgärd" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "Du har inte åtkomstbehörighet till fält: {0}" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "Du har inte behörighet att komma åt {0}: {1}." @@ -29981,11 +30098,11 @@ msgstr "Du har inte behörighet att annullera alla länkade dokument." msgid "You don't have access to Report: {0}" msgstr "Du har inte behörighet till Rapport: {0}" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "Du har inte behörighet att komma åt {0} DocType." -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "Du har inte behörighet att komma åt den här filen" @@ -29993,19 +30110,19 @@ msgstr "Du har inte behörighet att komma åt den här filen" msgid "You don't have permission to get a report on: {0}" msgstr "Du har inte behörighet att hämta rapport {0}" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "Du har inte behörighet till detta dokument" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " -msgstr "Du har ny meddelande från: " +msgid "You have a new message from:" +msgstr "Du har ny meddelande från:" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "Du är utloggad nu." -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 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}" @@ -30013,11 +30130,7 @@ msgstr "Du har nått gräns för radstorlek i databas tabell: {0}" 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." -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "Du fick ❤️ gilla på ditt blogg inlägg" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "Du behöver ktivera \"\"Two Factor Auth\"\" från System Inställningar." @@ -30037,7 +30150,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:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "Ingen {0} skapad än" @@ -30054,11 +30167,11 @@ msgstr "Du ändrade detta" msgid "You must add atleast one link." msgstr "Du måste lägga till minst en länk." -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "Du måste vara inloggad för att använda detta formulär." -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "Du måste logga in för att godkänna detta formulär" @@ -30082,7 +30195,7 @@ msgstr "Du måste vara systemanvändare för att komma åt denna sida." msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "Du måste vara i Utvecklarläge att redigera Standard Webb Formulär" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "Du måste vara inloggad och ha System Ansvarig roll för att kunna ha tillgång till säkerhetskopior." @@ -30090,13 +30203,13 @@ msgstr "Du måste vara inloggad och ha System Ansvarig roll för att kunna ha ti msgid "You need to be logged in to access this page" msgstr "Du måste vara inloggad för att ha tillgång till den här sida" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "Du måste vara inloggad för att ha tillgång till den här {0}." #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " -msgstr "Skapa dessa först:" +msgid "You need to create these first:" +msgstr "Du behöver skapa dessa först:" #: frappe/www/login.html:76 msgid "You need to enable JavaScript for your app to work." @@ -30130,11 +30243,19 @@ msgstr "Du behöver skrivbehörighet på {0} {1} för att ändra namn" 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}" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "Du tog bort 1 rad från {0}" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "Du tog bort bilaga {0}" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "Du tog bort {0} rader från {1}" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "Du verkar vara klar!" @@ -30165,10 +30286,26 @@ msgstr "Du slutade följa detta dokument" msgid "You viewed this" msgstr "Du visade detta" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "Du kommer att omdirigeras till:" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "Du har blivit inbjuden att gå med {0}" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "Du har blivit inbjuden att gå med {0}." + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "Inloggad som annan användare från annan flik. Uppdatera dennna sidan för att fortsätta använda system." +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "Youtube" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "CSV fil håller på att skapas och kommer att visas i Bilaga avsnitt när den är klar. Dessutom kommer meddelande att skickas när filen är tillgänglig för nedladdning." @@ -30198,7 +30335,7 @@ msgstr "Genvägar" msgid "Your account has been deleted" msgstr "Ditt konto är borttagen" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "Konto är låst och kommer att låsas upp efter {0} sekunder" @@ -30222,10 +30359,22 @@ msgstr "Anslutning begäran till Google Kalender godkändes" msgid "Your email address" msgstr "Din e-postadress" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "Din exporterade rapport: {0}" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "Ditt formulär är uppdaterad" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "Din inbjudan att gå med i {0} har avbrutits av webbplats administratör." + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "Din inbjudan att gå med i {0} har gått ut." + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "Ditt Inlogging ID är" @@ -30242,13 +30391,17 @@ msgstr "Ditt gamla lösenord är felaktig." #. 'System Settings' #: frappe/core/doctype/system_settings/system_settings.json msgid "Your organization name and address for the email footer." -msgstr "Bolag Namn och Adress för E-post Sidfot." +msgstr "Bolag Namn och Adress för E-post Signatur." #: frappe/templates/emails/auto_reply.html:2 msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "Din fråga har mottagits. Vi kommer att svara inom kort. Om du har någon ytterligare information, vänligen svara på detta mail." -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "Din rapport håller på att skapas i bakgrunden. Du kommer att få e-postmeddelande {0} med nedladdningslänk när den är klar." + +#: frappe/app.py:377 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." @@ -30270,7 +30423,7 @@ msgstr "Noll" msgid "Zero means send records updated at anytime" msgstr "Nollan innebär att skicka poster som uppdaterades närsomhelst" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" msgstr "[Åtgärd vidtagen av {0}]" @@ -30292,10 +30445,6 @@ msgstr "\"as_iterator\" fungerar bara med \"as_list=True\" eller \"as_dict=True\ msgid "`job_id` paramater is required for deduplication." msgstr "'job_id'parameter erfordras för deduplicering." -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "la till rader för {0}" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30330,7 +30479,7 @@ msgstr "Roll " msgid "cProfile Output" msgstr "cProfil Utdata" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "kalender" @@ -30475,12 +30624,12 @@ msgstr "emacs" msgid "email" msgstr "E-post" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "e-post inkorg" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "tom" @@ -30537,7 +30686,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "h" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "hub" @@ -30552,11 +30701,6 @@ msgstr "ikon" msgid "import" msgstr "import" -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "i minuter" - #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "användare@bolag" @@ -30565,7 +30709,7 @@ msgstr "användare@bolag" msgid "just now" msgstr "just nu" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "etikett" @@ -30594,7 +30738,7 @@ msgstr "lista" msgid "logged in" msgstr "inloggad" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "Inloggning Erfordras " @@ -30615,11 +30759,6 @@ msgstr "m" msgid "merged {0} into {1}" msgstr "sammanslog {0} in i {1}" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "min läs" - #. 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 @@ -30643,7 +30782,7 @@ msgstr "modul" msgid "module name..." msgstr "modul namn..." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "ny" @@ -30772,10 +30911,6 @@ msgstr "läs" msgid "red" msgstr "röd" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "tog bort rader för {0}" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "ändrade namn från {0} till {1}" @@ -30831,19 +30966,19 @@ msgstr "dela" msgid "short" msgstr "kort" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "sedan förra månad" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "sedan förra veckan" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "sedan förra året" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "sedan igår" @@ -30896,6 +31031,10 @@ msgstr "detta formulär" msgid "this shouldn't break" msgstr "detta ska inte gå sönder" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "tilll din webbläsare" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30923,7 +31062,7 @@ msgstr "version_tabell" msgid "via Assignment Rule" msgstr "via Tilldelning Regel" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "genom Återkommande Händelse" @@ -30937,7 +31076,7 @@ msgstr "via Data Import" msgid "via Google Meet" msgstr "via Google Meet" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "via Avisering" @@ -30970,10 +31109,15 @@ msgstr "när du klickar på element fokuserar det popover om det finns." msgid "wkhtmltopdf" msgstr "wkhtmltopdf" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "wkhtmltopdf 0.12.x (med patchad qt)." +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "arbetsflöde_övergång" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json @@ -31001,11 +31145,11 @@ msgstr "yyyy-mm-dd" msgid "{0}" msgstr "{0}" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "{0} ${skip_list ? \"\" : type}" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "{0} ${type}" @@ -31031,19 +31175,19 @@ msgstr "{0} = {1}" msgid "{0} Calendar" msgstr "{0} Kalender" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "{0} Diagram" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: 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:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "{0} Fält" @@ -31067,6 +31211,10 @@ msgstr "{0} Gillade" msgid "{0} List" msgstr "{0} Lista" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "{0} List Vy Inställningar" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "{0} M" @@ -31079,7 +31227,7 @@ msgstr "{0} Karta" msgid "{0} Name" msgstr "{0} Namn" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 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}" @@ -31089,11 +31237,10 @@ 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:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "{0} Rapporter" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "{0} Inställningar" @@ -31118,7 +31265,15 @@ msgstr "{0} Arbetsyta" msgid "{0} added" msgstr "{0} tillagd" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "{0} lade till 1 rad till {1}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "{0} lade till {1} rader till {2}" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0} finns redan. Välj ett annat namn" @@ -31130,7 +31285,7 @@ msgstr "{0} redan avregistrerad" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0} redan avregistrerad för {1} {2}" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "{0} och {1}" @@ -31138,7 +31293,7 @@ msgstr "{0} och {1}" msgid "{0} are currently {1}" msgstr "{0} är för närvarande {1}" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "{0} erfordras" @@ -31155,7 +31310,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0} bifogade {1}" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "{0} kan inte vara fler än {1}" @@ -31197,11 +31352,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "{0} ändrade {1} till {2}" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "{0} kommentarer" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 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." @@ -31214,7 +31365,7 @@ msgstr "{0} skapades" msgid "{0} created this" msgstr "{0} skapade detta" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "{0} skapade detta dokument {1}" @@ -31236,7 +31387,7 @@ msgstr "{0} finns inte på rad {1}" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "{0} fält kan inte anges som unikt i {1}, eftersom det inte finns unika befintliga värden" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "{0} fält får inte innehålla bakåttecken (`): {1}" @@ -31268,7 +31419,7 @@ msgstr "{0} har lämnat konversation i {1} {2}" msgid "{0} hours ago" msgstr "{0} timmar sedan" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "{0} om du inte omdirigeras inom {1} sekunder" @@ -31277,23 +31428,23 @@ 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:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "{0} är erfordrad fält" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "{0} är inte giltig zip fil" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "{0} är ogiltig Data Fält." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "{0} är ogiltig E-post i 'Mottagare'" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "{0} är mellan {1} och {2}" @@ -31302,27 +31453,27 @@ msgstr "{0} är mellan {1} och {2}" msgid "{0} is currently {1}" msgstr "{0} är för närvarande {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "{0} är lika med {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "{0} är större än eller lika med {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "{0} är större än {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "{0} är mindre än eller lika med {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "{0} är mindre än {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "{0} är som {1}" @@ -31330,7 +31481,7 @@ msgstr "{0} är som {1}" msgid "{0} is mandatory" msgstr "{0} är erfodrad" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "{0} är inte undertabell till {1}" @@ -31350,12 +31501,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:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} är inte en giltig DocType för Dynamisk Länk" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "{0} är inte giltig E-post" @@ -31363,15 +31514,15 @@ 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:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "{0} är inte giltigt Namn" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "{0} är inte giltigt Telefon Nummer" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 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." @@ -31387,55 +31538,59 @@ msgstr "{0} är inte ett giltigt överordnat fält för {1}" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} är inte ett giltigt rapport format. Rapport Format ska vara en av följande {1}" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "{0} är inte en zip-fil" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "{0} är inte en tillåten roll för {1}" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "{0} är inte lika med {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "{0} är inte som {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "{0} är inte en av {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "{0} är inte angiven" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "{0} är nu standard utskrift format för {1} DocType" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 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:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: 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/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "{0} är angiven" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "{0} är inom {1}" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} artiklar valda" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} efterliknade som du. De gav detta skäl: {1}" @@ -31468,35 +31623,35 @@ msgstr "{0} minuter sedan" msgid "{0} months ago" msgstr "{0} månader sedan" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "{0} måste vara efter {1}" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "{0} måste börja med '{1}'" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "{0} måste vara lika med '{1}'" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "{0} måste inte vara någon av {1}" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 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:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "{0} måste anges först" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "{0} måste vara unik" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "{0} måste vara {1} {2}" @@ -31504,7 +31659,7 @@ msgstr "{0} måste vara {1} {2}" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "{0} måste börja och sluta med bokstav och får endast innehålla bokstäver, bindestreck eller understreck." -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "{0} är inte giltig Tillstånd" @@ -31517,11 +31672,11 @@ msgid "{0} not found" msgstr "{0} hittades inte" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} av {1}" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} av {1} ({2} rader med underordnade)" @@ -31530,7 +31685,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "{0} ." -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "{0} eller {1}" @@ -31554,6 +31709,10 @@ msgstr "{0} poster borttagna" msgid "{0} records will be exported" msgstr "{0} poster kommer att exporteras" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "{0} tog bort 1 rad från {1}" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31563,15 +31722,29 @@ msgstr "{0} tog bort bilaga {1}" msgid "{0} removed their assignment." msgstr "{0} tog bort sin tilldelning." -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "{0} tog bort {1} rader från {2}" + +#: frappe/public/js/frappe/roles_editor.js:64 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:1794 -msgid "{0} row #{1}: " -msgstr "{0} rad #{1}: " +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" +msgstr "{0} rad #{1}:" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "{0} rader från {1}" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "{0} rader till {1}" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "{0} sparad" @@ -31591,11 +31764,11 @@ msgstr "{0} delade detta dokument med alla" msgid "{0} shared this document with {1}" msgstr "{0} delade detta dokument med {1}" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "{0} bör indexeras eftersom den hänvisas till i översikt panel anslutningar" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "{0} bör inte vara samma som {1}" @@ -31608,8 +31781,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "{0} godkände detta dokument {1}" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "{0} prenumeranter tillagda" @@ -31619,7 +31792,7 @@ msgstr "{0} för att sluta ta emot E-post meddelande av denna typ" #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "{0} till {1}" @@ -31627,7 +31800,7 @@ msgstr "{0} till {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} slutade dela detta dokument med {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} uppdaterat" @@ -31663,15 +31836,15 @@ 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:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "{0} {1} finns redan" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 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}\"" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "{0} {1} kan inte vara undernod då den har undernoder" @@ -31687,11 +31860,11 @@ msgstr "{0} {1} är länkad till följande godkända dokument: {2}" msgid "{0} {1} not found" msgstr "{0} {1} hittades inte" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 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:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "{0}, Rad {1}" @@ -31699,79 +31872,79 @@ 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:1120 +#: frappe/model/base_document.py:1181 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:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "{0}: Kan inte Ändra utan att Annullera" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 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:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 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:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "{0}: Kan inte ange Annullerad utan att Godkänna" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "{0}: Kan inte ange Import utan att Skapa" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 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:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 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:405 +#: 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:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 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:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 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:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 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:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 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:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 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:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "{0}: Inga grundläggande behörigheter angivna" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 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:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 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:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 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:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 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}" @@ -31779,7 +31952,7 @@ 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:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 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" @@ -31787,7 +31960,7 @@ msgstr "{0}: Behörighet på nivå 0 måste anges före högre nivåer anges" 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:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "{0}: fältnamn kan inte anges för reserverad sökord {1}" @@ -31800,11 +31973,11 @@ 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:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} mot {2}" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "{0}: Fält typ {1} för {2} kan inte indexeras" @@ -31828,7 +32001,7 @@ msgstr "{count} rad vald" msgid "{count} rows selected" msgstr "{count} rader valda" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 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}}." @@ -31836,11 +32009,11 @@ msgstr "{{{0}}} är inte giltigt fältnamn mönster. Det borde vara {{field_name msgid "{} Complete" msgstr "{} Klar" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "{} Ogiltig python kod på rad {}" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
    {}" msgstr "{} Möjligen ogiltig python kod.
    {}" @@ -31866,7 +32039,7 @@ msgstr "{} är inaktiverad. Den kan bara aktiveras om {} är markerad." msgid "{} is not a valid date string." msgstr "{} är inte giltig datum sträng." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "{} hittades inte i Sökväg! Detta erfordras för att komma åt konsol." diff --git a/frappe/locale/ta.po b/frappe/locale/ta.po new file mode 100644 index 0000000000..29ce1dbd7f --- /dev/null +++ b/frappe/locale/ta.po @@ -0,0 +1,31819 @@ +msgid "" +msgstr "" +"Project-Id-Version: frappe\n" +"Report-Msgid-Bugs-To: developers@frappe.io\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" +"Last-Translator: developers@frappe.io\n" +"Language-Team: Tamil\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.16.0\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: frappe\n" +"X-Crowdin-Project-ID: 639578\n" +"X-Crowdin-Language: ta\n" +"X-Crowdin-File: /[frappe.frappe] develop/frappe/locale/main.pot\n" +"X-Crowdin-File-ID: 52\n" +"Language: ta_IN\n" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "!=" +msgstr "!=" + +#. Description of the 'Org History Heading' (Data) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "\"Company History\"" +msgstr "\"நிறுவன வரலாறு\"" + +#: frappe/core/doctype/data_export/exporter.py:202 +msgid "\"Parent\" signifies the parent table in which this row must be added" +msgstr "" + +#. Description of the 'Team Members Heading' (Data) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "\"Team Members\" or \"Management\"" +msgstr "\"குழு உறுப்பினர்கள்\" அல்லது \"நிர்வாகம்\"" + +#: frappe/public/js/frappe/form/form.js:1090 +msgid "\"amended_from\" field must be present to do an amendment." +msgstr "" + +#: frappe/utils/csvutils.py:246 +msgid "\"{0}\" is not a valid Google Sheets URL" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:21 +#: frappe/public/js/frappe/ui/toolbar/tag_utils.js:22 +msgid "#{0}" +msgstr "" + +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:36 +msgid "${values.doctype_name} has been added to queue for optimization" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "© Frappe Technologies Pvt. Ltd. and contributors" +msgstr "" + +#. Label of the head_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "<head> HTML" +msgstr "" + +#: frappe/public/js/form_builder/store.js:206 +msgid "'In Global Search' is not allowed for field {0} of type {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1355 +msgid "'In Global Search' not allowed for type {0} in row {1}" +msgstr "" + +#: frappe/public/js/form_builder/store.js:198 +msgid "'In List View' is not allowed for field {0} of type {1}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:367 +msgid "'In List View' not allowed for type {0} in row {1}" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 +msgid "'Recipients' not specified" +msgstr "" + +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "" + +#: frappe/utils/__init__.py:261 +msgid "'{0}' is not a valid URL" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1349 +msgid "'{0}' not allowed for type {1} in row {2}" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:302 +msgid "(Mandatory)" +msgstr "" + +#: frappe/model/rename_doc.py:703 +msgid "** Failed: {0} to {1}: {2}" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:133 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 +msgid "+ Add / Remove Fields" +msgstr "" + +#. Description of the 'Doc Status' (Select) field in DocType 'Workflow Document +#. State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "0 - Draft; 1 - Submitted; 2 - Cancelled" +msgstr "" + +#. Description of the 'Priority' (Int) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "0 is highest" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:893 +msgid "1 = True & 0 = False" +msgstr "" + +#. Description of the 'Fraction Units' (Int) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "1 Currency = [?] Fraction\n" +"For e.g. 1 USD = 100 Cent" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:19 +msgid "1 Day" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:374 +msgid "1 Google Calendar Event synced." +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:963 +msgid "1 Report" +msgstr "" + +#: frappe/tests/test_utils.py:845 +msgid "1 day ago" +msgstr "1 நாள் முன்பு" + +#: frappe/public/js/frappe/form/reminders.js:17 +msgid "1 hour" +msgstr "1 மணி நேரம்" + +#: frappe/public/js/frappe/utils/pretty_date.js:52 +#: frappe/tests/test_utils.py:843 +msgid "1 hour ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:48 +#: frappe/tests/test_utils.py:841 +msgid "1 minute ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:66 +#: frappe/tests/test_utils.py:849 +msgid "1 month ago" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:3 +msgid "1 of 2" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:227 +msgid "1 record will be exported" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "" + +#: frappe/tests/test_utils.py:840 +msgid "1 second ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:62 +#: frappe/tests/test_utils.py:847 +msgid "1 week ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:70 +#: frappe/tests/test_utils.py:851 +msgid "1 year ago" +msgstr "" + +#: frappe/tests/test_utils.py:844 +msgid "2 hours ago" +msgstr "" + +#: frappe/tests/test_utils.py:850 +msgid "2 months ago" +msgstr "" + +#: frappe/tests/test_utils.py:848 +msgid "2 weeks ago" +msgstr "" + +#: frappe/tests/test_utils.py:852 +msgid "2 years ago" +msgstr "" + +#: frappe/tests/test_utils.py:842 +msgid "3 minutes ago" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:16 +msgid "30 minutes" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:18 +msgid "4 hours" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:37 +msgid "5 Records" +msgstr "" + +#: frappe/tests/test_utils.py:846 +msgid "5 days ago" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:36 +msgid "; not allowed in condition" +msgstr "" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "<" +msgstr "" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "<=" +msgstr "" + +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:601 +msgid "{0} is not a valid URL" +msgstr "" + +#. Content of the 'Help' (HTML) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "
    Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
    " +msgstr "" + +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

    Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

    " +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

    Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

    " +msgstr "" + +#. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "
    \n" +" Edit list of Series in the box. Rules:\n" +"
      \n" +"
    • Each Series Prefix on a new line.
    • \n" +"
    • Allowed special characters are \"/\" and \"-\"
    • \n" +"
    • \n" +" Optionally, set the number of digits in the series using dot (.)\n" +" followed by hashes (#). For example, \".####\" means that the series\n" +" will have four digits. Default is five digits.\n" +"
    • \n" +"
    • \n" +" You can also use variables in the series name by putting them\n" +" between (.) dots\n" +"
      \n" +" Supported Variables:\n" +"
        \n" +"
      • .YYYY. - Year in 4 digits
      • \n" +"
      • .YY. - Year in 2 digits
      • \n" +"
      • .MM. - Month
      • \n" +"
      • .DD. - Day of month
      • \n" +"
      • .WW. - Week of the year
      • \n" +"
      • \n" +" .{fieldname}. - fieldname on the document e.g.\n" +" branch\n" +"
      • \n" +"
      • .FY. - Fiscal Year (requires ERPNext to be installed)
      • \n" +"
      • .ABBR. - Company Abbreviation (requires ERPNext to be installed)
      • \n" +"
      \n" +"
    • \n" +"
    \n" +" Examples:\n" +"
      \n" +"
    • INV-
    • \n" +"
    • INV-10-
    • \n" +"
    • INVK-
    • \n" +"
    • INV-.YYYY.-.{branch}.-.MM.-.####
    • \n" +"
    \n" +"
    \n" +"
    \n" +msgstr "" + +#. Content of the 'Custom HTML Help' (HTML) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "

    Custom CSS Help

    \n\n" +"

    Notes:

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

    Examples

    \n\n" +"

    1. Left align integers

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

    1. Add border to sections except the last section

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

    Print Format Help

    \n" +"
    \n" +"

    Introduction

    \n" +"

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

    \n" +"

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

    \n" +"
    \n" +"

    References

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

    Example

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

    Common Functions

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

    Default Template

    \n" +"

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

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

    Email Reply Example

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

    How to get fieldnames

    \n\n" +"

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

    \n\n" +"

    Templating

    \n\n" +"

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

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

    Condition Examples:

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

    Condition Examples:

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

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

    For Example:

    \n" +"

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

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

    Set context before rendering a template. Example:

    \n" +"

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

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

    For example:

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

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

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

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

    \n" +"

    Allowed functions:\n" +"

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

    Example:

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

    " +msgstr "" + +#. Header text in the Welcome Workspace Workspace +#: frappe/core/workspace/welcome_workspace/welcome_workspace.json +msgid "Hi," +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:39 +msgid "Warning: This field is system generated and may be overwritten by a future update. Modify it using {0} instead." +msgstr "" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "=" +msgstr "" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid ">" +msgstr "" + +#. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule +#. Condition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid ">=" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1035 +msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" +msgstr "" + +#. Description of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." +msgstr "" + +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:175 +msgid "A field with the name {0} already exists in {1}" +msgstr "" + +#: frappe/core/doctype/file/file.py:269 +msgid "A file with same name {} already exists" +msgstr "" + +#. Description of the 'Scopes' (Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A list of resources which the Client App will have access to after the user allows it.
    e.g. project" +msgstr "" + +#: frappe/templates/emails/new_user.html:5 +msgid "A new account has been created for you at {0}" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 +msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." +msgstr "" + +#. Description of the 'Symbol' (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "A symbol for this currency. For e.g. $" +msgstr "" + +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:49 +msgid "A template already exists for field {0} of {1}" +msgstr "" + +#. Description of the 'Software Version' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "A version identifier string for the client software.\n" +"
    \n" +"The value of the should change on any update of the client software with the same Software ID." +msgstr "" + +#: frappe/utils/password_strength.py:169 +msgid "A word by itself is easy to guess." +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A0" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A1" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A2" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A3" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A4" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A5" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A6" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A7" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A8" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "A9" +msgstr "" + +#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "ALL" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "API" +msgstr "" + +#. Label of the api_access (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "API Access" +msgstr "" + +#. Label of the api_endpoint (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "API Endpoint" +msgstr "" + +#. Label of the api_endpoint_args (Code) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "API Endpoint Args" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "" + +#. Label of the api_key (Data) field in DocType 'User' +#. Label of the api_key (Data) field in DocType 'Email Account' +#. Label of the api_key (Password) field in DocType 'Geolocation Settings' +#. Label of the api_key (Data) field in DocType 'Google Settings' +#. Label of the sb_01 (Section Break) field in DocType 'Google Settings' +#. Label of the api_key (Data) field in DocType 'Push Notification Settings' +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "API Key" +msgstr "" + +#. Description of the 'Authentication' (Section Break) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "API Key and Secret to interact with the relay server. These will be auto-generated when the first push notification is sent from any of the apps installed on this site." +msgstr "" + +#. Description of the 'API Key' (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "API Key cannot be regenerated" +msgstr "" + +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "" + +#. Label of the api_logging_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "API Logging" +msgstr "" + +#. Label of the api_method (Data) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "API Method" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/api_request_log/api_request_log.json +msgid "API Request Log" +msgstr "" + +#. Label of the api_secret (Password) field in DocType 'User' +#. Label of the api_secret (Password) field in DocType 'Email Account' +#. Label of the api_secret (Password) field in DocType 'Push Notification +#. Settings' +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "API Secret" +msgstr "" + +#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType' +#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "ASC" +msgstr "" + +#. Label of a standard help item +#. Type: Action +#: frappe/hooks.py +msgid "About" +msgstr "" + +#: frappe/www/about.html:11 frappe/www/about.html:18 +msgid "About Us" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/website/workspace/website/website.json +msgid "About Us Settings" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +msgid "About Us Team Member" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:27 +msgid "About {0} minute remaining" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:28 +msgid "About {0} minutes remaining" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:25 +msgid "About {0} seconds remaining" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "" + +#. Label of the access_control_section (Section Break) field in DocType 'Web +#. Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Access Control" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/workspace/users/users.json +msgid "Access Log" +msgstr "" + +#. Label of the access_token (Data) field in DocType 'OAuth Bearer Token' +#. Label of the access_token (Password) field in DocType 'Token Cache' +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Access Token" +msgstr "" + +#. Label of the access_token_url (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Access Token URL" +msgstr "" + +#: frappe/auth.py:494 +msgid "Access not allowed from this IP Address" +msgstr "" + +#. Label of the account_section (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Account" +msgstr "" + +#. Label of the account_deletion_settings_section (Section Break) field in +#. DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Account Deletion Settings" +msgstr "" + +#. Name of a role +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Accounts Manager" +msgstr "" + +#. Name of a role +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Accounts User" +msgstr "" + +#: frappe/public/js/frappe/form/dashboard.js:510 +msgid "Accurate count can not be fetched, click here to view all documents" +msgstr "" + +#. Label of the action (Select) field in DocType 'Amended Document Naming +#. Settings' +#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' +#. Label of the action (Data) field in DocType 'Navbar Item' +#. Label of the action (Select) field in DocType 'Onboarding Step' +#. Label of the action (Select) field in DocType 'Email Flag Queue' +#. Label of the action (Link) field in DocType 'Workflow Transition' +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_group/email_group.js:34 +#: frappe/email/doctype/email_group/email_group.js:63 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:37 +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +#: frappe/workflow/page/workflow_builder/workflow_builder.js:37 +msgid "Action" +msgstr "" + +#. Label of the action (Small Text) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json +msgid "Action / Route" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:305 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:376 +msgid "Action Complete" +msgstr "" + +#: frappe/model/document.py:1888 +msgid "Action Failed" +msgstr "" + +#. Label of the action_label (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Action Label" +msgstr "" + +#. Label of the action_timeout (Int) field in DocType 'Success Action' +#: frappe/core/doctype/success_action/success_action.json +msgid "Action Timeout (Seconds)" +msgstr "" + +#. Label of the action_type (Select) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json +msgid "Action Type" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.py:120 +msgid "Action {0} completed successfully on {1} {2}. View it {3}" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.py:116 +msgid "Action {0} failed on {1} {2}. View it {3}" +msgstr "" + +#. Label of the actions_section (Tab Break) field in DocType 'DocType' +#. Label of the actions (Table) field in DocType 'Customize Form' +#: frappe/core/doctype/communication/communication.js:66 +#: frappe/core/doctype/communication/communication.js:74 +#: frappe/core/doctype/communication/communication.js:82 +#: frappe/core/doctype/communication/communication.js:90 +#: frappe/core/doctype/communication/communication.js:99 +#: frappe/core/doctype/communication/communication.js:108 +#: frappe/core/doctype/communication/communication.js:131 +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/rq_job/rq_job_list.js:14 +#: frappe/core/doctype/rq_job/rq_job_list.js:39 +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:48 +#: frappe/custom/doctype/customize_form/customize_form.js:108 +#: frappe/custom/doctype/customize_form/customize_form.js:116 +#: frappe/custom/doctype/customize_form/customize_form.js:124 +#: frappe/custom/doctype/customize_form/customize_form.js:132 +#: frappe/custom/doctype/customize_form/customize_form.js:140 +#: frappe/custom/doctype/customize_form/customize_form.js:148 +#: frappe/custom/doctype/customize_form/customize_form.js:283 +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/public/js/frappe/ui/page.html:57 +#: frappe/public/js/frappe/views/reports/query_report.js: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:850 +msgid "Actions" +msgstr "" + +#. Label of the activate (Check) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json +msgid "Activate" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' +#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/recorder/recorder_list.js:207 +#: frappe/core/doctype/user/user_list.js:12 +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/workflow/doctype/workflow/workflow_list.js:5 +msgid "Active" +msgstr "" + +#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Active Directory" +msgstr "" + +#. Label of the active_domains_sb (Section Break) field in DocType 'Domain +#. Settings' +#. Label of the active_domains (Table) field in DocType 'Domain Settings' +#: frappe/core/doctype/domain_settings/domain_settings.json +msgid "Active Domains" +msgstr "" + +#. Label of the active_sessions (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/www/third_party_apps.html:34 +msgid "Active Sessions" +msgstr "" + +#. Group in User's connections +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/form/dashboard.js:22 +#: frappe/public/js/frappe/form/footer/form_timeline.js:60 +msgid "Activity" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/workspace/build/build.json +#: frappe/core/workspace/users/users.json +msgid "Activity Log" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:482 +#: frappe/email/doctype/email_group/email_group.js:60 +#: frappe/public/js/frappe/form/grid_row.js:502 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:101 +#: frappe/public/js/frappe/form/templates/set_sharing.html:68 +#: frappe/public/js/frappe/list/bulk_operations.js:437 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:441 +#: frappe/public/js/frappe/views/reports/query_report.js:266 +#: frappe/public/js/frappe/views/reports/query_report.js:294 +#: frappe/public/js/frappe/widgets/widget_dialog.js:30 +msgid "Add" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:455 +msgid "Add / Remove Columns" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:4 +msgid "Add / Update" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:442 +msgid "Add A New Rule" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:601 +#: frappe/public/js/frappe/views/interaction.js:159 +msgid "Add Attachment" +msgstr "" + +#. Label of the add_background_image (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Add Background Image" +msgstr "" + +#. Label of the add_border_at_bottom (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Add Border at Bottom" +msgstr "" + +#. Label of the add_border_at_top (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Add Border at Top" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.js:37 +msgid "Add Card to Dashboard" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:210 +msgid "Add Chart to Dashboard" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:301 +msgid "Add Child" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_board.html:4 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 +#: frappe/public/js/print_format_builder/Field.vue:112 +msgid "Add Column" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:127 +msgid "Add Contact" +msgstr "" + +#: frappe/desk/doctype/event/event.js:38 +msgid "Add Contacts" +msgstr "" + +#. Label of the add_container (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Add Container" +msgstr "" + +#. Label of the set_meta_tags (Button) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Add Custom Tags" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:188 +#: frappe/public/js/frappe/widgets/widget_dialog.js:716 +msgid "Add Filters" +msgstr "" + +#. Label of the add_shade (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Add Gray Background" +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:230 +#: frappe/public/js/frappe/ui/group_by/group_by.js:430 +msgid "Add Group" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.js:30 +msgid "Add Indexes" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Add Multiple" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:445 +msgid "Add New Permission Rule" +msgstr "" + +#: frappe/desk/doctype/event/event.js:35 frappe/desk/doctype/event/event.js:42 +msgid "Add Participants" +msgstr "" + +#. Label of the add_query_parameters (Check) field in DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Add Query Parameters" +msgstr "" + +#: frappe/core/doctype/user/user.py:819 +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:133 +msgid "Add Signature" +msgstr "" + +#. Label of the add_bottom_padding (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Add Space at Bottom" +msgstr "" + +#. Label of the add_top_padding (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Add Space at Top" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.js:38 +#: frappe/email/doctype/email_group/email_group.js:59 +msgid "Add Subscribers" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:425 +msgid "Add Tags" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2151 +msgctxt "Button in list view actions menu" +msgid "Add Tags" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:433 +msgid "Add Template" +msgstr "" + +#. Label of the add_total_row (Check) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Add Total Row" +msgstr "" + +#. Label of the add_translate_data (Check) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Add Translate Data" +msgstr "" + +#. Label of the add_unsubscribe_link (Check) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Add Unsubscribe Link" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:6 +msgid "Add User Permissions" +msgstr "" + +#. Label of the add_video_conferencing (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Add Video Conferencing" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:299 +msgid "Add a Filter" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:9 +msgid "Add a New Role" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:211 +msgid "Add a Row" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:30 +#: frappe/templates/includes/comments/comments.html:47 +msgid "Add a comment" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:28 +#: frappe/public/js/form_builder/components/Tabs.vue:192 +msgid "Add a new section" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:193 +msgid "Add a row above the current row" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:205 +msgid "Add a row at the bottom" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:201 +msgid "Add a row at the top" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:197 +msgid "Add a row below the current row" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:286 +msgid "Add a {0} Chart" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:271 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:115 +msgid "Add column" +msgstr "" + +#: frappe/public/js/form_builder/components/AddFieldButton.vue:9 +#: frappe/public/js/form_builder/components/AddFieldButton.vue:48 +msgid "Add field" +msgstr "" + +#: frappe/public/js/form_builder/components/Sidebar.vue:49 +#: frappe/public/js/form_builder/components/Tabs.vue:153 +msgid "Add new tab" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:125 +msgid "Add page break" +msgstr "" + +#: frappe/custom/doctype/client_script/client_script.js:18 +msgid "Add script for Child Table" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:111 +msgid "Add section above" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:265 +msgid "Add section below" +msgstr "" + +#: frappe/public/js/form_builder/components/Sidebar.vue:52 +#: frappe/public/js/form_builder/components/Tabs.vue:157 +msgid "Add tab" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:263 +#: frappe/public/js/frappe/views/reports/query_report.js:252 +msgid "Add to Dashboard" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:99 +msgid "Add to ToDo" +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:32 +msgid "Add to table" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:99 +msgid "Add to this activity by mailing to {0}" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_column.html:20 +msgid "Add {0}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:289 +msgctxt "Primary action in list view" +msgid "Add {0}" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Added" +msgstr "" + +#. Description of the '<head> HTML' (Code) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Added HTML in the <head> section of the web page, primarily used for website verification and SEO" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:81 +msgid "Added default log doctypes: {}" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:180 +#: frappe/public/js/frappe/form/link_selector.js:202 +msgid "Added {0} ({1})" +msgstr "" + +#. Label of the additional_permissions (Section Break) field in DocType 'Custom +#. DocPerm' +#. Label of the additional_permissions (Section Break) field in DocType +#. 'DocPerm' +#. Label of the additional_permissions_section (Section Break) field in DocType +#. 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "Additional Permissions" +msgstr "" + +#. Name of a DocType +#. Label of the address (Link) field in DocType 'Contact' +#. Label of the address (Section Break) field in DocType 'Contact Us Settings' +#. Label of the address (Small Text) field in DocType 'Website Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Address" +msgstr "" + +#. Label of the address_line1 (Data) field in DocType 'Address' +#. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Address Line 1" +msgstr "" + +#. Label of the address_line2 (Data) field in DocType 'Address' +#. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/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 "" + +#. Name of a DocType +#: frappe/contacts/doctype/address_template/address_template.json +msgid "Address Template" +msgstr "" + +#. Label of the address_title (Data) field in DocType 'Address' +#. Label of the address_title (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Address Title" +msgstr "" + +#: frappe/contacts/doctype/address/address.py:72 +msgid "Address Title is mandatory." +msgstr "" + +#. Label of the address_type (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Address Type" +msgstr "" + +#. Description of the 'Address' (Small Text) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Address and other legal information you may want to put in the footer." +msgstr "" + +#: frappe/contacts/doctype/address/address.py:206 +msgid "Addresses" +msgstr "" + +#. Name of a report +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.json +msgid "Addresses And Contacts" +msgstr "" + +#. Description of a DocType +#: frappe/custom/doctype/client_script/client_script.json +msgid "Adds a custom client script to a DocType" +msgstr "" + +#. Description of a DocType +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Adds a custom field to a DocType" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 +msgid "Administration" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/salutation/salutation.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/domain/domain.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/patch_log/patch_log.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/version/version.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Administrator" +msgstr "" + +#: frappe/core/doctype/user/user.py:1226 +msgid "Administrator Logged In" +msgstr "" + +#: frappe/core/doctype/user/user.py:1220 +msgid "Administrator accessed {0} on {1} via IP Address {2}." +msgstr "" + +#: frappe/desk/form/document_follow.py:52 +msgid "Administrator can't follow" +msgstr "" + +#. Label of the advanced (Section Break) field in DocType 'DocType' +#. Label of the advanced_tab (Tab Break) field in DocType 'System Settings' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Advanced" +msgstr "" + +#. Label of the advanced_control_section (Section Break) field in DocType 'User +#. Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "Advanced Control" +msgstr "" + +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 +msgid "Advanced Search" +msgstr "" + +#. Label of the sb_advanced (Section Break) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Advanced Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:64 +#: frappe/public/js/frappe/ui/filters/filter.js:70 +msgid "After" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Cancel" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Delete" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Discard" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Insert" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Rename" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Save" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Save (Submitted Document)" +msgstr "" + +#. Label of the section_break_5 (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "After Submission" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "After Submit" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:63 +msgid "Aggregate Field is required to create a number card" +msgstr "" + +#. Label of the aggregate_function_based_on (Select) field in DocType +#. 'Dashboard Chart' +#. Label of the aggregate_function_based_on (Select) field in DocType 'Number +#. Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Aggregate Function Based On" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:410 +msgid "Aggregate Function field is required to create a dashboard chart" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Alert" +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Alerts and Notifications" +msgstr "" + +#: frappe/database/query.py:1610 +msgid "Alias cannot be a SQL keyword: {0}" +msgstr "" + +#: frappe/database/query.py:1535 +msgid "Alias must be a string" +msgstr "" + +#. Label of the align (Select) field in DocType 'Letter Head' +#. Label of the footer_align (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Align" +msgstr "" + +#. Label of the align_labels_right (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Align Labels to the Right" +msgstr "" + +#. Label of the right (Check) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "Align Right" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:479 +msgid "Align Value" +msgstr "" + +#. Name of a role +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/gender/gender.json +#: frappe/contacts/doctype/salutation/salutation.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/file/file.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/tag_link/tag_link.json +#: frappe/desk/doctype/todo/todo.json frappe/geo/doctype/country/country.json +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "All" +msgstr "" + +#. Label of the all_day (Check) field in DocType 'Calendar View' +#. Label of the all_day (Check) field in DocType 'Event' +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json +#: frappe/public/js/frappe/ui/notifications/notifications.js:408 +msgid "All Day" +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.py:43 +msgid "All Images attached to Website Slideshow should be public" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:29 +msgid "All Records" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:2224 +msgid "All Submissions" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:452 +msgid "All customizations will be removed. Please confirm." +msgstr "" + +#: frappe/templates/includes/comments/comments.html:158 +msgid "All fields are necessary to submit the comment." +msgstr "" + +#. Description of the 'Document States' (Table) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "All possible Workflow States and roles of the workflow. Docstatus Options: 0 is \"Saved\", 1 is \"Submitted\" and 2 is \"Cancelled\"" +msgstr "" + +#: frappe/utils/password_strength.py:183 +msgid "All-uppercase is almost as easy to guess as all-lowercase." +msgstr "" + +#. Label of the allocated_to (Link) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +msgid "Allocated To" +msgstr "" + +#. Label of the allow (Link) field in DocType 'User Permission' +#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key' +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/templates/includes/oauth_confirmation.html:16 +msgid "Allow" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.py:160 +msgid "Allow API Indexing Access" +msgstr "" + +#. Label of the allow_auto_repeat (Check) field in DocType 'DocType' +#. Label of the allow_auto_repeat (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Allow Auto Repeat" +msgstr "" + +#. Label of the allow_bulk_edit (Check) field in DocType 'DocField' +#. Label of the allow_bulk_edit (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Allow Bulk Edit" +msgstr "" + +#. Label of the allow_edit (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Allow Bulk Editing" +msgstr "" + +#. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Consecutive Login Attempts" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:79 +msgid "Allow Google Calendar Access" +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:40 +msgid "Allow Google Contacts Access" +msgstr "" + +#. Label of the allow_guest (Check) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Allow Guest" +msgstr "" + +#. Label of the allow_guest_to_view (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Allow Guest to View" +msgstr "" + +#. Label of the allow_guests_to_upload_files (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Guests to Upload Files" +msgstr "" + +#. Label of the allow_import (Check) field in DocType 'DocType' +#. Label of the allow_import (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Allow Import (via Data Import Tool)" +msgstr "" + +#. Label of the allow_login_after_fail (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Login After Fail" +msgstr "" + +#. Label of the allow_login_using_mobile_number (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Login using Mobile Number" +msgstr "" + +#. Label of the allow_login_using_user_name (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Login using User Name" +msgstr "" + +#. Label of the sb_allow_modules (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allow Modules" +msgstr "" + +#. Label of the allow_older_web_view_links (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Older Web View Links (Insecure)" +msgstr "" + +#. Label of the allow_print_for_cancelled (Check) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Allow Print for Cancelled" +msgstr "" + +#. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Allow Print for Draft" +msgstr "" + +#. Label of the allow_read_on_all_link_options (Check) field in DocType 'Web +#. Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Allow Read On All Link Options" +msgstr "" + +#. Label of the allow_rename (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Allow Rename" +msgstr "" + +#. Label of the roles_permission (Section Break) field in DocType 'Role +#. Permission for Page and Report' +#. Label of the allow_roles (Table MultiSelect) field in DocType 'Module +#. Onboarding' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Allow Roles" +msgstr "" + +#. Label of the allow_self_approval (Check) field in DocType 'Workflow +#. Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Allow Self Approval" +msgstr "" + +#. Label of the enable_telemetry (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow Sending Usage Data for Improving Applications" +msgstr "" + +#. Description of the 'Allow Self Approval' (Check) field in DocType 'Workflow +#. Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Allow approval for creator of the document" +msgstr "" + +#. Label of the allow_comments (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow comments" +msgstr "" + +#. Label of the allow_delete (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow delete" +msgstr "" + +#. Label of the email_append_to (Check) field in DocType 'DocType' +#. Label of the email_append_to (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Allow document creation via Email" +msgstr "" + +#. Label of the allow_edit (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow editing after submit" +msgstr "" + +#. Description of the 'Allow Bulk Editing' (Check) field in DocType 'List View +#. Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Allow editing even if the doctype has a workflow set up.\n\n" +"Does nothing if a workflow isn't set up." +msgstr "" + +#. Label of the allow_events_in_timeline (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Allow events in timeline" +msgstr "" + +#. Label of the allow_in_quick_entry (Check) field in DocType 'DocField' +#. Label of the allow_in_quick_entry (Check) field in DocType 'Custom Field' +#. Label of the allow_in_quick_entry (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Allow in Quick Entry" +msgstr "" + +#. Label of the allow_incomplete (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow incomplete forms" +msgstr "" + +#. Label of the allow_multiple (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow multiple responses" +msgstr "" + +#. Label of the allow_on_submit (Check) field in DocType 'DocField' +#. Label of the allow_on_submit (Check) field in DocType 'Custom Field' +#. Label of the allow_on_submit (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Allow on Submit" +msgstr "" + +#. Label of the deny_multiple_sessions (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow only one session per user" +msgstr "" + +#. Label of the allow_page_break_inside_tables (Check) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Allow page break inside tables" +msgstr "" + +#. Label of the allow_print (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow print" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:431 +msgid "Allow recording my first session to improve user experience" +msgstr "" + +#. Description of the 'Allow incomplete forms' (Check) field in DocType 'Web +#. Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allow saving if mandatory fields are not filled" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:424 +msgid "Allow sending usage data for improving applications" +msgstr "" + +#. Description of the 'Login After' (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allow user to login only after this hour (0-24)" +msgstr "" + +#. Description of the 'Login Before' (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allow user to login only before this hour (0-24)" +msgstr "" + +#. Description of the 'Login with email link' (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allow users to log in without a password, using a login link sent to their email" +msgstr "" + +#. Label of the allowed (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Allowed" +msgstr "" + +#. Label of the allowed_file_extensions (Small Text) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Allowed File Extensions" +msgstr "" + +#. Label of the allowed_in_mentions (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Allowed In Mentions" +msgstr "" + +#. Label of the allowed_modules_section (Section Break) field in DocType 'User +#. Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Allowed Modules" +msgstr "" + +#. Label of the allowed_public_client_origins (Small Text) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allowed Public Client Origins" +msgstr "" + +#. Label of the allowed_roles (Table MultiSelect) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Allowed Roles" +msgstr "" + +#. Label of the allowed_embedding_domains (Small Text) field in DocType 'Web +#. Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Allowed embedding domains" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1256 +msgid "Allowing DocType, DocType. Be careful!" +msgstr "" + +#. Description of the 'Show Auth Server Metadata' (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-authorization-server endpoint. Reference: RFC8414" +msgstr "" + +#. Description of the 'Show Protected Resource Metadata' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to fetch metadata from the /.well-known/oauth-protected-resource endpoint. Reference: RFC9728" +msgstr "" + +#. Description of the 'Enable Dynamic Client Registration' (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows clients to register themselves without manual intervention. Registration creates a OAuth Client entry. Reference: RFC7591" +msgstr "" + +#. Description of the 'Show in Resource Metadata' (Check) field in DocType +#. 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Allows clients to view this as an Authorization Server when querying the /.well-known/oauth-protected-resource end point." +msgstr "" + +#. Description of the 'Show Social Login Key as Authorization Server' (Check) +#. field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows enabled Social Login Key Base URL to be shown as authorization server." +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Allows skipping authorization if a user has active tokens." +msgstr "" + +#: frappe/core/doctype/user/user.py:1034 +msgid "Already Registered" +msgstr "" + +#: frappe/desk/form/assign_to.py:137 +msgid "Already in the following Users ToDo list:{0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:907 +msgid "Also adding the dependent currency field {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:920 +msgid "Also adding the status dependency field {0}" +msgstr "" + +#. Label of the login_id (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Alternative Email ID" +msgstr "" + +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + +#. Label of the always_bcc (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Always BCC Address" +msgstr "" + +#. Label of the add_draft_heading (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Always add \"Draft\" Heading for printing draft documents" +msgstr "" + +#. Label of the always_use_account_email_id_as_sender (Check) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Always use this email address as sender address" +msgstr "" + +#. Label of the always_use_account_name_as_sender_name (Check) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Always use this name as sender name" +msgstr "" + +#. Label of the amend (Check) field in DocType 'Custom DocPerm' +#. Label of the amend (Check) field in DocType 'DocPerm' +#. Label of the amend (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "Amend" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming +#. Settings' +#. Option for the 'Default Amendment Naming' (Select) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Amend Counter" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +msgid "Amended Document Naming Settings" +msgstr "" + +#. Label of the amended_documents_section (Section Break) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Amended Documents" +msgstr "" + +#. Label of the amended_from (Link) field in DocType 'Personal Data Download +#. Request' +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +msgid "Amended From" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:12 +msgctxt "Freeze message while amending a document" +msgid "Amending" +msgstr "" + +#. Label of the amend_naming_override (Table) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Amendment Naming Override" +msgstr "" + +#: frappe/model/document.py:551 +msgid "Amendment Not Allowed" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:207 +msgid "Amendment naming rules updated." +msgstr "" + +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 +msgid "An error occurred while setting Session Defaults" +msgstr "" + +#. Description of the 'FavIcon' (Attach) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]" +msgstr "" + +#: frappe/templates/includes/oauth_confirmation.html:38 +msgid "An unexpected error occurred while authorizing {}." +msgstr "" + +#. Label of the analytics_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Analytics" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:35 +msgid "Ancestors Of" +msgstr "" + +#. Label of the announcement_widget (Text Editor) field in DocType 'Navbar +#. Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Announcement Widget" +msgstr "" + +#. Label of the announcements_section (Section Break) field in DocType 'Navbar +#. Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Announcements" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Annual" +msgstr "" + +#. Label of the anonymization_matrix (Code) field in DocType 'Personal Data +#. Deletion Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Anonymization Matrix" +msgstr "" + +#. Label of the anonymous (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Anonymous responses" +msgstr "" + +#: frappe/public/js/frappe/request.js:189 +msgid "Another transaction is blocking this one. Please try again in a few seconds." +msgstr "" + +#: frappe/model/rename_doc.py:379 +msgid "Another {0} with name {1} exists, select another name" +msgstr "" + +#. Description of the 'Raw Commands' (Code) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Any string-based printer languages can be used. Writing raw commands requires knowledge of the printer's native language provided by the printer manufacturer. Please refer to the developer manual provided by the printer manufacturer on how to write their native commands. These commands are rendered on the server side using the Jinja Templating Language." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:36 +msgid "Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type." +msgstr "" + +#. Label of the app_tab (Tab Break) field in DocType 'System Settings' +#. Label of the app_section (Section Break) field in DocType 'User' +#. Label of the app (Data) field in DocType 'Desktop Icon' +#. Label of the app (Data) field in DocType 'Workspace' +#. Label of the app (Data) field in DocType 'Website Theme Ignore App' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json +msgid "App" +msgstr "" + +#. Label of the app_id (Data) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "App ID" +msgstr "" + +#. Label of the app_logo (Attach Image) field in DocType 'Website Settings' +#: frappe/public/js/frappe/ui/toolbar/navbar.html:8 +#: frappe/website/doctype/website_settings/website_settings.json +msgid "App Logo" +msgstr "" + +#. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' +#. Label of the app_name (Data) field in DocType 'Changelog Feed' +#. Label of the app_name (Data) field in DocType 'Website Settings' +#: frappe/core/doctype/installed_applications/installed_applications.js:27 +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "App Name" +msgstr "" + +#. Label of the app_name (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "App Name (Client Name)" +msgstr "" + +#: frappe/modules/utils.py:280 +msgid "App not found for module: {0}" +msgstr "" + +#: frappe/__init__.py:1113 +msgid "App {0} is not installed" +msgstr "" + +#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email +#. Account' +#. Label of the append_emails_to_sent_folder (Check) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Append Emails to Sent Folder" +msgstr "" + +#. Label of the append_to (Link) field in DocType 'Email Account' +#. Label of the append_to (Link) field in DocType 'IMAP Folder' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "Append To" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:202 +msgid "Append To can be one of {0}" +msgstr "" + +#. Description of the 'Append To' (Link) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Append as communication against this DocType (must have fields: \"Sender\" and \"Subject\"). These fields can be defined in the email settings section of the appended doctype." +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:105 +msgid "Applicable Document Types" +msgstr "" + +#. Label of the applicable_for (Link) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "Applicable For" +msgstr "" + +#. Label of the app_logo (Attach Image) field in DocType 'Navbar Settings' +#. Label of the logo_section (Section Break) field in DocType 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Application Logo" +msgstr "" + +#. Label of the app_name (Data) field in DocType 'Installed Application' +#. Label of the app_name (Data) field in DocType 'System Settings' +#: frappe/core/doctype/installed_application/installed_application.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Application Name" +msgstr "" + +#. Label of the app_version (Data) field in DocType 'Installed Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Application Version" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "" + +#. Label of the doctype_or_field (Select) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Applied On" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:103 +msgid "Apply" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2136 +msgctxt "Button in list view actions menu" +msgid "Apply Assignment Rule" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:318 +msgid "Apply Filters" +msgstr "" + +#. Label of the apply_strict_user_permissions (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Apply Strict User Permissions" +msgstr "" + +#. Label of the view (Select) field in DocType 'Client Script' +#: frappe/custom/doctype/client_script/client_script.json +msgid "Apply To" +msgstr "" + +#. Label of the apply_to_all_doctypes (Check) field in DocType 'User +#. Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "Apply To All Document Types" +msgstr "" + +#. Label of the apply_user_permission_on (Link) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Apply User Permission On" +msgstr "" + +#. Label of the apply_document_permissions (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Apply document permissions" +msgstr "" + +#. Description of the 'If user is the owner' (Check) field in DocType 'Custom +#. DocPerm' +#. Description of the 'If user is the owner' (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +msgid "Apply this rule if the User is the Owner" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:75 +msgid "Apply to all Documents Types" +msgstr "" + +#: frappe/model/workflow.py:322 +msgid "Applying: {0}" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:115 +msgid "Approval Required" +msgstr "" + +#. Label of a standard navbar item +#. Type: Route +#: frappe/hooks.py frappe/templates/includes/navbar/navbar_login.html:18 +#: frappe/website/js/website.js:619 frappe/www/me.html:80 +msgid "Apps" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:41 +msgctxt "Number system" +msgid "Ar" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_column.html:14 +msgid "Archive" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Archived" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:494 +msgid "Archived Columns" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2115 +msgid "Are you sure you want to clear the assignments?" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:294 +msgid "Are you sure you want to delete all rows?" +msgstr "" + +#: frappe/public/js/frappe/form/controls/attach.js:38 +#: frappe/public/js/frappe/form/sidebar/attachments.js:135 +msgid "Are you sure you want to delete the attachment?" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:197 +msgctxt "Confirmation dialog message" +msgid "Are you sure you want to delete the column? All the fields in the column will be moved to the previous column." +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:126 +msgctxt "Confirmation dialog message" +msgid "Are you sure you want to delete the section? All the columns along with fields in the section will be moved to the previous section." +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:65 +msgctxt "Confirmation dialog message" +msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:191 +msgid "Are you sure you want to discard the changes?" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:977 +msgid "Are you sure you want to generate a new report?" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:120 +msgid "Are you sure you want to merge {0} with {1}?" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 +msgid "Are you sure you want to proceed?" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:25 +msgid "Are you sure you want to re-enable scheduler?" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:163 +msgid "Are you sure you want to relink this communication to {0}?" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:10 +msgid "Are you sure you want to remove all failed jobs?" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:116 +msgid "Are you sure you want to remove the {0} filter?" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:268 +msgid "Are you sure you want to reset all customizations?" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:125 +msgid "Are you sure you want to save this document?" +msgstr "" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:16 +#: frappe/core/doctype/user_permission/user_permission_list.js:165 +msgid "Are you sure?" +msgstr "" + +#. Label of the arguments (Code) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Arguments" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Arial" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:11 +msgid "As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User." +msgstr "" + +#: frappe/desk/form/assign_to.py:107 +msgid "As document sharing is disabled, please give them the required permissions before assigning." +msgstr "" + +#: frappe/templates/emails/account_deletion_notification.html:3 +msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" +msgstr "" + +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + +#. Label of the assign_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Assign Condition" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:183 +msgid "Assign To" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2097 +msgctxt "Button in list view actions menu" +msgid "Assign To" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:193 +msgid "Assign To User Group" +msgstr "" + +#. Label of the assign_to_users_section (Section Break) field in DocType +#. 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Assign To Users" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:260 +msgid "Assign a user" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:52 +msgid "Assign one by one, in sequence" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:174 +msgid "Assign to me" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:53 +msgid "Assign to the one who has the least assignments" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.js:54 +msgid "Assign to the user set in this field" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Assigned" +msgstr "" + +#. Label of the assigned_by (Link) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:41 +msgid "Assigned By" +msgstr "" + +#. Label of the assigned_by_full_name (Read Only) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +msgid "Assigned By Full Name" +msgstr "" + +#: frappe/model/meta.py:62 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:49 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:71 +#: frappe/public/js/frappe/model/meta.js:210 +#: frappe/public/js/frappe/model/model.js:136 +#: frappe/public/js/frappe/views/interaction.js:82 +msgid "Assigned To" +msgstr "" + +#: frappe/desk/report/todo/todo.py:40 +msgid "Assigned To/Owner" +msgstr "" + +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:269 +msgid "Assigning..." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Assignment" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Assignment Completed" +msgstr "" + +#. Label of the sb (Section Break) field in DocType 'Assignment Rule' +#. Label of the assignment_days (Table) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Assignment Days" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Tools Workspace +#. Label of a shortcut in the Tools Workspace +#. Label of the assignment_rule (Link) field in DocType 'ToDo' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/todo/todo.json +msgid "Assignment Rule" +msgstr "" + +#. Name of a DocType +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +msgid "Assignment Rule Day" +msgstr "" + +#. Name of a DocType +#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +msgid "Assignment Rule User" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55 +msgid "Assignment Rule is not allowed on document type {0}" +msgstr "" + +#. Label of the assignment_rules_section (Section Break) field in DocType +#. 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Assignment Rules" +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.py:153 +msgid "Assignment Update on {0}" +msgstr "" + +#: frappe/desk/form/assign_to.py:78 +msgid "Assignment for {0} {1}" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:62 +msgid "Assignment of {0} removed by {1}" +msgstr "" + +#. Label of the enable_email_assignment (Check) field in DocType 'Notification +#. Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:255 +msgid "Assignments" +msgstr "" + +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:697 +msgid "At least one column is required to show in the grid." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:73 +msgid "At least one field is required in Web Form Fields Table" +msgstr "" + +#: frappe/core/doctype/data_export/data_export.js:44 +msgid "At least one field of Parent Document Type is mandatory" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/public/js/form_builder/components/controls/AttachControl.vue:15 +#: frappe/public/js/frappe/form/controls/attach.js:5 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Attach" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:155 +msgid "Attach Document Print" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Attach Image" +msgstr "" + +#. Label of the attach_package (Attach) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json +msgid "Attach Package" +msgstr "" + +#. Label of the attach_print (Check) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Attach Print" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/WebLink.vue:10 +msgid "Attach a web link" +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:8 +msgid "Attach files / urls and add in table." +msgstr "" + +#. Label of the attached_file (Code) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Attached File" +msgstr "" + +#. Label of the attached_to_doctype (Link) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Attached To DocType" +msgstr "" + +#. Label of the attached_to_field (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Attached To Field" +msgstr "" + +#. Label of the attached_to_name (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Attached To Name" +msgstr "" + +#: frappe/core/doctype/file/file.py:152 +msgid "Attached To Name must be a string or an integer" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Attachment" +msgstr "" + +#. Label of the attachment_limit (Int) field in DocType 'Email Account' +#. Label of the attachment_limit (Int) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Attachment Limit (MB)" +msgstr "" + +#: frappe/core/doctype/file/file.py:338 +#: frappe/public/js/frappe/form/sidebar/attachments.js:36 +msgid "Attachment Limit Reached" +msgstr "" + +#. Label of the attachment_link (HTML) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Attachment Link" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Attachment Removed" +msgstr "" + +#. Label of the attachments (Code) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/public/js/frappe/form/templates/form_sidebar.html:63 +#: frappe/website/doctype/web_form/templates/web_form.html:113 +msgid "Attachments" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:119 +msgid "Attempting Connection to QZ Tray..." +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:135 +msgid "Attempting to launch QZ Tray..." +msgstr "" + +#: frappe/www/attribution.html:9 +msgid "Attribution" +msgstr "" + +#. Name of a report +#: frappe/custom/report/audit_system_hooks/audit_system_hooks.json +msgid "Audit System Hooks" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/audit_trail/audit_trail.json +msgid "Audit Trail" +msgstr "" + +#. Label of the auth_url_data (Code) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Auth URL Data" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "" + +#. Label of the backend_app_flow (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Authenticate as Service Principal" +msgstr "" + +#. Label of the authentication_column (Section Break) field in DocType 'Email +#. Account' +#. Label of the authentication_credential_section (Section Break) field in +#. DocType 'Push Notification Settings' +#. Label of a Card Break in the Integrations Workspace +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Authentication" +msgstr "" + +#: frappe/www/qrcode.html:19 +msgid "Authentication Apps you can use are:" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:339 +msgid "Authentication failed while receiving emails from Email Account: {0}." +msgstr "" + +#. Label of the author (Data) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Author" +msgstr "" + +#. Label of the authorization_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Authorization" +msgstr "" + +#. Label of the authorization_code (Password) field in DocType 'Google +#. Calendar' +#. Label of the authorization_code (Password) field in DocType 'Google +#. Contacts' +#. Label of the authorization_code (Data) field in DocType 'OAuth Authorization +#. Code' +#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Authorization Code" +msgstr "" + +#. Label of the authorization_uri (Small Text) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Authorization URI" +msgstr "" + +#: frappe/templates/includes/oauth_confirmation.html:35 +msgid "Authorization error for {}." +msgstr "" + +#. Label of the authorize_api_access (Button) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Authorize API Access" +msgstr "" + +#. Label of the authorize_api_indexing_access (Button) field in DocType +#. 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Authorize API Indexing Access" +msgstr "" + +#. Label of the authorize_google_calendar_access (Button) field in DocType +#. 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Authorize Google Calendar Access" +msgstr "" + +#. Label of the authorize_google_contacts_access (Button) field in DocType +#. 'Google Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Authorize Google Contacts Access" +msgstr "" + +#. Label of the authorize_url (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Authorize URL" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Authorized" +msgstr "" + +#: frappe/www/attribution.html:20 +msgid "Authors" +msgstr "" + +#: frappe/www/attribution.html:37 +msgid "Authors / Maintainers" +msgstr "" + +#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth +#. Provider Settings' +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +msgid "Auto" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Auto Email Report" +msgstr "" + +#. Label of the autoname (Data) field in DocType 'DocType' +#. Label of the autoname (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Auto Name" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Tools Workspace +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/workspace/tools/tools.json +#: frappe/public/js/frappe/utils/common.js:442 +msgid "Auto Repeat" +msgstr "" + +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +msgid "Auto Repeat Day" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 +msgid "Auto Repeat Day{0} {1} has been repeated." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 +msgid "Auto Repeat Document Creation Failed" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:117 +msgid "Auto Repeat Schedule" +msgstr "" + +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + +#: frappe/public/js/frappe/utils/common.js:434 +msgid "Auto Repeat created for this document" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 +msgid "Auto Repeat failed for {0}" +msgstr "" + +#. Label of the auto_reply (Section Break) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Auto Reply" +msgstr "" + +#. Label of the auto_reply_message (Text Editor) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Auto Reply Message" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:177 +msgid "Auto assignment failed: {0}" +msgstr "" + +#. Label of the follow_assigned_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Auto follow documents that are assigned to you" +msgstr "" + +#. Label of the follow_shared_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Auto follow documents that are shared with you" +msgstr "" + +#. Label of the follow_liked_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Auto follow documents that you Like" +msgstr "" + +#. Label of the follow_commented_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Auto follow documents that you comment on" +msgstr "" + +#. Label of the follow_created_documents (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Auto follow documents that you create" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Autocomplete" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Autoincrement" +msgstr "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Automate processes and extend standard functionality using scripts and background jobs" +msgstr "" + +#. Option for the 'Communication Type' (Select) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Automated Message" +msgstr "" + +#. Option for the 'Desk Theme' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/ui/theme_switcher.js:69 +msgid "Automatic" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:772 +msgid "Automatic Linking can be activated only for one Email Account." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:766 +msgid "Automatic Linking can be activated only if Incoming is enabled." +msgstr "" + +#. Description of a DocType +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Automatically Assign Documents to Users" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:131 +msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." +msgstr "" + +#. Label of the auto_account_deletion (Int) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Automatically delete account within (hours)" +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Automation" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/form/controls/password.js:88 +#: frappe/public/js/frappe/ui/group_by/group_by.js:21 +msgid "Average" +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:345 +msgid "Average of {0}" +msgstr "" + +#: frappe/utils/password_strength.py:130 +msgid "Avoid dates and years that are associated with you." +msgstr "" + +#: frappe/utils/password_strength.py:124 +msgid "Avoid recent years." +msgstr "" + +#: frappe/utils/password_strength.py:117 +msgid "Avoid sequences like abc or 6543 as they are easy to guess" +msgstr "" + +#: frappe/utils/password_strength.py:124 +msgid "Avoid years that are associated with you." +msgstr "" + +#. Label of the awaiting_password (Check) field in DocType 'User Email' +#: frappe/core/doctype/user_email/user_email.json +msgid "Awaiting Password" +msgstr "" + +#. Label of the awaiting_password (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Awaiting password" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:195 +msgid "Awesome Work" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:353 +msgid "Awesome, now try making an entry yourself" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:9 +msgctxt "Number system" +msgid "B" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B0" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B1" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B10" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B2" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B3" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B4" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B5" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B6" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B7" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B8" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "B9" +msgstr "" + +#. Label of the bcc (Code) field in DocType 'Communication' +#. Label of the bcc (Code) field in DocType 'Notification Recipient' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "BCC" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:87 +msgctxt "Email Recipients" +msgid "BCC" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:31 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:181 +msgid "Back" +msgstr "" + +#: frappe/templates/pages/integrations/gcalendar-success.html:13 +msgid "Back to Desk" +msgstr "" + +#: frappe/www/404.html:26 +msgid "Back to Home" +msgstr "" + +#: frappe/www/login.html:201 frappe/www/login.html:232 +msgid "Back to Login" +msgstr "" + +#. Label of the background_color (Color) field in DocType 'Number Card' +#. Label of the background_color (Color) field in DocType 'Social Link +#. Settings' +#. Label of the background_color (Link) field in DocType 'Website Theme' +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Background Color" +msgstr "" + +#. Label of the background_image (Attach Image) field in DocType 'Web Page +#. Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Background Image" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Label of the background_jobs_section (Section Break) field in DocType +#. 'System Health Report' +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:183 +msgid "Background Jobs" +msgstr "" + +#. Label of the background_jobs_check (Data) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Background Jobs Check" +msgstr "" + +#. Label of the background_jobs_queue (Autocomplete) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Background Jobs Queue" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:87 +msgid "Background Print (required for >25 documents)" +msgstr "" + +#. Label of the background_workers (Section Break) field in DocType 'System +#. Settings' +#. Label of the background_workers (Table) field in DocType 'System Health +#. Report' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Background Workers" +msgstr "" + +#: frappe/desk/page/backups/backups.js:28 +msgid "Backup Encryption Key" +msgstr "" + +#: frappe/desk/page/backups/backups.py:98 +msgid "Backup job is already queued. You will receive an email with the download link" +msgstr "" + +#. Label of the backups_tab (Tab Break) field in DocType 'System Settings' +#. Label of the backups_section (Section Break) field in DocType 'System Health +#. Report' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Backups" +msgstr "" + +#. Label of the backups_size (Float) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Backups (MB)" +msgstr "" + +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:68 +msgid "Bad Cron Expression" +msgstr "" + +#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Banker's Rounding" +msgstr "" + +#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Banker's Rounding (legacy)" +msgstr "" + +#. Label of the banner (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Banner" +msgstr "" + +#. Label of the banner_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Banner HTML" +msgstr "" + +#. Label of the banner_image (Attach Image) field in DocType 'User' +#. Label of the banner_image (Attach Image) field in DocType 'Web Form' +#: frappe/core/doctype/user/user.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Banner Image" +msgstr "" + +#. Description of the 'Banner HTML' (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Banner is above the Top Menu Bar." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Bar" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Barcode" +msgstr "" + +#. Label of the base_dn (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Base Distinguished Name (DN)" +msgstr "" + +#. Label of the base_url (Data) field in DocType 'Geolocation Settings' +#. Label of the base_url (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Base URL" +msgstr "" + +#. Label of the based_on (Link) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 +msgid "Based On" +msgstr "" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Based on Field" +msgstr "" + +#. Label of the user (Link) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Based on Permissions For User" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Basic" +msgstr "" + +#. Label of the section_break_3 (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Basic Info" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:63 +#: frappe/public/js/frappe/ui/filters/filter.js:69 +msgid "Before" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Cancel" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Delete" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Discard" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Insert" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Print" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Rename" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Save" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Save (Submitted Document)" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Submit" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Before Validate" +msgstr "" + +#. Option for the 'Level' (Select) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Beginner" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:29 +msgid "Beginning with" +msgstr "" + +#. Label of the beta (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Beta" +msgstr "" + +#: frappe/utils/password_strength.py:73 +msgid "Better add a few more letters or another word" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:27 +msgid "Between" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Billing" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:27 +msgid "Billing Contact" +msgstr "" + +#. Label of the binary_logging (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Binary Logging" +msgstr "" + +#. Label of the bio (Small Text) field in DocType 'User' +#. Label of the bio (Small Text) field in DocType 'About Us Team Member' +#: frappe/core/doctype/user/user.json +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +msgid "Bio" +msgstr "" + +#. Label of the birth_date (Date) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Birth Date" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:41 +msgid "Blank Template" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/block_module/block_module.json +msgid "Block Module" +msgstr "" + +#. Label of the block_modules (Table) field in DocType 'Module Profile' +#. Label of the block_modules (Table) field in DocType 'User' +#: frappe/core/doctype/module_profile/module_profile.json +#: frappe/core/doctype/user/user.json +msgid "Block Modules" +msgstr "" + +#. Label of the blocked (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Blocked" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Blue" +msgstr "" + +#. Label of the bold (Check) field in DocType 'DocField' +#. Label of the bold (Check) field in DocType 'Custom Field' +#. Label of the bold (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Bold" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Bot" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:126 +msgid "Both DocType and Name required" +msgstr "" + +#: frappe/templates/includes/login/login.js:24 +#: frappe/templates/includes/login/login.js:96 +msgid "Both login and password required" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:154 +msgid "Bottom" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:248 +msgid "Bottom Center" +msgstr "" + +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:247 +msgid "Bottom Left" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:249 +msgid "Bottom Right" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Bounced" +msgstr "" + +#. Label of the brand (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand" +msgstr "" + +#. Label of the brand_html (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand HTML" +msgstr "" + +#. Label of the banner_image (Attach Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand Image" +msgstr "" + +#. Label of the brand_logo (Attach Image) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Brand Logo" +msgstr "" + +#. Description of the 'Brand HTML' (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Brand is what appears on the top-left of the toolbar. If it is an image, make sure it\n" +"has a transparent background and use the <img /> tag. Keep size as 200px x 30px" +msgstr "" + +#. Label of the breadcrumbs (Code) field in DocType 'Web Form' +#. Label of the breadcrumbs (Code) field in DocType 'Web Page' +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Breadcrumbs" +msgstr "" + +#. Label of the browser (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:36 +msgid "Browser" +msgstr "" + +#. Label of the browser_version (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Browser Version" +msgstr "" + +#: frappe/public/js/frappe/desk.js:19 +msgid "Browser not supported" +msgstr "" + +#. Label of the brute_force_security (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Brute Force Security" +msgstr "" + +#. Label of the bufferpool_size (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Bufferpool Size" +msgstr "" + +#. Name of a Workspace +#: frappe/core/workspace/build/build.json +msgid "Build" +msgstr "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Build your own reports, print formats, and dashboards. Create personalized workspaces for easier navigation" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow_list.js:18 +msgid "Build {0}" +msgstr "" + +#: frappe/templates/includes/footer/footer_powered.html:1 +msgid "Built on {0}" +msgstr "" + +#. Label of the bulk_actions (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Bulk Actions" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:142 +msgid "Bulk Delete" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:321 +msgid "Bulk Edit" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1190 +msgid "Bulk Edit {0}" +msgstr "" + +#: frappe/desk/reportview.py:637 +msgid "Bulk Operation Failed" +msgstr "" + +#: frappe/desk/reportview.py:641 +msgid "Bulk Operation Successful" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:131 +msgid "Bulk PDF Export" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +msgid "Bulk Update" +msgstr "" + +#: frappe/model/workflow.py:310 +msgid "Bulk approval only support up to 500 documents." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:56 +msgid "Bulk operation is enqueued in background." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:68 +msgid "Bulk operations only support up to 500 documents." +msgstr "" + +#: frappe/model/workflow.py:299 +msgid "Bulk {0} is enqueued in background." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Button" +msgstr "" + +#. Label of the button_gradients (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Button Gradients" +msgstr "" + +#. Label of the button_rounded_corners (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Button Rounded Corners" +msgstr "" + +#. Label of the button_shadows (Check) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Button Shadows" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "By \"Naming Series\" field" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:111 +#: frappe/website/doctype/web_page/web_page.js:118 +msgid "By default the title is used as meta title, adding a value here will override it." +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "By fieldname" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "By script" +msgstr "" + +#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in +#. DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Bypass Restricted IP Address Check If Two Factor Auth Enabled" +msgstr "" + +#. Label of the bypass_2fa_for_retricted_ip_users (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Bypass Two Factor Auth for users who login from restricted IP Address" +msgstr "" + +#. Label of the bypass_restrict_ip_check_if_2fa_enabled (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Bypass restricted IP Address check If Two Factor Auth Enabled" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "C5E" +msgstr "" + +#: frappe/templates/print_formats/standard_macros.html:220 +msgid "CANCELLED" +msgstr "" + +#. Label of the cc (Code) field in DocType 'Communication' +#. Label of the cc (Code) field in DocType 'Notification Recipient' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "CC" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:77 +msgctxt "Email Recipients" +msgid "CC" +msgstr "" + +#. Label of the cmd (Data) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "CMD" +msgstr "" + +#: frappe/public/js/frappe/color_picker/color_picker.js:20 +msgid "COLOR PICKER" +msgstr "" + +#. Label of the css_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Label of the css (Code) field in DocType 'Print Style' +#. Label of the css (Code) field in DocType 'Web Page' +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/website/doctype/web_page/web_page.json +msgid "CSS" +msgstr "" + +#. Label of the css_class (Small Text) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "CSS Class" +msgstr "" + +#. Description of the 'Element Selector' (Data) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "CSS selector for the element you want to highlight." +msgstr "" + +#. Option for the 'File Type' (Select) field in DocType 'Data Export' +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/core/doctype/data_export/data_export.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "CSV" +msgstr "" + +#. Label of the cache_section (Section Break) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Cache" +msgstr "" + +#: frappe/sessions.py:35 +msgid "Cache Cleared" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:181 +msgid "Calculate" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Calendar" +msgstr "" + +#. Label of the calendar_name (Data) field in DocType 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Calendar Name" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/public/js/frappe/list/base_list.js:207 +msgid "Calendar View" +msgstr "" + +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/contacts/doctype/contact/contact.js:55 +#: frappe/desk/doctype/event/event.json +msgid "Call" +msgstr "" + +#. Label of the call_to_action (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Call To Action" +msgstr "" + +#. Label of the call_to_action_url (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Call To Action URL" +msgstr "" + +#. Label of the callback_message (Small Text) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Callback Message" +msgstr "" + +#. Label of the callback_title (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Callback Title" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:150 +#: frappe/public/js/frappe/ui/capture.js:334 +msgid "Camera" +msgstr "" + +#. Label of the campaign (Data) field in DocType 'Web Page View' +#: frappe/public/js/frappe/utils/utils.js:1766 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:39 +msgid "Campaign" +msgstr "" + +#. Label of the campaign_description (Small Text) field in DocType 'UTM +#. Campaign' +#: frappe/website/doctype/utm_campaign/utm_campaign.json +msgid "Campaign Description (Optional)" +msgstr "" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:4 +#: frappe/public/js/frappe/form/templates/set_sharing.html:50 +msgid "Can Read" +msgstr "" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:7 +#: frappe/public/js/frappe/form/templates/set_sharing.html:53 +msgid "Can Share" +msgstr "" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:6 +#: frappe/public/js/frappe/form/templates/set_sharing.html:52 +msgid "Can Submit" +msgstr "" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:5 +#: frappe/public/js/frappe/form/templates/set_sharing.html:51 +msgid "Can Write" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:410 +msgid "Can not rename as column {0} is already present on DocType." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1164 +msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" +msgstr "" + +#. Description of the 'Apply User Permission On' (Link) field in DocType 'User +#. Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Can only list down the document types which has been linked to the User document type." +msgstr "" + +#: frappe/desk/form/document_follow.py:48 +msgid "Can't follow since changes are not tracked." +msgstr "" + +#: frappe/model/rename_doc.py:366 +msgid "Can't rename {0} to {1} because {0} doesn't exist." +msgstr "" + +#. Label of the cancel (Check) field in DocType 'Custom DocPerm' +#. Label of the cancel (Check) field in DocType 'DocPerm' +#. Label of the cancel (Check) field in DocType 'User Document Type' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/doctype/doctype_list.js:131 +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/reminders.js:54 +msgid "Cancel" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2206 +msgctxt "Button in list view actions menu" +msgid "Cancel" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:68 +msgctxt "Secondary button in warning dialog" +msgid "Cancel" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:979 +msgid "Cancel All" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:966 +msgid "Cancel All Documents" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2211 +msgctxt "Title of confirmation dialog" +msgid "Cancel {0} documents?" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType 'ToDo' +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +#: frappe/desk/form/save.py:64 +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/public/js/frappe/model/indicator.js:78 +#: frappe/public/js/frappe/ui/filters/filter.js:540 +msgid "Cancelled" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:52 +msgid "Cancelled Document restored as Draft" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:13 +msgctxt "Freeze message while cancelling a document" +msgid "Cancelling" +msgstr "" + +#: frappe/desk/form/linked_with.py:381 +msgid "Cancelling documents" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:91 +msgid "Cancelling {0}" +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.py:265 +msgid "Cannot Download Report due to insufficient permissions" +msgstr "" + +#: frappe/client.py:452 +msgid "Cannot Fetch Values" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.py:156 +msgid "Cannot Remove" +msgstr "" + +#: frappe/model/base_document.py:1222 +msgid "Cannot Update After Submit" +msgstr "" + +#: frappe/core/doctype/file/file.py:646 +msgid "Cannot access file path {0}" +msgstr "" + +#: frappe/public/js/workflow_builder/utils.js:183 +msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:110 +msgid "Cannot cancel before submitting. See Transition {0}" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:294 +msgid "Cannot cancel {0}." +msgstr "" + +#: frappe/model/document.py:1017 +msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" +msgstr "" + +#: frappe/model/document.py:1031 +msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" +msgstr "" + +#: frappe/public/js/workflow_builder/utils.js:170 +msgid "Cannot change state of Cancelled Document ({0} State)" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:99 +msgid "Cannot change state of Cancelled Document. Transition row {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1154 +msgid "Cannot change to/from autoincrement autoname in Customize Form" +msgstr "" + +#: frappe/core/doctype/communication/communication.py:169 +msgid "Cannot create a {0} against a child document: {1}" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:272 +msgid "Cannot create private workspace of other users" +msgstr "" + +#: frappe/core/doctype/file/file.py:165 +msgid "Cannot delete Home and Attachments folders" +msgstr "" + +#: frappe/model/delete_doc.py:419 +msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:369 +msgid "Cannot delete standard action. You can hide it if you want" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:391 +msgid "Cannot delete standard document state." +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:321 +msgid "Cannot delete standard field {0}. You can hide it instead." +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:38 +#: frappe/public/js/form_builder/components/Section.vue:117 +#: frappe/public/js/form_builder/components/Section.vue:190 +#: frappe/public/js/form_builder/components/Tabs.vue:56 +msgid "Cannot delete standard field. You can hide it if you want" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:347 +msgid "Cannot delete standard link. You can hide it if you want" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:313 +msgid "Cannot delete system generated field {0}. You can hide it instead." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:215 +msgid "Cannot delete {0}" +msgstr "" + +#: frappe/utils/nestedset.py:312 +msgid "Cannot delete {0} as it has child nodes" +msgstr "" + +#: frappe/desk/doctype/dashboard/dashboard.py:48 +msgid "Cannot edit Standard Dashboards" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:202 +msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:388 +msgid "Cannot edit Standard charts" +msgstr "" + +#: frappe/core/doctype/report/report.py:72 +msgid "Cannot edit a standard report. Please duplicate and create a new report" +msgstr "" + +#: frappe/model/document.py:1037 +msgid "Cannot edit cancelled document" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:378 +msgid "Cannot edit filters for standard charts" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 +msgid "Cannot edit filters for standard number cards" +msgstr "" + +#: frappe/client.py:166 +msgid "Cannot edit standard fields" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 +msgid "Cannot enable {0} for a non-submittable doctype" +msgstr "" + +#: frappe/core/doctype/file/file.py:264 +msgid "Cannot find file {} on disk" +msgstr "" + +#: frappe/core/doctype/file/file.py:586 +msgid "Cannot get file contents of a Folder" +msgstr "" + +#: frappe/printing/page/print/print.js:884 +msgid "Cannot have multiple printers mapped to a single print format." +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1134 +msgid "Cannot import table with more than 5000 rows." +msgstr "" + +#: frappe/model/document.py:1105 +msgid "Cannot link cancelled document: {0}" +msgstr "" + +#: frappe/model/mapper.py:175 +msgid "Cannot map because following condition fails:" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:971 +msgid "Cannot match column {0} with any field" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:176 +msgid "Cannot move row" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:932 +msgid "Cannot remove ID field" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.py:132 +msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:235 +msgid "Cannot set Notification with event {0} on Document Type {1}" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:67 +msgid "Cannot share {0} with submit permission as the doctype {1} is not submittable" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:291 +msgid "Cannot submit {0}." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.js:26 +#: frappe/public/js/frappe/list/bulk_operations.js:366 +msgid "Cannot update {0}" +msgstr "" + +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." +msgstr "" + +#: frappe/model/db_query.py:1168 +msgid "Cannot use {0} in order/group by" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:297 +msgid "Cannot {0} {1}." +msgstr "" + +#: frappe/utils/password_strength.py:181 +msgid "Capitalization doesn't help very much." +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:294 +msgid "Capture" +msgstr "" + +#. Label of the card (Link) field in DocType 'Number Card Link' +#: frappe/desk/doctype/number_card_link/number_card_link.json +msgid "Card" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Card Break" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:262 +msgid "Card Label" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:262 +msgid "Card Links" +msgstr "" + +#. Label of the cards (Table) field in DocType 'Dashboard' +#: frappe/desk/doctype/dashboard/dashboard.json +msgid "Cards" +msgstr "" + +#. Label of the category (Data) field in DocType 'Desktop Icon' +#. Label of the category (Link) field in DocType 'Help Article' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/public/js/frappe/views/interaction.js:72 +#: frappe/website/doctype/help_article/help_article.json +msgid "Category" +msgstr "" + +#. Label of the category_description (Text) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json +msgid "Category Description" +msgstr "" + +#. Label of the category_name (Data) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json +msgid "Category Name" +msgstr "" + +#. Option for the 'Align' (Select) field in DocType 'Letter Head' +#. Option for the 'Text Align' (Select) field in DocType 'Web Page' +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Center" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:16 +msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:11 +#: frappe/tests/test_translate.py:111 +msgid "Change" +msgstr "" + +#: frappe/tests/test_translate.py:112 +msgctxt "Coins" +msgid "Change" +msgstr "" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:38 +msgid "Change Image" +msgstr "" + +#. Label of the label (Data) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Change Label (via Custom Translation)" +msgstr "" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:45 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:141 +msgid "Change Letter Head" +msgstr "" + +#. Label of the change_password (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Change Password" +msgstr "" + +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:27 +msgid "Change Print Format" +msgstr "" + +#. Description of the 'Update Series Counter' (Section Break) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Change the starting / current sequence number of an existing series.
    \n\n" +"Warning: Incorrectly updating counters can prevent documents from getting created." +msgstr "" + +#. Label of the changed_at (Datetime) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Changed at" +msgstr "" + +#. Label of the changed_by (Link) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Changed by" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +msgid "Changelog Feed" +msgstr "" + +#. Label of the changed_values (HTML) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Changes" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.js:5 +msgid "Changing any setting will reflect on all the email accounts associated with this domain." +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.js:67 +msgid "Changing rounding method on site with data can result in unexpected behaviour." +msgstr "" + +#. Label of the channel (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Channel" +msgstr "" + +#. Label of the chart (Link) field in DocType 'Dashboard Chart Link' +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Chart" +msgstr "" + +#. Label of the chart_config (Code) field in DocType 'Dashboard Settings' +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +msgid "Chart Configuration" +msgstr "" + +#. Label of the chart_name (Data) field in DocType 'Dashboard Chart' +#. Label of the chart_name (Link) field in DocType 'Workspace Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/workspace_chart/workspace_chart.json +#: frappe/public/js/frappe/views/reports/query_report.js:289 +#: frappe/public/js/frappe/widgets/widget_dialog.js:137 +msgid "Chart Name" +msgstr "" + +#. Label of the chart_options (Code) field in DocType 'Dashboard' +#. Label of the chart_options_section (Section Break) field in DocType +#. 'Dashboard Chart' +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Chart Options" +msgstr "" + +#. Label of the source (Link) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Chart Source" +msgstr "" + +#. Label of the chart_type (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/views/reports/report_view.js:510 +msgid "Chart Type" +msgstr "" + +#. Label of the charts (Table) field in DocType 'Dashboard' +#. Label of the charts (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/workspace/workspace.json +msgid "Charts" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Chat" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Check" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:99 +msgid "Check Request URL" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:1 +msgid "Check columns to select, drag to set order." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 +msgid "Check the Error Log for more information: {0}" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.js:147 +msgid "Check this if you don't want users to sign up for an account on your site. Users won't get desk access unless you explicitly provide it." +msgstr "" + +#. Description of the 'User must always select' (Check) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Check this if you want to force the user to select a series before saving. There will be no default if you check this." +msgstr "" + +#. Description of the 'Show Full Number' (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Check to display the full numeric value (e.g., 1,234,567 instead of 1.2M)." +msgstr "" + +#: frappe/public/js/frappe/desk.js:235 +msgid "Checking one moment" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.js:140 +msgid "Checking this will enable tracking page views for blogs, web pages, etc." +msgstr "" + +#. Description of the 'Hide Custom DocTypes and Reports' (Check) field in +#. DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Checking this will hide custom doctypes and reports cards in Links section" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:78 +msgid "Checking this will publish the page on your website and it'll be visible to everyone." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:104 +msgid "Checking this will show a text area where you can write custom javascript that will run on this page." +msgstr "" + +#: frappe/www/list.py:85 +msgid "Child DocTypes are not allowed" +msgstr "" + +#. Label of the child_doctype (Data) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Child Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1648 +msgid "Child Table {0} for field {1}" +msgstr "" + +#. Description of the 'Is Child Table' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:53 +msgid "Child Tables are shown as a Grid in other DocTypes" +msgstr "" + +#: frappe/database/query.py:662 +msgid "Child query fields for '{0}' must be a list or tuple." +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:651 +msgid "Choose Existing Card or create New Card" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:571 +msgid "Choose a block or continue typing" +msgstr "" + +#: frappe/public/js/form_builder/components/controls/DataControl.vue:18 +#: frappe/public/js/frappe/form/controls/color.js:5 +msgid "Choose a color" +msgstr "" + +#: frappe/public/js/form_builder/components/controls/DataControl.vue:21 +#: frappe/public/js/frappe/form/controls/icon.js:5 +msgid "Choose an icon" +msgstr "" + +#. Description of the 'Two Factor Authentication method' (Select) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Choose authentication method to be used by all users" +msgstr "" + +#. Label of the city (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:39 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "City" +msgstr "" + +#. Label of the city (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "City/Town" +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:12 +#: frappe/public/js/frappe/form/controls/attach.js:16 +msgid "Clear" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:438 +msgid "Clear & Add Template" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:114 +msgid "Clear & Add template" +msgstr "" + +#: frappe/public/js/frappe/form/controls/multiselect_list.js:6 +msgid "Clear All" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2112 +msgctxt "Button in list view actions menu" +msgid "Clear Assignment" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:287 +msgid "Clear Cache and Reload" +msgstr "" + +#: frappe/core/doctype/error_log/error_log_list.js:12 +msgid "Clear Error Logs" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:299 +msgid "Clear Filters" +msgstr "" + +#. Label of the days (Int) field in DocType 'Logs To Clear' +#: frappe/core/doctype/logs_to_clear/logs_to_clear.json +msgid "Clear Logs After (days)" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:144 +msgid "Clear User Permissions" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:439 +msgid "Clear the email message and add the template" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.py:215 +msgid "Clearing end date, as it cannot be in the past for published pages." +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:194 +msgid "Click On Customize to add your first widget" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 +msgid "Click here" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 +msgid "Click on a file to select it." +msgstr "" + +#: frappe/templates/emails/login_with_email_link.html:19 +msgid "Click on the button to log in to {0}" +msgstr "" + +#: frappe/templates/emails/data_deletion_approval.html:2 +msgid "Click on the link below to approve the request" +msgstr "" + +#: frappe/templates/emails/new_user.html:7 +msgid "Click on the link below to complete your registration and set a new password" +msgstr "" + +#: frappe/templates/emails/download_data.html:3 +msgid "Click on the link below to download your data" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:4 +msgid "Click on the link below to verify your request" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:118 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:41 +#: frappe/website/doctype/website_settings/website_settings.py:161 +msgid "Click on {0} to generate Refresh Token." +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 +#: frappe/desk/doctype/number_card/number_card.js:222 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:99 +#: frappe/website/doctype/web_form/web_form.js:236 +msgid "Click table to edit" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 +#: frappe/desk/doctype/number_card/number_card.js:419 +msgid "Click to Set Dynamic Filters" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 +#: frappe/desk/doctype/number_card/number_card.js:278 +#: frappe/website/doctype/web_form/web_form.js:262 +msgid "Click to Set Filters" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:741 +msgid "Click to sort by {0}" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Clicked" +msgstr "" + +#. Label of the client (Link) field in DocType 'OAuth Authorization Code' +#. Label of the client (Link) field in DocType 'OAuth Bearer Token' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "Client" +msgstr "" + +#. Label of the client_code_section (Section Break) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Client Code" +msgstr "" + +#. Label of the sb_client_credentials_section (Section Break) field in DocType +#. 'Connected App' +#. Label of the client_credentials (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Client Credentials" +msgstr "" + +#. Label of the client_id (Data) field in DocType 'Google Settings' +#. Label of the client_id (Data) field in DocType 'OAuth Client' +#. Label of the client_id (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Client ID" +msgstr "" + +#. Label of the client_id (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Client Id" +msgstr "" + +#. Label of the client_information (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Client Information" +msgstr "" + +#. Label of the client_metadata_section (Section Break) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Metadata" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#. Label of the client_script (Code) field in DocType 'DocType Layout' +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/website/doctype/web_page/web_page.js:103 +msgid "Client Script" +msgstr "" + +#. Label of the client_secret (Password) field in DocType 'Connected App' +#. Label of the client_secret (Password) field in DocType 'Google Settings' +#. Label of the client_secret (Data) field in DocType 'OAuth Client' +#. Label of the client_secret (Password) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Client Secret" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Basic" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client Secret Post" +msgstr "" + +#. Label of the client_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Client URI" +msgstr "" + +#. Label of the client_urls (Section Break) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Client URLs" +msgstr "" + +#. Label of the client_script (Code) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Client script" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:39 +#: frappe/desk/doctype/todo/todo.js:23 +#: frappe/public/js/frappe/form/form_tour.js:17 +#: frappe/public/js/frappe/ui/messages.js:251 +#: frappe/website/js/bootstrap-4.js:24 +msgid "Close" +msgstr "" + +#. Label of the close_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Close Condition" +msgstr "" + +#: frappe/public/js/form_builder/components/FieldProperties.vue:79 +msgid "Close properties" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType 'ToDo' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +msgid "Closed" +msgstr "" + +#: frappe/templates/discussions/comment_box.html:25 +#: frappe/templates/discussions/reply_section.html:53 +#: frappe/templates/discussions/topic_modal.html:11 +msgid "Cmd+Enter to add comment" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the code (Data) field in DocType 'Country' +#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/geo/doctype/country/country.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Code" +msgstr "" + +#. Label of the code_challenge (Data) field in DocType 'OAuth Authorization +#. Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Code Challenge" +msgstr "" + +#. Label of the code_editor_type (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Code Editor Type" +msgstr "" + +#. Label of the code_challenge_method (Select) field in DocType 'OAuth +#. Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Code challenge method" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:276 +#: frappe/public/js/frappe/ui/sidebar.html:11 +#: frappe/public/js/frappe/widgets/base_widget.js:159 +msgid "Collapse" +msgstr "" + +#: frappe/public/js/frappe/form/controls/code.js:184 +msgctxt "Shrink code field." +msgid "Collapse" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/treeview.js:123 +msgid "Collapse All" +msgstr "" + +#. Label of the collapsible (Check) field in DocType 'DocField' +#. Label of the collapsible (Check) field in DocType 'Custom Field' +#. Label of the collapsible (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Collapsible" +msgstr "" + +#. Label of the collapsible_depends_on (Code) field in DocType 'Custom Field' +#. Label of the collapsible_depends_on (Code) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Collapsible Depends On" +msgstr "" + +#. Label of the collapsible_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Collapsible Depends On (JS)" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the color (Data) field in DocType 'DocType' +#. Label of the color (Select) field in DocType 'DocType State' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the color (Color) field in DocType 'Dashboard Chart' +#. Label of the color (Color) field in DocType 'Dashboard Chart Field' +#. Label of the color (Data) field in DocType 'Desktop Icon' +#. Label of the color (Color) field in DocType 'Event' +#. Label of the color (Color) field in DocType 'Number Card' +#. Label of the color (Color) field in DocType 'ToDo' +#. Label of the color (Color) field in DocType 'Workspace Shortcut' +#. Name of a DocType +#. Label of the color (Color) field in DocType 'Color' +#. Label of the color (Color) field in DocType 'Social Link Settings' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/views/reports/query_report.js:1241 +#: frappe/public/js/frappe/widgets/widget_dialog.js:546 +#: frappe/public/js/frappe/widgets/widget_dialog.js:694 +#: frappe/website/doctype/color/color.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Color" +msgstr "" + +#. Label of the column (Data) field in DocType 'Recorder Suggested Index' +#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:7 +#: frappe/public/js/form_builder/components/Section.vue:270 +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:8 +msgid "Column" +msgstr "" + +#: frappe/core/doctype/report/boilerplate/controller.py:28 +msgid "Column 1" +msgstr "" + +#: frappe/core/doctype/report/boilerplate/controller.py:33 +msgid "Column 2" +msgstr "" + +#: frappe/desk/doctype/kanban_board/kanban_board.py:84 +msgid "Column {0} already exist." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Column Break" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:140 +msgid "Column Labels:" +msgstr "" + +#. Label of the column_name (Data) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/data_export/exporter.py:25 +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Column Name" +msgstr "" + +#: frappe/desk/doctype/kanban_board/kanban_board.py:45 +msgid "Column Name cannot be empty" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:455 +msgid "Column Width" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:662 +msgid "Column width cannot be zero." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:380 +msgid "Column {0}" +msgstr "" + +#. Label of the columns (Int) field in DocType 'DocField' +#. Label of the columns_section (Section Break) field in DocType 'Report' +#. Label of the columns (Table) field in DocType 'Report' +#. Label of the columns (Int) field in DocType 'Custom Field' +#. Label of the columns (Int) field in DocType 'Customize Form Field' +#. Label of the columns (Table) field in DocType 'Kanban Board' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report/report.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +msgid "Columns" +msgstr "" + +#. Label of the columns (HTML Editor) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Columns / Fields" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 +msgid "Columns based on" +msgstr "" + +#: frappe/integrations/doctype/oauth_client/oauth_client.py:57 +msgid "Combination of Grant Type ({0}) and Response Type ({1}) not allowed" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Comm10E" +msgstr "" + +#. Name of a DocType +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/version/version_view.html:3 +#: frappe/public/js/frappe/form/controls/comment.js:9 +#: frappe/public/js/frappe/form/sidebar/assign_to.js:237 +#: frappe/templates/includes/comments/comments.html:34 +msgid "Comment" +msgstr "" + +#. Label of the comment_by (Data) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Comment By" +msgstr "" + +#. Label of the comment_email (Data) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Comment Email" +msgstr "" + +#. Label of the comment_type (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Comment Type" +msgstr "" + +#: frappe/desk/form/utils.py:58 +msgid "Comment can only be edited by the owner" +msgstr "" + +#: frappe/desk/form/utils.py:75 +msgid "Comment publicity can only be updated by the original author or a System Manager." +msgstr "" + +#: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 +#: frappe/public/js/frappe/model/meta.js:209 +#: frappe/public/js/frappe/model/model.js:135 +#: frappe/website/doctype/web_form/templates/web_form.html:129 +msgid "Comments" +msgstr "" + +#. Description of the 'Timeline Field' (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Comments and Communications will be associated with this linked document" +msgstr "" + +#: frappe/templates/includes/comments/comments.py:52 +msgid "Comments cannot have links or email addresses" +msgstr "" + +#. Option for the 'Rounding Method' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Commercial Rounding" +msgstr "" + +#. Label of the commit (Check) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "Commit" +msgstr "" + +#. Label of the committed (Check) field in DocType 'Console Log' +#: frappe/desk/doctype/console_log/console_log.json +msgid "Committed" +msgstr "" + +#: frappe/utils/password_strength.py:176 +msgid "Common names and surnames are easy to guess." +msgstr "" + +#. Name of a DocType +#. Option for the 'Communication Type' (Select) field in DocType +#. 'Communication' +#. Label of the communication (Data) field in DocType 'Email Flag Queue' +#. Label of the communication (Link) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/tests/test_translate.py:35 frappe/tests/test_translate.py:119 +msgid "Communication" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/communication_link/communication_link.json +msgid "Communication Link" +msgstr "" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Communication Logs" +msgstr "" + +#. Label of the communication_type (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Communication Type" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:32 +msgid "Communication secret not set" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/company_history/company_history.json +#: frappe/www/about.html:29 +msgid "Company History" +msgstr "" + +#. Label of the company_introduction (Text Editor) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Company Introduction" +msgstr "" + +#. Label of the company_name (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Company Name" +msgstr "" + +#: frappe/core/doctype/server_script/server_script.js:14 +#: frappe/custom/doctype/client_script/client_script.js:56 +#: frappe/public/js/frappe/utils/diffview.js:28 +msgid "Compare Versions" +msgstr "" + +#: frappe/core/doctype/server_script/server_script.py:159 +msgid "Compilation warning" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.py:123 +msgid "Compiled Successfully" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/www/complete_signup.html:21 +msgid "Complete" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:203 +msgid "Complete By" +msgstr "" + +#: frappe/core/doctype/user/user.py:479 +#: frappe/templates/emails/new_user.html:10 +msgid "Complete Registration" +msgstr "" + +#: frappe/public/js/frappe/ui/slides.js:355 +msgctxt "Finish the setup wizard" +msgid "Complete Setup" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#. Option for the 'Status' (Select) field in DocType 'Workflow Action' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/doctype/boilerplate/controller_list.html:31 +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/desk/doctype/event/event.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/utils/goal.py:117 +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Completed" +msgstr "" + +#. Label of the completed_by_role (Link) field in DocType 'Workflow Action' +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Completed By Role" +msgstr "" + +#. Label of the completed_by (Link) field in DocType 'Workflow Action' +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Completed By User" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#: frappe/website/doctype/web_template/web_template.json +msgid "Component" +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:184 +msgid "Compose Email" +msgstr "" + +#. Option for the 'Row Format' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Compressed" +msgstr "" + +#. Label of the condition (Select) field in DocType 'Document Naming Rule +#. Condition' +#. Label of the condition (Code) field in DocType 'Navbar Item' +#. Label of the condition (Small Text) field in DocType 'Bulk Update' +#. Label of the condition (Code) field in DocType 'Notification' +#. Label of the condition (Data) field in DocType 'Notification Recipient' +#. Label of the condition (Small Text) field in DocType 'Webhook' +#. Label of the condition (Code) field in DocType 'Workflow Transition' +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 +#: frappe/email/doctype/notification/notification.json +#: frappe/email/doctype/notification_recipient/notification_recipient.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/website/doctype/web_form/web_form.js:197 +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Condition" +msgstr "" + +#. Label of the condition_json (JSON) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Condition JSON" +msgstr "" + +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + +#. Label of the condition_description (HTML) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Condition description" +msgstr "" + +#. Label of the conditions (Table) field in DocType 'Document Naming Rule' +#. Label of the conditions (Section Break) field in DocType 'Workflow +#. Transition' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Conditions" +msgstr "" + +#. Label of the config_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Config" +msgstr "" + +#. Label of the configuration_section (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Configuration" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:492 +msgid "Configure Chart" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:407 +msgid "Configure Columns" +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:200 +msgid "Configure Recorder" +msgstr "" + +#: frappe/public/js/print_format_builder/Field.vue:103 +msgid "Configure columns for {0}" +msgstr "" + +#. Description of the 'Amended Documents' (Section Break) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Configure how amended documents will be named.
    \n\n" +"Default behaviour is to follow an amend counter which adds a number to the end of the original name indicating the amended version.
    \n\n" +"Default Naming will make the amended document to behave same as new documents." +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Configure various aspects of how document naming works like naming series, current counter." +msgstr "" + +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 +#: frappe/www/update-password.html:66 +msgid "Confirm" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:31 +msgctxt "Title of confirmation dialog" +msgid "Confirm" +msgstr "" + +#: frappe/integrations/oauth2.py:138 +msgid "Confirm Access" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:93 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:101 +msgid "Confirm Deletion of Account" +msgstr "" + +#: frappe/core/doctype/user/user.js:184 +msgid "Confirm New Password" +msgstr "" + +#: frappe/www/update-password.html:55 +msgid "Confirm Password" +msgstr "" + +#: frappe/templates/emails/data_deletion_approval.html:6 +#: frappe/templates/emails/delete_data_confirmation.html:7 +msgid "Confirm Request" +msgstr "" + +#. Label of the confirmation_email_template (Link) field in DocType 'Email +#. Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Confirmation Email Template" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:397 +msgid "Confirmed" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:525 +msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.js:20 +msgid "Connect to {}" +msgstr "" + +#. Label of the connected_app (Link) field in DocType 'Email Account' +#. Name of a DocType +#. Label of the connected_app (Link) field in DocType 'Token Cache' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Connected App" +msgstr "" + +#. Label of the connected_user (Link) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Connected User" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 +msgid "Connected to QZ Tray!" +msgstr "" + +#: frappe/public/js/frappe/request.js:36 +msgid "Connection Lost" +msgstr "" + +#: frappe/templates/pages/integrations/gcalendar-success.html:3 +msgid "Connection Success" +msgstr "" + +#: frappe/public/js/frappe/dom.js:446 +msgid "Connection lost. Some features might not work." +msgstr "" + +#. Label of the connections_tab (Tab Break) field in DocType 'DocType' +#. Label of the connections_tab (Tab Break) field in DocType 'Module Def' +#. Label of the connections_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/form/dashboard.js:54 +msgid "Connections" +msgstr "" + +#. Label of the console (Code) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "Console" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/console_log/console_log.json +msgid "Console Log" +msgstr "" + +#: frappe/desk/doctype/console_log/console_log.py:24 +msgid "Console Logs can not be deleted" +msgstr "" + +#. Label of the constraints_section (Section Break) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Constraints" +msgstr "" + +#. Name of a DocType +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.js:113 +msgid "Contact" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
    {0}" +msgstr "" + +#. Label of the sb_01 (Section Break) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Contact Details" +msgstr "" + +#. Name of a DocType +#: frappe/contacts/doctype/contact_email/contact_email.json +msgid "Contact Email" +msgstr "" + +#. Label of the phone_nos (Table) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Contact Numbers" +msgstr "" + +#. Name of a DocType +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Contact Phone" +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:291 +msgid "Contact Synced with Google Contacts." +msgstr "" + +#: frappe/www/contact.html:4 +msgid "Contact Us" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/workspace/website/website.json +msgid "Contact Us Settings" +msgstr "" + +#. Description of the 'Query Options' (Small Text) field in DocType 'Contact Us +#. Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Contact options, like \"Sales Query, Support Query\" etc each on a new line or separated by commas." +msgstr "" + +#. Label of the contacts (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Contacts" +msgstr "" + +#: frappe/utils/change_log.py:362 +msgid "Contains {0} security fix" +msgstr "" + +#: frappe/utils/change_log.py:360 +msgid "Contains {0} security fixes" +msgstr "" + +#. Label of the content (HTML Editor) field in DocType 'Comment' +#. Label of the content (Text Editor) field in DocType 'Note' +#. Label of the content (Long Text) field in DocType 'Workspace' +#. Label of the content (Text Editor) field in DocType 'Help Article' +#. Label of the section_title (Tab Break) field in DocType 'Web Page' +#. Label of the sb1 (Section Break) field in DocType 'Web Page' +#. Label of the content (Data) field in DocType 'Web Page View' +#: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/utils/utils.js:1782 +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:41 +msgid "Content" +msgstr "" + +#. Label of the content_hash (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Content Hash" +msgstr "" + +#. Label of the content_type (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Content Type" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:86 +msgid "Content data shoud be a list" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:91 +msgid "Content type for building the page" +msgstr "" + +#. Label of the context (Data) field in DocType 'Translation' +#. Label of the context_section (Section Break) field in DocType 'Web Page' +#: frappe/core/doctype/translation/translation.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Context" +msgstr "" + +#. Label of the context_script (Code) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Context Script" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:204 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:232 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:272 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:312 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:361 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:383 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:423 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:531 +msgid "Continue" +msgstr "" + +#. Label of the contributed (Check) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Contributed" +msgstr "" + +#. Label of the contribution_docname (Data) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Contribution Document Name" +msgstr "" + +#. Label of the contribution_status (Select) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Contribution Status" +msgstr "" + +#. Description of the 'Sign ups' (Select) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Controls whether new users can sign up using this Social Login Key. If unset, Website Settings is respected." +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1036 +msgid "Copied to clipboard." +msgstr "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:93 +msgid "Copy Link" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:29 +msgid "Copy embed code" +msgstr "" + +#: frappe/public/js/frappe/request.js:621 +msgid "Copy error to clipboard" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:507 +msgid "Copy to Clipboard" +msgstr "" + +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "" + +#. Label of the copyright (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Copyright" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:125 +msgid "Core DocTypes cannot be customized." +msgstr "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:36 +msgid "Core Modules {0} cannot be searched in Global Search." +msgstr "" + +#: frappe/printing/page/print/print.js:660 +msgid "Correct version :" +msgstr "" + +#: frappe/email/smtp.py:78 +msgid "Could not connect to outgoing email server" +msgstr "" + +#: frappe/model/document.py:1101 +msgid "Could not find {0}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:933 +msgid "Could not map column {0} to field {1}" +msgstr "" + +#: frappe/database/query.py:566 +msgid "Could not parse field: {0}" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:234 +msgid "Could not start up:" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:383 +msgid "Couldn't save, please check the data you have entered" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#. Label of the count (Int) field in DocType 'System Health Report Workers' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +#: frappe/public/js/frappe/ui/group_by/group_by.js:19 +#: frappe/public/js/frappe/ui/group_by/group_by.js:328 +#: frappe/workflow/doctype/workflow/workflow.js:162 +msgid "Count" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:540 +msgid "Count Customizations" +msgstr "" + +#. Label of the section_break_5 (Section Break) field in DocType 'Workspace +#. Shortcut' +#. Label of the stats_filter (Code) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:525 +msgid "Count Filter" +msgstr "" + +#: frappe/public/js/frappe/form/dashboard.js:509 +msgid "Count of linked documents" +msgstr "" + +#. Label of the counter (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Counter" +msgstr "" + +#. Label of the country (Link) field in DocType 'Address' +#. Label of the country (Link) field in DocType 'Address Template' +#. Label of the country (Link) field in DocType 'System Settings' +#. Name of a DocType +#. Label of the country (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/geo/doctype/country/country.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Country" +msgstr "" + +#: frappe/utils/__init__.py:132 +msgid "Country Code Required" +msgstr "" + +#. Label of the country_name (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "Country Name" +msgstr "" + +#. Label of the county (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "County" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:23 +#: frappe/public/js/frappe/utils/number_systems.js:45 +msgctxt "Number system" +msgid "Cr" +msgstr "" + +#. Label of the create (Check) field in DocType 'Custom DocPerm' +#. Label of the create (Check) field in DocType 'DocPerm' +#. Label of the create (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/communication/communication.js:117 +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:15 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 +#: frappe/public/js/frappe/form/reminders.js:49 +#: frappe/public/js/frappe/views/file/file_view.js:112 +#: frappe/public/js/frappe/views/interaction.js:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 +#: frappe/public/js/frappe/views/workspace/workspace.js:469 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:46 +msgid "Create" +msgstr "" + +#: frappe/core/doctype/doctype/doctype_list.js:103 +msgid "Create & Continue" +msgstr "" + +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:49 +msgid "Create Address" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:187 +#: frappe/public/js/frappe/views/reports/query_report.js:232 +msgid "Create Card" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:285 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 +msgid "Create Chart" +msgstr "" + +#: frappe/public/js/form_builder/components/controls/TableControl.vue:62 +msgid "Create Child Doctype" +msgstr "" + +#. Label of the create_contact (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Create Contacts from Incoming Emails" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Create Entry" +msgstr "" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:59 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:195 +msgid "Create Letter Head" +msgstr "" + +#. Label of the create_log (Check) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Create Log" +msgstr "" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:41 +#: frappe/public/js/frappe/views/treeview.js:378 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:41 +msgid "Create New" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:514 +msgctxt "Create a new document from list view" +msgid "Create New" +msgstr "" + +#: frappe/core/doctype/doctype/doctype_list.js:101 +msgid "Create New DocType" +msgstr "" + +#: frappe/public/js/frappe/list/list_view_select.js:204 +msgid "Create New Kanban Board" +msgstr "" + +#: frappe/core/doctype/user/user.js:264 +msgid "Create User Email" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_start.html:16 +msgid "Create a New Format" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:9 +msgid "Create a Reminder" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 +msgid "Create a new ..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:156 +msgid "Create a new record" +msgstr "" + +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 +#: frappe/public/js/frappe/form/link_selector.js:139 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 +msgid "Create a new {0}" +msgstr "" + +#: frappe/www/login.html:162 +msgid "Create a {0} Account" +msgstr "" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:34 +msgid "Create or Edit Print Format" +msgstr "" + +#: frappe/workflow/page/workflow_builder/workflow_builder.js:34 +msgid "Create or Edit Workflow" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:509 +msgid "Create your first {0}" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:16 +msgid "Create your workflow visually using the Workflow Builder." +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/views/file/file_view.js:370 +msgid "Created" +msgstr "" + +#. Label of the created_at (Datetime) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Created At" +msgstr "" + +#: frappe/model/meta.py:58 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:73 +#: frappe/public/js/frappe/model/meta.js:206 +#: frappe/public/js/frappe/model/model.js:123 +msgid "Created By" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:65 +msgid "Created Custom Field {0} in {1}" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:241 +#: frappe/email/doctype/notification/notification.js:31 frappe/model/meta.py:53 +#: frappe/public/js/frappe/model/meta.js:201 +#: frappe/public/js/frappe/model/model.js:125 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:479 +msgid "Created On" +msgstr "" + +#: frappe/public/js/frappe/desk.js:517 +#: frappe/public/js/frappe/views/treeview.js:393 +msgid "Creating {0}" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:41 +msgid "Creation of this document is only permitted in developer mode." +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Cron" +msgstr "" + +#. Label of the cron_format (Data) field in DocType 'Scheduled Job Type' +#. Label of the cron_format (Data) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Cron Format" +msgstr "" + +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:62 +msgid "Cron format is required for job types with Cron frequency." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:34 +msgid "Crop" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Ctrl + Down" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Ctrl + Up" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:32 +msgid "Ctrl+Enter to add comment" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Label of the currency (Link) field in DocType 'System Settings' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the currency (Link) field in DocType 'Dashboard Chart' +#. Label of the currency (Link) field in DocType 'Number Card' +#. Name of a DocType +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:414 +#: frappe/geo/doctype/currency/currency.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Currency" +msgstr "" + +#. Label of the currency_name (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Currency Name" +msgstr "" + +#. Label of the currency_precision (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Currency Precision" +msgstr "" + +#. Description of a DocType +#: frappe/geo/doctype/currency/currency.json +msgid "Currency list stores the currency value, its symbol and fraction unit" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Current" +msgstr "" + +#. Label of the current_job_id (Link) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Current Job ID" +msgstr "" + +#. Label of the current_value (Int) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Current Value" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "Current status" +msgstr "" + +#: frappe/public/js/frappe/form/form_viewers.js:5 +msgid "Currently Viewing" +msgstr "" + +#. Label of the custom (Check) field in DocType 'DocType Action' +#. Label of the custom (Check) field in DocType 'DocType Link' +#. Label of the custom (Check) field in DocType 'DocType State' +#. Label of the custom (Check) field in DocType 'Module Def' +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Label of the custom (Check) field in DocType 'Desktop Icon' +#. Option for the 'Type' (Select) field in DocType 'Number Card' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_type/user_type_list.js:7 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/notification/notification.json +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/public/js/frappe/form/reminders.js:20 +msgid "Custom" +msgstr "" + +#. Label of the custom_base_url (Check) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Custom Base URL" +msgstr "" + +#. Label of the custom_block_name (Link) field in DocType 'Workspace Custom +#. Block' +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json +msgid "Custom Block Name" +msgstr "" + +#. Label of the custom_blocks_tab (Tab Break) field in DocType 'Workspace' +#. Label of the custom_blocks (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Custom Blocks" +msgstr "" + +#. Label of the css (Code) field in DocType 'Print Format' +#. Label of the custom_css (Code) field in DocType 'Web Form' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Custom CSS" +msgstr "" + +#. Label of the custom_configuration_section (Section Break) field in DocType +#. 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Custom Configuration" +msgstr "" + +#. Label of the custom_delimiters (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Custom Delimiters" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/custom_docperm/custom_docperm.json +msgid "Custom DocPerm" +msgstr "" + +#. Label of the custom_select_doctypes (Table) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Custom Document Types (Select Permission)" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:105 +msgid "Custom Document Types Limit Exceeded" +msgstr "" + +#: frappe/desk/desktop.py:524 +msgid "Custom Documents" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Custom Field" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:220 +msgid "Custom Field {0} is created by the Administrator and can only be deleted through the Administrator account." +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:277 +msgid "Custom Fields can only be added to a standard DocType." +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:274 +msgid "Custom Fields cannot be added to core DocTypes." +msgstr "" + +#. Label of the custom_footer_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Custom Footer" +msgstr "" + +#. Label of the custom_format (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Custom Format" +msgstr "" + +#. Label of the ldap_custom_group_search (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Custom Group Search" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:122 +msgid "Custom Group Search if filled needs to contain the user placeholder {0}, eg uid={0},ou=users,dc=example,dc=com" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:190 +#: frappe/printing/page/print_format_builder/print_format_builder.js:728 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:162 +msgid "Custom HTML" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +msgid "Custom HTML Block" +msgstr "" + +#. Label of the custom_html_help (HTML) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Custom HTML Help" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:114 +msgid "Custom LDAP Directoy Selected, please ensure 'LDAP Group Member attribute' and 'Group Object Class' are entered" +msgstr "" + +#. Label of the label (Data) field in DocType 'Web Form Field' +#. Label of the label (Data) field in DocType 'Web Form List Column' +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +msgid "Custom Label" +msgstr "" + +#. Label of the custom_menu (Table) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Custom Menu Items" +msgstr "" + +#. Label of the custom_options (Code) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Custom Options" +msgstr "" + +#. Label of the custom_overrides (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Custom Overrides" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Custom Report" +msgstr "" + +#: frappe/desk/desktop.py:525 +msgid "Custom Reports" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/custom_role/custom_role.json +msgid "Custom Role" +msgstr "" + +#. Label of the custom_scss (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Custom SCSS" +msgstr "" + +#. Label of the custom_sidebar_menu (Section Break) field in DocType 'Portal +#. Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Custom Sidebar Menu" +msgstr "" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Custom Translation" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:423 +msgid "Custom field renamed to {0} successfully." +msgstr "" + +#: frappe/api/v2.py:148 +msgid "Custom get_list method for {0} must return a QueryBuilder object or None, got {1}" +msgstr "" + +#. Label of the custom (Check) field in DocType 'DocType' +#. Label of the custom (Check) field in DocType 'Website Theme' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:83 +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Custom?" +msgstr "" + +#. Group in DocType's connections +#. Group in Module Def's connections +#. Label of a Card Break in the Build Workspace +#. Label of the customization_tab (Tab Break) field in DocType 'Web Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/workspace/build/build.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Customization" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:358 +msgid "Customizations Discarded" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:465 +msgid "Customizations Reset" +msgstr "" + +#: frappe/modules/utils.py:96 +msgid "Customizations for {0} exported to:
    {1}" +msgstr "" + +#: frappe/printing/page/print/print.js:184 +#: frappe/public/js/frappe/form/templates/print_layout.html:39 +#: frappe/public/js/frappe/form/toolbar.js:600 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 +msgid "Customize" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1949 +msgctxt "Button in list view menu" +msgid "Customize" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:89 +msgid "Customize Child Table" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:38 +msgid "Customize Dashboard" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:33 +#: frappe/core/doctype/doctype/doctype.js:61 +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +msgid "Customize Form" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:100 +msgid "Customize Form - {0}" +msgstr "" + +#. Name of a DocType +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Customize Form Field" +msgstr "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Customize properties, naming, fields and more for standard doctypes" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:144 +msgid "Cut" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Cyan" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#. Option for the 'Request Method' (Select) field in DocType 'Webhook' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/webhook/webhook.json +msgid "DELETE" +msgstr "" + +#. Option for the 'Default Sort Order' (Select) field in DocType 'DocType' +#. Option for the 'Sort Order' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "DESC" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "DLE" +msgstr "" + +#: frappe/templates/print_formats/standard_macros.html:215 +msgid "DRAFT" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Frequency' (Select) field in DocType 'User' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:398 +#: frappe/website/report/website_analytics/website_analytics.js:23 +msgid "Daily" +msgstr "" + +#: frappe/templates/emails/upcoming_events.html:8 +msgid "Daily Event Digest is sent for Calendar Events where reminders are set." +msgstr "" + +#: frappe/desk/doctype/event/event.py:104 +msgid "Daily Events should finish on the Same Day." +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Daily Long" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Daily Maintenance" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Danger" +msgstr "" + +#. Option for the 'Desk Theme' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Dark" +msgstr "" + +#. Label of the dark_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Dark Color" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:65 +msgid "Dark Theme" +msgstr "" + +#. Label of the dashboard (Check) field in DocType 'User' +#. Label of a Link in the Build Workspace +#. Name of a DocType +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/core/doctype/user/user.json +#: frappe/core/page/dashboard_view/dashboard_view.js:10 +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 +#: frappe/public/js/frappe/utils/utils.js:935 +msgid "Dashboard" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.js:8 +msgid "Dashboard Chart" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json +msgid "Dashboard Chart Field" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Dashboard Chart Link" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgid "Dashboard Chart Source" +msgstr "" + +#. Name of a role +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Dashboard Manager" +msgstr "" + +#. Label of the dashboard_name (Data) field in DocType 'Dashboard' +#: frappe/desk/doctype/dashboard/dashboard.json +msgid "Dashboard Name" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +msgid "Dashboard Settings" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:204 +msgid "Dashboard View" +msgstr "" + +#. Label of the tab_break_2 (Tab Break) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Dashboards" +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#. Label of the data (Code) field in DocType 'Deleted Document' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Label of the data (Code) field in DocType 'Version' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the webhook_data (Table) field in DocType 'Webhook' +#. Label of the data (Code) field in DocType 'Webhook Request Log' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/deleted_document/deleted_document.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/core/doctype/version/version.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Data" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:59 +msgid "Data Clipped" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/data_export/data_export.json +msgid "Data Export" +msgstr "" + +#. Name of a DocType +#. Label of the data_import (Link) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/data_import_log/data_import_log.json +msgid "Data Import" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/data_import_log/data_import_log.json +msgid "Data Import Log" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:174 +msgid "Data Import Template" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:619 +msgid "Data Too Long" +msgstr "" + +#. Label of the database (Data) field in DocType 'System Health Report' +#. Label of the database_section (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Database" +msgstr "" + +#. Label of the engine (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Database Engine" +msgstr "" + +#. Label of the database_processes_section (Section Break) field in DocType +#. 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "Database Processes" +msgstr "" + +#: frappe/public/js/frappe/doctype/index.js:38 +msgid "Database Row Size Utilization" +msgstr "" + +#. Name of a report +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.json +msgid "Database Storage Usage By Tables" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:251 +msgid "Database Table Row Size Limit" +msgstr "" + +#: frappe/public/js/frappe/doctype/index.js:40 +msgid "Database Table Row Size Utilization: {0}%, this limits number of fields you can add." +msgstr "" + +#. Label of the database_version (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Database Version" +msgstr "" + +#. Label of the communication_date (Datetime) field in DocType 'Activity Log' +#. Label of the communication_date (Datetime) field in DocType 'Communication' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/report/todo/todo.py:38 +#: frappe/public/js/frappe/views/interaction.js:80 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Date" +msgstr "" + +#. Label of the date_format (Select) field in DocType 'Language' +#. Label of the date_format (Select) field in DocType 'System Settings' +#. Label of the date_format (Data) field in DocType 'Country' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/geo/doctype/country/country.json +msgid "Date Format" +msgstr "" + +#. Label of the section_break_dfrx (Section Break) field in DocType 'Audit +#. Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/public/js/frappe/widgets/chart_widget.js:237 +msgid "Date Range" +msgstr "" + +#. Label of the date_and_number_format (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Date and Number Format" +msgstr "" + +#: frappe/public/js/frappe/form/controls/date.js:247 +msgid "Date {0} must be in format: {1}" +msgstr "" + +#: frappe/utils/password_strength.py:129 +msgid "Dates are often easy to guess." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Datetime" +msgstr "" + +#. Label of the day (Select) field in DocType 'Assignment Rule Day' +#. Label of the day (Select) field in DocType 'Auto Repeat Day' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/public/js/frappe/views/calendar/calendar.js:277 +msgid "Day" +msgstr "" + +#. Label of the day_of_week (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Day of Week" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:27 +msgctxt "Duration" +msgid "Days" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Days After" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Days Before" +msgstr "" + +#. Label of the days_in_advance (Int) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Days Before or After" +msgstr "" + +#: frappe/public/js/frappe/request.js:252 +msgid "Deadlock Occurred" +msgstr "" + +#: frappe/templates/emails/password_reset.html:1 +msgid "Dear" +msgstr "" + +#: frappe/templates/emails/administrator_logged_in.html:1 +msgid "Dear System Manager," +msgstr "" + +#: frappe/templates/emails/account_deletion_notification.html:1 +#: frappe/templates/emails/delete_data_confirmation.html:1 +msgid "Dear User," +msgstr "" + +#: frappe/templates/emails/download_data.html:1 +msgid "Dear {0}" +msgstr "" + +#. Label of the debug_log (Code) field in DocType 'Scheduled Job Log' +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +msgid "Debug Log" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:318 +msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:310 +msgid "Decimal Separator must be a single character" +msgstr "" + +#. Label of the default (Small Text) field in DocType 'DocField' +#. Label of the default (Small Text) field in DocType 'Report Filter' +#. Label of the default (Small Text) field in DocType 'Customize Form Field' +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#. Label of the default (Data) field in DocType 'Web Form Field' +#. Label of the default (Small Text) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/templates/form_grid/fields.html:30 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Default" +msgstr "" + +#: frappe/contacts/doctype/address_template/address_template.py:41 +msgid "Default Address Template cannot be deleted" +msgstr "" + +#. Label of the default_amend_naming (Select) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Default Amendment Naming" +msgstr "" + +#. Label of the default_app (Select) field in DocType 'System Settings' +#. Label of the default_app (Select) field in DocType 'User' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +msgid "Default App" +msgstr "" + +#. Label of the default_email_template (Link) field in DocType 'DocType' +#. Label of the default_email_template (Link) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Default Email Template" +msgstr "" + +#: frappe/email/doctype/email_account/email_account_list.js:13 +msgid "Default Inbox" +msgstr "" + +#. Label of the default_incoming (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:224 +msgid "Default Incoming" +msgstr "" + +#. Label of the is_default (Check) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Default Letter Head" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Amended Document Naming +#. Settings' +#. Option for the 'Default Amendment Naming' (Select) field in DocType +#. 'Document Naming Settings' +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Default Naming" +msgstr "" + +#. Label of the default_outgoing (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:232 +msgid "Default Outgoing" +msgstr "" + +#. Label of the default_portal_home (Data) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Default Portal Home" +msgstr "" + +#. Label of the default_print_format (Data) field in DocType 'DocType' +#. Label of the default_print_format (Link) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Default Print Format" +msgstr "" + +#. Label of the default_print_language (Link) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Default Print Language" +msgstr "" + +#. Label of the default_redirect_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Default Redirect URI" +msgstr "" + +#. Label of the default_role (Link) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Default Role at Time of Signup" +msgstr "" + +#: frappe/email/doctype/email_account/email_account_list.js:16 +msgid "Default Sending" +msgstr "" + +#: frappe/email/doctype/email_account/email_account_list.js:7 +msgid "Default Sending and Inbox" +msgstr "" + +#. Label of the sort_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Default Sort Field" +msgstr "" + +#. Label of the sort_order (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Default Sort Order" +msgstr "" + +#. Label of the field (Data) field in DocType 'Print Format Field Template' +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +msgid "Default Template For Field" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.js:28 +msgid "Default Theme" +msgstr "" + +#. Label of the default_role (Link) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Default User Role" +msgstr "" + +#. Label of the default_user_type (Link) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Default User Type" +msgstr "" + +#. Label of the default (Text) field in DocType 'Custom Field' +#. Label of the default_value (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Default Value" +msgstr "" + +#. Label of the default_view (Select) field in DocType 'DocType' +#. Label of the default_view (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Default View" +msgstr "" + +#. Label of the default_workspace (Link) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Default Workspace" +msgstr "" + +#. Description of the 'Currency' (Link) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Default display currency" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1377 +msgid "Default for 'Check' type of field {0} must be either '0' or '1'" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1390 +msgid "Default value for {0} must be in the list of options." +msgstr "" + +#: frappe/core/doctype/session_default_settings/session_default_settings.py:38 +msgid "Default {0}" +msgstr "" + +#. Description of the 'Heading' (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Default: \"Contact Us\"" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/defaultvalue/defaultvalue.json +msgid "DefaultValue" +msgstr "" + +#. Label of the defaults_section (Section Break) field in DocType 'DocField' +#. Label of the sb2 (Section Break) field in DocType 'User' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/user/user.json +msgid "Defaults" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:243 +msgid "Defaults Updated" +msgstr "" + +#. Description of a DocType +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Defines actions on states and the next step and allowed roles." +msgstr "" + +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + +#. Description of a DocType +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Defines workflow states and rules for a document." +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Delayed" +msgstr "" + +#. Label of the delete (Check) field in DocType 'Custom DocPerm' +#. Label of the delete (Check) field in DocType 'DocPerm' +#. Label of the delete (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_permission/user_permission_list.js:189 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 +#: frappe/public/js/frappe/form/grid.js:66 +#: frappe/public/js/frappe/form/toolbar.js:464 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 +#: frappe/public/js/frappe/views/treeview.js:329 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 +#: frappe/templates/discussions/reply_card.html:35 +#: frappe/templates/discussions/reply_section.html:29 +msgid "Delete" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2174 +msgctxt "Button in list view actions menu" +msgid "Delete" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "" + +#: frappe/www/me.html:65 +msgid "Delete Account" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Delete All" +msgstr "" + +#. Label of the delete_background_exported_reports_after (Int) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Delete Background Exported Reports After (Hours)" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:196 +msgctxt "Title of confirmation dialog" +msgid "Delete Column" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:10 +msgid "Delete Data" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 +msgid "Delete Kanban Board" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:125 +msgctxt "Title of confirmation dialog" +msgid "Delete Section" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:64 +msgctxt "Title of confirmation dialog" +msgid "Delete Tab" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:944 +msgid "Delete and Generate New" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:203 +msgctxt "Button text" +msgid "Delete column" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 +msgid "Delete comment?" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:205 +msgctxt "Button text" +msgid "Delete entire column with fields" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:134 +msgctxt "Button text" +msgid "Delete entire section with fields" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:73 +msgctxt "Button text" +msgid "Delete entire tab with fields" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:132 +msgctxt "Button text" +msgid "Delete section" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:71 +msgctxt "Button text" +msgid "Delete tab" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:29 +msgid "Delete this record to allow sending to this email address" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2179 +msgctxt "Title of confirmation dialog" +msgid "Delete {0} item permanently?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2185 +msgctxt "Title of confirmation dialog" +msgid "Delete {0} items permanently?" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Step' +#: frappe/core/doctype/comment/comment.json +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Deleted" +msgstr "" + +#. Label of the deleted_doctype (Data) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Deleted DocType" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Deleted Document" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Deleted Documents" +msgstr "" + +#. Label of the deleted_name (Data) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Deleted Name" +msgstr "" + +#: frappe/desk/reportview.py:641 +msgid "Deleted all documents successfully" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "" + +#: frappe/desk/reportview.py:618 +msgid "Deleting {0}" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:202 +msgid "Deleting {0} records..." +msgstr "" + +#: frappe/public/js/frappe/model/model.js:692 +msgid "Deleting {0}..." +msgstr "" + +#. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Deletion Steps" +msgstr "" + +#: frappe/core/doctype/page/page.py:110 +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 +msgid "Deletion of this document is only permitted in developer mode." +msgstr "" + +#. Label of the delimiter_options (Data) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Delimiter Options" +msgstr "" + +#: frappe/utils/csvutils.py:76 +msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:306 +msgid "Delimiter must be a single character" +msgstr "" + +#. Label of the delivery_status (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Delivery Status" +msgstr "" + +#. Option for the 'Sign ups' (Select) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/templates/includes/oauth_confirmation.html:17 +msgid "Deny" +msgstr "" + +#. Label of the department (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Department" +msgstr "" + +#. Label of the dependencies (Data) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:323 +#: frappe/www/attribution.html:29 +msgid "Dependencies" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Dependencies & Licenses" +msgstr "" + +#. Label of the depends_on (Code) field in DocType 'Custom Field' +#. Label of the depends_on (Code) field in DocType 'Customize Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Depends On" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:32 +msgid "Descendants Of" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:33 +msgid "Descendants Of (inclusive)" +msgstr "" + +#. Label of the description (Small Text) field in DocType 'Assignment Rule' +#. Label of the description (Small Text) field in DocType 'Reminder' +#. Label of the description (Small Text) field in DocType 'DocField' +#. Label of the description (Small Text) field in DocType 'DocType' +#. Label of the description (Text) field in DocType 'Customize Form Field' +#. Label of the description (Small Text) field in DocType 'Desktop Icon' +#. Label of the description (Text Editor) field in DocType 'Event' +#. Label of the description (HTML Editor) field in DocType 'Form Tour Step' +#. Label of the description_section (Section Break) field in DocType +#. 'Onboarding Step' +#. Label of the description (Markdown Editor) field in DocType 'Onboarding +#. Step' +#. Label of the description (Small Text) field in DocType 'Tag' +#. Label of the description (Text Editor) field in DocType 'ToDo' +#. Label of the description (HTML Editor) field in DocType 'Workspace Link' +#. Label of the description (Small Text) field in DocType 'Print Heading' +#. Label of the description (Small Text) field in DocType 'UTM Medium' +#. Label of the description (Small Text) field in DocType 'UTM Source' +#. Label of the description (Text) field in DocType 'Web Form Field' +#. Label of the meta_description (Small Text) field in DocType 'Web Page' +#. Label of the description (Text) field in DocType 'Website Slideshow Item' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/todo/todo.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/report/todo/todo.py:39 +#: frappe/printing/doctype/print_heading/print_heading.json +#: frappe/public/js/frappe/form/reminders.js:44 +#: frappe/public/js/frappe/widgets/widget_dialog.js:256 +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +#: frappe/www/attribution.html:24 +msgid "Description" +msgstr "" + +#. Description of the 'Description' (Section Break) field in DocType +#. 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Description to inform the user about any action that is going to be performed" +msgstr "" + +#. Label of the designation (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Designation" +msgstr "" + +#. Label of the desk_access (Check) field in DocType 'Role' +#: frappe/core/doctype/role/role.json +msgid "Desk Access" +msgstr "" + +#. Label of the desk_settings_section (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Desk Settings" +msgstr "" + +#. Label of the desk_theme (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Desk Theme" +msgstr "" + +#. Name of a role +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_group/user_group.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_heading/print_heading.json +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Desk User" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Desktop Icon" +msgstr "" + +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:225 +msgid "Desktop Icon already exists" +msgstr "" + +#. Label of the details_tab (Tab Break) field in DocType 'Module Def' +#. Label of the details (Code) field in DocType 'Scheduled Job Log' +#. Label of the details_tab (Tab Break) field in DocType 'Customize Form' +#. Label of the details (Section Break) field in DocType 'Event' +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json +#: frappe/public/js/form_builder/components/Tabs.vue:92 +#: frappe/public/js/form_builder/store.js:259 +#: frappe/public/js/form_builder/utils.js:38 +#: frappe/public/js/frappe/form/layout.js:152 +#: frappe/public/js/frappe/views/treeview.js:292 +msgid "Details" +msgstr "" + +#. Label of the use_csv_sniffer (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Detect CSV type" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:494 +msgid "Did not add" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:388 +msgid "Did not remove" +msgstr "" + +#: frappe/public/js/frappe/utils/diffview.js:57 +msgid "Diff" +msgstr "" + +#. Description of the 'States' (Section Break) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Different \"States\" this document can exist in. Like \"Open\", \"Pending Approval\" etc." +msgstr "" + +#. Label of the prefix_digits (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Digits" +msgstr "" + +#. Label of the ldap_directory_server (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Directory Server" +msgstr "" + +#. Label of the disable_auto_refresh (Check) field in DocType 'List View +#. Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Auto Refresh" +msgstr "" + +#. Label of the disable_automatic_recency_filters (Check) field in DocType +#. 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Automatic Recency Filters" +msgstr "" + +#. Label of the disable_change_log_notification (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Disable Change Log Notification" +msgstr "" + +#. Label of the disable_comment_count (Check) field in DocType 'List View +#. Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Comment Count" +msgstr "" + +#. Label of the disable_contact_us (Check) field in DocType 'Contact Us +#. Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Disable Contact Us Page" +msgstr "" + +#. Label of the disable_count (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Count" +msgstr "" + +#. Label of the disable_document_sharing (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Disable Document Sharing" +msgstr "" + +#: frappe/core/doctype/report/report.js:39 +msgid "Disable Report" +msgstr "" + +#. Label of the no_smtp_authentication (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Disable SMTP server authentication" +msgstr "" + +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + +#. Label of the disable_sidebar_stats (Check) field in DocType 'List View +#. Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Sidebar Stats" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.js:146 +msgid "Disable Signup for your site" +msgstr "" + +#. Label of the disable_standard_email_footer (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Disable Standard Email Footer" +msgstr "" + +#. Label of the disable_system_update_notification (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Disable System Update Notification" +msgstr "" + +#. Label of the disable_user_pass_login (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Disable Username/Password Login" +msgstr "" + +#. Label of the disable_signup (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Disable signups" +msgstr "" + +#. Label of the disabled (Check) field in DocType 'Assignment Rule' +#. Label of the disabled (Check) field in DocType 'Auto Repeat' +#. Option for the 'Status' (Select) field in DocType 'Auto Repeat' +#. Label of the disabled (Check) field in DocType 'Milestone Tracker' +#. Label of the disabled (Check) field in DocType 'Address' +#. Label of the disabled (Check) field in DocType 'Document Naming Rule' +#. Label of the disabled (Check) field in DocType 'Report' +#. Label of the disabled (Check) field in DocType 'Role' +#. Label of the disabled (Check) field in DocType 'Server Script' +#. Label of the disabled (Check) field in DocType 'Letter Head' +#. Label of the disabled (Check) field in DocType 'Print Format' +#. Label of the disabled (Check) field in DocType 'Print Style' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +#: frappe/contacts/doctype/address/address.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user_list.js:14 +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/public/js/frappe/form/templates/address_list.html:35 +#: frappe/public/js/frappe/model/indicator.js:112 +#: frappe/public/js/frappe/model/indicator.js:119 +msgid "Disabled" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:300 +msgid "Disabled Auto Reply" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:338 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 +#: frappe/public/js/frappe/views/workspace/workspace.js:351 +#: frappe/public/js/frappe/web_form/web_form.js:193 +msgid "Discard" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:44 +msgctxt "Button in web form" +msgid "Discard" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:30 +msgctxt "Discard Email" +msgid "Discard" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:848 +msgid "Discard {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:190 +msgid "Discard?" +msgstr "" + +#: frappe/desk/form/save.py:75 +msgid "Discarded" +msgstr "" + +#. Description of the 'Suggested Indexes' (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Disclaimer: These indexes are suggested based on data and queries performed during this recording. These suggestions may or may not help." +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/discussion_reply/discussion_reply.json +msgid "Discussion Reply" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/discussion_topic/discussion_topic.json +msgid "Discussion Topic" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 +#: frappe/templates/discussions/reply_card.html:16 +#: frappe/templates/discussions/reply_section.html:29 +msgid "Dismiss" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:572 +msgctxt "Stop showing the onboarding widget." +msgid "Dismiss" +msgstr "" + +#. Label of the display (Section Break) field in DocType 'DocField' +#. Label of the updates_tab (Tab Break) field in DocType 'System Settings' +#. Label of the display (Section Break) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Display" +msgstr "" + +#. Label of the depends_on (Code) field in DocType 'Web Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Display Depends On" +msgstr "" + +#. Label of the depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Display Depends On (JS)" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:180 +msgid "Divider" +msgstr "" + +#. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Do Not Create New User" +msgstr "" + +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Do not create new user if user with email does not exist in the system" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1195 +msgid "Do not edit headers which are preset in the template" +msgstr "" + +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.js:71 +msgid "Do you still want to proceed?" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:958 +msgid "Do you want to cancel all linked documents?" +msgstr "" + +#. Label of the webhook_docevent (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Doc Event" +msgstr "" + +#. Label of the sb_doc_events (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Doc Events" +msgstr "" + +#. Label of the doc_status (Select) field in DocType 'Workflow Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Doc Status" +msgstr "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocField" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/docperm/docperm.json +msgid "DocPerm" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/docshare/docshare.json +msgid "DocShare" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:264 +msgid "DocStatus of the following states have changed:
    {0}
    \n" +"\t\t\t\tDo you want to update the docstatus of existing documents in those states?
    \n" +"\t\t\t\tThis does not undo any effect bought in by the document's existing docstatus.\n" +"\t\t\t\t" +msgstr "" + +#. Label of the document_type (Link) field in DocType 'Amended Document Naming +#. Settings' +#. Label of the doctype_name (Link) field in DocType 'Audit Trail' +#. Name of a DocType +#. Group in Module Def's connections +#. Label of the ref_doctype (Link) field in DocType 'Permission Inspector' +#. Label of the ref_doctype (Link) field in DocType 'Version' +#. Label of a shortcut in the Build Workspace +#. Label of the dt (Link) field in DocType 'Client Script' +#. Label of the dt (Link) field in DocType 'Custom Field' +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#. Label of the doc_type (Link) field in DocType 'Property Setter' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' +#. Label of the document_type (Link) field in DocType 'Workspace Quick List' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Label of the webhook_doctype (Link) field in DocType 'Webhook' +#. Label of the doc_type (Link) field in DocType 'Print Format' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#: frappe/core/doctype/amended_document_naming_settings/amended_document_naming_settings.json +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/data_export/exporter.py:26 +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/core/doctype/version/version.json +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:15 +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:38 +#: frappe/core/workspace/build/build.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:164 +#: frappe/website/doctype/website_slideshow/website_slideshow.js:18 +msgid "DocType" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1578 +msgid "DocType {0} provided for the field {1} must have atleast one Link field" +msgstr "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocType Action" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#. Label of the doctype_event (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "DocType Event" +msgstr "" + +#. Name of a DocType +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +msgid "DocType Layout" +msgstr "" + +#. Name of a DocType +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +msgid "DocType Layout Field" +msgstr "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocType Link" +msgstr "" + +#. Name of a DocType +#. Option for the 'Applied On' (Select) field in DocType 'Property Setter' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "DocType State" +msgstr "" + +#. Label of the doc_view (Select) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:479 +msgid "DocType View" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:657 +msgid "DocType can not be merged" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:651 +msgid "DocType can only be renamed by Administrator" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/doctype/doctype.json +msgid "DocType is a Table / Form in the application." +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:83 +msgid "DocType must be Submittable for the selected Doc Event" +msgstr "" + +#: frappe/client.py:403 +msgid "DocType must be a string" +msgstr "" + +#: frappe/public/js/form_builder/store.js:154 +msgid "DocType must have atleast one field" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:57 +msgid "DocType not supported by Log Settings." +msgstr "" + +#. Description of the 'Document Type' (Link) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "DocType on which this Workflow is applicable." +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:4 +msgid "DocType required" +msgstr "" + +#: frappe/modules/utils.py:175 +msgid "DocType {0} does not exist." +msgstr "" + +#: frappe/modules/utils.py:238 +msgid "DocType {} not found" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1029 +msgid "DocType's name should not start or end with whitespace" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.js:67 +msgid "DocTypes cannot be modified, please use {0} instead" +msgstr "" + +#. Label of the ref_doctype (Link) field in DocType 'Document Follow' +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:682 +msgid "Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1023 +msgid "Doctype name is limited to {0} characters ({1})" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:3 +msgid "Doctype required" +msgstr "" + +#. Label of the reference_name (Data) field in DocType 'Milestone' +#. Label of the document (Dynamic Link) field in DocType 'Audit Trail' +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#. Label of the docname (Dynamic Link) field in DocType 'Permission Inspector' +#. Label of the document (Link) field in DocType 'Notification Subscribed +#. Document' +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json +#: frappe/public/js/frappe/views/render_preview.js:42 +msgid "Document" +msgstr "" + +#. Label of the actions (Table) field in DocType 'DocType' +#. Label of the document_actions_section (Section Break) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Document Actions" +msgstr "" + +#. Label of the document_follow_notifications_section (Section Break) field in +#. DocType 'User' +#. Name of a DocType +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/document_follow/document_follow.json +msgid "Document Follow" +msgstr "" + +#: frappe/desk/form/document_follow.py:94 +msgid "Document Follow Notification" +msgstr "" + +#. Label of the document_name (Data) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Document Link" +msgstr "" + +#. Label of the section_break_12 (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Document Linking" +msgstr "" + +#. Label of the links (Table) field in DocType 'DocType' +#. Label of the document_links_section (Section Break) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Document Links" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1212 +msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1232 +msgid "Document Links Row #{0}: Invalid doctype or fieldname." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1195 +msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1201 +msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" +msgstr "" + +#. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' +#. Label of the share_name (Dynamic Link) field in DocType 'DocShare' +#. Label of the docname (Data) field in DocType 'Version' +#. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' +#. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_permission/user_permission_list.js:36 +#: frappe/core/doctype/version/version.json +#: frappe/desk/doctype/tag_link/tag_link.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/public/js/frappe/form/form_tour.js:62 +msgid "Document Name" +msgstr "" + +#: frappe/client.py:406 +msgid "Document Name must be a string" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Document Naming Rule" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +msgid "Document Naming Rule Condition" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Document Naming Settings" +msgstr "" + +#: frappe/model/document.py:478 +msgid "Document Queued" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:38 +msgid "Document Restoration Summary" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:68 +msgid "Document Restored" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:354 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:396 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:415 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:434 +msgid "Document Saved" +msgstr "" + +#. Label of the enable_email_share (Check) field in DocType 'Notification +#. Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Document Share" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/document_share_key/document_share_key.json +msgid "Document Share Key" +msgstr "" + +#. Label of the document_share_key_expiry (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Document Share Key Expiry (in Days)" +msgstr "" + +#. Name of a report +#. Label of a Link in the Users Workspace +#: frappe/core/report/document_share_report/document_share_report.json +#: frappe/core/workspace/users/users.json +msgid "Document Share Report" +msgstr "" + +#. Label of the states (Table) field in DocType 'DocType' +#. Label of the document_states_section (Section Break) field in DocType +#. 'Customize Form' +#. Label of the states (Table) field in DocType 'Workflow' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Document States" +msgstr "" + +#: frappe/model/meta.py:54 frappe/public/js/frappe/model/meta.js:202 +#: frappe/public/js/frappe/model/model.js:137 +msgid "Document Status" +msgstr "" + +#. Label of the tag (Link) field in DocType 'Tag Link' +#: frappe/desk/doctype/tag_link/tag_link.json +msgid "Document Tag" +msgstr "" + +#. Label of the title (Data) field in DocType 'Tag Link' +#: frappe/desk/doctype/tag_link/tag_link.json +msgid "Document Title" +msgstr "" + +#. Label of the document_type (Link) field in DocType 'Assignment Rule' +#. Label of the reference_type (Link) field in DocType 'Milestone' +#. Label of the reminder_doctype (Link) field in DocType 'Reminder' +#. Label of the reference_doctype (Link) field in DocType 'Data Import' +#. Label of the share_doctype (Link) field in DocType 'DocShare' +#. Label of the document_type (Link) field in DocType 'Document Naming Rule' +#. Label of the ref_doctype (Link) field in DocType 'Session Default' +#. Label of the document_type (Link) field in DocType 'User Document Type' +#. Label of the document_type (Link) field in DocType 'User Select Document +#. Type' +#. Label of the document_type (Link) field in DocType 'DocType Layout' +#. Label of the document_type (Link) field in DocType 'Bulk Update' +#. Label of the document_type (Link) field in DocType 'Dashboard Chart' +#. Label of the document_type (Link) field in DocType 'Global Search DocType' +#. Label of the document_type (Link) field in DocType 'Notification Log' +#. Label of the document_type (Link) field in DocType 'Number Card' +#. Option for the 'Type' (Select) field in DocType 'Number Card' +#. Label of the document_type (Link) field in DocType 'Tag Link' +#. Label of the document_type (Link) field in DocType 'Notification' +#. Label of the document_type (Link) field in DocType 'Print Format Field +#. Template' +#. Label of the document_type (Data) field in DocType 'Personal Data Deletion +#. Step' +#. Label of the document_type (Link) field in DocType 'Workflow' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/session_default/session_default.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_permission/user_permission_list.js:26 +#: frappe/core/doctype/user_select_document_type/user_select_document_type.json +#: frappe/core/page/permission_manager/permission_manager.js:49 +#: frappe/core/page/permission_manager/permission_manager.js:218 +#: frappe/core/page/permission_manager/permission_manager.js:449 +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/tag_link/tag_link.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/public/js/frappe/roles_editor.js:68 +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Document Type" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:60 +msgid "Document Type and Function are required to create a number card" +msgstr "" + +#: frappe/permissions.py:149 +msgid "Document Type is not importable" +msgstr "" + +#: frappe/permissions.py:145 +msgid "Document Type is not submittable" +msgstr "" + +#. Label of the document_type (Link) field in DocType 'Milestone Tracker' +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Document Type to Track" +msgstr "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:40 +msgid "Document Type {0} has been repeated." +msgstr "" + +#. Label of the user_doctypes (Table) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Document Types" +msgstr "" + +#. Label of the select_doctypes (Table) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Document Types (Select Permissions Only)" +msgstr "" + +#. Label of the section_break_2 (Section Break) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "Document Types and Permissions" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.py:163 +#: frappe/model/document.py:1959 +msgid "Document Unlocked" +msgstr "" + +#: frappe/desk/form/document_follow.py:56 +msgid "Document follow is not enabled for this user." +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1302 +msgid "Document has been cancelled" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1301 +msgid "Document has been submitted" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1300 +msgid "Document is in draft state" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "Document is only editable by users with role" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:182 +msgid "Document not Relinked" +msgstr "" + +#: frappe/model/rename_doc.py:229 frappe/public/js/frappe/form/toolbar.js:155 +msgid "Document renamed from {0} to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:164 +msgid "Document renaming from {0} to {1} has been queued" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:397 +msgid "Document type is required to create a dashboard chart" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:45 +msgid "Document {0} Already Restored" +msgstr "" + +#: frappe/workflow/doctype/workflow_action/workflow_action.py:203 +msgid "Document {0} has been set to state {1} by {2}" +msgstr "" + +#: frappe/client.py:430 +msgid "Document {0} {1} does not exist" +msgstr "" + +#. Label of the documentation (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Documentation Link" +msgstr "" + +#. Label of the documentation_url (Data) field in DocType 'DocField' +#. Label of the documentation_url (Data) field in DocType 'Module Onboarding' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Documentation URL" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_dashboard.html:17 +msgid "Documents" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:25 +msgid "Documents restored successfully" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:33 +msgid "Documents that failed to restore" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document_list.js:29 +msgid "Documents that were already restored" +msgstr "" + +#. Name of a DocType +#. Label of the domain (Data) field in DocType 'Domain' +#. Label of the domain (Link) field in DocType 'Has Domain' +#. Label of the domain (Link) field in DocType 'Email Account' +#: frappe/core/doctype/domain/domain.json +#: frappe/core/doctype/has_domain/has_domain.json +#: frappe/email/doctype/email_account/email_account.json +msgid "Domain" +msgstr "" + +#. Label of the domain_name (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Domain Name" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/domain_settings/domain_settings.json +msgid "Domain Settings" +msgstr "" + +#. Label of the domains_html (HTML) field in DocType 'Domain Settings' +#: frappe/core/doctype/domain_settings/domain_settings.json +msgid "Domains HTML" +msgstr "" + +#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Custom +#. Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Don't HTML Encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:272 +msgid "Don't Import" +msgstr "" + +#. Label of the override_status (Check) field in DocType 'Workflow' +#. Label of the avoid_status_override (Check) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow/workflow.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Don't Override Status" +msgstr "" + +#. Label of the mute_emails (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Don't Send Emails" +msgstr "" + +#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'DocField' +#. Description of the 'Ignore XSS Filter' (Check) field in DocType 'Customize +#. Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Don't encode HTML tags like <script> or just characters like < or >, as they could be intentionally used in this field" +msgstr "" + +#: frappe/www/login.html:139 frappe/www/login.html:155 +#: frappe/www/update-password.html:70 +msgid "Don't have an account?" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:16 +#: frappe/public/js/frappe/ui/messages.js:238 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:17 +#: frappe/public/js/print_format_builder/HTMLEditor.vue:5 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52 +msgid "Done" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Donut" +msgstr "" + +#: frappe/public/js/form_builder/components/EditableInput.vue:43 +msgid "Double click to edit label" +msgstr "" + +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:8 +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Download" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:247 +msgctxt "Export report" +msgid "Download" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/page/backups/backups.js:4 +msgid "Download Backups" +msgstr "" + +#: frappe/templates/emails/download_data.html:6 +msgid "Download Data" +msgstr "" + +#: frappe/desk/page/backups/backups.js:14 +msgid "Download Files Backup" +msgstr "" + +#: frappe/templates/emails/download_data.html:9 +msgid "Download Link" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:134 +msgid "Download PDF" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:840 +msgid "Download Report" +msgstr "" + +#. Label of the download_template (Button) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Download Template" +msgstr "" + +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:61 +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.py:69 +#: frappe/website/doctype/personal_data_download_request/test_personal_data_download_request.py:48 +msgid "Download Your Data" +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.js:49 +msgid "Download as CSV" +msgstr "" + +#: frappe/contacts/doctype/contact/contact.js:98 +msgid "Download vCard" +msgstr "" + +#: frappe/contacts/doctype/contact/contact_list.js:4 +msgid "Download vCards" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:46 +msgid "Dr" +msgstr "" + +#: frappe/public/js/frappe/model/indicator.js:73 +#: frappe/public/js/frappe/ui/filters/filter.js:538 +msgid "Draft" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/blocks/header.js:46 +#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:136 +#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:44 +#: frappe/public/js/frappe/widgets/base_widget.js:33 +msgid "Drag" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:189 +msgid "Drag & Drop a section here from another tab" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:14 +msgid "Drag and drop files here or upload from" +msgstr "" + +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:76 +msgid "Drag columns to set order. Column width is set in percentage. The total width should not be more than 100. Columns marked in red will be removed." +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:3 +msgid "Drag elements from the sidebar to add. Drag them back to trash." +msgstr "" + +#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:296 +msgid "Drag to add state" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 +msgid "Drop files here" +msgstr "" + +#. Label of the section_break_2 (Section Break) field in DocType 'Navbar +#. Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Dropdowns" +msgstr "" + +#. Label of the date (Date) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +msgid "Due Date" +msgstr "" + +#. Label of the due_date_based_on (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Due Date Based On" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +#: frappe/public/js/frappe/form/toolbar.js:422 +msgid "Duplicate" +msgstr "" + +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:53 +msgid "Duplicate Entry" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:144 +msgid "Duplicate Filter Name" +msgstr "" + +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 +msgid "Duplicate Name" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "Duplicate Row" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:209 +msgid "Duplicate current row" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:245 +msgid "Duplicate field" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the duration (Float) field in DocType 'Recorder' +#. Label of the duration (Float) field in DocType 'Recorder Query' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/recorder_query/recorder_query.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Duration" +msgstr "" + +#. Option for the 'Row Format' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Dynamic" +msgstr "" + +#. Label of the dynamic_filters_section (Section Break) field in DocType +#. 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Dynamic Filters" +msgstr "" + +#. Label of the dynamic_filters_json (Code) field in DocType 'Dashboard Chart' +#. Label of the dynamic_filters_json (Code) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Dynamic Filters JSON" +msgstr "" + +#. Label of the dynamic_filters_section (Section Break) field in DocType +#. 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Dynamic Filters Section" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Name of a DocType +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Dynamic Link" +msgstr "" + +#. Label of the dynamic_report_filters_section (Section Break) field in DocType +#. 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Dynamic Report Filters" +msgstr "" + +#. Label of the dynamic_route (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Dynamic Route" +msgstr "" + +#. Label of the dynamic_template (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Dynamic Template" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "ESC" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/page/dashboard_view/dashboard_view.js:169 +#: frappe/printing/page/print_format_builder/print_format_builder_start.html:8 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 +#: frappe/public/js/frappe/form/controls/markdown_editor.js:31 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 +#: frappe/public/js/frappe/views/workspace/workspace.js:64 +#: frappe/public/js/frappe/widgets/base_widget.js:64 +#: frappe/public/js/frappe/widgets/chart_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 +#: frappe/templates/discussions/reply_card.html:29 +#: frappe/templates/discussions/reply_section.html:29 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:46 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:84 +msgid "Edit" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2260 +msgctxt "Button in list view actions menu" +msgid "Edit" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:23 +msgctxt "Button in web form" +msgid "Edit" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:350 +msgctxt "Edit grid row" +msgid "Edit" +msgstr "" + +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:66 +msgid "Edit Address in Form" +msgstr "" + +#: frappe/templates/emails/auto_email_report.html:63 +msgid "Edit Auto Email Report Settings" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:38 +msgid "Edit Chart" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:50 +msgid "Edit Custom Block" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:727 +msgid "Edit Custom HTML" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:619 +msgid "Edit DocType" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1976 +msgctxt "Button in list view menu" +msgid "Edit DocType" +msgstr "" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:42 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:42 +msgid "Edit Existing" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:55 +msgid "Edit Filters" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:29 +msgid "Edit Footer" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:29 +msgid "Edit Format" +msgstr "" + +#: frappe/public/js/frappe/form/quick_entry.js:326 +msgid "Edit Full Form" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:27 +#: frappe/public/js/print_format_builder/Field.vue:83 +msgid "Edit HTML" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:9 +msgid "Edit Header" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:609 +#: frappe/printing/page/print_format_builder/print_format_builder_layout.html:8 +msgid "Edit Heading" +msgstr "" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:52 +msgid "Edit Letter Head" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormat.vue:35 +msgid "Edit Letter Head Footer" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:42 +msgid "Edit Links" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:44 +msgid "Edit Number Card" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:46 +msgid "Edit Onboarding" +msgstr "" + +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:24 +msgid "Edit Print Format" +msgstr "" + +#: frappe/www/me.html:38 +msgid "Edit Profile" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:173 +msgid "Edit Properties" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:48 +msgid "Edit Quick List" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:40 +msgid "Edit Shortcut" +msgstr "" + +#. Label of the edit_values (Button) field in DocType 'Web Page Block' +#. Label of the edit_navbar_template_values (Button) field in DocType 'Website +#. Settings' +#. Label of the edit_footer_template_values (Button) field in DocType 'Website +#. Settings' +#: frappe/public/js/frappe/utils/web_template.js:5 +#: frappe/website/doctype/web_page_block/web_page_block.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Edit Values" +msgstr "" + +#: frappe/desk/doctype/note/note.js:11 +msgid "Edit mode" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:254 +msgid "Edit the {0} Doctype" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:721 +msgid "Edit to add content" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:470 +msgctxt "Button in web form" +msgid "Edit your response" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:18 +msgid "Edit your workflow visually using the Workflow Builder." +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:683 +#: frappe/public/js/frappe/widgets/widget_dialog.js:52 +msgid "Edit {0}" +msgstr "" + +#. Label of the editable_grid (Check) field in DocType 'DocType' +#. Label of the editable_grid (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:58 +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Editable Grid" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Editing Row" +msgstr "" + +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:14 +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:20 +msgid "Editing {0}" +msgstr "" + +#. Description of the 'SMS Gateway URL' (Small Text) field in DocType 'SMS +#. Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Eg. smsgateway.com/api/send_sms.cgi" +msgstr "" + +#: frappe/rate_limiter.py:152 +msgid "Either key or IP flag is required." +msgstr "" + +#. Label of the element_selector (Data) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Element Selector" +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Label of the email (Check) field in DocType 'Custom DocPerm' +#. Label of the email (Check) field in DocType 'DocPerm' +#. Option for the 'Two Factor Authentication method' (Select) field in DocType +#. 'System Settings' +#. Label of the email_tab (Tab Break) field in DocType 'System Settings' +#. Label of the email (Data) field in DocType 'User' +#. Label of the email_settings (Section Break) field in DocType 'User' +#. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' +#. Label of the email (Data) field in DocType 'Event Participants' +#. Label of the email (Data) field in DocType 'Email Group Member' +#. Label of the email (Data) field in DocType 'Email Unsubscribe' +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/success_action/success_action.js:59 +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/desk/doctype/event_participants/event_participants.json +#: frappe/email/doctype/email_group_member/email_group_member.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/success_action.js:85 +#: frappe/public/js/frappe/form/toolbar.js:382 +#: frappe/templates/includes/comments/comments.html:25 +#: frappe/templates/signup.html:9 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +#: frappe/www/login.html:8 frappe/www/login.py:104 +msgid "Email" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Label of the email_account (Link) field in DocType 'Communication' +#. Label of the email_account (Link) field in DocType 'User Email' +#. Name of a DocType +#. Label of the email_account (Data) field in DocType 'Email Flag Queue' +#. Label of the email_account (Link) field in DocType 'Email Queue' +#. Label of the email_account (Link) field in DocType 'Unhandled Email' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/communication.js:199 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_email/user_email.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Email Account" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:343 +msgid "Email Account Disabled." +msgstr "" + +#. Label of the email_account_name (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Email Account Name" +msgstr "" + +#: frappe/core/doctype/user/user.py:749 +msgid "Email Account added multiple times" +msgstr "" + +#: frappe/email/smtp.py:43 +msgid "Email Account not setup. Please create a new Email Account from Settings > Email Account" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:576 +msgid "Email Account {0} Disabled" +msgstr "" + +#. Label of the email_id (Data) field in DocType 'Address' +#. Label of the email_id (Data) field in DocType 'Contact' +#. Label of the email_id (Data) field in DocType 'Email Account' +#. Label of the email_id (Data) field in DocType 'Google Contacts' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:485 +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/www/complete_signup.html:11 frappe/www/login.html:184 +#: frappe/www/login.html:216 +msgid "Email Address" +msgstr "" + +#. Description of the 'Email Address' (Data) field in DocType 'Google Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Email Address whose Google Contacts are to be synced." +msgstr "" + +#: frappe/email/doctype/email_group/email_group.js:43 +msgid "Email Addresses" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Email Domain" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Email Flag Queue" +msgstr "" + +#. Label of the email_footer_address (Small Text) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Email Footer Address" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#. Label of the email_group (Link) field in DocType 'Email Group Member' +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/email_group/email_group.json +#: frappe/email/doctype/email_group_member/email_group_member.json +msgid "Email Group" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/email_group_member/email_group_member.json +msgid "Email Group Member" +msgstr "" + +#. Label of the email_header (Data) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Email Header" +msgstr "" + +#. Label of the email_id (Data) field in DocType 'Contact Email' +#. Label of the email_id (Data) field in DocType 'User Email' +#. Label of the email_id (Data) field in DocType 'Email Rule' +#: frappe/contacts/doctype/contact/contact.py:131 +#: frappe/contacts/doctype/contact_email/contact_email.json +#: frappe/core/doctype/user_email/user_email.json +#: frappe/email/doctype/email_rule/email_rule.json +msgid "Email ID" +msgstr "" + +#. Label of the email_ids (Table) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Email IDs" +msgstr "" + +#. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Email Id" +msgstr "" + +#. Label of the email_inbox (Section Break) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Email Inbox" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Email Queue" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +msgid "Email Queue Recipient" +msgstr "" + +#: frappe/email/queue.py:161 +msgid "Email Queue flushing aborted due to too many failures." +msgstr "" + +#. Description of a DocType +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Email Queue records." +msgstr "" + +#. Label of the email_reply_help (HTML) field in DocType 'Email Template' +#: frappe/email/doctype/email_template/email_template.json +msgid "Email Reply Help" +msgstr "" + +#. Label of the email_retry_limit (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Email Retry Limit" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/email_rule/email_rule.json +msgid "Email Rule" +msgstr "" + +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" +msgstr "" + +#. Label of the email_settings_sb (Section Break) field in DocType 'DocType' +#. Label of the email_settings_section (Section Break) field in DocType +#. 'Customize Form' +#. Label of the column_break_3 (Section Break) field in DocType 'Notification +#. Settings' +#. Label of the email_settings (Section Break) field in DocType 'Auto Email +#. Report' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Email Settings" +msgstr "" + +#. Label of the email_signature (Text Editor) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Email Signature" +msgstr "" + +#. Label of the email_status (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Email Status" +msgstr "" + +#. Label of the email_sync_option (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Email Sync Option" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Label of the email_template (Link) field in DocType 'Communication' +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/public/js/frappe/views/communication.js:107 +msgid "Email Template" +msgstr "" + +#. Label of the enable_email_threads_on_assigned_document (Check) field in +#. DocType 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Email Threads on Assigned Document" +msgstr "" + +#. Label of the email_to (Small Text) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Email To" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +msgid "Email Unsubscribe" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:342 +msgid "Email has been marked as spam" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:355 +msgid "Email has been moved to trash" +msgstr "" + +#: frappe/core/doctype/user/user.js:266 +msgid "Email is mandatory to create User Email" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:822 +msgid "Email not sent to {0} (unsubscribed / disabled)" +msgstr "" + +#: frappe/utils/oauth.py:163 +msgid "Email not verified with {0}" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue.js:19 +msgid "Email queue is currently suspended. Resume to automatically send other emails." +msgstr "" + +#. Label of the section_break_udjs (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Emails" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:216 +msgid "Emails Pulled" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:934 +msgid "Emails are already being pulled from this account." +msgstr "" + +#: frappe/email/queue.py:138 +msgid "Emails are muted" +msgstr "" + +#. Description of the 'Send Email Alert' (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Emails will be sent with next possible workflow actions" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:34 +msgid "Embed code copied" +msgstr "" + +#: frappe/database/query.py:1539 +msgid "Empty alias is not allowed" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:285 +msgid "Empty column" +msgstr "" + +#: frappe/database/query.py:1457 +msgid "Empty string arguments are not allowed" +msgstr "" + +#. Label of the enable (Check) field in DocType 'Google Calendar' +#. Label of the enable (Check) field in DocType 'Google Contacts' +#. Label of the enable (Check) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "Enable" +msgstr "" + +#. Label of the enable_address_autocompletion (Check) field in DocType +#. 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Enable Address Autocompletion" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 +msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" +msgstr "" + +#. Label of the enable_auto_reply (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Enable Auto Reply" +msgstr "" + +#. Label of the enable_automatic_linking (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Enable Automatic Linking in Documents" +msgstr "" + +#. Label of the enable_comments (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Enable Comments" +msgstr "" + +#. Label of the enable_dynamic_client_registration (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Enable Dynamic Client Registration" +msgstr "" + +#. Label of the enable_email_notifications (Check) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Enable Email Notifications" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:106 +#: frappe/integrations/doctype/google_contacts/google_contacts.py:36 +#: frappe/website/doctype/website_settings/website_settings.py:129 +msgid "Enable Google API in Google Settings." +msgstr "" + +#. Label of the enable_google_indexing (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Enable Google indexing" +msgstr "" + +#. Label of the enable_incoming (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:225 +msgid "Enable Incoming" +msgstr "" + +#. Label of the enable_onboarding (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Enable Onboarding" +msgstr "" + +#. Label of the enable_outgoing (Check) field in DocType 'User Email' +#. Label of the enable_outgoing (Check) field in DocType 'Email Account' +#: frappe/core/doctype/user_email/user_email.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_account/email_account.py:233 +msgid "Enable Outgoing" +msgstr "" + +#. Label of the enable_password_policy (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Enable Password Policy" +msgstr "" + +#. Label of the enable_prepared_report (Check) field in DocType 'Role +#. Permission for Page and Report' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgid "Enable Prepared Report" +msgstr "" + +#. Label of the enable_print_server (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Enable Print Server" +msgstr "" + +#. Label of the enable_push_notification_relay (Check) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Enable Push Notification Relay" +msgstr "" + +#. Label of the enable_rate_limit (Check) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Enable Rate Limit" +msgstr "" + +#. Label of the enable_raw_printing (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Enable Raw Printing" +msgstr "" + +#: frappe/core/doctype/report/report.js:39 +msgid "Enable Report" +msgstr "" + +#. Label of the enable_scheduler (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Enable Scheduled Jobs" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:23 +msgid "Enable Scheduler" +msgstr "" + +#. Label of the enable_security (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Enable Security" +msgstr "" + +#. Label of the enable_social_login (Check) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Enable Social Login" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.js:139 +msgid "Enable Tracking Page Views" +msgstr "" + +#. Label of the enable_two_factor_auth (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/twofactor.py:438 +msgid "Enable Two Factor Auth" +msgstr "" + +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.py:28 +msgid "Enable developer mode to create a standard Print Template" +msgstr "" + +#: frappe/website/doctype/web_template/web_template.py:33 +msgid "Enable developer mode to create a standard Web Template" +msgstr "" + +#. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Enable if on click\n" +"opens modal." +msgstr "" + +#. Label of the enable_view_tracking (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Enable in-app website tracking" +msgstr "" + +#. Label of the enabled (Check) field in DocType 'Language' +#. Label of the enabled (Check) field in DocType 'User' +#. Label of the enabled (Check) field in DocType 'Client Script' +#. Label of the enabled (Check) field in DocType 'Notification Settings' +#. Label of the enabled (Check) field in DocType 'Auto Email Report' +#. Label of the enabled (Check) field in DocType 'Notification' +#. Label of the enabled (Check) field in DocType 'Currency' +#. Label of the enabled (Check) field in DocType 'LDAP Settings' +#. Label of the enabled (Check) field in DocType 'Webhook' +#. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/user/user.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/notification/notification.json +#: frappe/geo/doctype/currency/currency.json +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/public/js/frappe/model/indicator.js:110 +#: frappe/public/js/frappe/model/indicator.js:121 +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Enabled" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:29 +msgid "Enabled Scheduler" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:1010 +msgid "Enabled email inbox for user {0}" +msgstr "" + +#. Description of the 'Is Calendar and Gantt' (Check) field in DocType +#. 'DocType' +#. Description of the 'Is Calendar and Gantt' (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Enables Calendar and Gantt views." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:295 +msgid "Enabling auto reply on an incoming email account will send automated replies to all the synchronized emails. Do you wish to continue?" +msgstr "" + +#. Description of a DocType +#. Description of the 'Relay Settings' (Section Break) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "" + +#. Description of the 'Queue in Background (BETA)' (Check) field in DocType +#. 'DocType' +#. Description of the 'Queue in Background (BETA)' (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Enabling this will submit documents in background" +msgstr "" + +#. Label of the encrypt_backup (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Encrypt Backups" +msgstr "" + +#: frappe/utils/password.py:196 +msgid "Encryption key is in invalid format!" +msgstr "" + +#: frappe/utils/password.py:211 +msgid "Encryption key is invalid! Please check site_config.json" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:51 +msgid "End" +msgstr "" + +#. Label of the end_date (Date) field in DocType 'Auto Repeat' +#. Label of the end_date (Date) field in DocType 'Audit Trail' +#. Label of the end_date (Datetime) field in DocType 'Web Page' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/public/js/frappe/utils/common.js:416 +#: frappe/website/doctype/web_page/web_page.json +msgid "End Date" +msgstr "" + +#. Label of the end_date_field (Select) field in DocType 'Calendar View' +#: frappe/desk/doctype/calendar_view/calendar_view.json +msgid "End Date Field" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.py:208 +msgid "End Date cannot be before Start Date!" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + +#. Label of the ended_at (Datetime) field in DocType 'RQ Job' +#. Label of the ended_at (Datetime) field in DocType 'Submission Queue' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Ended At" +msgstr "" + +#. Label of the sb_endpoints_section (Section Break) field in DocType +#. 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Endpoints" +msgstr "" + +#. Label of the ends_on (Datetime) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Ends on" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Energy Point" +msgstr "" + +#. Label of the enqueued_by (Data) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Enqueued By" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:125 +msgid "Enqueued creation of indexes" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108 +msgid "Ensure the user and group search paths are correct." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:109 +msgid "Enter Client Id and Client Secret in Google Settings." +msgstr "" + +#: frappe/templates/includes/login/login.js:351 +msgid "Enter Code displayed in OTP App." +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:777 +msgid "Enter Email Recipient(s)" +msgstr "" + +#. Label of the doc_type (Link) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Enter Form Type" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:94 +msgctxt "Title of prompt dialog" +msgid "Enter Value" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:60 +msgid "Enter a name for this {0}" +msgstr "" + +#. Description of the 'User Defaults' (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Enter default value fields (keys) and values. If you add multiple values for a field, the first one will be picked. These defaults are also used to set \"match\" permission rules. To see list of fields, go to \"Customize Form\"." +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:111 +msgid "Enter folder name" +msgstr "" + +#. Description of the 'Static Parameters' (Table) field in DocType 'SMS +#. Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)" +msgstr "" + +#. Description of the 'Message Parameter' (Data) field in DocType 'SMS +#. Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Enter url parameter for message" +msgstr "" + +#. Description of the 'Receiver Parameter' (Data) field in DocType 'SMS +#. Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Enter url parameter for receiver nos" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:341 +msgid "Enter your password" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:22 +msgid "Entity Name" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:9 +msgid "Entity Type" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:16 +msgid "Equals" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#. Label of the error (Code) field in DocType 'Error Log' +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#. Label of the error (Code) field in DocType 'Email Queue' +#. Label of the error (Code) field in DocType 'Email Queue Recipient' +#. Label of the error (Code) field in DocType 'Integration Request' +#. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +#: frappe/desk/page/backups/backups.js:37 +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/ui/messages.js:22 +msgid "Error" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:264 +msgctxt "Title of error message in web form" +msgid "Error" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/error_log/error_log.json +msgid "Error Log" +msgstr "" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Error Logs" +msgstr "" + +#. Label of the error_message (Text) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Error Message" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:156 +msgid "Error connecting to QZ Tray Application...

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

    Click here to Download and install QZ Tray.
    Click here to learn more about Raw Printing." +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:32 +msgid "Error connecting via IMAP/POP3: {e}" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:33 +msgid "Error connecting via SMTP: {e}" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:101 +msgid "Error has occurred in {0}" +msgstr "" + +#: frappe/public/js/frappe/form/script_manager.js:199 +msgid "Error in Client Script" +msgstr "" + +#: frappe/public/js/frappe/form/script_manager.js:256 +msgid "Error in Client Script." +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:21 +msgid "Error in Header/Footer Script" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 +msgid "Error in Notification" +msgstr "" + +#: frappe/utils/pdf.py:59 +msgid "Error in print format on line {0}: {1}" +msgstr "" + +#: frappe/api/v2.py:156 +msgid "Error in {0}.get_list: {1}" +msgstr "" + +#: frappe/database/query.py:231 +msgid "Error parsing nested filters: {0}" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:670 +msgid "Error while connecting to email account {0}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:779 +msgid "Error while evaluating Notification {0}. Please fix your template." +msgstr "" + +#: frappe/model/base_document.py:860 +msgid "Error: Data missing in table {0}" +msgstr "" + +#: frappe/model/base_document.py:870 +msgid "Error: Value missing for {0}: {1}" +msgstr "" + +#: frappe/model/base_document.py:864 +msgid "Error: {0} Row #{1}: Value missing for: {2}" +msgstr "" + +#. Label of the errors_generated_in_last_1_day_section (Section Break) field in +#. DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Errors" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Name of a DocType +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json +msgid "Event" +msgstr "" + +#. Label of the event_category (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Event Category" +msgstr "" + +#. Label of the event_frequency (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Event Frequency" +msgstr "" + +#. Label of the event_participants (Table) field in DocType 'Event' +#. Name of a DocType +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/event_participants/event_participants.json +msgid "Event Participants" +msgstr "" + +#. Label of the enable_email_event_reminders (Check) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Event Reminders" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:493 +#: frappe/integrations/doctype/google_calendar/google_calendar.py:577 +msgid "Event Synced with Google Calendar." +msgstr "" + +#. Label of the event_type (Data) field in DocType 'Recorder' +#. Label of the event_type (Select) field in DocType 'Event' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/desk/doctype/event/event.json +msgid "Event Type" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:56 +msgid "Events" +msgstr "" + +#: frappe/desk/doctype/event/event.py:278 +msgid "Events in Today's Calendar" +msgstr "" + +#. Label of the everyone (Check) field in DocType 'DocShare' +#: frappe/core/doctype/docshare/docshare.json +#: frappe/public/js/frappe/form/templates/set_sharing.html:11 +msgid "Everyone" +msgstr "" + +#. Description of the 'Custom Options' (Code) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"]" +msgstr "" + +#. Label of the exact_copies (Int) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Exact Copies" +msgstr "" + +#. Label of the example (HTML) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Example" +msgstr "" + +#. Description of the 'Default Portal Home' (Data) field in DocType 'Portal +#. Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Example: \"/desk\"" +msgstr "" + +#. Description of the 'Path' (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Example: #Tree/Account" +msgstr "" + +#. Description of the 'Digits' (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Example: 00001" +msgstr "" + +#. Description of the 'Session Expiry (idle timeout)' (Data) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Example: Setting this to 24:00 will log out a user if they are not active for 24:00 hours." +msgstr "" + +#. Description of the 'Description' (Small Text) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Example: {{ subject }}" +msgstr "" + +#. Option for the 'File Type' (Select) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Excel" +msgstr "" + +#: frappe/public/js/frappe/form/controls/password.js:90 +msgid "Excellent" +msgstr "" + +#. Label of the exception (Text) field in DocType 'Data Import Log' +#. Label of the exc_info (Code) field in DocType 'RQ Job' +#. Label of the exception (Long Text) field in DocType 'Submission Queue' +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Exception" +msgstr "" + +#. Label of the execute_section (Section Break) field in DocType 'System +#. Console' +#: frappe/desk/doctype/system_console/system_console.js:17 +#: frappe/desk/doctype/system_console/system_console.js:22 +#: frappe/desk/doctype/system_console/system_console.json +msgid "Execute" +msgstr "" + +#: frappe/desk/doctype/system_console/system_console.js:10 +msgid "Execute Console script" +msgstr "" + +#: frappe/public/js/frappe/ui/dropdown_console.js:132 +msgid "Executing Code" +msgstr "" + +#: frappe/desk/doctype/system_console/system_console.js:18 +msgid "Executing..." +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2140 +msgid "Execution Time: {0} sec" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Executive" +msgstr "" + +#. Label of the existing_role (Link) field in DocType 'Role Replication' +#: frappe/core/doctype/role_replication/role_replication.json +msgid "Existing Role" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:115 +#: frappe/public/js/frappe/views/treeview.js:127 +#: frappe/public/js/frappe/views/treeview.js:137 +#: frappe/public/js/frappe/widgets/base_widget.js:159 +msgid "Expand" +msgstr "" + +#: frappe/public/js/frappe/form/controls/code.js:185 +msgctxt "Enlarge code field." +msgid "Expand" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/treeview.js:133 +msgid "Expand All" +msgstr "" + +#: frappe/database/query.py:354 +msgid "Expected 'and' or 'or' operator, found: {0}" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:23 +msgid "Experimental" +msgstr "" + +#. Option for the 'Level' (Select) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Expert" +msgstr "" + +#. Label of the expiration_time (Datetime) field in DocType 'OAuth +#. Authorization Code' +#. Label of the expiration_time (Datetime) field in DocType 'OAuth Bearer +#. Token' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "Expiration time" +msgstr "" + +#. Label of the expire_notification_on (Datetime) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Expire Notification On" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Expired" +msgstr "" + +#. Label of the expires_in (Int) field in DocType 'OAuth Bearer Token' +#. Label of the expires_in (Int) field in DocType 'Token Cache' +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Expires In" +msgstr "" + +#. Label of the expires_on (Date) field in DocType 'Document Share Key' +#: frappe/core/doctype/document_share_key/document_share_key.json +msgid "Expires On" +msgstr "" + +#. Label of the lifespan_qrcode_image (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Expiry time of QR Code Image Page" +msgstr "" + +#. Label of the export (Check) field in DocType 'Custom DocPerm' +#. Label of the export (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/recorder/recorder_list.js:37 +#: frappe/public/js/frappe/data_import/data_exporter.js:92 +#: frappe/public/js/frappe/data_import/data_exporter.js:243 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 +#: frappe/public/js/frappe/widgets/chart_widget.js:315 +msgid "Export" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2282 +msgctxt "Button in list view actions menu" +msgid "Export" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:245 +msgid "Export 1 record" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:262 +msgid "Export Custom Permissions" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:242 +msgid "Export Customizations" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +#: frappe/public/js/frappe/data_import/data_exporter.js:14 +msgid "Export Data" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:86 +#: frappe/public/js/frappe/data_import/import_preview.js:199 +msgid "Export Errored Rows" +msgstr "" + +#. Label of the export_from (Data) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Export From" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:518 +msgid "Export Import Log" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:245 +msgctxt "Export report" +msgid "Export Report: {0}" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:26 +msgid "Export Type" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1640 +msgid "Export all matching rows?" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1650 +msgid "Export all {0} rows?" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:154 +msgid "Export as zip" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + +#: frappe/public/js/frappe/utils/tools.js:11 +msgid "Export not allowed. You need {0} role to export." +msgstr "" + +#. Description of the 'Export without main header' (Check) field in DocType +#. 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Export the data without any header notes and column descriptions" +msgstr "" + +#. Label of the export_without_main_header (Check) field in DocType 'Data +#. Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Export without main header" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:247 +msgid "Export {0} records" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:263 +msgid "Exported permissions will be force-synced on every migrate overriding any other customization." +msgstr "" + +#. Label of the expose_recipients (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Expose Recipients" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Expression" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Expression (old style)" +msgstr "" + +#. Description of the 'Condition' (Data) field in DocType 'Notification +#. Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Expression, Optional" +msgstr "" + +#. Label of the external_link (Data) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/views/workspace/workspace.js:426 +msgid "External Link" +msgstr "" + +#. Label of the section_break_18 (Section Break) field in DocType 'Connected +#. App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Extra Parameters" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Facebook" +msgstr "" + +#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Fail" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' +#. Option for the 'Status' (Select) field in DocType 'Submission Queue' +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Failed" +msgstr "" + +#. Label of the failed_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Failed Emails" +msgstr "" + +#. Label of the failed_job_count (Int) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Failed Job Count" +msgstr "" + +#. Label of the failed_jobs (Int) field in DocType 'System Health Report +#. Workers' +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "Failed Jobs" +msgstr "" + +#. Label of the failed_logins (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Failed Logins (Last 30 days)" +msgstr "" + +#: frappe/model/workflow.py:362 +msgid "Failed Transactions" +msgstr "" + +#: frappe/utils/synchronization.py:46 +msgid "Failed to aquire lock: {}. Lock may be held by another process." +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:359 +msgid "Failed to change password." +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:232 +#: frappe/desk/page/setup_wizard/setup_wizard.py:42 +msgid "Failed to complete setup" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:141 +msgid "Failed to compute request body: {}" +msgstr "" + +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:46 +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:48 +msgid "Failed to connect to server" +msgstr "" + +#: frappe/auth.py:701 +msgid "Failed to decode token, please provide a valid base64-encoded token." +msgstr "" + +#: frappe/utils/password.py:210 +msgid "Failed to decrypt key {0}" +msgstr "" + +#: frappe/desk/reportview.py:635 +msgid "Failed to delete {0} documents: {1}" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:33 +msgid "Failed to enable scheduler: {0}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 +msgid "Failed to evaluate conditions: {}" +msgstr "" + +#: frappe/types/exporter.py:205 +msgid "Failed to export python type hints" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:249 +msgid "Failed to generate names from the series" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:75 +msgid "Failed to generate preview of series" +msgstr "" + +#: frappe/handler.py:76 +msgid "Failed to get method for command {0} with {1}" +msgstr "" + +#: frappe/api/v2.py:46 +msgid "Failed to get method {0} with {1}" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:59 +msgid "Failed to get site info" +msgstr "" + +#: frappe/model/virtual_doctype.py:63 +msgid "Failed to import virtual doctype {}, is controller file present?" +msgstr "" + +#: frappe/utils/image.py:75 +msgid "Failed to optimize image: {0}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:122 +msgid "Failed to render message: {}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:140 +msgid "Failed to render subject: {}" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:94 +msgid "Failed to request login to Frappe Cloud" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue.py:297 +msgid "Failed to send email with subject:" +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.py:43 +msgid "Failed to send notification email" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.py:24 +msgid "Failed to update global settings" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:74 +msgid "Failed while calling API {0}" +msgstr "" + +#. Label of the failing_scheduled_jobs (Table) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Failing Scheduled Jobs (last 7 days)" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:459 +msgid "Failure" +msgstr "" + +#. Label of the failure_rate (Percent) field in DocType 'System Health Report +#. Failing Jobs' +#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json +msgid "Failure Rate" +msgstr "" + +#. Label of the favicon (Attach) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "FavIcon" +msgstr "" + +#. Label of the fax (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Fax" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:33 +msgid "Feedback" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:29 +msgid "Female" +msgstr "" + +#. Label of the fetch_from (Small Text) field in DocType 'DocField' +#. Label of the fetch_from (Small Text) field in DocType 'Custom Field' +#. Label of the fetch_from (Small Text) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:29 +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:34 +msgid "Fetch From" +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:15 +msgid "Fetch Images" +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:13 +msgid "Fetch attached images from document" +msgstr "" + +#. Label of the fetch_if_empty (Check) field in DocType 'DocField' +#. Label of the fetch_if_empty (Check) field in DocType 'Custom Field' +#. Label of the fetch_if_empty (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Fetch on Save if Empty" +msgstr "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:61 +msgid "Fetching default Global Search documents." +msgstr "" + +#. Label of the field (Select) field in DocType 'Assignment Rule' +#. Label of the field (Select) field in DocType 'Document Naming Rule +#. Condition' +#. Label of the field (Select) field in DocType 'Bulk Update' +#. Label of the report_field (Select) field in DocType 'Number Card' +#. Label of the field (Select) field in DocType 'Onboarding Step' +#. Label of the fieldname (Select) field in DocType 'Web Form Field' +#. Label of the fieldname (Select) field in DocType 'Web Form List Column' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +#: frappe/core/doctype/permission_log/permission_log.js:12 +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/public/js/frappe/list/bulk_operations.js:327 +#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 +#: frappe/public/js/frappe/views/reports/query_report.js:236 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +msgid "Field" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:418 +msgid "Field \"route\" is mandatory for Web Views" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1527 +msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.js:17 +msgid "Field \"value\" is mandatory. Please specify value to be updated" +msgstr "" + +#. Label of the description (Text) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Field Description" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1078 +msgid "Field Missing" +msgstr "" + +#. Label of the field_name (Data) field in DocType 'Property Setter' +#. Label of the field_name (Select) field in DocType 'Kanban Board' +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +msgid "Field Name" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:141 +msgid "Field Orientation (Left-Right)" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:148 +msgid "Field Orientation (Top-Down)" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:233 +#: frappe/public/js/print_format_builder/utils.js:69 +msgid "Field Template" +msgstr "" + +#. Label of the fieldtype (Select) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/templates/form_grid/fields.html:40 +msgid "Field Type" +msgstr "" + +#: frappe/desk/reportview.py:202 +msgid "Field not permitted in query" +msgstr "" + +#. Description of the 'Workflow State Field' (Data) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)" +msgstr "" + +#. Label of the track_field (Select) field in DocType 'Milestone Tracker' +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Field to Track" +msgstr "" + +#: frappe/custom/doctype/property_setter/property_setter.py:51 +msgid "Field type cannot be changed for {0}" +msgstr "" + +#: frappe/database/database.py:919 +msgid "Field {0} does not exist on {1}" +msgstr "" + +#: frappe/desk/form/meta.py:184 +msgid "Field {0} is referring to non-existing doctype {1}." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1756 +msgid "Field {0} not found." +msgstr "" + +#: frappe/email/doctype/notification/notification.py:547 +msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" +msgstr "" + +#. Label of the fieldname (Data) field in DocType 'Report Column' +#. Label of the fieldname (Data) field in DocType 'Report Filter' +#. Label of the fieldname (Data) field in DocType 'Custom Field' +#. Label of the fieldname (Select) field in DocType 'DocType Layout Field' +#. Label of the fieldname (Select) field in DocType 'Form Tour Step' +#. Label of the fieldname (Select) field in DocType 'Webhook Data' +#. Label of the fieldname (Data) field in DocType 'Web Template Field' +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.js:120 +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/integrations/doctype/webhook_data/webhook_data.json +#: frappe/public/js/frappe/form/grid_row.js:455 +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Fieldname" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:271 +msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1077 +msgid "Fieldname called {0} must exist to enable autonaming" +msgstr "" + +#: frappe/database/schema.py:131 frappe/database/schema.py:408 +msgid "Fieldname is limited to 64 characters ({0})" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:197 +msgid "Fieldname not set for Custom Field" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:107 +msgid "Fieldname which will be the DocType for this link field." +msgstr "" + +#: frappe/public/js/form_builder/store.js:175 +msgid "Fieldname {0} appears multiple times" +msgstr "" + +#: frappe/database/schema.py:398 +msgid "Fieldname {0} cannot have special characters like {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1921 +msgid "Fieldname {0} conflicting with meta object" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:497 +#: frappe/public/js/form_builder/utils.js:302 +msgid "Fieldname {0} is restricted" +msgstr "" + +#. Label of the fields (Table) field in DocType 'DocType' +#. Label of the fields_section (Section Break) field in DocType 'DocType' +#. Label of the fields_tab (Tab Break) field in DocType 'DocType' +#. Label of the fields_section_break (Section Break) field in DocType +#. 'Customize Form' +#. Label of the fields (Table) field in DocType 'Customize Form' +#. Label of the fields (Table) field in DocType 'DocType Layout' +#. Label of the fields (Code) field in DocType 'Kanban Board' +#. Label of the fields_html (HTML) field in DocType 'List View Settings' +#. Label of the fields (Code) field in DocType 'List View Settings' +#. Label of the fields (Small Text) field in DocType 'Personal Data Deletion +#. Step' +#. Label of the fields (Table) field in DocType 'Web Template' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +#: frappe/public/js/frappe/list/list_settings.js:133 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +#: frappe/website/doctype/web_template/web_template.json +msgid "Fields" +msgstr "" + +#. Label of the fields_multicheck (HTML) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Fields Multicheck" +msgstr "" + +#: frappe/core/doctype/file/file.py:431 +msgid "Fields `file_name` or `file_url` must be set for File" +msgstr "" + +#: frappe/model/db_query.py:146 +msgid "Fields must be a list or tuple when as_list is enabled" +msgstr "" + +#: frappe/database/query.py:613 +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 "" + +#. Label of the fieldtype (Select) field in DocType 'Report Column' +#. Label of the fieldtype (Select) field in DocType 'Report Filter' +#. Label of the fieldtype (Data) field in DocType 'Form Tour Step' +#. Label of the fieldtype (Select) field in DocType 'Web Form Field' +#. Label of the fieldtype (Data) field in DocType 'Web Form List Column' +#. Label of the fieldtype (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Fieldtype" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:193 +msgid "Fieldtype cannot be changed from {0} to {1}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:593 +msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" +msgstr "" + +#. Label of a shortcut in the Tools Workspace +#. Name of a DocType +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/file/file.json +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "File" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 +msgid "File \"{0}\" was skipped because of invalid file type" +msgstr "" + +#: frappe/core/doctype/file/utils.py:128 +msgid "File '{0}' not found" +msgstr "" + +#. Label of the private_file_section (Section Break) field in DocType 'Access +#. Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "File Information" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:74 +msgid "File Manager" +msgstr "" + +#. Label of the file_name (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "File Name" +msgstr "" + +#. Label of the file_size (Int) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "File Size" +msgstr "" + +#. Label of the section_break_ryki (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "File Storage" +msgstr "" + +#. Label of the file_type (Data) field in DocType 'Access Log' +#. Label of the file_type (Select) field in DocType 'Data Export' +#. Label of the file_type (Data) field in DocType 'File' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/data_export/data_export.json +#: frappe/core/doctype/file/file.json +#: frappe/public/js/frappe/data_import/data_exporter.js:19 +msgid "File Type" +msgstr "" + +#. Label of the file_url (Code) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "File URL" +msgstr "" + +#: frappe/desk/page/backups/backups.py:107 +msgid "File backup is ready" +msgstr "" + +#: frappe/core/doctype/file/file.py:649 +msgid "File name cannot have {0}" +msgstr "" + +#: frappe/utils/csvutils.py:28 +msgid "File not attached" +msgstr "" + +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 +#: frappe/utils/file_manager.py:221 +msgid "File size exceeded the maximum allowed size of {0} MB" +msgstr "" + +#: frappe/public/js/frappe/request.js:198 +msgid "File too big" +msgstr "" + +#: frappe/core/doctype/file/file.py:390 +msgid "File type of {0} is not allowed" +msgstr "" + +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 +msgid "File {0} does not exist" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Label of the files_tab (Tab Break) field in DocType 'System Settings' +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Files" +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.js:8 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: frappe/desk/doctype/number_card/number_card.js: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:969 +#: frappe/public/js/frappe/ui/filters/filter_list.js:134 +#: frappe/website/doctype/web_form/web_form.js:197 +msgid "Filter" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.html:36 +msgid "Filter By" +msgstr "" + +#. Label of the filter_data (Section Break) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Filter Data" +msgstr "" + +#. Label of the filter_list (HTML) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Filter List" +msgstr "" + +#. Label of the filter_meta (Text) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Filter Meta" +msgstr "" + +#. Label of the filter_name (Data) field in DocType 'List Filter' +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/public/js/frappe/list/list_filter.js:33 +msgid "Filter Name" +msgstr "" + +#. Label of the filter_values (HTML) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Filter Values" +msgstr "" + +#: frappe/database/query.py:360 +msgid "Filter condition missing after operator: {0}" +msgstr "" + +#: frappe/database/query.py:427 +msgid "Filter fields cannot contain backticks (`)." +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_sidebar.html:3 +msgid "Filter..." +msgstr "" + +#. Label of the filtered_by (Data) field in DocType 'Personal Data Deletion +#. Step' +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Filtered By" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:33 +msgid "Filtered Records" +msgstr "" + +#: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 +msgid "Filtered by \"{0}\"" +msgstr "" + +#. Label of the filters (Code) field in DocType 'Access Log' +#. Label of the filters_sb (Section Break) field in DocType 'Prepared Report' +#. Label of the filters (Small Text) field in DocType 'Prepared Report' +#. Label of the filters_section (Section Break) field in DocType 'Report' +#. Label of the filters (Table) field in DocType 'Report' +#. Label of the filters_section (Section Break) field in DocType 'Dashboard +#. Chart' +#. Label of the filters (Code) field in DocType 'Kanban Board' +#. Label of the filters (Long Text) field in DocType 'List Filter' +#. Label of the filters (Text) field in DocType 'Auto Email Report' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/notification/notification.json +msgid "Filters" +msgstr "" + +#. Label of the filters_config (Code) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Filters Configuration" +msgstr "" + +#. Label of the filters_display (HTML) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Filters Display" +msgstr "" + +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + +#. Label of the filters_json (Code) field in DocType 'Dashboard Chart' +#. Label of the filters_json (Code) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Filters JSON" +msgstr "" + +#. Label of the filters_section (Section Break) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Filters Section" +msgstr "" + +#: frappe/public/js/frappe/form/controls/link.js:514 +msgid "Filters applied for {0}" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 +msgid "Filters saved" +msgstr "" + +#. Description of the 'Script' (Code) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Filters will be accessible via filters.

    Send output as result = [result], or for old style data = [columns], [result]" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:133 +msgid "Filters {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1429 +msgid "Filters:" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 +msgid "Find '{0}' in ..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 +msgid "Find {0} in {1}" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Finished" +msgstr "" + +#. Label of the report_end_time (Datetime) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Finished At" +msgstr "" + +#. Label of the first_day_of_the_week (Select) field in DocType 'Language' +#. Label of the first_day_of_the_week (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "First Day of the Week" +msgstr "" + +#. Label of the first_name (Data) field in DocType 'Contact' +#. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 +msgid "First Name" +msgstr "" + +#. Label of the first_success_message (Data) field in DocType 'Success Action' +#: frappe/core/doctype/success_action/success_action.json +msgid "First Success Message" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:185 +msgid "First data column must be blank." +msgstr "" + +#: frappe/website/doctype/website_slideshow/website_slideshow.js:7 +msgid "First set the name and save the record." +msgstr "" + +#: frappe/public/js/workflow_builder/WorkflowBuilder.vue:304 +msgid "Fit" +msgstr "" + +#. Label of the flag (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +msgid "Flag" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Float" +msgstr "" + +#. Label of the float_precision (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Float Precision" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Fold" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1451 +msgid "Fold can not be at the end of the form" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1449 +msgid "Fold must come before a Section Break" +msgstr "" + +#. Label of the folder (Link) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Folder" +msgstr "" + +#. Label of the folder_name (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "Folder Name" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:100 +msgid "Folder name should not include '/' (slash)" +msgstr "" + +#: frappe/core/doctype/file/file.py:497 +msgid "Folder {0} is not empty" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Folio" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:106 +#: frappe/public/js/frappe/form/toolbar.js:879 +msgid "Follow" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:101 +msgid "Followed by" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:132 +msgid "Following Report Filters have missing values:" +msgstr "" + +#: frappe/desk/form/document_follow.py:63 +msgid "Following document {0}" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:108 +msgid "Following fields are missing:" +msgstr "" + +#: frappe/public/js/frappe/ui/field_group.js:139 +msgid "Following fields have invalid values:" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:358 +msgid "Following fields have missing values" +msgstr "" + +#: frappe/public/js/frappe/ui/field_group.js:126 +msgid "Following fields have missing values:" +msgstr "" + +#. Label of the font (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Font" +msgstr "" + +#. Label of the font_properties (Data) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Font Properties" +msgstr "" + +#. Label of the font_size (Int) field in DocType 'Print Format' +#. Label of the font_size (Float) field in DocType 'Print Settings' +#. Label of the font_size (Data) field in DocType 'Website Theme' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:45 +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Font Size" +msgstr "" + +#. Label of the section_break_8 (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Fonts" +msgstr "" + +#. Label of the set_footer (Section Break) field in DocType 'Email Account' +#. Label of the footer_section (Section Break) field in DocType 'Letter Head' +#. Label of the footer (Text Editor) field in DocType 'About Us Settings' +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#. Label of the footer_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer" +msgstr "" + +#. Label of the footer_powered (Small Text) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer \"Powered By\"" +msgstr "" + +#. Label of the footer_source (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer Based On" +msgstr "" + +#. Label of the footer (Text Editor) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Footer Content" +msgstr "" + +#. Label of the footer_details_section (Section Break) field in DocType +#. 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer Details" +msgstr "" + +#. Label of the footer (HTML Editor) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer HTML" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:81 +msgid "Footer HTML set from attachment {0}" +msgstr "" + +#. Label of the footer_image_section (Section Break) field in DocType 'Letter +#. Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer Image" +msgstr "" + +#. Label of the footer (Section Break) field in DocType 'Website Settings' +#. Label of the footer_items (Table) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer Items" +msgstr "" + +#. Label of the footer_logo (Attach Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer Logo" +msgstr "" + +#. Label of the footer_script (Code) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer Script" +msgstr "" + +#. Label of the footer_template (Link) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer Template" +msgstr "" + +#. Label of the footer_template_values (Code) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Footer Template Values" +msgstr "" + +#: frappe/printing/page/print/print.js:129 +msgid "Footer might not be visible as {0} option is disabled" +msgstr "" + +#. Description of the 'Footer HTML' (HTML Editor) field in DocType 'Letter +#. Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Footer will display correctly only in PDF" +msgstr "" + +#. Label of the for_doctype (Link) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "For DocType" +msgstr "" + +#. Description of the 'Row Name' (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "For DocType Link / DocType Action" +msgstr "" + +#. Label of the for_document (Dynamic Link) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "For Document" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:155 +msgid "For Document Type" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:566 +msgid "For Example: {} Open" +msgstr "" + +#. Description of the 'Options' (Small Text) field in DocType 'DocField' +#. Description of the 'Options' (Small Text) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "For Links, enter the DocType as range.\n" +"For Select, enter list of Options, each on a new line." +msgstr "" + +#. Label of the for_user (Link) field in DocType 'List Filter' +#. Label of the for_user (Link) field in DocType 'Notification Log' +#. Label of the for_user (Data) field in DocType 'Workspace' +#: frappe/core/doctype/user_permission/user_permission_list.js:10 +#: frappe/core/doctype/user_permission/user_permission_list.js:148 +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/workspace/workspace.json +msgid "For User" +msgstr "" + +#. Label of the for_value (Dynamic Link) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "For Value" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 +msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:19 +msgid "For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment." +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:162 +msgid "For example:" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:752 +msgid "For example: If you want to include the document ID, use {0}" +msgstr "" + +#. Description of the 'Format' (Data) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "For example: {} Open" +msgstr "" + +#. Description of the 'Client script' (Code) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "For help see Client Script API and Examples" +msgstr "" + +#: frappe/integrations/doctype/google_settings/google_settings.js:7 +msgid "For more information, {0}." +msgstr "" + +#. Description of the 'Email To' (Small Text) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "For multiple addresses, enter the address on different line. e.g. test@test.com ⏎ test1@test.com" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:197 +msgid "For updating, you can update only selective columns." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1765 +msgid "For {0} at level {1} in {2} in row {3}" +msgstr "" + +#. Label of the force (Check) field in DocType 'Package Import' +#. Option for the 'Skip Authorization' (Select) field in DocType 'OAuth +#. Provider Settings' +#: frappe/core/doctype/package_import/package_import.json +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +msgid "Force" +msgstr "" + +#. Label of the force_re_route_to_default_view (Check) field in DocType +#. 'DocType' +#. Label of the force_re_route_to_default_view (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Force Re-route to Default View" +msgstr "" + +#. Label of the force_show (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Force Show" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.js:13 +msgid "Force Stop job" +msgstr "" + +#. Label of the force_user_to_reset_password (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Force User to Reset Password" +msgstr "" + +#. Label of the force_web_capture_mode_for_uploads (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Force Web Capture Mode for Uploads" +msgstr "" + +#: frappe/www/login.html:37 +msgid "Forgot Password?" +msgstr "" + +#. Label of the form_builder_tab (Tab Break) field in DocType 'DocType' +#. Option for the 'Apply To' (Select) field in DocType 'Client Script' +#. Label of the form_tab (Tab Break) field in DocType 'Customize Form' +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Label of the form_tab (Tab Break) field in DocType 'Web Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/printing/page/print/print.js:96 +#: frappe/website/doctype/web_form/web_form.json +msgid "Form" +msgstr "" + +#. Label of the form_builder (HTML) field in DocType 'DocType' +#. Label of the form_builder (HTML) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Form Builder" +msgstr "" + +#. Label of the form_dict (Code) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Form Dict" +msgstr "" + +#. Label of the form_settings_section (Section Break) field in DocType +#. 'DocType' +#. Label of the form_settings_section (Section Break) field in DocType 'User' +#. Label of the form_settings_section (Section Break) field in DocType +#. 'Customize Form' +#. Label of the form_settings_section (Section Break) field in DocType 'Web +#. Form' +#: frappe/core/doctype/doctype/doctype.json frappe/core/doctype/user/user.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Form Settings" +msgstr "" + +#. Name of a DocType +#. Label of the form_tour (Link) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Form Tour" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Form Tour Step" +msgstr "" + +#. Option for the 'Request Structure' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Form URL-Encoded" +msgstr "" + +#. Label of the format (Data) field in DocType 'Workspace Shortcut' +#. Label of the format (Select) field in DocType 'Auto Email Report' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:565 +msgid "Format" +msgstr "" + +#. Label of the format_data (Code) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Format Data" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:70 +msgid "Forward" +msgstr "" + +#. Label of the forward_to_email (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Forward To Email Address" +msgstr "" + +#. Label of the fraction (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Fraction" +msgstr "" + +#. Label of the fraction_units (Int) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Fraction Units" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/www/login.html:64 frappe/www/login.html:162 frappe/www/login.py:53 +#: frappe/www/login.py:153 +msgid "Frappe" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 +msgid "Frappe Framework" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:59 +msgid "Frappe Light" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Frappe Mail" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:547 +msgid "Frappe Mail OAuth Error" +msgstr "" + +#. Label of the frappe_mail_site (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Frappe Mail Site" +msgstr "" + +#. Label of a standard help item +#. Type: Route +#: frappe/hooks.py +msgid "Frappe Support" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Frappe page builder using components" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/ImageCropper.vue:112 +msgctxt "Image Cropper" +msgid "Free" +msgstr "" + +#. Label of the frequency (Select) field in DocType 'Auto Repeat' +#. Label of the frequency (Select) field in DocType 'Scheduled Job Type' +#. Label of the document_follow_frequency (Select) field in DocType 'User' +#. Label of the frequency (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:5 +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:395 +msgid "Frequency" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the friday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Friday" +msgstr "" + +#. Label of the sender (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/permission_log/permission_log.js:12 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:70 +msgid "From" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:197 +msgctxt "Email Sender" +msgid "From" +msgstr "" + +#. Label of the from_date (Date) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/report/website_analytics/website_analytics.js:8 +msgid "From Date" +msgstr "" + +#. Label of the from_date_field (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "From Date Field" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1848 +msgid "From Document Type" +msgstr "" + +#. Label of the sender_full_name (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "From Full Name" +msgstr "" + +#. Label of the from_user (Link) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "From User" +msgstr "" + +#: frappe/public/js/frappe/utils/diffview.js:31 +msgid "From version" +msgstr "" + +#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Full" +msgstr "" + +#. Label of the full_name (Data) field in DocType 'Contact' +#. Label of the full_name (Data) field in DocType 'Activity Log' +#. Label of the full_name (Data) field in DocType 'User' +#. Label of the full_name (Data) field in DocType 'About Us Team Member' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:479 +#: frappe/templates/signup.html:4 +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +msgid "Full Name" +msgstr "" + +#: frappe/printing/page/print/print.js:80 +#: frappe/public/js/frappe/form/templates/print_layout.html:42 +msgid "Full Page" +msgstr "" + +#. Label of the full_width (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Full Width" +msgstr "" + +#. Label of the function (Select) field in DocType 'Number Card' +#. Label of the report_function (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/views/reports/query_report.js:246 +#: frappe/public/js/frappe/widgets/widget_dialog.js:699 +msgid "Function" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:706 +msgid "Function Based On" +msgstr "" + +#: frappe/__init__.py:466 +msgid "Function {0} is not whitelisted." +msgstr "" + +#: frappe/database/query.py:1419 +msgid "Function {0} requires arguments but none were provided" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:419 +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:291 +msgid "Fw: {0}" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "GET" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "GMail" +msgstr "" + +#. Option for the 'License Type' (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "GNU Affero General Public License" +msgstr "" + +#. Option for the 'License Type' (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "GNU General Public License" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/public/js/frappe/views/gantt/gantt_view.js:10 +msgid "Gantt" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:205 +msgid "Gantt View" +msgstr "" + +#. Label of the gender (Link) field in DocType 'Contact' +#. Name of a DocType +#. Label of the gender (Data) field in DocType 'Gender' +#. Label of the gender (Link) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/gender/gender.json +#: frappe/core/doctype/user/user.json +msgid "Gender" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:32 +msgid "Genderqueer" +msgstr "" + +#: frappe/www/contact.html:29 +msgid "General" +msgstr "" + +#. Label of the generate_keys (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Generate Keys" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:882 +msgid "Generate New Report" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:394 +msgid "Generate Random Password" +msgstr "" + +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 +#: frappe/public/js/frappe/utils/utils.js:1827 +msgid "Generate Tracking URL" +msgstr "" + +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Geoapify" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Geolocation" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Geolocation Settings" +msgstr "" + +#: frappe/email/doctype/notification/notification.js:226 +msgid "Get Alerts for Today" +msgstr "" + +#: frappe/desk/page/backups/backups.js:21 +msgid "Get Backup Encryption Key" +msgstr "" + +#. Label of the get_contacts (Button) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Get Contacts" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:93 +msgid "Get Fields" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:32 +msgid "Get Header and Footer wkhtmltopdf variables" +msgstr "" + +#: frappe/public/js/frappe/form/multi_select_dialog.js:86 +msgid "Get Items" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.js:6 +msgid "Get OpenID Configuration" +msgstr "" + +#: frappe/www/printview.html:22 +msgid "Get PDF" +msgstr "" + +#. Description of the 'Try a Naming Series' (Data) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Get a preview of generated names with a series." +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.js:305 +msgid "Get more insights with" +msgstr "" + +#. Description of the 'Email Threads on Assigned Document' (Check) field in +#. DocType 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Get notified when an email is received on any of the documents assigned to you." +msgstr "" + +#. Description of the 'User Image' (Attach Image) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Get your globally recognized avatar from Gravatar.com" +msgstr "" + +#. Label of the git_branch (Data) field in DocType 'Installed Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Git Branch" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "GitHub" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Github flavoured markdown syntax" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/global_search_doctype/global_search_doctype.json +msgid "Global Search DocType" +msgstr "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.js:24 +msgid "Global Search Document Types Reset." +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/global_search_settings/global_search_settings.json +msgid "Global Search Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:122 +msgid "Global Shortcuts" +msgstr "" + +#. Label of the global_unsubscribe (Check) field in DocType 'Email Unsubscribe' +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +msgid "Global Unsubscribe" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:843 +msgid "Go" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:241 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:321 +msgid "Go Back" +msgstr "" + +#: frappe/desk/doctype/notification_settings/notification_settings.js:17 +msgid "Go to Notification Settings List" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Go to Page" +msgstr "" + +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:41 +msgid "Go to Workflow" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.js:18 +msgid "Go to Workspace" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:144 +msgid "Go to next record" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:154 +msgid "Go to previous record" +msgstr "" + +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:53 +msgid "Go to the document" +msgstr "" + +#. Description of the 'Success URL' (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Go to this URL after completing the form" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.js:54 +#: frappe/custom/doctype/client_script/client_script.js:12 +msgid "Go to {0}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:92 +#: frappe/core/doctype/doctype/doctype.js:55 +#: frappe/custom/doctype/customize_form/customize_form.js:104 +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:42 +#: frappe/workflow/doctype/workflow/workflow.js:44 +msgid "Go to {0} List" +msgstr "" + +#: frappe/core/doctype/page/page.js:11 +msgid "Go to {0} Page" +msgstr "" + +#: frappe/utils/goal.py:115 frappe/utils/goal.py:122 +msgid "Goal" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Google" +msgstr "" + +#. Label of the google_analytics_id (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Google Analytics ID" +msgstr "" + +#. Label of the google_analytics_anonymize_ip (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Google Analytics anonymise IP" +msgstr "" + +#. Label of the sb_00 (Section Break) field in DocType 'Event' +#. Label of the google_calendar (Link) field in DocType 'Event' +#. Name of a DocType +#. Label of the sb_00 (Section Break) field in DocType 'Google Calendar' +#. Label of a Link in the Integrations Workspace +#: frappe/desk/doctype/event/event.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Calendar" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:266 +msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:610 +msgid "Google Calendar - Could not delete Event {0} from Google Calendar, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:305 +msgid "Google Calendar - Could not fetch event from Google Calendar, error code {0}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:252 +msgid "Google Calendar - Could not find Calendar for {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:232 +msgid "Google Calendar - Could not insert contact in Google Contacts {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:496 +msgid "Google Calendar - Could not insert event in Google Calendar {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:580 +msgid "Google Calendar - Could not update Event {0} in Google Calendar, error code {1}." +msgstr "" + +#. Label of the google_calendar_event_id (Data) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Google Calendar Event ID" +msgstr "" + +#. Label of the google_calendar_id (Data) field in DocType 'Event' +#. Label of the google_calendar_id (Data) field in DocType 'Google Calendar' +#: frappe/desk/doctype/event/event.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Google Calendar ID" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:181 +msgid "Google Calendar has been configured." +msgstr "" + +#. Label of the sb_00 (Section Break) field in DocType 'Contact' +#. Label of the google_contacts (Link) field in DocType 'Contact' +#. Name of a DocType +#. Label of the sb_00 (Section Break) field in DocType 'Google Contacts' +#. Label of a Link in the Integrations Workspace +#: frappe/contacts/doctype/contact/contact.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Contacts" +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:137 +msgid "Google Contacts - Could not sync contacts from Google Contacts {0}, error code {1}." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:294 +msgid "Google Contacts - Could not update contact in Google Contacts {0}, error code {1}." +msgstr "" + +#. Label of the google_contacts_id (Data) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Google Contacts Id" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:164 +msgid "Google Drive" +msgstr "" + +#. Label of the section_break_7 (Section Break) field in DocType 'Google +#. Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "Google Drive Picker" +msgstr "" + +#. Label of the google_drive_picker_enabled (Check) field in DocType 'Google +#. Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "Google Drive Picker Enabled" +msgstr "" + +#. Label of the font (Data) field in DocType 'Print Format' +#. Label of the google_font (Data) field in DocType 'Website Theme' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:28 +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Google Font" +msgstr "" + +#. Label of the google_meet_link (Small Text) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Google Meet Link" +msgstr "" + +#. Label of a Card Break in the Integrations Workspace +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Services" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Google Settings" +msgstr "" + +#: frappe/utils/csvutils.py:226 +msgid "Google Sheets URL is invalid or not publicly accessible." +msgstr "" + +#: frappe/utils/csvutils.py:231 +msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." +msgstr "" + +#. Label of the grant_type (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Grant Type" +msgstr "" + +#: frappe/public/js/frappe/form/dashboard.js:34 +#: frappe/public/js/frappe/form/templates/form_dashboard.html:10 +msgid "Graph" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Gray" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:23 +msgid "Greater Than" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:25 +msgid "Greater Than Or Equal To" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Green" +msgstr "" + +#: frappe/public/js/form_builder/components/controls/TableControl.vue:53 +msgid "Grid Empty State" +msgstr "" + +#. Label of the grid_page_length (Int) field in DocType 'DocType' +#. Label of the grid_page_length (Int) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Grid Page Length" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:127 +msgid "Grid Shortcuts" +msgstr "" + +#. Label of the group (Data) field in DocType 'DocType Action' +#. Label of the group (Data) field in DocType 'DocType Link' +#. Label of the group (Data) field in DocType 'Website Sidebar Item' +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Group" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/report/website_analytics/website_analytics.js:32 +msgid "Group By" +msgstr "" + +#. Label of the group_by_based_on (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Group By Based On" +msgstr "" + +#. Label of the group_by_type (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Group By Type" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:408 +msgid "Group By field is required to create a dashboard chart" +msgstr "" + +#: frappe/database/query.py:752 +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 "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Group your custom doctypes under modules" +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:428 +msgid "Grouped by {0}" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "HEAD" +msgstr "" + +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "HERE" +msgstr "" + +#. Option for the 'Time Format' (Select) field in DocType 'Language' +#. Option for the 'Time Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "HH:mm" +msgstr "" + +#. Option for the 'Time Format' (Select) field in DocType 'Language' +#. Option for the 'Time Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "HH:mm:ss" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the html_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Message Type' (Select) field in DocType 'Notification' +#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter +#. Head' +#. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' +#. Label of the html (Code) field in DocType 'Print Format' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:101 +#: frappe/public/js/print_format_builder/Field.vue:86 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json +msgid "HTML" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "HTML Editor" +msgstr "" + +#. Label of the page (HTML Editor) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "HTML Page" +msgstr "" + +#. Description of the 'Header' (HTML Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "HTML for header section. Optional" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "HTML with jinja support" +msgstr "" + +#. Option for the 'Width' (Select) field in DocType 'Dashboard Chart Link' +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +msgid "Half" +msgstr "" + +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Half Yearly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/public/js/frappe/utils/common.js:402 +msgid "Half-yearly" +msgstr "" + +#. Label of the handled_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Handled Emails" +msgstr "" + +#. Label of the has_attachment (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Has Attachment" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/has_domain/has_domain.json +msgid "Has Domain" +msgstr "" + +#. Label of the has_next_condition (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Has Next Condition" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/has_role/has_role.json +msgid "Has Role" +msgstr "" + +#. Label of the has_setup_wizard (Check) field in DocType 'Installed +#. Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Has Setup Wizard" +msgstr "" + +#. Label of the has_web_view (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Has Web View" +msgstr "" + +#: frappe/templates/signup.html:19 +msgid "Have an account? Login" +msgstr "" + +#. Label of the header (Check) field in DocType 'SMS Parameter' +#. Label of the header_section (Section Break) field in DocType 'Letter Head' +#. Label of the header (HTML Editor) field in DocType 'Web Page' +#. Label of the header (HTML Editor) field in DocType 'Website Slideshow' +#: frappe/core/doctype/sms_parameter/sms_parameter.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Header" +msgstr "" + +#. Label of the content (HTML Editor) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Header HTML" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:69 +msgid "Header HTML set from attachment {0}" +msgstr "" + +#. Label of the header_script (Code) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Header Script" +msgstr "" + +#. Label of the sb2 (Section Break) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Header and Breadcrumbs" +msgstr "" + +#. Label of the section_break_38 (Tab Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Header, Robots" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "Header/Footer scripts can be used to add dynamic behaviours." +msgstr "" + +#. Label of the webhook_headers (Table) field in DocType 'Webhook' +#. Label of the headers (Code) field in DocType 'Webhook Request Log' +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Headers" +msgstr "" + +#: frappe/email/email_body.py:322 +msgid "Headers must be a dictionary" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the heading (Data) field in DocType 'Contact Us Settings' +#. Label of the heading (Data) field in DocType 'Website Slideshow Item' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:609 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "Heading" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Heatmap" +msgstr "" + +#: frappe/templates/emails/new_user.html:2 +msgid "Hello" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "" + +#. Label of the help_section (Section Break) field in DocType 'Server Script' +#. Label of the help (HTML) field in DocType 'Property Setter' +#: frappe/core/doctype/server_script/server_script.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/public/js/frappe/form/templates/form_sidebar.html:41 +#: frappe/public/js/frappe/form/workflow.js:23 +#: frappe/public/js/frappe/ui/toolbar/navbar.html:87 +#: frappe/public/js/frappe/utils/help.js:27 +msgid "Help" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/workspace/website/website.json +msgid "Help Article" +msgstr "" + +#. Label of the help_articles (Int) field in DocType 'Help Category' +#: frappe/website/doctype/help_category/help_category.json +msgid "Help Articles" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/workspace/website/website.json +msgid "Help Category" +msgstr "" + +#. Label of the help_dropdown (Table) field in DocType 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +#: frappe/public/js/frappe/ui/toolbar/navbar.html:84 +msgid "Help Dropdown" +msgstr "" + +#. Label of the help_html (HTML) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Help HTML" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:149 +msgid "Help on Search" +msgstr "" + +#. Description of the 'Content' (Text Editor) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Help: To link to another record in the system, use \"/app/note/[Note Name]\" as the Link URL. (don't use \"http://\")" +msgstr "" + +#. Label of the helpful (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Helpful" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Helvetica" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Helvetica Neue" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1824 +msgid "Here's your tracking URL" +msgstr "" + +#: frappe/www/qrcode.html:9 +msgid "Hi {0}" +msgstr "" + +#. Label of the hidden (Check) field in DocType 'DocField' +#. Label of the hidden (Check) field in DocType 'DocType Action' +#. Label of the hidden (Check) field in DocType 'DocType Link' +#. Label of the hidden (Check) field in DocType 'Navbar Item' +#. Label of the hidden (Check) field in DocType 'Custom Field' +#. Label of the hidden (Check) field in DocType 'Customize Form Field' +#. Label of the hidden (Check) field in DocType 'Desktop Icon' +#. Label of the hidden (Check) field in DocType 'Workspace Link' +#. Label of the hidden (Check) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/doctype_link/doctype_link.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:3 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Hidden" +msgstr "" + +#. Label of the section_break_13 (Section Break) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Hidden Fields" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1650 +msgid "Hidden columns include: {0}" +msgstr "" + +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/frappe/widgets/base_widget.js:46 +#: frappe/public/js/frappe/widgets/base_widget.js:178 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:243 +#: frappe/templates/includes/login/login.js:82 +#: frappe/www/update-password.html:117 +msgid "Hide" +msgstr "" + +#. Label of the hide_block (Check) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Hide Block" +msgstr "" + +#. Label of the hide_border (Check) field in DocType 'DocField' +#. Label of the hide_border (Check) field in DocType 'Custom Field' +#. Label of the hide_border (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Hide Border" +msgstr "" + +#. Label of the hide_buttons (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Hide Buttons" +msgstr "" + +#. Label of the allow_copy (Check) field in DocType 'DocType' +#. Label of the allow_copy (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Hide Copy" +msgstr "" + +#. Label of the hide_custom (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Hide Custom DocTypes and Reports" +msgstr "" + +#. Label of the hide_days (Check) field in DocType 'DocField' +#. Label of the hide_days (Check) field in DocType 'Custom Field' +#. Label of the hide_days (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Hide Days" +msgstr "" + +#. Label of the hide_descendants (Check) field in DocType 'User Permission' +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_permission/user_permission_list.js:96 +msgid "Hide Descendants" +msgstr "" + +#. Label of the hide_empty_read_only_fields (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Hide Empty Read-Only Fields" +msgstr "" + +#: frappe/www/error.html:62 +msgid "Hide Error" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:488 +msgid "Hide Label" +msgstr "" + +#. Label of the hide_login (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Hide Login" +msgstr "" + +#: frappe/public/js/form_builder/form_builder.bundle.js:43 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 +msgid "Hide Preview" +msgstr "" + +#. Description of the 'Hide Buttons' (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Hide Previous, Next and Close button on highlight dialog." +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:94 +msgid "Hide Saved" +msgstr "" + +#. Label of the hide_seconds (Check) field in DocType 'DocField' +#. Label of the hide_seconds (Check) field in DocType 'Custom Field' +#. Label of the hide_seconds (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Hide Seconds" +msgstr "" + +#. Label of the hide_toolbar (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Hide Sidebar, Menu, and Comments" +msgstr "" + +#. Label of the hide_standard_menu (Check) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Hide Standard Menu" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1851 +msgid "Hide Tags" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:179 +msgid "Hide Weekends" +msgstr "" + +#. Description of the 'Hide Descendants' (Check) field in DocType 'User +#. Permission' +#: frappe/core/doctype/user_permission/user_permission.json +msgid "Hide descendant records of For Value." +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:285 +msgid "Hide details" +msgstr "" + +#. Label of the hide_footer (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Hide footer" +msgstr "" + +#. Label of the hide_footer_in_auto_email_reports (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Hide footer in auto email reports" +msgstr "" + +#. Label of the hide_footer_signup (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Hide footer signup" +msgstr "" + +#. Label of the hide_navbar (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Hide navbar" +msgstr "" + +#. Option for the 'Priority' (Select) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:225 +msgid "High" +msgstr "" + +#. Description of the 'Priority' (Int) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Higher priority rule will be applied first" +msgstr "" + +#. Label of the highlight (Text) field in DocType 'Company History' +#: frappe/website/doctype/company_history/company_history.json +msgid "Highlight" +msgstr "" + +#: frappe/www/update-password.html:301 +msgid "Hint: Include symbols, numbers and capital letters in the password" +msgstr "" + +#. Label of the home_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:38 +#: frappe/public/js/frappe/views/file/file_view.js:67 +#: frappe/public/js/frappe/views/file/file_view.js:88 +#: frappe/public/js/frappe/views/pageview.js:156 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:22 frappe/www/login.html:170 frappe/www/me.html:76 +#: frappe/www/message.html:29 +msgid "Home" +msgstr "" + +#. Label of the home_page (Data) field in DocType 'Role' +#. Label of the home_page (Data) field in DocType 'Website Settings' +#: frappe/core/doctype/role/role.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Home Page" +msgstr "" + +#. Label of the home_settings (Code) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Home Settings" +msgstr "" + +#: frappe/core/doctype/file/test_file.py:321 +#: frappe/core/doctype/file/test_file.py:323 +#: frappe/core/doctype/file/test_file.py:387 +msgid "Home/Test Folder 1" +msgstr "" + +#: frappe/core/doctype/file/test_file.py:376 +msgid "Home/Test Folder 1/Test Folder 3" +msgstr "" + +#: frappe/core/doctype/file/test_file.py:332 +msgid "Home/Test Folder 2" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Frequency' (Select) field in DocType 'User' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user.json +msgid "Hourly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Hourly Long" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Hourly Maintenance" +msgstr "" + +#. Description of the 'Password Reset Link Generation Limit' (Int) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Hourly rate limit for generating password reset links" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:29 +msgctxt "Duration" +msgid "Hours" +msgstr "" + +#. Description of the 'Number Format' (Select) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "How should this currency be formatted? If not set, will use system defaults" +msgstr "" + +#. Description of the 'Resource Name' (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Human-readable name intended for display to the end user." +msgstr "" + +#. Paragraph text in the Welcome Workspace Workspace +#: frappe/core/workspace/welcome_workspace/welcome_workspace.json +msgid "I guess you don't have access to any workspace yet, but you can create one just for yourself. Click on the Create Workspace button to create one.
    " +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1174 +#: frappe/core/doctype/data_import/importer.py:1180 +#: frappe/core/doctype/data_import/importer.py:1245 +#: frappe/core/doctype/data_import/importer.py:1248 +#: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 +#: frappe/public/js/frappe/data_import/data_exporter.js:330 +#: frappe/public/js/frappe/data_import/data_exporter.js:345 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 +#: frappe/public/js/frappe/model/meta.js:200 +#: frappe/public/js/frappe/model/model.js:122 +msgid "ID" +msgstr "" + +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 +msgctxt "Label of name column in report" +msgid "ID" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:169 +msgid "ID (name)" +msgstr "" + +#. Description of the 'Field Name' (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "ID (name) of the entity whose property is to be set" +msgstr "" + +#. Description of the 'Section ID' (Data) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "IDs must contain only alphanumeric characters, not contain spaces, and should be unique." +msgstr "" + +#. Label of the section_break_25 (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "IMAP Details" +msgstr "" + +#. Label of the imap_folder (Data) field in DocType 'Communication' +#. Label of the imap_folder (Table) field in DocType 'Email Account' +#. Name of a DocType +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "IMAP Folder" +msgstr "" + +#. Label of the ip_address (Data) field in DocType 'Activity Log' +#. Label of the ip_address (Data) field in DocType 'Comment' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +msgid "IP Address" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the icon (Data) field in DocType 'DocType' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the icon (Data) field in DocType 'Desktop Icon' +#. Label of the icon (Icon) field in DocType 'Workspace' +#. Label of the icon (Data) field in DocType 'Workspace Link' +#. Label of the icon (Data) field in DocType 'Workspace Shortcut' +#. Label of the icon (Data) field in DocType 'Social Login Key' +#. Label of the icon (Select) field in DocType 'Workflow State' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/public/js/frappe/views/workspace/workspace.js:458 +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Icon" +msgstr "" + +#. Description of the 'Icon' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Icon will appear on the button" +msgstr "" + +#. Label of the sb_identity_details (Section Break) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Identity Details" +msgstr "" + +#. Label of the idx (Int) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Idx" +msgstr "" + +#. Description of the 'Apply Strict User Permissions' (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User" +msgstr "" + +#. Description of the 'Don't Override Status' (Check) field in DocType +#. 'Workflow' +#. Description of the 'Don't Override Status' (Check) field in DocType +#. 'Workflow Document State' +#: frappe/workflow/doctype/workflow/workflow.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "If Checked workflow status will not override status in list view" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1777 +#: 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 +msgid "If a Role does not have access at Level 0, then higher levels are meaningless." +msgstr "" + +#. Description of the 'Is Active' (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "If checked, all other workflows become inactive." +msgstr "" + +#. Description of the 'Show Absolute Values' (Check) field in DocType 'Print +#. Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "If checked, negative numeric values of Currency, Quantity or Count would be shown as positive" +msgstr "" + +#. Description of the 'Skip Authorization' (Check) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "If checked, users will not see the Confirm Access dialog." +msgstr "" + +#. Description of the 'Disabled' (Check) field in DocType 'Role' +#: frappe/core/doctype/role/role.json +msgid "If disabled, this role will be removed from all users." +msgstr "" + +#. Description of the 'Bypass Restricted IP Address Check If Two Factor Auth +#. Enabled' (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "If enabled, user can login from any IP Address using Two Factor Auth, this can also be set for all users in System Settings" +msgstr "" + +#. Description of the 'Anonymous responses' (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "If enabled, all responses on the web form will be submitted anonymously" +msgstr "" + +#. Description of the 'Bypass restricted IP Address check If Two Factor Auth +#. Enabled' (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If enabled, all users can login from any IP Address using Two Factor Auth. This can also be set only for specific user(s) in User Page" +msgstr "" + +#. Description of the 'Track Changes' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "If enabled, changes to the document are tracked and shown in timeline" +msgstr "" + +#. Description of the 'Track Views' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "If enabled, document views are tracked, this can happen multiple times" +msgstr "" + +#. Description of the 'Track Seen' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "If enabled, the document is marked as seen, the first time a user opens it" +msgstr "" + +#. Description of the 'Send System Notification' (Check) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "If enabled, the notification will show up in the notifications dropdown on the top right corner of the navigation bar." +msgstr "" + +#. Description of the 'Enable Password Policy' (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 1 being very weak and 4 being very strong." +msgstr "" + +#. Description of the 'Bypass Two Factor Auth for users who login from +#. restricted IP Address' (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If enabled, users who login from Restricted IP Address, won't be prompted for Two Factor Auth" +msgstr "" + +#. Description of the 'Notify Users On Every Login' (Check) field in DocType +#. 'Note' +#: frappe/desk/doctype/note/note.json +msgid "If enabled, users will be notified every time they login. If not enabled, users will only be notified once." +msgstr "" + +#. Description of the 'Default Workspace' (Link) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "If left empty, the default workspace will be the last visited workspace" +msgstr "" + +#. Description of the 'Port' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "If non standard port (e.g. 587)" +msgstr "" + +#. Description of the 'Port' (Data) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "If non standard port (e.g. 587). If on Google Cloud, try port 2525." +msgstr "" + +#. Description of the 'Port' (Data) field in DocType 'Email Account' +#. Description of the 'Port' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "If non-standard port (e.g. POP3: 995/110, IMAP: 993/143)" +msgstr "" + +#. Description of the 'Currency Precision' (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "If not set, the currency precision will depend on number format" +msgstr "" + +#. Description of the 'Roles' (Table) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "If set, only user with these roles can access this chart. If not set, DocType or Report permissions will be used." +msgstr "" + +#. Description of the 'User Type' (Link) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "If the user has any role checked, then the user becomes a \"System User\". \"System User\" has access to the desktop" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:38 +msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." +msgstr "" + +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType +#. 'DocField' +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom +#. Field' +#. Description of the 'Fetch on Save if Empty' (Check) field in DocType +#. 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "If unchecked, the value will always be re-fetched on save." +msgstr "" + +#. Label of the if_owner (Check) field in DocType 'Custom DocPerm' +#. Label of the if_owner (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +msgid "If user is the owner" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:204 +msgid "If you are updating, please select \"Overwrite\" else existing rows will not be deleted." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:188 +msgid "If you are uploading new records, \"Naming Series\" becomes mandatory, if present." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:186 +msgid "If you are uploading new records, leave the \"name\" (ID) column blank." +msgstr "" + +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 +msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." +msgstr "" + +#. Description of the 'Parent Label' (Select) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "If you set this, this Item will come in a drop-down under the selected parent." +msgstr "" + +#: frappe/templates/emails/administrator_logged_in.html:3 +msgid "If you think this is unauthorized, please change the Administrator password." +msgstr "" + +#. Description of the 'Delimiter Options' (Data) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "If your CSV uses a different delimiter, add that character here, ensuring no spaces or additional characters are included." +msgstr "" + +#. Description of the 'Source Text' (Code) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "If your data is in HTML, please copy paste the exact HTML code with the tags." +msgstr "" + +#. Label of the ignore_user_permissions (Check) field in DocType 'DocField' +#. Label of the ignore_user_permissions (Check) field in DocType 'Custom Field' +#. Label of the ignore_user_permissions (Check) field in DocType 'Customize +#. Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Ignore User Permissions" +msgstr "" + +#. Label of the ignore_xss_filter (Check) field in DocType 'DocField' +#. Label of the ignore_xss_filter (Check) field in DocType 'Custom Field' +#. Label of the ignore_xss_filter (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Ignore XSS Filter" +msgstr "" + +#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email +#. Account' +#. Description of the 'Attachment Limit (MB)' (Int) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Ignore attachments over this size" +msgstr "" + +#. Label of the ignored_apps (Table) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Ignored Apps" +msgstr "" + +#: frappe/model/workflow.py:202 +msgid "Illegal Document Status for {0}" +msgstr "" + +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 +msgid "Illegal SQL Query" +msgstr "" + +#: frappe/utils/jinja.py:127 +msgid "Illegal template" +msgstr "" + +#. Label of the image (Attach Image) field in DocType 'Contact' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#. Option for the 'Letter Head Based On' (Select) field in DocType 'Letter +#. Head' +#. Label of the image (Attach Image) field in DocType 'Letter Head' +#. Label of the footer_image (Attach Image) field in DocType 'Letter Head' +#. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' +#. Label of the meta_image (Attach Image) field in DocType 'Web Page' +#. Label of the image (Attach) field in DocType 'Website Slideshow Item' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "Image" +msgstr "" + +#. Label of the image_field (Data) field in DocType 'DocType' +#. Label of the image_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Image Field" +msgstr "" + +#. Label of the image_height (Float) field in DocType 'Letter Head' +#. Label of the footer_image_height (Float) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Image Height" +msgstr "" + +#. Label of the image_link (Attach) field in DocType 'About Us Team Member' +#: frappe/website/doctype/about_us_team_member/about_us_team_member.json +msgid "Image Link" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:208 +msgid "Image View" +msgstr "" + +#. Label of the image_width (Float) field in DocType 'Letter Head' +#. Label of the footer_image_width (Float) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Image Width" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1507 +msgid "Image field must be a valid fieldname" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1509 +msgid "Image field must be of type Attach Image" +msgstr "" + +#: frappe/core/doctype/file/utils.py:136 +msgid "Image link '{0}' is not valid" +msgstr "" + +#: frappe/core/doctype/file/file.js:108 +msgid "Image optimized" +msgstr "" + +#: frappe/core/doctype/file/utils.py:289 +msgid "Image: Corrupted Data Stream" +msgstr "" + +#: frappe/public/js/frappe/views/image/image_view.js:13 +msgid "Images" +msgstr "" + +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/user/user.js:372 +msgid "Impersonate" +msgstr "" + +#: frappe/core/doctype/user/user.js:399 +msgid "Impersonate as {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 +msgid "Impersonated by {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:21 +msgid "Impersonating {0}" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:56 +msgid "Implement `clear_old_logs` method to enable auto error clearing." +msgstr "" + +#. Option for the 'Grant Type' (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Implicit" +msgstr "" + +#. Label of the import (Check) field in DocType 'Custom DocPerm' +#. Label of the import (Check) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/recorder/recorder_list.js:16 +#: frappe/email/doctype/email_group/email_group.js:31 +msgid "Import" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1913 +msgctxt "Button in list view menu" +msgid "Import" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Label of a shortcut in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Import Data" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.js:14 +msgid "Import Email From" +msgstr "" + +#. Label of the import_file (Attach) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import File" +msgstr "" + +#. Label of the import_warnings_section (Section Break) field in DocType 'Data +#. Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import File Errors and Warnings" +msgstr "" + +#. Label of the import_log_section (Section Break) field in DocType 'Data +#. Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Log" +msgstr "" + +#. Label of the import_log_preview (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Log Preview" +msgstr "" + +#. Label of the import_preview (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Preview" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:41 +msgid "Import Progress" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.js:8 +#: frappe/email/doctype/email_group/email_group.js:30 +msgid "Import Subscribers" +msgstr "" + +#. Label of the import_type (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Type" +msgstr "" + +#. Label of the import_warnings (HTML) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import Warnings" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:117 +msgid "Import Zip" +msgstr "" + +#. Label of the google_sheets_url (Data) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Import from Google Sheets" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:612 +msgid "Import template should be of type .csv, .xlsx or .xls" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:482 +msgid "Import template should contain a Header and atleast one row." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:165 +msgid "Import timed out, please re-try." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.py:68 +msgid "Importing {0} is not allowed." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.js:19 +msgid "Importing {0} of {1}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:35 +msgid "Importing {0} of {1}, {2}" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:20 +msgid "In" +msgstr "" + +#. Description of the 'Force User to Reset Password' (Int) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "In Days" +msgstr "" + +#. Label of the in_filter (Check) field in DocType 'DocField' +#. Label of the in_filter (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In Filter" +msgstr "" + +#. Label of the in_global_search (Check) field in DocType 'DocField' +#. Label of the in_global_search (Check) field in DocType 'Custom Field' +#. Label of the in_global_search (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In Global Search" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.js:88 +msgid "In Grid View" +msgstr "" + +#. Label of the in_standard_filter (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "In List Filter" +msgstr "" + +#. Label of the in_list_view (Check) field in DocType 'DocField' +#. Label of the in_list_view (Check) field in DocType 'Custom Field' +#. Label of the in_list_view (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype.js:89 +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In List View" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:19 +msgid "In Minutes" +msgstr "" + +#. Label of the in_preview (Check) field in DocType 'DocField' +#. Label of the in_preview (Check) field in DocType 'Custom Field' +#. Label of the in_preview (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In Preview" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:42 +msgid "In Progress" +msgstr "" + +#: frappe/database/database.py:287 +msgid "In Read Only Mode" +msgstr "" + +#. Label of the in_reply_to (Link) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "In Reply To" +msgstr "" + +#. Label of the in_standard_filter (Check) field in DocType 'Custom Field' +#. Label of the in_standard_filter (Check) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "In Standard Filter" +msgstr "" + +#. Description of the 'Font Size' (Float) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "In points. Default is 9." +msgstr "" + +#. Description of the 'Allow Login After Fail' (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "In seconds" +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:209 +msgid "Inactive" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/email/doctype/email_account/email_account_list.js:19 +msgid "Inbox" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_account/email_account.json +msgid "Inbox User" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:209 +msgid "Inbox View" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:110 +msgid "Include Disabled" +msgstr "" + +#. Label of the include_name_field (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Include Name Field" +msgstr "" + +#. Label of the navbar_search (Check) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Include Search in Top Bar" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.js:61 +msgid "Include Theme from Apps" +msgstr "" + +#. Label of the attach_view_link (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Include Web View Link in Email" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 +msgid "Include filters" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1648 +msgid "Include hidden columns" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1620 +msgid "Include indentation" +msgstr "" + +#: frappe/public/js/frappe/form/controls/password.js:106 +msgid "Include symbols, numbers and capital letters in the password" +msgstr "" + +#. Label of the incoming_popimap_tab (Tab Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Incoming" +msgstr "" + +#. Label of the mailbox_settings (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Incoming (POP/IMAP) Settings" +msgstr "" + +#. Label of the incoming_emails_last_7_days_column (Column Break) field in +#. DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Incoming Emails (Last 7 days)" +msgstr "" + +#. Label of the email_server (Data) field in DocType 'Email Account' +#. Label of the email_server (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Incoming Server" +msgstr "" + +#. Label of the mailbox_settings (Section Break) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Incoming Settings" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:32 +msgid "Incoming email account not correct" +msgstr "" + +#: frappe/model/virtual_doctype.py:79 frappe/model/virtual_doctype.py:92 +msgid "Incomplete Virtual Doctype Implementation" +msgstr "" + +#: frappe/auth.py:258 +msgid "Incomplete login details" +msgstr "" + +#: frappe/email/smtp.py:104 +msgid "Incorrect Configuration" +msgstr "" + +#: frappe/utils/csvutils.py:234 +msgid "Incorrect URL" +msgstr "" + +#: frappe/utils/password.py:100 +msgid "Incorrect User or Password" +msgstr "" + +#: frappe/twofactor.py:176 frappe/twofactor.py:188 +msgid "Incorrect Verification code" +msgstr "" + +#: frappe/model/document.py:1555 +msgid "Incorrect value in row {0}:" +msgstr "" + +#: frappe/model/document.py:1557 +msgid "Incorrect value:" +msgstr "" + +#. Label of the search_index (Check) field in DocType 'DocField' +#. Label of the index (Int) field in DocType 'Recorder Query' +#. Label of the search_index (Check) field in DocType 'Custom Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder_query/recorder_query.json +#: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 +#: frappe/public/js/frappe/model/meta.js:203 +#: frappe/public/js/frappe/model/model.js:124 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 +msgid "Index" +msgstr "" + +#. Label of the index_web_pages_for_search (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Index Web Pages for Search" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:132 +msgid "Index created successfully on column {0} of doctype {1}" +msgstr "" + +#. Label of the indexing_authorization_code (Data) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Indexing authorization code" +msgstr "" + +#. Label of the indexing_refresh_token (Data) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Indexing refresh token" +msgstr "" + +#. Label of the indicator (Select) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Indicator" +msgstr "" + +#. Label of the indicator_color (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Indicator Color" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:463 +msgid "Indicator color" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/core/doctype/comment/comment.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Info" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:144 +msgid "Info:" +msgstr "" + +#. Label of the initial_sync_count (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Initial Sync Count" +msgstr "" + +#. Option for the 'Database Engine' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "InnoDB" +msgstr "" + +#. Description of the 'New Role' (Data) field in DocType 'Role Replication' +#: frappe/core/doctype/role_replication/role_replication.json +msgid "Input existing role name if you would like to extend it with access of another role." +msgstr "" + +#: frappe/core/doctype/data_import/data_import_list.js:35 +msgid "Insert" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Insert Above" +msgstr "" + +#. Label of the insert_after (Select) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/public/js/frappe/views/reports/query_report.js:1893 +msgid "Insert After" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:251 +msgid "Insert After cannot be set as {0}" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:244 +msgid "Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Insert Below" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:395 +msgid "Insert Column Before {0}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/markdown_editor.js:82 +msgid "Insert Image in Markdown" +msgstr "" + +#. Option for the 'Import Type' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Insert New Records" +msgstr "" + +#. Label of the insert_style (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Insert Style" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 +msgid "Install {0} from Marketplace" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Installed Application" +msgstr "" + +#. Name of a DocType +#. Label of the installed_applications (Table) field in DocType 'Installed +#. Applications' +#: frappe/core/doctype/installed_applications/installed_applications.json +msgid "Installed Applications" +msgstr "" + +#: frappe/core/doctype/installed_applications/installed_applications.js:18 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Installed Apps" +msgstr "" + +#. Label of the instructions (HTML) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Instructions" +msgstr "" + +#: frappe/templates/includes/login/login.js:261 +msgid "Instructions Emailed" +msgstr "" + +#: frappe/permissions.py:840 +msgid "Insufficient Permission Level for {0}" +msgstr "" + +#: frappe/database/query.py:808 frappe/database/query.py:1054 +msgid "Insufficient Permission for {0}" +msgstr "" + +#: frappe/desk/reportview.py:361 +msgid "Insufficient Permissions for deleting Report" +msgstr "" + +#: frappe/desk/reportview.py:332 +msgid "Insufficient Permissions for editing Report" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:446 +msgid "Insufficient attachment limit" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Int" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Integration Request" +msgstr "" + +#. Group in User's connections +#. Name of a Workspace +#. Label of the integrations (Tab Break) field in DocType 'Website Settings' +#: frappe/core/doctype/user/user.json +#: frappe/integrations/workspace/integrations/integrations.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Integrations" +msgstr "" + +#. Description of the 'Delivery Status' (Select) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Integrations can use this field to set email delivery status" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Inter" +msgstr "" + +#. Label of the interest (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Interests" +msgstr "" + +#. Option for the 'Level' (Select) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Intermediate" +msgstr "" + +#: frappe/public/js/frappe/request.js:235 +msgid "Internal Server Error" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/docshare/docshare.json +msgid "Internal record of document shares" +msgstr "" + +#. Label of the intro_video_url (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Intro Video URL" +msgstr "" + +#. Description of the 'Company Introduction' (Text Editor) field in DocType +#. 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Introduce your company to the website visitor." +msgstr "" + +#. Label of the introduction_section (Section Break) field in DocType 'Contact +#. Us Settings' +#. Label of the introduction (Text Editor) field in DocType 'Contact Us +#. Settings' +#. Label of the introduction_text (Text Editor) field in DocType 'Web Form' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/web_form/web_form.json +msgid "Introduction" +msgstr "" + +#. Description of the 'Introduction' (Text Editor) field in DocType 'Contact Us +#. Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Introductory information for the Contact Us Page" +msgstr "" + +#. Label of the introspection_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Introspection URI" +msgstr "" + +#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization +#. Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Invalid" +msgstr "" + +#: frappe/public/js/form_builder/utils.js:221 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 +msgid "Invalid \"depends_on\" expression" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:514 +msgid "Invalid \"depends_on\" expression set in filter {0}" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:210 +msgid "Invalid \"mandatory_depends_on\" expression" +msgstr "" + +#: frappe/utils/nestedset.py:178 +msgid "Invalid Action" +msgstr "" + +#: frappe/utils/csvutils.py:37 +msgid "Invalid CSV Format" +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:111 +msgid "Invalid Code. Please try again." +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:91 +msgid "Invalid Condition: {}" +msgstr "" + +#: frappe/email/smtp.py:135 +msgid "Invalid Credentials" +msgstr "" + +#: frappe/utils/data.py:146 frappe/utils/data.py:309 +msgid "Invalid Date" +msgstr "" + +#: frappe/www/list.py:85 +msgid "Invalid DocType" +msgstr "" + +#: frappe/database/query.py:144 +msgid "Invalid DocType: {0}" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1273 +msgid "Invalid Fieldname" +msgstr "" + +#: frappe/core/doctype/file/file.py:221 +msgid "Invalid File URL" +msgstr "" + +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 +msgid "Invalid Filter" +msgstr "" + +#: frappe/public/js/form_builder/store.js:221 +msgid "Invalid Filter Format for field {0} of type {1}. Try using filter icon on the field to set it correctly" +msgstr "" + +#: frappe/utils/dashboard.py:61 +msgid "Invalid Filter Value" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.py:83 +msgid "Invalid Home Page" +msgstr "" + +#: frappe/utils/verified_command.py:48 frappe/www/update-password.html:178 +msgid "Invalid Link" +msgstr "" + +#: frappe/www/login.py:128 +msgid "Invalid Login Token" +msgstr "" + +#: frappe/templates/includes/login/login.js:290 +msgid "Invalid Login. Try again." +msgstr "" + +#: frappe/email/receive.py:112 frappe/email/receive.py:149 +msgid "Invalid Mail Server. Please rectify and try again." +msgstr "" + +#: frappe/model/naming.py:109 +msgid "Invalid Naming Series: {}" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.py:113 +#: frappe/core/doctype/rq_job/rq_job.py:122 +msgid "Invalid Operation" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 +msgid "Invalid Option" +msgstr "" + +#: frappe/email/smtp.py:103 +msgid "Invalid Outgoing Mail Server or Port: {0}" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:200 +msgid "Invalid Output Format" +msgstr "" + +#: frappe/model/base_document.py:134 +msgid "Invalid Override" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.py:202 +msgid "Invalid Parameters." +msgstr "" + +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 +#: frappe/www/update-password.html:169 frappe/www/update-password.html:171 +#: frappe/www/update-password.html:272 +msgid "Invalid Password" +msgstr "" + +#: frappe/utils/__init__.py:125 +msgid "Invalid Phone Number" +msgstr "" + +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/www/login.py:128 +msgid "Invalid Request" +msgstr "" + +#: frappe/desk/search.py:26 +msgid "Invalid Search Field {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1215 +msgid "Invalid Table Fieldname" +msgstr "" + +#: frappe/public/js/workflow_builder/store.js:192 +msgid "Invalid Transition" +msgstr "" + +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 +#: frappe/public/js/frappe/widgets/widget_dialog.js:602 +#: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 +msgid "Invalid URL" +msgstr "" + +#: frappe/email/receive.py:157 +msgid "Invalid User Name or Support Password. Please rectify and try again." +msgstr "" + +#: frappe/public/js/frappe/ui/field_group.js:137 +msgid "Invalid Values" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:120 +msgid "Invalid Webhook Secret" +msgstr "" + +#: frappe/desk/reportview.py:187 +msgid "Invalid aggregate function" +msgstr "" + +#: frappe/database/query.py:1544 +msgid "Invalid alias format: {0}. Alias must be a simple identifier." +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1470 +msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." +msgstr "" + +#: frappe/database/query.py:1446 +msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." +msgstr "" + +#: frappe/database/query.py:462 +msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." +msgstr "" + +#: frappe/database/query.py:577 +msgid "Invalid characters in table name: {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:404 +msgid "Invalid column" +msgstr "" + +#: frappe/database/query.py:383 +msgid "Invalid condition type in nested filters: {0}" +msgstr "" + +#: frappe/database/query.py:789 +msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." +msgstr "" + +#: frappe/model/document.py:1020 frappe/model/document.py:1034 +msgid "Invalid docstatus" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:229 +msgid "Invalid expression set in filter {0}" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:219 +msgid "Invalid expression set in filter {0} ({1})" +msgstr "" + +#: frappe/database/query.py:1303 +msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." +msgstr "" + +#: frappe/database/query.py:736 +msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." +msgstr "" + +#: frappe/database/query.py:1622 +msgid "Invalid field name in function: {0}. Only simple field names are allowed." +msgstr "" + +#: frappe/utils/data.py:2241 +msgid "Invalid field name {0}" +msgstr "" + +#: frappe/database/query.py:670 +msgid "Invalid field type: {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1086 +msgid "Invalid fieldname '{0}' in autoname" +msgstr "" + +#: frappe/deprecation_dumpster.py:283 +msgid "Invalid file path: {0}" +msgstr "" + +#: frappe/database/query.py:366 +msgid "Invalid filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:452 +msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:201 +msgid "Invalid filter: {0}" +msgstr "" + +#: frappe/database/query.py:1424 +msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." +msgstr "" + +#: frappe/database/query.py:1385 +msgid "Invalid function dictionary format" +msgstr "" + +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "" + +#: frappe/desk/doctype/dashboard/dashboard.py:67 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 +msgid "Invalid json added in the custom options: {0}" +msgstr "" + +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 +msgid "Invalid name type (integer) for varchar name column" +msgstr "" + +#: frappe/model/naming.py:62 +msgid "Invalid naming series {}: dot (.) missing" +msgstr "" + +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:453 +msgid "Invalid or corrupted content for import" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.py:139 +msgid "Invalid redirect regex in row #{}: {}" +msgstr "" + +#: frappe/app.py:340 +msgid "Invalid request arguments" +msgstr "" + +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 +msgid "Invalid simple filter format: {0}" +msgstr "" + +#: frappe/database/query.py:343 +msgid "Invalid start for filter condition: {0}. Expected a list or tuple." +msgstr "" + +#: frappe/database/query.py:1491 +msgid "Invalid string literal format: {0}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:430 +msgid "Invalid template file for import" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.py:208 +msgid "Invalid token state! Check if the token has been created by the OAuth user." +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:165 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:336 +msgid "Invalid username or password" +msgstr "" + +#: frappe/model/naming.py:176 +msgid "Invalid value specified for UUID: {}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:253 +msgctxt "Error message in web form" +msgid "Invalid values for fields:" +msgstr "" + +#: frappe/printing/page/print/print.js:654 +msgid "Invalid wkhtmltopdf version" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1565 +msgid "Invalid {0} condition" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Inverse" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + +#: frappe/contacts/doctype/contact/contact.js:30 +msgid "Invite as User" +msgstr "" + +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:22 +msgid "Is" +msgstr "" + +#. Label of the is_active (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Is Active" +msgstr "" + +#. Label of the is_attachments_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Attachments Folder" +msgstr "" + +#. Label of the is_calendar_and_gantt (Check) field in DocType 'DocType' +#. Label of the is_calendar_and_gantt (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Is Calendar and Gantt" +msgstr "" + +#. Label of the istable (Check) field in DocType 'DocType' +#. Label of the is_child_table (Check) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:50 +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Is Child Table" +msgstr "" + +#. Label of the is_complete (Check) field in DocType 'Module Onboarding' +#. Label of the is_complete (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Complete" +msgstr "" + +#. Label of the is_completed (Check) field in DocType 'Email Flag Queue' +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Is Completed" +msgstr "" + +#. Label of the is_custom (Check) field in DocType 'Role' +#. Label of the is_custom (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "Is Custom" +msgstr "" + +#. Label of the is_custom_field (Check) field in DocType 'Customize Form Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Is Custom Field" +msgstr "" + +#. Label of the is_default (Check) field in DocType 'Address Template' +#. Label of the is_default (Check) field in DocType 'User Permission' +#. Label of the is_default (Check) field in DocType 'Dashboard' +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_permission/user_permission_list.js:69 +#: frappe/desk/doctype/dashboard/dashboard.json +msgid "Is Default" +msgstr "" + +#. Label of the is_dynamic_url (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Is Dynamic URL?" +msgstr "" + +#. Label of the is_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Folder" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:43 +msgid "Is Global" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "" + +#. Label of the is_hidden (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Is Hidden" +msgstr "" + +#. Label of the is_home_folder (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Home Folder" +msgstr "" + +#. Label of the reqd (Check) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Is Mandatory Field" +msgstr "" + +#. Label of the is_optional_state (Check) field in DocType 'Workflow Document +#. State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Is Optional State" +msgstr "" + +#. Label of the is_primary (Check) field in DocType 'Contact Email' +#: frappe/contacts/doctype/contact_email/contact_email.json +msgid "Is Primary" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "" + +#. Label of the is_primary_contact (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 +msgid "Is Primary Contact" +msgstr "" + +#. Label of the is_primary_mobile_no (Check) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Is Primary Mobile" +msgstr "" + +#. Label of the is_primary_phone (Check) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Is Primary Phone" +msgstr "" + +#. Label of the is_private (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Is Private" +msgstr "" + +#. Label of the is_public (Check) field in DocType 'Dashboard Chart' +#. Label of the is_public (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Is Public" +msgstr "" + +#. Label of the is_published_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Is Published Field" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1516 +msgid "Is Published Field must be a valid fieldname" +msgstr "" + +#. Label of the is_query_report (Check) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:341 +msgid "Is Query Report" +msgstr "" + +#. Label of the is_remote_request (Check) field in DocType 'Integration +#. Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Is Remote Request?" +msgstr "" + +#. Label of the is_setup_complete (Check) field in DocType 'Installed +#. Application' +#: frappe/core/doctype/installed_application/installed_application.json +msgid "Is Setup Complete?" +msgstr "" + +#. Label of the issingle (Check) field in DocType 'DocType' +#. Label of the is_single (Check) field in DocType 'Onboarding Step' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:65 +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Single" +msgstr "" + +#. Label of the is_skipped (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Is Skipped" +msgstr "" + +#. Label of the is_spam (Check) field in DocType 'Email Rule' +#: frappe/email/doctype/email_rule/email_rule.json +msgid "Is Spam" +msgstr "" + +#. Label of the is_standard (Check) field in DocType 'Navbar Item' +#. Label of the is_standard (Select) field in DocType 'Report' +#. Label of the is_standard (Check) field in DocType 'User Type' +#. Label of the is_standard (Check) field in DocType 'Dashboard' +#. Label of the is_standard (Check) field in DocType 'Dashboard Chart' +#. Label of the is_standard (Check) field in DocType 'Form Tour' +#. Label of the is_standard (Check) field in DocType 'Number Card' +#. Label of the is_standard (Check) field in DocType 'Notification' +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/notification/notification.json +msgid "Is Standard" +msgstr "" + +#. Label of the is_submittable (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:40 +msgid "Is Submittable" +msgstr "" + +#. Label of the is_system_generated (Check) field in DocType 'Custom Field' +#. Label of the is_system_generated (Check) field in DocType 'Customize Form +#. Field' +#. Label of the is_system_generated (Check) field in DocType 'Property Setter' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Is System Generated" +msgstr "" + +#. Label of the istable (Check) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Is Table" +msgstr "" + +#. Label of the is_table_field (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Is Table Field" +msgstr "" + +#. Label of the is_tree (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Is Tree" +msgstr "" + +#. Label of the is_unique (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Is Unique" +msgstr "" + +#. Label of the is_virtual (Check) field in DocType 'DocType' +#. Label of the is_virtual (Check) field in DocType 'Custom Field' +#. Label of the is_virtual (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Is Virtual" +msgstr "" + +#. Label of the is_standard (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Is standard" +msgstr "" + +#: frappe/core/doctype/file/utils.py:157 frappe/utils/file_manager.py:311 +msgid "It is risky to delete this file: {0}. Please contact your System Manager." +msgstr "" + +#. Label of the item_label (Data) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Item Label" +msgstr "" + +#. Label of the item_type (Select) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Item Type" +msgstr "" + +#: frappe/utils/nestedset.py:229 +msgid "Item cannot be added to its own descendants" +msgstr "" + +#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "JS" +msgstr "" + +#. Label of the js_message (HTML) field in DocType 'Custom HTML Block' +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +msgid "JS Message" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the json (Code) field in DocType 'Report' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Request Structure' (Select) field in DocType 'Webhook' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report/report.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/integrations/doctype/webhook/webhook.json +msgid "JSON" +msgstr "" + +#. Label of the webhook_json (Code) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "JSON Request Body" +msgstr "" + +#: frappe/templates/signup.html:5 +msgid "Jane Doe" +msgstr "" + +#. Label of the js (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "JavaScript" +msgstr "" + +#. Description of the 'Javascript' (Code) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "JavaScript Format: frappe.query_reports['REPORTNAME'] = {}" +msgstr "" + +#. Label of the javascript (Code) field in DocType 'Report' +#. Label of the javascript_section (Section Break) field in DocType 'Custom +#. HTML Block' +#. Label of the javascript (Code) field in DocType 'Web Page' +#. Label of the javascript (Code) field in DocType 'Website Script' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_script/website_script.json +msgid "Javascript" +msgstr "" + +#: frappe/www/login.html:74 +msgid "Javascript is disabled on your browser" +msgstr "" + +#. Option for the 'Print Format Type' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Jinja" +msgstr "" + +#. Label of the job_id (Data) field in DocType 'Prepared Report' +#. Label of the job_id (Data) field in DocType 'RQ Job' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job ID" +msgstr "" + +#. Label of the job_id (Link) field in DocType 'Submission Queue' +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Job Id" +msgstr "" + +#. Label of the job_info_section (Section Break) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job Info" +msgstr "" + +#. Label of the job_name (Data) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job Name" +msgstr "" + +#. Label of the job_status_section (Section Break) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Job Status" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.js:24 +msgid "Job Stopped Successfully" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.py:121 +msgid "Job is in {0} state and can't be cancelled" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.py:113 +msgid "Job is not running." +msgstr "" + +#: frappe/desk/doctype/event/event.js:55 +msgid "Join video conference with {0}" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:398 +#: frappe/public/js/frappe/form/toolbar.js:833 +msgid "Jump to field" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:17 +#: frappe/public/js/frappe/utils/number_systems.js:31 +#: frappe/public/js/frappe/utils/number_systems.js:53 +msgctxt "Number system" +msgid "K" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Kanban" +msgstr "" + +#. Name of a DocType +#. Label of the kanban_board (Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:511 +msgid "Kanban Board" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Kanban Board Column" +msgstr "" + +#. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 +msgid "Kanban Board Name" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 +msgctxt "Button in kanban view menu" +msgid "Kanban Settings" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:206 +msgid "Kanban View" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Keep track of all update feeds" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/communication/communication.json +msgid "Keeps track of all communications" +msgstr "" + +#. Label of the defkey (Data) field in DocType 'DefaultValue' +#. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' +#. Label of the key (Data) field in DocType 'Query Parameters' +#. Label of the key (Data) field in DocType 'Webhook Data' +#. Label of the key (Small Text) field in DocType 'Webhook Header' +#. Label of the key (Data) field in DocType 'Website Meta Tag' +#: frappe/core/doctype/defaultvalue/defaultvalue.json +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/integrations/doctype/query_parameters/query_parameters.json +#: frappe/integrations/doctype/webhook_data/webhook_data.json +#: frappe/integrations/doctype/webhook_header/webhook_header.json +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json +msgid "Key" +msgstr "" + +#. Label of a standard help item +#. Type: Action +#: frappe/hooks.py frappe/public/js/frappe/ui/keyboard.js:130 +msgid "Keyboard Shortcuts" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Keycloak" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:37 +msgctxt "Number system" +msgid "Kh" +msgstr "" + +#. Label of a Card Break in the Website Workspace +#: frappe/website/doctype/help_article/help_article.py:80 +#: frappe/website/doctype/help_article/templates/help_article_list.html:2 +#: frappe/website/doctype/help_article/templates/help_article_list.html:11 +#: frappe/website/workspace/website/website.json +msgid "Knowledge Base" +msgstr "" + +#. Name of a role +#: frappe/website/doctype/help_article/help_article.json +msgid "Knowledge Base Contributor" +msgstr "" + +#. Name of a role +#: frappe/website/doctype/help_article/help_article.json +msgid "Knowledge Base Editor" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:27 +#: frappe/public/js/frappe/utils/number_systems.js:49 +msgctxt "Number system" +msgid "L" +msgstr "" + +#. Label of the ldap_auth_section (Section Break) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Auth" +msgstr "" + +#. Label of the ldap_custom_settings_section (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Custom Settings" +msgstr "" + +#. Label of the ldap_email_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Email Field" +msgstr "" + +#. Label of the ldap_first_name_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP First Name Field" +msgstr "" + +#. Label of the ldap_group (Data) field in DocType 'LDAP Group Mapping' +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgid "LDAP Group" +msgstr "" + +#. Label of the ldap_group_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Group Field" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgid "LDAP Group Mapping" +msgstr "" + +#. Label of the ldap_group_mappings_section (Section Break) field in DocType +#. 'LDAP Settings' +#. Label of the ldap_groups (Table) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Group Mappings" +msgstr "" + +#. Label of the ldap_group_member_attribute (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Group Member attribute" +msgstr "" + +#. Label of the ldap_last_name_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Last Name Field" +msgstr "" + +#. Label of the ldap_middle_name_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Middle Name Field" +msgstr "" + +#. Label of the ldap_mobile_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Mobile Field" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:163 +msgid "LDAP Not Installed" +msgstr "" + +#. Label of the ldap_phone_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Phone Field" +msgstr "" + +#. Label of the ldap_search_string (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Search String" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:130 +msgid "LDAP Search String must be enclosed in '()' and needs to contian the user placeholder {0}, eg sAMAccountName={0}" +msgstr "" + +#. Label of the ldap_search_and_paths_section (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Search and Paths" +msgstr "" + +#. Label of the ldap_security (Section Break) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Security" +msgstr "" + +#. Label of the ldap_server_settings_section (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Server Settings" +msgstr "" + +#. Label of the ldap_server_url (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Server Url" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "LDAP Settings" +msgstr "" + +#. Label of the ldap_user_creation_and_mapping_section (Section Break) field in +#. DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP User Creation and Mapping" +msgstr "" + +#. Label of the ldap_username_field (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP Username Field" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:309 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:426 +msgid "LDAP is not enabled." +msgstr "" + +#. Label of the ldap_search_path_group (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP search path for Groups" +msgstr "" + +#. Label of the ldap_search_path_user (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "LDAP search path for Users" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:102 +msgid "LDAP settings incorrect. validation response was: {0}" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Label of the label (Data) field in DocType 'DocField' +#. Label of the label (Data) field in DocType 'DocType Action' +#. Label of the label (Data) field in DocType 'Report Column' +#. Label of the label (Data) field in DocType 'Report Filter' +#. Label of the label (Data) field in DocType 'Custom Field' +#. Label of the label (Data) field in DocType 'Customize Form Field' +#. Label of the label (Data) field in DocType 'DocType Layout Field' +#. Label of the label (Data) field in DocType 'Desktop Icon' +#. Label of the label (Data) field in DocType 'Form Tour Step' +#. Label of the label (Data) field in DocType 'Number Card' +#. Label of the label (Data) field in DocType 'Workspace Chart' +#. Label of the label (Data) field in DocType 'Workspace Custom Block' +#. Label of the label (Data) field in DocType 'Workspace Link' +#. Label of the label (Data) field in DocType 'Workspace Number Card' +#. Label of the label (Data) field in DocType 'Workspace Quick List' +#. Label of the label (Data) field in DocType 'Workspace Shortcut' +#. Label of the label (Data) field in DocType 'Top Bar Item' +#. Label of the label (Data) field in DocType 'Web Template Field' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/custom/doctype/doctype_layout_field/doctype_layout_field.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/workspace_chart/workspace_chart.json +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:474 +#: frappe/public/js/form_builder/components/Field.vue:208 +#: frappe/public/js/frappe/widgets/widget_dialog.js:183 +#: frappe/public/js/frappe/widgets/widget_dialog.js:251 +#: frappe/public/js/frappe/widgets/widget_dialog.js:313 +#: frappe/public/js/frappe/widgets/widget_dialog.js:466 +#: frappe/public/js/frappe/widgets/widget_dialog.js:643 +#: frappe/public/js/frappe/widgets/widget_dialog.js:676 +#: frappe/public/js/print_format_builder/Field.vue:18 +#: frappe/templates/form_grid/fields.html:37 +#: frappe/website/doctype/top_bar_item/top_bar_item.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Label" +msgstr "" + +#. Label of the label_help (HTML) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Label Help" +msgstr "" + +#. Label of the label_and_type (Section Break) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Label and Type" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:145 +msgid "Label is mandatory" +msgstr "" + +#. Label of the sb0 (Section Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Landing Page" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:23 +msgid "Landscape" +msgstr "" + +#. Name of a DocType +#. Label of the language (Link) field in DocType 'System Settings' +#. Label of the language (Link) field in DocType 'Translation' +#. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 +#: frappe/public/js/frappe/form/templates/print_layout.html:11 +msgid "Language" +msgstr "" + +#. Label of the language_code (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +msgid "Language Code" +msgstr "" + +#. Label of the language_name (Data) field in DocType 'Language' +#: frappe/core/doctype/language/language.json +msgid "Language Name" +msgstr "" + +#. Label of the last_10_active_users (Code) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Last 10 active users" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:628 +msgid "Last 14 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:632 +msgid "Last 30 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:652 +msgid "Last 6 Months" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:624 +msgid "Last 7 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:636 +msgid "Last 90 Days" +msgstr "" + +#. Label of the last_active (Datetime) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Active" +msgstr "" + +#. Label of the last_execution (Datetime) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Last Execution" +msgstr "" + +#. Label of the last_heartbeat (Datetime) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Last Heartbeat" +msgstr "" + +#. Label of the last_ip (Read Only) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last IP" +msgstr "" + +#. Label of the last_known_versions (Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Known Versions" +msgstr "" + +#. Label of the last_login (Read Only) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Login" +msgstr "" + +#: frappe/email/doctype/notification/notification.js:32 +msgid "Last Modified Date" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:242 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:480 +msgid "Last Modified On" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:644 +msgid "Last Month" +msgstr "" + +#. Label of the last_name (Data) field in DocType 'Contact' +#. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 +msgid "Last Name" +msgstr "" + +#. Label of the last_password_reset_date (Date) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Password Reset Date" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:648 +msgid "Last Quarter" +msgstr "" + +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" + +#. Label of the last_reset_password_key_generated_on (Datetime) field in +#. DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Last Reset Password Key Generated On" +msgstr "" + +#. Label of the datetime_last_run (Datetime) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Last Run" +msgstr "" + +#. Label of the last_sync_on (Datetime) field in DocType 'Google Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Last Sync On" +msgstr "" + +#. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Last Synced On" +msgstr "" + +#: frappe/model/meta.py:57 frappe/public/js/frappe/model/meta.js:205 +#: frappe/public/js/frappe/model/model.js:130 +msgid "Last Updated By" +msgstr "" + +#: frappe/model/meta.py:56 frappe/public/js/frappe/model/meta.js:204 +#: frappe/public/js/frappe/model/model.js:126 +msgid "Last Updated On" +msgstr "" + +#. Label of the last_user (Link) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Last User" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:640 +msgid "Last Week" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:656 +msgid "Last Year" +msgstr "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:753 +msgid "Last synced {0}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:194 +msgid "Layout Reset" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:186 +msgid "Layout will be reset to standard layout, are you sure you want to do this?" +msgstr "" + +#: frappe/website/web_template/section_with_features/section_with_features.html:26 +msgid "Learn more" +msgstr "" + +#. Description of the 'Repeat Till' (Date) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Leave blank to repeat always" +msgstr "" + +#: frappe/core/doctype/communication/mixins.py:207 +#: frappe/email/doctype/email_account/email_account.py:720 +msgid "Leave this conversation" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Ledger" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Align' (Select) field in DocType 'Letter Head' +#. Option for the 'Text Align' (Select) field in DocType 'Web Page' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Left" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:483 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:155 +msgctxt "alignment" +msgid "Left" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Left Bottom" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Left Center" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:58 +msgid "Left this conversation" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Legal" +msgstr "" + +#. Label of the length (Int) field in DocType 'DocField' +#. Label of the length (Int) field in DocType 'Custom Field' +#. Label of the length (Int) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Length" +msgstr "" + +#: frappe/public/js/frappe/ui/chart.js:11 +msgid "Length of passed data array is greater than value of maximum allowed label points!" +msgstr "" + +#: frappe/database/schema.py:138 +msgid "Length of {0} should be between 1 and 1000" +msgstr "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:729 +msgid "Less" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:24 +msgid "Less Than" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:26 +msgid "Less Than Or Equal To" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:434 +msgid "Let us continue with the onboarding" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/blocks/onboarding.js:94 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:597 +msgid "Let's Get Started" +msgstr "" + +#: frappe/utils/password_strength.py:111 +msgid "Let's avoid repeated words and characters" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:474 +msgid "Let's set up your account" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:263 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:304 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:375 +#: frappe/public/js/frappe/widgets/onboarding_widget.js:414 +msgid "Let's take you back to onboarding" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Letter" +msgstr "" + +#. Label of the letter_head (Link) field in DocType 'Report' +#. Name of a DocType +#: frappe/core/doctype/report/report.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/page/print/print.js:140 +#: 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 +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 +msgid "Letter Head" +msgstr "" + +#. Label of the source (Select) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Letter Head Based On" +msgstr "" + +#. Label of the letter_head_image_section (Section Break) field in DocType +#. 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Letter Head Image" +msgstr "" + +#. Label of the letter_head_name (Data) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:198 +msgid "Letter Head Name" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "Letter Head Scripts" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:49 +msgid "Letter Head cannot be both disabled and default" +msgstr "" + +#. Description of the 'Header HTML' (HTML Editor) field in DocType 'Letter +#. Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Letter Head in HTML" +msgstr "" + +#. Label of the permlevel (Int) field in DocType 'Custom DocPerm' +#. Label of the permlevel (Int) field in DocType 'DocPerm' +#. Label of the level (Select) field in DocType 'Help Article' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/page/permission_manager/permission_manager.js:144 +#: frappe/core/page/permission_manager/permission_manager.js:220 +#: frappe/public/js/frappe/roles_editor.js:68 +#: frappe/website/doctype/help_article/help_article.json +msgid "Level" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:467 +msgid "Level 0 is for document level permissions, higher levels for field level permissions." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:94 +msgid "Library" +msgstr "" + +#. Label of the license (Markdown Editor) field in DocType 'Package' +#: frappe/core/doctype/package/package.json frappe/www/attribution.html:36 +msgid "License" +msgstr "" + +#. Label of the license_type (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "License Type" +msgstr "" + +#. Option for the 'Desk Theme' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Light" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Light Blue" +msgstr "" + +#. Label of the light_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Light Color" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:60 +msgid "Light Theme" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/ui/filters/filter.js:18 +msgid "Like" +msgstr "" + +#: frappe/desk/like.py:92 +msgid "Liked" +msgstr "" + +#: frappe/model/meta.py:60 frappe/public/js/frappe/model/meta.js:208 +#: frappe/public/js/frappe/model/model.js:134 +msgid "Liked By" +msgstr "" + +#. Label of the likes (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Likes" +msgstr "" + +#. Label of the limit (Int) field in DocType 'Bulk Update' +#: frappe/desk/doctype/bulk_update/bulk_update.json +msgid "Limit" +msgstr "" + +#: frappe/database/query.py:116 +msgid "Limit must be a non-negative integer" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Line" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the link (Long Text) field in DocType 'Changelog Feed' +#. Label of the link (Small Text) field in DocType 'Desktop Icon' +#. Label of the link (Small Text) field in DocType 'Notification Log' +#. Option for the 'Type' (Select) field in DocType 'Workspace' +#. Option for the 'Type' (Select) field in DocType 'Workspace Link' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Link" +msgstr "" + +#. Label of the tab_break_18 (Tab Break) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Link Cards" +msgstr "" + +#. Label of the link_count (Int) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Link Count" +msgstr "" + +#. Label of the link_details_section (Section Break) field in DocType +#. 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Link Details" +msgstr "" + +#. Label of the link_doctype (Link) field in DocType 'Activity Log' +#. Label of the link_doctype (Link) field in DocType 'Communication Link' +#. Label of the link_doctype (Link) field in DocType 'DocType Link' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Link DocType" +msgstr "" + +#. Label of the link_doctype (Link) field in DocType 'Dynamic Link' +#: frappe/core/doctype/dynamic_link/dynamic_link.json +msgid "Link Document Type" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:406 +#: frappe/workflow/doctype/workflow_action/workflow_action.py:202 +msgid "Link Expired" +msgstr "" + +#. Label of the link_field_results_limit (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Link Field Results Limit" +msgstr "" + +#. Label of the link_fieldname (Data) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Link Fieldname" +msgstr "" + +#. Label of the link_filters (JSON) field in DocType 'DocField' +#. Label of the link_filters (JSON) field in DocType 'Custom Field' +#. Label of the link_filters (JSON) field in DocType 'Customize Form' +#. Label of the link_filters (JSON) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Link Filters" +msgstr "" + +#. Label of the link_name (Dynamic Link) field in DocType 'Activity Log' +#. Label of the link_name (Dynamic Link) field in DocType 'Communication Link' +#. Label of the link_name (Dynamic Link) field in DocType 'Dynamic Link' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json +msgid "Link Name" +msgstr "" + +#. Label of the link_title (Read Only) field in DocType 'Communication Link' +#. Label of the link_title (Read Only) field in DocType 'Dynamic Link' +#: frappe/core/doctype/communication_link/communication_link.json +#: frappe/core/doctype/dynamic_link/dynamic_link.json +msgid "Link Title" +msgstr "" + +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace' +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Link' +#. Label of the link_to (Dynamic Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/views/workspace/workspace.js:418 +#: frappe/public/js/frappe/widgets/widget_dialog.js:281 +#: frappe/public/js/frappe/widgets/widget_dialog.js:427 +msgid "Link To" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:363 +msgid "Link To in Row" +msgstr "" + +#. Label of the link_type (Select) field in DocType 'Workspace' +#. Label of the link_type (Select) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/views/workspace/workspace.js:410 +#: frappe/public/js/frappe/widgets/widget_dialog.js:273 +msgid "Link Type" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:359 +msgid "Link Type in Row" +msgstr "" + +#: frappe/website/doctype/about_us_settings/about_us_settings.js:6 +msgid "Link for About Us Page is \"/about\"." +msgstr "" + +#. Description of the 'Home Page' (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Link that is the website home page. Standard Links (home, login, products, blog, about, contact)" +msgstr "" + +#. Description of the 'URL' (Data) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "Link to the page you want to open. Leave blank if you want to make it a group parent." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +msgid "Linked" +msgstr "" + +#: frappe/public/js/frappe/form/linked_with.js:23 +msgid "Linked With" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +msgstr "" + +#. Label of the links (Table) field in DocType 'Address' +#. Label of the links (Table) field in DocType 'Contact' +#. Label of the links_section (Tab Break) field in DocType 'DocType' +#. Label of the links (Table) field in DocType 'Customize Form' +#. Label of the links (Table) field in DocType 'Event' +#. Label of the links (Table) field in DocType 'Workspace' +#: frappe/contacts/doctype/address/address.js:39 +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.js:92 +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/workspace/workspace.json +msgid "Links" +msgstr "" + +#. Option for the 'Apply To' (Select) field in DocType 'Client Script' +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/utils/utils.js:926 +msgid "List" +msgstr "" + +#. Label of the list__search_settings_section (Section Break) field in DocType +#. 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "List / Search Settings" +msgstr "" + +#. Label of the list_columns (Table) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "List Columns" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/list_filter/list_filter.json +msgid "List Filter" +msgstr "" + +#. Label of the list_settings_section (Section Break) field in DocType 'User' +#. Label of the section_break_8 (Section Break) field in DocType 'Customize +#. Form' +#. Label of the section_break_3 (Section Break) field in DocType 'Web Form' +#: frappe/core/doctype/user/user.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/website/doctype/web_form/web_form.json +msgid "List Settings" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1993 +msgctxt "Button in list view menu" +msgid "List Settings" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:202 +msgid "List View" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "List View Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:161 +msgid "List a document type" +msgstr "" + +#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Form' +#. Description of the 'Breadcrumbs' (Code) field in DocType 'Web Page' +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +msgid "List as [{\"label\": _(\"Jobs\"), \"route\":\"jobs\"}]" +msgstr "" + +#. Description of the 'Send Notification to' (Small Text) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "List of email addresses, separated by comma or new line." +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/patch_log/patch_log.json +msgid "List of patches executed" +msgstr "" + +#. Label of the list_setting_message (HTML) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "List setting message" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 +msgid "Lists" +msgstr "" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Load Balancing" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 +#: frappe/website/doctype/help_article/templates/help_article_list.html:30 +msgid "Load More" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:215 +msgctxt "Form timeline" +msgid "Load More Communications" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45 +msgid "Load more" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:172 +#: frappe/public/js/frappe/form/controls/multicheck.js:13 +#: frappe/public/js/frappe/form/linked_with.js:13 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 +#: frappe/public/js/frappe/ui/listing.html:16 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 +msgid "Loading" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:107 +msgid "Loading Filters..." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:257 +msgid "Loading import file..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Loading versions..." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/TreeNode.vue:45 +#: frappe/public/js/frappe/form/sidebar/share.js:51 +#: frappe/public/js/frappe/list/list_sidebar.js:243 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 +#: frappe/public/js/frappe/views/kanban/kanban_board.html:11 +#: frappe/public/js/frappe/widgets/chart_widget.js:50 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:129 +msgid "Loading..." +msgstr "" + +#. Label of the location (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Location" +msgstr "" + +#. Label of the log (Code) field in DocType 'Package Import' +#: frappe/core/doctype/package_import/package_import.json +msgid "Log" +msgstr "" + +#. Label of the log_api_requests (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Log API Requests" +msgstr "" + +#. Label of the log_data_section (Section Break) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Log Data" +msgstr "" + +#. Label of the ref_doctype (Link) field in DocType 'Logs To Clear' +#: frappe/core/doctype/logs_to_clear/logs_to_clear.json +msgid "Log DocType" +msgstr "" + +#: frappe/templates/emails/login_with_email_link.html:27 +msgid "Log In To {0}" +msgstr "" + +#. Label of the log_index (Int) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import_log/data_import_log.json +msgid "Log Index" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/log_setting_user/log_setting_user.json +msgid "Log Setting User" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/log_settings/log_settings.json +#: frappe/public/js/frappe/logtypes.js:20 +msgid "Log Settings" +msgstr "" + +#: frappe/www/app.py:23 +msgid "Log in to access this page." +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +#: frappe/website/doctype/website_settings/website_settings.py:182 +msgid "Log out" +msgstr "" + +#: frappe/handler.py:119 +msgid "Logged Out" +msgstr "" + +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#. Label of the security_tab (Tab Break) field in DocType 'System Settings' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/public/js/frappe/web_form/webform_script.js:16 +#: frappe/templates/discussions/discussions_section.html:60 +#: frappe/templates/discussions/reply_section.html:44 +#: frappe/templates/includes/navbar/dropdown_login.html:15 +#: frappe/templates/includes/navbar/navbar_login.html:25 +#: frappe/website/page_renderers/not_permitted_page.py:24 +#: frappe/www/login.html:45 +msgid "Login" +msgstr "" + +#. Label of the login_after (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Login After" +msgstr "" + +#. Label of the login_before (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Login Before" +msgstr "" + +#: frappe/public/js/frappe/desk.js:256 +msgid "Login Failed please try again" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:144 +msgid "Login Id is required" +msgstr "" + +#. Label of the login_methods_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Login Methods" +msgstr "" + +#. Label of the misc_section (Section Break) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Login Page" +msgstr "" + +#: frappe/www/login.py:156 +msgid "Login To {0}" +msgstr "" + +#: frappe/twofactor.py:260 +msgid "Login Verification Code from {}" +msgstr "" + +#: frappe/templates/emails/new_message.html:4 +msgid "Login and view in Browser" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:368 +msgid "Login is required to see web form list view. Enable {0} to see list settings" +msgstr "" + +#: frappe/templates/includes/login/login.js:69 +msgid "Login link sent to your email" +msgstr "" + +#: frappe/auth.py:342 frappe/auth.py:345 +msgid "Login not allowed at this time" +msgstr "" + +#. Label of the login_required (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Login required" +msgstr "" + +#: frappe/twofactor.py:164 +msgid "Login session expired, refresh page to retry" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:110 +msgid "Login to comment" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:6 +msgid "Login to start a new discussion" +msgstr "" + +#: frappe/www/login.html:64 +msgid "Login to {0}" +msgstr "" + +#: frappe/templates/includes/login/login.js:319 +msgid "Login token required" +msgstr "" + +#: frappe/www/login.html:126 frappe/www/login.html:210 +msgid "Login with Email Link" +msgstr "" + +#: frappe/www/login.html:116 +msgid "Login with Frappe Cloud" +msgstr "" + +#: frappe/www/login.html:49 +msgid "Login with LDAP" +msgstr "" + +#. Label of the login_with_email_link (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Login with email link" +msgstr "" + +#. Label of the login_with_email_link_expiry (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Login with email link expiry (in minutes)" +msgstr "" + +#: frappe/auth.py:147 +msgid "Login with username and password is not allowed." +msgstr "" + +#: frappe/www/login.html:100 +msgid "Login with {0}" +msgstr "" + +#. Label of the logo_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Logo URI" +msgstr "" + +#. Option for the 'Operation' (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json frappe/www/apps.html:59 +#: frappe/www/me.html:84 +msgid "Logout" +msgstr "" + +#: frappe/core/doctype/user/user.js:190 +msgid "Logout All Sessions" +msgstr "" + +#. Label of the logout_on_password_reset (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Logout All Sessions on Password Reset" +msgstr "" + +#. Label of the logout_all_sessions (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Logout From All Devices After Changing Password" +msgstr "" + +#. Group in User's connections +#. Label of a Card Break in the Users Workspace +#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json +msgid "Logs" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/logs_to_clear/logs_to_clear.json +msgid "Logs To Clear" +msgstr "" + +#. Label of the logs_to_clear (Table) field in DocType 'Log Settings' +#: frappe/core/doctype/log_settings/log_settings.json +msgid "Logs to Clear" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Long Text" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:317 +msgid "Looks like you didn't change the value" +msgstr "" + +#: frappe/www/third_party_apps.html:59 +msgid "Looks like you haven’t added any third party apps." +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:315 +msgid "Looks like you haven’t received any notifications." +msgstr "" + +#. Option for the 'Priority' (Select) field in DocType 'ToDo' +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:217 +msgid "Low" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:13 +msgctxt "Number system" +msgid "M" +msgstr "" + +#. Option for the 'License Type' (Select) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "MIT License" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:48 +msgid "Madam" +msgstr "" + +#. Label of the main_section (Text Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Main Section" +msgstr "" + +#. Label of the main_section_html (HTML Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Main Section (HTML)" +msgstr "" + +#. Label of the main_section_md (Markdown Editor) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Main Section (Markdown)" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Maintenance Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +msgid "Maintenance User" +msgstr "" + +#. Label of the major (Int) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json +msgid "Major" +msgstr "" + +#. Label of the show_name_in_global_search (Check) field in DocType 'DocType' +#. Label of the show_name_in_global_search (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Make \"name\" searchable in Global Search" +msgstr "" + +#. Label of the make_attachment_public (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Make Attachment Public (by default)" +msgstr "" + +#. Label of the make_attachments_public (Check) field in DocType 'DocType' +#. Label of the make_attachments_public (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Make Attachments Public by Default" +msgstr "" + +#. Description of the 'Disable Username/Password Login' (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Make sure to configure a Social Login Key before disabling to prevent lockout" +msgstr "" + +#: frappe/utils/password_strength.py:92 +msgid "Make use of longer keyboard patterns" +msgstr "" + +#: frappe/public/js/frappe/form/multi_select_dialog.js:87 +msgid "Make {0}" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:77 +msgid "Makes the page public" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:28 +msgid "Male" +msgstr "" + +#: frappe/www/me.html:56 +msgid "Manage 3rd party apps" +msgstr "" + +#. Description of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Manage your data" +msgstr "" + +#. Label of the reqd (Check) field in DocType 'DocField' +#. Label of the mandatory (Check) field in DocType 'Report Filter' +#. Label of the reqd (Check) field in DocType 'Customize Form Field' +#. Label of the reqd (Check) field in DocType 'Web Form Field' +#. Label of the reqd (Check) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Mandatory" +msgstr "" + +#. Label of the mandatory_depends_on (Code) field in DocType 'Custom Field' +#. Label of the mandatory_depends_on (Code) field in DocType 'Customize Form +#. Field' +#. Label of the mandatory_depends_on (Code) field in DocType 'Web Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Mandatory Depends On" +msgstr "" + +#. Label of the mandatory_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Mandatory Depends On (JS)" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:536 +msgid "Mandatory Information missing:" +msgstr "" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:120 +msgid "Mandatory field: set role for" +msgstr "" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:124 +msgid "Mandatory field: {0}" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:172 +msgid "Mandatory fields required in table {0}, Row {1}" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:177 +msgid "Mandatory fields required in {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:258 +msgctxt "Error message in web form" +msgid "Mandatory fields required:" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:142 +msgid "Mandatory:" +msgstr "" + +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Map" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:194 +#: frappe/public/js/frappe/data_import/import_preview.js:306 +msgid "Map Columns" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:211 +msgid "Map View" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:294 +msgid "Map columns from {0} to fields in {1}" +msgstr "" + +#. Description of the 'Dynamic Route' (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Map route parameters into form variables. Example /project/<name>" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:924 +msgid "Mapping column {0} to field {1}" +msgstr "" + +#. Label of the margin_bottom (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Bottom" +msgstr "" + +#. Label of the margin_left (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Left" +msgstr "" + +#. Label of the margin_right (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Right" +msgstr "" + +#. Label of the margin_top (Float) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Margin Top" +msgstr "" + +#. Label of the mariadb_variables_section (Section Break) field in DocType +#. 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "MariaDB Variables" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:45 +msgid "Mark all as read" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:78 +#: frappe/core/doctype/communication/communication_list.js:19 +msgid "Mark as Read" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:95 +msgid "Mark as Spam" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:78 +#: frappe/core/doctype/communication/communication_list.js:22 +msgid "Mark as Unread" +msgstr "" + +#. Option for the 'Message Type' (Select) field in DocType 'Notification' +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/email/doctype/notification/notification.json +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json +msgid "Markdown" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Markdown Editor" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Marked As Spam" +msgstr "" + +#. Name of a role +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +msgid "Marketing Manager" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:50 +msgid "Master" +msgstr "" + +#. Description of the 'Limit' (Int) field in DocType 'Bulk Update' +#: frappe/desk/doctype/bulk_update/bulk_update.json +msgid "Max 500 records at a time" +msgstr "" + +#. Label of the max_attachments (Int) field in DocType 'DocType' +#. Label of the max_attachments (Int) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Max Attachments" +msgstr "" + +#. Label of the max_file_size (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max File Size (MB)" +msgstr "" + +#. Label of the max_height (Data) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Max Height" +msgstr "" + +#. Label of the max_length (Int) field in DocType 'Web Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Max Length" +msgstr "" + +#. Label of the max_report_rows (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max Report Rows" +msgstr "" + +#. Label of the max_value (Int) field in DocType 'Web Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Max Value" +msgstr "" + +#. Label of the max_attachment_size (Int) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Max attachment size" +msgstr "" + +#. Label of the max_auto_email_report_per_user (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max auto email report per user" +msgstr "" + +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1343 +msgid "Max width for type Currency is 100px in row {0}" +msgstr "" + +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Maximum" +msgstr "" + +#: frappe/core/doctype/file/file.py:332 +msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/attachments.js:38 +msgid "Maximum attachment limit of {0} has been reached." +msgstr "" + +#: frappe/model/rename_doc.py:689 +msgid "Maximum {0} rows allowed" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:221 +msgid "Me" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:14 +msgid "Meaning of Submit, Cancel, Amend" +msgstr "" + +#. Option for the 'Priority' (Select) field in DocType 'ToDo' +#. Label of the medium (Data) field in DocType 'Web Page View' +#: frappe/desk/doctype/todo/todo.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:221 +#: frappe/public/js/frappe/utils/utils.js:1774 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:40 +msgid "Medium" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json +msgid "Meeting" +msgstr "" + +#: frappe/email/doctype/notification/notification.js:200 +#: frappe/integrations/doctype/webhook/webhook.js:96 +msgid "Meets Condition?" +msgstr "" + +#. Group in Email Group's connections +#: frappe/email/doctype/email_group/email_group.json +msgid "Members" +msgstr "" + +#. Label of the cache_memory_usage (Data) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Memory Usage" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63 +msgid "Memory Usage in MB" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Mention" +msgstr "" + +#. Label of the enable_email_mention (Check) field in DocType 'Notification +#. Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Mentions" +msgstr "" + +#: frappe/public/js/frappe/ui/page.html:41 +#: frappe/public/js/frappe/ui/page.js:162 +msgid "Menu" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:242 +#: frappe/public/js/frappe/model/model.js:705 +msgid "Merge with existing" +msgstr "" + +#: frappe/utils/nestedset.py:320 +msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" +msgstr "" + +#. Label of the message (Text) field in DocType 'Auto Repeat' +#. Label of the content (Text Editor) field in DocType 'Activity Log' +#. Label of the content (Text Editor) field in DocType 'Communication' +#. Label of the message (Small Text) field in DocType 'SMS Log' +#. Label of the message (Data) field in DocType 'Success Action' +#. Label of the email_content (Text Editor) field in DocType 'Notification Log' +#. Label of the section_break_15 (Section Break) field in DocType 'Auto Email +#. Report' +#. Label of the description (Text Editor) field in DocType 'Auto Email Report' +#. Label of the message (Code) field in DocType 'Email Queue' +#. Label of the message_sb (Section Break) field in DocType 'Notification' +#. Label of the message (Code) field in DocType 'Notification' +#. Label of the message (Text) field in DocType 'Workflow Document State' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import/data_import.js:483 +#: frappe/core/doctype/sms_log/sms_log.json +#: frappe/core/doctype/success_action/success_action.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/notification/notification.js:205 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/ui/messages.js:182 +#: frappe/public/js/frappe/views/communication.js:126 +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/www/message.html:3 +msgid "Message" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:274 frappe/utils/messages.py:78 +msgctxt "Default title of the message dialog" +msgid "Message" +msgstr "" + +#. Label of the message_examples (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Message Examples" +msgstr "" + +#. Label of the message_id (Small Text) field in DocType 'Communication' +#. Label of the message_id (Small Text) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Message ID" +msgstr "" + +#. Label of the message_parameter (Data) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Message Parameter" +msgstr "" + +#: frappe/templates/includes/contact.js:36 +msgid "Message Sent" +msgstr "" + +#. Label of the message_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Message Type" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:956 +msgid "Message clipped" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:344 +msgid "Message from server: {0}" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104 +msgid "Message not setup" +msgstr "" + +#. Description of the 'Success message' (Text) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Message to be displayed on successful completion" +msgstr "" + +#. Label of the message_id (Code) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Message-id" +msgstr "" + +#. Label of the messages (Code) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import_log/data_import_log.json +msgid "Messages" +msgstr "" + +#. Label of the meta_section (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:124 +msgid "Meta Description" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:131 +msgid "Meta Image" +msgstr "" + +#. Label of the metatags_section (Section Break) field in DocType 'Web Page' +#. Label of the meta_tags (Table) field in DocType 'Website Route Meta' +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_route_meta/website_route_meta.json +msgid "Meta Tags" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:117 +msgid "Meta Title" +msgstr "" + +#. Label of the meta_description (Small Text) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta description" +msgstr "" + +#. Label of the meta_image (Attach Image) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta image" +msgstr "" + +#. Label of the meta_title (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Meta title" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:110 +msgid "Meta title for SEO" +msgstr "" + +#. Label of the resource_server_section (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Metadata" +msgstr "" + +#. Label of the method (Data) field in DocType 'Access Log' +#. Label of the method (Data) field in DocType 'API Request Log' +#. Label of the method (Select) field in DocType 'Recorder' +#. Label of the method (Data) field in DocType 'Scheduled Job Type' +#. Label of the method (Data) field in DocType 'Scheduler Event' +#. Label of the method (Data) field in DocType 'Number Card' +#. Label of the auth_method (Select) field in DocType 'Email Account' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/scheduler_event/scheduler_event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/notification/notification.json +msgid "Method" +msgstr "" + +#: frappe/__init__.py:468 +msgid "Method Not Allowed" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:74 +msgid "Method is required to create a number card" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Mid Center" +msgstr "" + +#. Label of the middle_name (Data) field in DocType 'Contact' +#. Label of the middle_name (Data) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json +msgid "Middle Name" +msgstr "" + +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Tools Workspace +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/workspace/tools/tools.json +msgid "Milestone" +msgstr "" + +#. Label of the milestone_tracker (Link) field in DocType 'Milestone' +#. Name of a DocType +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Milestone Tracker" +msgstr "" + +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Minimum" +msgstr "" + +#. Label of the minimum_password_score (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Minimum Password Score" +msgstr "" + +#. Label of the minor (Int) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json +msgid "Minor" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:30 +msgctxt "Duration" +msgid "Minutes" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Minutes After" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Minutes Before" +msgstr "" + +#. Label of the minutes_offset (Int) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Minutes Offset" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:103 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:108 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:117 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:125 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333 +msgid "Misconfigured" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:49 +msgid "Miss" +msgstr "" + +#: frappe/desk/form/meta.py:194 +msgid "Missing DocType" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1527 +msgid "Missing Field" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:183 +msgid "Missing Fields" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:131 +msgid "Missing Filters Required" +msgstr "" + +#: frappe/desk/form/assign_to.py:110 +msgid "Missing Permission" +msgstr "" + +#: frappe/www/update-password.html:134 frappe/www/update-password.html:141 +msgid "Missing Value" +msgstr "" + +#: frappe/public/js/frappe/ui/field_group.js:124 +#: frappe/public/js/frappe/widgets/widget_dialog.js:374 +#: frappe/public/js/workflow_builder/store.js:97 +#: frappe/workflow/doctype/workflow/workflow.js:71 +msgid "Missing Values Required" +msgstr "" + +#: frappe/www/login.py:107 +msgid "Mobile" +msgstr "" + +#. Label of the mobile_no (Data) field in DocType 'Contact' +#. Label of the mobile_no (Data) field in DocType 'User' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json frappe/tests/test_translate.py:86 +#: frappe/tests/test_translate.py:89 frappe/tests/test_translate.py:91 +#: frappe/tests/test_translate.py:94 +msgid "Mobile No" +msgstr "" + +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +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 "" + +#. Label of the module (Data) field in DocType 'Block Module' +#. Label of the module (Link) field in DocType 'DocType' +#. Label of the module (Link) field in DocType 'Page' +#. Label of the module (Link) field in DocType 'Report' +#. Label of the module (Link) field in DocType 'User Type Module' +#. Label of the module (Link) field in DocType 'Dashboard' +#. Label of the module (Link) field in DocType 'Dashboard Chart' +#. Label of the module (Link) field in DocType 'Dashboard Chart Source' +#. Label of the module (Link) field in DocType 'Form Tour' +#. Label of the module (Link) field in DocType 'Module Onboarding' +#. Label of the module (Link) field in DocType 'Number Card' +#. Label of the module (Link) field in DocType 'Workspace' +#. Label of the module (Link) field in DocType 'Notification' +#. Label of the module (Link) field in DocType 'Print Format' +#. Label of the module (Link) field in DocType 'Print Format Field Template' +#. Label of the module (Link) field in DocType 'Web Form' +#. Label of the module (Link) field in DocType 'Web Template' +#. Label of the module (Link) field in DocType 'Website Theme' +#: frappe/core/doctype/block_module/block_module.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:31 +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/core/doctype/user_type_module/user_type_module.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/public/js/frappe/utils/utils.js:929 +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Module" +msgstr "" + +#. Label of the module (Link) field in DocType 'Server Script' +#. Label of the module (Link) field in DocType 'Client Script' +#. Label of the module (Link) field in DocType 'Custom Field' +#. Label of the module (Link) field in DocType 'Property Setter' +#. Label of the module (Link) field in DocType 'Web Page' +#: frappe/core/doctype/server_script/server_script.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Module (for export)" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#. Label of a shortcut in the Build Workspace +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/workspace/build/build.json +msgid "Module Def" +msgstr "" + +#. Label of the module_html (HTML) field in DocType 'Module Profile' +#: frappe/core/doctype/module_profile/module_profile.json +msgid "Module HTML" +msgstr "" + +#. Label of the module_name (Data) field in DocType 'Module Def' +#. Label of the module_name (Data) field in DocType 'Desktop Icon' +#: frappe/core/doctype/module_def/module_def.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Module Name" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Module Onboarding" +msgstr "" + +#. Name of a DocType +#. Label of the module_profile (Link) field in DocType 'User' +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/module_profile/module_profile.json +#: frappe/core/doctype/user/user.json frappe/core/workspace/users/users.json +msgid "Module Profile" +msgstr "" + +#. Label of the module_profile_name (Data) field in DocType 'Module Profile' +#: frappe/core/doctype/module_profile/module_profile.json +msgid "Module Profile Name" +msgstr "" + +#: frappe/desk/doctype/module_onboarding/module_onboarding.py:69 +msgid "Module onboarding progress reset" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:250 +msgid "Module to Export" +msgstr "" + +#: frappe/modules/utils.py:273 +msgid "Module {} not found" +msgstr "" + +#. Group in Package's connections +#. Label of a Card Break in the Build Workspace +#: frappe/core/doctype/package/package.json +#: frappe/core/workspace/build/build.json +msgid "Modules" +msgstr "" + +#. Label of the modules_html (HTML) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Modules HTML" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the monday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Monday" +msgstr "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Monitor logs for errors, background jobs, communications, and user activity" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Monospace" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:275 +msgid "Month" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:400 +#: frappe/website/report/website_analytics/website_analytics.js:25 +msgid "Monthly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Monthly Long" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:39 +#: frappe/public/js/frappe/form/multi_select_dialog.js:45 +#: frappe/public/js/frappe/form/multi_select_dialog.js:72 +#: frappe/public/js/frappe/ui/toolbar/search.js:285 +#: frappe/public/js/frappe/ui/toolbar/search.js:300 +#: frappe/public/js/frappe/widgets/chart_widget.js:729 +#: frappe/templates/includes/list/list.html:25 +#: frappe/templates/includes/search_template.html:13 +msgid "More" +msgstr "" + +#. Label of the section_break_6gd5 (Section Break) field in DocType 'Permission +#. Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "More Info" +msgstr "" + +#. Label of the more_info (Section Break) field in DocType 'Contact' +#. Label of the additional_info (Section Break) field in DocType 'Activity Log' +#. Label of the additional_info (Section Break) field in DocType +#. 'Communication' +#. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "More Information" +msgstr "" + +#: frappe/website/doctype/help_article/templates/help_article.html:19 +#: frappe/website/doctype/help_article/templates/help_article.html:33 +msgid "More articles on {0}" +msgstr "" + +#. Description of the 'Footer' (Text Editor) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "More content for the bottom of the page." +msgstr "" + +#: frappe/public/js/frappe/ui/sort_selector.js:193 +msgid "Most Used" +msgstr "" + +#: frappe/utils/password.py:75 +msgid "Most probably your password is too long." +msgstr "" + +#: frappe/core/doctype/communication/communication.js:86 +#: frappe/core/doctype/communication/communication.js:194 +#: frappe/core/doctype/communication/communication.js:212 +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Move" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:194 +msgid "Move To" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:104 +msgid "Move To Trash" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:295 +msgid "Move current and all subsequent sections to a new tab" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:177 +msgid "Move cursor to above row" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:181 +msgid "Move cursor to below row" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:185 +msgid "Move cursor to next column" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:189 +msgid "Move cursor to previous column" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:294 +msgid "Move sections to new tab" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:237 +msgid "Move the current field and the following fields to a new column" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:169 +msgid "Move to Row Number" +msgstr "" + +#. Description of the 'Next on Click' (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Move to next step when clicked inside highlighted area." +msgstr "" + +#. Description of the 'Parent Element Selector' (Data) field in DocType 'Form +#. Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Mozilla doesn't support :has() so you can pass parent selector here as workaround" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:43 +msgid "Mr" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:47 +msgid "Mrs" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:44 +msgid "Ms" +msgstr "" + +#: frappe/utils/nestedset.py:344 +msgid "Multiple root nodes not allowed." +msgstr "" + +#. Description of the 'Import from Google Sheets' (Data) field in DocType 'Data +#. Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Must be a publicly accessible Google Sheets URL" +msgstr "" + +#. Description of the 'LDAP Search String' (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Must be enclosed in '()' and include '{0}', which is a placeholder for the user/login name. i.e. (&(objectclass=user)(uid={0}))" +msgstr "" + +#. Description of the 'Image Field' (Data) field in DocType 'DocType' +#. Description of the 'Image Field' (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Must be of type \"Attach Image\"" +msgstr "" + +#: frappe/desk/query_report.py:210 +msgid "Must have report permission to access this report." +msgstr "" + +#: frappe/core/doctype/report/report.py:151 +msgid "Must specify a Query to run" +msgstr "" + +#. Label of the mute_sounds (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Mute Sounds" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:45 +msgid "Mx" +msgstr "" + +#: frappe/templates/includes/web_sidebar.html:41 +#: frappe/website/doctype/web_form/web_form.py:525 +#: frappe/website/doctype/website_settings/website_settings.py:181 +#: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 +msgid "My Account" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:57 +msgid "My Device" +msgstr "" + +#: frappe/public/js/frappe/ui/apps_switcher.js:71 +msgid "My Workspaces" +msgstr "" + +#. Option for the 'Database Engine' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "MyISAM" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:19 +msgid "NOTE: If you add states or transitions in the table, it will be reflected in the Workflow Builder but you will have to position them manually. Also Workflow Builder is currently in BETA." +msgstr "" + +#. Description of the 'LDAP Group Field' (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "NOTE: This box is due for depreciation. Please re-setup LDAP to work with the newer settings" +msgstr "" + +#. Label of the fieldname (Data) field in DocType 'DocField' +#. Label of the fieldname (Data) field in DocType 'Customize Form Field' +#. Label of the label (Data) field in DocType 'Workspace' +#. Label of the webhook_name (Data) field in DocType 'Slack Webhook URL' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/doctype/doctype_list.js:22 +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +#: frappe/public/js/frappe/form/layout.js:76 +#: frappe/public/js/frappe/form/multi_select_dialog.js:240 +#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/views/file/file_view.js:97 +#: frappe/website/doctype/website_slideshow/website_slideshow.js:25 +msgid "Name" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.js:29 +msgid "Name (Doc Name)" +msgstr "" + +#: frappe/desk/utils.py:24 +msgid "Name already taken, please set a new name" +msgstr "" + +#: frappe/model/naming.py:512 +msgid "Name cannot contain special characters like {0}" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:91 +msgid "Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:117 +msgid "Name of the new Print Format" +msgstr "" + +#: frappe/model/naming.py:507 +msgid "Name of {0} cannot be {1}" +msgstr "" + +#: frappe/utils/password_strength.py:174 +msgid "Names and surnames by themselves are easy to guess." +msgstr "" + +#. Label of the sb1 (Tab Break) field in DocType 'DocType' +#. Label of the naming_section (Section Break) field in DocType 'Document +#. Naming Rule' +#. Label of the naming_section (Section Break) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Naming" +msgstr "" + +#. Description of the 'Auto Name' (Data) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Naming Options:\n" +"
    1. field:[fieldname] - By Field
    2. naming_series: - By Naming Series (field called naming_series must be present)
    3. Prompt - Prompt user for a name
    4. [series] - Series by prefix (separated by a dot); for example PRE.#####
    5. \n" +"
    6. format:EXAMPLE-{MM}morewords{fieldname1}-{fieldname2}-{#####} - Replace all braced words (fieldnames, date words (DD, MM, YY), series) with their value. Outside braces, any characters can be used.
    " +msgstr "" + +#. Label of the naming_rule (Select) field in DocType 'DocType' +#. Label of the naming_rule (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Naming Rule" +msgstr "" + +#. Label of the naming_series_tab (Tab Break) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Naming Series" +msgstr "" + +#: frappe/model/naming.py:268 +msgid "Naming Series mandatory" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#. Label of the top_bar (Section Break) field in DocType 'Website Settings' +#. Label of the navbar_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Navbar" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Navbar Item" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/navbar_settings/navbar_settings.json +#: frappe/core/workspace/build/build.json +msgid "Navbar Settings" +msgstr "" + +#. Label of the navbar_template (Link) field in DocType 'Website Settings' +#. Label of the navbar_template_section (Section Break) field in DocType +#. 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Navbar Template" +msgstr "" + +#. Label of the navbar_template_values (Code) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Navbar Template Values" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1380 +msgctxt "Description of a list view shortcut" +msgid "Navigate list down" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1387 +msgctxt "Description of a list view shortcut" +msgid "Navigate list up" +msgstr "" + +#: frappe/public/js/frappe/ui/page.js:175 +msgid "Navigate to main content" +msgstr "" + +#. Label of the navigation_settings_section (Section Break) field in DocType +#. 'User' +#: frappe/core/doctype/user/user.json +msgid "Navigation Settings" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:322 +msgid "Need Workspace Manager role to edit private workspace of other users" +msgstr "" + +#: frappe/model/document.py:794 +msgid "Negative Value" +msgstr "" + +#: frappe/database/query.py:335 +msgid "Nested filters must be provided as a list or tuple." +msgstr "" + +#: frappe/utils/nestedset.py:94 +msgid "Nested set error. Please contact the Administrator." +msgstr "" + +#. Name of a DocType +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Network Printer Settings" +msgstr "" + +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +msgstr "" + +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/success_action/success_action.js:57 +#: frappe/core/page/dashboard_view/dashboard_view.js:173 +#: frappe/desk/doctype/todo/todo.js:46 +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/success_action.js:77 +#: frappe/public/js/frappe/views/treeview.js:473 +#: frappe/public/js/frappe/views/workspace/workspace.js:64 +#: frappe/website/doctype/web_form/templates/web_list.html:15 +#: frappe/www/list.html:19 +msgid "New" +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:15 +msgid "New Activity" +msgstr "" + +#: frappe/public/js/frappe/form/templates/address_list.html:3 +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:5 +#: frappe/public/js/frappe/utils/address_and_contact.js:71 +msgid "New Address" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:58 +msgid "New Chart" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:3 +msgid "New Contact" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:70 +msgid "New Custom Block" +msgstr "" + +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 +msgid "New Custom Print Format" +msgstr "" + +#. Label of the new_document_form (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "New Document Form" +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.py:154 +msgid "New Document Shared {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:27 +#: frappe/public/js/frappe/views/communication.js:23 +msgid "New Email" +msgstr "" + +#: frappe/public/js/frappe/list/list_view_select.js:98 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:177 +msgid "New Email Account" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:47 +msgid "New Event" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:94 +msgid "New Folder" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 +msgid "New Kanban Board" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:62 +msgid "New Links" +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.py:152 +msgid "New Mention on {0}" +msgstr "" + +#: frappe/www/contact.py:61 +msgid "New Message from Website Contact Page" +msgstr "" + +#. Label of the new_name (Read Only) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +#: frappe/public/js/frappe/form/toolbar.js:218 +#: frappe/public/js/frappe/model/model.js:713 +msgid "New Name" +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.py:151 +msgid "New Notification" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:64 +msgid "New Number Card" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:66 +msgid "New Onboarding" +msgstr "" + +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 +msgid "New Password" +msgstr "" + +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 +msgid "New Print Format Name" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:68 +msgid "New Quick List" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1386 +msgid "New Report name" +msgstr "" + +#. Label of the new_role (Data) field in DocType 'Role Replication' +#: frappe/core/doctype/role_replication/role_replication.json +msgid "New Role" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:60 +msgid "New Shortcut" +msgstr "" + +#. Label of the new_users (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "New Users (Last 30 days)" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 +msgid "New Value" +msgstr "" + +#: frappe/workflow/page/workflow_builder/workflow_builder.js:61 +msgid "New Workflow Name" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:390 +msgid "New Workspace" +msgstr "" + +#. Description of the 'Allowed Public Client Origins' (Small Text) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of allowed public client URLs (eg https://frappe.io), or * to accept all.\n" +"
    \n" +"Public clients are restricted by default." +msgstr "" + +#. Description of the 'Scopes Supported' (Small Text) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "New line separated list of scope values." +msgstr "" + +#. Description of the 'Contacts' (Small Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "New lines separated list of strings representing ways to contact people responsible for this client, typically email addresses." +msgstr "" + +#: frappe/www/update-password.html:92 +msgid "New password cannot be same as old password" +msgstr "" + +#: frappe/utils/change_log.py:389 +msgid "New updates are available" +msgstr "" + +#. Description of the 'Disable signups' (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "New users will have to be manually registered by system managers." +msgstr "" + +#. Description of the 'Set Value' (Small Text) field in DocType 'Property +#. Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "New value to be set" +msgstr "" + +#: frappe/public/js/frappe/form/quick_entry.js:179 +#: frappe/public/js/frappe/form/toolbar.js:37 +#: frappe/public/js/frappe/form/toolbar.js:206 +#: frappe/public/js/frappe/form/toolbar.js:221 +#: frappe/public/js/frappe/form/toolbar.js:561 +#: frappe/public/js/frappe/model/model.js:612 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 +#: 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:438 +msgid "New {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:393 +msgid "New {0} Created" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:385 +msgid "New {0} {1} added to Dashboard {2}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:390 +msgid "New {0} {1} created" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 +msgid "New {0}: {1}" +msgstr "" + +#: frappe/utils/change_log.py:375 +msgid "New {} releases for the following apps are available" +msgstr "" + +#: frappe/core/doctype/user/user.py:815 +msgid "Newly created user {0} has no roles enabled." +msgstr "" + +#. Name of a role +#: frappe/email/doctype/email_group/email_group.json +#: frappe/email/doctype/email_group_member/email_group_member.json +#: frappe/website/doctype/utm_campaign/utm_campaign.json +msgid "Newsletter Manager" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:14 +#: frappe/public/js/frappe/form/form_tour.js:324 +#: frappe/public/js/frappe/web_form/web_form.js:93 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:15 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:240 +#: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 +#: frappe/website/web_template/slideshow/slideshow.html:44 +msgid "Next" +msgstr "" + +#: frappe/public/js/frappe/ui/slides.js:359 +msgctxt "Go to next slide" +msgid "Next" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:684 +msgid "Next 14 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:688 +msgid "Next 30 Days" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:704 +msgid "Next 6 Months" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:680 +msgid "Next 7 Days" +msgstr "" + +#. Label of the next_action_email_template (Link) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Next Action Email Template" +msgstr "" + +#. Label of the next_actions_html (HTML) field in DocType 'Success Action' +#: frappe/core/doctype/success_action/success_action.json +msgid "Next Actions HTML" +msgstr "" + +#. Label of the next_execution (Datetime) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Next Execution" +msgstr "" + +#. Label of the next_form_tour (Link) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Next Form Tour" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:696 +msgid "Next Month" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:700 +msgid "Next Quarter" +msgstr "" + +#. Label of the next_schedule_date (Date) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Next Schedule Date" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:6 +msgid "Next Scheduled Date" +msgstr "" + +#. Label of the next_state (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Next State" +msgstr "" + +#. Label of the next_step_condition (Code) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Next Step Condition" +msgstr "" + +#. Label of the next_sync_token (Password) field in DocType 'Google Calendar' +#. Label of the next_sync_token (Password) field in DocType 'Google Contacts' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Next Sync Token" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:692 +msgid "Next Week" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:708 +msgid "Next Year" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "Next actions" +msgstr "" + +#. Label of the next_on_click (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Next on Click" +msgstr "" + +#. Option for the 'Standard' (Select) field in DocType 'Page' +#. Option for the 'Is Standard' (Select) field in DocType 'Report' +#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP +#. Settings' +#. Option for the 'Standard' (Select) field in DocType 'Print Format' +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 +#: 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:498 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 +#: frappe/website/doctype/help_article/templates/help_article.html:26 +msgid "No" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:546 +msgctxt "Checkbox is not checked" +msgid "No" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:37 +msgctxt "Dismiss confirmation dialog" +msgid "No" +msgstr "" + +#: frappe/www/third_party_apps.html:56 +msgid "No Active Sessions" +msgstr "" + +#. Label of the no_copy (Check) field in DocType 'DocField' +#. Label of the no_copy (Check) field in DocType 'Custom Field' +#. Label of the no_copy (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "No Copy" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:162 +#: frappe/email/doctype/auto_email_report/auto_email_report.py:301 +#: frappe/public/js/form_builder/components/controls/TableControl.vue:64 +#: frappe/public/js/frappe/data_import/import_preview.js:146 +#: frappe/public/js/frappe/form/multi_select_dialog.js:224 +#: frappe/public/js/frappe/utils/datatable.js:10 +#: frappe/public/js/frappe/widgets/chart_widget.js:57 +msgid "No Data" +msgstr "" + +#: frappe/public/js/frappe/widgets/quick_list_widget.js:134 +msgid "No Data..." +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:176 +msgid "No Email Account" +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:196 +msgid "No Email Accounts Assigned" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:183 +msgid "No Emails" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:361 +msgid "No Entry for the User {0} found within LDAP!" +msgstr "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:407 +msgid "No Filters Set" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:372 +msgid "No Google Calendar Event to sync." +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:262 +msgid "No Images" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:363 +msgid "No LDAP User found for email: {0}" +msgstr "" + +#: frappe/public/js/form_builder/components/EditableInput.vue:11 +#: frappe/public/js/form_builder/components/EditableInput.vue:14 +#: frappe/public/js/form_builder/components/Field.vue:209 +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:55 +#: frappe/public/js/print_format_builder/Field.vue:24 +#: frappe/public/js/workflow_builder/components/ActionNode.vue:53 +#: frappe/public/js/workflow_builder/components/StateNode.vue:47 +#: frappe/public/js/workflow_builder/store.js:51 +msgid "No Label" +msgstr "" + +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 +#: 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 +msgid "No Name Specified for {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:315 +msgid "No New notifications" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1757 +msgid "No Permissions Specified" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:199 +msgid "No Permissions set for this criteria." +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:93 +msgid "No Permitted Charts" +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:92 +msgid "No Permitted Charts on this Dashboard" +msgstr "" + +#: frappe/printing/doctype/print_settings/print_settings.js:13 +msgid "No Preview" +msgstr "" + +#: frappe/printing/page/print/print.js:747 +msgid "No Preview Available" +msgstr "" + +#: frappe/printing/page/print/print.js:902 +msgid "No Printer is Available." +msgstr "" + +#: frappe/core/doctype/rq_worker/rq_worker_list.js:3 +msgid "No RQ Workers connected. Try restarting the bench." +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:135 +msgid "No Results" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:51 +msgid "No Results found" +msgstr "" + +#: frappe/core/doctype/user/user.py:816 +msgid "No Roles Specified" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 +msgid "No Select Field Found" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:179 +msgid "No Suggestions" +msgstr "" + +#: frappe/desk/reportview.py:707 +msgid "No Tags" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:442 +msgid "No Upcoming Events" +msgstr "" + +#: frappe/public/js/frappe/form/templates/address_list.html:43 +msgid "No address added yet." +msgstr "" + +#: frappe/email/doctype/notification/notification.js:236 +msgid "No alerts for today" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:178 +msgid "No automatic optimization suggestions available." +msgstr "" + +#: frappe/public/js/frappe/form/save.js:36 +msgid "No changes in document" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:662 +msgid "No changes made" +msgstr "" + +#: frappe/model/rename_doc.py:369 +msgid "No changes made because old and new name are the same." +msgstr "" + +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:59 +msgid "No changes to sync" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:298 +msgid "No changes to update" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:4 +msgid "No comments yet." +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:91 +msgid "No contacts added yet." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 +msgid "No contacts linked to document" +msgstr "" + +#: frappe/desk/query_report.py:381 +msgid "No data to export" +msgstr "" + +#: frappe/contacts/doctype/address/address.py:246 +msgid "No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:71 +msgid "No documents found tagged with {0}" +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:21 +msgid "No email account associated with the User. Please add an account under User > Email Inbox." +msgstr "" + +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:478 +msgid "No failed logs" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 +msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." +msgstr "" + +#: frappe/utils/file_manager.py:143 +msgid "No file attached" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:134 +msgid "No filters found" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter_list.js:299 +msgid "No filters selected" +msgstr "" + +#: frappe/desk/form/utils.py:111 +msgid "No further records" +msgstr "" + +#: frappe/templates/includes/search_template.html:49 +msgid "No matching records. Search something new" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form_list.js:162 +msgid "No more items to display" +msgstr "" + +#: frappe/utils/password_strength.py:45 +msgid "No need for symbols, digits, or uppercase letters." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:195 +msgid "No new Google Contacts synced." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:46 +msgid "No new notifications" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:415 +msgid "No of Columns" +msgstr "" + +#. Label of the no_of_requested_sms (Int) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "No of Requested SMS" +msgstr "" + +#. Label of the no_of_rows (Int) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "No of Rows (Max 500)" +msgstr "" + +#. Label of the no_of_sent_sms (Int) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "No of Sent SMS" +msgstr "" + +#: frappe/__init__.py:623 frappe/client.py:109 frappe/client.py:151 +msgid "No permission for {0}" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1142 +msgctxt "{0} = verb, {1} = object" +msgid "No permission to '{0}' {1}" +msgstr "" + +#: frappe/model/db_query.py:949 +msgid "No permission to read {0}" +msgstr "" + +#: frappe/share.py:220 +msgid "No permission to {0} {1} {2}" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:175 +msgid "No records deleted" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 +msgid "No records present in {0}" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_stat.html:3 +msgid "No records tagged." +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:225 +msgid "No records will be exported" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:66 +msgid "No rows" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:135 +msgid "No subject" +msgstr "" + +#: frappe/www/printview.py:472 +msgid "No template found at path: {0}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/multiselect_list.js:262 +msgid "No values to show" +msgstr "" + +#: frappe/website/web_template/discussions/discussions.html:2 +msgid "No {0}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view_select.js:157 +msgid "No {0} Found" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form_list.js:234 +msgid "No {0} found" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:499 +msgid "No {0} found with matching filters. Clear filters to see all {0}." +msgstr "" + +#: frappe/public/js/frappe/views/inbox/inbox_view.js:171 +msgid "No {0} mail" +msgstr "" + +#: frappe/public/js/form_builder/utils.js:117 +#: frappe/public/js/frappe/form/grid_row.js:257 +msgctxt "Title of the 'row number' column" +msgid "No." +msgstr "" + +#. Option for the 'Provider' (Select) field in DocType 'Geolocation Settings' +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Nomatim" +msgstr "" + +#. Label of the non_negative (Check) field in DocType 'DocField' +#. Label of the non_negative (Check) field in DocType 'Custom Field' +#. Label of the non_negative (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Non Negative" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:33 +msgid "Non-Conforming" +msgstr "" + +#. Option for the 'Token Endpoint Auth Method' (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "None" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:36 +msgid "None: End of Workflow" +msgstr "" + +#. Label of the normalized_copies (Int) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Normalized Copies" +msgstr "" + +#. Label of the normalized_query (Data) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Normalized Query" +msgstr "" + +#: frappe/core/doctype/user/user.py:1029 +#: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 +msgid "Not Allowed" +msgstr "" + +#: frappe/templates/includes/login/login.js:259 +msgid "Not Allowed: Disabled User" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:36 +msgid "Not Ancestors Of" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:34 +msgid "Not Descendants Of" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:17 +msgid "Not Equals" +msgstr "" + +#: frappe/app.py:390 frappe/www/404.html:3 +msgid "Not Found" +msgstr "" + +#. Label of the not_helpful (Int) field in DocType 'Help Article' +#: frappe/website/doctype/help_article/help_article.json +msgid "Not Helpful" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:21 +msgid "Not In" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:19 +msgid "Not Like" +msgstr "" + +#: frappe/public/js/frappe/form/linked_with.js:45 +msgid "Not Linked to any record" +msgstr "" + +#. Label of the not_nullable (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Not Nullable" +msgstr "" + +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 +#: frappe/public/js/frappe/web_form/webform_script.js:15 +#: frappe/website/doctype/web_form/web_form.py:774 +#: frappe/website/page_renderers/not_permitted_page.py:22 +#: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 +#: frappe/www/qrcode.py:37 +msgid "Not Permitted" +msgstr "" + +#: frappe/desk/query_report.py:596 +msgid "Not Permitted to read {0}" +msgstr "" + +#: frappe/website/doctype/web_form/web_form_list.js:7 +#: frappe/website/doctype/web_page/web_page_list.js:7 +msgid "Not Published" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:287 +#: frappe/public/js/frappe/form/toolbar.js:816 +#: frappe/public/js/frappe/model/indicator.js:28 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 +#: frappe/website/doctype/web_form/templates/web_form.html:85 +msgid "Not Saved" +msgstr "" + +#: frappe/core/doctype/error_log/error_log_list.js:7 +msgid "Not Seen" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +msgid "Not Sent" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:219 +msgid "Not Set" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:608 +msgctxt "Field value is not set" +msgid "Not Set" +msgstr "" + +#: frappe/utils/csvutils.py:102 +msgid "Not a valid Comma Separated Value (CSV File)" +msgstr "" + +#: frappe/core/doctype/user/user.py:266 +msgid "Not a valid User Image." +msgstr "" + +#: frappe/model/workflow.py:117 +msgid "Not a valid Workflow Action" +msgstr "" + +#: frappe/templates/includes/login/login.js:255 +msgid "Not a valid user" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow_list.js:7 +msgid "Not active" +msgstr "" + +#: frappe/permissions.py:383 +msgid "Not allowed for {0}: {1}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:639 +msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:336 +msgid "Not allowed to create custom Virtual DocType." +msgstr "" + +#: frappe/www/printview.py:165 +msgid "Not allowed to print cancelled documents" +msgstr "" + +#: frappe/www/printview.py:162 +msgid "Not allowed to print draft documents" +msgstr "" + +#: frappe/permissions.py:213 +msgid "Not allowed via controller permission check" +msgstr "" + +#: frappe/public/js/frappe/request.js:147 frappe/website/js/website.js:94 +msgid "Not found" +msgstr "" + +#: frappe/core/doctype/page/page.py:62 +msgid "Not in Developer Mode" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:331 +msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:217 +#: frappe/public/js/frappe/request.js:159 +#: frappe/public/js/frappe/request.js:170 +#: frappe/public/js/frappe/request.js:175 +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 +#: frappe/website/js/website.js:97 +msgid "Not permitted" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:53 +msgid "Not permitted to view {0}" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/note/note.json +msgid "Note" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/note_seen_by/note_seen_by.json +msgid "Note Seen By" +msgstr "" + +#: frappe/www/confirm_workflow_action.html:8 +msgid "Note:" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:775 +msgid "Note: Changing the Page Name will break previous URL to this page." +msgstr "" + +#: frappe/core/doctype/user/user.js:35 +msgid "Note: Etc timezones have their signs reversed." +msgstr "" + +#. Description of the 'sb0' (Section Break) field in DocType 'Website +#. Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Note: For best results, images must be of the same size and width must be greater than height." +msgstr "" + +#. Description of the 'Allow only one session per user' (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Note: Multiple sessions will be allowed in case of mobile device" +msgstr "" + +#: frappe/core/doctype/user/user.js:387 +msgid "Note: This will be shared with user." +msgstr "" + +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.js:8 +msgid "Note: Your request for account deletion will be fulfilled within {0} hours." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:183 +msgid "Notes:" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:492 +msgid "Nothing New" +msgstr "" + +#: frappe/public/js/frappe/form/undo_manager.js:43 +msgid "Nothing left to redo" +msgstr "" + +#: frappe/public/js/frappe/form/undo_manager.js:33 +msgid "Nothing left to undo" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:383 +#: frappe/public/js/frappe/views/reports/query_report.js:105 +#: frappe/templates/includes/list/list.html:9 +#: frappe/website/doctype/help_article/templates/help_article_list.html:21 +msgid "Nothing to show" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:129 +msgid "Nothing to update" +msgstr "" + +#. Label of the notification (Tab Break) field in DocType 'Auto Repeat' +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/workspace/tools/tools.json +#: frappe/core/doctype/communication/mixins.py:142 +#: frappe/email/doctype/notification/notification.json +msgid "Notification" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Notification Log" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Notification Recipient" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/public/js/frappe/ui/notifications/notifications.js:37 +msgid "Notification Settings" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/notification_subscribed_document/notification_subscribed_document.json +msgid "Notification Subscribed Document" +msgstr "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:8 +msgid "Notification sent to" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:544 +msgid "Notification: customer {0} has no Mobile number set" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:530 +msgid "Notification: document {0} has no {1} number set (field: {2})" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:539 +msgid "Notification: user {0} has no Mobile number set" +msgstr "" + +#. Label of the notifications (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +#: frappe/public/js/frappe/ui/notifications/notifications.js:50 +#: frappe/public/js/frappe/ui/notifications/notifications.js:187 +msgid "Notifications" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:299 +msgid "Notifications Disabled" +msgstr "" + +#. Description of the 'Default Outgoing' (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Notifications and bulk mails will be sent from this outgoing server." +msgstr "" + +#. Label of the notify_on_every_login (Check) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Notify Users On Every Login" +msgstr "" + +#. Label of the notify_by_email (Check) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Notify by Email" +msgstr "" + +#. Label of the notify_by_email (Check) field in DocType 'DocShare' +#: frappe/core/doctype/docshare/docshare.json +msgid "Notify by email" +msgstr "" + +#. Label of the notify_if_unreplied (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Notify if unreplied" +msgstr "" + +#. Label of the unreplied_for_mins (Int) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Notify if unreplied for (in mins)" +msgstr "" + +#. Label of the notify_on_login (Check) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Notify users with a popup when they log in" +msgstr "" + +#: frappe/public/js/frappe/form/controls/datetime.js:41 +#: frappe/public/js/frappe/form/controls/time.js:37 +msgid "Now" +msgstr "" + +#. Label of the phone (Data) field in DocType 'Contact Phone' +#: frappe/contacts/doctype/contact_phone/contact_phone.json +msgid "Number" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:628 +msgid "Number Card" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/number_card_link/number_card_link.json +msgid "Number Card Link" +msgstr "" + +#. Label of the number_card_name (Link) field in DocType 'Workspace Number +#. Card' +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json +msgid "Number Card Name" +msgstr "" + +#. Label of the number_cards_tab (Tab Break) field in DocType 'Workspace' +#. Label of the number_cards (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:658 +msgid "Number Cards" +msgstr "" + +#. Label of the number_format (Select) field in DocType 'Language' +#. Label of the number_format (Select) field in DocType 'System Settings' +#. Label of the number_format (Select) field in DocType 'Currency' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/geo/doctype/currency/currency.json +msgid "Number Format" +msgstr "" + +#. Label of the backup_limit (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Number of Backups" +msgstr "" + +#. Label of the number_of_groups (Int) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Number of Groups" +msgstr "" + +#. Label of the number_of_queries (Int) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Number of Queries" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:443 +#: frappe/public/js/frappe/doctype/index.js:59 +msgid "Number of attachment fields are more than {}, limit updated to {}." +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:172 +msgid "Number of backups must be greater than zero." +msgstr "" + +#. Description of the 'Columns' (Int) field in DocType 'Customize Form Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Number of columns for a field in a Grid (Total Columns in a grid should be less than 11)" +msgstr "" + +#. Description of the 'Columns' (Int) field in DocType 'DocField' +#. Description of the 'Columns' (Int) field in DocType 'Custom Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Number of columns for a field in a List View or a Grid (Total Columns should be less than 11)" +msgstr "" + +#. Description of the 'Document Share Key Expiry (in Days)' (Int) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Number of days after which the document Web View link shared on email will be expired" +msgstr "" + +#. Label of the cache_keys (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Number of keys" +msgstr "" + +#. Label of the onsite_backups (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Number of onsite backups" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "OAuth" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "OAuth Authorization Code" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "OAuth Bearer Token" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "OAuth Client" +msgstr "" + +#. Label of the sb_00 (Section Break) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "OAuth Client ID" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json +msgid "OAuth Client Role" +msgstr "" + +#: frappe/email/oauth.py:30 +msgid "OAuth Error" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "OAuth Provider Settings" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_scope/oauth_scope.json +msgid "OAuth Scope" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "OAuth Settings" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:250 +msgid "OAuth has been enabled but not authorised. Please use \"Authorise API Access\" button to do the same." +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "OPTIONS" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:190 +msgid "OR" +msgstr "" + +#. Option for the 'Two Factor Authentication method' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "OTP App" +msgstr "" + +#. Label of the otp_issuer_name (Data) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "OTP Issuer Name" +msgstr "" + +#: frappe/twofactor.py:450 +msgid "OTP Secret Reset - {0}" +msgstr "" + +#: frappe/twofactor.py:469 +msgid "OTP Secret has been reset. Re-registration will be required on next login." +msgstr "" + +#: frappe/templates/includes/login/login.js:355 +msgid "OTP setup using OTP App was not completed. Please contact Administrator." +msgstr "" + +#. Label of the occurrences (Int) field in DocType 'System Health Report +#. Errors' +#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json +msgid "Occurrences" +msgstr "" + +#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Off" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Office" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Office 365" +msgstr "" + +#: frappe/core/doctype/server_script/server_script.js:36 +msgid "Official Documentation" +msgstr "" + +#. Label of the offset_x (Int) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Offset X" +msgstr "" + +#. Label of the offset_y (Int) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Offset Y" +msgstr "" + +#: frappe/database/query.py:121 +msgid "Offset must be a non-negative integer" +msgstr "" + +#: frappe/www/update-password.html:38 +msgid "Old Password" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:412 +msgid "Old and new fieldnames are same." +msgstr "" + +#. Description of the 'Number of Backups' (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Older backups will be automatically deleted" +msgstr "" + +#. Label of the oldest_unscheduled_job (Link) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Oldest Unscheduled Job" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "On Hold" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Authorization" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Charge Processed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Failed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Mandate Acquisition Processed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Mandate Charge Processed" +msgstr "" + +#. Option for the 'DocType Event' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "On Payment Paid" +msgstr "" + +#. Description of the 'Is Dynamic URL?' (Check) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "On checking this option, URL will be treated like a jinja template string" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:66 +#: frappe/public/js/frappe/ui/filters/filter.js:72 +msgid "On or After" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:65 +#: frappe/public/js/frappe/ui/filters/filter.js:71 +msgid "On or Before" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:966 +msgid "On {0}, {1} wrote:" +msgstr "" + +#. Label of the onboard (Check) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:335 +msgid "Onboard" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:232 +msgid "Onboarding Name" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json +msgid "Onboarding Permission" +msgstr "" + +#. Label of the onboarding_status (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Onboarding Status" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Onboarding Step" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json +msgid "Onboarding Step Map" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:264 +msgid "Onboarding complete" +msgstr "" + +#. Description of the 'Is Submittable' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:43 +msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:35 +msgid "Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger)." +msgstr "" + +#: frappe/www/complete_signup.html:7 +msgid "One Last Step" +msgstr "" + +#: frappe/twofactor.py:278 +msgid "One Time Password (OTP) Registration Code from {}" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:331 +msgid "One of" +msgstr "" + +#: frappe/client.py:213 +msgid "Only 200 inserts allowed in one request" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue.py:87 +msgid "Only Administrator can delete Email Queue" +msgstr "" + +#: frappe/core/doctype/page/page.py:66 +msgid "Only Administrator can edit" +msgstr "" + +#: frappe/core/doctype/report/report.py:75 +msgid "Only Administrator can save a standard report. Please rename and save." +msgstr "" + +#: frappe/recorder.py:314 +msgid "Only Administrator is allowed to use Recorder" +msgstr "" + +#. Label of the allow_edit (Link) field in DocType 'Workflow Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Only Allow Edit For" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1621 +msgid "Only Options allowed for Data field are:" +msgstr "" + +#. Label of the data_modified_till (Int) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Only Send Records Updated in Last X Hours" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.js:32 +msgid "Only Workspace Manager can edit public workspaces" +msgstr "" + +#: frappe/modules/utils.py:65 +msgid "Only allowed to export customizations in developer mode" +msgstr "" + +#: frappe/model/document.py:1239 +msgid "Only draft documents can be discarded" +msgstr "" + +#. Label of the only_for (Link) field in DocType 'Workspace Link' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:328 +msgid "Only for" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:192 +msgid "Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish." +msgstr "" + +#: frappe/contacts/doctype/contact/contact.py:131 +#: frappe/contacts/doctype/contact/contact.py:158 +msgid "Only one {0} can be set as primary." +msgstr "" + +#: frappe/desk/reportview.py:358 +msgid "Only reports of type Report Builder can be deleted" +msgstr "" + +#: frappe/desk/reportview.py:329 +msgid "Only reports of type Report Builder can be edited" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:131 +msgid "Only standard DocTypes are allowed to be customized from Customize Form." +msgstr "" + +#: frappe/model/delete_doc.py:281 +msgid "Only the Administrator can delete a standard DocType." +msgstr "" + +#: frappe/desk/form/assign_to.py:198 +msgid "Only the assignee can complete this to-do." +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:108 +msgid "Only {0} emailed reports are allowed per user." +msgstr "" + +#: frappe/templates/includes/login/login.js:291 +msgid "Oops! Something went wrong." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Contact' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#. Option for the 'Email Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Event' +#. Option for the 'Status' (Select) field in DocType 'ToDo' +#. Option for the 'Status' (Select) field in DocType 'Workflow Action' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/deleted_document/deleted_document.js:7 +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Open" +msgstr "" + +#: frappe/desk/doctype/todo/todo_list.js:14 +msgctxt "Access" +msgid "Open" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:207 +#: frappe/public/js/frappe/ui/keyboard.js:217 +msgid "Open Awesomebar" +msgstr "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:75 +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:96 +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:97 +msgid "Open Communication" +msgstr "" + +#: frappe/templates/emails/new_notification.html:10 +msgid "Open Document" +msgstr "" + +#. Label of the subscribed_documents (Table MultiSelect) field in DocType +#. 'Notification Settings' +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Open Documents" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:243 +msgid "Open Help" +msgstr "" + +#. Label of the open_reference_document (Button) field in DocType 'Notification +#. Log' +#: frappe/desk/doctype/notification_log/notification_log.json +msgid "Open Reference Document" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:226 +msgid "Open Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Open Source Applications for the Web" +msgstr "" + +#. Label of the open_in_new_tab (Check) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "Open URL in a New Tab" +msgstr "" + +#. Description of the 'Quick Entry' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Open a dialog with mandatory fields to create a new record quickly. There must be at least one mandatory field to show in dialog." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:176 +msgid "Open a module or tool" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:367 +msgid "Open console" +msgstr "" + +#: frappe/public/js/print_format_builder/Preview.vue:17 +msgid "Open in a new tab" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1433 +msgctxt "Description of a list view shortcut" +msgid "Open list item" +msgstr "" + +#: frappe/core/doctype/error_log/error_log.js:15 +msgid "Open reference document" +msgstr "" + +#: frappe/www/qrcode.html:13 +msgid "Open your authentication app on your mobile phone." +msgstr "" + +#: frappe/desk/doctype/todo/todo_list.js:17 +#: frappe/public/js/frappe/form/templates/form_links.html:18 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 +msgid "Open {0}" +msgstr "" + +#. Label of the openid_configuration (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "OpenID Configuration" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "" + +#. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "OpenLDAP" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Opened" +msgstr "" + +#. Label of the operation (Select) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Operation" +msgstr "" + +#: frappe/utils/data.py:2172 +msgid "Operator must be one of {0}" +msgstr "" + +#: frappe/core/doctype/file/file.js:34 +#: frappe/core/report/database_storage_usage_by_tables/database_storage_usage_by_tables.js:8 +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:28 +msgid "Optimize" +msgstr "" + +#: frappe/core/doctype/file/file.js:106 +msgid "Optimizing image..." +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:100 +msgid "Option 1" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:102 +msgid "Option 2" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:104 +msgid "Option 3" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1639 +msgid "Option {0} for field {1} is not a child table" +msgstr "" + +#. Description of the 'CC' (Code) field in DocType 'Notification Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Optional: Always send to these ids. Each Email Address on a new row" +msgstr "" + +#. Description of the 'Condition' (Code) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Optional: The alert will be sent if this expression is true" +msgstr "" + +#. Label of the options (Small Text) field in DocType 'DocField' +#. Label of the options (Data) field in DocType 'Report Column' +#. Label of the options (Small Text) field in DocType 'Report Filter' +#. Label of the options (Small Text) field in DocType 'Custom Field' +#. Label of the options (Small Text) field in DocType 'Customize Form Field' +#. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' +#. Label of the options (Small Text) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/templates/form_grid/fields.html:43 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Options" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1367 +msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" +msgstr "" + +#. Label of the options_help (HTML) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Options Help" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1661 +msgid "Options for Rating field can range from 3 to 10" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:96 +msgid "Options for select. Each option on a new line." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1384 +msgid "Options for {0} must be set before setting the default value." +msgstr "" + +#: frappe/public/js/form_builder/store.js:182 +msgid "Options is required for field {0} of type {1}" +msgstr "" + +#: frappe/model/base_document.py:928 +msgid "Options not set for link field {0}" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Orange" +msgstr "" + +#. Label of the order (Code) field in DocType 'Kanban Board Column' +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Order" +msgstr "" + +#: frappe/database/query.py:769 +msgid "Order By must be a string" +msgstr "" + +#. Label of the sb0 (Section Break) field in DocType 'About Us Settings' +#. Label of the company_history (Table) field in DocType 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Org History" +msgstr "" + +#. Label of the company_history_heading (Data) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Org History Heading" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:21 +msgid "Orientation" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 +msgid "Original Value" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/contacts/doctype/address/address.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/page/setup_wizard/install_fixtures.py:30 +msgid "Other" +msgstr "" + +#. Label of the outgoing_tab (Tab Break) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outgoing" +msgstr "" + +#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outgoing (SMTP) Settings" +msgstr "" + +#. Label of the outgoing_emails_column (Column Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Outgoing Emails (Last 7 days)" +msgstr "" + +#. Label of the smtp_server (Data) field in DocType 'Email Account' +#. Label of the smtp_server (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Outgoing Server" +msgstr "" + +#. Label of the outgoing_mail_settings (Section Break) field in DocType 'Email +#. Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Outgoing Settings" +msgstr "" + +#: frappe/email/doctype/email_domain/email_domain.py:33 +msgid "Outgoing email account not correct" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Outlook.com" +msgstr "" + +#. Label of the output (Code) field in DocType 'Permission Inspector' +#. Label of the output (Code) field in DocType 'System Console' +#. Label of the output (Code) field in DocType 'Integration Request' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Output" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_dashboard.html:5 +msgid "Overview" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "PATCH" +msgstr "" + +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/page/print/print.js:84 +#: frappe/public/js/frappe/form/templates/print_layout.html:44 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 +msgid "PDF" +msgstr "" + +#: frappe/utils/print_format.py:147 frappe/utils/print_format.py:191 +msgid "PDF Generation in Progress" +msgstr "" + +#. Label of the pdf_generator (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "PDF Generator" +msgstr "" + +#. Label of the pdf_page_height (Float) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "PDF Page Height (in mm)" +msgstr "" + +#. Label of the pdf_page_size (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "PDF Page Size" +msgstr "" + +#. Label of the pdf_page_width (Float) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "PDF Page Width (in mm)" +msgstr "" + +#. Label of the pdf_settings (Section Break) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "PDF Settings" +msgstr "" + +#: frappe/utils/print_format.py:289 +msgid "PDF generation failed" +msgstr "" + +#: frappe/utils/pdf.py:106 +msgid "PDF generation failed because of broken image links" +msgstr "" + +#: frappe/printing/page/print/print.js:656 +msgid "PDF generation may not work as expected." +msgstr "" + +#: frappe/printing/page/print/print.js:574 +msgid "PDF printing via \"Raw Print\" is not supported." +msgstr "" + +#. Label of the pid (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "PID" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#. Option for the 'Request Method' (Select) field in DocType 'Webhook' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/webhook/webhook.json +msgid "POST" +msgstr "" + +#. Option for the 'Method' (Select) field in DocType 'Recorder' +#. Option for the 'Request Method' (Select) field in DocType 'Webhook' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/webhook/webhook.json +msgid "PUT" +msgstr "" + +#. Label of the package (Link) field in DocType 'Module Def' +#. Name of a DocType +#. Label of the package (Link) field in DocType 'Package Release' +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/package/package.json +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/workspace/build/build.json frappe/www/attribution.html:34 +msgid "Package" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/package_import/package_import.json +#: frappe/core/workspace/build/build.json +msgid "Package Import" +msgstr "" + +#. Label of the package_name (Data) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "Package Name" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/package_release/package_release.json +msgid "Package Release" +msgstr "" + +#. Label of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Packages" +msgstr "" + +#. Description of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Packages are lightweight apps (collection of Module Defs) that can be created, imported, or released right from the UI" +msgstr "" + +#. Label of the page (Link) field in DocType 'Custom Role' +#. Name of a DocType +#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for +#. Page and Report' +#. Label of the page (Link) field in DocType 'Role Permission for Page and +#. Report' +#. Label of a Link in the Build Workspace +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Page" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:63 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Page Break" +msgstr "" + +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json +msgid "Page Builder" +msgstr "" + +#. Label of the page_blocks (Table) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Page Building Blocks" +msgstr "" + +#. Label of the page_html (Section Break) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "Page HTML" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:73 +msgid "Page Height (in mm)" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:5 +msgid "Page Margins" +msgstr "" + +#. Label of the page_name (Data) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "Page Name" +msgstr "" + +#. Label of the page_number (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:63 +msgid "Page Number" +msgstr "" + +#. Label of the page_route (Small Text) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Page Route" +msgstr "" + +#. Label of the view_link_in_email (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Page Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:125 +msgid "Page Shortcuts" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:66 +msgid "Page Size" +msgstr "" + +#. Label of the page_title (Data) field in DocType 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Page Title" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:80 +msgid "Page Width (in mm)" +msgstr "" + +#: frappe/www/qrcode.py:35 +msgid "Page has expired!" +msgstr "" + +#: frappe/printing/doctype/print_settings/print_settings.py:70 +#: frappe/public/js/frappe/list/bulk_operations.js:106 +msgid "Page height and width cannot be zero" +msgstr "" + +#: frappe/public/js/frappe/views/container.js:52 frappe/www/404.html:23 +msgid "Page not found" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/web_page/web_page.json +msgid "Page to show on the website\n" +msgstr "" + +#: frappe/public/html/print_template.html:25 +#: frappe/public/js/frappe/views/reports/print_tree.html:89 +#: frappe/public/js/frappe/web_form/web_form.js:288 +#: frappe/templates/print_formats/standard.html:34 +msgid "Page {0} of {1}" +msgstr "" + +#. Label of the parameter (Data) field in DocType 'SMS Parameter' +#: frappe/core/doctype/sms_parameter/sms_parameter.json +msgid "Parameter" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:142 +#: frappe/public/js/frappe/views/workspace/workspace.js:434 +msgid "Parent" +msgstr "" + +#. Label of the parent_doctype (Link) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Parent DocType" +msgstr "" + +#. Label of the parent_document_type (Link) field in DocType 'Dashboard Chart' +#. Label of the parent_document_type (Link) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "Parent Document Type" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:66 +msgid "Parent Document Type is required to create a number card" +msgstr "" + +#. Label of the parent_element_selector (Data) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Parent Element Selector" +msgstr "" + +#. Label of the parent_fieldname (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Parent Field" +msgstr "" + +#. Label of the nsm_parent_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype.py:934 +msgid "Parent Field (Tree)" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:940 +msgid "Parent Field must be a valid fieldname" +msgstr "" + +#. Label of the parent_label (Select) field in DocType 'Top Bar Item' +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "Parent Label" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1198 +msgid "Parent Missing" +msgstr "" + +#. Label of the parent_page (Link) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Parent Page" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:24 +msgid "Parent Table" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:404 +msgid "Parent document type is required to create a dashboard chart" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:253 +msgid "Parent is the name of the document to which the data will get added to." +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:253 +msgid "Parent-to-child or child-to-different-child grouping is not allowed." +msgstr "" + +#: frappe/permissions.py:820 +msgid "Parentfield not specified in {0}: {1}" +msgstr "" + +#: frappe/client.py:467 +msgid "Parenttype, Parent and Parentfield are required to insert a child record" +msgstr "" + +#. Label of the partial (Check) field in DocType 'Personal Data Deletion Step' +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Partial" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Partial Success" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Partially Sent" +msgstr "" + +#. Label of the participants (Section Break) field in DocType 'Event' +#: frappe/desk/doctype/event/event.js:30 frappe/desk/doctype/event/event.json +msgid "Participants" +msgstr "" + +#. Option for the 'SocketIO Ping Check' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Pass" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Passive" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the password_settings (Section Break) field in DocType 'System +#. Settings' +#. Label of the password_tab (Tab Break) field in DocType 'System Settings' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the password (Password) field in DocType 'Email Account' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:493 +#: frappe/email/doctype/email_account/email_account.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/www/login.html:22 +msgid "Password" +msgstr "" + +#: frappe/core/doctype/user/user.py:1094 +msgid "Password Email Sent" +msgstr "" + +#: frappe/core/doctype/user/user.py:459 +msgid "Password Reset" +msgstr "" + +#. Label of the password_reset_limit (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Password Reset Link Generation Limit" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:897 +msgid "Password cannot be filtered" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:357 +msgid "Password changed successfully." +msgstr "" + +#. Label of the password (Password) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Password for Base DN" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:189 +msgid "Password is required or select Awaiting Password" +msgstr "" + +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "" + +#: frappe/public/js/frappe/desk.js:212 +msgid "Password missing in Email Account" +msgstr "" + +#: frappe/utils/password.py:47 +msgid "Password not found for {0} {1} {2}" +msgstr "" + +#: frappe/core/doctype/user/user.py:1093 +msgid "Password reset instructions have been sent to {}'s email" +msgstr "" + +#: frappe/www/update-password.html:191 +msgid "Password set" +msgstr "" + +#: frappe/auth.py:261 +msgid "Password size exceeded the maximum allowed size" +msgstr "" + +#: frappe/core/doctype/user/user.py:882 +msgid "Password size exceeded the maximum allowed size." +msgstr "" + +#: frappe/www/update-password.html:93 +msgid "Passwords do not match" +msgstr "" + +#: frappe/core/doctype/user/user.js:198 +msgid "Passwords do not match!" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:151 +msgid "Paste" +msgstr "" + +#. Label of the patch (Int) field in DocType 'Package Release' +#. Label of the patch (Code) field in DocType 'Patch Log' +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Patch" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Patch Log" +msgstr "" + +#: frappe/modules/patch_handler.py:136 +msgid "Patch type {} not found in patches.txt" +msgstr "" + +#. Label of the path (Data) field in DocType 'API Request Log' +#. Label of the path (Small Text) field in DocType 'Package Release' +#. Label of the path (Data) field in DocType 'Recorder' +#. Label of the path (Data) field in DocType 'Onboarding Step' +#. Label of the path (Data) field in DocType 'Web Page View' +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:35 +msgid "Path" +msgstr "" + +#. Label of the local_ca_certs_file (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Path to CA Certs File" +msgstr "" + +#. Label of the local_server_certificate_file (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Path to Server Certificate" +msgstr "" + +#. Label of the local_private_key_file (Data) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Path to private Key File" +msgstr "" + +#: frappe/website/path_resolver.py:208 +msgid "Path {0} it not a valid path" +msgstr "" + +#. Label of the payload_count (Int) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Payload Count" +msgstr "" + +#. Label of the peak_memory_usage (Int) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Peak Memory Usage" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Step' +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Pending" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Pending Approval" +msgstr "" + +#. Label of the pending_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Pending Emails" +msgstr "" + +#. Label of the pending_jobs (Int) field in DocType 'System Health Report +#. Queue' +#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json +msgid "Pending Jobs" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion +#. Request' +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Pending Verification" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Percent" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Percentage" +msgstr "" + +#. Label of the dynamic_date_period (Select) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Period" +msgstr "" + +#. Label of the permlevel (Int) field in DocType 'DocField' +#. Label of the permlevel (Int) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Perm Level" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Permanent" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1028 +msgid "Permanently Cancel {0}?" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1074 +msgid "Permanently Discard {0}?" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:861 +msgid "Permanently Submit {0}?" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:684 +msgid "Permanently delete {0}?" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 +msgid "Permission Error" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "Permission Inspector" +msgstr "" + +#. Label of the permlevel (Int) field in DocType 'Custom Field' +#: frappe/core/page/permission_manager/permission_manager.js:463 +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Permission Level" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:22 +msgid "Permission Levels" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Permission Log" +msgstr "" + +#. Label of a shortcut in the Users Workspace +#: frappe/core/workspace/users/users.json +msgid "Permission Manager" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Permission Query" +msgstr "" + +#. Label of the permission_rules (Section Break) field in DocType 'Custom Role' +#: frappe/core/doctype/custom_role/custom_role.json +msgid "Permission Rules" +msgstr "" + +#. Label of the permission_type (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "Permission Type" +msgstr "" + +#. Label of the section_break_4 (Section Break) field in DocType 'Custom +#. DocPerm' +#. Label of the permissions (Section Break) field in DocType 'DocField' +#. Label of the section_break_4 (Section Break) field in DocType 'DocPerm' +#. Label of the permissions (Table) field in DocType 'DocType' +#. Label of the permissions_tab (Tab Break) field in DocType 'DocType' +#. Label of the permissions (Section Break) field in DocType 'System Settings' +#. Label of a Card Break in the Users Workspace +#. Label of the permissions (Section Break) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 +#: 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:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 +msgid "Permissions Error" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:10 +msgid "Permissions are automatically applied to Standard Reports and searches." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:5 +msgid "Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:26 +msgid "Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:24 +msgid "Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:6 +msgid "Permissions get applied on Users based on what Roles they are assigned." +msgstr "" + +#. Name of a report +#. Label of a Link in the Users Workspace +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.json +#: frappe/core/workspace/users/users.json +msgid "Permitted Documents For User" +msgstr "" + +#. Label of the permitted_roles (Table MultiSelect) field in DocType 'Workflow +#. Action' +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Permitted Roles" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Personal" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +msgid "Personal Data Deletion Request" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +msgid "Personal Data Deletion Step" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +msgid "Personal Data Download Request" +msgstr "" + +#. Label of the phone (Data) field in DocType 'Address' +#. Label of the phone (Data) field in DocType 'Contact' +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the phone (Data) field in DocType 'Contact Us Settings' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Phone" +msgstr "" + +#. Label of the phone_no (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Phone No." +msgstr "" + +#: frappe/utils/__init__.py:124 +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:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 +msgid "Pick Columns" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Pie" +msgstr "" + +#. Label of the pincode (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Pincode" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Pink" +msgstr "" + +#. Label of the placeholder (Data) field in DocType 'DocField' +#. Label of the placeholder (Data) field in DocType 'Custom Field' +#. Label of the placeholder (Data) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Placeholder" +msgstr "" + +#. Option for the 'Message Type' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Plain Text" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Plant" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:544 +msgid "Please Authorize OAuth for Email Account {0}" +msgstr "" + +#: frappe/email/oauth.py:29 +msgid "Please Authorize OAuth for Email Account {}" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.py:77 +msgid "Please Duplicate this Website Theme to customize." +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:162 +msgid "Please Install the ldap3 library via pip to use ldap functionality." +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:308 +msgid "Please Set Chart" +msgstr "" + +#: frappe/core/doctype/sms_settings/sms_settings.py:88 +msgid "Please Update SMS Settings" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 +msgid "Please add a subject to your email" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:168 +msgid "Please add a valid comment." +msgstr "" + +#: frappe/core/doctype/user/user.py:1076 +msgid "Please ask your administrator to verify your sign-up" +msgstr "" + +#: frappe/public/js/frappe/form/controls/select.js:101 +msgid "Please attach a file first." +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:82 +msgid "Please attach an image file to set HTML for Footer." +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.py:70 +msgid "Please attach an image file to set HTML for Letter Head." +msgstr "" + +#: frappe/core/doctype/package_import/package_import.py:39 +msgid "Please attach the package" +msgstr "" + +#: frappe/utils/dashboard.py:58 +msgid "Please check the filter values set for Dashboard Chart: {}" +msgstr "" + +#: frappe/model/base_document.py:1008 +msgid "Please check the value of \"Fetch From\" set for field {0}" +msgstr "" + +#: frappe/core/doctype/user/user.py:1074 +msgid "Please check your email for verification" +msgstr "" + +#: frappe/email/smtp.py:134 +msgid "Please check your email login credentials." +msgstr "" + +#: frappe/twofactor.py:243 +msgid "Please check your registered email address for instructions on how to proceed. Do not close this window as you will have to return to it." +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.js:23 +msgid "Please click Edit on the Workspace for best results" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:158 +msgid "Please click on 'Export Errored Rows', fix the errors and import again." +msgstr "" + +#: frappe/twofactor.py:286 +msgid "Please click on the following link and follow the instructions on the page. {0}" +msgstr "" + +#: frappe/templates/emails/password_reset.html:2 +msgid "Please click on the following link to set your new password" +msgstr "" + +#: frappe/www/confirm_workflow_action.html:4 +msgid "Please confirm your action to {0} this document." +msgstr "" + +#: frappe/printing/page/print/print.js:658 +msgid "Please contact your system manager to install correct version." +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.js:45 +msgid "Please create Card first" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:42 +msgid "Please create chart first" +msgstr "" + +#: frappe/desk/form/meta.py:190 +msgid "Please delete the field from {0} or add the required doctype." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:184 +msgid "Please do not change the template headings." +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:19 +msgid "Please duplicate this to make changes" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:165 +msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." +msgstr "" + +#: frappe/desk/doctype/notification_log/notification_log.js:45 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:17 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 +#: frappe/public/js/frappe/list/bulk_operations.js:161 +#: frappe/public/js/frappe/utils/utils.js:1471 +msgid "Please enable pop-ups" +msgstr "" + +#: frappe/public/js/frappe/microtemplate.js:162 +#: frappe/public/js/frappe/microtemplate.js:177 +msgid "Please enable pop-ups in your browser" +msgstr "" + +#: frappe/integrations/google_oauth.py:55 +msgid "Please enable {} before continuing." +msgstr "" + +#: frappe/utils/oauth.py:191 +msgid "Please ensure that your profile has an email address" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:83 +msgid "Please enter Access Token URL" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:81 +msgid "Please enter Authorize URL" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:79 +msgid "Please enter Base URL" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:87 +msgid "Please enter Client ID before social login is enabled" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:90 +msgid "Please enter Client Secret before social login is enabled" +msgstr "" + +#: frappe/integrations/doctype/connected_app/connected_app.py:54 +msgid "Please enter OpenID Configuration URL" +msgstr "" + +#: frappe/integrations/doctype/social_login_key/social_login_key.py:85 +msgid "Please enter Redirect URL" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:163 +msgid "Please enter a valid email address." +msgstr "" + +#: frappe/templates/includes/contact.js:15 +msgid "Please enter both your email and message so that we can get back to you. Thanks!" +msgstr "" + +#: frappe/www/update-password.html:259 +msgid "Please enter the password" +msgstr "" + +#: frappe/public/js/frappe/desk.js:217 +msgctxt "Email Account" +msgid "Please enter the password for: {0}" +msgstr "" + +#: frappe/core/doctype/sms_settings/sms_settings.py:43 +msgid "Please enter valid mobile nos" +msgstr "" + +#: frappe/www/update-password.html:142 +msgid "Please enter your new password." +msgstr "" + +#: frappe/www/update-password.html:135 +msgid "Please enter your old password." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 +msgid "Please find attached {0}: {1}" +msgstr "" + +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 +msgid "Please login to post a comment." +msgstr "" + +#: frappe/core/doctype/communication/communication.py:186 +msgid "Please make sure the Reference Communication Docs are not circularly linked." +msgstr "" + +#: frappe/model/document.py:992 +msgid "Please refresh to get the latest document." +msgstr "" + +#: frappe/printing/page/print/print.js:575 +msgid "Please remove the printer mapping in Printer Settings and try again." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:358 +msgid "Please save before attaching." +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:52 +msgid "Please save the document before assignment" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/assign_to.js:72 +msgid "Please save the document before removing assignment" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1718 +msgid "Please save the report first" +msgstr "" + +#: frappe/website/doctype/web_template/web_template.js:22 +msgid "Please save to edit the template." +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:31 +msgid "Please select DocType first" +msgstr "" + +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js:27 +msgid "Please select Entity Type first" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:116 +msgid "Please select Minimum Password Score" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1193 +msgid "Please select X and Y fields" +msgstr "" + +#: frappe/utils/__init__.py:131 +msgid "Please select a country code for field {1}." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 +msgid "Please select a file first." +msgstr "" + +#: frappe/utils/file_manager.py:50 +msgid "Please select a file or url" +msgstr "" + +#: frappe/model/rename_doc.py:684 +msgid "Please select a valid csv file with data" +msgstr "" + +#: frappe/utils/data.py:309 +msgid "Please select a valid date filter" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:203 +msgid "Please select applicable Doctypes" +msgstr "" + +#: frappe/model/db_query.py:1163 +msgid "Please select atleast 1 column from {0} to sort/group" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:214 +msgid "Please select prefix first" +msgstr "" + +#: frappe/core/doctype/data_export/data_export.js:42 +msgid "Please select the Document Type." +msgstr "" + +#. Description of the 'Directory Server' (Select) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Please select the LDAP Directory being used" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.js:100 +msgid "Please select {0}" +msgstr "" + +#: frappe/contacts/doctype/contact/contact.py:298 +msgid "Please set Email Address" +msgstr "" + +#: frappe/printing/page/print/print.js:589 +msgid "Please set a printer mapping for this print format in the Printer Settings" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1416 +msgid "Please set filters" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:263 +msgid "Please set filters value in Report Filter table." +msgstr "" + +#: frappe/model/naming.py:580 +msgid "Please set the document name" +msgstr "" + +#: frappe/desk/doctype/dashboard/dashboard.py:120 +msgid "Please set the following documents in this Dashboard as standard first." +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:120 +msgid "Please set the series to be used." +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:129 +msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:104 +msgid "Please setup a message first" +msgstr "" + +#: frappe/core/doctype/user/user.py:424 +msgid "Please setup default outgoing Email Account from Settings > Email Account" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:432 +msgid "Please setup default outgoing Email Account from Tools > Email Account" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:774 +msgid "Please specify" +msgstr "" + +#: frappe/permissions.py:796 +msgid "Please specify a valid parent DocType for {0}" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:163 +msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:160 +msgid "Please specify the minutes offset" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:154 +msgid "Please specify which date field must be checked" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:158 +msgid "Please specify which datetime field must be checked" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:167 +msgid "Please specify which value field must be checked" +msgstr "" + +#: frappe/public/js/frappe/request.js:187 +#: frappe/public/js/frappe/views/translation_manager.js:102 +msgid "Please try again" +msgstr "" + +#: frappe/integrations/google_oauth.py:58 +msgid "Please update {} before continuing." +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:333 +msgid "Please use a valid LDAP search filter" +msgstr "" + +#: frappe/templates/emails/file_backup_notification.html:4 +msgid "Please use following links to download file backup." +msgstr "" + +#: frappe/utils/password.py:217 +msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." +msgstr "" + +#. Label of the policy_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Policy URI" +msgstr "" + +#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Polling" +msgstr "" + +#. Label of the popover_element (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Popover Element" +msgstr "" + +#. Label of the ondemand_description (HTML Editor) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Popover or Modal Description" +msgstr "" + +#. Label of the smtp_port (Data) field in DocType 'Email Account' +#. Label of the incoming_port (Data) field in DocType 'Email Account' +#. Label of the smtp_port (Data) field in DocType 'Email Domain' +#. Label of the incoming_port (Data) field in DocType 'Email Domain' +#. Label of the port (Int) field in DocType 'Network Printer Settings' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Port" +msgstr "" + +#. Label of the menu (Table) field in DocType 'Portal Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Portal Menu" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +msgid "Portal Menu Item" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/portal_settings/portal_settings.json +#: frappe/website/workspace/website/website.json +msgid "Portal Settings" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:24 +msgid "Portrait" +msgstr "" + +#. Label of the position (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Position" +msgstr "" + +#: frappe/templates/discussions/comment_box.html:29 +#: frappe/templates/discussions/reply_card.html:15 +#: frappe/templates/discussions/reply_section.html:29 +#: frappe/templates/discussions/reply_section.html:53 +#: frappe/templates/discussions/topic_modal.html:11 +msgid "Post" +msgstr "" + +#: frappe/templates/discussions/reply_section.html:40 +msgid "Post it here, our mentors will help you out." +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Postal" +msgstr "" + +#. Label of the pincode (Data) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 +msgid "Postal Code" +msgstr "" + +#. Label of the posting_timestamp (Datetime) field in DocType 'Changelog Feed' +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +msgid "Posting Timestamp" +msgstr "" + +#: frappe/database/query.py:1520 +msgid "Potentially dangerous content in string literal: {0}" +msgstr "" + +#. Label of the precision (Select) field in DocType 'DocField' +#. Label of the precision (Select) field in DocType 'Custom Field' +#. Label of the precision (Select) field in DocType 'Customize Form Field' +#. Label of the precision (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Precision" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 +msgid "Precision should be between 1 and 6" +msgstr "" + +#: frappe/utils/password_strength.py:187 +msgid "Predictable substitutions like '@' instead of 'a' don't help very much." +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:34 +msgid "Prefer not to say" +msgstr "" + +#. Label of the is_primary_address (Check) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Preferred Billing Address" +msgstr "" + +#. Label of the is_shipping_address (Check) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Preferred Shipping Address" +msgstr "" + +#. Label of the prefix (Data) field in DocType 'Document Naming Rule' +#. Label of the prefix (Autocomplete) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Prefix" +msgstr "" + +#. Name of a DocType +#. Label of the prepared_report (Check) field in DocType 'Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:32 +msgid "Prepared Report" +msgstr "" + +#. Name of a report +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.json +msgid "Prepared Report Analytics" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Prepared Report User" +msgstr "" + +#: frappe/desk/query_report.py:308 +msgid "Prepared report render failed" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:473 +msgid "Preparing Report" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:434 +msgid "Prepend the template to the email message" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:139 +msgid "Press Alt Key to trigger additional shortcuts in Menu and Sidebar" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:141 +msgid "Press Enter to save" +msgstr "" + +#. Label of the section_import_preview (Section Break) field in DocType 'Data +#. Import' +#. Label of the preview (Section Break) field in DocType 'File' +#. Label of the preview_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Label of the preview (Attach Image) field in DocType 'Print Style' +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/file/file.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/email/doctype/notification/notification.js:194 +#: frappe/integrations/doctype/webhook/webhook.js:90 +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/public/js/frappe/form/controls/markdown_editor.js:17 +#: frappe/public/js/frappe/form/controls/markdown_editor.js:31 +#: frappe/public/js/frappe/ui/capture.js:236 +msgid "Preview" +msgstr "" + +#. Label of the preview_html (HTML) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Preview HTML" +msgstr "" + +#. Label of the preview_message (Button) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Preview Message" +msgstr "" + +#: frappe/public/js/form_builder/form_builder.bundle.js:83 +msgid "Preview Mode" +msgstr "" + +#. Label of the series_preview (Text) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Preview of generated names" +msgstr "" + +#: frappe/public/js/frappe/views/render_preview.js:19 +msgid "Preview on {0}" +msgstr "" + +#: frappe/public/js/print_format_builder/Preview.vue:103 +msgid "Preview type" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.js:81 +msgid "Preview:" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:15 +#: frappe/public/js/frappe/web_form/web_form.js:97 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:16 +#: frappe/templates/includes/slideshow.html:34 +#: frappe/website/web_template/slideshow/slideshow.html:40 +msgid "Previous" +msgstr "" + +#: frappe/public/js/frappe/ui/slides.js:351 +msgctxt "Go to previous slide" +msgid "Previous" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:2216 +msgid "Previous Submission" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Primary" +msgstr "" + +#: frappe/public/js/frappe/form/templates/address_list.html:27 +msgid "Primary Address" +msgstr "" + +#. Label of the primary_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Primary Color" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:23 +msgid "Primary Contact" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:69 +msgid "Primary Email" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:49 +msgid "Primary Mobile" +msgstr "" + +#: frappe/public/js/frappe/form/templates/contact_list.html:41 +msgid "Primary Phone" +msgstr "" + +#: frappe/database/mariadb/schema.py:156 frappe/database/postgres/schema.py:199 +#: frappe/database/sqlite/schema.py:141 +msgid "Primary key of doctype {0} can not be changed as there are existing values." +msgstr "" + +#. Label of the print (Check) field in DocType 'Custom DocPerm' +#. Label of the print (Check) field in DocType 'DocPerm' +#. Label of the print (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/success_action/success_action.js:58 +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/printing/page/print/print.js:78 +#: frappe/public/js/frappe/form/success_action.js:81 +#: frappe/public/js/frappe/form/templates/print_layout.html:46 +#: frappe/public/js/frappe/form/toolbar.js:360 +#: frappe/public/js/frappe/form/toolbar.js:372 +#: frappe/public/js/frappe/list/bulk_operations.js:95 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 +msgid "Print" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2166 +msgctxt "Button in list view actions menu" +msgid "Print" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:48 +msgid "Print Documents" +msgstr "" + +#. Label of the print_format (Link) field in DocType 'Auto Repeat' +#. Label of a Link in the Build Workspace +#. Label of the print_format (Link) field in DocType 'Notification' +#. Name of a DocType +#. Label of the print_format (Link) field in DocType 'Web Form' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/workspace/build/build.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 +#: frappe/public/js/frappe/list/bulk_operations.js:59 +#: frappe/website/doctype/web_form/web_form.json +msgid "Print Format" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Label of the print_format_builder (Check) field in DocType 'Print Format' +#: frappe/automation/workspace/tools/tools.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/page/print_format_builder/print_format_builder.js:44 +#: frappe/printing/page/print_format_builder/print_format_builder.js:67 +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:4 +msgid "Print Format Builder" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Print Format Builder (New)" +msgstr "" + +#. Label of the print_format_builder_beta (Check) field in DocType 'Print +#. Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format Builder Beta" +msgstr "" + +#: frappe/utils/pdf.py:63 +msgid "Print Format Error" +msgstr "" + +#. Name of a DocType +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +msgid "Print Format Field Template" +msgstr "" + +#. Label of the print_format_for (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format For" +msgstr "" + +#. Label of the print_format_help (HTML) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format Help" +msgstr "" + +#. Label of the print_format_type (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Print Format Type" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1586 +msgid "Print Format not found" +msgstr "" + +#: frappe/www/printview.py:451 +msgid "Print Format {0} is disabled" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Name of a DocType +#. Label of the print_heading (Data) field in DocType 'Print Heading' +#: frappe/automation/workspace/tools/tools.json +#: frappe/printing/doctype/print_heading/print_heading.json +msgid "Print Heading" +msgstr "" + +#. Label of the print_hide (Check) field in DocType 'DocField' +#. Label of the print_hide (Check) field in DocType 'Custom Field' +#. Label of the print_hide (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Hide" +msgstr "" + +#. Label of the print_hide_if_no_value (Check) field in DocType 'DocField' +#. Label of the print_hide_if_no_value (Check) field in DocType 'Custom Field' +#. Label of the print_hide_if_no_value (Check) field in DocType 'Customize Form +#. Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Hide If No Value" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:168 +msgid "Print Language" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:225 +msgid "Print Sent to the printer!" +msgstr "" + +#. Label of the server_printer (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Print Server" +msgstr "" + +#. Label of a Link in the Tools Workspace +#. Label of the column_break_25 (Section Break) field in DocType 'Notification' +#. Name of a DocType +#: frappe/automation/workspace/tools/tools.json +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.js:6 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 +#: frappe/public/js/frappe/form/templates/print_layout.html:35 +msgid "Print Settings" +msgstr "" + +#. Label of the print_style_section (Section Break) field in DocType 'Print +#. Settings' +#. Label of the print_style (Link) field in DocType 'Print Settings' +#. Name of a DocType +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.json +msgid "Print Style" +msgstr "" + +#. Label of the print_style_name (Data) field in DocType 'Print Style' +#: frappe/printing/doctype/print_style/print_style.json +msgid "Print Style Name" +msgstr "" + +#. Label of the print_style_preview (HTML) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Print Style Preview" +msgstr "" + +#. Label of the print_width (Data) field in DocType 'DocField' +#. Label of the print_width (Data) field in DocType 'Custom Field' +#. Label of the print_width (Data) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Width" +msgstr "" + +#. Description of the 'Print Width' (Data) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Print Width of the field, if the field is a column in a table" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:170 +msgid "Print document" +msgstr "" + +#. Label of the with_letterhead (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Print with letterhead" +msgstr "" + +#: frappe/printing/page/print/print.js:870 +msgid "Printer" +msgstr "" + +#: frappe/printing/page/print/print.js:847 +msgid "Printer Mapping" +msgstr "" + +#. Label of the printer_name (Select) field in DocType 'Network Printer +#. Settings' +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Printer Name" +msgstr "" + +#: frappe/printing/page/print/print.js:839 +msgid "Printer Settings" +msgstr "" + +#: frappe/printing/page/print/print.js:588 +msgid "Printer mapping not set." +msgstr "" + +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Printing" +msgstr "" + +#: frappe/utils/print_format.py:291 +msgid "Printing failed" +msgstr "" + +#. Label of the priority (Int) field in DocType 'Assignment Rule' +#. Label of the priority (Int) field in DocType 'Document Naming Rule' +#. Label of the priority (Select) field in DocType 'ToDo' +#. Label of the priority (Int) field in DocType 'Email Queue' +#. Label of the idx (Int) field in DocType 'Web Page' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:37 +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/public/js/frappe/form/sidebar/assign_to.js:211 +#: frappe/website/doctype/web_page/web_page.json +msgid "Priority" +msgstr "" + +#. Label of the private (Check) field in DocType 'Custom HTML Block' +#. Option for the 'Event Type' (Select) field in DocType 'Event' +#. Label of the private (Check) field in DocType 'Kanban Board' +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/note/note_list.js:8 +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:35 +msgid "Private" +msgstr "" + +#. Label of the private_files_size (Float) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Private Files (MB)" +msgstr "" + +#: frappe/templates/emails/file_backup_notification.html:6 +msgid "Private Files Backup:" +msgstr "" + +#. Description of the 'Auto Reply Message' (Text Editor) field in DocType +#. 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference" +msgstr "" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:22 +msgid "Proceed" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:940 +msgid "Proceed Anyway" +msgstr "" + +#: frappe/public/js/frappe/form/controls/table.js:104 +msgid "Processing" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:52 +msgid "Processing..." +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:51 +msgid "Prof" +msgstr "" + +#. Group in User's connections +#: frappe/core/doctype/user/user.json +msgid "Profile" +msgstr "" + +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "" + +#: frappe/public/js/frappe/socketio_client.js:82 +msgid "Progress" +msgstr "" + +#: 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/custom/doctype/property_setter/property_setter.json +msgid "Property" +msgstr "" + +#. Label of the property_depends_on_section (Section Break) field in DocType +#. 'Customize Form Field' +#. Label of the property_depends_on_section (Section Break) field in DocType +#. 'Web Form Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Property Depends On" +msgstr "" + +#. Name of a DocType +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Property Setter" +msgstr "" + +#. Description of a DocType +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Property Setter overrides a standard DocType or Field property" +msgstr "" + +#. Label of the property_type (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Property Type" +msgstr "" + +#. Label of the protect_attached_files (Check) field in DocType 'DocType' +#. Label of the protect_attached_files (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Protect Attached Files" +msgstr "" + +#: frappe/core/doctype/file/file.py:526 +msgid "Protected File" +msgstr "" + +#. Description of the 'Allowed File Extensions' (Small Text) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Provide a list of allowed file extensions for file uploads. Each line should contain one allowed file type. If unset, all file extensions are allowed. Example:
    CSV
    JPG
    PNG" +msgstr "" + +#. Label of the provider (Data) field in DocType 'User Social Login' +#. Label of the provider (Select) field in DocType 'Geolocation Settings' +#: frappe/core/doctype/user_social_login/user_social_login.json +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +msgid "Provider" +msgstr "" + +#. Label of the provider_name (Data) field in DocType 'Connected App' +#. Label of the provider_name (Data) field in DocType 'Social Login Key' +#. Label of the provider_name (Data) field in DocType 'Token Cache' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Provider Name" +msgstr "" + +#. Option for the 'Event Type' (Select) field in DocType 'Event' +#. Label of the public (Check) field in DocType 'Note' +#. Label of the public (Check) field in DocType 'Workspace' +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/note/note_list.js:6 +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/views/interaction.js:78 +#: frappe/public/js/frappe/views/workspace/workspace.js:440 +msgid "Public" +msgstr "" + +#. Label of the public_files_size (Float) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Public Files (MB)" +msgstr "" + +#: frappe/templates/emails/file_backup_notification.html:5 +msgid "Public Files Backup:" +msgstr "" + +#. Label of the publish (Check) field in DocType 'Package Release' +#: frappe/core/doctype/package_release/package_release.json +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 +#: frappe/website/doctype/web_form/web_form.js:86 +msgid "Publish" +msgstr "" + +#. Label of the published (Check) field in DocType 'Comment' +#. Label of the published (Check) field in DocType 'Help Article' +#. Label of the published (Check) field in DocType 'Help Category' +#. Label of the published (Check) field in DocType 'Web Form' +#. Label of the published (Check) field in DocType 'Web Page' +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_form/web_form_list.js:5 +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/web_page/web_page_list.js:5 +msgid "Published" +msgstr "" + +#. Label of the publishing_dates_section (Section Break) field in DocType 'Web +#. Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Publishing Dates" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:208 +msgid "Pull Emails" +msgstr "" + +#. Label of the pull_from_google_calendar (Check) field in DocType 'Google +#. Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Pull from Google Calendar" +msgstr "" + +#. Label of the pull_from_google_contacts (Check) field in DocType 'Google +#. Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Pull from Google Contacts" +msgstr "" + +#. Label of the pulled_from_google_calendar (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Pulled from Google Calendar" +msgstr "" + +#. Label of the pulled_from_google_contacts (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Pulled from Google Contacts" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:209 +msgid "Pulling emails..." +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Purchase Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Purchase Master Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Purchase User" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Purple" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Push Notification Settings" +msgstr "" + +#. Label of a Card Break in the Integrations Workspace +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Push Notifications" +msgstr "" + +#. Label of the push_to_google_calendar (Check) field in DocType 'Google +#. Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Push to Google Calendar" +msgstr "" + +#. Label of the push_to_google_contacts (Check) field in DocType 'Google +#. Contacts' +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Push to Google Contacts" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.js:23 +msgid "Put on Hold" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json +msgid "Python" +msgstr "" + +#: frappe/www/qrcode.html:3 +msgid "QR Code" +msgstr "" + +#: frappe/www/qrcode.html:6 +msgid "QR Code for Login Verification" +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:401 +msgid "Quarterly" +msgstr "" + +#. Label of the query (Data) field in DocType 'Recorder Query' +#. Label of the query (Code) field in DocType 'Report' +#: frappe/core/doctype/recorder_query/recorder_query.json +#: frappe/core/doctype/report/report.json +msgid "Query" +msgstr "" + +#. Label of the section_break_6 (Section Break) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Query / Script" +msgstr "" + +#. Label of the query_options (Small Text) field in DocType 'Contact Us +#. Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Query Options" +msgstr "" + +#. Label of the query_parameters (Table) field in DocType 'Connected App' +#. Name of a DocType +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/query_parameters/query_parameters.json +msgid "Query Parameters" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +#: frappe/public/js/frappe/views/reports/query_report.js:17 +msgid "Query Report" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.py:188 +msgid "Query analysis complete. Check suggested indexes." +msgstr "" + +#: frappe/utils/safe_exec.py:497 +msgid "Query must be of SELECT or read-only WITH type." +msgstr "" + +#. Label of the queue (Select) field in DocType 'RQ Job' +#. Label of the queue (Data) field in DocType 'System Health Report Queue' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json +msgid "Queue" +msgstr "" + +#: frappe/utils/background_jobs.py:731 +msgid "Queue Overloaded" +msgstr "" + +#. Label of the queue_status (Table) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Queue Status" +msgstr "" + +#. Label of the queue_type (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Queue Type(s)" +msgstr "" + +#. Label of the queue_in_background (Check) field in DocType 'DocType' +#. Label of the queue_in_background (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Queue in Background (BETA)" +msgstr "" + +#: frappe/utils/background_jobs.py:556 +msgid "Queue should be one of {0}" +msgstr "" + +#. Label of the queue (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Queue(s)" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#. Option for the 'Status' (Select) field in DocType 'Submission Queue' +#. Option for the 'Status' (Select) field in DocType 'Integration Request' +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Queued" +msgstr "" + +#. Label of the queued_at (Datetime) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Queued At" +msgstr "" + +#. Label of the queued_by (Data) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Queued By" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.py:174 +msgid "Queued for Submission. You can track the progress over {0}." +msgstr "" + +#: frappe/desk/page/backups/backups.py:96 +msgid "Queued for backup. You will receive an email with the download link" +msgstr "" + +#. Label of the queues (Data) field in DocType 'System Health Report Workers' +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "Queues" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:85 +msgid "Queuing {0} for Submission" +msgstr "" + +#. Label of the quick_entry (Check) field in DocType 'DocType' +#. Label of the quick_entry (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Quick Entry" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:3 +msgid "Quick Help for Setting Permissions" +msgstr "" + +#. Label of the quick_list_filter (Code) field in DocType 'Workspace Quick +#. List' +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +msgid "Quick List Filter" +msgstr "" + +#. Label of the quick_lists_tab (Tab Break) field in DocType 'Workspace' +#. Label of the quick_lists (Table) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Quick Lists" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_utils.js:314 +msgid "Quoting must be between 0 and 3" +msgstr "" + +#. Label of the raw_information_log_section (Section Break) field in DocType +#. 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "RAW Information Log" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/rq_job/rq_job.json +msgid "RQ Job" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "RQ Worker" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Random" +msgstr "" + +#: frappe/website/report/website_analytics/website_analytics.js:20 +msgid "Range" +msgstr "" + +#. Label of the rate_limiting_section (Section Break) field in DocType 'Server +#. Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Rate Limiting" +msgstr "" + +#. Label of the rate_limit_email_link_login (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Rate limit for email link login" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Rating" +msgstr "" + +#. Label of the raw_commands (Code) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:98 +msgid "Raw Commands" +msgstr "" + +#. Label of the raw (Code) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Raw Email" +msgstr "" + +#. Label of the raw_printing (Check) field in DocType 'Print Format' +#. Label of the raw_printing_section (Section Break) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Raw Printing" +msgstr "" + +#: frappe/printing/page/print/print.js:178 +msgid "Raw Printing Setting" +msgstr "" + +#: frappe/public/js/frappe/form/templates/print_layout.html:37 +msgid "Raw Printing Settings" +msgstr "" + +#: frappe/desk/doctype/console_log/console_log.js:6 +msgid "Re-Run in Console" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:726 +msgid "Re:" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:268 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 +msgid "Re: {0}" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Label of the read (Check) field in DocType 'Custom DocPerm' +#. Label of the read (Check) field in DocType 'DocPerm' +#. Label of the read (Check) field in DocType 'DocShare' +#. Label of the read (Check) field in DocType 'User Document Type' +#. Label of the read (Check) field in DocType 'Notification Log' +#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue' +#: frappe/client.py:450 frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Read" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the read_only (Check) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Label of the read_only (Check) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the read_only (Check) field in DocType 'Customize Form Field' +#. Label of the read_only (Check) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/public/js/form_builder/form_builder.bundle.js:83 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Read Only" +msgstr "" + +#. Label of the read_only_depends_on (Code) field in DocType 'Custom Field' +#. Label of the read_only_depends_on (Code) field in DocType 'Customize Form +#. Field' +#. Label of the read_only_depends_on (Code) field in DocType 'Web Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Read Only Depends On" +msgstr "" + +#. Label of the read_only_depends_on (Code) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Read Only Depends On (JS)" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:16 +#: frappe/templates/includes/navbar/navbar_items.html:97 +msgid "Read Only Mode" +msgstr "" + +#. Label of the read_by_recipient (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Read by Recipient" +msgstr "" + +#. Label of the read_by_recipient_on (Datetime) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Read by Recipient On" +msgstr "" + +#: frappe/desk/doctype/note/note.js:10 +msgid "Read mode" +msgstr "" + +#: frappe/utils/safe_exec.py:99 +msgid "Read the documentation to know more" +msgstr "" + +#. Label of the readme (Markdown Editor) field in DocType 'Package' +#: frappe/core/doctype/package/package.json +msgid "Readme" +msgstr "" + +#. Label of the realtime_socketio_section (Section Break) field in DocType +#. 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Realtime (SocketIO)" +msgstr "" + +#. Label of the reason (Long Text) field in DocType 'Unhandled Email' +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Reason" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:894 +msgid "Rebuild" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:511 +msgid "Rebuild Tree" +msgstr "" + +#: frappe/utils/nestedset.py:177 +msgid "Rebuilding of tree is not supported for {}" +msgstr "" + +#. Option for the 'Sent or Received' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Received" +msgstr "" + +#: frappe/integrations/doctype/token_cache/token_cache.py:49 +msgid "Received an invalid token type." +msgstr "" + +#. Label of the receiver_by_document_field (Select) field in DocType +#. 'Notification Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Receiver By Document Field" +msgstr "" + +#. Label of the receiver_by_role (Link) field in DocType 'Notification +#. Recipient' +#: frappe/email/doctype/notification_recipient/notification_recipient.json +msgid "Receiver By Role" +msgstr "" + +#. Label of the receiver_parameter (Data) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Receiver Parameter" +msgstr "" + +#: frappe/utils/password_strength.py:123 +msgid "Recent years are easy to guess." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 +msgid "Recents" +msgstr "" + +#. Label of the recipients (Table) field in DocType 'Email Queue' +#. Label of the recipient (Data) field in DocType 'Email Queue Recipient' +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +msgid "Recipient" +msgstr "" + +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Recipient Unsubscribed" +msgstr "" + +#. Label of the recipients (Small Text) field in DocType 'Auto Repeat' +#. Label of the column_break_5 (Section Break) field in DocType 'Notification' +#. Label of the recipients (Table) field in DocType 'Notification' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/email/doctype/notification/notification.json +msgid "Recipients" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/recorder/recorder.json +msgid "Recorder" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Recorder Query" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json +msgid "Recorder Suggested Index" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_help.html:2 +msgid "Records for following doctypes will be filtered" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1609 +msgid "Recursive Fetch From" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Red" +msgstr "" + +#. Label of the redirect_http_status (Select) field in DocType 'Website Route +#. Redirect' +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +msgid "Redirect HTTP Status" +msgstr "" + +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + +#. Label of the redirect_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Redirect URI" +msgstr "" + +#. Label of the redirect_uri_bound_to_authorization_code (Data) field in +#. DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Redirect URI Bound To Auth Code" +msgstr "" + +#. Label of the redirect_uris (Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Redirect URIs" +msgstr "" + +#. Label of the redirect_url (Small Text) field in DocType 'User' +#. Label of the redirect_url (Data) field in DocType 'Social Login Key' +#: frappe/core/doctype/user/user.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Redirect URL" +msgstr "" + +#. Description of the 'Default App' (Select) field in DocType 'System Settings' +#. Description of the 'Default App' (Select) field in DocType 'User' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +msgid "Redirect to the selected app after login" +msgstr "" + +#. Description of the 'Welcome URL' (Data) field in DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Redirect to this URL after successful confirmation." +msgstr "" + +#. Label of the redirects_tab (Tab Break) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Redirects" +msgstr "" + +#: frappe/sessions.py:149 +msgid "Redis cache server not running. Please contact Administrator / Tech support" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:530 +msgid "Redo" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:164 +#: frappe/public/js/frappe/form/toolbar.js:538 +msgid "Redo last action" +msgstr "" + +#. Label of the ref_doctype (Link) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Ref DocType" +msgstr "" + +#: frappe/desk/doctype/form_tour/form_tour.js:38 +msgid "Referance Doctype and Dashboard Name both can't be used at the same time." +msgstr "" + +#. Label of the linked_with (Section Break) field in DocType 'Address' +#. Label of the contact_details (Section Break) field in DocType 'Contact' +#. Label of the reference_section (Section Break) field in DocType 'Activity +#. Log' +#. Label of the reference_section (Section Break) field in DocType +#. 'Communication' +#. Label of the reference (Dynamic Link) field in DocType 'Permission Log' +#. Label of the section_break_6 (Section Break) field in DocType 'ToDo' +#. Label of the reference_section (Section Break) field in DocType 'Integration +#. Request' +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/core/doctype/user_type/user_type_dashboard.py:5 +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.py:42 +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/public/js/frappe/views/interaction.js:54 +msgid "Reference" +msgstr "" + +#. Label of the date_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Reference Date" +msgstr "" + +#. Label of the datetime_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Reference Datetime" +msgstr "" + +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "" + +#. Label of the reference_name (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Reference DocName" +msgstr "" + +#. Label of the reference_doctype (Link) field in DocType 'Error Log' +#. Label of the ref_doctype (Link) field in DocType 'Submission Queue' +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Reference DocType" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:26 +msgid "Reference DocType and Reference Name are required" +msgstr "" + +#. Label of the ref_docname (Dynamic Link) field in DocType 'Submission Queue' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Discussion +#. Topic' +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/website/doctype/discussion_topic/discussion_topic.json +msgid "Reference Docname" +msgstr "" + +#. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' +#. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' +#: frappe/core/doctype/communication/communication.js:143 +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/views/render_preview.js:34 +#: frappe/website/doctype/discussion_topic/discussion_topic.json +msgid "Reference Doctype" +msgstr "" + +#. Label of the reference_document (Dynamic Link) field in DocType 'Auto +#. Repeat' +#. Label of the reference_document (Data) field in DocType 'Access Log' +#. Label of the reference_doctype (Link) field in DocType 'Form Tour' +#. Label of the reference_document (Link) field in DocType 'Onboarding Step' +#. Label of the reference_document (Data) field in DocType 'Webhook Request +#. Log' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat_schedule.html:4 +#: frappe/core/doctype/access_log/access_log.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Reference Document" +msgstr "" + +#. Label of the reference_docname (Dynamic Link) field in DocType 'Document +#. Share Key' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Integration +#. Request' +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Reference Document Name" +msgstr "" + +#. Label of the reference_doctype (Link) field in DocType 'Auto Repeat' +#. Label of the reference_doctype (Link) field in DocType 'Activity Log' +#. Label of the reference_doctype (Link) field in DocType 'Comment' +#. Label of the reference_doctype (Link) field in DocType 'Communication' +#. Label of the parent (Data) field in DocType 'Custom DocPerm' +#. Label of the ref_doctype (Data) field in DocType 'Custom Role' +#. Label of the reference_doctype (Link) field in DocType 'Document Share Key' +#. Label of the reference_doctype (Link) field in DocType 'Server Script' +#. Label of the ref_doctype (Link) field in DocType 'Success Action' +#. Label of the reference_doctype (Link) field in DocType 'View Log' +#. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' +#. Label of the reference_doctype (Link) field in DocType 'Event Participants' +#. Label of the reference_doctype (Link) field in DocType 'Kanban Board' +#. Label of the reference_doctype (Link) field in DocType 'List Filter' +#. Label of the reference_doctype (Link) field in DocType 'Email Queue' +#. Label of the reference_doctype (Link) field in DocType 'Email Unsubscribe' +#. Label of the reference_doctype (Link) field in DocType 'Integration Request' +#. Label of the reference_doctype (Link) field in DocType 'Portal Menu Item' +#. Label of the reference_doctype (Link) field in DocType 'Workflow Action' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/success_action/success_action.json +#: frappe/core/doctype/view_log/view_log.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/event_participants/event_participants.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_filter/list_filter.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Reference Document Type" +msgstr "" + +#. Label of the reference_name (Dynamic Link) field in DocType 'Activity Log' +#. Label of the reference_name (Dynamic Link) field in DocType 'Comment' +#. Label of the reference_name (Dynamic Link) field in DocType 'Communication' +#. Label of the docname (Data) field in DocType 'Data Import Log' +#. Label of the reference_name (Data) field in DocType 'Error Log' +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event +#. Participants' +#. Label of the reference_name (Dynamic Link) field in DocType 'ToDo' +#. Label of the reference_name (Dynamic Link) field in DocType 'Email +#. Unsubscribe' +#. Label of the reference_name (Dynamic Link) field in DocType 'Workflow +#. Action' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.js:152 +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/desk/doctype/event_participants/event_participants.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Reference Name" +msgstr "" + +#. Label of the reference_owner (Read Only) field in DocType 'Activity Log' +#. Label of the reference_owner (Data) field in DocType 'Comment' +#. Label of the reference_owner (Read Only) field in DocType 'Communication' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +msgid "Reference Owner" +msgstr "" + +#. Label of the reference_report (Data) field in DocType 'Report' +#. Label of the reference_report (Link) field in DocType 'Onboarding Step' +#. Label of the reference_report (Data) field in DocType 'Auto Email Report' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Reference Report" +msgstr "" + +#. Label of the reference_type (Link) field in DocType 'Permission Log' +#. Label of the reference_type (Link) field in DocType 'ToDo' +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/desk/doctype/todo/todo.json +msgid "Reference Type" +msgstr "" + +#. Label of the reference_name (Dynamic Link) field in DocType 'View Log' +#: frappe/core/doctype/view_log/view_log.json +msgid "Reference name" +msgstr "" + +#: frappe/templates/emails/auto_reply.html:3 +msgid "Reference: {0} {1}" +msgstr "" + +#. Label of the referrer (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/report/website_analytics/website_analytics.js:37 +msgid "Referrer" +msgstr "" + +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 +#: frappe/public/js/frappe/form/form.js:1201 +#: frappe/public/js/frappe/form/templates/print_layout.html:6 +#: frappe/public/js/frappe/list/base_list.js:66 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: frappe/public/js/frappe/views/treeview.js:498 +#: frappe/public/js/frappe/widgets/chart_widget.js:291 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 +#: frappe/public/js/print_format_builder/Preview.vue:24 +msgid "Refresh" +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:177 +msgid "Refresh All" +msgstr "" + +#. Label of the refresh_google_sheet (Button) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Refresh Google Sheet" +msgstr "" + +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + +#. Label of the refresh_token (Password) field in DocType 'Google Calendar' +#. Label of the refresh_token (Password) field in DocType 'Google Contacts' +#. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' +#. Label of the refresh_token (Password) field in DocType 'Token Cache' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Refresh Token" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:536 +msgctxt "Document count in list view" +msgid "Refreshing" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.js:57 +#: frappe/core/doctype/user/user.js:362 +#: frappe/desk/page/setup_wizard/setup_wizard.js:211 +msgid "Refreshing..." +msgstr "" + +#: frappe/core/doctype/user/user.py:1036 +msgid "Registered but disabled" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/translation/translation.json +msgid "Rejected" +msgstr "" + +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:30 +msgid "Relay Server URL missing" +msgstr "" + +#. Label of the section_break_qgjr (Section Break) field in DocType 'Push +#. Notification Settings' +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +msgid "Relay Settings" +msgstr "" + +#. Group in Package's connections +#: frappe/core/doctype/package/package.json +msgid "Release" +msgstr "" + +#. Label of the release_notes (Markdown Editor) field in DocType 'Package +#. Release' +#: frappe/core/doctype/package_release/package_release.json +msgid "Release Notes" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:48 +#: frappe/core/doctype/communication/communication.js:159 +msgid "Relink" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:138 +msgid "Relink Communication" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Relinked" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/custom/doctype/customize_form/customize_form.js:120 frappe/hooks.py +#: frappe/public/js/frappe/form/toolbar.js:447 +msgid "Reload" +msgstr "" + +#: frappe/public/js/frappe/form/controls/attach.js:16 +msgid "Reload File" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:249 +msgid "Reload List" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:100 +msgid "Reload Report" +msgstr "" + +#. Label of the remember_last_selected_value (Check) field in DocType +#. 'DocField' +#. Label of the remember_last_selected_value (Check) field in DocType +#. 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Remember Last Selected Value" +msgstr "" + +#. Label of the remind_at (Datetime) field in DocType 'Reminder' +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/public/js/frappe/form/reminders.js:33 +msgid "Remind At" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:479 +msgid "Remind Me" +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:13 +msgid "Remind Me In" +msgstr "" + +#. Name of a DocType +#: frappe/automation/doctype/reminder/reminder.json +msgid "Reminder" +msgstr "" + +#: frappe/automation/doctype/reminder/reminder.py:39 +msgid "Reminder cannot be created in past." +msgstr "" + +#: frappe/public/js/frappe/form/reminders.js:96 +msgid "Reminder set at {0}" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:14 +#: frappe/public/js/frappe/ui/filters/edit_filter.html:4 +#: frappe/public/js/frappe/ui/group_by/group_by.html:4 +msgid "Remove" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:8 +msgid "Remove Failed Jobs" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:493 +msgid "Remove Field" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:427 +msgid "Remove Section" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:138 +msgid "Remove all customizations?" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:286 +msgid "Remove all fields in the column" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:278 +#: frappe/public/js/frappe/utils/datatable.js:9 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:120 +msgid "Remove column" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:260 +msgid "Remove field" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:279 +msgid "Remove last column" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:130 +msgid "Remove page break" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:266 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:135 +msgid "Remove section" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:140 +msgid "Remove tab" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Permission Log' +#: frappe/core/doctype/permission_log/permission_log.json +msgid "Removed" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:137 +#: frappe/public/js/frappe/form/toolbar.js:254 +#: frappe/public/js/frappe/form/toolbar.js:258 +#: frappe/public/js/frappe/form/toolbar.js:435 +#: frappe/public/js/frappe/model/model.js:723 +#: frappe/public/js/frappe/views/treeview.js:311 +msgid "Rename" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:116 +#: frappe/custom/doctype/custom_field/custom_field.js:136 +msgid "Rename Fieldname" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:710 +msgid "Rename {0}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:699 +msgid "Renamed files and replaced code in controllers, please check!" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:17 +msgid "Render labels to the left and values to the right in this section" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:43 +#: frappe/desk/doctype/todo/todo.js:36 +msgid "Reopen" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:547 +msgid "Repeat" +msgstr "" + +#. Label of the repeat_header_footer (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Repeat Header and Footer" +msgstr "" + +#. Label of the repeat_on (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat On" +msgstr "" + +#. Label of the repeat_till (Date) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat Till" +msgstr "" + +#. Label of the repeat_on_day (Int) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Repeat on Day" +msgstr "" + +#. Label of the repeat_on_days (Table) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Repeat on Days" +msgstr "" + +#. Label of the repeat_on_last_day (Check) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Repeat on Last Day of the Month" +msgstr "" + +#. Label of the repeat_this_event (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Repeat this Event" +msgstr "" + +#: frappe/utils/password_strength.py:110 +msgid "Repeats like \"aaa\" are easy to guess" +msgstr "" + +#: frappe/utils/password_strength.py:105 +msgid "Repeats like \"abcabcabc\" are only slightly harder to guess than \"abc\"" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:151 +msgid "Repeats {0}" +msgstr "" + +#: frappe/core/doctype/role_replication/role_replication.js:7 +#: frappe/core/doctype/role_replication/role_replication.js:14 +msgid "Replicate" +msgstr "" + +#: frappe/core/doctype/role_replication/role_replication.js:8 +msgid "Replicating..." +msgstr "" + +#: frappe/core/doctype/role_replication/role_replication.js:13 +msgid "Replication completed." +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Contact' +#. Option for the 'Status' (Select) field in DocType 'Communication' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/communication/communication.json +msgid "Replied" +msgstr "" + +#. Label of the reply (Text Editor) field in DocType 'Discussion Reply' +#: frappe/core/doctype/communication/communication.js:57 +#: frappe/public/js/frappe/form/footer/form_timeline.js:563 +#: frappe/website/doctype/discussion_reply/discussion_reply.json +msgid "Reply" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:62 +msgid "Reply All" +msgstr "" + +#. Label of the report (Check) field in DocType 'Custom DocPerm' +#. Label of the report (Link) field in DocType 'Custom Role' +#. Label of the report (Check) field in DocType 'DocPerm' +#. Name of a DocType +#. Option for the 'Set Role For' (Select) field in DocType 'Role Permission for +#. Page and Report' +#. Label of the report (Link) field in DocType 'Role Permission for Page and +#. Report' +#. Label of a Link in the Build Workspace +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Select List View' (Select) field in DocType 'Form Tour' +#. Option for the 'Type' (Select) field in DocType 'Number Card' +#. Label of the background_jobs_tab (Tab Break) field in DocType 'System Health +#. Report' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace' +#. Option for the 'Link Type' (Select) field in DocType 'Workspace Link' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Label of the report (Link) field in DocType 'Auto Email Report' +#. Option for the 'Print Format For' (Select) field in DocType 'Print Format' +#. Label of the report (Link) field in DocType 'Print Format' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:8 +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format/print_format.py:104 +#: frappe/public/js/frappe/form/print_utils.js:31 +#: frappe/public/js/frappe/request.js:616 +#: frappe/public/js/frappe/utils/utils.js:923 +msgid "Report" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/list/list_view_select.js:66 +msgid "Report Builder" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/report_column/report_column.json +msgid "Report Column" +msgstr "" + +#. Label of the report_description (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Report Description" +msgstr "" + +#: frappe/core/doctype/report/report.py:151 +msgid "Report Document Error" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/report_filter/report_filter.json +msgid "Report Filter" +msgstr "" + +#. Label of the report_filters (Section Break) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Report Filters" +msgstr "" + +#. Label of the report_hide (Check) field in DocType 'DocField' +#. Label of the report_hide (Check) field in DocType 'Custom Field' +#. Label of the report_hide (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Report Hide" +msgstr "" + +#. Label of the report_information_section (Section Break) field in DocType +#. 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Report Information" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/report/report.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Report Manager" +msgstr "" + +#. Label of the report_name (Data) field in DocType 'Access Log' +#. Label of the report_name (Data) field in DocType 'Prepared Report' +#. Label of the report_name (Data) field in DocType 'Report' +#. Label of the report_name (Link) field in DocType 'Dashboard Chart' +#. Label of the report_name (Link) field in DocType 'Number Card' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:39 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/views/reports/query_report.js:1973 +msgid "Report Name" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.py:70 +msgid "Report Name, Report Field and Fucntion are required to create a number card" +msgstr "" + +#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Link' +#. Label of the report_ref_doctype (Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Report Ref DocType" +msgstr "" + +#. Label of the report_reference_doctype (Data) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Report Reference Doctype" +msgstr "" + +#. Label of the report_type (Select) field in DocType 'Report' +#. Label of the report_type (Data) field in DocType 'Onboarding Step' +#. Label of the report_type (Read Only) field in DocType 'Auto Email Report' +#: frappe/core/doctype/report/report.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Report Type" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:203 +msgid "Report View" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:26 +msgid "Report bug" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1823 +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" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 +#: frappe/desk/doctype/number_card/number_card.js:189 +msgid "Report has no numeric fields, please change the Report Name" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1021 +msgid "Report initiated, click to view status" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:110 +msgid "Report limit reached" +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.py:223 +msgid "Report timed out." +msgstr "" + +#: frappe/desk/query_report.py:651 +msgid "Report updated successfully" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1359 +msgid "Report was not saved (there were errors)" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2011 +msgid "Report with more than 10 columns looks better in Landscape mode." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 +msgid "Report {0}" +msgstr "" + +#: frappe/desk/reportview.py:365 +msgid "Report {0} deleted" +msgstr "" + +#: frappe/desk/query_report.py:54 +msgid "Report {0} is disabled" +msgstr "" + +#: frappe/desk/reportview.py:342 +msgid "Report {0} saved" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:20 +msgid "Report:" +msgstr "" + +#. Label of the prepared_report_section (Section Break) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 +msgid "Reports" +msgstr "" + +#: frappe/patches/v14_0/update_workspace2.py:50 +msgid "Reports & Masters" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:937 +msgid "Reports already in Queue" +msgstr "" + +#. Description of a DocType +#: frappe/core/doctype/user/user.json +msgid "Represents a User in the system." +msgstr "" + +#. Description of a DocType +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Represents the states allowed in one document and role assigned to change the state." +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.js:101 +msgid "Request Body" +msgstr "" + +#. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json +msgid "Request Data" +msgstr "" + +#. Label of the request_description (Data) field in DocType 'Integration +#. Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Request Description" +msgstr "" + +#. Label of the request_headers (Code) field in DocType 'Recorder' +#. Label of the request_headers (Code) field in DocType 'Integration Request' +#: frappe/core/doctype/recorder/recorder.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Request Headers" +msgstr "" + +#. Label of the request_id (Data) field in DocType 'Integration Request' +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Request ID" +msgstr "" + +#. Label of the rate_limit_count (Int) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Request Limit" +msgstr "" + +#. Label of the request_method (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request Method" +msgstr "" + +#. Label of the request_structure (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request Structure" +msgstr "" + +#: frappe/public/js/frappe/request.js:231 +msgid "Request Timed Out" +msgstr "" + +#. Label of the timeout (Int) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/public/js/frappe/request.js:244 +msgid "Request Timeout" +msgstr "" + +#. Label of the request_url (Small Text) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Request URL" +msgstr "" + +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + +#. Label of the requested_numbers (Code) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "Requested Numbers" +msgstr "" + +#. Label of the require_trusted_certificate (Select) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Require Trusted Certificate" +msgstr "" + +#. Description of the 'LDAP search path for Groups' (Data) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Requires any valid fdn path. i.e. ou=groups,dc=example,dc=com" +msgstr "" + +#. Description of the 'LDAP search path for Users' (Data) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "Requires any valid fdn path. i.e. ou=users,dc=example,dc=com" +msgstr "" + +#: frappe/core/doctype/communication/communication.js:279 +msgid "Res: {0}" +msgstr "" + +#: frappe/desk/doctype/form_tour/form_tour.js:101 +#: frappe/desk/doctype/global_search_settings/global_search_settings.js:19 +#: frappe/desk/doctype/module_onboarding/module_onboarding.js:17 +#: frappe/website/doctype/portal_settings/portal_settings.js:19 +msgid "Reset" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:136 +msgid "Reset All Customizations" +msgstr "" + +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:21 +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:37 +msgid "Reset Changes" +msgstr "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:306 +msgid "Reset Chart" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:39 +msgid "Reset Dashboard Customizations" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:228 +msgid "Reset Fields" +msgstr "" + +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 +msgid "Reset LDAP Password" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:128 +msgid "Reset Layout" +msgstr "" + +#: frappe/core/doctype/user/user.js:223 +msgid "Reset OTP Secret" +msgstr "" + +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 +#: frappe/www/me.html:48 frappe/www/update-password.html:3 +#: frappe/www/update-password.html:32 +msgid "Reset Password" +msgstr "" + +#. Label of the reset_password_key (Data) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Reset Password Key" +msgstr "" + +#. Label of the reset_password_link_expiry_duration (Duration) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Reset Password Link Expiry Duration" +msgstr "" + +#. Label of the reset_password_template (Link) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Reset Password Template" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:116 +msgid "Reset Permissions for {0}?" +msgstr "" + +#: frappe/public/js/form_builder/components/Field.vue:114 +msgid "Reset To Default" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:8 +msgid "Reset sorting" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:434 +msgid "Reset to default" +msgstr "" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:19 +msgid "Reset to defaults" +msgstr "" + +#: frappe/templates/emails/password_reset.html:3 +msgid "Reset your password" +msgstr "" + +#. Label of the resource_tab (Tab Break) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource" +msgstr "" + +#. Label of the resource_documentation (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Documentation" +msgstr "" + +#. Label of the resource_name (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Name" +msgstr "" + +#. Label of the resource_policy_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource Policy URI" +msgstr "" + +#. Label of the resource_tos_uri (Data) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Resource TOS URI" +msgstr "" + +#. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' +#. Label of the response_section (Section Break) field in DocType 'Integration +#. Request' +#. Label of the response (Code) field in DocType 'Webhook Request Log' +#: frappe/email/doctype/email_template/email_template.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Response" +msgstr "" + +#. Label of the response_type (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Response Type" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:414 +msgid "Rest of the day" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.js:11 +#: frappe/core/doctype/deleted_document/deleted_document_list.js:48 +msgid "Restore" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:509 +msgid "Restore Original Permissions" +msgstr "" + +#: frappe/website/doctype/portal_settings/portal_settings.js:20 +msgid "Restore to default settings?" +msgstr "" + +#. Label of the restored (Check) field in DocType 'Deleted Document' +#: frappe/core/doctype/deleted_document/deleted_document.json +msgid "Restored" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:74 +msgid "Restoring Deleted Document" +msgstr "" + +#. Label of the restrict_ip (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Restrict IP" +msgstr "" + +#. Label of the restrict_to_domain (Link) field in DocType 'DocType' +#. Label of the restrict_to_domain (Link) field in DocType 'Module Def' +#. Label of the restrict_to_domain (Link) field in DocType 'Page' +#. Label of the restrict_to_domain (Link) field in DocType 'Role' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/page/page.json frappe/core/doctype/role/role.json +msgid "Restrict To Domain" +msgstr "" + +#. Label of the restrict_to_domain (Link) field in DocType 'Workspace' +#. Label of the restrict_to_domain (Link) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Restrict to Domain" +msgstr "" + +#. Description of the 'Restrict IP' (Small Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:199 +msgctxt "Title of message showing restrictions in list view" +msgid "Restrictions" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:382 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:397 +msgid "Result" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:27 +msgid "Resume Sending" +msgstr "" + +#. Label of the retry (Int) field in DocType 'Email Queue' +#: frappe/core/doctype/data_import/data_import.js:110 +#: frappe/desk/page/setup_wizard/setup_wizard.js:297 +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Retry" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:47 +msgid "Retry Sending" +msgstr "" + +#: frappe/www/qrcode.html:15 +msgid "Return to the Verification screen and enter the code displayed by your authentication app" +msgstr "" + +#. Label of the reverse (Check) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "Reverse Icon Color" +msgstr "" + +#: frappe/database/schema.py:165 +msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." +msgstr "" + +#. Label of the revocation_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Revocation URI" +msgstr "" + +#: frappe/www/third_party_apps.html:47 +msgid "Revoke" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'OAuth Bearer Token' +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +msgid "Revoked" +msgstr "" + +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.js:92 +#: frappe/website/doctype/web_page/web_page.json +msgid "Rich Text" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Align' (Select) field in DocType 'Letter Head' +#. Option for the 'Text Align' (Select) field in DocType 'Web Page' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Right" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:484 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:156 +msgctxt "alignment" +msgid "Right" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Right Bottom" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "Right Center" +msgstr "" + +#. Label of the robots_txt (Code) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Robots.txt" +msgstr "" + +#. Label of the role (Link) field in DocType 'Custom DocPerm' +#. Label of the roles (Table) field in DocType 'Custom Role' +#. Label of the role (Link) field in DocType 'DocPerm' +#. Label of the role (Link) field in DocType 'Has Role' +#. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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' +#. Label of the role (Link) field in DocType 'Portal Menu Item' +#. Label of the role (Link) field in DocType 'Workflow Action Permitted Role' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/has_role/has_role.json +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type/user_type.py:110 +#: frappe/core/page/permission_manager/permission_manager.js:219 +#: frappe/core/page/permission_manager/permission_manager.js:456 +#: frappe/core/workspace/users/users.json +#: frappe/desk/doctype/onboarding_permission/onboarding_permission.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/integrations/doctype/oauth_client_role/oauth_client_role.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json +msgid "Role" +msgstr "" + +#: frappe/core/doctype/role/role.js:8 +msgid "Role 'All' will be given to all system + website users." +msgstr "" + +#: frappe/core/doctype/role/role.js:13 +msgid "Role 'Desk User' will be given to all system users." +msgstr "" + +#. Label of the role_name (Data) field in DocType 'Role' +#. Label of the role_profile (Data) field in DocType 'Role Profile' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/role_profile/role_profile.json +msgid "Role Name" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/workspace/users/users.json +msgid "Role Permission for Page and Report" +msgstr "" + +#. Label of the permissions_section (Section Break) field in DocType 'User +#. Document Type' +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/public/js/frappe/roles_editor.js:114 +msgid "Role Permissions" +msgstr "" + +#. Label of a Link in the Users Workspace +#: frappe/core/page/permission_manager/permission_manager.js:4 +#: frappe/core/workspace/users/users.json +msgid "Role Permissions Manager" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1935 +msgctxt "Button in list view menu" +msgid "Role Permissions Manager" +msgstr "" + +#. Name of a DocType +#. Label of the role_profile_name (Link) field in DocType 'User' +#. Label of the role_profile (Link) field in DocType 'User Role Profile' +#. Label of a Link in the Users Workspace +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_role_profile/user_role_profile.json +#: frappe/core/workspace/users/users.json +msgid "Role Profile" +msgstr "" + +#. Label of the role_profiles (Table MultiSelect) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Role Profiles" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/role_replication/role_replication.json +msgid "Role Replication" +msgstr "" + +#. Label of the role_and_level (Section Break) field in DocType 'Custom +#. DocPerm' +#. Label of the role_and_level (Section Break) field in DocType 'DocPerm' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +msgid "Role and Level" +msgstr "" + +#: frappe/core/doctype/user/user.py:365 +msgid "Role has been set as per the user type {0}" +msgstr "" + +#. Label of the roles (Table) field in DocType 'Page' +#. Label of the roles (Table) field in DocType 'Report' +#. Label of the roles (Table) field in DocType 'Role Permission for Page and +#. Report' +#. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' +#. Label of the roles_section (Section Break) field in DocType 'Custom HTML +#. Block' +#. Label of the roles (Table) field in DocType 'Custom HTML Block' +#. Label of the roles (Table) field in DocType 'Dashboard Chart' +#. Label of the roles (Table) field in DocType 'Workspace' +#. Label of the roles_tab (Tab Break) field in DocType 'Workspace' +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/core/page/permission_manager/permission_manager.js:66 +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/workspace/workspace.json +msgid "Roles" +msgstr "" + +#. Label of the roles_permissions_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Roles & Permissions" +msgstr "" + +#. Label of the roles (Table) field in DocType 'Role Profile' +#. Label of the roles (Table) field in DocType 'User' +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/user/user.json +msgid "Roles Assigned" +msgstr "" + +#. Label of the roles_html (HTML) field in DocType 'Role Profile' +#. Label of the roles_html (HTML) field in DocType 'User' +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/user/user.json +msgid "Roles HTML" +msgstr "" + +#. Label of the roles_html (HTML) field in DocType 'Role Permission for Page +#. and Report' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgid "Roles Html" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:7 +msgid "Roles can be set for users from their User page." +msgstr "" + +#: frappe/utils/nestedset.py:293 +msgid "Root {0} cannot be deleted" +msgstr "" + +#. Option for the 'Rule' (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Round Robin" +msgstr "" + +#. Label of the rounding_method (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Rounding Method" +msgstr "" + +#. Label of the route (Data) field in DocType 'DocType' +#. Option for the 'Action Type' (Select) field in DocType 'DocType Action' +#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' +#. Label of the route (Data) field in DocType 'Navbar Item' +#. Label of the route (Data) field in DocType 'DocType Layout' +#. Label of the route (Data) field in DocType 'Route History' +#. Label of the route (Data) field in DocType 'Help Article' +#. Label of the route (Data) field in DocType 'Help Category' +#. Label of the route (Data) field in DocType 'Portal Menu Item' +#. Label of the route (Data) field in DocType 'Web Form' +#. Label of the route (Data) field in DocType 'Web Page' +#. Label of the route (Data) field in DocType 'Website Sidebar Item' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype_action/doctype_action.json +#: frappe/core/doctype/navbar_item/navbar_item.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/desk/doctype/route_history/route_history.json +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Route" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/route_history/route_history.json +msgid "Route History" +msgstr "" + +#. Label of the route_redirects (Table) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Route Redirects" +msgstr "" + +#. Description of the 'Home Page' (Data) field in DocType 'Role' +#: frappe/core/doctype/role/role.json +msgid "Route: Example \"/app\"" +msgstr "" + +#: frappe/model/base_document.py:909 frappe/model/document.py:779 +msgid "Row" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:74 +msgid "Row #" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 +msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" +msgstr "" + +#: frappe/model/base_document.py:1039 +msgid "Row #{0}:" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:492 +msgid "Row #{}: Fieldname is required" +msgstr "" + +#. Label of the row_format (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Row Format" +msgstr "" + +#. Label of the row_indexes (Code) field in DocType 'Data Import Log' +#: frappe/core/doctype/data_import_log/data_import_log.json +msgid "Row Indexes" +msgstr "" + +#. Label of the row_name (Data) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Row Name" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:483 +msgid "Row Number" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:69 +msgid "Row Values Changed" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:367 +msgid "Row {0}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:357 +msgid "Row {0}: Not allowed to disable Mandatory for standard fields" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:346 +msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" +msgstr "" + +#. Label of the rows_added_section (Section Break) field in DocType 'Audit +#. Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/version/version_view.html:33 +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 +msgid "Rows Removed" +msgstr "" + +#. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Rows Threshold for Grid Search" +msgstr "" + +#. Label of the rule (Select) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Rule" +msgstr "" + +#. Label of the section_break_3 (Section Break) field in DocType 'Document +#. Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Rule Conditions" +msgstr "" + +#: frappe/permissions.py:675 +msgid "Rule for this doctype, role, permlevel and if-owner combination already exists." +msgstr "" + +#. Group in DocType's connections +#: frappe/core/doctype/doctype/doctype.json +msgid "Rules" +msgstr "" + +#. Description of the 'Transitions' (Table) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Rules defining transition of state in the workflow." +msgstr "" + +#. Description of the 'Transition Rules' (Section Break) field in DocType +#. 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Rules for how states are transitions, like next state and which role is allowed to change state etc." +msgstr "" + +#. Description of the 'Priority' (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Rules with higher priority number will be applied first." +msgstr "" + +#. Label of the dormant_days (Int) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Run Jobs only Daily if Inactive For (Days)" +msgstr "" + +#. Description of the 'Enable Scheduled Jobs' (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Run scheduled jobs only if checked" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 +msgid "Runtime in Minutes" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:57 +msgid "Runtime in Seconds" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#. Option for the 'Two Factor Authentication method' (Select) field in DocType +#. 'System Settings' +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/email/doctype/notification/notification.json +msgid "SMS" +msgstr "" + +#. Label of the sms_gateway_url (Small Text) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "SMS Gateway URL" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/sms_log/sms_log.json +msgid "SMS Log" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/sms_parameter/sms_parameter.json +msgid "SMS Parameter" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/core/doctype/sms_settings/sms_settings.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "SMS Settings" +msgstr "" + +#: frappe/core/doctype/sms_settings/sms_settings.py:114 +msgid "SMS sent successfully" +msgstr "" + +#: frappe/templates/includes/login/login.js:369 +msgid "SMS was not sent. Please contact Administrator." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:212 +msgid "SMTP Server is required" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "SQL" +msgstr "" + +#. Description of the 'Condition' (Small Text) field in DocType 'Bulk Update' +#: frappe/desk/doctype/bulk_update/bulk_update.json +msgid "SQL Conditions. Example: status=\"Open\"" +msgstr "" + +#. Label of the sql_explain_html (HTML) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder/recorder.js:85 +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "SQL Explain" +msgstr "" + +#. Label of the sql_output (HTML) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "SQL Output" +msgstr "" + +#. Label of the sql_queries (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "SQL Queries" +msgstr "" + +#. Label of the ssl_tls_mode (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "SSL/TLS Mode" +msgstr "" + +#: frappe/public/js/frappe/color_picker/color_picker.js:20 +msgid "SWATCHES" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Sales Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/contact/contact.json +msgid "Sales Master Manager" +msgstr "" + +#. Name of a role +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/geo/doctype/currency/currency.json +msgid "Sales User" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Salesforce" +msgstr "" + +#. Label of the salutation (Link) field in DocType 'Contact' +#. Name of a DocType +#. Label of the salutation (Data) field in DocType 'Salutation' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/salutation/salutation.json +msgid "Salutation" +msgstr "" + +#: frappe/integrations/doctype/webhook/webhook.py:113 +msgid "Same Field is entered more than once" +msgstr "" + +#. Label of the sample (HTML) field in DocType 'Client Script' +#: frappe/custom/doctype/client_script/client_script.json +msgid "Sample" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the saturday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Saturday" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/core/doctype/data_import/data_import.js:113 +#: frappe/email/doctype/notification/notification.json +#: frappe/printing/page/print/print.js:898 +#: 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/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 +#: frappe/public/js/frappe/utils/common.js:443 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 +#: frappe/public/js/frappe/views/workspace/workspace.js:335 +#: frappe/public/js/frappe/widgets/base_widget.js:142 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:120 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:15 +#: frappe/public/js/workflow_builder/workflow_builder.bundle.js:33 +msgid "Save" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:143 +msgid "Save Anyway" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 +msgid "Save As" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:63 +msgid "Save Customizations" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1968 +msgid "Save Report" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 +msgid "Save filters" +msgstr "" + +#. Label of the save_on_complete (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Save on Completion" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:295 +msgid "Save the document." +msgstr "" + +#: frappe/model/rename_doc.py:106 +#: frappe/printing/page/print_format_builder/print_format_builder.js:858 +#: frappe/public/js/frappe/form/toolbar.js:286 +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:917 +#: frappe/public/js/frappe/views/workspace/workspace.js:684 +msgid "Saved" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.html:88 +msgid "Saved Filters" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:41 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:47 +#: frappe/public/js/frappe/views/workspace/workspace.js:348 +msgid "Saving" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:9 +msgctxt "Freeze message while saving a document" +msgid "Saving" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:411 +msgid "Saving Customization..." +msgstr "" + +#: frappe/desk/doctype/module_onboarding/module_onboarding.js:8 +msgid "Saving this will export this document as well as the steps linked here as json." +msgstr "" + +#: frappe/public/js/form_builder/store.js:233 +#: frappe/public/js/print_format_builder/store.js:36 +#: frappe/public/js/workflow_builder/store.js:73 +msgid "Saving..." +msgstr "" + +#: frappe/public/js/frappe/scanner/index.js:72 +msgid "Scan QRCode" +msgstr "" + +#: frappe/www/qrcode.html:14 +msgid "Scan the QR Code and enter the resulting code displayed." +msgstr "" + +#. Label of the section_break_10 (Tab Break) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Schedule" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:97 +msgid "Schedule Send At" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Scheduled Job Log' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +msgid "Scheduled" +msgstr "" + +#. Label of the scheduled_against (Link) field in DocType 'Scheduler Event' +#: frappe/core/doctype/scheduler_event/scheduler_event.json +msgid "Scheduled Against" +msgstr "" + +#. Label of the scheduled_job_type (Link) field in DocType 'Scheduled Job Log' +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +msgid "Scheduled Job" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +msgid "Scheduled Job Log" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Build Workspace +#. Label of the scheduled_job_type (Link) field in DocType 'System Health +#. Report Failing Jobs' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/workspace/build/build.json +#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json +msgid "Scheduled Job Type" +msgstr "" + +#. Label of a Link in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "Scheduled Jobs Logs" +msgstr "" + +#: frappe/core/doctype/server_script/server_script.py:150 +msgid "Scheduled execution for script {0} has updated" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.js:26 +msgid "Scheduled to send" +msgstr "" + +#. Label of the scheduler_section (Section Break) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Scheduler" +msgstr "" + +#. Label of the scheduler_event (Link) field in DocType 'Scheduled Job Type' +#. Name of a DocType +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/scheduler_event/scheduler_event.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Scheduler Event" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.py:107 +msgid "Scheduler Inactive" +msgstr "" + +#. Label of the scheduler_status (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Scheduler Status" +msgstr "" + +#: frappe/utils/scheduler.py:247 +msgid "Scheduler can not be re-enabled when maintenance mode is active." +msgstr "" + +#: frappe/core/doctype/data_import/data_import.py:107 +msgid "Scheduler is inactive. Cannot import data." +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:19 +msgid "Scheduler: Active" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job_list.js:21 +msgid "Scheduler: Inactive" +msgstr "" + +#. Label of the scope (Data) field in DocType 'OAuth Scope' +#: frappe/integrations/doctype/oauth_scope/oauth_scope.json +msgid "Scope" +msgstr "" + +#. Label of the sb_scope_section (Section Break) field in DocType 'Connected +#. App' +#. Label of the scopes (Table) field in DocType 'Connected App' +#. Label of the scopes (Text) field in DocType 'OAuth Authorization Code' +#. Label of the scopes (Text) field in DocType 'OAuth Bearer Token' +#. Label of the scopes (Text) field in DocType 'OAuth Client' +#. Label of the scopes (Table) field in DocType 'Token Cache' +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Scopes" +msgstr "" + +#. Label of the scopes_supported (Small Text) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Scopes Supported" +msgstr "" + +#. Label of the report_script (Code) field in DocType 'Report' +#. Label of the script (Code) field in DocType 'Server Script' +#. Label of the script (Code) field in DocType 'Client Script' +#. Label of the script (Code) field in DocType 'Console Log' +#. Label of the custom_javascript (Section Break) field in DocType 'Web Page' +#. Label of the custom_js_section (Tab Break) field in DocType 'Website Theme' +#: frappe/core/doctype/report/report.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/desk/doctype/console_log/console_log.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Script" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/server_script/server_script.json +msgid "Script Manager" +msgstr "" + +#. Option for the 'Report Type' (Select) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Script Report" +msgstr "" + +#. Label of the script_type (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Script Type" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/website_script/website_script.json +msgid "Script to attach to all web pages." +msgstr "" + +#. Label of a Card Break in the Build Workspace +#. Label of the scripting_tab (Tab Break) field in DocType 'Web Page' +#: frappe/core/workspace/build/build.json +#: frappe/website/doctype/web_page/web_page.json +msgid "Scripting" +msgstr "" + +#. Label of the section_break_6 (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Scripting / Style" +msgstr "" + +#. Label of the scripts_section (Section Break) field in DocType 'Letter Head' +#: frappe/printing/doctype/letter_head/letter_head.json +msgid "Scripts" +msgstr "" + +#. Label of the search_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/public/js/frappe/form/link_selector.js:46 +#: frappe/public/js/frappe/list/list_sidebar.html:69 +#: frappe/public/js/frappe/ui/address_autocomplete/autocomplete_dialog.js:20 +#: frappe/public/js/frappe/ui/toolbar/search.js:49 +#: frappe/public/js/frappe/ui/toolbar/search.js:68 +#: frappe/templates/discussions/search.html:2 +#: frappe/templates/includes/search_template.html:26 +msgid "Search" +msgstr "" + +#. Label of the search_bar (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Search Bar" +msgstr "" + +#. Label of the search_fields (Data) field in DocType 'DocType' +#. Label of the search_fields (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Search Fields" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:186 +msgid "Search Help" +msgstr "" + +#. Label of the allowed_in_global_search (Table) field in DocType 'Global +#. Search Settings' +#: frappe/desk/doctype/global_search_settings/global_search_settings.json +msgid "Search Priorities" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:132 +msgid "Search Results" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:13 +msgid "Search by filename or extension" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1468 +msgid "Search field {0} is not valid" +msgstr "" + +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:87 +msgid "Search fields" +msgstr "" + +#: frappe/public/js/form_builder/components/AddFieldButton.vue:19 +msgid "Search fieldtypes..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:50 +#: frappe/public/js/frappe/ui/toolbar/search.js:69 +msgid "Search for anything" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:300 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:306 +msgid "Search for {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:166 +msgid "Search in a document type" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:29 +msgid "Search or type a command ({0})" +msgstr "" + +#: frappe/public/js/form_builder/components/SearchBox.vue:8 +msgid "Search properties..." +msgstr "" + +#: frappe/templates/includes/search_box.html:8 +msgid "Search results for" +msgstr "" + +#: frappe/templates/includes/navbar/navbar_search.html:6 +#: frappe/templates/includes/search_box.html:2 +#: frappe/templates/includes/search_template.html:23 +msgid "Search..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search.js:210 +msgid "Searching ..." +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:35 +msgctxt "Duration" +msgid "Seconds" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Web Template' +#: frappe/public/js/form_builder/components/Section.vue:263 +#: frappe/website/doctype/web_template/web_template.json +msgid "Section" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Section Break" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:421 +msgid "Section Heading" +msgstr "" + +#. Label of the section_id (Data) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Section ID" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:28 +#: frappe/public/js/print_format_builder/PrintFormatSection.vue:8 +msgid "Section Title" +msgstr "" + +#: frappe/public/js/form_builder/components/Section.vue:217 +#: frappe/public/js/form_builder/components/Section.vue:240 +msgid "Section must have at least one column" +msgstr "" + +#. Label of the sb3 (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Security Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:309 +msgid "See all Activity" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:863 +msgid "See all past reports." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1235 +#: frappe/website/doctype/contact_us_settings/contact_us_settings.js:4 +msgid "See on Website" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:160 +msgctxt "Button in web form" +msgid "See previous responses" +msgstr "" + +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:49 +msgid "See the document at {0}" +msgstr "" + +#. Label of the seen (Check) field in DocType 'Comment' +#. Label of the seen (Check) field in DocType 'Communication' +#. Label of the seen (Check) field in DocType 'Error Log' +#. Label of the seen (Check) field in DocType 'Notification Settings' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/error_log/error_log_list.js:5 +#: frappe/desk/doctype/notification_settings/notification_settings.json +msgid "Seen" +msgstr "" + +#. Label of the seen_by_section (Section Break) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Seen By" +msgstr "" + +#. Label of the seen_by (Table) field in DocType 'Note' +#: frappe/desk/doctype/note/note.json +msgid "Seen By Table" +msgstr "" + +#. Label of the select (Check) field in DocType 'Custom DocPerm' +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the select (Check) field in DocType 'DocPerm' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/printing/page/print/print.js:642 +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Select" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:149 +#: frappe/public/js/frappe/form/controls/multicheck.js:166 +#: frappe/public/js/frappe/form/grid_row.js:498 +msgid "Select All" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:177 +#: frappe/public/js/frappe/views/communication.js:601 +#: frappe/public/js/frappe/views/interaction.js:93 +#: frappe/public/js/frappe/views/interaction.js:155 +msgid "Select Attachments" +msgstr "" + +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 +msgid "Select Child Table" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:388 +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 +msgid "Select Columns" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:399 +msgid "Select Country" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:415 +msgid "Select Currency" +msgstr "" + +#. Label of the dashboard_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/public/js/frappe/utils/dashboard_utils.js:240 +msgid "Select Dashboard" +msgstr "" + +#. Option for the 'Timespan' (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Select Date Range" +msgstr "" + +#. Label of the doc_type (Link) field in DocType 'Web Form' +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:28 +#: frappe/public/js/frappe/doctype/index.js:171 +#: frappe/website/doctype/web_form/web_form.json +msgid "Select DocType" +msgstr "" + +#. Label of the reference_doctype (Link) field in DocType 'Data Export' +#: frappe/core/doctype/data_export/data_export.json +msgid "Select Doctype" +msgstr "" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:50 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:50 +msgid "Select Document Type" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:179 +msgid "Select Document Type or Role to start." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:34 +msgid "Select Document Types to set which User Permissions are used to limit access." +msgstr "" + +#: frappe/public/js/form_builder/components/controls/FetchFromControl.vue:33 +#: frappe/public/js/frappe/doctype/index.js:200 +#: frappe/public/js/frappe/form/toolbar.js:838 +msgid "Select Field" +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.html:35 +#: frappe/public/js/frappe/ui/group_by/group_by.js:141 +msgid "Select Field..." +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:490 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 +msgid "Select Fields" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:147 +msgid "Select Fields To Insert" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:148 +msgid "Select Fields To Update" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:21 +msgid "Select Filters" +msgstr "" + +#: frappe/desk/doctype/event/event.py:107 +msgid "Select Google Calendar to which event should be synced." +msgstr "" + +#: frappe/contacts/doctype/contact/contact.py:77 +msgid "Select Google Contacts to which contact should be synced." +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.html:10 +msgid "Select Group By..." +msgstr "" + +#: frappe/public/js/frappe/list/list_view_select.js:185 +msgid "Select Kanban" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:391 +msgid "Select Language" +msgstr "" + +#. Label of the list_name (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select List View" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:158 +msgid "Select Mandatory" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:280 +msgid "Select Module" +msgstr "" + +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 +msgid "Select Network Printer" +msgstr "" + +#. Label of the page_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select Page" +msgstr "" + +#: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:68 +#: frappe/public/js/frappe/views/communication.js:160 +msgid "Select Print Format" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:82 +msgid "Select Print Format to Edit" +msgstr "" + +#. Label of the report_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select Report" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:631 +msgid "Select Table Columns for {0}" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:408 +msgid "Select Time Zone" +msgstr "" + +#. Label of the transaction_type (Autocomplete) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Select Transaction" +msgstr "" + +#: frappe/workflow/page/workflow_builder/workflow_builder.js:68 +msgid "Select Workflow" +msgstr "" + +#. Label of the workspace_name (Link) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Select Workspace" +msgstr "" + +#. Label of the select_workspaces_section (Section Break) field in DocType +#. 'Workspace Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Select Workspaces" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.js:23 +msgid "Select a Brand Image first." +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:108 +msgid "Select a DocType to make a new format" +msgstr "" + +#: frappe/public/js/form_builder/components/Sidebar.vue:56 +msgid "Select a field to edit its properties." +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:358 +msgid "Select a group {0} first." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1956 +msgid "Select a valid Sender Field for creating documents from Email" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1940 +msgid "Select a valid Subject field for creating documents from Email" +msgstr "" + +#: frappe/public/js/frappe/form/form_tour.js:321 +msgid "Select an Image" +msgstr "" + +#: frappe/www/apps.html:10 +msgid "Select an app to continue" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_start.html:2 +msgid "Select an existing format to edit or start a new format." +msgstr "" + +#. Description of the 'Brand Image' (Attach Image) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Select an image of approx width 150px with a transparent background for best results." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:36 +msgid "Select atleast 1 record for printing" +msgstr "" + +#: frappe/core/doctype/success_action/success_action.js:18 +msgid "Select atleast 2 actions" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1447 +msgctxt "Description of a list view shortcut" +msgid "Select list item" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 +msgctxt "Description of a list view shortcut" +msgid "Select multiple list items" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:167 +msgid "Select or drag across time slots to create a new event." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:239 +msgid "Select records for assignment" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:260 +msgid "Select records for removing assignment" +msgstr "" + +#. Description of the 'Insert After' (Select) field in DocType 'Custom Field' +#: frappe/custom/doctype/custom_field/custom_field.json +msgid "Select the label after which you want to insert new field." +msgstr "" + +#: frappe/public/js/frappe/utils/diffview.js:102 +msgid "Select two versions to view the diff." +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:24 +#: frappe/public/js/frappe/form/multi_select_dialog.js:80 +#: frappe/public/js/frappe/form/multi_select_dialog.js:282 +#: frappe/public/js/frappe/list/list_view_select.js:153 +#: frappe/public/js/print_format_builder/Preview.vue:90 +msgid "Select {0}" +msgstr "" + +#: frappe/model/workflow.py:120 +msgid "Self approval is not allowed" +msgstr "" + +#: frappe/www/contact.html:41 +msgid "Send" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:26 +msgctxt "Send Email" +msgid "Send" +msgstr "" + +#. Description of the 'Minutes Offset' (Int) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send at the earliest this number of minutes before or after the reference datetime. The actual sending may be delayed by up to 5 minutes due to the scheduler's trigger cadence." +msgstr "" + +#. Label of the send_after (Datetime) field in DocType 'Communication' +#. Label of the send_after (Datetime) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Send After" +msgstr "" + +#. Label of the event (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send Alert On" +msgstr "" + +#. Label of the send_email_alert (Check) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Send Email Alert" +msgstr "" + +#. Label of the send_email (Check) field in DocType 'Workflow Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Send Email On State" +msgstr "" + +#. Description of the 'Send Print as PDF' (Check) field in DocType 'Print +#. Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Send Email Print Attachments as PDF (Recommended)" +msgstr "" + +#. Label of the send_email_to_creator (Check) field in DocType 'Workflow +#. Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Send Email To Creator" +msgstr "" + +#. Label of the send_me_a_copy (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Send Me A Copy of Outgoing Emails" +msgstr "" + +#. Label of the send_notification_to (Small Text) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Send Notification to" +msgstr "" + +#. Label of the document_follow_notify (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Send Notifications For Documents Followed By Me" +msgstr "" + +#. Label of the thread_notify (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Send Notifications For Email Threads" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.js:21 +msgid "Send Now" +msgstr "" + +#. Label of the send_print_as_pdf (Check) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Send Print as PDF" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:150 +msgid "Send Read Receipt" +msgstr "" + +#. Label of the send_system_notification (Check) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send System Notification" +msgstr "" + +#. Label of the send_to_all_assignees (Check) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send To All Assignees" +msgstr "" + +#. Label of the send_welcome_email (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Send Welcome Email" +msgstr "" + +#. Description of the 'Reference Date' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send alert if date matches this field's value" +msgstr "" + +#. Description of the 'Reference Datetime' (Select) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send alert if datetime matches this field's value" +msgstr "" + +#. Description of the 'Value Changed' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send alert if this field's value changes" +msgstr "" + +#. Label of the send_reminder (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Send an email reminder in the morning" +msgstr "" + +#. Description of the 'Days Before or After' (Int) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Send days before or after the reference date" +msgstr "" + +#. Description of the 'Send Email On State' (Check) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Send email when document transitions to the state." +msgstr "" + +#. Description of the 'Forward To Email Address' (Data) field in DocType +#. 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Send enquiries to this email address" +msgstr "" + +#: frappe/templates/includes/login/login.js:72 frappe/www/login.html:230 +msgid "Send login link" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:144 +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 "" + +#. Label of the send_unsubscribe_message (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Send unsubscribe message in email" +msgstr "" + +#. Label of the sender (Data) field in DocType 'Event' +#. Label of the sender (Data) field in DocType 'ToDo' +#. Label of the sender (Link) field in DocType 'Auto Email Report' +#. Label of the sender (Data) field in DocType 'Email Queue' +#. Label of the sender (Link) field in DocType 'Notification' +#: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/notification/notification.json +msgid "Sender" +msgstr "" + +#. Label of the sender_email (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Sender Email" +msgstr "" + +#. Label of the sender_field (Data) field in DocType 'DocType' +#. Label of the sender_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Sender Email Field" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1959 +msgid "Sender Field should have Email in options" +msgstr "" + +#. Label of the sender_name (Data) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "Sender Name" +msgstr "" + +#. Label of the sender_name_field (Data) field in DocType 'DocType' +#. Label of the sender_name_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Sender Name Field" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Sendgrid" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Sending" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Sent or Received' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'Email Queue' +#. Option for the 'Status' (Select) field in DocType 'Email Queue Recipient' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +msgid "Sent" +msgstr "" + +#. Label of the sent_folder_name (Data) field in DocType 'Email Account' +#. Label of the sent_folder_name (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Sent Folder Name" +msgstr "" + +#. Label of the sent_on (Date) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "Sent On" +msgstr "" + +#. Label of the read_receipt (Check) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Sent Read Receipt" +msgstr "" + +#. Label of the sent_to (Code) field in DocType 'SMS Log' +#: frappe/core/doctype/sms_log/sms_log.json +msgid "Sent To" +msgstr "" + +#. Label of the sent_or_received (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Sent or Received" +msgstr "" + +#. Option for the 'Event Category' (Select) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Sent/Received Email" +msgstr "" + +#. Option for the 'Item Type' (Select) field in DocType 'Navbar Item' +#: frappe/core/doctype/navbar_item/navbar_item.json +msgid "Separator" +msgstr "" + +#. Label of the sequence_id (Float) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "Sequence Id" +msgstr "" + +#. Label of the naming_series_options (Text) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Series List for this Transaction" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:115 +msgid "Series Updated for {}" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:223 +msgid "Series counter for {} updated to {} successfully" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1110 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 +msgid "Series {0} already used in {1}" +msgstr "" + +#. Option for the 'Action Type' (Select) field in DocType 'DocType Action' +#: frappe/core/doctype/doctype_action/doctype_action.json +msgid "Server Action" +msgstr "" + +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 +#: frappe/www/error.html:36 frappe/www/error.py:15 +msgid "Server Error" +msgstr "" + +#. Label of the server_ip (Data) field in DocType 'Network Printer Settings' +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +msgid "Server IP" +msgstr "" + +#. Label of the server_script (Link) field in DocType 'Scheduled Job Type' +#. Name of a DocType +#. Label of a Link in the Build Workspace +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/workspace/build/build.json +msgid "Server Script" +msgstr "" + +#: frappe/utils/safe_exec.py:98 +msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." +msgstr "" + +#: frappe/core/doctype/server_script/server_script.js:39 +msgid "Server Scripts feature is not available on this site." +msgstr "" + +#: frappe/public/js/frappe/request.js:254 +msgid "Server failed to process this request because of a concurrent conflicting request. Please try again." +msgstr "" + +#: frappe/public/js/frappe/request.js:246 +msgid "Server was too busy to process this request. Please try again." +msgstr "" + +#. Label of the service (Select) field in DocType 'Email Account' +#. Label of the integration_request_service (Data) field in DocType +#. 'Integration Request' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/integrations/doctype/integration_request/integration_request.json +msgid "Service" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/session_default/session_default.json +msgid "Session Default" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/session_default_settings/session_default_settings.json +msgid "Session Default Settings" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#. Label of the session_defaults (Table) field in DocType 'Session Default +#. Settings' +#: frappe/core/doctype/session_default_settings/session_default_settings.json +#: frappe/hooks.py frappe/public/js/frappe/ui/toolbar/toolbar.js:363 +msgid "Session Defaults" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:348 +msgid "Session Defaults Saved" +msgstr "" + +#: frappe/app.py:376 +msgid "Session Expired" +msgstr "" + +#. Label of the session_expiry (Data) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Session Expiry (idle timeout)" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:123 +msgid "Session Expiry must be in format {0}" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 +#: frappe/public/js/frappe/widgets/chart_widget.js:447 +msgid "Set" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:607 +msgctxt "Field value is set" +msgid "Set" +msgstr "" + +#. Label of the set_banner_from_image (Button) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Set Banner from Image" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:200 +msgid "Set Chart" +msgstr "" + +#. Description of the 'Chart Options' (Code) field in DocType 'Dashboard' +#: frappe/desk/doctype/dashboard/dashboard.json +msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\"#d1d8dd\", \"#ff5858\"])" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 +#: frappe/desk/doctype/number_card/number_card.js:384 +msgid "Set Dynamic Filters" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 +#: frappe/desk/doctype/number_card/number_card.js:292 +#: frappe/public/js/form_builder/components/Field.vue:80 +#: frappe/website/doctype/web_form/web_form.js:269 +msgid "Set Filters" +msgstr "" + +#: frappe/public/js/frappe/widgets/chart_widget.js:436 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:105 +msgid "Set Filters for {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2121 +msgid "Set Level" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:92 +msgid "Set Limit" +msgstr "" + +#. Description of the 'Setup Series for transactions' (Section Break) field in +#. DocType 'Document Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Set Naming Series options on your transactions." +msgstr "" + +#. Label of the new_password (Password) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Set New Password" +msgstr "" + +#: frappe/desk/page/backups/backups.js:8 +msgid "Set Number of Backups" +msgstr "" + +#: frappe/www/update-password.html:32 +msgid "Set Password" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:112 +msgid "Set Permissions" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:471 +msgid "Set Properties" +msgstr "" + +#. Label of the property_section (Section Break) field in DocType +#. 'Notification' +#. Label of the set_property_after_alert (Select) field in DocType +#. 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Set Property After Alert" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:207 +#: frappe/public/js/frappe/form/link_selector.js:208 +msgid "Set Quantity" +msgstr "" + +#. Label of the set_role_for (Select) field in DocType 'Role Permission for +#. Page and Report' +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +msgid "Set Role For" +msgstr "" + +#: frappe/core/doctype/user/user.js:124 +#: frappe/core/page/permission_manager/permission_manager.js:72 +msgid "Set User Permissions" +msgstr "" + +#. Label of the value (Small Text) field in DocType 'Property Setter' +#: frappe/custom/doctype/property_setter/property_setter.json +msgid "Set Value" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 +msgid "Set all private" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +msgid "Set all public" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.js:50 +msgid "Set as Default" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.js:33 +msgid "Set as Default Theme" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#. Option for the 'Naming Rule' (Select) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Set by user" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:162 +msgid "Set dynamic filter values in JavaScript for the required fields here." +msgstr "" + +#. Description of the 'Precision' (Select) field in DocType 'Custom Field' +#. Description of the 'Precision' (Select) field in DocType 'Customize Form +#. Field' +#. Description of the 'Precision' (Select) field in DocType 'Web Form Field' +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Set non-standard precision for a Float or Currency field" +msgstr "" + +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + +#. Label of the set_only_once (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set only once" +msgstr "" + +#. Description of the 'Max attachment size' (Int) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Set size in MB" +msgstr "" + +#. Description of the 'Filters Configuration' (Code) field in DocType 'Number +#. Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Set the filters here. For example:\n" +"
    \n"
    +"[{\n"
    +"\tfieldname: \"company\",\n"
    +"\tlabel: __(\"Company\"),\n"
    +"\tfieldtype: \"Link\",\n"
    +"\toptions: \"Company\",\n"
    +"\tdefault: frappe.defaults.get_user_default(\"Company\"),\n"
    +"\treqd: 1\n"
    +"},\n"
    +"{\n"
    +"\tfieldname: \"account\",\n"
    +"\tlabel: __(\"Account\"),\n"
    +"\tfieldtype: \"Link\",\n"
    +"\toptions: \"Account\",\n"
    +"\treqd: 1\n"
    +"}]\n"
    +"
    " +msgstr "" + +#. Description of the 'Method' (Data) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Set the path to a whitelisted function that will return the data for the number card in the format:\n\n" +"
    \n"
    +"{\n"
    +"\t\"value\": value,\n"
    +"\t\"fieldtype\": \"Currency\",\n"
    +"\t\"route_options\": {\"from_date\": \"2023-05-23\"},\n"
    +"\t\"route\": [\"query-report\", \"Permitted Documents For User\"]\n"
    +"}
    " +msgstr "" + +#: frappe/contacts/doctype/address_template/address_template.py:33 +msgid "Setting this Address Template as default as there is no other default" +msgstr "" + +#: frappe/desk/doctype/global_search_settings/global_search_settings.py:86 +msgid "Setting up Global Search documents." +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:285 +msgid "Setting up your system" +msgstr "" + +#. Label of the settings_tab (Tab Break) field in DocType 'DocType' +#. Label of the settings_tab (Tab Break) field in DocType 'User' +#. Group in User's connections +#. Label of a Card Break in the Integrations Workspace +#. Label of the settings_tab (Tab Break) field in DocType 'Web Form' +#. Label of the settings (Tab Break) field in DocType 'Web Page' +#. Label of a Card Break in the Website Workspace +#: frappe/core/doctype/doctype/doctype.json frappe/core/doctype/user/user.json +#: frappe/integrations/workspace/integrations/integrations.json +#: frappe/public/js/frappe/form/templates/print_layout.html:25 +#: frappe/public/js/frappe/ui/apps_switcher.js:137 +#: frappe/public/js/frappe/ui/toolbar/toolbar.js:321 +#: frappe/public/js/frappe/views/workspace/workspace.js:362 +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/workspace/website/website.json frappe/www/me.html:20 +msgid "Settings" +msgstr "" + +#. Label of the settings_dropdown (Table) field in DocType 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "Settings Dropdown" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Settings for Contact Us Page" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Settings for the About Us Page" +msgstr "" + +#. 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:576 +msgid "Setup" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:27 +msgid "Setup > Customize Form" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:8 +msgid "Setup > User" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:33 +msgid "Setup > User Permissions" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 +msgid "Setup Auto Email" +msgstr "" + +#. Label of the setup_complete (Check) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:211 +msgid "Setup Complete" +msgstr "" + +#. Label of the setup_series (Section Break) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Setup Series for transactions" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:236 +msgid "Setup failed" +msgstr "" + +#. Label of the share (Check) field in DocType 'Custom DocPerm' +#. Label of the share (Check) field in DocType 'DocPerm' +#. Label of the share (Check) field in DocType 'DocShare' +#. Label of the share (Check) field in DocType 'User Document Type' +#. Option for the 'Type' (Select) field in DocType 'Notification Log' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/public/js/frappe/form/templates/form_sidebar.html:90 +msgid "Share" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/share.js:107 +msgid "Share With" +msgstr "" + +#: frappe/public/js/frappe/form/templates/set_sharing.html:49 +msgid "Share this document with" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/share.js:45 +msgid "Share {0} with" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Shared" +msgstr "" + +#: frappe/desk/form/assign_to.py:132 +msgid "Shared with the following Users with Read access:{0}" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Shipping" +msgstr "" + +#: frappe/public/js/frappe/form/templates/address_list.html:31 +msgid "Shipping Address" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Shop" +msgstr "" + +#: frappe/utils/password_strength.py:91 +msgid "Short keyboard patterns are easy to guess" +msgstr "" + +#. Label of the shortcuts (Table) field in DocType 'Workspace' +#. Label of the tab_break_15 (Tab Break) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/form/grid_row_form.js:42 +msgid "Shortcuts" +msgstr "" + +#: frappe/public/js/frappe/widgets/base_widget.js:46 +#: frappe/public/js/frappe/widgets/base_widget.js:178 +#: frappe/templates/includes/login/login.js:85 frappe/www/login.html:31 +#: frappe/www/update-password.html:49 frappe/www/update-password.html:60 +#: frappe/www/update-password.html:120 +msgid "Show" +msgstr "" + +#. Label of the show_absolute_datetime_in_timeline (Check) field in DocType +#. 'System Settings' +#. Label of the show_absolute_datetime_in_timeline (Check) field in DocType +#. 'User' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +msgid "Show Absolute Datetime in Timeline" +msgstr "" + +#. Label of the absolute_value (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Show Absolute Values" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:73 +msgid "Show All" +msgstr "" + +#. Label of the show_auth_server_metadata (Check) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Auth Server Metadata" +msgstr "" + +#: frappe/desk/doctype/calendar_view/calendar_view.js:10 +msgid "Show Calendar" +msgstr "" + +#. Label of the symbol_on_right (Check) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Show Currency Symbol on Right Side" +msgstr "" + +#. Label of the show_dashboard (Check) field in DocType 'DocField' +#. Label of the show_dashboard (Check) field in DocType 'Custom Field' +#. Label of the show_dashboard (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard/dashboard.js:6 +msgid "Show Dashboard" +msgstr "" + +#. Label of the show_document (Button) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Show Document" +msgstr "" + +#: frappe/www/error.html:42 frappe/www/error.html:65 +msgid "Show Error" +msgstr "" + +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 +msgid "Show Fieldname (click to copy on clipboard)" +msgstr "" + +#. Label of the first_document (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Show First Document Tour" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#. Label of the show_form_tour (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Show Form Tour" +msgstr "" + +#. Label of the allow_error_traceback (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show Full Error and Allow Reporting of Issues to the Developer" +msgstr "" + +#. Label of the show_full_form (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Show Full Form?" +msgstr "" + +#. Label of the show_full_number (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Show Full Number" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:234 +msgid "Show Keyboard Shortcuts" +msgstr "" + +#. Label of the show_labels (Check) field in DocType 'Kanban Board' +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:30 +msgid "Show Labels" +msgstr "" + +#. Label of the show_language_picker (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Show Language Picker" +msgstr "" + +#. Label of the line_breaks (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Show Line Breaks after Sections" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:410 +msgid "Show Links" +msgstr "" + +#. Label of the show_failed_logs (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Show Only Failed Logs" +msgstr "" + +#. Label of the show_percentage_stats (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Show Percentage Stats" +msgstr "" + +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:30 +msgid "Show Permissions" +msgstr "" + +#: frappe/public/js/form_builder/form_builder.bundle.js:31 +#: frappe/public/js/form_builder/form_builder.bundle.js:43 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:18 +#: frappe/public/js/print_format_builder/print_format_builder.bundle.js:54 +msgid "Show Preview" +msgstr "" + +#. Label of the show_preview_popup (Check) field in DocType 'DocType' +#. Label of the show_preview_popup (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Show Preview Popup" +msgstr "" + +#. Label of the show_processlist (Check) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "Show Processlist" +msgstr "" + +#. Label of the show_protected_resource_metadata (Check) field in DocType +#. 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Protected Resource Metadata" +msgstr "" + +#: frappe/core/doctype/error_log/error_log.js:9 +msgid "Show Related Errors" +msgstr "" + +#. Label of the show_report (Button) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/prepared_report/prepared_report.js:43 +#: frappe/core/doctype/report/report.js:16 +msgid "Show Report" +msgstr "" + +#: frappe/public/js/frappe/list/list_filter.js:15 +#: frappe/public/js/frappe/list/list_filter.js:94 +msgid "Show Saved" +msgstr "" + +#. Label of the show_section_headings (Check) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Show Section Headings" +msgstr "" + +#. Label of the show_sidebar (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Show Sidebar" +msgstr "" + +#. Label of the show_social_login_key_as_authorization_server (Check) field in +#. DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Show Social Login Key as Authorization Server" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.html:77 +#: frappe/public/js/frappe/list/list_view.js:1851 +msgid "Show Tags" +msgstr "" + +#. Label of the show_title (Check) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Show Title" +msgstr "" + +#. Label of the show_title_field_in_link (Check) field in DocType 'DocType' +#. Label of the show_title_field_in_link (Check) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Show Title in Link Fields" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1529 +msgid "Show Totals" +msgstr "" + +#: frappe/desk/doctype/form_tour/form_tour.js:116 +msgid "Show Tour" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:448 +msgid "Show Traceback" +msgstr "" + +#. Label of the show_values_over_chart (Check) field in DocType 'Dashboard +#. Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Show Values over Chart" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:204 +msgid "Show Warnings" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:179 +msgid "Show Weekends" +msgstr "" + +#. Label of the show_account_deletion_link (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Show account deletion link in My Account page" +msgstr "" + +#: frappe/core/doctype/version/version.js:6 +msgid "Show all Versions" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:69 +msgid "Show all activity" +msgstr "" + +#. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Show as cc" +msgstr "" + +#. Label of the show_attachments (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Show attachments" +msgstr "" + +#. Label of the show_footer_on_login (Check) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Show footer on login" +msgstr "" + +#. Description of the 'Show Full Form?' (Check) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Show full form instead of a quick entry modal" +msgstr "" + +#. Label of the document_type (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Show in Module Section" +msgstr "" + +#. Label of the show_in_resource_metadata (Check) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Show in Resource Metadata" +msgstr "" + +#. Label of the show_in_filter (Check) field in DocType 'Web Form Field' +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Show in filter" +msgstr "" + +#. Label of the show_document_link (Check) field in DocType 'Slack Webhook URL' +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +msgid "Show link to document" +msgstr "" + +#. Label of the show_list (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Show list" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 +msgid "Show more details" +msgstr "" + +#. Label of the show_on_timeline (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Show on Timeline" +msgstr "" + +#. Description of the 'Stats Time Interval' (Select) field in DocType 'Number +#. Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Show percentage difference according to this time interval" +msgstr "" + +#. Label of the show_sidebar (Check) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Show sidebar" +msgstr "" + +#. Description of the 'Title Prefix' (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Show title in browser window as \"Prefix - title\"" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:148 +msgid "Show {0} List" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:506 +msgid "Showing only Numeric fields from Report" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:153 +msgid "Showing only first {0} rows out of {1}" +msgstr "" + +#. Label of the list_sidebar (Check) field in DocType 'User' +#. Label of the form_sidebar (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Sidebar" +msgstr "" + +#. Label of the sidebar_items (Table) field in DocType 'Website Sidebar' +#: frappe/website/doctype/website_sidebar/website_sidebar.json +msgid "Sidebar Items" +msgstr "" + +#. Label of the section_break_4 (Section Break) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Sidebar Settings" +msgstr "" + +#. Label of the section_break_17 (Section Break) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Sidebar and Comments" +msgstr "" + +#. Label of the sign_up_and_confirmation_section (Section Break) field in +#. DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Sign Up and Confirmation" +msgstr "" + +#: frappe/core/doctype/user/user.py:1029 +msgid "Sign Up is disabled" +msgstr "" + +#: frappe/templates/signup.html:16 frappe/www/login.html:140 +#: frappe/www/login.html:156 frappe/www/update-password.html:71 +msgid "Sign up" +msgstr "" + +#. Label of the sign_ups (Select) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Sign ups" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the signature_section (Section Break) field in DocType 'Email +#. Account' +#. Label of the signature (Text Editor) field in DocType 'Email Account' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Signature" +msgstr "" + +#: frappe/www/login.html:168 +msgid "Signup Disabled" +msgstr "" + +#: frappe/www/login.html:169 +msgid "Signups have been disabled for this website." +msgstr "" + +#. Description of the 'Close Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "" + +#. Description of the 'Assign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" +msgstr "" + +#. Label of the simultaneous_sessions (Int) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Simultaneous Sessions" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:128 +msgid "Single DocTypes cannot be customized." +msgstr "" + +#. Description of the 'Is Single' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/doctype/doctype_list.js:68 +msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" +msgstr "" + +#: frappe/database/database.py:284 +msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:370 +msgid "Size" +msgstr "" + +#. Label of the size (Float) field in DocType 'System Health Report Tables' +#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json +msgid "Size (MB)" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:82 +#: frappe/public/js/onboarding_tours/onboarding_tours.js:18 +msgid "Skip" +msgstr "" + +#. Label of the skip_authorization (Check) field in DocType 'OAuth Client' +#. Label of the skip_authorization (Select) field in DocType 'OAuth Provider +#. Settings' +#. Label of the skip_authorization (Check) field in DocType 'OAuth Settings' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "Skip Authorization" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:332 +msgid "Skip Step" +msgstr "" + +#. Label of the skipped (Check) field in DocType 'Patch Log' +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Skipped" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:952 +msgid "Skipping Duplicate Column {0}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:977 +msgid "Skipping Untitled Column" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:963 +msgid "Skipping column {0}" +msgstr "" + +#: frappe/modules/utils.py:176 +msgid "Skipping fixture syncing for doctype {0} from file {1}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:39 +msgid "Skipping {0} of {1}, {2}" +msgstr "" + +#. Label of the skype (Data) field in DocType 'Contact Us Settings' +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "Skype" +msgstr "" + +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Slack" +msgstr "" + +#. Label of the slack_webhook_url (Link) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Slack Channel" +msgstr "" + +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.py:65 +msgid "Slack Webhook Error" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Slack Webhook URL" +msgstr "" + +#. Label of the slideshow (Link) field in DocType 'Web Page' +#. Option for the 'Content Type' (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Slideshow" +msgstr "" + +#. Label of the slideshow_items (Table) field in DocType 'Website Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow Items" +msgstr "" + +#. Label of the slideshow_name (Data) field in DocType 'Website Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow Name" +msgstr "" + +#. Description of a DocType +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "Slideshow like display for the website" +msgstr "" + +#. Label of the slug (Data) field in DocType 'UTM Campaign' +#. Label of the slug (Data) field in DocType 'UTM Medium' +#. Label of the slug (Data) field in DocType 'UTM Source' +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +msgid "Slug" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Small Text" +msgstr "" + +#. Label of the smallest_currency_fraction_value (Currency) field in DocType +#. 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Smallest Currency Fraction Value" +msgstr "" + +#. Description of the 'Smallest Currency Fraction Value' (Currency) field in +#. DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:32 +msgid "Snippet and more variables: {0}" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "Social Link Settings" +msgstr "" + +#. Label of the social_link_type (Select) field in DocType 'Social Link +#. Settings' +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "Social Link Type" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Integrations Workspace +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Social Login Key" +msgstr "" + +#. Label of the social_login_provider (Select) field in DocType 'Social Login +#. Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "Social Login Provider" +msgstr "" + +#. Label of the social_logins (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Social Logins" +msgstr "" + +#. Label of the socketio_ping_check (Select) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "SocketIO Ping Check" +msgstr "" + +#. Label of the socketio_transport_mode (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "SocketIO Transport Mode" +msgstr "" + +#. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Soft-Bounced" +msgstr "" + +#. Label of the software_id (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software ID" +msgstr "" + +#. Label of the software_version (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Software Version" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:4 +msgid "Some columns might get cut off when printing to PDF. Try to keep number of columns under 10." +msgstr "" + +#. Description of the 'Sent Folder Name' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Some mailboxes require a different Sent Folder Name e.g. \"INBOX.Sent\"" +msgstr "" + +#: frappe/public/js/frappe/desk.js:20 +msgid "Some of the features might not work in your browser. Please update your browser to the latest version." +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:101 +msgid "Something went wrong" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:133 +msgid "Something went wrong during the token generation. Click on {0} to generate a new one." +msgstr "" + +#: frappe/templates/includes/login/login.js:293 +msgid "Something went wrong." +msgstr "" + +#: frappe/public/js/frappe/views/pageview.js:117 +msgid "Sorry! I could not find what you were looking for." +msgstr "" + +#: frappe/public/js/frappe/views/pageview.js:125 +msgid "Sorry! You are not permitted to view this page." +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:6 +msgid "Sort Ascending" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:7 +msgid "Sort Descending" +msgstr "" + +#. Label of the sort_field (Select) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Sort Field" +msgstr "" + +#. Label of the sort_options (Check) field in DocType 'DocField' +#. Label of the sort_options (Check) field in DocType 'Custom Field' +#. Label of the sort_options (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Sort Options" +msgstr "" + +#. Label of the sort_order (Select) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Sort Order" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1551 +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:1757 +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +#: frappe/website/report/website_analytics/website_analytics.js:38 +msgid "Source" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "" + +#. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgid "Source Name" +msgstr "" + +#. Label of the source_text (Code) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +#: frappe/public/js/frappe/views/translation_manager.js:38 +msgid "Source Text" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/blocks/spacer.js:23 +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:174 +msgid "Spacer" +msgstr "" + +#. Option for the 'Email Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Spam" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "SparkPost" +msgstr "" + +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:83 +msgid "Special Characters are not allowed" +msgstr "" + +#: frappe/model/naming.py:68 +msgid "Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}" +msgstr "" + +#. Description of the 'Timeout (In Seconds)' (Int) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Specify a custom timeout, default timeout is 1500 seconds" +msgstr "" + +#. Description of the 'Allowed embedding domains' (Small Text) field in DocType +#. 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Specify the domains or origins that are permitted to embed this form. Enter one domain per line (e.g., https://example.com). If no domains are specified, the form can only be embedded on the same origin." +msgstr "" + +#. Label of the splash_image (Attach Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Splash Image" +msgstr "" + +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 +#: frappe/templates/print_formats/standard_macros.html:44 +msgid "Sr" +msgstr "" + +#: frappe/public/js/print_format_builder/Field.vue:143 +#: frappe/public/js/print_format_builder/Field.vue:164 +msgid "Sr No." +msgstr "" + +#. Label of the stack_html (HTML) field in DocType 'Recorder Query' +#: frappe/core/doctype/recorder/recorder.js:82 +#: frappe/core/doctype/recorder_query/recorder_query.json +msgid "Stack Trace" +msgstr "" + +#. Label of the standard (Select) field in DocType 'Page' +#. Label of the standard (Check) field in DocType 'Desktop Icon' +#. Label of the standard (Select) field in DocType 'Print Format' +#. Label of the standard (Check) field in DocType 'Print Format Field Template' +#. Label of the standard (Check) field in DocType 'Print Style' +#. Label of the standard (Check) field in DocType 'Web Template' +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/user_type/user_type_list.js:5 +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/website/doctype/web_template/web_template.json +msgid "Standard" +msgstr "" + +#: frappe/model/delete_doc.py:119 +msgid "Standard DocType can not be deleted." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:229 +msgid "Standard DocType cannot have default print format, use Customize Form" +msgstr "" + +#: frappe/desk/doctype/dashboard/dashboard.py:58 +msgid "Standard Not Set" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:132 +msgid "Standard Permissions" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.py:82 +msgid "Standard Print Format cannot be updated" +msgstr "" + +#: frappe/printing/doctype/print_style/print_style.py:31 +msgid "Standard Print Style cannot be changed. Please duplicate to edit." +msgstr "" + +#: frappe/desk/reportview.py:355 +msgid "Standard Reports cannot be deleted" +msgstr "" + +#: frappe/desk/reportview.py:326 +msgid "Standard Reports cannot be edited" +msgstr "" + +#. Label of the standard_menu_items (Section Break) field in DocType 'Portal +#. Settings' +#: frappe/website/doctype/portal_settings/portal_settings.json +msgid "Standard Sidebar Menu" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:40 +msgid "Standard Web Forms can not be modified, duplicate the Web Form instead." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "Standard rich text editor with controls" +msgstr "" + +#: frappe/core/doctype/role/role.py:46 +msgid "Standard roles cannot be disabled" +msgstr "" + +#: frappe/core/doctype/role/role.py:32 +msgid "Standard roles cannot be renamed" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:61 +msgid "Standard user type {0} can not be deleted." +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:87 +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:45 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 +msgid "Start" +msgstr "" + +#. Label of the start_date (Date) field in DocType 'Auto Repeat' +#. Label of the start_date (Date) field in DocType 'Audit Trail' +#. Label of the start_date (Datetime) field in DocType 'Web Page' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/public/js/frappe/utils/common.js:409 +#: frappe/website/doctype/web_page/web_page.json +msgid "Start Date" +msgstr "" + +#. Label of the start_date_field (Select) field in DocType 'Calendar View' +#: frappe/desk/doctype/calendar_view/calendar_view.json +msgid "Start Date Field" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:110 +msgid "Start Import" +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:201 +msgid "Start Recording" +msgstr "" + +#. Label of the birth_date (Datetime) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Start Time" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:8 +msgid "Start a new discussion" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:22 +msgid "Start entering data below this line" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:165 +msgid "Start new Format" +msgstr "" + +#. Option for the 'SSL/TLS Mode' (Select) field in DocType 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "StartTLS" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Prepared Report' +#: frappe/core/doctype/prepared_report/prepared_report.json +msgid "Started" +msgstr "" + +#. Label of the started_at (Datetime) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Started At" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:286 +msgid "Starting Frappe ..." +msgstr "" + +#. Label of the starts_on (Datetime) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Starts on" +msgstr "" + +#. Label of the state (Data) field in DocType 'Token Cache' +#. Label of the state (Link) field in DocType 'Workflow Document State' +#. Label of the workflow_state_name (Data) field in DocType 'Workflow State' +#. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/workflow/doctype/workflow/workflow.js:162 +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "State" +msgstr "" + +#: frappe/public/js/workflow_builder/components/Properties.vue:26 +msgid "State Properties" +msgstr "" + +#. Label of the state (Data) field in DocType 'Address' +#. Label of the state (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/doctype/address/address.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +msgid "State/Province" +msgstr "" + +#. Label of the document_states_section (Tab Break) field in DocType 'DocType' +#. Label of the states (Table) field in DocType 'Customize Form' +#. Label of the states_head (Section Break) field in DocType 'Workflow' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/workflow/doctype/workflow/workflow.json +msgid "States" +msgstr "" + +#. Label of the parameters (Table) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Static Parameters" +msgstr "" + +#. Label of the statistics_section (Section Break) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Statistics" +msgstr "" + +#. Label of the stats_section (Section Break) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/form/dashboard.js:43 +#: frappe/public/js/frappe/form/templates/form_dashboard.html:13 +msgid "Stats" +msgstr "" + +#. Label of the stats_time_interval (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "Stats Time Interval" +msgstr "" + +#. Label of the status (Select) field in DocType 'Auto Repeat' +#. Label of the status (Select) field in DocType 'Contact' +#. Label of the status (Select) field in DocType 'Activity Log' +#. Label of the status_section (Section Break) field in DocType 'Communication' +#. Label of the status (Select) field in DocType 'Communication' +#. Label of the status (Select) field in DocType 'Data Import' +#. Label of the status (Select) field in DocType 'Permission Log' +#. Label of the status (Select) field in DocType 'Prepared Report' +#. Label of the status (Select) field in DocType 'RQ Job' +#. Label of the status (Data) field in DocType 'RQ Worker' +#. Label of the status (Select) field in DocType 'Scheduled Job Log' +#. Label of the status_section (Section Break) field in DocType 'Scheduled Job +#. Type' +#. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' +#. Label of the status (Select) field in DocType 'Event' +#. Label of the status (Select) field in DocType 'Kanban Board Column' +#. Label of the status (Select) field in DocType 'ToDo' +#. Label of the status (Select) field in DocType 'Email Queue' +#. Label of the status (Select) field in DocType 'Email Queue Recipient' +#. Label of the status (Select) field in DocType 'Integration Request' +#. Label of the status (Select) field in DocType 'OAuth Bearer Token' +#. Label of the status (Select) field in DocType 'Personal Data Deletion +#. Request' +#. Label of the status (Select) field in DocType 'Personal Data Deletion Step' +#. Label of the status (Select) field in DocType 'Workflow Action' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/data_import/data_import.js:483 +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "Status" +msgstr "" + +#: frappe/www/update-password.html:188 +msgid "Status Updated" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue.js:37 +msgid "Status Updated. The email will be picked up in the next scheduled run." +msgstr "" + +#: frappe/www/message.html:24 +msgid "Status: {0}" +msgstr "" + +#. Label of the step (Link) field in DocType 'Onboarding Step Map' +#: frappe/desk/doctype/onboarding_step_map/onboarding_step_map.json +msgid "Step" +msgstr "" + +#. Label of the steps (Table) field in DocType 'Form Tour' +#. Label of the steps (Table) field in DocType 'Module Onboarding' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Steps" +msgstr "" + +#: frappe/www/qrcode.html:11 +msgid "Steps to verify your login" +msgstr "" + +#. Label of the sticky (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/public/js/frappe/form/grid_row.js:455 +msgid "Sticky" +msgstr "" + +#: frappe/core/doctype/recorder/recorder_list.js:87 +msgid "Stop" +msgstr "" + +#. Label of the stopped (Check) field in DocType 'Scheduled Job Type' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +msgid "Stopped" +msgstr "" + +#. Label of the db_storage_usage (Float) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Storage Usage (MB)" +msgstr "" + +#. Label of the top_db_tables (Table) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Storage Usage By Table" +msgstr "" + +#. Label of the store_attached_pdf_document (Check) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Store Attached PDF Document" +msgstr "" + +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +msgstr "" + +#. Description of the 'Last Known Versions' (Text) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Stores the JSON of last known versions of various installed apps. It is used to show release notes." +msgstr "" + +#. Description of the 'Last Reset Password Key Generated On' (Datetime) field +#. in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Stores the datetime when the last reset password key was generated." +msgstr "" + +#: frappe/utils/password_strength.py:97 +msgid "Straight rows of keys are easy to guess" +msgstr "" + +#. Label of the strip_exif_metadata_from_uploaded_images (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Strip EXIF tags from uploaded images" +msgstr "" + +#: frappe/public/js/frappe/form/controls/password.js:89 +msgid "Strong" +msgstr "" + +#. Label of the custom_css (Tab Break) field in DocType 'Web Page' +#. Label of the style (Select) field in DocType 'Workflow State' +#: frappe/website/doctype/web_page/web_page.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Style" +msgstr "" + +#. Label of the section_break_9 (Section Break) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "Style Settings" +msgstr "" + +#. Description of the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange" +msgstr "" + +#. Label of the stylesheet_section (Tab Break) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Stylesheet" +msgstr "" + +#. Description of the 'Fraction' (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Sub-currency. For e.g. \"Cent\"" +msgstr "" + +#. Description of the 'Subdomain' (Small Text) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Sub-domain provided by erpnext.com" +msgstr "" + +#. Label of the subdomain (Small Text) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Subdomain" +msgstr "" + +#. Label of the subject (Data) field in DocType 'Auto Repeat' +#. Label of the subject (Small Text) field in DocType 'Activity Log' +#. Label of the subject (Text) field in DocType 'Comment' +#. Label of the subject (Small Text) field in DocType 'Communication' +#. Label of the subject (Small Text) field in DocType 'Event' +#. Label of the subject (Text) field in DocType 'Notification Log' +#. Label of the subject (Data) field in DocType 'Email Template' +#. Label of the subject (Data) field in DocType 'Notification' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/email/doctype/notification/notification.js:204 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/views/communication.js:119 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:63 +msgid "Subject" +msgstr "" + +#. Label of the subject_field (Data) field in DocType 'DocType' +#. Label of the subject_field (Data) field in DocType 'Customize Form' +#. Label of the subject_field (Select) field in DocType 'Calendar View' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +msgid "Subject Field" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1949 +msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/submission_queue/submission_queue.json +msgid "Submission Queue" +msgstr "" + +#. Label of the submit (Check) field in DocType 'Custom DocPerm' +#. Label of the submit (Check) field in DocType 'DocPerm' +#. Label of the submit (Check) field in DocType 'DocShare' +#. Label of the submit (Check) field in DocType 'User Document Type' +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_permission/user_permission_list.js:138 +#: frappe/email/doctype/notification/notification.json +#: frappe/public/js/frappe/form/quick_entry.js:225 +#: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Submit" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2233 +msgctxt "Button in list view actions menu" +msgid "Submit" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:47 +msgctxt "Button in web form" +msgid "Submit" +msgstr "" + +#: frappe/public/js/frappe/ui/dialog.js:64 +msgctxt "Primary action in dialog" +msgid "Submit" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:97 +msgctxt "Primary action of prompt dialog" +msgid "Submit" +msgstr "" + +#: frappe/public/js/frappe/desk.js:227 +msgctxt "Submit password for Email Account" +msgid "Submit" +msgstr "" + +#. Label of the submit_after_import (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Submit After Import" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:39 +msgid "Submit an Issue" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:163 +msgctxt "Button in web form" +msgid "Submit another response" +msgstr "" + +#. Label of the button_label (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Submit button label" +msgstr "" + +#. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 +msgid "Submit on Creation" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:395 +msgid "Submit this document to complete this step." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1221 +msgid "Submit this document to confirm" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2238 +msgctxt "Title of confirmation dialog" +msgid "Submit {0} documents?" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +#: frappe/public/js/frappe/model/indicator.js:95 +#: frappe/public/js/frappe/ui/filters/filter.js:539 +#: frappe/website/doctype/web_form/templates/web_form.html:143 +msgid "Submitted" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:104 +msgid "Submitted Document cannot be converted back to draft. Transition row {0}" +msgstr "" + +#: frappe/public/js/workflow_builder/utils.js:176 +msgid "Submitted document cannot be converted back to draft while transitioning from {0} State to {1} State" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:10 +msgctxt "Freeze message while submitting a document" +msgid "Submitting" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:88 +msgid "Submitting {0}" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Subsidiary" +msgstr "" + +#. Label of the subtitle (Data) field in DocType 'Module Onboarding' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Subtitle" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Activity Log' +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#. Label of the success (Check) field in DocType 'Data Import Log' +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/data_import/data_import.js:459 +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/desk/doctype/bulk_update/bulk_update.js:31 +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 +#: frappe/public/js/frappe/form/grid.js:1172 +#: frappe/public/js/frappe/views/translation_manager.js:21 +#: frappe/templates/includes/login/login.js:230 +#: frappe/templates/includes/login/login.js:236 +#: frappe/templates/includes/login/login.js:269 +#: frappe/templates/includes/login/login.js:277 +#: frappe/templates/pages/integrations/gcalendar-success.html:9 +#: frappe/workflow/doctype/workflow_action/workflow_action.py:171 +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Success" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/success_action/success_action.json +msgid "Success Action" +msgstr "" + +#. Label of the success_message (Data) field in DocType 'Module Onboarding' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "Success Message" +msgstr "" + +#. Label of the success_uri (Data) field in DocType 'Token Cache' +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Success URI" +msgstr "" + +#. Label of the success_url (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Success URL" +msgstr "" + +#. Label of the success_message (Text) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Success message" +msgstr "" + +#. Label of the success_title (Data) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Success title" +msgstr "" + +#. Label of the successful_job_count (Int) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Successful Job Count" +msgstr "" + +#: frappe/model/workflow.py:363 +msgid "Successful Transactions" +msgstr "" + +#: frappe/model/rename_doc.py:698 +msgid "Successful: {0} to {1}" +msgstr "" + +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:100 +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:113 +msgid "Successfully Updated" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:423 +msgid "Successfully imported {0}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:144 +msgid "Successfully imported {0} out of {1} records." +msgstr "" + +#: frappe/desk/doctype/form_tour/form_tour.py:87 +msgid "Successfully reset onboarding status for all users." +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:22 +msgid "Successfully updated translations" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:431 +msgid "Successfully updated {0}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:149 +msgid "Successfully updated {0} out of {1} records." +msgstr "" + +#: frappe/core/doctype/recorder/recorder.js:15 +msgid "Suggest Optimizations" +msgstr "" + +#. Label of the suggested_indexes (Table) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Suggested Indexes" +msgstr "" + +#: frappe/core/doctype/user/user.py:733 +msgid "Suggested Username: {0}" +msgstr "" + +#. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Function' (Select) field in DocType 'Number Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/public/js/frappe/ui/group_by/group_by.js:20 +msgid "Sum" +msgstr "" + +#: frappe/public/js/frappe/ui/group_by/group_by.js:340 +msgid "Sum of {0}" +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:88 +msgid "Summary" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the sunday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Sunday" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:27 +msgid "Suspend Sending" +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:276 +msgid "Switch Camera" +msgstr "" + +#: frappe/public/js/frappe/desk.js:96 +#: frappe/public/js/frappe/ui/theme_switcher.js:11 +msgid "Switch Theme" +msgstr "" + +#: frappe/templates/includes/navbar/navbar_login.html:17 +msgid "Switch To Desk" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.js:319 +msgid "Switch to Frappe CRM for smarter sales" +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:281 +msgid "Switching Camera" +msgstr "" + +#. Label of the symbol (Data) field in DocType 'Currency' +#: frappe/geo/doctype/currency/currency.json +msgid "Symbol" +msgstr "" + +#. Label of the sb_01 (Section Break) field in DocType 'Google Calendar' +#. Label of the sync (Section Break) field in DocType 'Google Contacts' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +msgid "Sync" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:28 +msgid "Sync Calendar" +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.js:28 +msgid "Sync Contacts" +msgstr "" + +#. Label of the sync_as_public (Check) field in DocType 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "Sync events from Google as public" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:256 +msgid "Sync on Migrate" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:312 +msgid "Sync token was invalid and has been reset, Retry syncing." +msgstr "" + +#. Label of the sync_with_google_calendar (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Sync with Google Calendar" +msgstr "" + +#. Label of the sync_with_google_contacts (Check) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "Sync with Google Contacts" +msgstr "" + +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:46 +msgid "Sync {0} Fields" +msgstr "" + +#: frappe/custom/doctype/doctype_layout/doctype_layout.js:100 +msgid "Synced Fields" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:31 +#: frappe/integrations/doctype/google_contacts/google_contacts.js:31 +msgid "Syncing" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:19 +msgid "Syncing {0} of {1}" +msgstr "" + +#: frappe/utils/data.py:2573 +msgid "Syntax Error" +msgstr "" + +#. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "System" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/public/js/frappe/ui/dropdown_console.js:4 +msgid "System Console" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.py:408 +msgid "System Generated Fields can not be renamed" +msgstr "" + +#. Label of a standard help item +#. Type: Route +#: frappe/hooks.py +msgid "System Health" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "System Health Report" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json +msgid "System Health Report Errors" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_failing_jobs/system_health_report_failing_jobs.json +msgid "System Health Report Failing Jobs" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_queue/system_health_report_queue.json +msgid "System Health Report Queue" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json +msgid "System Health Report Tables" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "System Health Report Workers" +msgstr "" + +#. Label of a Card Break in the Build Workspace +#: frappe/core/workspace/build/build.json +msgid "System Logs" +msgstr "" + +#. Name of a role +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +#: frappe/contacts/doctype/address/address.json +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/doctype/gender/gender.json +#: frappe/contacts/doctype/salutation/salutation.json +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/audit_trail/audit_trail.json +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/custom_role/custom_role.json +#: frappe/core/doctype/data_export/data_export.json +#: frappe/core/doctype/data_import/data_import.json +#: frappe/core/doctype/data_import_log/data_import_log.json +#: frappe/core/doctype/deleted_document/deleted_document.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +#: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/domain/domain.json +#: frappe/core/doctype/domain_settings/domain_settings.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/file/file.json +#: frappe/core/doctype/installed_applications/installed_applications.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/log_settings/log_settings.json +#: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/module_profile/module_profile.json +#: frappe/core/doctype/navbar_settings/navbar_settings.json +#: frappe/core/doctype/package/package.json +#: frappe/core/doctype/package_import/package_import.json +#: frappe/core/doctype/package_release/package_release.json +#: frappe/core/doctype/page/page.json +#: frappe/core/doctype/patch_log/patch_log.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/report/report.json frappe/core/doctype/role/role.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json +#: frappe/core/doctype/role_profile/role_profile.json +#: frappe/core/doctype/role_replication/role_replication.json +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +#: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/scheduler_event/scheduler_event.json +#: frappe/core/doctype/session_default_settings/session_default_settings.json +#: frappe/core/doctype/sms_log/sms_log.json +#: frappe/core/doctype/sms_settings/sms_settings.json +#: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/success_action/success_action.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/version/version.json +#: frappe/core/doctype/view_log/view_log.json +#: frappe/custom/doctype/client_script/client_script.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/custom/doctype/doctype_layout/doctype_layout.json +#: frappe/custom/doctype/property_setter/property_setter.json +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/desk/doctype/console_log/console_log.json +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/dashboard/dashboard.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/global_search_settings/global_search_settings.json +#: frappe/desk/doctype/kanban_board/kanban_board.json +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/route_history/route_history.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +#: frappe/desk/doctype/tag/tag.json frappe/desk/doctype/tag_link/tag_link.json +#: frappe/desk/doctype/todo/todo.json +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/email_queue/email_queue.json +#: frappe/email/doctype/email_rule/email_rule.json +#: frappe/email/doctype/email_template/email_template.json +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json +#: frappe/email/doctype/notification/notification.json +#: frappe/email/doctype/unhandled_email/unhandled_email.json +#: frappe/geo/doctype/country/country.json +#: frappe/geo/doctype/currency/currency.json +#: frappe/integrations/doctype/connected_app/connected_app.json +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/google_contacts/google_contacts.json +#: frappe/integrations/doctype/google_settings/google_settings.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/oauth_provider_settings/oauth_provider_settings.json +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +#: frappe/integrations/doctype/social_login_key/social_login_key.json +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/printing/doctype/letter_head/letter_head.json +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/printing/doctype/print_heading/print_heading.json +#: frappe/printing/doctype/print_settings/print_settings.json +#: frappe/printing/doctype/print_style/print_style.json +#: frappe/website/doctype/discussion_reply/discussion_reply.json +#: frappe/website/doctype/discussion_topic/discussion_topic.json +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +#: frappe/website/doctype/utm_campaign/utm_campaign.json +#: frappe/website/doctype/utm_medium/utm_medium.json +#: frappe/website/doctype/utm_source/utm_source.json +#: frappe/website/doctype/web_page_view/web_page_view.json +#: frappe/website/doctype/web_template/web_template.json +#: frappe/website/doctype/website_route_meta/website_route_meta.json +#: frappe/workflow/doctype/workflow/workflow.json +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "System Manager" +msgstr "" + +#: frappe/desk/page/backups/backups.js:38 +msgid "System Manager privileges required." +msgstr "" + +#. Option for the 'Channel' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "System Notification" +msgstr "" + +#. Label of the system_page (Check) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "System Page" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/system_settings/system_settings.json +msgid "System Settings" +msgstr "" + +#. Description of the 'Allow Roles' (Table MultiSelect) field in DocType +#. 'Module Onboarding' +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +msgid "System managers are allowed by default" +msgstr "" + +#: frappe/public/js/frappe/utils/number_systems.js:5 +msgctxt "Number system" +msgid "T" +msgstr "" + +#. Label of the tos_uri (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "TOS URI" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Tab Break" +msgstr "" + +#: frappe/public/js/form_builder/components/Tabs.vue:135 +msgid "Tab Label" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the table (Data) field in DocType 'Recorder Suggested Index' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Label of the table (Data) field in DocType 'System Health Report Tables' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/data_export/exporter.py:23 +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder_suggested_index/recorder_suggested_index.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/system_health_report_tables/system_health_report_tables.json +#: frappe/printing/page/print_format_builder/print_format_builder_field.html:39 +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Table" +msgstr "" + +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Table Break" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:73 +msgid "Table Field" +msgstr "" + +#. Label of the table_fieldname (Data) field in DocType 'DocType Link' +#: frappe/core/doctype/doctype_link/doctype_link.json +msgid "Table Fieldname" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1204 +msgid "Table Fieldname Missing" +msgstr "" + +#. Label of the table_html (HTML) field in DocType 'Version' +#: frappe/core/doctype/version/version.json +msgid "Table HTML" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Table MultiSelect" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:229 +msgid "Table Trimmed" +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1171 +msgid "Table updated" +msgstr "" + +#: frappe/model/document.py:1578 +msgid "Table {0} cannot be empty" +msgstr "" + +#. Option for the 'PDF Page Size' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Tabloid" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/tag/tag.json +msgid "Tag" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/tag_link/tag_link.json +msgid "Tag Link" +msgstr "" + +#: frappe/model/meta.py:59 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:81 +#: frappe/public/js/frappe/list/bulk_operations.js:430 +#: frappe/public/js/frappe/list/list_sidebar.html:48 +#: frappe/public/js/frappe/list/list_sidebar.html:60 +#: frappe/public/js/frappe/list/list_sidebar.js:253 +#: frappe/public/js/frappe/model/meta.js:207 +#: frappe/public/js/frappe/model/model.js:133 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:171 +msgid "Tags" +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:220 +msgid "Take Photo" +msgstr "" + +#. Label of the target (Data) field in DocType 'Portal Menu Item' +#. Label of the target (Small Text) field in DocType 'Website Route Redirect' +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +msgid "Target" +msgstr "" + +#. Label of the task (Select) field in DocType 'Workflow Transition Task' +#: frappe/desk/doctype/todo/todo_calendar.js:19 +#: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Task" +msgstr "" + +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "" + +#. Label of the sb1 (Section Break) field in DocType 'About Us Settings' +#. Label of the team_members (Table) field in DocType 'About Us Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/www/about.html:45 +msgid "Team Members" +msgstr "" + +#. Label of the team_members_heading (Data) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Team Members Heading" +msgstr "" + +#. Label of the team_members_subtitle (Small Text) field in DocType 'About Us +#. Settings' +#: frappe/website/doctype/about_us_settings/about_us_settings.json +msgid "Team Members Subtitle" +msgstr "" + +#. Label of the telemetry_section (Section Break) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Telemetry" +msgstr "" + +#. Label of the template (Link) field in DocType 'Auto Repeat' +#. Label of the template (Code) field in DocType 'Address Template' +#. Label of the template (Code) field in DocType 'Print Format Field Template' +#. Label of the template (Code) field in DocType 'Web Template' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/contacts/doctype/address_template/address_template.json +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +#: frappe/website/doctype/web_template/web_template.json +msgid "Template" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:483 +#: frappe/core/doctype/data_import/importer.py:610 +msgid "Template Error" +msgstr "" + +#. Label of the template_file (Data) field in DocType 'Print Format Field +#. Template' +#: frappe/printing/doctype/print_format_field_template/print_format_field_template.json +msgid "Template File" +msgstr "" + +#. Label of the template_options (Code) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Template Options" +msgstr "" + +#. Label of the template_warnings (Code) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Template Warnings" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/blocks/paragraph.js:78 +msgid "Templates" +msgstr "" + +#: frappe/core/doctype/user/user.py:1042 +msgid "Temporarily Disabled" +msgstr "" + +#: frappe/core/doctype/translation/test_translation.py:47 +#: frappe/core/doctype/translation/test_translation.py:54 +msgid "Test Data" +msgstr "" + +#. Label of the test_job_id (Data) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Test Job ID" +msgstr "" + +#: frappe/core/doctype/translation/test_translation.py:49 +#: frappe/core/doctype/translation/test_translation.py:57 +msgid "Test Spanish" +msgstr "" + +#: frappe/core/doctype/file/test_file.py:379 +msgid "Test_Folder" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Text" +msgstr "" + +#. Label of the text_align (Select) field in DocType 'Web Page' +#: frappe/website/doctype/web_page/web_page.json +msgid "Text Align" +msgstr "" + +#. Label of the text_color (Link) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Text Color" +msgstr "" + +#. Label of the text_content (Code) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Text Content" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Text Editor" +msgstr "" + +#: frappe/templates/emails/password_reset.html:5 +msgid "Thank you" +msgstr "" + +#: frappe/www/contact.py:39 +msgid "Thank you for reaching out to us. We will get back to you at the earliest.\n\n\n" +"Your query:\n\n" +"{0}" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:147 +msgid "Thank you for spending your valuable time to fill this form" +msgstr "" + +#: frappe/templates/emails/auto_reply.html:1 +msgid "Thank you for your email" +msgstr "" + +#: frappe/website/doctype/help_article/templates/help_article.html:27 +msgid "Thank you for your feedback!" +msgstr "" + +#: frappe/templates/includes/contact.js:36 +msgid "Thank you for your message" +msgstr "" + +#: frappe/templates/emails/new_user.html:16 +msgid "Thanks" +msgstr "" + +#: frappe/templates/emails/auto_repeat_fail.html:3 +msgid "The Auto Repeat for this document has been disabled." +msgstr "" + +#: frappe/public/js/frappe/form/grid.js:1194 +msgid "The CSV format is case sensitive" +msgstr "" + +#. Description of the 'Client ID' (Data) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "The Client ID obtained from the Google Cloud Console under \n" +"\"APIs & Services\" > \"Credentials\"\n" +"" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:219 +msgid "The Condition '{0}' is invalid" +msgstr "" + +#: frappe/core/doctype/file/file.py:220 +msgid "The File URL you've entered is incorrect" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 +msgid "The Next Scheduled Date cannot be later than the End Date." +msgstr "" + +#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.py:29 +msgid "The Push Relay Server URL key (`push_relay_server_url`) is missing in your site config" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:367 +msgid "The User record for this request has been auto-deleted due to inactivity by system admins." +msgstr "" + +#: frappe/public/js/frappe/desk.js:162 +msgid "The application has been updated to a new version, please refresh this page" +msgstr "" + +#. Description of the 'Application Name' (Data) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "The application name will be used in the Login page." +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:323 +msgid "The attachments could not be correctly linked to the new document" +msgstr "" + +#. Description of the 'API Key' (Data) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "The browser API key obtained from the Google Cloud Console under \n" +"\"APIs & Services\" > \"Credentials\"\n" +"" +msgstr "" + +#: frappe/database/database.py:474 +msgid "The changes have been reverted." +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1009 +msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." +msgstr "" + +#: frappe/templates/includes/comments/comments.py:48 +msgid "The comment cannot be empty" +msgstr "" + +#: frappe/templates/emails/workflow_action.html:9 +msgid "The contents of this email are strictly confidential. Please do not forward this email to anyone." +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:687 +msgid "The count shown is an estimated count. Click here to see the accurate count." +msgstr "" + +#. Description of the 'Code' (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "The country's ISO 3166 ALPHA-2 code." +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:301 +msgid "The document could not be correctly assigned" +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:295 +msgid "The document has been assigned to {0}" +msgstr "" + +#. Description of the 'Parent Document Type' (Link) field in DocType 'Dashboard +#. Chart' +#. Description of the 'Parent Document Type' (Link) field in DocType 'Number +#. Card' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/number_card/number_card.json +msgid "The document type selected is a child table, so the parent document type is required." +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:110 +msgid "The field {0} is mandatory" +msgstr "" + +#: frappe/core/doctype/file/file.py:157 +msgid "The fieldname you've specified in Attached To Field is invalid" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:62 +msgid "The following Assignment Days have been repeated: {0}" +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:30 +msgid "The following Header Script will add the current date to an element in 'Header HTML' with class 'header-content'" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1089 +msgid "The following values are invalid: {0}. Values must be one of {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1046 +msgid "The following values do not exist for {0}: {1}" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:89 +msgid "The limit has not set for the user type {0} in the site config file." +msgstr "" + +#: frappe/templates/emails/login_with_email_link.html:21 +msgid "The link will expire in {0} minutes" +msgstr "" + +#: frappe/www/login.py:194 +msgid "The link you trying to login is invalid or expired." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:125 +msgid "The meta description is an HTML attribute that provides a brief summary of a web page. Search engines such as Google often display the meta description in search results, which can influence click-through rates." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:132 +msgid "The meta image is unique image representing the content of the page. Images for this Card should be at least 280px in width, and at least 150px in height." +msgstr "" + +#. Description of the 'Calendar Name' (Data) field in DocType 'Google Calendar' +#: frappe/integrations/doctype/google_calendar/google_calendar.json +msgid "The name that will appear in Google Calendar" +msgstr "" + +#. Description of the 'Track Steps' (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "The next tour will start from where the user left off." +msgstr "" + +#. Description of the 'Request Timeout' (Int) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "The number of seconds until the request expires" +msgstr "" + +#: frappe/www/update-password.html:101 +msgid "The password of your account has expired." +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:398 +msgid "The process for deletion of {0} data associated with {1} has been initiated." +msgstr "" + +#. Description of the 'App ID' (Data) field in DocType 'Google Settings' +#: frappe/integrations/doctype/google_settings/google_settings.json +msgid "The project number obtained from Google Cloud Console under \n" +"\"IAM & Admin\" > \"Settings\"\n" +"" +msgstr "" + +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

    Click here to download:
    {0}

    This link will expire in {1} hours." +msgstr "" + +#: frappe/core/doctype/user/user.py:1000 +msgid "The reset password link has been expired" +msgstr "" + +#: frappe/core/doctype/user/user.py:1002 +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 +msgid "The resource you are looking for is not available" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:114 +msgid "The role {0} should be a custom role." +msgstr "" + +#: frappe/core/doctype/audit_trail/audit_trail.py:46 +msgid "The selected document {0} is not a {1}." +msgstr "" + +#: frappe/utils/response.py:336 +msgid "The system is being updated. Please refresh again after a few moments." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:9 +msgid "The system provides many pre-defined roles. You can add new roles to set finer permissions." +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:97 +msgid "The total number of user document types limit has been crossed." +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:25 +msgid "The value you pasted was {0} characters long. Max allowed characters is {1}." +msgstr "" + +#. Description of the 'Condition' (Small Text) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "The webhook will be triggered if this expression is true" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 +msgid "The {0} is already on auto repeat {1}" +msgstr "" + +#. Label of the section_break_6 (Section Break) field in DocType 'Website +#. Settings' +#. Label of the theme (Data) field in DocType 'Website Theme' +#. Label of the theme_scss (Code) field in DocType 'Website Theme' +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Theme" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:130 +msgid "Theme Changed" +msgstr "" + +#. Label of the bootstrap_theme_section (Tab Break) field in DocType 'Website +#. Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Theme Configuration" +msgstr "" + +#. Label of the theme_url (Data) field in DocType 'Website Theme' +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Theme URL" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:125 +msgid "There are documents which have workflow states that do not exist in this Workflow. It is recommended that you add these states to the Workflow and change their states before removing these states." +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:442 +msgid "There are no upcoming events for you." +msgstr "" + +#: frappe/website/web_template/discussions/discussions.html:3 +msgid "There are no {0} for this {1}, why don't you start one!" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:973 +msgid "There are {0} with the same filters already in the queue:" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:81 +#: frappe/website/doctype/web_form/web_form.js:318 +msgid "There can be only 9 Page Break fields in a Web Form" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1444 +msgid "There can be only one Fold in a form" +msgstr "" + +#: frappe/contacts/doctype/address/address.py:183 +msgid "There is an error in your Address Template {0}" +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:162 +msgid "There is no data to be exported" +msgstr "" + +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:492 +msgid "There is nothing new to show you right now." +msgstr "" + +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 +msgid "There is some problem with the file url: {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:970 +msgid "There is {0} with the same filters already in the queue:" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.py:156 +msgid "There must be atleast one permission rule." +msgstr "" + +#: frappe/www/error.py:17 +msgid "There was an error building this page" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 +msgid "There was an error saving filters" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/attachments.js:216 +msgid "There were errors" +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:277 +msgid "There were errors while creating the document. Please try again." +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:843 +msgid "There were errors while sending email. Please try again." +msgstr "" + +#: frappe/model/naming.py:502 +msgid "There were some errors setting the name, please contact the administrator" +msgstr "" + +#. Description of the 'Announcement Widget' (Text Editor) field in DocType +#. 'Navbar Settings' +#: frappe/core/doctype/navbar_settings/navbar_settings.json +msgid "These announcements will appear inside a dismissible alert below the Navbar." +msgstr "" + +#. Description of the 'Metadata' (Section Break) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "These fields are used to provide resource server metadata to clients querying the \"well known protected resource\" end point." +msgstr "" + +#. Description of the 'LDAP Custom Settings' (Section Break) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "These settings are required if 'Custom' LDAP Directory is used" +msgstr "" + +#. Description of the 'Defaults' (Section Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values." +msgstr "" + +#: frappe/www/third_party_apps.html:3 frappe/www/third_party_apps.html:14 +msgid "Third Party Apps" +msgstr "" + +#. Label of the third_party_authentication (Section Break) field in DocType +#. 'User' +#: frappe/core/doctype/user/user.json +msgid "Third Party Authentication" +msgstr "" + +#: frappe/geo/doctype/currency/currency.js:8 +msgid "This Currency is disabled. Enable to use in transactions" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 +msgid "This Kanban Board will be private" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:666 +msgid "This Month" +msgstr "" + +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:670 +msgid "This Quarter" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:662 +msgid "This Week" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:674 +msgid "This Year" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:220 +msgid "This action is irreversible. Do you wish to continue?" +msgstr "" + +#: frappe/__init__.py:546 +msgid "This action is only allowed for {}" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:117 +#: frappe/public/js/frappe/model/model.js:706 +msgid "This cannot be undone" +msgstr "" + +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +msgstr "" + +#. Description of the 'Is Public' (Check) field in DocType 'Number Card' +#: frappe/desk/doctype/number_card/number_card.json +msgid "This card will be available to all Users if this is set" +msgstr "" + +#. Description of the 'Is Public' (Check) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "This chart will be available to all Users if this is set" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:212 +msgid "This doctype has no orphan fields to trim" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1055 +msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." +msgstr "" + +#: frappe/model/delete_doc.py:153 +msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." +msgstr "" + +#: frappe/www/confirm_workflow_action.html:8 +msgid "This document has been modified after the email was sent." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1305 +msgid "This document has unsaved changes which might not appear in final PDF.
    Consider saving the document before printing." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1102 +msgid "This document is already amended, you cannot ammend it again" +msgstr "" + +#: frappe/model/document.py:475 +msgid "This document is currently locked and queued for execution. Please try again after some time." +msgstr "" + +#: frappe/templates/emails/auto_repeat_fail.html:7 +msgid "This email is autogenerated" +msgstr "" + +#: frappe/printing/doctype/network_printer_settings/network_printer_settings.py:30 +msgid "This feature can not be used as dependencies are missing.\n" +"\t\t\t\tPlease contact your system manager to enable this by installing pycups!" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:23 +msgid "This feature is brand new and still experimental" +msgstr "" + +#. Description of the 'Depends On' (Code) field in DocType 'Customize Form +#. Field' +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "This field will appear only if the fieldname defined here has value OR the rules are true (examples):\n" +"myfield\n" +"eval:doc.myfield=='My Value'\n" +"eval:doc.age>18" +msgstr "" + +#: frappe/core/doctype/file/file.py:525 +msgid "This file is attached to a protected document and cannot be deleted." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FilePreview.vue:76 +msgid "This file is public and can be accessed by anyone, even without logging in. Mark it private to limit access." +msgstr "" + +#: frappe/core/doctype/file/file.js:20 +msgid "This file is public. It can be accessed without authentication." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:1199 +msgid "This form has been modified after you have loaded it" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:2259 +msgid "This form is not editable due to a Workflow." +msgstr "" + +#. Description of the 'Is Default' (Check) field in DocType 'Address Template' +#: frappe/contacts/doctype/address_template/address_template.json +msgid "This format is used if country specific format is not found" +msgstr "" + +#: frappe/integrations/doctype/geolocation_settings/geolocation_settings.py:52 +msgid "This geolocation provider is not supported yet." +msgstr "" + +#. Description of the 'Header' (HTML Editor) field in DocType 'Website +#. Slideshow' +#: frappe/website/doctype/website_slideshow/website_slideshow.json +msgid "This goes above the slideshow." +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2197 +msgid "This is a background report. Please set the appropriate filters and then generate a new one." +msgstr "" + +#: frappe/utils/password_strength.py:158 +msgid "This is a top-10 common password." +msgstr "" + +#: frappe/utils/password_strength.py:160 +msgid "This is a top-100 common password." +msgstr "" + +#: frappe/utils/password_strength.py:162 +msgid "This is a very common password." +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.js:9 +msgid "This is a virtual doctype and data is cleared periodically." +msgstr "" + +#: frappe/templates/emails/auto_reply.html:5 +msgid "This is an automatically generated reply" +msgstr "" + +#: frappe/utils/password_strength.py:164 +msgid "This is similar to a commonly used password." +msgstr "" + +#. Description of the 'Current Value' (Int) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "This is the number of the last created transaction with this prefix" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:407 +msgid "This link has already been activated for verification." +msgstr "" + +#: frappe/utils/verified_command.py:49 +msgid "This link is invalid or expired. Please make sure you have pasted correctly." +msgstr "" + +#: frappe/printing/page/print/print.js:431 +msgid "This may get printed on multiple pages" +msgstr "" + +#: frappe/utils/goal.py:109 +msgid "This month" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1045 +msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." +msgstr "" + +#: frappe/templates/emails/auto_email_report.html:57 +msgid "This report was generated on {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:861 +msgid "This report was generated {0}." +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:122 +msgid "This request has not yet been approved by the user." +msgstr "" + +#: frappe/templates/includes/navbar/navbar_items.html:95 +msgid "This site is in read only mode, full functionality will be restored soon." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.js:73 +msgid "This site is running in developer mode. Any change made here will be updated in code." +msgstr "" + +#: frappe/www/attribution.html:11 +msgid "This software is built on top of many open source packages." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:71 +msgid "This title will be used as the title of the webpage as well as in meta tags" +msgstr "" + +#: frappe/public/js/frappe/form/controls/base_input.js:129 +msgid "This value is fetched from {0}'s {1} field" +msgstr "" + +#. Description of the 'Max Report Rows' (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "This value specifies the max number of rows that can be rendered in report view." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:85 +msgid "This will be automatically generated when you publish the page, you can also enter a route yourself if you wish" +msgstr "" + +#. Description of the 'Callback Message' (Small Text) field in DocType +#. 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "This will be shown in a modal after routing" +msgstr "" + +#. Description of the 'Report Description' (Data) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "This will be shown to the user in a dialog after routing to the report" +msgstr "" + +#: frappe/www/third_party_apps.html:23 +msgid "This will log out {0} from all other devices" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:3 +msgid "This will permanently remove your data." +msgstr "" + +#: frappe/desk/doctype/form_tour/form_tour.js:103 +msgid "This will reset this tour and show it to all users. Are you sure?" +msgstr "" + +#: frappe/core/doctype/rq_job/rq_job.js:15 +msgid "This will terminate the job immediately and might be dangerous, are you sure?" +msgstr "" + +#: frappe/core/doctype/user/user.py:1255 +msgid "Throttled" +msgstr "" + +#. Label of the thumbnail_url (Small Text) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Thumbnail URL" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the thursday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Thursday" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'DocField' +#. Label of the time (Datetime) field in DocType 'Recorder' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' +#. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' +#. Option for the 'Field Type' (Select) field in DocType 'Custom Field' +#. Option for the 'Type' (Select) field in DocType 'Customize Form Field' +#. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/recorder/recorder.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/core/doctype/report_filter/report_filter.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Time" +msgstr "" + +#. Label of the time_format (Select) field in DocType 'Language' +#. Label of the time_format (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Time Format" +msgstr "" + +#. Label of the time_interval (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Time Interval" +msgstr "" + +#. Label of the timeseries (Check) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Time Series" +msgstr "" + +#. Label of the based_on (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Time Series Based On" +msgstr "" + +#. Label of the time_taken (Duration) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Time Taken" +msgstr "" + +#. Label of the rate_limit_seconds (Int) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Time Window (Seconds)" +msgstr "" + +#. Label of the time_zone (Select) field in DocType 'System Settings' +#. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form +#. Label of the time_zone (Data) field in DocType 'Web Page View' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/desk/page/setup_wizard/setup_wizard.js:407 +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Time Zone" +msgstr "" + +#. Label of the time_zones (Text) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "Time Zones" +msgstr "" + +#. Label of the time_format (Data) field in DocType 'Country' +#: frappe/geo/doctype/country/country.json +msgid "Time format" +msgstr "" + +#. Label of the time_in_queries (Float) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "Time in Queries" +msgstr "" + +#. Description of the 'Expiry time of QR Code Image Page' (Int) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Time in seconds to retain QR code image on server. Min:240" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:413 +msgid "Time series based on is required to create a dashboard chart" +msgstr "" + +#: frappe/public/js/frappe/form/controls/time.js:124 +msgid "Time {0} must be in format: {1}" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Timed Out" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:64 +msgid "Timeless Night" +msgstr "" + +#. Label of the timeline (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "Timeline" +msgstr "" + +#. Label of the timeline_doctype (Link) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Timeline DocType" +msgstr "" + +#. Label of the timeline_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Timeline Field" +msgstr "" + +#. Label of the timeline_links_sections (Section Break) field in DocType +#. 'Communication' +#. Label of the timeline_links (Table) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Timeline Links" +msgstr "" + +#. Label of the timeline_name (Dynamic Link) field in DocType 'Activity Log' +#: frappe/core/doctype/activity_log/activity_log.json +msgid "Timeline Name" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1539 +msgid "Timeline field must be a Link or Dynamic Link" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1535 +msgid "Timeline field must be a valid fieldname" +msgstr "" + +#. Label of the timeout (Duration) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "Timeout" +msgstr "" + +#. Label of the timeout (Int) field in DocType 'Report' +#: frappe/core/doctype/report/report.json +msgid "Timeout (In Seconds)" +msgstr "" + +#. Label of the timeseries (Check) field in DocType 'Dashboard Chart Source' +#: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json +msgid "Timeseries" +msgstr "" + +#. Label of the timespan (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/public/js/frappe/ui/filters/filter.js:28 +msgid "Timespan" +msgstr "" + +#. Label of the timestamp (Datetime) field in DocType 'Access Log' +#: frappe/core/doctype/access_log/access_log.json +msgid "Timestamp" +msgstr "" + +#: frappe/desk/doctype/system_console/system_console.js:41 +msgid "Tip: Try the new dropdown console using" +msgstr "" + +#. Label of the title (Data) field in DocType 'DocType State' +#. Label of the method (Data) field in DocType 'Error Log' +#. Label of the title (Data) field in DocType 'Page' +#. Label of the title (Data) field in DocType 'Changelog Feed' +#. Label of the title (Data) field in DocType 'Form Tour' +#. Label of the title (Data) field in DocType 'Form Tour Step' +#. Label of the title (Data) field in DocType 'Module Onboarding' +#. Label of the title (Data) field in DocType 'Note' +#. Label of the title (Data) field in DocType 'Onboarding Step' +#. Label of the title (Data) field in DocType 'System Health Report Errors' +#. Label of the title (Data) field in DocType 'Workspace' +#. Label of the title (Data) field in DocType 'Email Group' +#. Label of the title (Data) field in DocType 'Discussion Topic' +#. Label of the title (Data) field in DocType 'Help Article' +#. Label of the title (Data) field in DocType 'Portal Menu Item' +#. Label of the title (Data) field in DocType 'Web Form' +#. Label of the list_title (Data) field in DocType 'Web Form' +#. Label of the title (Data) field in DocType 'Web Page' +#. Label of the meta_title (Data) field in DocType 'Web Page' +#. Label of the title (Data) field in DocType 'Website Sidebar' +#. Label of the title (Data) field in DocType 'Website Sidebar Item' +#: frappe/core/doctype/doctype/boilerplate/controller_list.html:14 +#: frappe/core/doctype/doctype/boilerplate/controller_list.html:23 +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/core/doctype/error_log/error_log.json +#: frappe/core/doctype/page/page.json +#: frappe/desk/doctype/changelog_feed/changelog_feed.json +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/desk/doctype/module_onboarding/module_onboarding.json +#: frappe/desk/doctype/note/note.json +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#: frappe/desk/doctype/system_health_report_errors/system_health_report_errors.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/email/doctype/email_group/email_group.json +#: frappe/public/js/frappe/views/workspace/workspace.js:393 +#: frappe/website/doctype/discussion_topic/discussion_topic.json +#: frappe/website/doctype/help_article/help_article.json +#: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_sidebar/website_sidebar.json +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Title" +msgstr "" + +#. Label of the title_field (Data) field in DocType 'DocType' +#. Label of the title_field (Data) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Title Field" +msgstr "" + +#. Label of the title_prefix (Data) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Title Prefix" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1476 +msgid "Title field must be a valid fieldname" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:70 +msgid "Title of the page" +msgstr "" + +#. Label of the recipients (Code) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/permission_log/permission_log.js:12 +#: frappe/public/js/frappe/views/inbox/inbox_view.js:70 +msgid "To" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:53 +msgctxt "Email Recipients" +msgid "To" +msgstr "" + +#. Label of the to_date (Date) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/report/website_analytics/website_analytics.js:14 +msgid "To Date" +msgstr "" + +#. Label of the to_date_field (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "To Date Field" +msgstr "" + +#. Label of a Link in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/todo/todo_list.js:6 +msgid "To Do" +msgstr "" + +#. Description of the 'Subject' (Data) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "To add dynamic subject, use jinja tags like\n\n" +"
    New {{ doc.doctype }} #{{ doc.name }}
    " +msgstr "" + +#. Description of the 'Subject' (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "To add dynamic subject, use jinja tags like\n\n" +"
    {{ doc.name }} Delivered
    " +msgstr "" + +#. Description of the 'JSON Request Body' (Code) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "To add dynamic values from the document, use jinja tags like\n\n" +"
    \n" +"
    { \"id\": \"{{ doc.name }}\" }\n"
    +"
    \n" +"
    " +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:109 +msgid "To allow more reports update limit in System Settings." +msgstr "" + +#. Label of the section_break_10 (Section Break) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "To and CC" +msgstr "" + +#. Description of the 'Use First Day of Period' (Check) field in DocType 'Auto +#. Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "To begin the date range at the start of the chosen period. For example, if 'Year' is selected as the period, the report will start from January 1st of the current year." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:35 +msgid "To configure Auto Repeat, enable \"Allow Auto Repeat\" from {0}." +msgstr "" + +#: frappe/www/login.html:76 +msgid "To enable it follow the instructions in the following link: {0}" +msgstr "" + +#: frappe/core/doctype/server_script/server_script.js:40 +msgid "To enable server scripts, read the {0}." +msgstr "" + +#: frappe/desk/doctype/onboarding_step/onboarding_step.js:18 +msgid "To export this step as JSON, link it in a Onboarding document and save the document." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:126 +msgid "To generate password click {0}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:862 +msgid "To get the updated report, click on {0}." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:139 +msgid "To know more click {0}" +msgstr "" + +#. Description of the 'Console' (Code) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "To print output use print(text)" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:291 +msgid "To set the role {0} in the user {1}, kindly set the {2} field as {3} in one of the {4} record." +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.js:8 +msgid "To use Google Calendar, enable {0}." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.js:8 +msgid "To use Google Contacts, enable {0}." +msgstr "" + +#. Description of the 'Enable Google indexing' (Check) field in DocType +#. 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "To use Google Indexing, enable Google Settings." +msgstr "" + +#. Description of the 'Slack Channel' (Link) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "To use Slack Channel, add a Slack Webhook URL." +msgstr "" + +#: frappe/public/js/frappe/utils/diffview.js:44 +msgid "To version" +msgstr "" + +#. Label of a shortcut in the Tools Workspace +#. Name of a DocType +#. Name of a report +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:55 +#: frappe/automation/workspace/tools/tools.json +#: frappe/desk/doctype/todo/todo.json frappe/desk/report/todo/todo.json +msgid "ToDo" +msgstr "" + +#: frappe/public/js/frappe/form/controls/date.js:58 +#: frappe/public/js/frappe/ui/filters/filter.js:733 +#: frappe/public/js/frappe/views/calendar/calendar.js:274 +msgid "Today" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1572 +msgid "Toggle Chart" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +msgid "Toggle Full Width" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:33 +msgid "Toggle Grid View" +msgstr "" + +#: frappe/public/js/frappe/ui/page.js:201 +#: frappe/public/js/frappe/ui/page.js:203 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 +msgid "Toggle Sidebar" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1966 +msgctxt "Button in list view menu" +msgid "Toggle Sidebar" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +msgid "Toggle Theme" +msgstr "" + +#. Option for the 'Response Type' (Select) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Token Cache" +msgstr "" + +#. Label of the token_endpoint_auth_method (Select) field in DocType 'OAuth +#. Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Token Endpoint Auth Method" +msgstr "" + +#. Label of the token_type (Data) field in DocType 'Token Cache' +#: frappe/integrations/doctype/token_cache/token_cache.json +msgid "Token Type" +msgstr "" + +#. Label of the token_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Token URI" +msgstr "" + +#: frappe/utils/oauth.py:184 +msgid "Token is missing" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:739 +msgid "Tomorrow" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:68 +#: frappe/model/workflow.py:310 +msgid "Too Many Documents" +msgstr "" + +#: frappe/rate_limiter.py:101 +msgid "Too Many Requests" +msgstr "" + +#: frappe/database/database.py:473 +msgid "Too many changes to database in single action." +msgstr "" + +#: frappe/utils/background_jobs.py:730 +msgid "Too many queued background jobs ({0}). Please retry after some time." +msgstr "" + +#: frappe/core/doctype/user/user.py:1043 +msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" +msgstr "" + +#. Name of a Workspace +#. Label of a Card Break in the Tools Workspace +#: frappe/automation/workspace/tools/tools.json +msgid "Tools" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:153 +msgid "Top" +msgstr "" + +#: frappe/core/report/prepared_report_analytics/prepared_report_analytics.js:13 +msgid "Top 10" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/top_bar_item/top_bar_item.json +msgid "Top Bar Item" +msgstr "" + +#. Label of the top_bar_items (Table) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Top Bar Items" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:245 +msgid "Top Center" +msgstr "" + +#. Label of the top_errors (Table) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Top Errors" +msgstr "" + +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:244 +msgid "Top Left" +msgstr "" + +#. Option for the 'Position' (Select) field in DocType 'Form Tour Step' +#. Option for the 'Page Number' (Select) field in DocType 'Print Format' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +#: frappe/printing/doctype/print_format/print_format.json +#: frappe/public/js/print_format_builder/PrintFormatControls.vue:246 +msgid "Top Right" +msgstr "" + +#. Label of the topic (Link) field in DocType 'Discussion Reply' +#: frappe/website/doctype/discussion_reply/discussion_reply.json +msgid "Topic" +msgstr "" + +#: frappe/desk/query_report.py:587 +#: frappe/public/js/frappe/views/reports/print_grid.html:45 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 +msgid "Total" +msgstr "" + +#. Label of the total_background_workers (Int) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Background Workers" +msgstr "" + +#. Label of the total_errors (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Errors (last 1 day)" +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:259 +msgid "Total Images" +msgstr "" + +#. Label of the total_outgoing_emails (Int) field in DocType 'System Health +#. Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Outgoing Emails" +msgstr "" + +#. Label of the total_subscribers (Int) field in DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Total Subscribers" +msgstr "" + +#. Label of the total_users (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Total Users" +msgstr "" + +#. Label of the total_working_time (Duration) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Total Working Time" +msgstr "" + +#. Description of the 'Initial Sync Count' (Select) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Total number of emails to sync in initial sync process" +msgstr "" + +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 +msgid "Total:" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1258 +msgid "Totals" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1233 +msgid "Totals Row" +msgstr "" + +#. Label of the trace_id (Data) field in DocType 'Error Log' +#: frappe/core/doctype/error_log/error_log.json +msgid "Trace ID" +msgstr "" + +#. Label of the traceback (Code) field in DocType 'Patch Log' +#: frappe/core/doctype/patch_log/patch_log.json +msgid "Traceback" +msgstr "" + +#. Label of the track_changes (Check) field in DocType 'DocType' +#. Label of the track_changes (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Track Changes" +msgstr "" + +#. Label of the track_email_status (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Track Email Status" +msgstr "" + +#. Label of the track_field (Data) field in DocType 'Milestone' +#: frappe/automation/doctype/milestone/milestone.json +msgid "Track Field" +msgstr "" + +#. Label of the track_seen (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Track Seen" +msgstr "" + +#. Label of the track_steps (Check) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Track Steps" +msgstr "" + +#. Label of the track_views (Check) field in DocType 'DocType' +#. Label of the track_views (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Track Views" +msgstr "" + +#. Description of the 'Track Email Status' (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Track if your email has been opened by the recipient.\n" +"
    \n" +"Note: If you're sending to multiple recipients, even if 1 recipient reads the email, it'll be considered \"Opened\"" +msgstr "" + +#. Description of a DocType +#: frappe/automation/doctype/milestone_tracker/milestone_tracker.json +msgid "Track milestones for any document" +msgstr "" + +#. Label of a Card Break in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "Tracking" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1821 +msgid "Tracking URL generated and copied to clipboard" +msgstr "" + +#: frappe/desk/page/setup_wizard/install_fixtures.py:31 +msgid "Transgender" +msgstr "" + +#: frappe/public/js/workflow_builder/components/Properties.vue:19 +msgid "Transition Properties" +msgstr "" + +#. Label of the transition_rules (Section Break) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Transition Rules" +msgstr "" + +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + +#. Label of the transitions (Table) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Transitions" +msgstr "" + +#. Label of the translatable (Check) field in DocType 'DocField' +#. Label of the translatable (Check) field in DocType 'Custom Field' +#. Label of the translatable (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Translatable" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:2252 +msgid "Translate Data" +msgstr "" + +#. Label of the translated_doctype (Check) field in DocType 'DocType' +#. Label of the translated_doctype (Check) field in DocType 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Translate Link Fields" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1658 +msgid "Translate values" +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:11 +msgid "Translate {0}" +msgstr "" + +#. Label of the translated_text (Code) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Translated Text" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/translation/translation.json +msgid "Translation" +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:46 +msgid "Translations" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/translation/translation.json +msgid "Translator" +msgstr "" + +#. Option for the 'Email Status' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Trash" +msgstr "" + +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#. Option for the 'DocType View' (Select) field in DocType 'Workspace Shortcut' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Tree" +msgstr "" + +#: frappe/public/js/frappe/list/base_list.js:210 +msgid "Tree View" +msgstr "" + +#. Description of the 'Is Tree' (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Tree structures are implemented using Nested Set" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:19 +msgid "Tree view is not available for {0}" +msgstr "" + +#. Label of the method (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Trigger Method" +msgstr "" + +#: frappe/public/js/frappe/ui/keyboard.js:196 +msgid "Trigger Primary Action" +msgstr "" + +#: frappe/tests/test_translate.py:55 +msgid "Trigger caching" +msgstr "" + +#. Description of the 'Trigger Method' (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Trigger on valid methods like \"before_insert\", \"after_update\", etc (will depend on the DocType selected)" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:144 +msgid "Trim Table" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:318 +msgid "Try Again" +msgstr "" + +#. Label of the try_naming_series (Data) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Try a Naming Series" +msgstr "" + +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 +msgid "Try the new Print Designer" +msgstr "" + +#: frappe/utils/password_strength.py:106 +msgid "Try to avoid repeated words and characters" +msgstr "" + +#: frappe/utils/password_strength.py:98 +msgid "Try to use a longer keyboard pattern with more turns" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the tuesday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Tuesday" +msgstr "" + +#. Label of the two_factor_auth (Check) field in DocType 'Role' +#. Label of the two_factor_authentication (Section Break) field in DocType +#. 'System Settings' +#: frappe/core/doctype/role/role.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Two Factor Authentication" +msgstr "" + +#. Label of the two_factor_method (Select) field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Two Factor Authentication method" +msgstr "" + +#. Label of the communication_medium (Select) field in DocType 'Communication' +#. Label of the fieldtype (Select) field in DocType 'DocField' +#. Label of the fieldtype (Select) field in DocType 'Customize Form Field' +#. Label of the type (Data) field in DocType 'Console Log' +#. Label of the type (Select) field in DocType 'Dashboard Chart' +#. Label of the type (Select) field in DocType 'Desktop Icon' +#. Label of the type (Select) field in DocType 'Notification Log' +#. Label of the type (Select) field in DocType 'Number Card' +#. Label of the type (Select) field in DocType 'System Console' +#. Label of the type (Select) field in DocType 'Workspace' +#. Label of the type (Select) field in DocType 'Workspace Link' +#. Label of the type (Select) field in DocType 'Workspace Shortcut' +#. Label of the type (Select) field in DocType 'Web Template' +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/console_log/console_log.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +#: frappe/desk/doctype/notification_log/notification_log.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/desk/doctype/system_console/system_console.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_link/workspace_link.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/views/file/file_view.js:370 +#: frappe/public/js/frappe/views/workspace/workspace.js:399 +#: frappe/public/js/frappe/widgets/widget_dialog.js:404 +#: frappe/website/doctype/web_template/web_template.json +#: frappe/www/attribution.html:35 +msgid "Type" +msgstr "" + +#: frappe/public/js/frappe/form/controls/comment.js:90 +msgid "Type a reply / comment" +msgstr "" + +#: frappe/templates/includes/search_template.html:51 +msgid "Type something in the search box to search" +msgstr "" + +#: frappe/templates/discussions/comment_box.html:8 +#: frappe/templates/discussions/reply_section.html:53 +#: frappe/templates/discussions/topic_modal.html:11 +msgid "Type title" +msgstr "" + +#: frappe/templates/discussions/discussions.js:341 +msgid "Type your reply here..." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:143 +msgid "Type:" +msgstr "" + +#. Label of the ui_tour (Check) field in DocType 'Form Tour' +#. Label of the ui_tour (Check) field in DocType 'Form Tour Step' +#: frappe/desk/doctype/form_tour/form_tour.json +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "UI Tour" +msgstr "" + +#. Label of the uid (Int) field in DocType 'Communication' +#. Label of the uid (Data) field in DocType 'Email Flag Queue' +#. Label of the uid (Data) field in DocType 'Unhandled Email' +#: frappe/core/doctype/communication/communication.json +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "UID" +msgstr "" + +#. Label of the uidnext (Int) field in DocType 'Email Account' +#. Label of the uidnext (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "UIDNEXT" +msgstr "" + +#. Label of the uidvalidity (Data) field in DocType 'Email Account' +#. Label of the uidvalidity (Data) field in DocType 'IMAP Folder' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/imap_folder/imap_folder.json +msgid "UIDVALIDITY" +msgstr "" + +#. Option for the 'Email Sync Option' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "UNSEEN" +msgstr "" + +#. Description of the 'Redirect URIs' (Text) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.\n" +"
    e.g. http://hostname/api/method/frappe.integrations.oauth2_logins.login_via_facebook" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Workspace' +#. Option for the 'Type' (Select) field in DocType 'Workspace Shortcut' +#. Label of the url (Data) field in DocType 'Workspace Shortcut' +#. Label of the url (Small Text) field in DocType 'Integration Request' +#. Label of the url (Text) field in DocType 'Webhook Request Log' +#. Label of the url (Data) field in DocType 'Top Bar Item' +#. Label of the url (Data) field in DocType 'Website Slideshow Item' +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:471 +#: frappe/website/doctype/top_bar_item/top_bar_item.json +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "URL" +msgstr "" + +#. Description of the 'Documentation Link' (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "URL for documentation or help" +msgstr "" + +#: frappe/core/doctype/file/file.py:231 +msgid "URL must start with http:// or https://" +msgstr "" + +#. Description of the 'Resource Documentation' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of a human-readable page with info that developers might need." +msgstr "" + +#. Description of the 'Client URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL of a web page providing information about the client." +msgstr "" + +#. Description of the 'Resource TOS URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info about the protected resource's terms of service." +msgstr "" + +#. Description of the 'Resource Policy URI' (Data) field in DocType 'OAuth +#. Settings' +#: frappe/integrations/doctype/oauth_settings/oauth_settings.json +msgid "URL of human-readable page with info on requirements about how the client can use the data." +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:84 +msgid "URL of the page" +msgstr "" + +#. Description of the 'Policy URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable policy document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'TOS URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that points to a human-readable terms of service document for the client. Should be shown to end-user before authorizing." +msgstr "" + +#. Description of the 'Logo URI' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "URL that references a logo for the client." +msgstr "" + +#. Description of the 'URL' (Data) field in DocType 'Website Slideshow Item' +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "URL to go to on clicking the slideshow image" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/utm_campaign/utm_campaign.json +msgid "UTM Campaign" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/utm_medium/utm_medium.json +msgid "UTM Medium" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/utm_source/utm_source.json +msgid "UTM Source" +msgstr "" + +#. Option for the 'Naming Rule' (Select) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "UUID" +msgstr "" + +#: frappe/desk/form/document_follow.py:79 +msgid "Un-following document {0}" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.py:67 +msgid "Unable to find DocType {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/capture.js:338 +msgid "Unable to load camera." +msgstr "" + +#: frappe/public/js/frappe/model/model.js:230 +msgid "Unable to load: {0}" +msgstr "" + +#: frappe/utils/csvutils.py:37 +msgid "Unable to open attached file. Did you export it as CSV?" +msgstr "" + +#: frappe/core/doctype/file/utils.py:98 frappe/core/doctype/file/utils.py:130 +msgid "Unable to read file format for {0}" +msgstr "" + +#: frappe/core/doctype/communication/email.py:180 +msgid "Unable to send mail because of a missing email account. Please setup default Email Account from Settings > Email Account" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:450 +msgid "Unable to update event" +msgstr "" + +#: frappe/core/doctype/file/file.py:489 +msgid "Unable to write file format for {0}" +msgstr "" + +#. Label of the unassign_condition (Code) field in DocType 'Assignment Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Unassign Condition" +msgstr "" + +#: frappe/app.py:399 +msgid "Uncaught Exception" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:103 +msgid "Unchanged" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:518 +msgid "Undo" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:526 +msgid "Undo last action" +msgstr "" + +#: frappe/database/query.py:1497 +msgid "Unescaped quotes in string literal: {0}" +msgstr "" + +#: frappe/public/js/frappe/form/templates/form_sidebar.html:109 +#: frappe/public/js/frappe/form/toolbar.js:879 +msgid "Unfollow" +msgstr "" + +#. Name of a DocType +#: frappe/email/doctype/unhandled_email/unhandled_email.json +msgid "Unhandled Email" +msgstr "" + +#. Label of the unhandled_emails (Int) field in DocType 'System Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Unhandled Emails" +msgstr "" + +#. Label of the unique (Check) field in DocType 'DocField' +#. Label of the unique (Check) field in DocType 'Custom Field' +#. Label of the unique (Check) field in DocType 'Customize Form Field' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +msgid "Unique" +msgstr "" + +#. Description of the 'Software ID' (Data) field in DocType 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Unique ID assigned by the client developer used to identify the client software to be dynamically registered.\n" +"
    \n" +"Should remain same across multiple versions or updates of the software." +msgstr "" + +#: frappe/website/report/website_analytics/website_analytics.js:60 +msgid "Unknown" +msgstr "" + +#: frappe/public/js/frappe/model/model.js:209 +msgid "Unknown Column: {0}" +msgstr "" + +#: frappe/utils/data.py:1256 +msgid "Unknown Rounding Method: {}" +msgstr "" + +#: frappe/auth.py:319 +msgid "Unknown User" +msgstr "" + +#: frappe/utils/csvutils.py:54 +msgid "Unknown file encoding. Tried to use: {0}" +msgstr "" + +#: frappe/core/doctype/submission_queue/submission_queue.js:7 +msgid "Unlock Reference Document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 +#: frappe/website/doctype/web_form/web_form.js:86 +msgid "Unpublish" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Email Flag Queue' +#: frappe/email/doctype/email_flag_queue/email_flag_queue.json +msgid "Unread" +msgstr "" + +#. Label of the unread_notification_sent (Check) field in DocType +#. 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Unread Notification Sent" +msgstr "" + +#: frappe/utils/safe_exec.py:498 +msgid "Unsafe SQL query" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:159 +#: frappe/public/js/frappe/form/controls/multicheck.js:166 +msgid "Unselect All" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#: frappe/core/doctype/comment/comment.json +msgid "Unshared" +msgstr "" + +#: frappe/email/queue.py:67 +msgid "Unsubscribe" +msgstr "" + +#. Label of the unsubscribe_method (Data) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Unsubscribe Method" +msgstr "" + +#. Label of the unsubscribe_params (Code) field in DocType 'Email Queue' +#: frappe/email/doctype/email_queue/email_queue.json +msgid "Unsubscribe Params" +msgstr "" + +#. Label of the unsubscribed (Check) field in DocType 'Contact' +#. Label of the unsubscribed (Check) field in DocType 'User' +#. Label of the unsubscribed (Check) field in DocType 'Email Group Member' +#: frappe/contacts/doctype/contact/contact.json +#: frappe/core/doctype/user/user.json +#: frappe/email/doctype/email_group_member/email_group_member.json +#: frappe/email/queue.py:123 +msgid "Unsubscribed" +msgstr "" + +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 +msgid "Unsupported function or invalid field name: {0}" +msgstr "" + +#: frappe/public/js/frappe/data_import/import_preview.js:72 +msgid "Untitled Column" +msgstr "" + +#: frappe/core/doctype/file/file.js:38 +msgid "Unzip" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:132 +msgid "Unzipped {0} files" +msgstr "" + +#: frappe/public/js/frappe/views/file/file_view.js:125 +msgid "Unzipping files..." +msgstr "" + +#: frappe/desk/doctype/event/event.py:273 +msgid "Upcoming Events for Today" +msgstr "" + +#. Label of the update (Button) field in DocType 'Document Naming Settings' +#: frappe/core/doctype/data_import/data_import_list.js:36 +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +#: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js:23 +#: frappe/custom/doctype/customize_form/customize_form.js:438 +#: frappe/desk/doctype/bulk_update/bulk_update.js:15 +#: frappe/printing/page/print_format_builder/print_format_builder.js:447 +#: frappe/printing/page/print_format_builder/print_format_builder.js:507 +#: frappe/printing/page/print_format_builder/print_format_builder.js:678 +#: frappe/printing/page/print_format_builder/print_format_builder.js:765 +#: frappe/public/js/frappe/form/grid_row.js:428 +msgid "Update" +msgstr "" + +#. Label of the update_amendment_naming (Button) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Update Amendment Naming" +msgstr "" + +#. Option for the 'Import Type' (Select) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Update Existing Records" +msgstr "" + +#. Label of the update_field (Select) field in DocType 'Workflow Document +#. State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Update Field" +msgstr "" + +#: frappe/core/doctype/installed_applications/installed_applications.js:6 +#: frappe/core/doctype/installed_applications/installed_applications.js:13 +msgid "Update Hooks Resolution Order" +msgstr "" + +#: frappe/core/doctype/installed_applications/installed_applications.js:45 +msgid "Update Order" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:494 +msgid "Update Password" +msgstr "" + +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + +#. Label of the update_series (Section Break) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Update Series Counter" +msgstr "" + +#. Label of the update_series_start (Button) field in DocType 'Document Naming +#. Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "Update Series Number" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Update Settings" +msgstr "" + +#: frappe/public/js/frappe/views/translation_manager.js:13 +msgid "Update Translations" +msgstr "" + +#. Label of the update_value (Small Text) field in DocType 'Bulk Update' +#. Label of the update_value (Data) field in DocType 'Workflow Document State' +#: frappe/desk/doctype/bulk_update/bulk_update.json +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Update Value" +msgstr "" + +#: frappe/utils/change_log.py:381 +msgid "Update from Frappe Cloud" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:375 +msgid "Update {0} records" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'Permission Log' +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/permission_log/permission_log.json +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 +#: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 +#: frappe/public/js/frappe/web_form/web_form.js:451 +msgid "Updated" +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.js:32 +msgid "Updated Successfully" +msgstr "" + +#: frappe/public/js/frappe/desk.js:446 +msgid "Updated To A New Version 🎉" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:372 +msgid "Updated successfully" +msgstr "" + +#: frappe/utils/response.py:335 +msgid "Updating" +msgstr "" + +#: frappe/public/js/frappe/form/save.js:11 +msgctxt "Freeze message while updating a document" +msgid "Updating" +msgstr "" + +#: frappe/email/doctype/email_queue/email_queue_list.js:49 +msgid "Updating Email Queue Statuses. The emails will be picked up in the next scheduled run." +msgstr "" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.js:17 +msgid "Updating counter may lead to document name conflicts if not done properly" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.py:23 +msgid "Updating global settings" +msgstr "" + +#: frappe/core/doctype/document_naming_settings/document_naming_settings.js:59 +msgid "Updating naming series options" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:136 +msgid "Updating related fields..." +msgstr "" + +#: frappe/desk/doctype/bulk_update/bulk_update.py:95 +msgid "Updating {0}" +msgstr "" + +#: frappe/core/doctype/data_import/data_import.js:36 +msgid "Updating {0} of {1}, {2}" +msgstr "" + +#: frappe/public/js/billing.bundle.js:131 +msgid "Upgrade plan" +msgstr "" + +#: frappe/public/js/frappe/list/list_sidebar.js:331 +msgid "Upgrade your support experience with Frappe Helpdesk" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 +#: frappe/public/js/frappe/form/grid.js:66 +#: frappe/public/js/frappe/form/templates/form_sidebar.html:13 +msgid "Upload" +msgstr "" + +#: frappe/public/js/print_format_builder/LetterHeadEditor.vue:93 +msgid "Upload Image" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 +msgid "Upload file" +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 +msgid "Upload {0} files" +msgstr "" + +#. Label of the uploaded_to_dropbox (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Uploaded To Dropbox" +msgstr "" + +#. Label of the uploaded_to_google_drive (Check) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "Uploaded To Google Drive" +msgstr "" + +#. Description of the 'Value to Validate' (Data) field in DocType 'Onboarding +#. Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +#, python-format +msgid "Use % for any non empty value." +msgstr "" + +#. Label of the ascii_encode_password (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Use ASCII encoding for password" +msgstr "" + +#. Label of the use_first_day_of_period (Check) field in DocType 'Auto Email +#. Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Use First Day of Period" +msgstr "" + +#. Label of the use_html (Check) field in DocType 'Email Template' +#: frappe/email/doctype/email_template/email_template.json +msgid "Use HTML" +msgstr "" + +#. Label of the use_imap (Check) field in DocType 'Email Account' +#. Label of the use_imap (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Use IMAP" +msgstr "" + +#. Label of the use_number_format_from_currency (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Use Number Format from Currency" +msgstr "" + +#. Label of the use_post (Check) field in DocType 'SMS Settings' +#: frappe/core/doctype/sms_settings/sms_settings.json +msgid "Use POST" +msgstr "" + +#. Label of the use_report_chart (Check) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Use Report Chart" +msgstr "" + +#. Label of the use_ssl (Check) field in DocType 'Email Account' +#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Account' +#. Label of the use_ssl (Check) field in DocType 'Email Domain' +#. Label of the use_ssl_for_outgoing (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Use SSL" +msgstr "" + +#. Label of the use_starttls (Check) field in DocType 'Email Account' +#. Label of the use_starttls (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Use STARTTLS" +msgstr "" + +#. Label of the use_tls (Check) field in DocType 'Email Account' +#. Label of the use_tls (Check) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Use TLS" +msgstr "" + +#: frappe/utils/password_strength.py:44 +msgid "Use a few words, avoid common phrases." +msgstr "" + +#. Label of the login_id_is_different (Check) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Use different Email ID" +msgstr "" + +#. Description of the 'Detect CSV type' (Check) field in DocType 'Data Import' +#: frappe/core/doctype/data_import/data_import.json +msgid "Use if the default settings don't seem to detect your data correctly" +msgstr "" + +#: frappe/model/db_query.py:411 +msgid "Use of sub-query or function is restricted" +msgstr "" + +#: frappe/printing/page/print/print.js:292 +msgid "Use the new Print Format Builder" +msgstr "" + +#. Description of the 'Title Field' (Data) field in DocType 'Customize Form' +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Use this fieldname to generate title" +msgstr "" + +#. Description of the 'Always BCC Address' (Data) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Use this, for example, if all sent emails should also be send to an archive." +msgstr "" + +#. Label of the used_oauth (Check) field in DocType 'User Email' +#: frappe/core/doctype/user_email/user_email.json +msgid "Used OAuth" +msgstr "" + +#. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' +#. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' +#. Label of the user (Link) field in DocType 'Activity Log' +#. Label of the user (Link) field in DocType 'API Request Log' +#. Label of the user (Link) field in DocType 'Communication' +#. Label of the user (Link) field in DocType 'DocShare' +#. Label of the user (Link) field in DocType 'Log Setting User' +#. Label of the user (Link) field in DocType 'Permission Inspector' +#. Name of a DocType +#. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 'Note Seen By' +#. Label of the user (Link) field in DocType 'Notification Settings' +#. Label of the user (Link) field in DocType 'Route History' +#. Label of the user (Link) field in DocType 'Document Follow' +#. Label of the user (Link) field in DocType 'Google Calendar' +#. Label of the user (Link) field in DocType 'OAuth Authorization Code' +#. Label of the user (Link) field in DocType 'OAuth Bearer Token' +#. Label of the user (Link) field in DocType 'OAuth Client' +#. Label of the user (Link) field in DocType 'Token Cache' +#. Label of the user (Link) field in DocType 'Webhook Request Log' +#. Label of the user (Link) field in DocType 'Personal Data Download Request' +#. Label of the user (Link) field in DocType 'Workflow Action' +#: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +#: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json +#: frappe/core/doctype/activity_log/activity_log.json +#: frappe/core/doctype/api_request_log/api_request_log.json +#: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/log_setting_user/log_setting_user.json +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json +#: frappe/core/doctype/user_permission/user_permission.json +#: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 +#: frappe/core/workspace/users/users.json +#: frappe/desk/doctype/dashboard_settings/dashboard_settings.json +#: frappe/desk/doctype/note_seen_by/note_seen_by.json +#: frappe/desk/doctype/notification_settings/notification_settings.json +#: frappe/desk/doctype/route_history/route_history.json +#: frappe/email/doctype/document_follow/document_follow.json +#: frappe/integrations/doctype/google_calendar/google_calendar.json +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +#: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json +#: frappe/integrations/doctype/oauth_client/oauth_client.json +#: frappe/integrations/doctype/token_cache/token_cache.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/public/js/frappe/form/templates/set_sharing.html:3 +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +#: frappe/workflow/doctype/workflow_action/workflow_action.json +msgid "User" +msgstr "" + +#: frappe/core/doctype/has_role/has_role.py:25 +msgid "User '{0}' already has the role '{1}'" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/report/user_activity_report.json +msgid "User Activity Report" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/report/user_activity_report_without_sort.json +msgid "User Activity Report Without Sort" +msgstr "" + +#. Label of the user_agent (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "User Agent" +msgstr "" + +#. Label of the in_create (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "User Cannot Create" +msgstr "" + +#. Label of the read_only (Check) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "User Cannot Search" +msgstr "" + +#: frappe/public/js/frappe/desk.js:550 +msgid "User Changed" +msgstr "" + +#. Label of the defaults (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Defaults" +msgstr "" + +#. Label of the user_details_tab (Tab Break) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Details" +msgstr "" + +#. Name of a report +#: frappe/core/report/user_doctype_permissions/user_doctype_permissions.json +msgid "User Doctype Permissions" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "User Document Type" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:98 +msgid "User Document Types Limit Exceeded" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_email/user_email.json +msgid "User Email" +msgstr "" + +#. Label of the user_emails (Table) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Emails" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_group/user_group.json +msgid "User Group" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_group_member/user_group_member.json +msgid "User Group Member" +msgstr "" + +#. Label of the user_group_members (Table MultiSelect) field in DocType 'User +#. Group' +#: frappe/core/doctype/user_group/user_group.json +msgid "User Group Members" +msgstr "" + +#. Label of the userid (Data) field in DocType 'User Social Login' +#: frappe/core/doctype/user_social_login/user_social_login.json +msgid "User ID" +msgstr "" + +#. Label of the user_id_property (Data) field in DocType 'Social Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "User ID Property" +msgstr "" + +#. Label of the user (Link) field in DocType 'Contact' +#: frappe/contacts/doctype/contact/contact.json +msgid "User Id" +msgstr "" + +#. Label of the user_id_field (Select) field in DocType 'User Type' +#: frappe/core/doctype/user_type/user_type.json +msgid "User Id Field" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:283 +msgid "User Id Field is mandatory in the user type {0}" +msgstr "" + +#. Label of the user_image (Attach Image) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "User Image" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:115 +msgid "User Menu" +msgstr "" + +#. Label of the user_name (Data) field in DocType 'Personal Data Download +#. Request' +#: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json +msgid "User Name" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_permission/user_permission.json +msgid "User Permission" +msgstr "" + +#. Label of a Link in the Users Workspace +#: frappe/core/page/permission_manager/permission_manager_help.html:30 +#: frappe/core/workspace/users/users.json +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 +msgid "User Permissions" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1924 +msgctxt "Button in list view menu" +msgid "User Permissions" +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:32 +msgid "User Permissions are used to limit users to specific records." +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:124 +msgid "User Permissions created successfully" +msgstr "" + +#. Name of a DocType +#. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json +#: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json +msgid "User Role" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_role_profile/user_role_profile.json +msgid "User Role Profile" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_select_document_type/user_select_document_type.json +msgid "User Select Document Type" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +msgid "User Settings" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/user_social_login/user_social_login.json +msgid "User Social Login" +msgstr "" + +#. Label of the _user_tags (Data) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "User Tags" +msgstr "" + +#. Label of the user_type (Link) field in DocType 'User' +#. Name of a DocType +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type/user_type.py:83 +msgid "User Type" +msgstr "" + +#. Label of the user_type_modules (Table) field in DocType 'User Type' +#. Name of a DocType +#: frappe/core/doctype/user_type/user_type.json +#: frappe/core/doctype/user_type_module/user_type_module.json +msgid "User Type Module" +msgstr "" + +#. Description of the 'Allow Login using Mobile Number' (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "User can login using Email id or Mobile number" +msgstr "" + +#. Description of the 'Allow Login using User Name' (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "User can login using Email id or User Name" +msgstr "" + +#: frappe/templates/includes/login/login.js:292 +msgid "User does not exist." +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:83 +msgid "User does not have permission to create the new {0}" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:56 +msgid "User is mandatory for Share" +msgstr "" + +#. Label of the user_must_always_select (Check) field in DocType 'Document +#. Naming Settings' +#: frappe/core/doctype/document_naming_settings/document_naming_settings.json +msgid "User must always select" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission.py:60 +msgid "User permission already exists" +msgstr "" + +#: frappe/www/login.py:171 +msgid "User with email address {0} does not exist" +msgstr "" + +#: frappe/integrations/doctype/ldap_settings/ldap_settings.py:225 +msgid "User with email: {0} does not exist in the system. Please ask 'System Administrator' to create the user for you." +msgstr "" + +#: frappe/core/doctype/user/user.py:538 +msgid "User {0} cannot be deleted" +msgstr "" + +#: frappe/core/doctype/user/user.py:328 +msgid "User {0} cannot be disabled" +msgstr "" + +#: frappe/core/doctype/user/user.py:611 +msgid "User {0} cannot be renamed" +msgstr "" + +#: frappe/permissions.py:139 +msgid "User {0} does not have access to this document" +msgstr "" + +#: frappe/permissions.py:162 +msgid "User {0} does not have doctype access via role permission for document {1}" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:275 +msgid "User {0} does not have the permission to create a Workspace." +msgstr "" + +#: frappe/templates/emails/data_deletion_approval.html:1 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:112 +msgid "User {0} has requested for data deletion" +msgstr "" + +#: frappe/core/doctype/user/user.py:1384 +msgid "User {0} impersonated as {1}" +msgstr "" + +#: frappe/utils/oauth.py:269 +msgid "User {0} is disabled" +msgstr "" + +#: frappe/sessions.py:243 +msgid "User {0} is disabled. Please contact your System Manager." +msgstr "" + +#: frappe/desk/form/assign_to.py:104 +msgid "User {0} is not permitted to access this document." +msgstr "" + +#. Label of the userinfo_uri (Data) field in DocType 'Connected App' +#: frappe/integrations/doctype/connected_app/connected_app.json +msgid "Userinfo URI" +msgstr "" + +#. Label of the username (Data) field in DocType 'User' +#. Label of the username (Data) field in DocType 'User Social Login' +#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_social_login/user_social_login.json +#: frappe/www/login.py:110 +msgid "Username" +msgstr "" + +#: frappe/core/doctype/user/user.py:700 +msgid "Username {0} already exists" +msgstr "" + +#. Label of the users (Table MultiSelect) field in DocType 'Assignment Rule' +#. Name of a Workspace +#. Label of a Card Break in the Users Workspace +#. Label of the users_section (Section Break) field in DocType 'System Health +#. Report' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +#: frappe/core/workspace/users/users.json +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Users" +msgstr "" + +#. Description of the 'Protect Attached Files' (Check) field in DocType +#. 'DocType' +#. Description of the 'Protect Attached Files' (Check) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Users are only able to delete attached files if the document is either in draft or if the document is canceled and they are also able to delete the document." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager.js:355 +msgid "Users with role {0}:" +msgstr "" + +#: frappe/public/js/frappe/ui/theme_switcher.js:70 +msgid "Uses system's theme to switch between light and dark mode" +msgstr "" + +#: frappe/public/js/frappe/desk.js:154 +msgid "Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand." +msgstr "" + +#. Label of the utilization (Percent) field in DocType 'System Health Report +#. Workers' +#: frappe/desk/doctype/system_health_report_workers/system_health_report_workers.json +msgid "Utilization" +msgstr "" + +#. Label of the utilization_percent (Percent) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Utilization %" +msgstr "" + +#. Option for the 'Validity' (Select) field in DocType 'OAuth Authorization +#. Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Valid" +msgstr "" + +#: frappe/templates/includes/login/login.js:52 +#: frappe/templates/includes/login/login.js:65 +msgid "Valid Login id required." +msgstr "" + +#: frappe/templates/includes/login/login.js:39 +msgid "Valid email and name required" +msgstr "" + +#. Label of the validate_action (Check) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Validate Field" +msgstr "" + +#. Label of the validate_frappe_mail_settings (Button) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Validate Frappe Mail Settings" +msgstr "" + +#. Label of the validate_ssl_certificate (Check) field in DocType 'Email +#. Account' +#. Label of the validate_ssl_certificate (Check) field in DocType 'Email +#. Domain' +#. Label of the validate_ssl_certificate_for_outgoing (Check) field in DocType +#. 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "Validate SSL Certificate" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:384 +msgid "Validation Error" +msgstr "" + +#. Label of the validity (Select) field in DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "Validity" +msgstr "" + +#. Label of the value (Data) field in DocType 'Milestone' +#. Label of the defvalue (Text) field in DocType 'DefaultValue' +#. Label of the value (Data) field in DocType 'Document Naming Rule Condition' +#. Label of the value (Data) field in DocType 'SMS Parameter' +#. Label of the value (Data) field in DocType 'Query Parameters' +#. Label of the value (Small Text) field in DocType 'Webhook Header' +#. Label of the value (Text) field in DocType 'Website Meta Tag' +#: frappe/automation/doctype/milestone/milestone.json +#: frappe/core/doctype/defaultvalue/defaultvalue.json +#: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json +#: frappe/core/doctype/prepared_report/prepared_report.js:8 +#: frappe/core/doctype/sms_parameter/sms_parameter.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 +#: frappe/email/doctype/auto_email_report/auto_email_report.js:95 +#: frappe/integrations/doctype/query_parameters/query_parameters.json +#: frappe/integrations/doctype/webhook_header/webhook_header.json +#: frappe/public/js/frappe/list/bulk_operations.js:336 +#: frappe/public/js/frappe/list/bulk_operations.js:398 +#: frappe/public/js/frappe/list/list_view_permission_restrictions.html:4 +#: frappe/website/doctype/web_form/web_form.js:197 +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json +msgid "Value" +msgstr "" + +#. Label of the value_based_on (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Value Based On" +msgstr "" + +#. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value Change" +msgstr "" + +#. Label of the value_changed (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value Changed" +msgstr "" + +#. Label of the property_value (Data) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Value To Be Set" +msgstr "" + +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 +msgid "Value cannot be changed for {0}" +msgstr "" + +#: frappe/model/document.py:781 +msgid "Value cannot be negative for" +msgstr "" + +#: frappe/model/document.py:785 +msgid "Value cannot be negative for {0}: {1}" +msgstr "" + +#: frappe/custom/doctype/property_setter/property_setter.js:7 +msgid "Value for a check field can be either 0 or 1" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:616 +msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" +msgstr "" + +#: frappe/model/base_document.py:502 +msgid "Value for {0} cannot be a list" +msgstr "" + +#. Description of the 'Due Date Based On' (Select) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Value from this field will be set as the due date in the ToDo" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:714 +msgid "Value must be one of {0}" +msgstr "" + +#. Description of the 'Token Endpoint Auth Method' (Select) field in DocType +#. 'OAuth Client' +#: frappe/integrations/doctype/oauth_client/oauth_client.json +msgid "Value of \"None\" implies a public client. In such a case Client Secret is not given to the client and token exchange makes use of PKCE." +msgstr "" + +#. Label of the value_to_validate (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Value to Validate" +msgstr "" + +#: frappe/model/base_document.py:1185 +msgid "Value too big" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:727 +msgid "Value {0} missing for {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:773 frappe/utils/data.py:869 +msgid "Value {0} must be in the valid duration format: d h m s" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:745 +#: frappe/core/doctype/data_import/importer.py:760 +msgid "Value {0} must in {1} format" +msgstr "" + +#: frappe/core/doctype/version/version_view.html:9 +msgid "Values Changed" +msgstr "" + +#. Option for the 'Font' (Select) field in DocType 'Print Settings' +#: frappe/printing/doctype/print_settings/print_settings.json +msgid "Verdana" +msgstr "" + +#: frappe/templates/includes/login/login.js:333 +msgid "Verification" +msgstr "" + +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 +msgid "Verification Code" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:10 +msgid "Verification Link" +msgstr "" + +#: frappe/templates/includes/login/login.js:383 +msgid "Verification code email not sent. Please contact Administrator." +msgstr "" + +#: frappe/twofactor.py:248 +msgid "Verification code has been sent to your registered email address." +msgstr "" + +#. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#: frappe/core/doctype/translation/translation.json +msgid "Verified" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:359 +#: frappe/templates/includes/login/login.js:337 +msgid "Verify" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:358 +msgid "Verify Password" +msgstr "" + +#: frappe/templates/includes/login/login.js:171 +msgid "Verifying..." +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/version/version.json +msgid "Version" +msgstr "" + +#: frappe/public/js/frappe/desk.js:166 +msgid "Version Updated" +msgstr "" + +#. Label of the video_url (Data) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Video URL" +msgstr "" + +#. Label of the view_name (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "View" +msgstr "" + +#: frappe/core/doctype/success_action/success_action.js:60 +#: frappe/public/js/frappe/form/success_action.js:89 +msgid "View All" +msgstr "" + +#: frappe/public/js/frappe/form/toolbar.js:580 +msgid "View Audit Trail" +msgstr "" + +#: frappe/core/doctype/user/user.js:144 +msgid "View Doctype Permissions" +msgstr "" + +#: frappe/core/doctype/file/file.js:4 +msgid "View File" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:220 +msgid "View Full Log" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:486 +#: frappe/public/js/frappe/widgets/quick_list_widget.js:258 +msgid "View List" +msgstr "" + +#. Name of a DocType +#: frappe/core/doctype/view_log/view_log.json +msgid "View Log" +msgstr "" + +#: frappe/core/doctype/user/user.js:135 +#: frappe/core/doctype/user_permission/user_permission.js:24 +msgid "View Permitted Documents" +msgstr "" + +#. Label of the view_properties (Button) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "View Properties (via Customize Form)" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "View Report" +msgstr "" + +#. Label of the view_settings (Section Break) field in DocType 'DocType' +#. Label of the view_settings_section (Section Break) field in DocType +#. 'Customize Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "View Settings" +msgstr "" + +#. Label of the view_switcher (Check) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "View Switcher" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#: frappe/hooks.py +#: frappe/website/doctype/website_settings/website_settings.js:16 +msgid "View Website" +msgstr "" + +#: frappe/www/confirm_workflow_action.html:12 +msgid "View document" +msgstr "" + +#: frappe/templates/emails/auto_email_report.html:60 +msgid "View report in your browser" +msgstr "" + +#: frappe/templates/emails/print_link.html:2 +msgid "View this in your browser" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:478 +msgctxt "Button in web form" +msgid "View your response" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.js:43 +#: frappe/desk/doctype/calendar_view/calendar_view_list.js:10 +#: frappe/desk/doctype/dashboard/dashboard_list.js:10 +msgid "View {0}" +msgstr "" + +#. Label of the viewed_by (Data) field in DocType 'View Log' +#: frappe/core/doctype/view_log/view_log.json +msgid "Viewed By" +msgstr "" + +#. Group in DocType's connections +#. Label of a Card Break in the Build Workspace +#: frappe/core/doctype/doctype/doctype.json +#: frappe/core/workspace/build/build.json +msgid "Views" +msgstr "" + +#. Label of the is_virtual (Check) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Virtual" +msgstr "" + +#: frappe/model/virtual_doctype.py:76 +msgid "Virtual DocType {} requires a static method called {} found {}" +msgstr "" + +#: frappe/model/virtual_doctype.py:89 +msgid "Virtual DocType {} requires overriding an instance method called {} found {}" +msgstr "" + +#. Label of the visibility_section (Section Break) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Visibility" +msgstr "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:41 +msgid "Visible to website/portal users." +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Communication' +#: frappe/core/doctype/communication/communication.json +msgid "Visit" +msgstr "" + +#: frappe/website/doctype/website_route_meta/website_route_meta.js:7 +msgid "Visit Web Page" +msgstr "" + +#. Label of the visitor_id (Data) field in DocType 'Web Page View' +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Visitor ID" +msgstr "" + +#: frappe/templates/discussions/reply_section.html:39 +msgid "Want to discuss?" +msgstr "" + +#. Option for the 'Address Type' (Select) field in DocType 'Address' +#: frappe/contacts/doctype/address/address.json +msgid "Warehouse" +msgstr "" + +#. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Warning" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.js:217 +msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1126 +msgid "Warning: Naming is not set" +msgstr "" + +#: frappe/public/js/frappe/model/meta.js:182 +msgid "Warning: Unable to find {0} in any table related to {1}" +msgstr "" + +#. Description of the 'Counter' (Int) field in DocType 'Document Naming Rule' +#: frappe/core/doctype/document_naming_rule/document_naming_rule.json +msgid "Warning: Updating counter may lead to document name conflicts if not done properly" +msgstr "" + +#: frappe/website/doctype/help_article/templates/help_article.html:24 +msgid "Was this article helpful?" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:127 +msgid "Watch Tutorial" +msgstr "" + +#. Option for the 'Action' (Select) field in DocType 'Onboarding Step' +#: frappe/desk/doctype/onboarding_step/onboarding_step.json +msgid "Watch Video" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.js:34 +msgid "We do not allow editing of this document. Simply click the Edit button on the workspace page to make your workspace editable and customize it as you wish" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:2 +msgid "We have received a request for deletion of {0} data associated with: {1}" +msgstr "" + +#: frappe/templates/emails/download_data.html:2 +msgid "We have received a request from you to download your {0} data associated with: {1}" +msgstr "" + +#: frappe/www/attribution.html:12 +msgid "We would like to thank the authors of these packages for their contribution." +msgstr "" + +#: frappe/www/contact.py:50 +msgid "We've received your query!" +msgstr "" + +#: frappe/public/js/frappe/form/controls/password.js:87 +msgid "Weak" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/workspace/website/website.json +msgid "Web Form" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_form_field/web_form_field.json +msgid "Web Form Field" +msgstr "" + +#. Label of the web_form_fields (Table) field in DocType 'Web Form' +#: frappe/website/doctype/web_form/web_form.json +msgid "Web Form Fields" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json +msgid "Web Form List Column" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#. Label of a shortcut in the Website Workspace +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/workspace/website/website.json +msgid "Web Page" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Web Page Block" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:1749 +msgid "Web Page URL" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_page_view/web_page_view.json +msgid "Web Page View" +msgstr "" + +#. Label of a Card Break in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "Web Site" +msgstr "" + +#. Label of the web_template (Link) field in DocType 'Web Page Block' +#. Name of a DocType +#: frappe/website/doctype/web_page_block/web_page_block.json +#: frappe/website/doctype/web_template/web_template.json +msgid "Web Template" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/web_template_field/web_template_field.json +msgid "Web Template Field" +msgstr "" + +#. Label of the web_template_values (Code) field in DocType 'Web Page Block' +#: frappe/website/doctype/web_page_block/web_page_block.json +msgid "Web Template Values" +msgstr "" + +#: frappe/utils/jinja_globals.py:48 +msgid "Web Template is not specified" +msgstr "" + +#. Label of the web_view (Tab Break) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Web View" +msgstr "" + +#. Name of a DocType +#. Label of the webhook (Link) field in DocType 'Webhook Request Log' +#. Label of a Link in the Integrations Workspace +#. Label of a shortcut in the Integrations Workspace +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +#: frappe/integrations/workspace/integrations/integrations.json +msgid "Webhook" +msgstr "" + +#. Label of the sb_webhook_data (Section Break) field in DocType 'Webhook' +#. Name of a DocType +#: frappe/integrations/doctype/webhook/webhook.json +#: frappe/integrations/doctype/webhook_data/webhook_data.json +msgid "Webhook Data" +msgstr "" + +#. Name of a DocType +#: frappe/integrations/doctype/webhook_header/webhook_header.json +msgid "Webhook Header" +msgstr "" + +#. Label of the sb_webhook_headers (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Headers" +msgstr "" + +#. Label of the sb_webhook (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Request" +msgstr "" + +#. Label of a Link in the Build Workspace +#. Name of a DocType +#: frappe/core/workspace/build/build.json +#: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json +msgid "Webhook Request Log" +msgstr "" + +#. Label of the webhook_secret (Password) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Secret" +msgstr "" + +#. Label of the sb_security (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Security" +msgstr "" + +#. Label of the sb_condition (Section Break) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "Webhook Trigger" +msgstr "" + +#. Label of the webhook_url (Data) field in DocType 'Slack Webhook URL' +#: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json +msgid "Webhook URL" +msgstr "" + +#. Group in Module Def's connections +#. Name of a Workspace +#: frappe/core/doctype/module_def/module_def.json +#: frappe/public/js/frappe/ui/apps_switcher.js:125 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +#: frappe/website/workspace/website/website.json +msgid "Website" +msgstr "" + +#. Name of a report +#: frappe/website/report/website_analytics/website_analytics.json +msgid "Website Analytics" +msgstr "" + +#. Name of a role +#: frappe/core/doctype/comment/comment.json +#: frappe/website/doctype/about_us_settings/about_us_settings.json +#: frappe/website/doctype/color/color.json +#: frappe/website/doctype/contact_us_settings/contact_us_settings.json +#: frappe/website/doctype/help_category/help_category.json +#: frappe/website/doctype/portal_settings/portal_settings.json +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_script/website_script.json +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/doctype/website_sidebar/website_sidebar.json +#: frappe/website/doctype/website_slideshow/website_slideshow.json +#: frappe/website/doctype/website_theme/website_theme.json +msgid "Website Manager" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/website_meta_tag/website_meta_tag.json +msgid "Website Meta Tag" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_route_meta/website_route_meta.json +#: frappe/website/workspace/website/website.json +msgid "Website Route Meta" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/website_route_redirect/website_route_redirect.json +msgid "Website Route Redirect" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_script/website_script.json +#: frappe/website/workspace/website/website.json +msgid "Website Script" +msgstr "" + +#. Label of the website_search_field (Data) field in DocType 'DocType' +#: frappe/core/doctype/doctype/doctype.json +msgid "Website Search Field" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1523 +msgid "Website Search Field must be a valid fieldname" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/workspace/website/website.json +msgid "Website Settings" +msgstr "" + +#. Label of the website_sidebar (Link) field in DocType 'Web Form' +#. Label of the website_sidebar (Link) field in DocType 'Web Page' +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/web_form/web_form.json +#: frappe/website/doctype/web_page/web_page.json +#: frappe/website/doctype/website_sidebar/website_sidebar.json +#: frappe/website/workspace/website/website.json +msgid "Website Sidebar" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/website_sidebar_item/website_sidebar_item.json +msgid "Website Sidebar Item" +msgstr "" + +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_slideshow/website_slideshow.json +#: frappe/website/workspace/website/website.json +msgid "Website Slideshow" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/website_slideshow_item/website_slideshow_item.json +msgid "Website Slideshow Item" +msgstr "" + +#. Label of the website_theme (Link) field in DocType 'Website Settings' +#. Name of a DocType +#. Label of a Link in the Website Workspace +#: frappe/website/doctype/website_settings/website_settings.json +#: frappe/website/doctype/website_theme/website_theme.json +#: frappe/website/workspace/website/website.json +msgid "Website Theme" +msgstr "" + +#. Name of a DocType +#: frappe/website/doctype/website_theme_ignore_app/website_theme_ignore_app.json +msgid "Website Theme Ignore App" +msgstr "" + +#. Label of the website_theme_image (Image) field in DocType 'Website Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Website Theme Image" +msgstr "" + +#. Label of the website_theme_image_link (Code) field in DocType 'Website +#. Settings' +#: frappe/website/doctype/website_settings/website_settings.json +msgid "Website Theme image link" +msgstr "" + +#. Option for the 'SocketIO Transport Mode' (Select) field in DocType 'System +#. Health Report' +#: frappe/desk/doctype/system_health_report/system_health_report.json +msgid "Websocket" +msgstr "" + +#. Option for the 'Day' (Select) field in DocType 'Assignment Rule Day' +#. Option for the 'Day' (Select) field in DocType 'Auto Repeat Day' +#. Option for the 'First Day of the Week' (Select) field in DocType 'Language' +#. Option for the 'First Day of the Week' (Select) field in DocType 'System +#. Settings' +#. Label of the wednesday (Check) field in DocType 'Event' +#. Option for the 'Day of Week' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/assignment_rule_day/assignment_rule_day.json +#: frappe/automation/doctype/auto_repeat_day/auto_repeat_day.json +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/desk/doctype/event/event.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Wednesday" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:276 +msgid "Week" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Weekdays" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Frequency' (Select) field in DocType 'User' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#. Option for the 'Frequency' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/core/doctype/user/user.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:399 +#: frappe/website/report/website_analytics/website_analytics.js:24 +msgid "Weekly" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +msgid "Weekly Long" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:384 +msgid "Welcome" +msgstr "" + +#. Label of the welcome_email_template (Link) field in DocType 'System +#. Settings' +#. Label of the welcome_email_template (Link) field in DocType 'Email Group' +#: frappe/core/doctype/system_settings/system_settings.json +#: frappe/email/doctype/email_group/email_group.json +msgid "Welcome Email Template" +msgstr "" + +#. Label of the welcome_url (Data) field in DocType 'Email Group' +#: frappe/email/doctype/email_group/email_group.json +msgid "Welcome URL" +msgstr "" + +#. Name of a Workspace +#: frappe/core/workspace/welcome_workspace/welcome_workspace.json +msgid "Welcome Workspace" +msgstr "" + +#: frappe/core/doctype/user/user.py:416 +msgid "Welcome email sent" +msgstr "" + +#: frappe/core/doctype/user/user.py:477 +msgid "Welcome to {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/notifications/notifications.js:62 +msgid "What's New" +msgstr "" + +#. Description of the 'Allow Guests to Upload Files' (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "When enabled this will allow guests to upload files to your application, You can enable this if you wish to collect files from user without having them to log in, for example in job applications web form." +msgstr "" + +#. Description of the 'Store Attached PDF Document' (Check) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "When sending document using email, store the PDF on Communication. Warning: This can increase your storage usage." +msgstr "" + +#. Description of the 'Force Web Capture Mode for Uploads' (Check) field in +#. DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "When uploading files, force the use of the web-based image capture. If this is unchecked, the default behavior is to use the mobile native camera when use from a mobile is detected." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:18 +msgid "When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number." +msgstr "" + +#. Description of the 'DocType View' (Select) field in DocType 'Workspace +#. Shortcut' +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +#: frappe/public/js/frappe/widgets/widget_dialog.js:481 +msgid "Which view of the associated DocType should this shortcut take you to?" +msgstr "" + +#. Label of the width (Data) field in DocType 'DocField' +#. Label of the width (Int) field in DocType 'Report Column' +#. Label of the width (Data) field in DocType 'Custom Field' +#. Label of the width (Data) field in DocType 'Customize Form Field' +#. Label of the width (Select) field in DocType 'Dashboard Chart Link' +#: frappe/core/doctype/docfield/docfield.json +#: frappe/core/doctype/report_column/report_column.json +#: frappe/custom/doctype/custom_field/custom_field.json +#: frappe/custom/doctype/customize_form_field/customize_form_field.json +#: frappe/desk/doctype/dashboard_chart_link/dashboard_chart_link.json +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:8 +#: frappe/public/js/print_format_builder/ConfigureColumns.vue:11 +msgid "Width" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder_column_selector.html:2 +msgid "Widths can be set in px or %." +msgstr "" + +#. Label of the wildcard_filter (Check) field in DocType 'Report Filter' +#: frappe/core/doctype/report_filter/report_filter.json +msgid "Wildcard Filter" +msgstr "" + +#. Description of the 'Wildcard Filter' (Check) field in DocType 'Report +#. Filter' +#: frappe/core/doctype/report_filter/report_filter.json +msgid "Will add \"%\" before and after the query" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:485 +msgid "Will be your login ID" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:424 +msgid "Will only be shown if section headings are enabled" +msgstr "" + +#. Description of the 'Run Jobs only Daily if Inactive For (Days)' (Int) field +#. in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." +msgstr "" + +#: frappe/public/js/frappe/form/print_utils.js:45 +msgid "With Letter head" +msgstr "" + +#. Label of the worker_information_section (Section Break) field in DocType 'RQ +#. Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Worker Information" +msgstr "" + +#. Label of the worker_name (Data) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "Worker Name" +msgstr "" + +#. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Group in DocType's connections +#. Name of a DocType +#: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/doctype/doctype.json +#: frappe/public/js/workflow_builder/store.js:129 +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_action/workflow_action.json +#: frappe/workflow/doctype/workflow_action/workflow_action.py:444 +msgid "Workflow Action" +msgstr "" + +#. Name of a DocType +#. Description of a DocType +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json +msgid "Workflow Action Master" +msgstr "" + +#. Label of the workflow_action_name (Data) field in DocType 'Workflow Action +#. Master' +#: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json +msgid "Workflow Action Name" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_action_permitted_role/workflow_action_permitted_role.json +msgid "Workflow Action Permitted Role" +msgstr "" + +#. Description of the 'Is Optional State' (Check) field in DocType 'Workflow +#. Document State' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Workflow Action is not created for optional states" +msgstr "" + +#: frappe/public/js/workflow_builder/store.js:129 +#: frappe/workflow/doctype/workflow/workflow.js:25 +#: frappe/workflow/page/workflow_builder/workflow_builder.js:4 +msgid "Workflow Builder" +msgstr "" + +#. Label of the workflow_builder_id (Data) field in DocType 'Workflow Document +#. State' +#. Label of the workflow_builder_id (Data) field in DocType 'Workflow +#. Transition' +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Workflow Builder ID" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:11 +msgid "Workflow Builder allows you to create workflows visually. You can drag and drop states and link them to create transitions. Also you can update thieir properties from the sidebar." +msgstr "" + +#. Label of the workflow_data (JSON) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow Data" +msgstr "" + +#: frappe/public/js/workflow_builder/components/Properties.vue:44 +msgid "Workflow Details" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json +msgid "Workflow Document State" +msgstr "" + +#. Label of the workflow_name (Data) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow Name" +msgstr "" + +#. Label of the workflow_state (Data) field in DocType 'Workflow Action' +#. Name of a DocType +#: frappe/workflow/doctype/workflow_action/workflow_action.json +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow State" +msgstr "" + +#. Label of the workflow_state_field (Data) field in DocType 'Workflow' +#: frappe/workflow/doctype/workflow/workflow.json +msgid "Workflow State Field" +msgstr "" + +#: frappe/model/workflow.py:64 +msgid "Workflow State not set" +msgstr "" + +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 +msgid "Workflow State transition not allowed from {0} to {1}" +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.js:140 +msgid "Workflow States Don't Exist" +msgstr "" + +#: frappe/model/workflow.py:384 +msgid "Workflow Status" +msgstr "" + +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Workflow Transition" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + +#. Description of a DocType +#: frappe/workflow/doctype/workflow_state/workflow_state.json +msgid "Workflow state represents the current state of a document." +msgstr "" + +#: frappe/public/js/workflow_builder/store.js:83 +msgid "Workflow updated successfully" +msgstr "" + +#. Label of the workspace_section (Section Break) field in DocType 'User' +#. Label of a Link in the Build Workspace +#. Name of a DocType +#. Option for the 'Type' (Select) field in DocType 'Workspace' +#: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 +#: frappe/public/js/frappe/utils/utils.js:932 +#: frappe/public/js/frappe/views/workspace/workspace.js:10 +msgid "Workspace" +msgstr "" + +#: frappe/public/js/frappe/router.js:180 +msgid "Workspace {0} does not exist" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_chart/workspace_chart.json +msgid "Workspace Chart" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_custom_block/workspace_custom_block.json +msgid "Workspace Custom Block" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_link/workspace_link.json +msgid "Workspace Link" +msgstr "" + +#. Name of a role +#: frappe/desk/doctype/custom_html_block/custom_html_block.json +#: frappe/desk/doctype/workspace/workspace.json +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Manager" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_number_card/workspace_number_card.json +msgid "Workspace Number Card" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_quick_list/workspace_quick_list.json +msgid "Workspace Quick List" +msgstr "" + +#. Label of a standard navbar item +#. Type: Action +#. Name of a DocType +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +#: frappe/hooks.py +msgid "Workspace Settings" +msgstr "" + +#. Label of the workspace_setup_completed (Check) field in DocType 'Workspace +#. Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Setup Completed" +msgstr "" + +#. Name of a DocType +#: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json +msgid "Workspace Shortcut" +msgstr "" + +#. Label of the workspace_visibility_json (JSON) field in DocType 'Workspace +#. Settings' +#: frappe/desk/doctype/workspace_settings/workspace_settings.json +msgid "Workspace Visibility" +msgstr "" + +#: frappe/public/js/frappe/views/workspace/workspace.js:538 +msgid "Workspace {0} created" +msgstr "" + +#. Option for the 'View' (Select) field in DocType 'Form Tour' +#: frappe/desk/doctype/form_tour/form_tour.json +msgid "Workspaces" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:757 +msgid "Would you like to publish this comment? This means it will become visible to website/portal users." +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 +msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.py:41 +msgid "Wrapping up" +msgstr "" + +#. Label of the write (Check) field in DocType 'Custom DocPerm' +#. Label of the write (Check) field in DocType 'DocPerm' +#. Label of the write (Check) field in DocType 'DocShare' +#. Label of the write (Check) field in DocType 'User Document Type' +#: frappe/core/doctype/custom_docperm/custom_docperm.json +#: frappe/core/doctype/docperm/docperm.json +#: frappe/core/doctype/docshare/docshare.json +#: frappe/core/doctype/user_document_type/user_document_type.json +msgid "Write" +msgstr "" + +#: frappe/model/base_document.py:1011 +msgid "Wrong Fetch From value" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:495 +msgid "X Axis Field" +msgstr "" + +#. Label of the x_field (Select) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "X Field" +msgstr "" + +#. Option for the 'Format' (Select) field in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "XLSX" +msgstr "" + +#. Label of the y_axis (Table) field in DocType 'Dashboard Chart' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +msgid "Y Axis" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:502 +msgid "Y Axis Fields" +msgstr "" + +#. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' +#: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json +#: frappe/public/js/frappe/views/reports/query_report.js:1233 +msgid "Y Field" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Yahoo Mail" +msgstr "" + +#. Option for the 'Service' (Select) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Yandex.Mail" +msgstr "" + +#. Label of the heatmap_year (Select) field in DocType 'Dashboard Chart' +#. Label of the year (Data) field in DocType 'Company History' +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/website/doctype/company_history/company_history.json +msgid "Year" +msgstr "" + +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#. Option for the 'Frequency' (Select) field in DocType 'Scheduled Job Type' +#. Option for the 'Event Frequency' (Select) field in DocType 'Server Script' +#. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' +#. Option for the 'Repeat On' (Select) field in DocType 'Event' +#. Option for the 'Stats Time Interval' (Select) field in DocType 'Number Card' +#. Option for the 'Period' (Select) field in DocType 'Auto Email Report' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json +#: frappe/core/doctype/server_script/server_script.json +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.json +#: frappe/desk/doctype/event/event.json +#: frappe/desk/doctype/number_card/number_card.json +#: frappe/email/doctype/auto_email_report/auto_email_report.json +#: frappe/public/js/frappe/utils/common.js:403 +msgid "Yearly" +msgstr "" + +#. Option for the 'Color' (Select) field in DocType 'DocType State' +#. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' +#: frappe/core/doctype/doctype_state/doctype_state.json +#: frappe/desk/doctype/kanban_board_column/kanban_board_column.json +msgid "Yellow" +msgstr "" + +#. Option for the 'Standard' (Select) field in DocType 'Page' +#. Option for the 'Is Standard' (Select) field in DocType 'Report' +#. Option for the 'Require Trusted Certificate' (Select) field in DocType 'LDAP +#. Settings' +#. Option for the 'Standard' (Select) field in DocType 'Print Format' +#: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:498 +#: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 +#: frappe/website/doctype/help_article/templates/help_article.html:25 +msgid "Yes" +msgstr "" + +#: frappe/public/js/frappe/ui/messages.js:32 +msgctxt "Approve confirmation dialog" +msgid "Yes" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:545 +msgctxt "Checkbox is checked" +msgid "Yes" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:727 +msgid "Yesterday" +msgstr "" + +#: frappe/public/js/frappe/utils/user.js:33 +msgctxt "Name of the current user. For example: You edited this 5 hours ago." +msgid "You" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:463 +msgid "You Liked" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + +#: frappe/public/js/frappe/dom.js:438 +msgid "You are connected to internet." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:20 +msgid "You are impersonating as another user." +msgstr "" + +#: frappe/integrations/frappe_providers/frappecloud_billing.py:28 +msgid "You are not allowed to access this resource" +msgstr "" + +#: frappe/permissions.py:431 +msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3}" +msgstr "" + +#: frappe/permissions.py:420 +msgid "You are not allowed to access this {0} record because it is linked to {1} '{2}' in row {3}, field {4}" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:68 +msgid "You are not allowed to create columns" +msgstr "" + +#: frappe/core/doctype/report/report.py:97 +msgid "You are not allowed to delete Standard Report" +msgstr "" + +#: frappe/website/doctype/website_theme/website_theme.py:73 +msgid "You are not allowed to delete a standard Website Theme" +msgstr "" + +#: frappe/core/doctype/report/report.py:391 +msgid "You are not allowed to edit the report." +msgstr "" + +#: frappe/core/doctype/data_import/exporter.py:121 +#: frappe/core/doctype/data_import/exporter.py:125 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 +#: frappe/permissions.py:626 +msgid "You are not allowed to export {} doctype" +msgstr "" + +#: frappe/public/js/frappe/views/treeview.js:450 +msgid "You are not allowed to print this report" +msgstr "" + +#: frappe/public/js/frappe/views/communication.js:787 +msgid "You are not allowed to send emails related to this document" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:632 +msgid "You are not allowed to update this Web Form Document" +msgstr "" + +#: frappe/public/js/frappe/request.js:37 +msgid "You are not connected to Internet. Retry after sometime." +msgstr "" + +#: frappe/public/js/frappe/web_form/webform_script.js:22 +msgid "You are not permitted to access this page without login." +msgstr "" + +#: frappe/www/app.py:27 +msgid "You are not permitted to access this page." +msgstr "" + +#: frappe/__init__.py:465 +msgid "You are not permitted to access this resource. Login to access" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/document_follow.js:131 +msgid "You are now following this document. You will receive daily updates via email. You can change this in User Settings." +msgstr "" + +#: frappe/core/doctype/installed_applications/installed_applications.py:117 +msgid "You are only allowed to update order, do not remove or add apps." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.js:284 +msgid "You are selecting Sync Option as ALL, It will resync all read as well as unread message from server. This may also cause the duplication of Communication (emails)." +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:414 +msgctxt "Form timeline" +msgid "You attached {0}" +msgstr "" + +#: frappe/printing/page/print_format_builder/print_format_builder.js:749 +msgid "You can add dynamic properties from the document by using Jinja templating." +msgstr "" + +#: frappe/printing/doctype/letter_head/letter_head.js:32 +msgid "You can also access wkhtmltopdf variables (valid only in PDF print):" +msgstr "" + +#: frappe/templates/emails/new_user.html:22 +msgid "You can also copy-paste following link in your browser" +msgstr "" + +#: frappe/templates/emails/download_data.html:9 +msgid "You can also copy-paste this" +msgstr "" + +#: frappe/templates/emails/delete_data_confirmation.html:11 +msgid "You can also copy-paste this {0} to your browser" +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:8 +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 "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:194 +msgid "You can continue with the onboarding after exploring this page" +msgstr "" + +#: frappe/model/delete_doc.py:177 +msgid "You can disable this {0} instead of deleting it." +msgstr "" + +#: frappe/core/doctype/file/file.py:761 +msgid "You can increase the limit from System Settings." +msgstr "" + +#: frappe/utils/synchronization.py:48 +msgid "You can manually remove the lock if you think it's safe: {}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/markdown_editor.js:75 +msgid "You can only insert images in Markdown fields" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:42 +msgid "You can only print upto {0} documents at a time" +msgstr "" + +#: frappe/core/doctype/user_type/user_type.py:104 +msgid "You can only set the 3 custom doctypes in the Document Types table." +msgstr "" + +#: frappe/handler.py:183 +msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." +msgstr "" + +#: frappe/core/doctype/data_export/exporter.py:199 +msgid "You can only upload upto 5000 records in one go. (may be less in some cases)" +msgstr "" + +#: frappe/website/doctype/web_page/web_page.js:92 +msgid "You can select one from the following," +msgstr "" + +#. Description of the 'Rate limit for email link login' (Int) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "You can set a high value here if multiple users will be logging in from the same network." +msgstr "" + +#: frappe/desk/query_report.py:382 +msgid "You can try changing the filters of your report." +msgstr "" + +#: frappe/core/page/permission_manager/permission_manager_help.html:27 +msgid "You can use Customize Form to set levels on fields." +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:30 +msgid "You can use wildcard %" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:394 +msgid "You can't set 'Options' for field {0}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:398 +msgid "You can't set 'Translatable' for field {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:74 +msgctxt "Form timeline" +msgid "You cancelled this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:61 +msgctxt "Form timeline" +msgid "You cancelled this document {1}" +msgstr "" + +#: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:417 +msgid "You cannot create a dashboard chart from single DocTypes" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:390 +msgid "You cannot unset 'Read Only' for field {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:125 +msgid "You changed the value of {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:114 +msgid "You changed the value of {0} {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:191 +msgid "You changed the values for {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:180 +msgid "You changed the values for {0} {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:443 +msgctxt "Form timeline" +msgid "You changed {0} to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:140 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:94 +msgid "You created this" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 +msgctxt "Form timeline" +msgid "You created this document {0}" +msgstr "" + +#: frappe/client.py:417 +msgid "You do not have Read or Select Permissions for {}" +msgstr "" + +#: frappe/public/js/frappe/request.js:177 +msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." +msgstr "" + +#: frappe/app.py:384 +msgid "You do not have enough permissions to complete the action" +msgstr "" + +#: frappe/database/query.py:531 +msgid "You do not have permission to access field: {0}" +msgstr "" + +#: frappe/desk/query_report.py:923 +msgid "You do not have permission to access {0}: {1}." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:960 +msgid "You do not have permissions to cancel all linked documents." +msgstr "" + +#: frappe/desk/query_report.py:43 +msgid "You don't have access to Report: {0}" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:835 +msgid "You don't have permission to access the {0} DocType." +msgstr "" + +#: frappe/utils/response.py:289 frappe/utils/response.py:293 +msgid "You don't have permission to access this file" +msgstr "" + +#: frappe/desk/query_report.py:49 +msgid "You don't have permission to get a report on: {0}" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:175 +msgid "You don't have the permissions to access this document" +msgstr "" + +#: frappe/templates/emails/new_message.html:1 +msgid "You have a new message from:" +msgstr "" + +#: frappe/handler.py:119 +msgid "You have been successfully logged out" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:247 +msgid "You have hit the row size limit on database table: {0}" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:412 +msgid "You have not entered a value. The field will be set to empty." +msgstr "" + +#: frappe/twofactor.py:437 +msgid "You have to enable Two Factor Auth from System Settings." +msgstr "" + +#: frappe/public/js/frappe/model/create_new.js:328 +msgid "You have unsaved changes in this form. Please save before you continue." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:50 +msgid "You have unseen notifications" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:125 +msgid "You have unseen {0}" +msgstr "" + +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:192 +msgid "You haven't added any Dashboard Charts or Number Cards yet." +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:503 +msgid "You haven't created a {0} yet" +msgstr "" + +#: frappe/rate_limiter.py:166 +msgid "You hit the rate limit because of too many requests. Please try after sometime." +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:151 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:105 +msgid "You last edited this" +msgstr "" + +#: frappe/public/js/frappe/widgets/widget_dialog.js:352 +msgid "You must add atleast one link." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:831 +msgid "You must be logged in to use this form." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:672 +msgid "You must login to submit this form" +msgstr "" + +#: frappe/model/document.py:358 +msgid "You need the '{0}' permission on {1} {2} to perform this action." +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:127 +msgid "You need to be Workspace Manager to delete a public workspace." +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:76 +msgid "You need to be Workspace Manager to edit this document" +msgstr "" + +#: frappe/www/attribution.py:16 +msgid "You need to be a system user to access this page." +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:91 +msgid "You need to be in developer mode to edit a Standard Web Form" +msgstr "" + +#: frappe/utils/response.py:278 +msgid "You need to be logged in and have System Manager Role to be able to access backups." +msgstr "" + +#: frappe/www/me.py:13 frappe/www/third_party_apps.py:10 +msgid "You need to be logged in to access this page" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.py:164 +msgid "You need to be logged in to access this {0}." +msgstr "" + +#: frappe/public/js/frappe/widgets/links_widget.js:63 +msgid "You need to create these first:" +msgstr "" + +#: frappe/www/login.html:76 +msgid "You need to enable JavaScript for your app to work." +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:62 +msgid "You need to have \"Share\" permission" +msgstr "" + +#: frappe/utils/print_format.py:268 +msgid "You need to install pycups to use this feature!" +msgstr "" + +#: frappe/core/doctype/recorder/recorder.js:38 +msgid "You need to select indexes you want to add first." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:160 +msgid "You need to set one IMAP folder for {0}" +msgstr "" + +#: frappe/model/rename_doc.py:391 +msgid "You need write permission on {0} {1} to merge" +msgstr "" + +#: frappe/model/rename_doc.py:386 +msgid "You need write permission on {0} {1} to rename" +msgstr "" + +#: frappe/client.py:449 +msgid "You need {0} permission to fetch values from {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:419 +msgctxt "Form timeline" +msgid "You removed attachment {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + +#: frappe/public/js/frappe/widgets/onboarding_widget.js:520 +msgid "You seem good to go!" +msgstr "" + +#: frappe/templates/includes/contact.js:20 +msgid "You seem to have written your name instead of your email. Please enter a valid email address so that we can get back." +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:31 +msgid "You selected Draft or Cancelled documents" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:48 +msgctxt "Form timeline" +msgid "You submitted this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:35 +msgctxt "Form timeline" +msgid "You submitted this document {0}" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/document_follow.js:144 +msgid "You unfollowed this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:183 +msgid "You viewed this" +msgstr "" + +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 +msgid "You've logged in as another user from another tab. Refresh this page to continue using system." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "" + +#: frappe/core/doctype/prepared_report/prepared_report.js:57 +msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:397 +msgid "Your Country" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:389 +msgid "Your Language" +msgstr "" + +#: frappe/templates/includes/comments/comments.html:21 +msgid "Your Name" +msgstr "" + +#: frappe/public/js/frappe/list/bulk_operations.js:132 +msgid "Your PDF is ready for download" +msgstr "" + +#: frappe/patches/v14_0/update_workspace2.py:34 +msgid "Your Shortcuts" +msgstr "" + +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:145 +#: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.py:151 +msgid "Your account has been deleted" +msgstr "" + +#: frappe/auth.py:517 +msgid "Your account has been locked and will resume after {0} seconds" +msgstr "" + +#: frappe/desk/form/assign_to.py:279 +msgid "Your assignment on {0} {1} has been removed by {2}" +msgstr "" + +#: frappe/core/doctype/file/file.js:74 +msgid "Your browser does not support the audio element." +msgstr "" + +#: frappe/core/doctype/file/file.js:56 +msgid "Your browser does not support the video element." +msgstr "" + +#: frappe/templates/pages/integrations/gcalendar-success.html:11 +msgid "Your connection request to Google Calendar was successfully accepted" +msgstr "" + +#: frappe/www/contact.html:35 +msgid "Your email address" +msgstr "" + +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 +msgid "Your form has been successfully updated" +msgstr "" + +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + +#: frappe/templates/emails/new_user.html:6 +msgid "Your login id is" +msgstr "" + +#: frappe/www/update-password.html:192 +msgid "Your new password has been set successfully." +msgstr "" + +#: frappe/www/update-password.html:172 +msgid "Your old password is incorrect." +msgstr "" + +#. Description of the 'Email Footer Address' (Small Text) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Your organization name and address for the email footer." +msgstr "" + +#: frappe/templates/emails/auto_reply.html:2 +msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." +msgstr "" + +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 +msgid "Your session has expired, please login again to continue." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/navbar.html:15 +msgid "Your site is undergoing maintenance or being updated." +msgstr "" + +#: frappe/templates/emails/verification_code.html:1 +msgid "Your verification code is {0}" +msgstr "" + +#: frappe/utils/data.py:1558 +msgid "Zero" +msgstr "" + +#. Description of the 'Only Send Records Updated in Last X Hours' (Int) field +#. in DocType 'Auto Email Report' +#: frappe/email/doctype/auto_email_report/auto_email_report.json +msgid "Zero means send records updated at anytime" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 +msgid "[Action taken by {0}]" +msgstr "" + +#. Label of the _doctype (Link) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "_doctype" +msgstr "" + +#. Label of the _report (Link) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "_report" +msgstr "" + +#: frappe/database/database.py:360 +msgid "`as_iterator` only works with `as_list=True` or `as_dict=True`" +msgstr "" + +#: frappe/utils/background_jobs.py:120 +msgid "`job_id` paramater is required for deduplication." +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "after_insert" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "amend" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:395 frappe/utils/data.py:1564 +msgid "and" +msgstr "" + +#: frappe/public/js/frappe/ui/sort_selector.html:5 +#: frappe/public/js/frappe/ui/sort_selector.js:48 +msgid "ascending" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "blue" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:35 +msgid "by Role" +msgstr "" + +#. Label of the profile (Code) field in DocType 'Recorder' +#: frappe/core/doctype/recorder/recorder.json +msgid "cProfile Output" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 +msgid "calendar" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "cancel" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "canceled" +msgstr "" + +#: frappe/templates/includes/list/filters.html:19 +msgid "clear" +msgstr "" + +#: frappe/public/js/frappe/form/templates/timeline_message_box.html:34 +msgid "commented" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "create" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "cyan" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:218 +#: frappe/public/js/frappe/utils/utils.js:1119 +msgctxt "Days (Field: Duration)" +msgid "d" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "darkgrey" +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:65 +msgid "dashboard" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "dd-mm-yyyy" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "dd.mm.yyyy" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "dd/mm/yyyy" +msgstr "" + +#. Option for the 'Queue' (Select) field in DocType 'RQ Job' +#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "default" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "deferred" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "delete" +msgstr "" + +#: frappe/public/js/frappe/ui/sort_selector.html:5 +#: frappe/public/js/frappe/ui/sort_selector.js:48 +msgid "descending" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:163 +msgid "document type..., e.g. customer" +msgstr "" + +#. Description of the 'Email Account Name' (Data) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "e.g. \"Support\", \"Sales\", \"Jerry Yang\"" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:183 +msgid "e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..." +msgstr "" + +#. Description of the 'Incoming Server' (Data) field in DocType 'Email Account' +#. Description of the 'Incoming Server' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "e.g. pop.gmail.com / imap.gmail.com" +msgstr "" + +#. Description of the 'Default Incoming' (Check) field in DocType 'Email +#. Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "e.g. replies@yourcomany.com. All replies will come to this inbox." +msgstr "" + +#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Account' +#. Description of the 'Outgoing Server' (Data) field in DocType 'Email Domain' +#: frappe/email/doctype/email_account/email_account.json +#: frappe/email/doctype/email_domain/email_domain.json +msgid "e.g. smtp.gmail.com" +msgstr "" + +#: frappe/custom/doctype/custom_field/custom_field.js:98 +msgid "e.g.:" +msgstr "" + +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "emacs" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "email" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 +msgid "email inbox" +msgstr "" + +#: frappe/permissions.py:425 frappe/permissions.py:436 +#: frappe/public/js/frappe/form/controls/link.js:507 +msgid "empty" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "export" +msgstr "" + +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "facebook" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "failed" +msgstr "" + +#. Option for the 'Social Login Provider' (Select) field in DocType 'Social +#. Login Key' +#: frappe/integrations/doctype/social_login_key/social_login_key.json +msgid "fairlogin" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "finished" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "gray" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "green" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "grey" +msgstr "" + +#: frappe/utils/backups.py:399 +msgid "gzip not found in PATH! This is required to take a backup." +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:219 +#: frappe/public/js/frappe/utils/utils.js:1123 +msgctxt "Hours (Field: Duration)" +msgid "h" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +msgid "hub" +msgstr "" + +#. Label of the icon (Data) field in DocType 'Page' +#: frappe/core/doctype/page/page.json +msgid "icon" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "import" +msgstr "" + +#: frappe/templates/signup.html:11 frappe/www/login.html:11 +msgid "jane@example.com" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:46 +msgid "just now" +msgstr "" + +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 +msgid "label" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "light-blue" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "link" +msgstr "" + +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "linkedin" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "list" +msgstr "" + +#: frappe/www/third_party_apps.html:43 +msgid "logged in" +msgstr "" + +#: frappe/website/doctype/web_form/web_form.js:363 +msgid "login_required" +msgstr "" + +#. Option for the 'Queue' (Select) field in DocType 'RQ Job' +#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "long" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:220 +#: frappe/public/js/frappe/utils/utils.js:1127 +msgctxt "Minutes (Field: Duration)" +msgid "m" +msgstr "" + +#: frappe/model/rename_doc.py:215 +msgid "merged {0} into {1}" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "mm-dd-yyyy" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "mm/dd/yyyy" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "module" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:178 +msgid "module name..." +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 +msgid "new" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:158 +msgid "new type of document" +msgstr "" + +#. Label of the no_failed (Int) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "no failed attempts" +msgstr "" + +#. Label of the nonce (Data) field in DocType 'OAuth Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "nonce" +msgstr "" + +#. Label of the notified (Check) field in DocType 'Reminder' +#: frappe/automation/doctype/reminder/reminder.json +msgid "notified" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:25 +msgid "now" +msgstr "" + +#: frappe/public/js/frappe/form/grid_pagination.js:116 +msgid "of" +msgstr "" + +#. Label of the old_parent (Data) field in DocType 'File' +#: frappe/core/doctype/file/file.json +msgid "old_parent" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_cancel" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_change" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_submit" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_trash" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_update" +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "on_update_after_submit" +msgstr "" + +#: frappe/public/js/frappe/utils/utils.js:392 frappe/www/login.html:90 +#: frappe/www/login.py:112 +msgid "or" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "orange" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "page" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "pink" +msgstr "" + +#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth +#. Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "plain" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "print" +msgstr "" + +#. Label of the processlist (HTML) field in DocType 'System Console' +#: frappe/desk/doctype/system_console/system_console.json +msgid "processlist" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "purple" +msgstr "" + +#. Option for the 'Type' (Select) field in DocType 'Desktop Icon' +#: frappe/desk/doctype/desktop_icon/desktop_icon.json +msgid "query-report" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "queued" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "read" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "red" +msgstr "" + +#: frappe/model/rename_doc.py:217 +msgid "renamed from {0} to {1}" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "report" +msgstr "" + +#. Label of the response (HTML) field in DocType 'Custom Role' +#: frappe/core/doctype/custom_role/custom_role.json +msgid "response" +msgstr "" + +#: frappe/core/doctype/deleted_document/deleted_document.py:61 +msgid "restored {0} as {1}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/duration.js:221 +#: frappe/public/js/frappe/utils/utils.js:1131 +msgctxt "Seconds (Field: Duration)" +msgid "s" +msgstr "" + +#. Option for the 'Code challenge method' (Select) field in DocType 'OAuth +#. Authorization Code' +#: frappe/integrations/doctype/oauth_authorization_code/oauth_authorization_code.json +msgid "s256" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "scheduled" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "select" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "share" +msgstr "" + +#. Option for the 'Queue' (Select) field in DocType 'RQ Job' +#. Option for the 'Queue Type(s)' (Select) field in DocType 'RQ Worker' +#: frappe/core/doctype/rq_job/rq_job.json +#: frappe/core/doctype/rq_worker/rq_worker.json +msgid "short" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 +msgid "since last month" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 +msgid "since last week" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 +msgid "since last year" +msgstr "" + +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 +msgid "since yesterday" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'RQ Job' +#: frappe/core/doctype/rq_job/rq_job.json +msgid "started" +msgstr "" + +#: frappe/desk/page/setup_wizard/setup_wizard.js:201 +msgid "starting the setup..." +msgstr "" + +#. Description of the 'Group Object Class' (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "string value, i.e. group" +msgstr "" + +#. Description of the 'LDAP Group Member attribute' (Data) field in DocType +#. 'LDAP Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "string value, i.e. member" +msgstr "" + +#. Description of the 'Custom Group Search' (Data) field in DocType 'LDAP +#. Settings' +#: frappe/integrations/doctype/ldap_settings/ldap_settings.json +msgid "string value, i.e. {0} or uid={0},ou=users,dc=example,dc=com" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "submit" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:173 +msgid "tag name..., e.g. #tag" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:168 +msgid "text in document type" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:36 +msgid "this form" +msgstr "" + +#: frappe/tests/test_translate.py:174 +msgid "this shouldn't break" +msgstr "" + +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "" + +#. Option for the 'Social Link Type' (Select) field in DocType 'Social Link +#. Settings' +#: frappe/website/doctype/social_link_settings/social_link_settings.json +msgid "twitter" +msgstr "" + +#: frappe/public/js/frappe/change_log.html:7 +msgid "updated to {0}" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:361 +msgid "use % as wildcard" +msgstr "" + +#: frappe/public/js/frappe/ui/filters/filter.js:360 +msgid "values separated by commas" +msgstr "" + +#. Label of the version_table (HTML) field in DocType 'Audit Trail' +#: frappe/core/doctype/audit_trail/audit_trail.json +msgid "version_table" +msgstr "" + +#: frappe/automation/doctype/assignment_rule/assignment_rule.py:382 +msgid "via Assignment Rule" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 +msgid "via Auto Repeat" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:271 +#: frappe/core/doctype/data_import/importer.py:292 +msgid "via Data Import" +msgstr "" + +#. Description of the 'Add Video Conferencing' (Check) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "via Google Meet" +msgstr "" + +#: frappe/email/doctype/notification/notification.py:405 +msgid "via Notification" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:17 +msgid "via {0}" +msgstr "" + +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "vim" +msgstr "" + +#. Option for the 'Code Editor Type' (Select) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "vscode" +msgstr "" + +#: frappe/templates/includes/oauth_confirmation.html:5 +msgid "wants to access the following details from your account" +msgstr "" + +#. Description of the 'Popover Element' (Check) field in DocType 'Form Tour +#. Step' +#: frappe/desk/doctype/form_tour_step/form_tour_step.json +msgid "when clicked on element it will focus popover if present." +msgstr "" + +#. Option for the 'PDF Generator' (Select) field in DocType 'Print Format' +#: frappe/printing/doctype/print_format/print_format.json +msgid "wkhtmltopdf" +msgstr "" + +#: frappe/printing/page/print/print.js:662 +msgid "wkhtmltopdf 0.12.x (with patched qt)." +msgstr "" + +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "" + +#. Option for the 'Permission Type' (Select) field in DocType 'Permission +#. Inspector' +#: frappe/core/doctype/permission_inspector/permission_inspector.json +msgid "write" +msgstr "" + +#. Option for the 'Indicator Color' (Select) field in DocType 'Workspace' +#: frappe/desk/doctype/workspace/workspace.json +msgid "yellow" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:58 +msgid "yesterday" +msgstr "" + +#. Option for the 'Date Format' (Select) field in DocType 'Language' +#. Option for the 'Date Format' (Select) field in DocType 'System Settings' +#: frappe/core/doctype/language/language.json +#: frappe/core/doctype/system_settings/system_settings.json +msgid "yyyy-mm-dd" +msgstr "" + +#: frappe/desk/doctype/event/event.js:87 +#: frappe/public/js/frappe/form/footer/form_timeline.js:547 +msgid "{0}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 +msgid "{0} ${skip_list ? \"\" : type}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 +msgid "{0} ${type}" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:80 +#: frappe/public/js/frappe/views/gantt/gantt_view.js:54 +msgid "{0} ({1})" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:77 +msgid "{0} ({1}) (1 row mandatory)" +msgstr "" + +#: frappe/public/js/frappe/views/gantt/gantt_view.js:53 +msgid "{0} ({1}) - {2}%" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:374 +#: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:377 +msgid "{0} = {1}" +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:30 +msgid "{0} Calendar" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:575 +msgid "{0} Chart" +msgstr "" + +#: frappe/core/page/dashboard_view/dashboard_view.js:67 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 +#: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 +msgid "{0} Dashboard" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 +msgid "{0} Fields" +msgstr "" + +#: frappe/integrations/doctype/google_calendar/google_calendar.py:376 +msgid "{0} Google Calendar Events synced." +msgstr "" + +#: frappe/integrations/doctype/google_contacts/google_contacts.py:193 +msgid "{0} Google Contacts synced." +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:464 +msgid "{0} Liked" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:83 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:84 +#: frappe/public/js/frappe/widgets/chart_widget.js:358 frappe/www/list.html:4 +#: frappe/www/list.html:8 +msgid "{0} List" +msgstr "" + +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:37 +msgid "{0} M" +msgstr "" + +#: frappe/public/js/frappe/views/map/map_view.js:14 +msgid "{0} Map" +msgstr "" + +#: frappe/public/js/frappe/form/quick_entry.js:122 +msgid "{0} Name" +msgstr "" + +#: frappe/model/base_document.py:1215 +msgid "{0} Not allowed to change {1} after submission from {2} to {3}" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:95 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:96 +#: frappe/public/js/frappe/widgets/chart_widget.js:366 +msgid "{0} Report" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:964 +msgid "{0} Reports" +msgstr "" + +#: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 +msgid "{0} Settings" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:87 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:88 +#: frappe/public/js/frappe/views/treeview.js:152 +msgid "{0} Tree" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:128 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:73 +msgid "{0} Web page views" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:91 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:92 +msgid "{0} Workspace" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:225 +msgid "{0} added" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 +msgid "{0} already exists. Select another name" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:36 +msgid "{0} already unsubscribed" +msgstr "" + +#: frappe/email/doctype/email_unsubscribe/email_unsubscribe.py:49 +msgid "{0} already unsubscribed for {1} {2}" +msgstr "" + +#: frappe/utils/data.py:1765 +msgid "{0} and {1}" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:72 +msgid "{0} are currently {1}" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.py:98 +msgid "{0} are required" +msgstr "" + +#: frappe/desk/form/assign_to.py:286 +msgid "{0} assigned a new task {1} {2} to you" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:48 +msgid "{0} assigned {1}: {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:415 +msgctxt "Form timeline" +msgid "{0} attached {1}" +msgstr "" + +#: frappe/core/doctype/system_settings/system_settings.py:153 +msgid "{0} can not be more than {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:77 +msgid "{0} cancelled this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:68 +msgctxt "Form timeline" +msgid "{0} cancelled this document {1}" +msgstr "" + +#: frappe/model/document.py:548 +msgid "{0} cannot be amended because it is not cancelled. Please cancel the document before creating an amendment." +msgstr "" + +#: frappe/public/js/form_builder/store.js:190 +msgid "{0} cannot be hidden and mandatory without any default value" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:128 +msgid "{0} changed the value of {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:119 +msgid "{0} changed the value of {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:194 +msgid "{0} changed the values for {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:185 +msgid "{0} changed the values for {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:444 +msgctxt "Form timeline" +msgid "{0} changed {1} to {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1606 +msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." +msgstr "" + +#: frappe/public/js/frappe/views/interaction.js:261 +msgid "{0} created successfully" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:141 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:95 +msgid "{0} created this" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 +msgctxt "Form timeline" +msgid "{0} created this document {1}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:33 +msgid "{0} d" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:60 +msgid "{0} days ago" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.py:96 +#: frappe/website/doctype/website_settings/website_settings.py:116 +msgid "{0} does not exist in row {1}" +msgstr "" + +#: frappe/database/mariadb/schema.py:141 frappe/database/postgres/schema.py:184 +msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" +msgstr "" + +#: frappe/database/query.py:710 +msgid "{0} fields cannot contain backticks (`): {1}" +msgstr "" + +#: frappe/core/doctype/data_import/importer.py:1071 +msgid "{0} format could not be determined from the values in this column. Defaulting to {1}." +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:101 +msgid "{0} from {1} to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:165 +msgid "{0} from {1} to {2} in row #{3}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:29 +msgid "{0} h" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission.py:77 +msgid "{0} has already assigned default value for {1}." +msgstr "" + +#: frappe/email/queue.py:124 +msgid "{0} has left the conversation in {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:54 +msgid "{0} hours ago" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:155 +msgid "{0} if you are not redirected within {1} seconds" +msgstr "" + +#: frappe/website/doctype/website_settings/website_settings.py:102 +#: frappe/website/doctype/website_settings/website_settings.py:122 +msgid "{0} in row {1} cannot have both URL and child items" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:935 +msgid "{0} is a mandatory field" +msgstr "" + +#: frappe/core/doctype/file/file.py:569 +msgid "{0} is a not a valid zip file" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1619 +msgid "{0} is an invalid Data field." +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 +msgid "{0} is an invalid email address in 'Recipients'" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1470 +msgid "{0} is between {1} and {2}" +msgstr "" + +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:41 +#: frappe/public/js/frappe/form/sidebar/form_sidebar_users.js:69 +msgid "{0} is currently {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1439 +msgid "{0} is equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1459 +msgid "{0} is greater than or equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1449 +msgid "{0} is greater than {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1464 +msgid "{0} is less than or equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1454 +msgid "{0} is less than {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1489 +msgid "{0} is like {1}" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:193 +msgid "{0} is mandatory" +msgstr "" + +#: frappe/database/query.py:487 +msgid "{0} is not a child table of {1}" +msgstr "" + +#: frappe/core/doctype/document_naming_rule/document_naming_rule.py:50 +msgid "{0} is not a field of doctype {1}" +msgstr "" + +#: frappe/www/printview.py:384 +msgid "{0} is not a raw printing format." +msgstr "" + +#: frappe/public/js/frappe/views/calendar/calendar.js:82 +msgid "{0} is not a valid Calendar. Redirecting to default Calendar." +msgstr "" + +#: frappe/core/doctype/scheduled_job_type/scheduled_job_type.py:67 +msgid "{0} is not a valid Cron expression." +msgstr "" + +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 +msgid "{0} is not a valid DocType for Dynamic Link" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 +msgid "{0} is not a valid Email Address" +msgstr "" + +#: frappe/geo/doctype/country/country.py:30 +msgid "{0} is not a valid ISO 3166 ALPHA-2 code." +msgstr "" + +#: frappe/utils/__init__.py:176 +msgid "{0} is not a valid Name" +msgstr "" + +#: frappe/utils/__init__.py:155 +msgid "{0} is not a valid Phone Number" +msgstr "" + +#: frappe/model/workflow.py:245 +msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." +msgstr "" + +#: frappe/permissions.py:809 +msgid "{0} is not a valid parent DocType for {1}" +msgstr "" + +#: frappe/permissions.py:829 +msgid "{0} is not a valid parentfield for {1}" +msgstr "" + +#: frappe/email/doctype/auto_email_report/auto_email_report.py:117 +msgid "{0} is not a valid report format. Report format should one of the following {1}" +msgstr "" + +#: frappe/core/doctype/file/file.py:549 +msgid "{0} is not a zip file" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 +msgid "{0} is not equal to {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1491 +msgid "{0} is not like {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1485 +msgid "{0} is not one of {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1495 +msgid "{0} is not set" +msgstr "" + +#: frappe/printing/doctype/print_format/print_format.py:176 +msgid "{0} is now default print format for {1} doctype" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1478 +msgid "{0} is one of {1}" +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:304 +#: frappe/model/naming.py:226 +#: 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/views/reports/report_view.js:1494 +msgid "{0} is set" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1473 +msgid "{0} is within {1}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1841 +msgid "{0} items selected" +msgstr "" + +#: frappe/core/doctype/user/user.py:1393 +msgid "{0} just impersonated as you. They gave this reason: {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:152 +#: frappe/public/js/frappe/form/sidebar/form_sidebar.js:106 +msgid "{0} last edited this" +msgstr "" + +#: frappe/core/doctype/activity_log/feed.py:13 +msgid "{0} logged in" +msgstr "" + +#: frappe/core/doctype/activity_log/feed.py:19 +msgid "{0} logged out: {1}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:27 +msgid "{0} m" +msgstr "" + +#: frappe/desk/notifications.py:408 +msgid "{0} mentioned you in a comment in {1} {2}" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:50 +msgid "{0} minutes ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:68 +msgid "{0} months ago" +msgstr "" + +#: frappe/model/document.py:1808 +msgid "{0} must be after {1}" +msgstr "" + +#: frappe/model/document.py:1564 +msgid "{0} must be beginning with '{1}'" +msgstr "" + +#: frappe/model/document.py:1566 +msgid "{0} must be equal to '{1}'" +msgstr "" + +#: frappe/model/document.py:1562 +msgid "{0} must be none of {1}" +msgstr "" + +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 +msgid "{0} must be one of {1}" +msgstr "" + +#: frappe/model/base_document.py:933 +msgid "{0} must be set first" +msgstr "" + +#: frappe/model/base_document.py:786 +msgid "{0} must be unique" +msgstr "" + +#: frappe/model/document.py:1568 +msgid "{0} must be {1} {2}" +msgstr "" + +#: frappe/core/doctype/language/language.py:79 +msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." +msgstr "" + +#: frappe/workflow/doctype/workflow/workflow.py:91 +msgid "{0} not a valid State" +msgstr "" + +#: frappe/model/rename_doc.py:394 +msgid "{0} not allowed to be renamed" +msgstr "" + +#: frappe/desk/doctype/desktop_icon/desktop_icon.py:365 +msgid "{0} not found" +msgstr "" + +#: frappe/core/doctype/report/report.py:427 +#: frappe/public/js/frappe/list/list_view.js:1213 +msgid "{0} of {1}" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:1215 +msgid "{0} of {1} ({2} rows with children)" +msgstr "" + +#: frappe/utils/data.py:1566 +msgctxt "Money in words" +msgid "{0} only." +msgstr "" + +#: frappe/utils/data.py:1747 +msgid "{0} or {1}" +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:177 +msgid "{0} record deleted" +msgstr "" + +#: frappe/public/js/frappe/logtypes.js:22 +msgid "{0} records are not automatically deleted." +msgstr "" + +#: frappe/public/js/frappe/logtypes.js:29 +msgid "{0} records are retained for {1} days." +msgstr "" + +#: frappe/core/doctype/user_permission/user_permission_list.js:179 +msgid "{0} records deleted" +msgstr "" + +#: frappe/public/js/frappe/data_import/data_exporter.js:229 +msgid "{0} records will be exported" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:420 +msgctxt "Form timeline" +msgid "{0} removed attachment {1}" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:58 +msgid "{0} removed their assignment." +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 +msgid "{0} role does not have permission on any doctype" +msgstr "" + +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 +msgid "{0} saved successfully" +msgstr "" + +#: frappe/desk/doctype/todo/todo.py:44 +msgid "{0} self assigned this task: {1}" +msgstr "" + +#: frappe/share.py:233 +msgid "{0} shared a document {1} {2} with you" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:77 +msgid "{0} shared this document with everyone" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:80 +msgid "{0} shared this document with {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:317 +msgid "{0} should be indexed because it's referred in dashboard connections" +msgstr "" + +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 +msgid "{0} should not be same as {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:51 +msgid "{0} submitted this document" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:42 +msgctxt "Form timeline" +msgid "{0} submitted this document {1}" +msgstr "" + +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 +msgid "{0} subscribers added" +msgstr "" + +#: frappe/email/queue.py:69 +msgid "{0} to stop receiving emails of this type" +msgstr "" + +#: frappe/public/js/frappe/form/controls/date_range.js:48 +#: frappe/public/js/frappe/form/controls/date_range.js:64 +#: frappe/public/js/frappe/form/formatters.js:238 +msgid "{0} to {1}" +msgstr "" + +#: frappe/core/doctype/docshare/docshare.py:89 +msgid "{0} un-shared this document with {1}" +msgstr "" + +#: frappe/custom/doctype/customize_form/customize_form.py:256 +msgid "{0} updated" +msgstr "" + +#: frappe/public/js/frappe/form/controls/multiselect_list.js:198 +msgid "{0} values selected" +msgstr "" + +#: frappe/public/js/frappe/form/footer/form_timeline.js:184 +msgid "{0} viewed this" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:35 +msgid "{0} w" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:64 +msgid "{0} weeks ago" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:39 +msgid "{0} y" +msgstr "" + +#: frappe/public/js/frappe/utils/pretty_date.js:72 +msgid "{0} years ago" +msgstr "" + +#: frappe/public/js/frappe/form/link_selector.js:219 +msgid "{0} {1} added" +msgstr "" + +#: frappe/public/js/frappe/utils/dashboard_utils.js:270 +msgid "{0} {1} added to Dashboard {2}" +msgstr "" + +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 +msgid "{0} {1} already exists" +msgstr "" + +#: frappe/model/base_document.py:1044 +msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" +msgstr "" + +#: frappe/utils/nestedset.py:353 +msgid "{0} {1} cannot be a leaf node as it has children" +msgstr "" + +#: frappe/model/rename_doc.py:376 +msgid "{0} {1} does not exist, select a new target to merge" +msgstr "" + +#: frappe/public/js/frappe/form/form.js:951 +msgid "{0} {1} is linked with the following submitted documents: {2}" +msgstr "" + +#: frappe/model/document.py:258 frappe/permissions.py:580 +msgid "{0} {1} not found" +msgstr "" + +#: frappe/model/delete_doc.py:288 +msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." +msgstr "" + +#: frappe/model/base_document.py:1176 +msgid "{0}, Row {1}" +msgstr "" + +#: frappe/utils/print_format.py:148 frappe/utils/print_format.py:192 +msgid "{0}/{1} complete | Please leave this tab open until completion." +msgstr "" + +#: frappe/model/base_document.py:1181 +msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1814 +msgid "{0}: Cannot set Amend without Cancel" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1832 +msgid "{0}: Cannot set Assign Amend if not Submittable" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1830 +msgid "{0}: Cannot set Assign Submit if not Submittable" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1809 +msgid "{0}: Cannot set Cancel without Submit" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1816 +msgid "{0}: Cannot set Import without Create" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1812 +msgid "{0}: Cannot set Submit, Cancel, Amend without Write" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1836 +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:1427 +msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1335 +msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1294 +msgid "{0}: Field {1} of type {2} cannot be mandatory" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1282 +msgid "{0}: Fieldname {1} appears multiple times in rows {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1414 +msgid "{0}: Fieldtype {1} for {2} cannot be unique" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1769 +msgid "{0}: No basic permissions set" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1783 +msgid "{0}: Only one rule allowed with the same Role, Level and {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1316 +msgid "{0}: Options must be a valid DocType for field {1} in row {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1305 +msgid "{0}: Options required for Link or Table type field {1} in row {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1323 +msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" +msgstr "" + +#: frappe/public/js/frappe/form/workflow.js:45 +msgid "{0}: Other permission rules may also apply" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1798 +msgid "{0}: Permission at level 0 must be set before higher levels are set" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:51 +msgid "{0}: You can increase the limit for the field if required via {1}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1269 +msgid "{0}: fieldname cannot be set to reserved keyword {1}" +msgstr "" + +#: frappe/contacts/doctype/address/address.js:35 +#: frappe/contacts/doctype/contact/contact.js:88 +msgid "{0}: {1}" +msgstr "" + +#: frappe/workflow/doctype/workflow_action/workflow_action.py:172 +msgid "{0}: {1} is set to state {2}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/query_report.js:1291 +msgid "{0}: {1} vs {2}" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1435 +msgid "{0}:Fieldtype {1} for {2} cannot be indexed" +msgstr "" + +#: frappe/public/js/frappe/form/quick_entry.js:195 +msgid "{1} saved" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:12 +msgid "{count} cell copied" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:13 +msgid "{count} cells copied" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:16 +msgid "{count} row selected" +msgstr "" + +#: frappe/public/js/frappe/utils/datatable.js:17 +msgid "{count} rows selected" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1489 +msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." +msgstr "" + +#: frappe/public/js/frappe/form/form.js:521 +msgid "{} Complete" +msgstr "" + +#: frappe/utils/data.py:2567 +msgid "{} Invalid python code on line {}" +msgstr "" + +#: frappe/utils/data.py:2576 +msgid "{} Possibly invalid python code.
    {}" +msgstr "" + +#. Count format of shortcut in the Website Workspace +#: frappe/website/workspace/website/website.json +msgid "{} Published" +msgstr "" + +#: frappe/core/doctype/log_settings/log_settings.py:54 +msgid "{} does not support automated log clearing." +msgstr "" + +#: frappe/core/doctype/audit_trail/audit_trail.py:41 +msgid "{} field cannot be empty." +msgstr "" + +#: frappe/email/doctype/email_account/email_account.py:223 +#: frappe/email/doctype/email_account/email_account.py:231 +msgid "{} has been disabled. It can only be enabled if {} is checked." +msgstr "" + +#: frappe/utils/data.py:145 +msgid "{} is not a valid date string." +msgstr "" + +#: frappe/commands/utils.py:561 +msgid "{} not found in PATH! This is required to access the console." +msgstr "" + +#: frappe/database/db_manager.py:99 +msgid "{} not found in PATH! This is required to restore the database." +msgstr "" + +#: frappe/utils/backups.py:466 +msgid "{} not found in PATH! This is required to take a backup." +msgstr "" + +#: frappe/public/js/frappe/file_uploader/FileBrowser.vue:5 +#: frappe/public/js/frappe/file_uploader/WebLink.vue:4 +msgid "← Back to upload files" +msgstr "" + diff --git a/frappe/locale/th.po b/frappe/locale/th.po index 2fe8ca9cc7..27dc152377 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-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-22 21:46\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Thai\n" "MIME-Version: 1.0\n" @@ -18,10 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: th_TH\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr "" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json @@ -61,7 +57,7 @@ msgstr "" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "${values.doctype_name} ถูกเพิ่มในคิวสำหรับการปรับปรุง" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" msgstr "© Frappe Technologies Pvt. Ltd. และผู้ร่วมพัฒนา" @@ -74,7 +70,7 @@ msgstr "" msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "ในการค้นหาระดับโลก ไม่อนุญาตสำหรับฟิลด์ {0} ของประเภท {1}" -#: frappe/core/doctype/doctype/doctype.py:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "ในการค้นหาระดับโลก ไม่อนุญาตสำหรับประเภท {0} ในแถว {1}" @@ -82,19 +78,23 @@ msgstr "ในการค้นหาระดับโลก ไม่อน msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "ในมุมมองรายการ ไม่อนุญาตสำหรับฟิลด์ {0} ของประเภท {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "ในมุมมองรายการ ไม่อนุญาตสำหรับประเภท {0} ในแถว {1}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" msgstr "ผู้รับ ไม่ได้ระบุ" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" msgstr "'{0}' ไม่ใช่ URL ที่ถูกต้อง" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "'{0}' ไม่อนุญาตสำหรับประเภท {1} ในแถว {2}" @@ -102,11 +102,11 @@ msgstr "'{0}' ไม่อนุญาตสำหรับประเภท {1 msgid "(Mandatory)" msgstr "(จำเป็น)" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "** ล้มเหลว: {0} ถึง {1}: {2}" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" msgstr "+ เพิ่ม / ลบฟิลด์" @@ -122,7 +122,7 @@ msgstr "0 - ร่าง; 1 - ส่ง; 2 - ยกเลิก" msgid "0 is highest" msgstr "0 คือสูงสุด" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = จริง & 0 = เท็จ" @@ -140,15 +140,11 @@ msgstr "1 วัน" msgid "1 Google Calendar Event synced." msgstr "1 เหตุการณ์ Google Calendar ซิงค์แล้ว" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 รายงาน" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "1 ความคิดเห็น" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "1 วันที่ผ่านมา" @@ -157,17 +153,17 @@ msgid "1 hour" msgstr "1 ชั่วโมง" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "1 ชั่วโมงที่แล้ว" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "1 นาทีที่แล้ว" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "1 เดือนที่แล้ว" @@ -179,37 +175,47 @@ msgstr "1 จาก 2" msgid "1 record will be exported" msgstr "1 รายการจะถูกส่งออก" -#: frappe/tests/test_utils.py:711 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "" + +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "1 วินาทีที่แล้ว" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "1 สัปดาห์ที่แล้ว" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "1 ปีที่แล้ว" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "2 ชั่วโมงที่แล้ว" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "2 เดือนที่แล้ว" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "2 สัปดาห์ที่แล้ว" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "2 ปีที่แล้ว" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "3 นาทีที่แล้ว" @@ -225,7 +231,7 @@ msgstr "4 ชั่วโมง" msgid "5 Records" msgstr "5 รายการ" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "5 วันที่ผ่านมา" @@ -245,6 +251,13 @@ msgstr "" msgid "<=" msgstr "" +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "{0} ไม่ใช่ URL ที่ถูกต้อง" @@ -254,6 +267,16 @@ msgstr "{0} ไม่ใช่ URL ที่ถูกต้อง" msgid "
    Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
    " msgstr "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

    Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

    " +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

    Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

    " +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -479,7 +502,7 @@ msgid "

    To interact with above HTML you will have to use `root_element` as a p "" msgstr "" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

    " msgstr "" @@ -546,7 +569,7 @@ msgstr "" msgid ">=" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" @@ -555,15 +578,16 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." msgstr "" #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "" @@ -576,7 +600,7 @@ msgstr "" msgid "A new account has been created for you at {0}" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "" @@ -675,13 +699,17 @@ msgstr "" msgid "API Endpoint Args" msgstr "" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -700,6 +728,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -720,7 +752,7 @@ msgstr "" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -767,6 +799,20 @@ msgstr "" msgid "About {0} seconds remaining" msgstr "" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -792,7 +838,7 @@ msgstr "" msgid "Access Token URL" msgstr "" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "" @@ -856,7 +902,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "" @@ -908,7 +954,7 @@ msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "" @@ -965,7 +1011,7 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -976,7 +1022,7 @@ msgstr "" msgid "Add" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -988,7 +1034,7 @@ msgstr "" msgid "Add A New Rule" msgstr "" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "" @@ -1008,7 +1054,7 @@ msgstr "" msgid "Add Border at Top" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "" @@ -1021,10 +1067,10 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "" @@ -1083,7 +1129,7 @@ msgstr "" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "" @@ -1116,12 +1162,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "" @@ -1210,7 +1256,7 @@ msgstr "" msgid "Add page break" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "" @@ -1248,7 +1294,7 @@ msgstr "" msgid "Add {0}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" msgstr "" @@ -1291,6 +1337,7 @@ msgstr "" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1299,6 +1346,7 @@ msgstr "" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "" @@ -1306,6 +1354,7 @@ msgstr "" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "" @@ -1356,7 +1405,7 @@ msgstr "" msgid "Adds a custom field to a DocType" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "" @@ -1370,7 +1419,6 @@ msgstr "" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1383,11 +1431,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1408,8 +1456,8 @@ msgstr "" msgid "Advanced Control" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" msgstr "" @@ -1468,7 +1516,7 @@ msgstr "" msgid "After Submit" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "" @@ -1495,11 +1543,11 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1564,7 +1612,7 @@ msgstr "" msgid "All Records" msgstr "" -#: frappe/public/js/frappe/form/form.js:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "" @@ -1624,7 +1672,7 @@ msgstr "" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " +msgid "Allow Consecutive Login Attempts" msgstr "" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 @@ -1645,11 +1693,6 @@ msgstr "" msgid "Allow Guest to View" msgstr "" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1698,7 +1741,7 @@ msgid "Allow Print for Cancelled" msgstr "" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "" @@ -1930,7 +1973,7 @@ msgstr "" msgid "Allows skipping authorization if a user has active tokens." msgstr "" -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "" @@ -1938,11 +1981,11 @@ msgstr "" msgid "Already in the following Users ToDo list:{0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "" @@ -1951,6 +1994,12 @@ msgstr "" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2002,10 +2051,8 @@ msgstr "" msgid "Amended Documents" msgstr "" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "" @@ -2029,6 +2076,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2122,10 +2174,12 @@ msgid "App Logo" msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2196,6 +2250,10 @@ msgstr "" msgid "Application Version" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2205,7 +2263,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2253,7 +2311,7 @@ msgstr "" msgid "Apply to all Documents Types" msgstr "" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "" @@ -2286,7 +2344,11 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2314,11 +2376,15 @@ msgctxt "Confirmation dialog message" msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:191 msgid "Are you sure you want to discard the changes?" msgstr "คุณแน่ใจหรือไม่ว่าต้องการละทิ้งการเปลี่ยนแปลง?" -#: frappe/public/js/frappe/views/reports/query_report.js:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "คุณแน่ใจหรือไม่ว่าต้องการสร้างรายงานใหม่?" @@ -2326,7 +2392,7 @@ msgstr "คุณแน่ใจหรือไม่ว่าต้องกา msgid "Are you sure you want to merge {0} with {1}?" msgstr "คุณแน่ใจหรือไม่ว่าต้องการรวม {0} กับ {1}?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "คุณแน่ใจหรือไม่ว่าต้องการดำเนินการต่อ?" @@ -2381,6 +2447,12 @@ msgstr "เนื่องจากการแชร์เอกสารถู msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "ตามคำขอของคุณ บัญชีและข้อมูลของคุณบน {0} ที่เชื่อมโยงกับอีเมล {1} ได้ถูกลบอย่างถาวร" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2390,7 +2462,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2453,6 +2525,11 @@ msgstr "" msgid "Assigned To/Owner" msgstr "" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "" @@ -2522,7 +2599,13 @@ msgstr "" msgid "Assignments" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -2602,7 +2685,7 @@ msgstr "" msgid "Attached To Name" msgstr "" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "" @@ -2618,7 +2701,7 @@ msgstr "" msgid "Attachment Limit (MB)" msgstr "" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "" @@ -2636,15 +2719,15 @@ 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:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "" @@ -2667,6 +2750,10 @@ msgstr "" msgid "Auth URL Data" msgstr "" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "" + #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authenticate as Service Principal" @@ -2684,7 +2771,7 @@ msgid "Authentication" msgstr "" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " +msgid "Authentication Apps you can use are:" msgstr "" #: frappe/email/doctype/email_account/email_account.py:339 @@ -2798,11 +2885,11 @@ msgstr "" msgid "Auto Repeat Day" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "" @@ -2810,11 +2897,16 @@ msgstr "" msgid "Auto Repeat Schedule" msgstr "" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "" @@ -2858,7 +2950,7 @@ msgstr "" msgid "Auto follow documents that you create" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "" @@ -2906,7 +2998,7 @@ msgstr "" msgid "Automatically Assign Documents to Users" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "" @@ -2920,11 +3012,6 @@ msgstr "" msgid "Automation" msgstr "" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3196,8 +3283,8 @@ msgstr "" #. Label of the based_on (Link) field in DocType 'Language' #: frappe/core/doctype/language/language.json -#: frappe/printing/page/print/print.js:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "" @@ -3314,10 +3401,8 @@ msgstr "" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "" @@ -3347,64 +3432,6 @@ msgstr "" msgid "Blocked" msgstr "" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3501,13 +3528,6 @@ msgstr "" msgid "Breadcrumbs" msgstr "" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3565,15 +3585,15 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" msgstr "" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "" @@ -3588,7 +3608,7 @@ msgstr "" msgid "Bulk Update" msgstr "" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "" @@ -3600,7 +3620,7 @@ msgstr "" msgid "Bulk operations only support up to 500 documents." msgstr "" -#: frappe/model/workflow.py:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "" @@ -3730,16 +3750,6 @@ msgstr "ตัวเลือก CSS สำหรับองค์ประก msgid "CSV" msgstr "" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "ป้าย CTA" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "URL ของ CTA" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3790,11 +3800,6 @@ msgstr "การเรียกร้องให้ดำเนินการ msgid "Call To Action URL" msgstr "URL การเรียกร้องให้ดำเนินการ" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "การเรียกร้องให้ดำเนินการ" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -3812,7 +3817,7 @@ msgid "Camera" msgstr "กล้อง" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3848,7 +3853,7 @@ msgstr "" msgid "Can not rename as column {0} is already present on DocType." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "" @@ -3872,14 +3877,15 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3897,16 +3903,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -3944,11 +3952,11 @@ msgstr "" msgid "Cannot Remove" msgstr "" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3956,7 +3964,7 @@ msgstr "" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "" @@ -3964,11 +3972,11 @@ msgstr "" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1013 +#: frappe/model/document.py:1017 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -3976,11 +3984,11 @@ msgstr "" msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "" @@ -3992,11 +4000,11 @@ msgstr "" msgid "Cannot create private workspace of other users" msgstr "" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4031,7 +4039,7 @@ msgstr "" msgid "Cannot delete {0}" msgstr "" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" msgstr "" @@ -4039,7 +4047,7 @@ msgstr "" msgid "Cannot edit Standard Dashboards" msgstr "" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "" @@ -4051,7 +4059,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" -#: frappe/model/document.py:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "" @@ -4059,8 +4067,8 @@ msgstr "" msgid "Cannot edit filters for standard charts" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "" @@ -4068,27 +4076,27 @@ msgstr "" msgid "Cannot edit standard fields" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:884 msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1132 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "" @@ -4100,11 +4108,11 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "" @@ -4112,7 +4120,7 @@ msgstr "" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "" @@ -4129,11 +4137,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4201,15 +4209,6 @@ msgstr "" msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4247,7 +4246,7 @@ msgstr "" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
    \n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " +"Warning: Incorrectly updating counters can prevent documents from getting created." msgstr "" #. Label of the changed_at (Datetime) field in DocType 'Permission Log' @@ -4317,7 +4316,7 @@ msgstr "" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "" @@ -4350,7 +4349,7 @@ msgstr "" msgid "Check" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "" @@ -4358,7 +4357,7 @@ msgstr "" msgid "Check columns to select, drag to set order." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "" @@ -4399,11 +4398,6 @@ msgstr "" msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "" -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "" @@ -4413,17 +4407,17 @@ msgstr "" msgid "Child Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4452,6 +4446,7 @@ msgid "Choose authentication method to be used by all users" 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 msgid "City" msgstr "" @@ -4466,7 +4461,7 @@ msgstr "" msgid "Clear" msgstr "" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "" @@ -4478,7 +4473,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4504,7 +4499,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "" @@ -4516,11 +4511,15 @@ msgstr "" msgid "Click On Customize to add your first widget" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "" @@ -4551,24 +4550,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4746,7 +4745,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4801,7 +4800,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:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4857,11 +4856,11 @@ msgstr "" msgid "Column Name cannot be empty" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4888,7 +4887,7 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "" @@ -4930,16 +4929,6 @@ msgstr "" msgid "Comment can only be edited by the owner" msgstr "" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "การเปลี่ยนแปลงสถานะการเผยแพร่ความคิดเห็น สามารถทำได้เฉพาะผู้เขียนต้นฉบับหรือผู้ดูแลระบบเท่านั้น" @@ -4947,7 +4936,7 @@ msgstr "การเปลี่ยนแปลงสถานะการเผ #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "" @@ -4956,7 +4945,7 @@ msgstr "" msgid "Comments and Communications will be associated with this linked document" msgstr "" -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "" @@ -5028,12 +5017,12 @@ msgid "Company Name" msgstr "" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "" @@ -5113,8 +5102,8 @@ msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5128,6 +5117,11 @@ msgstr "" msgid "Condition JSON" msgstr "" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5153,11 +5147,11 @@ msgstr "" msgid "Configuration" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5182,7 +5176,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5201,7 +5195,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "" @@ -5228,7 +5222,7 @@ msgstr "" msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "" @@ -5246,8 +5240,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "" @@ -5298,6 +5292,10 @@ msgstr "" msgid "Contact" msgstr "" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
    {0}" +msgstr "" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5355,15 +5353,13 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5371,24 +5367,12 @@ msgstr "" msgid "Content" msgstr "" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "" @@ -5456,7 +5440,7 @@ msgstr "คัดลอกลิงก์" msgid "Copy embed code" msgstr "คัดลอกรหัสฝัง" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "คัดลอกข้อผิดพลาดไปยังคลิปบอร์ด" @@ -5464,12 +5448,16 @@ msgstr "คัดลอกข้อผิดพลาดไปยังคลิ msgid "Copy to Clipboard" msgstr "คัดลอกไปยังคลิปบอร์ด" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "" + #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" msgstr "ลิขสิทธิ์" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "ไม่สามารถปรับแต่ง DocTypes หลักได้" @@ -5477,7 +5465,7 @@ msgstr "ไม่สามารถปรับแต่ง DocTypes หลั msgid "Core Modules {0} cannot be searched in Global Search." msgstr "โมดูลหลัก {0} ไม่สามารถค้นหาใน Global Search ได้" -#: frappe/printing/page/print/print.js:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "เวอร์ชันที่ถูกต้อง:" @@ -5485,7 +5473,7 @@ msgstr "เวอร์ชันที่ถูกต้อง:" msgid "Could not connect to outgoing email server" msgstr "" -#: frappe/model/document.py:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "" @@ -5493,15 +5481,15 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " +msgid "Could not start up:" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "" @@ -5546,13 +5534,14 @@ msgstr "" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "" @@ -5584,13 +5573,13 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5604,7 +5593,7 @@ msgid "Create Card" msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "" @@ -5638,12 +5627,12 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5651,7 +5640,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "" @@ -5663,7 +5652,7 @@ msgstr "" msgid "Create a Reminder" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "" @@ -5671,11 +5660,11 @@ msgstr "" msgid "Create a new record" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "" @@ -5691,7 +5680,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "" @@ -5701,7 +5690,7 @@ msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "" @@ -5717,7 +5706,7 @@ msgstr "" msgid "Created By" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "" @@ -5729,7 +5718,7 @@ msgstr "" msgid "Created On" msgstr "" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "" @@ -6038,7 +6027,7 @@ msgstr "" #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "" @@ -6066,14 +6055,14 @@ msgstr "รีเซ็ตการปรับแต่ง" msgid "Customizations for {0} exported to:
    {1}" msgstr "การปรับแต่งสำหรับ {0} ถูกส่งออกไปยัง:
    {1}" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "ปรับแต่ง" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "ปรับแต่ง" @@ -6092,7 +6081,7 @@ msgstr "ปรับแต่งแดชบอร์ด" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "ปรับแต่งฟอร์ม" @@ -6170,7 +6159,7 @@ msgstr "รายวัน" msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "ส่งสรุปเหตุการณ์รายวันสำหรับกิจกรรมในปฏิทินที่ตั้งค่าการเตือน" -#: frappe/desk/doctype/event/event.py:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "กิจกรรมรายวันควรเสร็จสิ้นในวันเดียวกัน" @@ -6217,7 +6206,7 @@ msgstr "ธีมมืด" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "แดชบอร์ด" @@ -6276,7 +6265,6 @@ msgstr "แดชบอร์ด" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6289,7 +6277,6 @@ msgstr "แดชบอร์ด" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6325,7 +6312,7 @@ msgstr "บันทึกการนำเข้าข้อมูล" msgid "Data Import Template" msgstr "แม่แบบการนำเข้าข้อมูล" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "ข้อมูลยาวเกินไป" @@ -6356,7 +6343,7 @@ msgstr "การใช้งานขนาดแถวฐานข้อมู msgid "Database Storage Usage By Tables" msgstr "การใช้งานพื้นที่จัดเก็บฐานข้อมูลตามตาราง" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "ขีดจำกัดขนาดแถวของตารางฐานข้อมูล" @@ -6494,11 +6481,11 @@ msgstr "เรียน {0}" msgid "Debug Log" msgstr "บันทึกการดีบัก" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "ตัวคั่นทศนิยมต้องเป็น '.' เมื่อการอ้างอิงถูกตั้งค่าเป็นไม่ใช่ตัวเลข" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "ตัวคั่นทศนิยมต้องเป็นตัวอักษรเดียว" @@ -6660,11 +6647,11 @@ msgstr "พื้นที่ทำงานเริ่มต้น" msgid "Default display currency" msgstr "สกุลเงินแสดงผลเริ่มต้น" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 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:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 msgid "Default value for {0} must be in the list of options." msgstr "ค่าดีฟอลต์สำหรับ {0} ต้องอยู่ในรายการตัวเลือก" @@ -6698,6 +6685,12 @@ msgstr "อัปเดตค่าเริ่มต้นแล้ว" msgid "Defines actions on states and the next step and allowed roles." msgstr "กำหนดการกระทำในสถานะ ขั้นตอนถัดไป และบทบาทที่อนุญาต" +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6715,22 +6708,27 @@ 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/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "ลบ" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "ลบ" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "ลบ" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "ลบบัญชี" @@ -6739,6 +6737,12 @@ msgstr "ลบบัญชี" 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 +msgid "Delete Background Exported Reports After (Hours)" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6748,7 +6752,7 @@ msgstr "ลบคอลัมน์" msgid "Delete Data" msgstr "ลบข้อมูล" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "ลบกระดานคัมบัง" @@ -6762,7 +6766,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "ลบแท็บ" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "ลบและสร้างใหม่" @@ -6771,7 +6775,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "ลบคอลัมน์" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "ลบความคิดเห็น?" @@ -6804,12 +6808,12 @@ msgstr "ลบแท็บ" msgid "Delete this record to allow sending to this email address" msgstr "ลบบันทึกนี้เพื่ออนุญาตให้ส่งไปยังที่อยู่อีเมลนี้" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "ลบ {0} รายการอย่างถาวร?" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "ลบ {0} รายการอย่างถาวร?" @@ -6845,11 +6849,15 @@ msgstr "" msgid "Deleted Name" msgstr "ลบชื่อแล้ว" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "ลบเอกสารทั้งหมดสำเร็จแล้ว" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "ลบแล้ว!" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "กำลังลบ {0}" @@ -6864,7 +6872,7 @@ msgstr "กำลังลบ {0}..." #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " +msgid "Deletion Steps" msgstr "" #: frappe/core/doctype/page/page.py:110 @@ -6881,7 +6889,7 @@ msgstr "ตัวเลือกตัวคั่น" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "การตรวจจับตัวคั่นล้มเหลว ลองเปิดใช้งานตัวคั่นที่กำหนดเองและปรับตัวเลือกตัวคั่นตามข้อมูลของคุณ" -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "ตัวคั่นต้องเป็นตัวอักษรเดียว" @@ -6908,7 +6916,7 @@ msgstr "" msgid "Dependencies" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "" @@ -6943,7 +6951,6 @@ msgstr "" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -6964,7 +6971,6 @@ msgstr "" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -6974,11 +6980,6 @@ msgstr "" msgid "Description" msgstr "" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -7062,7 +7063,7 @@ msgstr "" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "" @@ -7123,11 +7124,6 @@ msgstr "" msgid "Disable Comment Count" msgstr "" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7145,11 +7141,6 @@ msgstr "" msgid "Disable Document Sharing" msgstr "" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "" @@ -7159,6 +7150,11 @@ msgstr "" msgid "Disable SMTP server authentication" msgstr "" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7204,7 +7200,6 @@ msgstr "" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7219,7 +7214,6 @@ msgstr "" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "" @@ -7230,7 +7224,7 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "" @@ -7248,7 +7242,7 @@ msgstr "ยกเลิก" msgid "Discard {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "" @@ -7271,7 +7265,7 @@ msgstr "" msgid "Discussion Topic" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7307,19 +7301,23 @@ msgstr "" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " +msgid "Do Not Create New User" msgstr "" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7410,7 +7408,7 @@ msgstr "" msgid "DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1577 +#: frappe/core/doctype/doctype/doctype.py:1578 msgid "DocType {0} provided for the field {1} must have atleast one Link field" msgstr "" @@ -7457,11 +7455,11 @@ msgstr "" msgid "DocType View" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "" @@ -7470,7 +7468,7 @@ msgstr "" msgid "DocType is a Table / Form in the application." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "" @@ -7503,7 +7501,7 @@ msgstr "" msgid "DocType {} not found" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "" @@ -7517,7 +7515,7 @@ msgstr "" msgid "Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "" @@ -7579,31 +7577,29 @@ msgstr "" msgid "Document Links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7745,13 +7741,13 @@ msgstr "" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 msgid "Document Type and Function are required to create a number card" msgstr "ต้องการประเภทเอกสารและฟังก์ชันเพื่อสร้างการ์ดตัวเลข" @@ -7788,7 +7784,7 @@ msgid "Document Types and Permissions" msgstr "ประเภทเอกสารและสิทธิ์" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "เอกสารถูกปลดล็อก" @@ -7796,15 +7792,15 @@ msgstr "เอกสารถูกปลดล็อก" msgid "Document follow is not enabled for this user." msgstr "การติดตามเอกสารไม่ได้เปิดใช้งานสำหรับผู้ใช้นี้" -#: frappe/public/js/frappe/list/list_view.js:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "เอกสารถูกยกเลิกแล้ว" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "เอกสารถูกส่งแล้ว" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "เอกสารอยู่ในสถานะร่าง" @@ -7946,13 +7942,13 @@ msgstr "โดนัท" msgid "Double click to edit label" msgstr "ดับเบิลคลิกเพื่อแก้ไขป้ายกำกับ" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "ดาวน์โหลด" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "ดาวน์โหลด" @@ -7979,7 +7975,7 @@ msgstr "ดาวน์โหลดลิงก์" msgid "Download PDF" msgstr "ดาวน์โหลด PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "ดาวน์โหลดรายงาน" @@ -8042,7 +8038,7 @@ msgstr "ลากองค์ประกอบจากแถบด้านข msgid "Drag to add state" msgstr "ลากเพื่อเพิ่มสถานะ" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "วางไฟล์ที่นี่" @@ -8075,7 +8071,7 @@ msgstr "รายการซ้ำ" msgid "Duplicate Filter Name" msgstr "ชื่อฟิลเตอร์ซ้ำ" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "ชื่อซ้ำ" @@ -8174,17 +8170,17 @@ msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8192,7 +8188,7 @@ msgstr "" msgid "Edit" msgstr "แก้ไข" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "แก้ไข" @@ -8202,7 +8198,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "แก้ไข" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "แก้ไข" @@ -8231,7 +8227,7 @@ msgstr "แก้ไข HTML ที่กำหนดเอง" msgid "Edit DocType" msgstr "แก้ไข DocType" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "แก้ไข DocType" @@ -8249,7 +8245,7 @@ msgstr "แก้ไขฟิลเตอร์" msgid "Edit Footer" msgstr "แก้ไขส่วนท้าย" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "แก้ไขรูปแบบ" @@ -8334,7 +8330,7 @@ msgstr "แก้ไข Doctype {0}" msgid "Edit to add content" msgstr "แก้ไขเพื่อเพิ่มเนื้อหา" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "แก้ไขคำตอบของคุณ" @@ -8343,7 +8339,7 @@ msgstr "แก้ไขคำตอบของคุณ" msgid "Edit your workflow visually using the Workflow Builder." msgstr "แก้ไขเวิร์กโฟลว์ของคุณด้วยภาพโดยใช้ตัวสร้างเวิร์กโฟลว์" -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "แก้ไข {0}" @@ -8351,7 +8347,7 @@ msgstr "แก้ไข {0}" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "กริดที่แก้ไขได้" @@ -8390,11 +8386,14 @@ msgstr "ตัวเลือกองค์ประกอบ" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8403,6 +8402,7 @@ msgstr "ตัวเลือกองค์ประกอบ" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8412,6 +8412,8 @@ msgstr "ตัวเลือกองค์ประกอบ" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "อีเมล" @@ -8443,7 +8445,7 @@ msgstr "บัญชีอีเมลถูกปิดใช้งาน" msgid "Email Account Name" msgstr "ชื่อบัญชีอีเมล" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "เพิ่มบัญชีอีเมลหลายครั้ง" @@ -8531,6 +8533,7 @@ msgid "Email IDs" msgstr "รหัสอีเมล" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "รหัสอีเมล" @@ -8574,10 +8577,10 @@ msgstr "ขีดจำกัดการลองใหม่ของอีเ msgid "Email Rule" msgstr "กฎอีเมล" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" -msgstr "ส่งอีเมลแล้ว" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" +msgstr "ส่งอีเมลเมื่อ" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType @@ -8642,11 +8645,11 @@ msgstr "อีเมลถูกทำเครื่องหมายว่า msgid "Email has been moved to trash" msgstr "อีเมลถูกย้ายไปที่ถังขยะ" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "อีเมลเป็นสิ่งจำเป็นในการสร้างอีเมลผู้ใช้" -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "ไม่ได้ส่งอีเมลถึง {0} (ยกเลิกการสมัคร / ปิดใช้งาน)" @@ -8685,7 +8688,7 @@ msgstr "อีเมลจะถูกส่งพร้อมกับการ msgid "Embed code copied" msgstr "คัดลอกรหัสฝังแล้ว" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8693,7 +8696,7 @@ msgstr "" msgid "Empty column" msgstr "คอลัมน์ว่างเปล่า" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -8712,7 +8715,7 @@ msgstr "เปิดใช้งาน" msgid "Enable Address Autocompletion" msgstr "เปิดใช้งานการเติมที่อยู่อัตโนมัติ" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "เปิดใช้งานอนุญาตการทำซ้ำอัตโนมัติสำหรับ doctype {0} ในการปรับแต่งฟอร์ม" @@ -8738,11 +8741,6 @@ msgstr "เปิดใช้งานความคิดเห็น" msgid "Enable Dynamic Client Registration" msgstr "" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "เปิดใช้งานการแจ้งเตือนทางอีเมล" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -8836,11 +8834,6 @@ msgstr "เปิดใช้งานความปลอดภัย" msgid "Enable Social Login" msgstr "เปิดใช้งานการเข้าสู่ระบบโซเชียล" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "เปิดใช้งานการแชร์โซเชียล" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "เปิดใช้งานการติดตามการดูหน้า" @@ -8848,7 +8841,7 @@ msgstr "เปิดใช้งานการติดตามการดู #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "เปิดใช้งานการยืนยันตัวตนสองขั้นตอน" @@ -8860,12 +8853,6 @@ msgstr "เปิดใช้งานโหมดนักพัฒนาเพ msgid "Enable developer mode to create a standard Web Template" msgstr "เปิดใช้งานโหมดนักพัฒนาเพื่อสร้างแม่แบบเว็บมาตรฐาน" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "เปิดใช้งานการแจ้งเตือนทางอีเมลสำหรับความคิดเห็นหรือการถูกใจที่ได้รับในโพสต์บล็อกของคุณ" - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -8888,6 +8875,7 @@ msgstr "เปิดใช้งานการติดตามเว็บไ #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -8900,6 +8888,7 @@ msgstr "เปิดใช้งานการติดตามเว็บไ #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "เปิดใช้งานแล้ว" @@ -8925,15 +8914,11 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "การเปิดใช้งานการตอบกลับอัตโนมัติในบัญชีอีเมลขาเข้าจะส่งการตอบกลับอัตโนมัติไปยังอีเมลที่ซิงค์ทั้งหมด คุณต้องการดำเนินการต่อหรือไม่?" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "การเปิดใช้งานนี้จะลงทะเบียนไซต์ของคุณบนเซิร์ฟเวอร์รีเลย์กลางเพื่อส่งการแจ้งเตือนแบบพุชสำหรับแอปที่ติดตั้งทั้งหมดผ่าน Firebase Cloud Messaging เซิร์ฟเวอร์นี้จะจัดเก็บเฉพาะโทเค็นของผู้ใช้และบันทึกข้อผิดพลาด และไม่มีการบันทึกข้อความ" - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " -msgstr "" +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "การเปิดใช้งานนี้จะลงทะเบียนไซต์ของคุณบนเซิร์ฟเวอร์รีเลย์กลางเพื่อส่งการแจ้งเตือนแบบพุชสำหรับแอปที่ติดตั้งทั้งหมดผ่าน Firebase Cloud Messaging เซิร์ฟเวอร์นี้จะจัดเก็บเฉพาะโทเค็นของผู้ใช้และบันทึกข้อผิดพลาด และไม่มีการบันทึกข้อความ" #. Description of the 'Queue in Background (BETA)' (Check) field in DocType #. 'DocType' @@ -8949,11 +8934,11 @@ msgstr "การเปิดใช้งานนี้จะส่งเอก msgid "Encrypt Backups" msgstr "" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "" @@ -8965,7 +8950,7 @@ msgstr "" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -8981,6 +8966,10 @@ msgstr "" msgid "End Date cannot be before Start Date!" msgstr "" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9025,7 +9014,7 @@ msgstr "ป้อน Client Id และ Client Secret ในการตั้ msgid "Enter Code displayed in OTP App." msgstr "ป้อนรหัสที่แสดงในแอป OTP" -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "ป้อนผู้รับอีเมล" @@ -9095,10 +9084,17 @@ msgstr "เท่ากับ" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9108,7 +9104,7 @@ msgstr "เท่ากับ" msgid "Error" msgstr "ข้อผิดพลาด" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "ข้อผิดพลาด" @@ -9128,7 +9124,7 @@ msgstr "" msgid "Error Message" msgstr "ข้อความข้อผิดพลาด" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 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 "" @@ -9156,9 +9152,9 @@ msgstr "ข้อผิดพลาดใน Client Script." msgid "Error in Header/Footer Script" msgstr "ข้อผิดพลาดในสคริปต์ส่วนหัว/ส่วนท้าย" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "ข้อผิดพลาดในการแจ้งเตือน" @@ -9178,19 +9174,19 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "ข้อผิดพลาดขณะเชื่อมต่อกับบัญชีอีเมล {0}" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "ข้อผิดพลาดขณะประเมินการแจ้งเตือน {0} โปรดแก้ไขแม่แบบของคุณ" -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "ข้อผิดพลาด: ข้อมูลหายไปในตาราง {0}" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "ข้อผิดพลาด: ค่าหายไปสำหรับ {0}: {1}" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "ข้อผิดพลาด: {0} แถว #{1}: ค่าหายไปสำหรับ: {2}" @@ -9247,7 +9243,7 @@ msgstr "ประเภทเหตุการณ์" msgid "Events" msgstr "เหตุการณ์" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "เหตุการณ์ในปฏิทินวันนี้" @@ -9331,7 +9327,7 @@ msgstr "ดำเนินการ" msgid "Execute Console script" msgstr "ดำเนินการสคริปต์คอนโซล" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "กำลังดำเนินการโค้ด" @@ -9339,7 +9335,7 @@ msgstr "กำลังดำเนินการโค้ด" msgid "Executing..." msgstr "กำลังดำเนินการ..." -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "เวลาการดำเนินการ: {0} วินาที" @@ -9365,12 +9361,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "ขยาย" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "ขยายทั้งหมด" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9398,7 +9394,9 @@ msgid "Expire Notification On" msgstr "การแจ้งเตือนหมดอายุเมื่อ" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "หมดอายุ" @@ -9426,13 +9424,13 @@ msgstr "เวลาหมดอายุของหน้าภาพ QR Code" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "ส่งออก" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "ส่งออก" @@ -9469,7 +9467,7 @@ msgstr "ส่งออกจาก" msgid "Export Import Log" msgstr "ส่งออกบันทึกการนำเข้า" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "ส่งออกรายงาน: {0}" @@ -9478,11 +9476,11 @@ msgstr "ส่งออกรายงาน: {0}" msgid "Export Type" msgstr "ประเภทการส่งออก" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "ส่งออกแถวที่ตรงกันทั้งหมดหรือไม่?" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "ส่งออกแถว {0} ทั้งหมดหรือไม่?" @@ -9490,6 +9488,10 @@ msgstr "ส่งออกแถว {0} ทั้งหมดหรือไม msgid "Export as zip" msgstr "ส่งออกเป็น zip" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "ไม่อนุญาตให้ส่งออก คุณต้องมีบทบาท {0} เพื่อส่งออก" @@ -9595,7 +9597,7 @@ msgstr "" msgid "Failed Logins (Last 30 days)" msgstr "" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "" @@ -9612,7 +9614,7 @@ msgstr "" msgid "Failed to complete setup" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "" @@ -9621,15 +9623,15 @@ msgstr "" msgid "Failed to connect to server" msgstr "" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "" @@ -9637,8 +9639,8 @@ msgstr "" msgid "Failed to enable scheduler: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "" @@ -9654,7 +9656,7 @@ msgstr "" msgid "Failed to generate preview of series" msgstr "ล้มเหลวในการสร้างตัวอย่างของซีรีส์" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "ล้มเหลวในการดึงวิธีการสำหรับคำสั่ง {0} ด้วย {1}" @@ -9674,11 +9676,11 @@ msgstr "ล้มเหลวในการนำเข้า virtual doctype { msgid "Failed to optimize image: {0}" msgstr "ล้มเหลวในการปรับแต่งภาพ: {0}" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "ล้มเหลวในการแสดงข้อความ: {}" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "ล้มเหลวในการแสดงหัวเรื่อง: {}" @@ -9728,12 +9730,6 @@ msgstr "ไอคอนโปรด" msgid "Fax" msgstr "แฟกซ์" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "แนะนำ" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "ข้อเสนอแนะ" @@ -9791,17 +9787,17 @@ msgstr "กำลังดึงเอกสารการค้นหาทั #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "" @@ -9814,7 +9810,7 @@ msgstr "" msgid "Field Description" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9844,7 +9840,7 @@ msgstr "" msgid "Field Type" msgstr "" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "" @@ -9870,11 +9866,11 @@ msgstr "" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "" -#: frappe/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "" -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9892,20 +9888,20 @@ 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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "" @@ -9921,15 +9917,15 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "" @@ -9952,7 +9948,7 @@ msgstr "" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -9965,7 +9961,7 @@ msgstr "" msgid "Fields Multicheck" msgstr "" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "" @@ -9973,7 +9969,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10001,7 +9997,7 @@ msgstr "" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10014,7 +10010,7 @@ msgstr "" msgid "File" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "" @@ -10067,7 +10063,7 @@ msgstr "" msgid "File backup is ready" msgstr "" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "" @@ -10075,7 +10071,7 @@ msgstr "" msgid "File not attached" msgstr "" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "" @@ -10084,11 +10080,11 @@ msgstr "" msgid "File too big" msgstr "" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "" @@ -10102,10 +10098,10 @@ msgstr "" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10142,11 +10138,11 @@ msgstr "" msgid "Filter Values" msgstr "" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10164,7 +10160,6 @@ msgstr "" msgid "Filtered Records" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "" @@ -10179,7 +10174,9 @@ msgstr "" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10201,6 +10198,11 @@ msgstr "" msgid "Filters Display" msgstr "" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10213,11 +10215,11 @@ msgstr "" msgid "Filters Section" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "" @@ -10230,18 +10232,18 @@ msgstr "" msgid "Filters {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1427 +#: frappe/public/js/frappe/views/reports/report_view.js:1429 msgid "Filters:" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 msgid "Find '{0}' in ..." msgstr "" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 msgid "Find {0} in {1}" msgstr "" @@ -10265,8 +10267,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "ชื่อแรก" @@ -10275,10 +10281,6 @@ msgstr "ชื่อแรก" msgid "First Success Message" msgstr "ข้อความความสำเร็จครั้งแรก" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:49 -msgid "First Transaction" -msgstr "ธุรกรรมแรก" - #: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." msgstr "คอลัมน์ข้อมูลแรกต้องว่างเปล่า" @@ -10329,11 +10331,11 @@ msgstr "ความแม่นยำของการลอยตัว" msgid "Fold" msgstr "พับ" -#: frappe/core/doctype/doctype/doctype.py:1450 +#: frappe/core/doctype/doctype/doctype.py:1451 msgid "Fold can not be at the end of the form" msgstr "การพับไม่สามารถอยู่ที่ส่วนท้ายของฟอร์มได้" -#: frappe/core/doctype/doctype/doctype.py:1448 +#: frappe/core/doctype/doctype/doctype.py:1449 msgid "Fold must come before a Section Break" msgstr "การพับต้องมาก่อนการแบ่งส่วน" @@ -10351,7 +10353,7 @@ msgstr "ชื่อโฟลเดอร์" msgid "Folder name should not include '/' (slash)" msgstr "ชื่อโฟลเดอร์ไม่ควรรวม '/' (สแลช)" -#: frappe/core/doctype/file/file.py:472 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "โฟลเดอร์ {0} ไม่ว่างเปล่า" @@ -10458,7 +10460,7 @@ msgstr "รายละเอียดส่วนท้าย" msgid "Footer HTML" msgstr "HTML ส่วนท้าย" -#: frappe/printing/doctype/letter_head/letter_head.py:75 +#: frappe/printing/doctype/letter_head/letter_head.py:81 msgid "Footer HTML set from attachment {0}" msgstr "HTML ส่วนท้ายตั้งค่าจากไฟล์แนบ {0}" @@ -10495,7 +10497,7 @@ msgstr "แม่แบบส่วนท้าย" msgid "Footer Template Values" msgstr "ค่าแม่แบบส่วนท้าย" -#: frappe/printing/page/print/print.js:116 +#: frappe/printing/page/print/print.js:129 msgid "Footer might not be visible as {0} option is disabled" msgstr "ส่วนท้ายอาจมองไม่เห็นเนื่องจากตัวเลือก {0} ถูกปิดใช้งาน" @@ -10553,8 +10555,8 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10580,12 +10582,6 @@ msgstr "" msgid "For help see Client Script API and Examples" msgstr "" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "" - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "สำหรับข้อมูลเพิ่มเติม {0}" @@ -10600,7 +10596,7 @@ msgstr "สำหรับที่อยู่หลายรายการ msgid "For updating, you can update only selective columns." msgstr "สำหรับการอัปเดต คุณสามารถอัปเดตเฉพาะคอลัมน์ที่เลือกได้" -#: frappe/core/doctype/doctype/doctype.py:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "สำหรับ {0} ที่ระดับ {1} ใน {2} ในแถว {3}" @@ -10655,7 +10651,7 @@ 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:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "ฟอร์ม" @@ -10715,6 +10711,11 @@ msgstr "รูปแบบ" msgid "Format Data" msgstr "จัดรูปแบบข้อมูล" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "ส่งต่อ" @@ -10742,7 +10743,15 @@ msgstr "หน่วยเศษส่วน" msgid "Frappe" msgstr "ฟรัปเป้" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "เฟรมเวิร์กฟรัปเป้" @@ -10831,7 +10840,7 @@ msgstr "จากวันที่" msgid "From Date Field" msgstr "ฟิลด์จากวันที่" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "จากประเภทเอกสาร" @@ -10858,18 +10867,16 @@ msgstr "เต็ม" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "ชื่อเต็ม" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "เต็มหน้า" @@ -10895,13 +10902,13 @@ msgstr "ฟังก์ชันตาม" msgid "Function {0} is not whitelisted." msgstr "ฟังก์ชัน {0} ไม่ได้อยู่ในรายการที่อนุญาต" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" -msgstr "สามารถสร้างโหนดเพิ่มเติมได้เฉพาะภายใต้โหนดประเภท 'กลุ่ม'" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -10960,7 +10967,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "" @@ -10968,8 +10975,14 @@ msgstr "" msgid "Generate Random Password" msgstr "" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "" @@ -10992,7 +11005,7 @@ msgstr "" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "" @@ -11128,7 +11141,7 @@ msgid "Go to this URL after completing the form" msgstr "" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "" @@ -11176,10 +11189,6 @@ msgstr "" msgid "Google Calendar" msgstr "" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
    {0}" -msgstr "" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "" @@ -11298,11 +11307,6 @@ msgstr "URL ของ Google Sheets ไม่ถูกต้องหรือ msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "" -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "ตัวอย่าง Google Snippet" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11379,14 +11383,10 @@ msgstr "จัดกลุ่มตามประเภท" msgid "Group By field is required to create a dashboard chart" msgstr "ฟิลด์จัดกลุ่มตามเป็นสิ่งจำเป็นในการสร้างแผนภูมิแดชบอร์ด" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "โหนดกลุ่ม" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11436,7 +11436,6 @@ msgstr "" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11447,9 +11446,8 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11553,7 +11551,7 @@ msgstr "ส่วนหัว" msgid "Header HTML" msgstr "HTML ส่วนหัว" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "HTML ส่วนหัวตั้งค่าจากไฟล์แนบ {0}" @@ -11611,6 +11609,12 @@ msgstr "แผนที่ความร้อน" msgid "Hello" msgstr "สวัสดี" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "สวัสดี," + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11676,7 +11680,7 @@ msgstr "เฮลเวติกา" msgid "Helvetica Neue" msgstr "เฮลเวติกา นอย" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "นี่คือลิงก์ติดตามของคุณ" @@ -11712,7 +11716,7 @@ msgstr "ซ่อน" msgid "Hidden Fields" msgstr "ฟิลด์ที่ซ่อนอยู่" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11745,11 +11749,6 @@ msgstr "ซ่อนขอบ" msgid "Hide Buttons" msgstr "ซ่อนปุ่ม" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "ซ่อน CTA" - #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json @@ -11829,7 +11828,7 @@ msgstr "ซ่อนแถบด้านข้าง เมนู และค msgid "Hide Standard Menu" msgstr "ซ่อนเมนูมาตรฐาน" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "ซ่อนแท็ก" @@ -11843,7 +11842,7 @@ msgstr "ซ่อนวันหยุดสุดสัปดาห์" msgid "Hide descendant records of For Value." msgstr "ซ่อนบันทึกลูกหลานของ For Value." -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "ซ่อนรายละเอียด" @@ -11892,11 +11891,8 @@ 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:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -11984,16 +11980,16 @@ msgstr "" #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "รหัส" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "รหัส" @@ -12089,9 +12085,9 @@ msgstr "หากเลือกใช้การอนุญาตผู้ใ msgid "If Checked workflow status will not override status in list view" msgstr "หากเลือก สถานะเวิร์กโฟลว์จะไม่เขียนทับสถานะในมุมมองรายการ" -#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "หากเป็นเจ้าของ" @@ -12219,6 +12215,10 @@ msgstr "" msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "หากคำแนะนำเหล่านี้ไม่เป็นประโยชน์ โปรดเพิ่มข้อเสนอแนะของคุณใน GitHub Issues" +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12250,7 +12250,11 @@ msgstr "" msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "" -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "หากคุณเพิ่งกู้คืนไซต์ คุณอาจต้องคัดลอก site_config.json ที่มีคีย์การเข้ารหัสต้นฉบับ" @@ -12307,12 +12311,12 @@ msgstr "ละเว้นไฟล์แนบที่มีขนาดเก msgid "Ignored Apps" msgstr "แอปที่ถูกละเว้น" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "สถานะเอกสารไม่ถูกต้องสำหรับ {0}" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "คำสั่ง SQL ไม่ถูกต้อง" @@ -12373,11 +12377,11 @@ msgstr "มุมมองภาพ" msgid "Image Width" msgstr "ความกว้างของภาพ" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 msgid "Image field must be a valid fieldname" msgstr "ฟิลด์ภาพต้องเป็นชื่อฟิลด์ที่ถูกต้อง" -#: frappe/core/doctype/doctype/doctype.py:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "ฟิลด์ภาพต้องเป็นประเภทแนบภาพ" @@ -12399,15 +12403,15 @@ msgstr "ภาพ" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "แอบอ้าง" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "แอบอ้างเป็น {0}" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "ถูกแอบอ้างโดย {0}" @@ -12433,7 +12437,7 @@ msgstr "โดยนัย" msgid "Import" msgstr "นำเข้า" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "นำเข้า" @@ -12661,15 +12665,16 @@ msgstr "รวมธีมจากแอป" msgid "Include Web View Link in Email" msgstr "รวมลิงก์มุมมองเว็บในอีเมล" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "รวมตัวกรอง" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "รวมการเยื้อง" @@ -12716,7 +12721,7 @@ msgstr "บัญชีอีเมลขาเข้าไม่ถูกต้ msgid "Incomplete Virtual Doctype Implementation" msgstr "การดำเนินการ Virtual Doctype ไม่สมบูรณ์" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "รายละเอียดการเข้าสู่ระบบไม่สมบูรณ์" @@ -12728,7 +12733,7 @@ msgstr "การกำหนดค่าไม่ถูกต้อง" msgid "Incorrect URL" msgstr "URL ไม่ถูกต้อง" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "ผู้ใช้หรือรหัสผ่านไม่ถูกต้อง" @@ -12736,11 +12741,11 @@ msgstr "ผู้ใช้หรือรหัสผ่านไม่ถูก msgid "Incorrect Verification code" msgstr "รหัสยืนยันไม่ถูกต้อง" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "ค่าที่ไม่ถูกต้องในแถว {0}:" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "ค่าที่ไม่ถูกต้อง:" @@ -12752,7 +12757,7 @@ msgstr "ค่าที่ไม่ถูกต้อง:" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "ดัชนี" @@ -12827,7 +12832,7 @@ msgstr "แทรกด้านบน" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "แทรกหลังจาก" @@ -12843,7 +12848,7 @@ msgstr "ฟิลด์แทรกหลังจาก '{0}' ที่กล msgid "Insert Below" msgstr "แทรกด้านล่าง" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "แทรกคอลัมน์ก่อน {0}" @@ -12861,8 +12866,12 @@ msgstr "แทรกบันทึกใหม่" msgid "Insert Style" msgstr "แทรกสไตล์" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "ติดตั้ง {0} จาก Marketplace" @@ -12879,7 +12888,7 @@ msgid "Installed Applications" msgstr "แอปพลิเคชันที่ติดตั้ง" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "แอปที่ติดตั้ง" @@ -12896,19 +12905,19 @@ msgstr "ส่งคำแนะนำทางอีเมลแล้ว" msgid "Insufficient Permission Level for {0}" msgstr "ระดับสิทธิ์ไม่เพียงพอสำหรับ {0}" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "สิทธิ์ไม่เพียงพอสำหรับ {0}" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" msgstr "สิทธิ์ไม่เพียงพอสำหรับการลบรายงาน" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" msgstr "สิทธิ์ไม่เพียงพอสำหรับการแก้ไขรายงาน" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "ขีดจำกัดไฟล์แนบไม่เพียงพอ" @@ -13012,9 +13021,9 @@ msgid "Invalid" msgstr "ไม่ถูกต้อง" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "" @@ -13022,7 +13031,7 @@ msgstr "" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "" @@ -13038,7 +13047,7 @@ msgstr "รูปแบบ CSV ไม่ถูกต้อง" msgid "Invalid Code. Please try again." msgstr "รหัสไม่ถูกต้อง โปรดลองอีกครั้ง" -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "เงื่อนไขไม่ถูกต้อง: {}" @@ -13058,16 +13067,20 @@ msgstr "DocType ไม่ถูกต้อง" msgid "Invalid DocType: {0}" msgstr "DocType ไม่ถูกต้อง: {0}" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "ชื่อฟิลด์ไม่ถูกต้อง" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "URL ไฟล์ไม่ถูกต้อง" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13099,7 +13112,7 @@ msgstr "การเข้าสู่ระบบไม่ถูกต้อง msgid "Invalid Mail Server. Please rectify and try again." msgstr "เซิร์ฟเวอร์เมลไม่ถูกต้อง โปรดแก้ไขและลองอีกครั้ง" -#: frappe/model/naming.py:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "ชุดการตั้งชื่อไม่ถูกต้อง: {}" @@ -13108,8 +13121,8 @@ msgstr "ชุดการตั้งชื่อไม่ถูกต้อง msgid "Invalid Operation" msgstr "การดำเนินการไม่ถูกต้อง" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "ตัวเลือกไม่ถูกต้อง" @@ -13121,25 +13134,25 @@ msgstr "เซิร์ฟเวอร์เมลขาออกหรือพ msgid "Invalid Output Format" msgstr "รูปแบบผลลัพธ์ไม่ถูกต้อง" -#: frappe/model/base_document.py:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "การแทนที่ไม่ถูกต้อง" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "พารามิเตอร์ไม่ถูกต้อง" -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "รหัสผ่านไม่ถูกต้อง" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "หมายเลขโทรศัพท์ไม่ถูกต้อง" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "คำขอไม่ถูกต้อง" @@ -13148,7 +13161,7 @@ msgstr "คำขอไม่ถูกต้อง" msgid "Invalid Search Field {0}" msgstr "ฟิลด์การค้นหาไม่ถูกต้อง {0}" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "ชื่อฟิลด์ตารางไม่ถูกต้อง" @@ -13156,8 +13169,8 @@ msgstr "ชื่อฟิลด์ตารางไม่ถูกต้อง msgid "Invalid Transition" msgstr "การเปลี่ยนผ่านไม่ถูกต้อง" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13171,47 +13184,51 @@ msgstr "ชื่อผู้ใช้หรือรหัสผ่านสน msgid "Invalid Values" msgstr "ค่าที่ไม่ถูกต้อง" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "Webhook Secret ไม่ถูกต้อง" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "ฟังก์ชันการรวมไม่ถูกต้อง" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "คอลัมน์ไม่ถูกต้อง" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "สถานะเอกสารไม่ถูกต้อง" @@ -13223,31 +13240,27 @@ msgstr "นิพจน์ที่ตั้งค่าในตัวกรอ msgid "Invalid expression set in filter {0} ({1})" msgstr "นิพจน์ที่ตั้งค่าในตัวกรอง {0} ({1}) ไม่ถูกต้อง" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "ชื่อฟิลด์ไม่ถูกต้อง {0}" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "ชื่อฟิลด์ไม่ถูกต้อง '{0}' ใน autoname" @@ -13255,11 +13268,11 @@ msgstr "ชื่อฟิลด์ไม่ถูกต้อง '{0}' ใน a msgid "Invalid file path: {0}" msgstr "เส้นทางไฟล์ไม่ถูกต้อง: {0}" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13267,20 +13280,28 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "ตัวกรองไม่ถูกต้อง: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "เพิ่ม json ไม่ถูกต้องในตัวเลือกที่กำหนดเอง: {0}" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "ประเภทชื่อไม่ถูกต้อง (จำนวนเต็ม) สำหรับคอลัมน์ชื่อ varchar" @@ -13288,6 +13309,10 @@ msgstr "ประเภทชื่อไม่ถูกต้อง (จำน msgid "Invalid naming series {}: dot (.) missing" msgstr "ชุดการตั้งชื่อไม่ถูกต้อง {}: จุด (.) หายไป" +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "เนื้อหาไม่ถูกต้องหรือเสียหายสำหรับการนำเข้า" @@ -13296,19 +13321,27 @@ msgstr "เนื้อหาไม่ถูกต้องหรือเสี msgid "Invalid redirect regex in row #{}: {}" msgstr "รีไดเรกต์ regex ไม่ถูกต้องในแถว #{}: {}" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "อาร์กิวเมนต์คำขอไม่ถูกต้อง" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13316,7 +13349,7 @@ msgstr "" msgid "Invalid template file for import" msgstr "ไฟล์แม่แบบไม่ถูกต้องสำหรับการนำเข้า" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "สถานะโทเค็นไม่ถูกต้อง! ตรวจสอบว่าโทเค็นถูกสร้างโดยผู้ใช้ OAuth หรือไม่" @@ -13325,20 +13358,20 @@ msgstr "สถานะโทเค็นไม่ถูกต้อง! ตร msgid "Invalid username or password" msgstr "ชื่อผู้ใช้หรือรหัสผ่านไม่ถูกต้อง" -#: frappe/model/naming.py:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "ค่าที่ระบุสำหรับ UUID ไม่ถูกต้อง: {}" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "ค่าที่ไม่ถูกต้องสำหรับฟิลด์:" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "เวอร์ชัน wkhtmltopdf ไม่ถูกต้อง" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "เงื่อนไข {0} ไม่ถูกต้อง" @@ -13347,10 +13380,47 @@ msgstr "เงื่อนไข {0} ไม่ถูกต้อง" msgid "Inverse" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "" @@ -13375,7 +13445,7 @@ msgstr "" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "" @@ -13428,6 +13498,10 @@ msgstr "" msgid "Is Global" msgstr "เป็นสากล" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "เป็นกลุ่ม" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13454,8 +13528,13 @@ msgstr "เป็นสถานะทางเลือก" msgid "Is Primary" msgstr "เป็นหลัก" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 msgid "Is Primary Contact" msgstr "เป็นผู้ติดต่อหลัก" @@ -13486,7 +13565,7 @@ msgstr "เป็นสาธารณะ" msgid "Is Published Field" msgstr "เป็นฟิลด์ที่เผยแพร่" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "ฟิลด์ที่เผยแพร่ต้องเป็นชื่อฟิลด์ที่ถูกต้อง" @@ -13511,7 +13590,7 @@ msgstr "การตั้งค่าเสร็จสมบูรณ์หร #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "เป็นเดี่ยว" @@ -13547,7 +13626,7 @@ msgstr "เป็นมาตรฐาน" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "สามารถส่งได้" @@ -13753,11 +13832,11 @@ msgstr "คอลัมน์กระดานคัมบัง" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "ชื่อกระดานคัมบัง" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "การตั้งค่าคัมบัง" @@ -13778,12 +13857,14 @@ msgstr "ติดตามการสื่อสารทั้งหมด" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -14045,7 +14126,7 @@ msgstr "ป้ายกำกับเป็นสิ่งจำเป็น" msgid "Landing Page" msgstr "หน้าแรก" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "แนวนอน" @@ -14053,10 +14134,13 @@ msgstr "แนวนอน" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "ภาษา" @@ -14144,8 +14228,12 @@ msgstr "เดือนที่แล้ว" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "นามสกุล" @@ -14160,6 +14248,11 @@ msgstr "วันที่รีเซ็ตรหัสผ่านครั้ msgid "Last Quarter" msgstr "ไตรมาสที่แล้ว" +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" + #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json @@ -14176,11 +14269,6 @@ msgstr "การทำงานครั้งล่าสุด" msgid "Last Sync On" msgstr "ซิงค์ครั้งล่าสุดเมื่อ" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "ซิงค์ครั้งล่าสุดที่" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14291,7 +14379,7 @@ msgstr "ความยาว" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "ความยาวของอาร์เรย์ข้อมูลที่ส่งผ่านเกินค่าจุดป้ายกำกับสูงสุดที่อนุญาต!" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "ความยาวของ {0} ควรอยู่ระหว่าง 1 ถึง 1000" @@ -14340,8 +14428,8 @@ 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:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14369,7 +14457,7 @@ msgstr "ชื่อหัวจดหมาย" msgid "Letter Head Scripts" msgstr "สคริปต์หัวจดหมาย" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "หัวจดหมายไม่สามารถปิดใช้งานและเป็นค่าเริ่มต้นได้" @@ -14386,7 +14474,7 @@ msgstr "หัวจดหมายใน HTML" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "ระดับ" @@ -14436,20 +14524,6 @@ msgstr "ธีมสีอ่อน" msgid "Like" msgstr "ถูกใจ" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "จำกัดการถูกใจ" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "จำกัดการถูกใจต่อชั่วโมง" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "ถูกใจใน {0}: {1}" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "ถูกใจแล้ว" @@ -14490,6 +14564,7 @@ msgstr "เส้น" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14503,6 +14578,7 @@ msgstr "เส้น" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "ลิงก์" @@ -14633,10 +14709,15 @@ msgstr "ลิงก์แล้ว" msgid "Linked With" msgstr "ลิงก์กับ" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +msgstr "" + #. Label of the links (Table) field in DocType 'Address' #. Label of the links (Table) field in DocType 'Contact' #. Label of the links_section (Tab Break) field in DocType 'DocType' #. Label of the links (Table) field in DocType 'Customize Form' +#. Label of the links (Table) field in DocType 'Event' #. Label of the links (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14644,6 +14725,7 @@ msgstr "ลิงก์กับ" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "ลิงก์" @@ -14685,7 +14767,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14726,7 +14808,7 @@ msgstr "" msgid "List setting message" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "" @@ -14735,9 +14817,8 @@ msgstr "" msgid "Load Balancing" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14754,10 +14835,10 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "" @@ -14769,7 +14850,7 @@ msgstr "" msgid "Loading import file..." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "" @@ -14779,7 +14860,7 @@ msgstr "" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "" @@ -14840,7 +14921,7 @@ msgstr "เข้าสู่ระบบเพื่อเข้าถึงห msgid "Log out" msgstr "ออกจากระบบ" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "ออกจากระบบแล้ว" @@ -14900,7 +14981,7 @@ msgstr "รหัสยืนยันการเข้าสู่ระบบ msgid "Login and view in Browser" msgstr "เข้าสู่ระบบและดูในเบราว์เซอร์" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "ต้องเข้าสู่ระบบเพื่อดูมุมมองรายการฟอร์มเว็บ เปิดใช้งาน {0} เพื่อดูการตั้งค่ารายการ" @@ -14908,7 +14989,7 @@ msgstr "ต้องเข้าสู่ระบบเพื่อดูมุ msgid "Login link sent to your email" msgstr "ลิงก์เข้าสู่ระบบถูกส่งไปยังอีเมลของคุณ" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "ไม่อนุญาตให้เข้าสู่ระบบในขณะนี้" @@ -14961,7 +15042,7 @@ msgstr "เข้าสู่ระบบด้วยลิงก์อีเม msgid "Login with email link expiry (in minutes)" msgstr "ลิงก์อีเมลหมดอายุ (ในนาที)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "ไม่อนุญาตให้เข้าสู่ระบบด้วยชื่อผู้ใช้และรหัสผ่าน" @@ -14980,7 +15061,7 @@ msgstr "" msgid "Logout" msgstr "ออกจากระบบ" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "ออกจากระบบทุกเซสชัน" @@ -15084,7 +15165,10 @@ msgid "Major" 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 +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "" @@ -15160,7 +15244,7 @@ msgstr "ขึ้นอยู่กับที่จำเป็น" msgid "Mandatory Depends On (JS)" msgstr "ขึ้นอยู่กับที่จำเป็น (JS)" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "ข้อมูลที่จำเป็นหายไป:" @@ -15172,15 +15256,15 @@ msgstr "ฟิลด์ที่จำเป็น: ตั้งค่าบท msgid "Mandatory field: {0}" msgstr "ฟิลด์ที่จำเป็น: {0}" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "ฟิลด์ที่จำเป็นในตาราง {0}, แถว {1}" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "ฟิลด์ที่จำเป็นใน {0}" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "ฟิลด์ที่จำเป็น:" @@ -15261,10 +15345,8 @@ msgid "Mark as Unread" msgstr "" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15345,7 +15427,13 @@ msgstr "" msgid "Max auto email report per user" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "ความกว้างสูงสุดสำหรับประเภทสกุลเงินคือ 100px ในแถว {0}" @@ -15354,20 +15442,15 @@ msgstr "ความกว้างสูงสุดสำหรับประ msgid "Maximum" msgstr "สูงสุด" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "ถึงขีดจำกัดไฟล์แนบสูงสุด {0} สำหรับ {1} {2} แล้ว" -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "จำนวนฟิลด์สูงสุด" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "ถึงขีดจำกัดไฟล์แนบสูงสุด {0} แล้ว" -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "อนุญาตสูงสุด {0} แถว" @@ -15383,7 +15466,7 @@ msgstr "ความหมายของการส่ง ยกเลิก #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15396,7 +15479,7 @@ msgstr "ปานกลาง" msgid "Meeting" msgstr "การประชุม" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "ตรงตามเงื่อนไขหรือไม่?" @@ -15437,7 +15520,7 @@ msgstr "เมนู" msgid "Merge with existing" msgstr "รวมกับที่มีอยู่" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "การรวมสามารถทำได้เฉพาะระหว่างกลุ่มถึงกลุ่มหรือโหนดใบถึงโหนดใบ" @@ -15463,7 +15546,7 @@ msgstr "การรวมสามารถทำได้เฉพาะระ #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15503,7 +15586,7 @@ msgstr "ส่งข้อความแล้ว" msgid "Message Type" msgstr "ประเภทข้อความ" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "ข้อความถูกตัด" @@ -15535,29 +15618,21 @@ msgstr "ข้อความ" msgid "Meta" msgstr "เมตา" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "คำอธิบายเมตา" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "ภาพเมตา" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "แท็กเมตา" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "ชื่อเรื่องเมตา" @@ -15610,7 +15685,7 @@ msgstr "วิธีการ" msgid "Method Not Allowed" msgstr "ไม่อนุญาตวิธีการ" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "ต้องการวิธีการเพื่อสร้างการ์ดตัวเลข" @@ -15626,6 +15701,11 @@ msgstr "กลางกลาง" msgid "Middle Name" msgstr "ชื่อกลาง" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15692,11 +15772,11 @@ msgstr "พลาด" msgid "Missing DocType" msgstr "DocType ที่หายไป" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "ฟิลด์ที่หายไป" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "ฟิลด์ที่หายไป" @@ -15732,15 +15812,16 @@ msgstr "มือถือ" msgid "Mobile No" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "หมายเลขมือถือ" + #. Label of the modal_trigger (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Modal Trigger" msgstr "ตัวกระตุ้นโมดอล" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "แก้ไขโดย" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15761,7 +15842,7 @@ msgstr "แก้ไขโดย" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -15937,10 +16018,12 @@ msgstr "ข้อมูลเพิ่มเติม" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "ข้อมูลเพิ่มเติม" @@ -15959,7 +16042,7 @@ msgstr "เนื้อหาเพิ่มเติมสำหรับด้ msgid "Most Used" msgstr "ใช้บ่อยที่สุด" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "รหัสผ่านของคุณอาจยาวเกินไป" @@ -15970,7 +16053,7 @@ msgstr "รหัสผ่านของคุณอาจยาวเกิน msgid "Move" msgstr "ย้าย" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "ย้ายไปยัง" @@ -16006,7 +16089,7 @@ msgstr "ย้ายส่วนไปยังแท็บใหม่" msgid "Move the current field and the following fields to a new column" msgstr "ย้ายฟิลด์ปัจจุบันและฟิลด์ถัดไปไปยังคอลัมน์ใหม่" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "ย้ายไปยังหมายเลขแถว" @@ -16033,7 +16116,7 @@ msgstr "นาง" msgid "Ms" msgstr "นางสาว" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "ไม่อนุญาตให้มีโหนดรากหลายโหนด" @@ -16056,7 +16139,7 @@ msgstr "ต้องอยู่ใน '()' และรวม '{0}' ซึ่ msgid "Must be of type \"Attach Image\"" msgstr "" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "ต้องมีสิทธิ์รายงานเพื่อเข้าถึงรายงานนี้" @@ -16074,7 +16157,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16112,9 +16195,9 @@ msgstr "หมายเหตุ: กล่องนี้ถึงกำหน #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16124,11 +16207,11 @@ msgstr "ชื่อ" msgid "Name (Doc Name)" msgstr "ชื่อ (ชื่อเอกสาร)" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "ชื่อนี้ถูกใช้แล้ว โปรดตั้งชื่อใหม่" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "ชื่อไม่สามารถมีอักขระพิเศษเช่น {0}" @@ -16140,7 +16223,7 @@ msgstr "ชื่อประเภทเอกสาร (DocType) ที่ค msgid "Name of the new Print Format" msgstr "ชื่อรูปแบบการพิมพ์ใหม่" -#: frappe/model/naming.py:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "ชื่อของ {0} ไม่สามารถเป็น {1}" @@ -16179,7 +16262,7 @@ msgstr "กฎการตั้งชื่อ" msgid "Naming Series" msgstr "ชุดการตั้งชื่อ" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "ชุดการตั้งชื่อเป็นสิ่งจำเป็น" @@ -16216,12 +16299,12 @@ msgstr "แม่แบบแถบนำทาง" msgid "Navbar Template Values" msgstr "ค่าของแม่แบบแถบนำทาง" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "เลื่อนรายการลง" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "เลื่อนรายการขึ้น" @@ -16236,7 +16319,11 @@ msgstr "ไปยังเนื้อหาหลัก" msgid "Navigation Settings" msgstr "การตั้งค่าการนำทาง" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "ต้องการบทบาทผู้จัดการพื้นที่ทำงานเพื่อแก้ไขพื้นที่ทำงานส่วนตัวของผู้ใช้อื่น" @@ -16244,7 +16331,7 @@ msgstr "ต้องการบทบาทผู้จัดการพื้ msgid "Negative Value" msgstr "ค่าติดลบ" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16257,6 +16344,12 @@ msgstr "ข้อผิดพลาดชุดซ้อน โปรดติ msgid "Network Printer Settings" msgstr "การตั้งค่าเครื่องพิมพ์เครือข่าย" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +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 @@ -16265,7 +16358,7 @@ msgstr "การตั้งค่าเครื่องพิมพ์เค #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16286,10 +16379,6 @@ msgstr "ที่อยู่ใหม่" msgid "New Chart" msgstr "แผนภูมิใหม่" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "ความคิดเห็นใหม่ใน {0}: {1}" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "ผู้ติดต่อใหม่" @@ -16298,8 +16387,8 @@ msgstr "ผู้ติดต่อใหม่" msgid "New Custom Block" msgstr "บล็อกที่กำหนดเองใหม่" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" msgstr "รูปแบบการพิมพ์ที่กำหนดเองใหม่" @@ -16330,7 +16419,7 @@ msgstr "เหตุการณ์ใหม่" msgid "New Folder" msgstr "โฟลเดอร์ใหม่" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "กระดานคัมบังใหม่" @@ -16365,12 +16454,12 @@ msgstr "การ์ดตัวเลขใหม่" msgid "New Onboarding" msgstr "การเริ่มต้นใช้งานใหม่" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "รหัสผ่านใหม่" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "ชื่อรูปแบบการพิมพ์ใหม่" @@ -16379,7 +16468,7 @@ msgstr "ชื่อรูปแบบการพิมพ์ใหม่" msgid "New Quick List" msgstr "รายการด่วนใหม่" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "ชื่อรายงานใหม่" @@ -16397,8 +16486,8 @@ msgstr "ทางลัดใหม่" msgid "New Users (Last 30 days)" msgstr "ผู้ใช้ใหม่ (30 วันที่ผ่านมา)" -#: frappe/core/doctype/version/version_view.html:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "ค่าใหม่" @@ -16455,13 +16544,13 @@ msgstr "ค่าที่จะตั้งใหม่" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "{0} ใหม่" @@ -16477,7 +16566,7 @@ msgstr "เพิ่ม {0} {1} ใหม่ในแดชบอร์ด {2}" msgid "New {0} {1} created" msgstr "สร้าง {0} {1} ใหม่" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "{0} ใหม่: {1}" @@ -16485,7 +16574,7 @@ msgstr "{0} ใหม่: {1}" msgid "New {} releases for the following apps are available" msgstr "มีการเผยแพร่ {} ใหม่สำหรับแอปต่อไปนี้" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "ผู้ใช้ที่สร้างใหม่ {0} ไม่มีบทบาทที่เปิดใช้งาน" @@ -16498,7 +16587,7 @@ msgstr "ผู้จัดการจดหมายข่าว" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16605,14 +16694,15 @@ msgstr "ถัดไปเมื่อคลิก" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16662,6 +16752,10 @@ msgstr "" msgid "No Email Accounts Assigned" msgstr "" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "" @@ -16697,15 +16791,15 @@ msgstr "" msgid "No Label" msgstr "" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: frappe/public/js/frappe/list/bulk_operations.js:98 #: frappe/public/js/frappe/list/bulk_operations.js:170 #: frappe/utils/weasyprint.py:52 msgid "No Letterhead" msgstr "" -#: frappe/model/naming.py:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "" @@ -16713,7 +16807,7 @@ msgstr "" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "" @@ -16733,11 +16827,11 @@ msgstr "" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "" @@ -16753,11 +16847,11 @@ msgstr "" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16765,7 +16859,7 @@ msgstr "" msgid "No Suggestions" msgstr "" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "" @@ -16777,7 +16871,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "" @@ -16805,23 +16899,19 @@ msgstr "" msgid "No changes to update" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " +msgid "No comments yet." msgstr "" #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "" @@ -16837,11 +16927,15 @@ msgstr "ไม่พบเอกสารที่ติดแท็กด้ว msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "ไม่มีบัญชีอีเมลที่เชื่อมโยงกับผู้ใช้ โปรดเพิ่มบัญชีใน ผู้ใช้ > กล่องจดหมายอีเมล" +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "ไม่มีบันทึกที่ล้มเหลว" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16865,7 +16959,7 @@ msgstr "ไม่มีบันทึกเพิ่มเติม" msgid "No matching records. Search something new" msgstr "ไม่พบบันทึกที่ตรงกัน ค้นหาใหม่" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "ไม่มีรายการเพิ่มเติมที่จะแสดง" @@ -16909,7 +17003,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "ไม่มีสิทธิ์ในการ '{0}' {1}" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "ไม่มีสิทธิ์ในการอ่าน {0}" @@ -16921,7 +17015,7 @@ msgstr "ไม่มีสิทธิ์ในการ {0} {1} {2}" msgid "No records deleted" msgstr "ไม่มีบันทึกที่ถูกลบ" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "ไม่มีบันทึกใน {0}" @@ -16937,7 +17031,7 @@ msgstr "จะไม่มีการส่งออกบันทึก" msgid "No rows" msgstr "ไม่มีแถว" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "ไม่มีหัวข้อ" @@ -16957,11 +17051,11 @@ msgstr "ไม่มี {0}" msgid "No {0} Found" msgstr "ไม่พบ {0}" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "ไม่พบ {0}" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "ไม่พบ {0} ที่ตรงกับตัวกรอง ล้างตัวกรองเพื่อดู {0} ทั้งหมด" @@ -16970,7 +17064,7 @@ msgid "No {0} mail" msgstr "ไม่มีจดหมาย {0}" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "เลขที่" @@ -17013,7 +17107,7 @@ msgstr "สำเนาที่ทำให้เป็นมาตรฐาน msgid "Normalized Query" msgstr "คำสั่งที่ทำให้เป็นมาตรฐาน" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "ไม่อนุญาต" @@ -17034,7 +17128,7 @@ msgstr "ไม่ใช่ลูกหลานของ" msgid "Not Equals" msgstr "ไม่เท่ากับ" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "ไม่พบ" @@ -17060,20 +17154,19 @@ msgstr "ไม่ได้ลิงก์กับบันทึกใด ๆ" msgid "Not Nullable" msgstr "ไม่สามารถเป็นค่าว่างได้" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "ไม่ได้รับอนุญาต" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "ไม่ได้รับอนุญาตให้อ่าน {0}" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17082,10 +17175,10 @@ msgstr "ไม่ได้เผยแพร่" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "ไม่ได้บันทึก" @@ -17117,7 +17210,7 @@ msgstr "ไม่ใช่ค่า CSV (ไฟล์ CSV) ที่ถูกต msgid "Not a valid User Image." msgstr "ไม่ใช่ภาพผู้ใช้ที่ถูกต้อง" -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "ไม่ใช่การกระทำเวิร์กโฟลว์ที่ถูกต้อง" @@ -17133,11 +17226,11 @@ msgstr "ไม่ใช้งาน" msgid "Not allowed for {0}: {1}" msgstr "ไม่อนุญาตสำหรับ {0}: {1}" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "ไม่อนุญาตให้แนบเอกสาร {0} โปรดเปิดใช้งานอนุญาตการพิมพ์สำหรับ {0} ในการตั้งค่าการพิมพ์" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "ไม่อนุญาตให้สร้าง Virtual DocType ที่กำหนดเอง" @@ -17161,27 +17254,27 @@ msgstr "ไม่พบ" msgid "Not in Developer Mode" msgstr "ไม่ได้อยู่ในโหมดนักพัฒนา" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 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:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "ไม่ได้รับอนุญาต" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "ไม่ได้รับอนุญาตให้ดู {0}" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17216,7 +17309,7 @@ msgstr "หมายเหตุ: เพื่อผลลัพธ์ที่ msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "หมายเหตุ: จะอนุญาตให้มีหลายเซสชันในกรณีของอุปกรณ์มือถือ" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "หมายเหตุ: สิ่งนี้จะถูกแชร์กับผู้ใช้" @@ -17240,10 +17333,9 @@ msgstr "ไม่มีอะไรเหลือให้ทำซ้ำ" msgid "Nothing left to undo" msgstr "ไม่มีอะไรเหลือให้ยกเลิก" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "ไม่มีอะไรที่จะแสดง" @@ -17289,15 +17381,15 @@ msgstr "เอกสารที่สมัครรับการแจ้ง msgid "Notification sent to" msgstr "การแจ้งเตือนถูกส่งไปยัง" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "การแจ้งเตือน: ลูกค้า {0} ไม่มีการตั้งหมายเลขมือถือ" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "การแจ้งเตือน: เอกสาร {0} ไม่มีการตั้งหมายเลข {1} (ฟิลด์: {2})" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "การแจ้งเตือน: ผู้ใช้ {0} ไม่มีการตั้งหมายเลขมือถือ" @@ -17348,7 +17440,7 @@ msgstr "แจ้งหากไม่มีการตอบกลับ (ใ msgid "Notify users with a popup when they log in" msgstr "แจ้งผู้ใช้ด้วยป๊อปอัปเมื่อพวกเขาเข้าสู่ระบบ" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "ตอนนี้" @@ -17406,12 +17498,12 @@ msgstr "จำนวนกลุ่ม" msgid "Number of Queries" msgstr "จำนวนคำสั่ง Query" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "จำนวนฟิลด์ไฟล์แนบมากกว่า {} ขีดจำกัดอัปเดตเป็น {}" -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "จำนวนการสำรองข้อมูลต้องมากกว่าศูนย์" @@ -17520,11 +17612,11 @@ msgstr "" msgid "OTP Issuer Name" msgstr "" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "" @@ -17643,7 +17735,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "" @@ -17683,7 +17775,7 @@ msgstr "การเริ่มต้นใช้งานเสร็จสม #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "เมื่อส่งแล้ว เอกสารที่สามารถส่งได้จะไม่สามารถเปลี่ยนแปลงได้ สามารถยกเลิกและแก้ไขได้เท่านั้น" @@ -17728,7 +17820,7 @@ msgstr "อนุญาตให้เฉพาะผู้ดูแลระบ msgid "Only Allow Edit For" msgstr "อนุญาตให้แก้ไขเฉพาะสำหรับ" -#: frappe/core/doctype/doctype/doctype.py:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "ตัวเลือกที่อนุญาตสำหรับฟิลด์ข้อมูลคือ:" @@ -17745,7 +17837,7 @@ msgstr "เฉพาะผู้จัดการพื้นที่ทำง msgid "Only allowed to export customizations in developer mode" msgstr "อนุญาตให้ส่งออกการปรับแต่งในโหมดนักพัฒนาเท่านั้น" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "สามารถทิ้งเอกสารร่างได้เท่านั้น" @@ -17764,19 +17856,19 @@ msgstr "จำเป็นเฉพาะฟิลด์ที่จำเป็ msgid "Only one {0} can be set as primary." msgstr "สามารถตั้งค่า {0} ได้เพียงหนึ่งรายการเป็นหลัก" -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "สามารถลบรายงานประเภท Report Builder ได้เท่านั้น" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "สามารถแก้ไขรายงานประเภท Report Builder ได้เท่านั้น" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "อนุญาตให้ปรับแต่งเฉพาะ DocTypes มาตรฐานจากฟอร์มที่กำหนดเอง" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "เฉพาะผู้ดูแลระบบเท่านั้นที่สามารถลบ DocType มาตรฐานได้" @@ -17846,7 +17938,7 @@ msgstr "" msgid "Open Settings" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "" @@ -17864,7 +17956,7 @@ msgstr "" msgid "Open a module or tool" msgstr "" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "" @@ -17872,7 +17964,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17887,13 +17979,13 @@ msgstr "" #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "" @@ -17902,6 +17994,10 @@ msgstr "" msgid "OpenID Configuration" msgstr "" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" @@ -17917,7 +18013,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "ผู้ปฏิบัติงานต้องเป็นหนึ่งใน {0}" @@ -17943,7 +18039,7 @@ msgstr "ตัวเลือก 2" msgid "Option 3" msgstr "ตัวเลือก 3" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "ตัวเลือก {0} สำหรับฟิลด์ {1} ไม่ใช่ตารางลูก" @@ -17963,6 +18059,7 @@ msgstr "ไม่บังคับ: การแจ้งเตือนจะ #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -17971,11 +18068,12 @@ msgstr "ไม่บังคับ: การแจ้งเตือนจะ #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "ตัวเลือก" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "ตัวเลือกประเภทฟิลด์ 'Dynamic Link' ต้องชี้ไปยังฟิลด์ลิงก์อื่นที่มีตัวเลือกเป็น 'DocType'" @@ -17984,7 +18082,7 @@ msgstr "ตัวเลือกประเภทฟิลด์ 'Dynamic Link' msgid "Options Help" msgstr "ตัวเลือกช่วยเหลือ" -#: frappe/core/doctype/doctype/doctype.py:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "ตัวเลือกสำหรับฟิลด์การให้คะแนนสามารถอยู่ในช่วง 3 ถึง 10" @@ -17992,7 +18090,7 @@ msgstr "ตัวเลือกสำหรับฟิลด์การให msgid "Options for select. Each option on a new line." msgstr "ตัวเลือกสำหรับการเลือก แต่ละตัวเลือกในบรรทัดใหม่" -#: frappe/core/doctype/doctype/doctype.py:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 msgid "Options for {0} must be set before setting the default value." msgstr "ต้องตั้งค่าตัวเลือกสำหรับ {0} ก่อนตั้งค่าค่าเริ่มต้น" @@ -18000,7 +18098,7 @@ msgstr "ต้องตั้งค่าตัวเลือกสำหรั msgid "Options is required for field {0} of type {1}" msgstr "ต้องการตัวเลือกสำหรับฟิลด์ {0} ประเภท {1}" -#: frappe/model/base_document.py:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "ไม่ได้ตั้งค่าตัวเลือกสำหรับฟิลด์ลิงก์ {0}" @@ -18016,7 +18114,7 @@ msgstr "สีส้ม" msgid "Order" msgstr "คำสั่งซื้อ" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18032,12 +18130,12 @@ msgstr "ประวัติองค์กร" msgid "Org History Heading" msgstr "หัวข้อประวัติองค์กร" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "การวางแนว" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "มูลค่าต้นฉบับ" @@ -18105,10 +18203,6 @@ msgstr "ผลลัพธ์" msgid "Overview" msgstr "ภาพรวม" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "เจ้าของ" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" @@ -18116,9 +18210,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:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18159,11 +18253,11 @@ msgstr "การสร้าง PDF ล้มเหลว" msgid "PDF generation failed because of broken image links" msgstr "การสร้าง PDF ล้มเหลวเนื่องจากลิงก์ภาพเสีย" -#: frappe/printing/page/print/print.js:616 +#: frappe/printing/page/print/print.js:656 msgid "PDF generation may not work as expected." msgstr "การสร้าง PDF อาจไม่ทำงานตามที่คาดไว้" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:574 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18335,7 +18429,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:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "หน้า {0} จาก {1}" @@ -18362,7 +18456,7 @@ msgstr "DocType ผู้ปกครอง" msgid "Parent Document Type" msgstr "ประเภทเอกสารผู้ปกครอง" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "ต้องการประเภทเอกสารผู้ปกครองเพื่อสร้างการ์ดตัวเลข" @@ -18379,11 +18473,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:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "ฟิลด์ผู้ปกครอง (ต้นไม้)" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "ฟิลด์ผู้ปกครองต้องเป็นชื่อฟิลด์ที่ถูกต้อง" @@ -18392,7 +18486,7 @@ msgstr "ฟิลด์ผู้ปกครองต้องเป็นชื msgid "Parent Label" msgstr "ป้ายผู้ปกครอง" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 msgid "Parent Missing" msgstr "ผู้ปกครองหายไป" @@ -18466,8 +18560,8 @@ msgstr "ไม่กระตือรือร้น" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18477,7 +18571,7 @@ msgstr "ไม่กระตือรือร้น" msgid "Password" msgstr "รหัสผ่าน" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "ส่งอีเมลรหัสผ่านแล้ว" @@ -18490,7 +18584,7 @@ msgstr "รีเซ็ตรหัสผ่าน" msgid "Password Reset Link Generation Limit" msgstr "ขีดจำกัดการสร้างลิงก์รีเซ็ตรหัสผ่าน" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "ไม่สามารถกรองรหัสผ่านได้" @@ -18507,6 +18601,10 @@ msgstr "รหัสผ่านสำหรับ Base DN" msgid "Password is required or select Awaiting Password" msgstr "ต้องการรหัสผ่านหรือเลือกกำลังรอรหัสผ่าน" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "ไม่มีรหัสผ่านในบัญชีอีเมล" @@ -18515,7 +18613,7 @@ msgstr "ไม่มีรหัสผ่านในบัญชีอีเม msgid "Password not found for {0} {1} {2}" msgstr "ไม่พบรหัสผ่านสำหรับ {0} {1} {2}" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "คำแนะนำการรีเซ็ตรหัสผ่านถูกส่งไปยังอีเมลของ {} แล้ว" @@ -18523,11 +18621,11 @@ msgstr "คำแนะนำการรีเซ็ตรหัสผ่าน msgid "Password set" msgstr "ตั้งค่ารหัสผ่านแล้ว" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "ขนาดรหัสผ่านเกินขนาดสูงสุดที่อนุญาต" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." msgstr "ขนาดรหัสผ่านเกินขนาดสูงสุดที่อนุญาต" @@ -18535,7 +18633,7 @@ msgstr "ขนาดรหัสผ่านเกินขนาดสูงส msgid "Passwords do not match" msgstr "รหัสผ่านไม่ตรงกัน" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "รหัสผ่านไม่ตรงกัน!" @@ -18605,10 +18703,12 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "" @@ -18684,7 +18784,7 @@ msgstr "ส่ง {0} อย่างถาวร?" msgid "Permanently delete {0}?" msgstr "ลบ {0} อย่างถาวร?" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "ข้อผิดพลาดในการอนุญาต" @@ -18744,16 +18844,16 @@ msgstr "ประเภทการอนุญาต" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: frappe/core/page/permission_manager/permission_manager.js:221 #: frappe/core/workspace/users/users.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Permissions" msgstr "การอนุญาต" -#: frappe/core/doctype/doctype/doctype.py:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "ข้อผิดพลาดในการอนุญาต" @@ -18815,15 +18915,18 @@ msgstr "คำขอดาวน์โหลดข้อมูลส่วนต #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -18836,13 +18939,13 @@ msgstr "โทรศัพท์" msgid "Phone No." msgstr "หมายเลขโทรศัพท์" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 msgid "Phone Number {0} set in field {1} is not valid." msgstr "หมายเลขโทรศัพท์ {0} ที่ตั้งค่าในฟิลด์ {1} ไม่ถูกต้อง" -#: frappe/public/js/frappe/form/print_utils.js:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "เลือกคอลัมน์" @@ -18902,11 +19005,11 @@ msgstr "โปรดติดตั้งไลบรารี ldap3 ผ่า msgid "Please Set Chart" msgstr "โปรดตั้งค่าแผนภูมิ" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "โปรดอัปเดตการตั้งค่า SMS" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "โปรดเพิ่มหัวข้อในอีเมลของคุณ" @@ -18914,7 +19017,7 @@ msgstr "โปรดเพิ่มหัวข้อในอีเมลขอ msgid "Please add a valid comment." msgstr "โปรดเพิ่มความคิดเห็นที่ถูกต้อง" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "โปรดขอให้ผู้ดูแลระบบของคุณตรวจสอบการลงทะเบียนของคุณ" @@ -18922,11 +19025,11 @@ msgstr "โปรดขอให้ผู้ดูแลระบบของค msgid "Please attach a file first." msgstr "โปรดแนบไฟล์ก่อน" -#: frappe/printing/doctype/letter_head/letter_head.py:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 msgid "Please attach an image file to set HTML for Footer." msgstr "โปรดแนบไฟล์ภาพเพื่อกำหนด HTML สำหรับส่วนท้าย" -#: frappe/printing/doctype/letter_head/letter_head.py:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "โปรดแนบไฟล์ภาพเพื่อกำหนด HTML สำหรับหัวจดหมาย" @@ -18934,19 +19037,15 @@ msgstr "โปรดแนบไฟล์ภาพเพื่อกำหนด msgid "Please attach the package" msgstr "โปรดแนบแพ็คเกจ" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "โปรดตรวจสอบ URL การกำหนดค่า OpenID" - #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "โปรดตรวจสอบค่าตัวกรองที่ตั้งค่าสำหรับแผนภูมิแดชบอร์ด: {}" -#: frappe/model/base_document.py:951 +#: frappe/model/base_document.py:1008 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "โปรดตรวจสอบอีเมลของคุณเพื่อการยืนยัน" @@ -18978,11 +19077,11 @@ msgstr "โปรดคลิกที่ลิงก์ต่อไปนี้ msgid "Please confirm your action to {0} this document." msgstr "โปรดยืนยันการกระทำของคุณเพื่อ {0} เอกสารนี้" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "โปรดติดต่อผู้จัดการระบบของคุณเพื่อติดตั้งเวอร์ชันที่ถูกต้อง" -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "โปรดสร้างการ์ดก่อน" @@ -18998,20 +19097,20 @@ msgstr "โปรดลบฟิลด์จาก {0} หรือเพิ่ msgid "Please do not change the template headings." msgstr "โปรดอย่าเปลี่ยนหัวข้อแม่แบบ" -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" msgstr "โปรดทำสำเนานี้เพื่อทำการเปลี่ยนแปลง" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "โปรดเปิดใช้งานคีย์เข้าสู่ระบบโซเชียลอย่างน้อยหนึ่งคีย์หรือ LDAP หรือเข้าสู่ระบบด้วยลิงก์อีเมลก่อนปิดใช้งานการเข้าสู่ระบบด้วยชื่อผู้ใช้/รหัสผ่าน" #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "โปรดเปิดใช้งานป๊อปอัป" @@ -19048,7 +19147,7 @@ msgstr "โปรดป้อน Client ID ก่อนเปิดใช้ง msgid "Please enter Client Secret before social login is enabled" msgstr "โปรดป้อน Client Secret ก่อนเปิดใช้งานการเข้าสู่ระบบโซเชียล" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "โปรดป้อน URL การกำหนดค่า OpenID" @@ -19085,11 +19184,12 @@ msgstr "โปรดป้อนรหัสผ่านใหม่ของค msgid "Please enter your old password." msgstr "โปรดป้อนรหัสผ่านเก่าของคุณ" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "โปรดดูไฟล์แนบ {0}: {1}" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "โปรดเข้าสู่ระบบเพื่อโพสต์ความคิดเห็น" @@ -19097,11 +19197,11 @@ msgstr "โปรดเข้าสู่ระบบเพื่อโพสต msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "โปรดตรวจสอบว่าเอกสารการสื่อสารอ้างอิงไม่ได้เชื่อมโยงกันเป็นวงกลม" -#: frappe/model/document.py:988 +#: frappe/model/document.py:992 msgid "Please refresh to get the latest document." msgstr "โปรดรีเฟรชเพื่อรับเอกสารล่าสุด" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:575 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "โปรดลบการแมปเครื่องพิมพ์ในการตั้งค่าเครื่องพิมพ์และลองอีกครั้ง" @@ -19117,7 +19217,7 @@ msgstr "โปรดบันทึกเอกสารก่อนการม msgid "Please save the document before removing assignment" msgstr "โปรดบันทึกเอกสารก่อนลบการมอบหมาย" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "โปรดบันทึกรายงานก่อน" @@ -19125,7 +19225,7 @@ msgstr "โปรดบันทึกรายงานก่อน" msgid "Please save to edit the template." msgstr "โปรดบันทึกเพื่อแก้ไขแม่แบบ" -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "โปรดเลือก DocType ก่อน" @@ -19133,19 +19233,19 @@ msgstr "โปรดเลือก DocType ก่อน" msgid "Please select Entity Type first" msgstr "โปรดเลือกประเภทเอนทิตีก่อน" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "โปรดเลือกคะแนนรหัสผ่านขั้นต่ำ" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "โปรดเลือกฟิลด์ X และ Y" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "โปรดเลือกรหัสประเทศสำหรับฟิลด์ {1}" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "โปรดเลือกไฟล์ก่อน" @@ -19153,7 +19253,7 @@ msgstr "โปรดเลือกไฟล์ก่อน" msgid "Please select a file or url" msgstr "โปรดเลือกไฟล์หรือ URL" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" msgstr "โปรดเลือกไฟล์ CSV ที่ถูกต้องพร้อมข้อมูล" @@ -19165,7 +19265,7 @@ msgstr "โปรดเลือกตัวกรองวันที่ที msgid "Please select applicable Doctypes" msgstr "โปรดเลือกประเภทเอกสารที่เกี่ยวข้อง" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "โปรดเลือกอย่างน้อย 1 คอลัมน์จาก {0} เพื่อจัดเรียง/จัดกลุ่ม" @@ -19191,11 +19291,11 @@ msgstr "โปรดเลือก {0}" msgid "Please set Email Address" msgstr "โปรดตั้งค่าที่อยู่อีเมล" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:589 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "โปรดตั้งค่าการแมปเครื่องพิมพ์สำหรับรูปแบบการพิมพ์นี้ในการตั้งค่าเครื่องพิมพ์" -#: frappe/public/js/frappe/views/reports/query_report.js:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "โปรดตั้งค่าตัวกรอง" @@ -19203,7 +19303,7 @@ msgstr "โปรดตั้งค่าตัวกรอง" msgid "Please set filters value in Report Filter table." msgstr "โปรดตั้งค่าค่าตัวกรองในตารางตัวกรองรายงาน" -#: frappe/model/naming.py:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "โปรดตั้งชื่อเอกสาร" @@ -19215,7 +19315,7 @@ msgstr "โปรดตั้งค่าเอกสารต่อไปนี msgid "Please set the series to be used." msgstr "โปรดตั้งค่าซีรีส์ที่จะใช้" -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "โปรดตั้งค่า SMS ก่อนตั้งค่าเป็นวิธีการยืนยันตัวตนผ่านการตั้งค่า SMS" @@ -19239,23 +19339,23 @@ msgstr "โปรดระบุ" msgid "Please specify a valid parent DocType for {0}" msgstr "โปรดระบุประเภทเอกสารหลักที่ถูกต้องสำหรับ {0}" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "โปรดระบุอย่างน้อย 10 นาทีเนื่องจากจังหวะการทำงานของตัวกำหนดเวลา" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "โปรดระบุการชดเชยนาที" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "โปรดระบุฟิลด์วันที่ที่ต้องตรวจสอบ" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "โปรดระบุฟิลด์วันที่และเวลาที่ต้องตรวจสอบ" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "โปรดระบุฟิลด์ค่าที่ต้องตรวจสอบ" @@ -19276,7 +19376,7 @@ msgstr "โปรดใช้ตัวกรองการค้นหา LDAP msgid "Please use following links to download file backup." msgstr "" -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" @@ -19330,7 +19430,7 @@ msgstr "รายการเมนูพอร์ทัล" msgid "Portal Settings" msgstr "การตั้งค่าพอร์ทัล" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "แนวตั้ง" @@ -19358,6 +19458,7 @@ msgstr "ไปรษณีย์" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "รหัสไปรษณีย์" @@ -19366,15 +19467,7 @@ msgstr "รหัสไปรษณีย์" msgid "Posting Timestamp" msgstr "การประทับเวลาที่โพสต์" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "โพสต์โดย {0}" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "โพสต์ที่จัดเก็บภายใต้ {0}" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19389,7 +19482,11 @@ msgstr "" msgid "Precision" msgstr "ความแม่นยำ" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "ความแม่นยำควรอยู่ระหว่าง 1 ถึง 6" @@ -19437,7 +19534,7 @@ msgstr "การวิเคราะห์รายงานที่เตร msgid "Prepared Report User" msgstr "ผู้ใช้รายงานที่เตรียมไว้" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "การแสดงผลรายงานที่เตรียมไว้ล้มเหลว" @@ -19445,7 +19542,7 @@ msgstr "การแสดงผลรายงานที่เตรียม msgid "Preparing Report" msgstr "กำลังเตรียมรายงาน" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "เพิ่มแม่แบบไปยังข้อความอีเมล" @@ -19466,7 +19563,7 @@ msgstr "กด Enter เพื่อบันทึก" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19480,13 +19577,6 @@ msgstr "ดูตัวอย่าง" msgid "Preview HTML" msgstr "ดูตัวอย่าง HTML" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "ดูตัวอย่างภาพ" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19515,7 +19605,7 @@ msgid "Preview:" msgstr "ดูตัวอย่าง:" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19527,12 +19617,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "ก่อนหน้า" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "แฮชก่อนหน้า" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "การส่งก่อนหน้า" @@ -19578,19 +19663,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:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "พิมพ์" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "พิมพ์" @@ -19608,8 +19693,8 @@ 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:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19660,7 +19745,7 @@ msgstr "ความช่วยเหลือรูปแบบการพิ msgid "Print Format Type" msgstr "ประเภทรูปแบบการพิมพ์" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19699,7 +19784,7 @@ msgstr "ซ่อนการพิมพ์หากไม่มีค่า" msgid "Print Language" msgstr "ภาษาการพิมพ์" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "ส่งการพิมพ์ไปยังเครื่องพิมพ์แล้ว!" @@ -19716,8 +19801,8 @@ msgstr "เซิร์ฟเวอร์การพิมพ์" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "การตั้งค่าการพิมพ์" @@ -19765,11 +19850,11 @@ msgstr "พิมพ์เอกสาร" msgid "Print with letterhead" msgstr "พิมพ์พร้อมหัวจดหมาย" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "เครื่องพิมพ์" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "การแมปเครื่องพิมพ์" @@ -19779,11 +19864,11 @@ msgstr "การแมปเครื่องพิมพ์" msgid "Printer Name" msgstr "ชื่อเครื่องพิมพ์" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "การตั้งค่าเครื่องพิมพ์" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "ไม่ได้ตั้งค่าการแมปเครื่องพิมพ์" @@ -19841,7 +19926,7 @@ msgstr "เคล็ดลับ: เพิ่ม อ้างอิง: { msgid "Proceed" msgstr "ดำเนินการต่อ" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "ดำเนินการต่ออยู่ดี" @@ -19862,18 +19947,28 @@ msgstr "ศาสตราจารย์" msgid "Profile" msgstr "โปรไฟล์" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "" + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "ความคืบหน้า" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: 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:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: 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/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "คุณสมบัติ" @@ -19910,7 +20005,7 @@ msgstr "ประเภททรัพย์สิน" msgid "Protect Attached Files" msgstr "ป้องกันไฟล์ที่แนบมา" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "ไฟล์ที่ป้องกัน" @@ -19959,24 +20054,18 @@ msgstr "" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "เผยแพร่" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -19986,15 +20075,6 @@ msgstr "เผยแพร่" msgid "Published" msgstr "เผยแพร่แล้ว" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "เผยแพร่เมื่อ" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "เผยแพร่เมื่อ" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json @@ -20084,7 +20164,9 @@ msgid "Put on Hold" msgstr "พักการใช้งาน" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "ไพธอน" @@ -20096,8 +20178,8 @@ msgstr "คิวอาร์โค้ด" msgid "QR Code for Login Verification" msgstr "คิวอาร์โค้ดสำหรับการยืนยันการเข้าสู่ระบบ" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' @@ -20147,7 +20229,7 @@ msgstr "รายงานการค้นหา" msgid "Query analysis complete. Check suggested indexes." msgstr "การวิเคราะห์การค้นหาเสร็จสมบูรณ์ ตรวจสอบดัชนีที่แนะนำ" -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "การค้นหาต้องเป็นประเภท SELECT หรือ read-only WITH" @@ -20247,7 +20329,7 @@ msgstr "ตัวกรองรายการด่วน" msgid "Quick Lists" msgstr "รายการด่วน" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "การเสนอราคาต้องอยู่ระหว่าง 0 ถึง 3" @@ -20284,12 +20366,6 @@ msgstr "" msgid "Rate Limiting" msgstr "" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20309,7 +20385,7 @@ msgstr "" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "" @@ -20326,7 +20402,7 @@ msgstr "" msgid "Raw Printing" msgstr "" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "" @@ -20343,8 +20419,8 @@ msgid "Re:" msgstr "" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "" @@ -20400,11 +20476,6 @@ msgstr "" msgid "Read Only Mode" msgstr "" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20420,7 +20491,7 @@ msgstr "" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "" @@ -20440,11 +20511,11 @@ msgstr "เรียลไทม์ (SocketIO)" msgid "Reason" msgstr "เหตุผล" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "สร้างใหม่" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "สร้างโครงสร้างใหม่" @@ -20482,7 +20553,7 @@ msgstr "พารามิเตอร์ผู้รับ" msgid "Recent years are easy to guess." msgstr "ปีล่าสุดคาดเดาได้ง่าย" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "ล่าสุด" @@ -20493,6 +20564,14 @@ msgstr "ล่าสุด" msgid "Recipient" msgstr "ผู้รับ" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20525,7 +20604,7 @@ msgstr "ดัชนีที่แนะนำโดยเครื่องบ msgid "Records for following doctypes will be filtered" msgstr "บันทึกสำหรับประเภทเอกสารต่อไปนี้จะถูกกรอง" -#: frappe/core/doctype/doctype/doctype.py:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "ดึงข้อมูลแบบวนซ้ำจาก" @@ -20542,6 +20621,11 @@ msgstr "สีแดง" msgid "Redirect HTTP Status" msgstr "เปลี่ยนเส้นทางสถานะ HTTP" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20636,6 +20720,11 @@ msgstr "วันที่อ้างอิง" msgid "Reference Datetime" msgstr "วันที่และเวลาอ้างอิง" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20663,7 +20752,6 @@ msgstr "ชื่อเอกสารอ้างอิง" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20704,9 +20792,9 @@ msgstr "ชื่อเอกสารอ้างอิง" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20724,9 +20812,9 @@ msgstr "ชื่อเอกสารอ้างอิง" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20756,7 +20844,6 @@ msgstr "ประเภทเอกสารอ้างอิง" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -20804,15 +20891,15 @@ msgstr "อ้างอิง: {0} {1}" msgid "Referrer" msgstr "ผู้แนะนำ" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "รีเฟรช" @@ -20826,6 +20913,10 @@ msgstr "รีเฟรชทั้งหมด" msgid "Refresh Google Sheet" msgstr "รีเฟรช Google Sheet" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -20837,18 +20928,18 @@ msgstr "รีเฟรช Google Sheet" msgid "Refresh Token" msgstr "รีเฟรชโทเค็น" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "กำลังรีเฟรช" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "กำลังรีเฟรช..." -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "ลงทะเบียนแล้วแต่ปิดใช้งาน" @@ -21025,7 +21116,7 @@ msgstr "เปลี่ยนชื่อฟิลด์" msgid "Rename {0}" msgstr "เปลี่ยนชื่อ {0}" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "เปลี่ยนชื่อไฟล์และแทนที่โค้ดในตัวควบคุมแล้ว โปรดตรวจสอบ!" @@ -21156,9 +21247,9 @@ msgstr "ตอบกลับทั้งหมด" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "รายงาน" @@ -21228,11 +21319,11 @@ 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:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "ชื่อรายงาน" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "ชื่อรายงาน ฟิลด์รายงาน และฟังก์ชันเป็นสิ่งจำเป็นในการสร้างการ์ดตัวเลข" @@ -21266,21 +21357,21 @@ msgstr "มุมมองรายงาน" msgid "Report bug" msgstr "รายงานข้อบกพร่อง" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 msgid "Report cannot be set for Single types" msgstr "ไม่สามารถตั้งค่ารายงานสำหรับประเภทเดี่ยวได้" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 -#: frappe/desk/doctype/number_card/number_card.js:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "รายงานไม่มีข้อมูล โปรดแก้ไขตัวกรองหรือเปลี่ยนชื่อรายงาน" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 msgid "Report has no numeric fields, please change the Report Name" msgstr "รายงานไม่มีฟิลด์ตัวเลข โปรดเปลี่ยนชื่อรายงาน" -#: frappe/public/js/frappe/views/reports/query_report.js:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "เริ่มต้นรายงานแล้ว คลิกเพื่อดูสถานะ" @@ -21292,24 +21383,24 @@ msgstr "ถึงขีดจำกัดรายงานแล้ว" msgid "Report timed out." msgstr "รายงานหมดเวลา" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "อัปเดตรายงานเรียบร้อยแล้ว" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 msgid "Report was not saved (there were errors)" msgstr "รายงานไม่ได้รับการบันทึก (มีข้อผิดพลาด)" -#: frappe/public/js/frappe/views/reports/query_report.js:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "รายงานที่มีมากกว่า 10 คอลัมน์ดูดีกว่าในโหมดแนวนอน" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "รายงาน {0}" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "ลบรายงาน {0} แล้ว" @@ -21317,7 +21408,7 @@ msgstr "ลบรายงาน {0} แล้ว" msgid "Report {0} is disabled" msgstr "รายงาน {0} ถูกปิดใช้งาน" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "บันทึกรายงาน {0} แล้ว" @@ -21328,7 +21419,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:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "รายงาน" @@ -21336,7 +21427,7 @@ msgstr "รายงาน" msgid "Reports & Masters" msgstr "รายงานและมาสเตอร์" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "รายงานอยู่ในคิวแล้ว" @@ -21355,7 +21446,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "" @@ -21407,6 +21501,11 @@ msgstr "" msgid "Request URL" msgstr "" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21458,11 +21557,11 @@ msgstr "" msgid "Reset Dashboard Customizations" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "" @@ -21470,11 +21569,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21509,7 +21608,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21547,6 +21646,7 @@ msgid "Resource TOS URI" msgstr "" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21556,11 +21656,6 @@ msgstr "" msgid "Response" msgstr "การตอบกลับ" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "" - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21619,7 +21714,7 @@ msgstr "" 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)" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "ข้อจำกัด" @@ -21653,7 +21748,7 @@ msgstr "กลับไปที่หน้าจอยืนยันและ msgid "Reverse Icon Color" msgstr "ย้อนกลับสีไอคอน" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "กำลังเปลี่ยนความยาวกลับเป็น {0} สำหรับ '{1}' ใน '{2}' การตั้งค่าความยาวเป็น {3} จะทำให้ข้อมูลถูกตัดทอน" @@ -21671,9 +21766,7 @@ msgstr "เพิกถอน" msgid "Revoked" msgstr "ถูกเพิกถอน" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21714,6 +21807,7 @@ msgstr "" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21727,6 +21821,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21765,7 +21860,7 @@ msgstr "สิทธิ์บทบาทสำหรับหน้าและ #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "สิทธิ์บทบาท" @@ -21775,7 +21870,7 @@ msgstr "สิทธิ์บทบาท" msgid "Role Permissions Manager" msgstr "ผู้จัดการสิทธิ์บทบาท" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "ผู้จัดการสิทธิ์บทบาท" @@ -21818,6 +21913,7 @@ msgstr "บทบาทถูกตั้งค่าตามประเภท #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -21827,6 +21923,7 @@ msgstr "บทบาทถูกตั้งค่าตามประเภท #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -21863,7 +21960,7 @@ msgstr "บทบาท Html" msgid "Roles can be set for users from their User page." msgstr "บทบาทสามารถตั้งค่าสำหรับผู้ใช้จากหน้าผู้ใช้ของพวกเขา" -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "ไม่สามารถลบราก {0} ได้" @@ -21883,8 +21980,6 @@ msgstr "วิธีการปัดเศษ" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -21896,8 +21991,6 @@ msgstr "วิธีการปัดเศษ" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -21922,24 +22015,24 @@ msgstr "เปลี่ยนเส้นทางเส้นทาง" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "แถว" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "แถว #" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "แถว # {0}: ผู้ใช้ที่ไม่ใช่ผู้ดูแลระบบไม่สามารถตั้งค่าบทบาท {1} ให้กับประเภทเอกสารที่กำหนดเองได้" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "แถว #{0}:" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "ต้องการชื่อฟิลด์" @@ -21948,11 +22041,6 @@ msgstr "ต้องการชื่อฟิลด์" msgid "Row Format" msgstr "" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "" - #. Label of the row_indexes (Code) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Row Indexes" @@ -21967,7 +22055,7 @@ msgstr "" msgid "Row Number" msgstr "" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "" @@ -21975,30 +22063,33 @@ msgstr "" msgid "Row {0}" msgstr "แถว {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "แถว {0}: ไม่อนุญาตให้ปิดใช้งานข้อบังคับสำหรับฟิลด์มาตรฐาน" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "แถว {0}: ไม่อนุญาตให้เปิดใช้งานอนุญาตในการส่งสำหรับฟิลด์มาตรฐาน" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Added" msgstr "" #. Label of the rows_removed_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22089,7 +22180,7 @@ msgstr "พารามิเตอร์ SMS" msgid "SMS Settings" msgstr "การตั้งค่า SMS" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "ส่ง SMS สำเร็จ" @@ -22167,7 +22258,7 @@ msgstr "เซลส์ฟอร์ซ" msgid "Salutation" msgstr "คำทักทาย" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "ฟิลด์เดียวกันถูกป้อนมากกว่าหนึ่งครั้ง" @@ -22195,20 +22286,20 @@ msgstr "วันเสาร์" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22217,16 +22308,12 @@ msgstr "วันเสาร์" msgid "Save" msgstr "บันทึก" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "บันทึกความลับ API: {0}" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "บันทึกอยู่ดี" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "บันทึกเป็น" @@ -22234,11 +22321,11 @@ msgstr "บันทึกเป็น" msgid "Save Customizations" msgstr "บันทึกการปรับแต่ง" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "บันทึกรายงาน" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "บันทึกตัวกรอง" @@ -22263,7 +22350,7 @@ msgstr "บันทึกแล้ว" msgid "Saved Filters" msgstr "ตัวกรองที่บันทึกไว้" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22342,7 +22429,7 @@ msgstr "" msgid "Scheduled Jobs Logs" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "" @@ -22365,7 +22452,7 @@ msgstr "" msgid "Scheduler Event" msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "" @@ -22378,7 +22465,7 @@ msgstr "" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "" @@ -22510,7 +22597,7 @@ msgstr "" msgid "Search by filename or extension" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "" @@ -22610,7 +22697,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "" @@ -22619,7 +22706,7 @@ msgstr "" msgid "See on Website" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "" @@ -22666,7 +22753,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/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22674,28 +22761,28 @@ msgstr "" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "เลือกทั้งหมด" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 msgid "Select Column" msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "" @@ -22754,12 +22841,15 @@ msgstr "" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "เลือกฟิลด์" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "เลือกฟิลด์เพื่อแทรก" @@ -22772,7 +22862,7 @@ msgstr "เลือกฟิลด์เพื่ออัปเดต" msgid "Select Filters" msgstr "เลือกตัวกรอง" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "เลือก Google Calendar ที่จะซิงค์เหตุการณ์" @@ -22805,8 +22895,8 @@ msgstr "เลือกข้อบังคับ" msgid "Select Module" msgstr "เลือกโมดูล" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "เลือกเครื่องพิมพ์เครือข่าย" @@ -22871,14 +22961,14 @@ msgid "Select a field to edit its properties." msgstr "เลือกฟิลด์เพื่อแก้ไขคุณสมบัติ" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "เลือกโหนดกลุ่มก่อน" +msgid "Select a group {0} first." +msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" msgstr "เลือกฟิลด์ผู้ส่งที่ถูกต้องสำหรับการสร้างเอกสารจากอีเมล" -#: frappe/core/doctype/doctype/doctype.py:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 msgid "Select a valid Subject field for creating documents from Email" msgstr "เลือกฟิลด์หัวเรื่องที่ถูกต้องสำหรับการสร้างเอกสารจากอีเมล" @@ -22908,13 +22998,13 @@ msgstr "เลือกอย่างน้อย 1 รายการสำห msgid "Select atleast 2 actions" msgstr "เลือกอย่างน้อย 2 การกระทำ" -#: frappe/public/js/frappe/list/list_view.js:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "เลือกรายการในรายการ" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "เลือกรายการในรายการหลายรายการ" @@ -22948,7 +23038,7 @@ msgstr "เลือกสองเวอร์ชันเพื่อดูค msgid "Select {0}" msgstr "เลือก {0}" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "ไม่อนุญาตให้อนุมัติด้วยตนเอง" @@ -23132,7 +23222,7 @@ msgstr "อีเมลผู้ส่ง" msgid "Sender Email Field" msgstr "ฟิลด์อีเมลผู้ส่ง" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "ฟิลด์ผู้ส่งควรมีอีเมลในตัวเลือก" @@ -23226,7 +23316,7 @@ msgstr "" msgid "Series counter for {} updated to {} successfully" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "" @@ -23236,7 +23326,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23255,7 +23345,7 @@ msgstr "" msgid "Server Script" msgstr "" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23302,7 +23392,7 @@ msgstr "ค่าเริ่มต้นของเซสชัน" msgid "Session Defaults Saved" msgstr "บันทึกค่าเริ่มต้นของเซสชันแล้ว" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "เซสชันหมดอายุ" @@ -23311,14 +23401,14 @@ msgstr "เซสชันหมดอายุ" msgid "Session Expiry (idle timeout)" msgstr "การหมดอายุของเซสชัน (หมดเวลาไม่ใช้งาน)" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "การหมดอายุของเซสชันต้องอยู่ในรูปแบบ {0}" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "ตั้งค่า" @@ -23344,12 +23434,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "ตั้งค่าตัวกรองแบบไดนามิก" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23360,7 +23450,7 @@ msgstr "ตั้งค่าตัวกรอง" msgid "Set Filters for {0}" msgstr "ตั้งค่าตัวกรองสำหรับ {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "ตั้งค่าระดับ" @@ -23414,7 +23504,7 @@ msgstr "ตั้งค่าปริมาณ" msgid "Set Role For" msgstr "ตั้งค่าบทบาทสำหรับ" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "ตั้งค่าสิทธิ์ผู้ใช้" @@ -23424,16 +23514,16 @@ msgstr "ตั้งค่าสิทธิ์ผู้ใช้" msgid "Set Value" msgstr "ตั้งค่ามูลค่า" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "ตั้งค่าทั้งหมดเป็นส่วนตัว" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "ตั้งค่าทั้งหมดเป็นสาธารณะ" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "ตั้งค่าเป็นค่าเริ่มต้น" @@ -23452,18 +23542,21 @@ msgstr "ตั้งค่าโดยผู้ใช้" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "ตั้งค่าค่าตัวกรองแบบไดนามิกใน JavaScript สำหรับฟิลด์ที่ต้องการที่นี่" -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "ตั้งค่าความแม่นยำที่ไม่เป็นมาตรฐานสำหรับฟิลด์ Float หรือ Currency" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23555,14 +23648,9 @@ msgstr "การตั้งค่าสำหรับหน้าติดต msgid "Settings for the About Us Page" msgstr "การตั้งค่าสำหรับหน้าเกี่ยวกับเรา" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "การตั้งค่าเพื่อควบคุมหมวดหมู่บล็อกและการโต้ตอบเช่นความคิดเห็นและการถูกใจ" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "การตั้งค่า" @@ -23578,8 +23666,8 @@ msgstr "การตั้งค่า > ผู้ใช้" msgid "Setup > User Permissions" msgstr "การตั้งค่า > สิทธิ์ผู้ใช้" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "ตั้งค่าอีเมลอัตโนมัติ" @@ -23648,11 +23736,6 @@ msgstr "ที่อยู่การขนส่ง" msgid "Shop" msgstr "ร้านค้า" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "ชื่อย่อ" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "รูปแบบแป้นพิมพ์สั้น ๆ เดาง่าย" @@ -23672,11 +23755,6 @@ msgstr "ทางลัด" msgid "Show" msgstr "แสดง" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23729,7 +23807,13 @@ msgstr "แสดงเอกสาร" msgid "Show Error" msgstr "แสดงข้อผิดพลาด" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "แสดงชื่อฟิลด์ (คลิกเพื่อคัดลอกไปยังคลิปบอร์ด)" @@ -23857,7 +23941,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "แสดงแท็ก" @@ -23874,7 +23958,7 @@ msgstr "แสดงชื่อเรื่อง" msgid "Show Title in Link Fields" msgstr "แสดงชื่อเรื่องในฟิลด์ลิงก์" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "แสดงยอดรวม" @@ -23914,10 +23998,6 @@ msgstr "แสดงทุกเวอร์ชัน" msgid "Show all activity" msgstr "แสดงกิจกรรมทั้งหมด" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "แสดงบล็อกทั้งหมด" - #. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" @@ -23966,8 +24046,8 @@ msgstr "แสดงลิงก์ไปยังเอกสาร" msgid "Show list" msgstr "แสดงรายการ" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "แสดงรายละเอียดเพิ่มเติม" @@ -23996,7 +24076,7 @@ msgstr "" msgid "Show {0} List" msgstr "แสดงรายการ {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "แสดงเฉพาะฟิลด์ตัวเลขจากรายงาน" @@ -24031,7 +24111,7 @@ msgstr "" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "" @@ -24068,22 +24148,22 @@ msgstr "" msgid "Signups have been disabled for this website." msgstr "การลงทะเบียนถูกปิดใช้งานสำหรับเว็บไซต์นี้" -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" msgstr "" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" msgstr "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' @@ -24091,13 +24171,13 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "เซสชันพร้อมกัน" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "ประเภทเอกสารเดี่ยวไม่สามารถปรับแต่งได้" #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "ประเภทเดี่ยวมีเพียงหนึ่งระเบียนไม่มีตารางที่เกี่ยวข้อง ค่าเก็บไว้ใน tabSingles" @@ -24105,7 +24185,7 @@ msgstr "ประเภทเดี่ยวมีเพียงหนึ่ง msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "ไซต์กำลังทำงานในโหมดอ่านอย่างเดียวสำหรับการบำรุงรักษาหรืออัปเดตไซต์ ไม่สามารถดำเนินการนี้ได้ในขณะนี้ โปรดลองอีกครั้งในภายหลัง" -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "ขนาด" @@ -24324,11 +24404,11 @@ msgstr "" msgid "Something went wrong." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 msgid "Sorry! I could not find what you were looking for." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "" @@ -24359,20 +24439,23 @@ msgstr "" msgid "Sort Order" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 msgid "Sort field {0} must be a valid fieldname" msgstr "" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' -#: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24399,6 +24482,12 @@ msgstr "สแปม" msgid "SparkPost" msgstr "" +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "ไม่อนุญาตอักขระพิเศษ" @@ -24423,8 +24512,8 @@ msgstr "ระบุโดเมนหรือแหล่งที่ได้ msgid "Splash Image" msgstr "ภาพสแปลช" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "ลำดับ" @@ -24456,11 +24545,11 @@ msgstr "การติดตามสแต็ก" msgid "Standard" msgstr "มาตรฐาน" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "ไม่สามารถลบประเภทเอกสารมาตรฐานได้" -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "ประเภทเอกสารมาตรฐานไม่สามารถมีรูปแบบการพิมพ์เริ่มต้นได้ ใช้การปรับแต่งฟอร์ม" @@ -24472,7 +24561,7 @@ msgstr "ไม่ได้ตั้งค่ามาตรฐาน" msgid "Standard Permissions" msgstr "สิทธิ์มาตรฐาน" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "ไม่สามารถอัปเดตรูปแบบการพิมพ์มาตรฐานได้" @@ -24480,11 +24569,11 @@ msgstr "ไม่สามารถอัปเดตรูปแบบการ msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "ไม่สามารถเปลี่ยนสไตล์การพิมพ์มาตรฐานได้ โปรดทำสำเนาเพื่อแก้ไข" -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "ไม่สามารถลบรายงานมาตรฐานได้" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "ไม่สามารถแก้ไขรายงานมาตรฐานได้" @@ -24516,8 +24605,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:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "" @@ -24525,7 +24614,7 @@ msgstr "" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24590,6 +24679,7 @@ msgstr "" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24598,7 +24688,7 @@ msgstr "" msgid "State" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "" @@ -24654,6 +24744,7 @@ msgstr "" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24678,6 +24769,7 @@ msgstr "" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24685,8 +24777,8 @@ msgstr "" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24723,7 +24815,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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24753,6 +24845,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +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." @@ -24831,7 +24927,7 @@ msgstr "ซับโดเมน" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -24847,7 +24943,7 @@ msgstr "หัวข้อ" msgid "Subject Field" msgstr "ฟิลด์หัวข้อ" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "ประเภทฟิลด์หัวข้อควรเป็นข้อมูล, ข้อความ, ข้อความยาว, ข้อความเล็ก, ตัวแก้ไขข้อความ" @@ -24861,6 +24957,7 @@ msgstr "คิวการส่ง" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24869,10 +24966,11 @@ msgstr "คิวการส่ง" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "ส่ง" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "ส่ง" @@ -24882,7 +24980,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "ส่ง" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "ส่ง" @@ -24906,7 +25004,7 @@ msgstr "ส่งหลังจากนำเข้า" msgid "Submit an Issue" msgstr "ส่งปัญหา" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "ส่งคำตอบอื่น" @@ -24918,7 +25016,7 @@ msgstr "ป้ายกำกับปุ่มส่ง" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "ส่งเมื่อสร้าง" @@ -24930,7 +25028,7 @@ msgstr "ส่งเอกสารนี้เพื่อดำเนินก msgid "Submit this document to confirm" msgstr "ส่งเอกสารนี้เพื่อยืนยัน" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "ส่งเอกสาร {0} หรือไม่?" @@ -24939,11 +25037,11 @@ msgstr "ส่งเอกสาร {0} หรือไม่?" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "ส่งแล้ว" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "เอกสารที่ส่งแล้วไม่สามารถเปลี่ยนกลับเป็นร่างได้ แถวการเปลี่ยนผ่าน {0}" @@ -24966,9 +25064,7 @@ msgid "Subsidiary" msgstr "บริษัทในเครือ" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "คำบรรยาย" @@ -24982,7 +25078,7 @@ msgstr "คำบรรยาย" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25024,20 +25120,16 @@ msgstr "ข้อความสำเร็จ" msgid "Success title" msgstr "ชื่อเรื่องสำเร็จ" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "สำเร็จ! คุณพร้อมแล้ว 👍" - #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" msgstr "จำนวนงานที่สำเร็จ" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "ธุรกรรมที่สำเร็จ" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "สำเร็จ: {0} ถึง {1}" @@ -25079,7 +25171,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "" @@ -25201,7 +25293,7 @@ msgstr "กำลังซิงค์" msgid "Syncing {0} of {1}" msgstr "กำลังซิงค์ {0} จาก {1}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "ข้อผิดพลาดทางไวยากรณ์" @@ -25324,6 +25416,7 @@ msgstr "" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25406,6 +25499,7 @@ msgstr "" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" msgstr "ผู้จัดการระบบ" @@ -25479,7 +25573,7 @@ msgstr "" msgid "Table Break" msgstr "" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "" @@ -25488,7 +25582,7 @@ msgstr "" msgid "Table Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "" @@ -25510,11 +25604,11 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 msgid "Table {0} cannot be empty" msgstr "" @@ -25556,11 +25650,18 @@ msgstr "" msgid "Target" msgstr "" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25622,7 +25723,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "" @@ -25694,7 +25795,7 @@ msgid "Thank you for reaching out to us. We will get back to you at the earliest "{0}" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "ขอบคุณที่สละเวลาของคุณในการกรอกแบบฟอร์มนี้" @@ -25718,7 +25819,7 @@ msgstr "ขอบคุณ" msgid "The Auto Repeat for this document has been disabled." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "" @@ -25729,15 +25830,15 @@ msgid "The Client ID obtained from the Google Cloud Console under " msgstr "" -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." msgstr "" @@ -25778,7 +25879,7 @@ msgstr "" msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "คอลัมน์ {0} มีรูปแบบวันที่ {1} รูปแบบที่แตกต่างกัน กำลังตั้งค่า {2} เป็นรูปแบบเริ่มต้นโดยอัตโนมัติเนื่องจากเป็นรูปแบบที่พบบ่อยที่สุด โปรดเปลี่ยนค่าอื่นๆ ในคอลัมน์นี้ให้เป็นรูปแบบนี้" -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "ความคิดเห็นต้องไม่ว่างเปล่า" @@ -25786,7 +25887,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:658 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "จำนวนที่แสดงเป็นจำนวนโดยประมาณ คลิกที่นี่เพื่อดูจำนวนที่ถูกต้อง" @@ -25816,7 +25917,7 @@ msgstr "ประเภทเอกสารที่เลือกเป็น msgid "The field {0} is mandatory" msgstr "ฟิลด์ {0} เป็นสิ่งจำเป็น" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "ชื่อฟิลด์ที่คุณระบุในฟิลด์ที่แนบมาไม่ถูกต้อง" @@ -25886,15 +25987,19 @@ msgid "The project number obtained from Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

    Click here to download:
    {0}

    This link will expire in {1} hours." +msgstr "" + +#: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" msgstr "ลิงก์รีเซ็ตรหัสผ่านหมดอายุแล้ว" -#: frappe/core/doctype/user/user.py:995 +#: frappe/core/doctype/user/user.py:1002 msgid "The reset password link has either been used before or is invalid" msgstr "ลิงก์รีเซ็ตรหัสผ่านถูกใช้ไปแล้วหรือไม่ถูกต้อง" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "ทรัพยากรที่คุณกำลังมองหาไม่มีอยู่" @@ -25906,7 +26011,7 @@ msgstr "บทบาท {0} ควรเป็นบทบาทที่กำ msgid "The selected document {0} is not a {1}." msgstr "เอกสารที่เลือก {0} ไม่ใช่ {1}" -#: frappe/utils/response.py:338 +#: frappe/utils/response.py:336 msgid "The system is being updated. Please refresh again after a few moments." msgstr "ระบบกำลังอัปเดต โปรดรีเฟรชอีกครั้งหลังจากสักครู่" @@ -25927,7 +26032,7 @@ msgstr "ค่าที่คุณวางมีความยาว {0} ต msgid "The webhook will be triggered if this expression is true" msgstr "Webhook จะถูกเรียกใช้หากนิพจน์นี้เป็นจริง" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "{0} อยู่ในโหมดทำซ้ำอัตโนมัติ {1} แล้ว" @@ -25967,16 +26072,16 @@ 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:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "" @@ -25988,15 +26093,19 @@ msgstr "" msgid "There is no data to be exported" msgstr "" +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "มีปัญหากับ URL ของไฟล์: {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "มี {0} ที่มีตัวกรองเดียวกันอยู่ในคิวแล้ว:" @@ -26008,7 +26117,7 @@ msgstr "ต้องมีอย่างน้อยหนึ่งกฎสิ msgid "There was an error building this page" msgstr "เกิดข้อผิดพลาดในการสร้างหน้านี้" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "เกิดข้อผิดพลาดในการบันทึกตัวกรอง" @@ -26020,11 +26129,11 @@ msgstr "มีข้อผิดพลาด" msgid "There were errors while creating the document. Please try again." msgstr "เกิดข้อผิดพลาดขณะสร้างเอกสาร โปรดลองอีกครั้ง" -#: frappe/public/js/frappe/views/communication.js:840 +#: frappe/public/js/frappe/views/communication.js:843 msgid "There were errors while sending email. Please try again." msgstr "เกิดข้อผิดพลาดขณะส่งอีเมล โปรดลองอีกครั้ง" -#: frappe/model/naming.py:494 +#: frappe/model/naming.py:502 msgid "There were some errors setting the name, please contact the administrator" msgstr "เกิดข้อผิดพลาดบางอย่างในการตั้งชื่อ โปรดติดต่อผู้ดูแลระบบ" @@ -26065,7 +26174,7 @@ msgstr "การตรวจสอบสิทธิ์ของบุคคล msgid "This Currency is disabled. Enable to use in transactions" msgstr "สกุลเงินนี้ถูกปิดใช้งาน เปิดใช้งานเพื่อใช้ในธุรกรรม" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "กระดาน Kanban นี้จะเป็นส่วนตัว" @@ -26073,6 +26182,10 @@ msgstr "กระดาน Kanban นี้จะเป็นส่วนตั msgid "This Month" msgstr "เดือนนี้" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "ไตรมาสนี้" @@ -26098,6 +26211,11 @@ msgstr "การกระทำนี้อนุญาตเฉพาะสำ msgid "This cannot be undone" msgstr "ไม่สามารถย้อนกลับได้" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +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" @@ -26112,11 +26230,11 @@ msgstr "แผนภูมินี้จะพร้อมใช้งานส msgid "This doctype has no orphan fields to trim" msgstr "ประเภทเอกสารนี้ไม่มีฟิลด์ที่ไม่ได้ใช้งานให้ตัดแต่ง" -#: frappe/core/doctype/doctype/doctype.py:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "ประเภทเอกสารนี้มีการย้ายข้อมูลที่ค้างอยู่ ให้รัน 'bench migrate' ก่อนแก้ไขประเภทเอกสารเพื่อหลีกเลี่ยงการสูญเสียการเปลี่ยนแปลง" -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "ไม่สามารถลบเอกสารนี้ได้ในขณะนี้เนื่องจากกำลังถูกแก้ไขโดยผู้ใช้อื่น โปรดลองอีกครั้งหลังจากสักครู่" @@ -26158,7 +26276,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "ไฟล์นี้แนบกับเอกสารที่ได้รับการป้องกันและไม่สามารถลบได้" @@ -26174,7 +26292,7 @@ msgstr "ไฟล์นี้เป็นสาธารณะ สามาร msgid "This form has been modified after you have loaded it" msgstr "ฟอร์มนี้ถูกแก้ไขหลังจากที่คุณโหลดแล้ว" -#: frappe/public/js/frappe/form/form.js:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "ฟอร์มนี้ไม่สามารถแก้ไขได้เนื่องจากเวิร์กโฟลว์" @@ -26193,7 +26311,7 @@ msgstr "ผู้ให้บริการตำแหน่งทางภู msgid "This goes above the slideshow." msgstr "สิ่งนี้จะอยู่เหนือสไลด์โชว์" -#: frappe/public/js/frappe/views/reports/query_report.js:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "นี่คือรายงานพื้นหลัง โปรดตั้งค่าตัวกรองที่เหมาะสมแล้วสร้างใหม่" @@ -26217,12 +26335,6 @@ msgstr "นี่คือประเภทเอกสารเสมือน msgid "This is an automatically generated reply" msgstr "นี่คือการตอบกลับที่สร้างขึ้นโดยอัตโนมัติ" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "นี่คือตัวอย่างการแสดงผลใน Google SERP" - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "นี่คล้ายกับรหัสผ่านที่ใช้บ่อย" @@ -26241,7 +26353,7 @@ msgstr "ลิงก์นี้ถูกเปิดใช้งานแล้ msgid "This link is invalid or expired. Please make sure you have pasted correctly." msgstr "ลิงก์นี้ไม่ถูกต้องหรือหมดอายุ โปรดตรวจสอบว่าคุณวางถูกต้อง" -#: frappe/printing/page/print/print.js:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "สิ่งนี้อาจถูกพิมพ์ในหลายหน้า" @@ -26249,7 +26361,7 @@ msgstr "สิ่งนี้อาจถูกพิมพ์ในหลาย msgid "This month" msgstr "เดือนนี้" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "รายงานนี้มี {0} แถวและใหญ่เกินไปที่จะแสดงในเบราว์เซอร์ คุณสามารถ {1} รายงานนี้แทน" @@ -26257,7 +26369,7 @@ msgstr "รายงานนี้มี {0} แถวและใหญ่เ msgid "This report was generated on {0}" msgstr "รายงานนี้ถูกสร้างขึ้นเมื่อ {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "รายงานนี้ถูกสร้างขึ้น {0}" @@ -26288,7 +26400,7 @@ msgstr "ค่านี้ถูกดึงมาจากฟิลด์ {1} #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " +msgid "This value specifies the max number of rows that can be rendered in report view." msgstr "" #: frappe/website/doctype/web_page/web_page.js:85 @@ -26320,10 +26432,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "สิ่งนี้จะรีเซ็ตทัวร์นี้และแสดงให้ผู้ใช้ทุกคนเห็น คุณแน่ใจหรือไม่?" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " +msgid "This will terminate the job immediately and might be dangerous, are you sure?" msgstr "" -#: frappe/core/doctype/user/user.py:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "" @@ -26399,9 +26511,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26472,11 +26586,11 @@ msgstr "" msgid "Timeline Name" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 msgid "Timeline field must be a Link or Dynamic Link" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "" @@ -26502,10 +26616,7 @@ msgid "Timespan" msgstr "" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "" @@ -26525,9 +26636,6 @@ msgstr "" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26552,9 +26660,6 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26577,7 +26682,7 @@ msgstr "" msgid "Title Prefix" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "" @@ -26595,7 +26700,7 @@ msgstr "" #: frappe/public/js/frappe/views/communication.js:53 msgctxt "Email Recipients" msgid "To" -msgstr "" +msgstr "ถึง" #. Label of the to_date (Date) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -26671,7 +26776,7 @@ msgstr "เพื่อส่งออกขั้นตอนนี้เป็ msgid "To generate password click {0}" msgstr "เพื่อสร้างรหัสผ่าน คลิก {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "เพื่อรับรายงานที่อัปเดต คลิกที่ {0}" @@ -26726,7 +26831,7 @@ msgstr "สิ่งที่ต้องทำ" msgid "Today" msgstr "วันนี้" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "สลับแผนภูมิ" @@ -26742,11 +26847,11 @@ msgstr "สลับมุมมองตาราง" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "สลับแถบด้านข้าง" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "สลับแถบด้านข้าง" @@ -26792,7 +26897,7 @@ msgid "Tomorrow" msgstr "พรุ่งนี้" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "เอกสารมากเกินไป" @@ -26808,7 +26913,7 @@ msgstr "การเปลี่ยนแปลงฐานข้อมูลม msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "งานพื้นหลังที่คิวมากเกินไป ({0}) โปรดลองอีกครั้งหลังจากสักครู่" -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "ผู้ใช้จำนวนมากลงทะเบียนเมื่อเร็ว ๆ นี้ ดังนั้นการลงทะเบียนจึงถูกปิดใช้งาน โปรดลองอีกครั้งในหนึ่งชั่วโมง" @@ -26870,10 +26975,10 @@ msgstr "ขวาบน" msgid "Topic" msgstr "หัวข้อ" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "รวม" @@ -26916,18 +27021,18 @@ msgstr "รวมเวลาทำงาน" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " +msgid "Total number of emails to sync in initial sync process" msgstr "" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "รวม:" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "รวมทั้งหมด" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "แถวรวม" @@ -26993,26 +27098,10 @@ msgstr "ติดตามเหตุการณ์สำคัญสำหร msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "URL การติดตามถูกสร้างและคัดลอกไปยังคลิปบอร์ด" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "แฮชธุรกรรม" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "บันทึกธุรกรรม" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "รายงานบันทึกธุรกรรม" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "คนข้ามเพศ" @@ -27026,6 +27115,11 @@ msgstr "คุณสมบัติการเปลี่ยนผ่าน" msgid "Transition Rules" msgstr "กฎการเปลี่ยนผ่าน" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" @@ -27040,7 +27134,7 @@ msgstr "การเปลี่ยนผ่าน" msgid "Translatable" msgstr "สามารถแปลได้" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "แปลข้อมูล" @@ -27051,7 +27145,7 @@ msgstr "แปลข้อมูล" msgid "Translate Link Fields" msgstr "แปลฟิลด์ลิงก์" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "แปลค่า" @@ -27135,8 +27229,8 @@ msgstr "" msgid "Try a Naming Series" msgstr "" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "" @@ -27202,7 +27296,7 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27295,7 +27389,7 @@ msgstr "" msgid "URL for documentation or help" msgstr "" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "" @@ -27398,7 +27492,7 @@ msgstr "ไม่สามารถส่งอีเมลได้เนื่ msgid "Unable to update event" msgstr "ไม่สามารถอัปเดตกิจกรรมได้" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "ไม่สามารถเขียนรูปแบบไฟล์สำหรับ {0}" @@ -27407,7 +27501,7 @@ msgstr "ไม่สามารถเขียนรูปแบบไฟล์ msgid "Unassign Condition" msgstr "ยกเลิกการกำหนดเงื่อนไข" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "ข้อยกเว้นที่ไม่ได้จับ" @@ -27423,7 +27517,7 @@ msgstr "เลิกทำ" msgid "Undo last action" msgstr "เลิกทำการกระทำล่าสุด" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27470,7 +27564,7 @@ msgstr "คอลัมน์ที่ไม่ทราบ: {0}" msgid "Unknown Rounding Method: {}" msgstr "วิธีการปัดเศษที่ไม่ทราบ: {}" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "ผู้ใช้ที่ไม่ทราบ" @@ -27482,8 +27576,7 @@ msgstr "การเข้ารหัสไฟล์ที่ไม่ทรา msgid "Unlock Reference Document" msgstr "ปลดล็อกเอกสารอ้างอิง" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "ยกเลิกการเผยแพร่" @@ -27499,7 +27592,7 @@ msgstr "ยังไม่ได้อ่าน" msgid "Unread Notification Sent" msgstr "การแจ้งเตือนที่ยังไม่ได้อ่านถูกส่งแล้ว" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "คำสั่ง SQL ที่ไม่ปลอดภัย" @@ -27537,8 +27630,8 @@ msgstr "พารามิเตอร์ยกเลิกการสมัค msgid "Unsubscribed" msgstr "ยกเลิกการสมัครสมาชิกแล้ว" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27558,7 +27651,7 @@ msgstr "แตกไฟล์ {0} แล้ว" msgid "Unzipping files..." msgstr "กำลังแตกไฟล์..." -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "กิจกรรมที่กำลังจะมาถึงสำหรับวันนี้" @@ -27572,7 +27665,7 @@ msgstr "กิจกรรมที่กำลังจะมาถึงสำ #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "อัปเดต" @@ -27606,6 +27699,11 @@ msgstr "อัปเดตคำสั่งซื้อ" msgid "Update Password" msgstr "อัปเดตรหัสผ่าน" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27648,7 +27746,7 @@ msgstr "อัปเดตระเบียน {0}" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "อัปเดตแล้ว" @@ -27656,7 +27754,7 @@ msgstr "อัปเดตแล้ว" msgid "Updated Successfully" msgstr "อัปเดตสำเร็จ" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "อัปเดตเป็นเวอร์ชันใหม่ 🎉" @@ -27664,7 +27762,7 @@ msgstr "อัปเดตเป็นเวอร์ชันใหม่ 🎉" msgid "Updated successfully" msgstr "อัปเดตสำเร็จ" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "กำลังอัปเดต" @@ -27709,8 +27807,8 @@ msgstr "อัปเกรดแผน" msgid "Upgrade your support experience with Frappe Helpdesk" msgstr "อัปเกรดประสบการณ์การสนับสนุนของคุณด้วย Frappe Helpdesk" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27720,11 +27818,11 @@ msgstr "อัปโหลด" msgid "Upload Image" msgstr "อัปโหลดภาพ" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "อัปโหลดไฟล์" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "อัปโหลดไฟล์ {0}" @@ -27821,15 +27919,11 @@ msgstr "ใช้รหัสอีเมลที่แตกต่าง" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "ใช้หากการตั้งค่าเริ่มต้นดูเหมือนจะไม่ตรวจจับข้อมูลของคุณอย่างถูกต้อง" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "การใช้ฟังก์ชัน {0} ในฟิลด์ถูกจำกัด" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "การใช้คำสั่งย่อยหรือฟังก์ชันถูกจำกัด" -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "ใช้ตัวสร้างรูปแบบการพิมพ์ใหม่" @@ -27850,7 +27944,9 @@ msgid "Used OAuth" msgstr "ใช้ OAuth แล้ว" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -27859,6 +27955,7 @@ msgstr "ใช้ OAuth แล้ว" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -27873,11 +27970,12 @@ msgstr "ใช้ OAuth แล้ว" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -27886,6 +27984,7 @@ msgstr "ใช้ OAuth แล้ว" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -27902,17 +28001,11 @@ msgstr "ใช้ OAuth แล้ว" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "ผู้ใช้" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "" - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "ผู้ใช้ '{0}' มีบทบาท '{1}' อยู่แล้ว" @@ -27942,7 +28035,7 @@ msgstr "ผู้ใช้ไม่สามารถสร้างได้" msgid "User Cannot Search" msgstr "ผู้ใช้ไม่สามารถค้นหาได้" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "ผู้ใช้เปลี่ยนแปลง" @@ -28006,11 +28099,6 @@ msgstr "รหัสผู้ใช้" msgid "User ID Property" msgstr "คุณสมบัติรหัสผู้ใช้" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "รหัสผู้ใช้ของบล็อกเกอร์" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28030,6 +28118,11 @@ msgstr "ฟิลด์รหัสผู้ใช้เป็นสิ่งจ msgid "User Image" msgstr "ภาพผู้ใช้" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "เมนูผู้ใช้" @@ -28048,12 +28141,12 @@ msgstr "สิทธิ์ของผู้ใช้" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "สิทธิ์ของผู้ใช้" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "สิทธิ์ของผู้ใช้" @@ -28066,7 +28159,9 @@ msgstr "สิทธิ์ของผู้ใช้ใช้เพื่อจ msgid "User Permissions created successfully" msgstr "สร้างสิทธิ์ของผู้ใช้สำเร็จ" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "บทบาทของผู้ใช้" @@ -28132,6 +28227,10 @@ msgstr "ผู้ใช้ไม่มีอยู่" msgid "User does not have permission to create the new {0}" msgstr "ผู้ใช้ไม่มีสิทธิ์สร้าง {0} ใหม่" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "ผู้ใช้เป็นสิ่งจำเป็นสำหรับการแชร์" @@ -28162,7 +28261,7 @@ msgstr "ไม่สามารถลบผู้ใช้ {0} ได้" msgid "User {0} cannot be disabled" msgstr "ไม่สามารถปิดใช้งานผู้ใช้ {0} ได้" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "ไม่สามารถเปลี่ยนชื่อผู้ใช้ {0} ได้" @@ -28183,7 +28282,7 @@ msgstr "ผู้ใช้ {0} ไม่มีสิทธิ์สร้าง msgid "User {0} has requested for data deletion" msgstr "ผู้ใช้ {0} ได้ร้องขอการลบข้อมูล" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "ผู้ใช้ {0} ปลอมตัวเป็น {1}" @@ -28191,7 +28290,7 @@ msgstr "ผู้ใช้ {0} ปลอมตัวเป็น {1}" msgid "User {0} is disabled" msgstr "ผู้ใช้ {0} ถูกปิดใช้งาน" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "ผู้ใช้ {0} ถูกปิดใช้งาน โปรดติดต่อผู้จัดการระบบของคุณ" @@ -28212,7 +28311,7 @@ msgstr "URI ข้อมูลผู้ใช้" msgid "Username" msgstr "ชื่อผู้ใช้" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "ชื่อผู้ใช้ {0} มีอยู่แล้ว" @@ -28296,7 +28395,7 @@ msgstr "ตรวจสอบการตั้งค่าอีเมล Frapp msgid "Validate SSL Certificate" msgstr "ตรวจสอบใบรับรอง SSL" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "ข้อผิดพลาดในการตรวจสอบ" @@ -28319,8 +28418,8 @@ msgstr "ความถูกต้อง" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28352,7 +28451,7 @@ msgstr "ค่าที่เปลี่ยนแปลง" msgid "Value To Be Set" msgstr "ค่าที่จะตั้ง" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "ค่าไม่สามารถเปลี่ยนแปลงได้สำหรับ {0}" @@ -28368,11 +28467,11 @@ msgstr "ค่าไม่สามารถเป็นค่าลบได้ msgid "Value for a check field can be either 0 or 1" msgstr "ค่าของฟิลด์ตรวจสอบสามารถเป็น 0 หรือ 1" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "ค่าของฟิลด์ {0} ยาวเกินไปใน {1} ความยาวควรน้อยกว่า {2} ตัวอักษร" -#: frappe/model/base_document.py:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "ค่าของ {0} ไม่สามารถเป็นรายการได้" @@ -28397,7 +28496,7 @@ msgstr "" msgid "Value to Validate" msgstr "ค่าที่จะตรวจสอบ" -#: frappe/model/base_document.py:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "ค่ามากเกินไป" @@ -28414,7 +28513,7 @@ msgstr "ค่า {0} ต้องอยู่ในรูปแบบระย msgid "Value {0} must in {1} format" msgstr "ค่า {0} ต้องอยู่ในรูปแบบ {1}" -#: frappe/core/doctype/version/version_view.html:8 +#: frappe/core/doctype/version/version_view.html:9 msgid "Values Changed" msgstr "ค่าที่เปลี่ยนแปลง" @@ -28427,7 +28526,7 @@ msgstr "" msgid "Verification" msgstr "การตรวจสอบ" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "รหัสการตรวจสอบ" @@ -28489,15 +28588,7 @@ msgstr "ดูทั้งหมด" msgid "View Audit Trail" msgstr "ดูเส้นทางการตรวจสอบ" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "ดูโพสต์บล็อก" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "ดูความคิดเห็น" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "ดูสิทธิ์ประเภทเอกสาร" @@ -28509,7 +28600,7 @@ msgstr "ดูไฟล์" msgid "View Full Log" msgstr "ดูบันทึกทั้งหมด" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "ดูรายการ" @@ -28519,7 +28610,7 @@ msgstr "ดูรายการ" msgid "View Log" msgstr "ดูบันทึก" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "ดูเอกสารที่อนุญาต" @@ -28566,7 +28657,7 @@ msgstr "ดูรายงานในเบราว์เซอร์ของ msgid "View this in your browser" msgstr "ดูสิ่งนี้ในเบราว์เซอร์ของคุณ" -#: frappe/public/js/frappe/web_form/web_form.js:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "ดูการตอบกลับของคุณ" @@ -28635,6 +28726,7 @@ msgid "Warehouse" msgstr "คลังสินค้า" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "คำเตือน" @@ -28643,7 +28735,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:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "คำเตือน: ยังไม่ได้ตั้งชื่อ" @@ -28729,7 +28821,7 @@ msgstr "หน้าเว็บ" msgid "Web Page Block" msgstr "บล็อกหน้าเว็บ" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "URL หน้าเว็บ" @@ -28832,7 +28924,7 @@ msgstr "URL Webhook" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "เว็บไซต์" @@ -28845,10 +28937,6 @@ msgstr "การวิเคราะห์เว็บไซต์" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -28892,7 +28980,7 @@ msgstr "สคริปต์เว็บไซต์" msgid "Website Search Field" msgstr "ฟิลด์ค้นหาเว็บไซต์" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "ฟิลด์ค้นหาเว็บไซต์ต้องเป็นชื่อฟิลด์ที่ถูกต้อง" @@ -29109,11 +29197,6 @@ msgstr "ตัวกรองไวลด์การ์ด" msgid "Will add \"%\" before and after the query" msgstr "" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "จะใช้ใน URL (โดยปกติคือชื่อแรก)" - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "จะเป็นรหัสเข้าสู่ระบบของคุณ" @@ -29128,7 +29211,7 @@ msgstr "จะแสดงเฉพาะเมื่อเปิดใช้ง msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "จะรันงานตามกำหนดเวลาเพียงครั้งเดียวต่อวันสำหรับไซต์ที่ไม่ได้ใช้งาน ตั้งค่าเป็น 0 เพื่อหลีกเลี่ยงการปิดใช้งานตัวกำหนดเวลาโดยอัตโนมัติ" -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "พร้อมหัวจดหมาย" @@ -29206,7 +29289,7 @@ msgstr "ตัวสร้างเวิร์กโฟลว์ช่วยใ msgid "Workflow Data" msgstr "ข้อมูลเวิร์กโฟลว์" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "รายละเอียดเวิร์กโฟลว์" @@ -29232,11 +29315,11 @@ msgstr "สถานะเวิร์กโฟลว์" msgid "Workflow State Field" msgstr "ฟิลด์สถานะเวิร์กโฟลว์" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "ไม่ได้ตั้งค่าสถานะเวิร์กโฟลว์" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "ไม่อนุญาตให้เปลี่ยนสถานะเวิร์กโฟลว์จาก {0} เป็น {1}" @@ -29244,15 +29327,30 @@ msgstr "ไม่อนุญาตให้เปลี่ยนสถานะ msgid "Workflow States Don't Exist" msgstr "สถานะเวิร์กโฟลว์ไม่มีอยู่" -#: frappe/model/workflow.py:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "สถานะเวิร์กโฟลว์" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "การเปลี่ยนผ่านเวิร์กโฟลว์" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29268,13 +29366,13 @@ msgstr "อัปเดตเวิร์กโฟลว์สำเร็จ" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "พื้นที่ทำงาน" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "พื้นที่ทำงาน {0} ไม่มีอยู่" @@ -29344,11 +29442,11 @@ msgstr "สร้างพื้นที่ทำงาน {0} แล้ว" msgid "Workspaces" msgstr "พื้นที่ทำงาน" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "คุณต้องการเผยแพร่ความคิดเห็นนี้หรือไม่? ซึ่งหมายความว่ามันจะมองเห็นได้สำหรับผู้ใช้เว็บไซต์/พอร์ทัล" -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "คุณต้องการยกเลิกการเผยแพร่ความคิดเห็นนี้หรือไม่? ซึ่งหมายความว่ามันจะไม่มองเห็นได้สำหรับผู้ใช้เว็บไซต์/พอร์ทัลอีกต่อไป" @@ -29367,11 +29465,11 @@ msgstr "กำลังสรุป" msgid "Write" msgstr "เขียน" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "ค่าที่ดึงมาผิด" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "ฟิลด์แกน X" @@ -29390,13 +29488,13 @@ msgstr "" msgid "Y Axis" msgstr "แกน Y" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" msgstr "ฟิลด์แกน Y" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "ฟิลด์ Y" @@ -29448,16 +29546,17 @@ msgstr "สีเหลือง" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "ใช่" @@ -29485,6 +29584,18 @@ msgstr "คุณ" msgid "You Liked" msgstr "คุณชอบ" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "คุณเชื่อมต่อกับอินเทอร์เน็ตแล้ว" @@ -29523,20 +29634,20 @@ msgstr "คุณไม่ได้รับอนุญาตให้แก้ #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "คุณไม่ได้รับอนุญาตให้นำออกประเภทเอกสาร {}" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "คุณไม่ได้รับอนุญาตให้พิมพ์รายงานนี้" -#: frappe/public/js/frappe/views/communication.js:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "คุณไม่ได้รับอนุญาตให้ส่งอีเมลที่เกี่ยวข้องกับเอกสารนี้" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "คุณไม่ได้รับอนุญาตให้อัปเดตเอกสารฟอร์มเว็บนี้" @@ -29560,7 +29671,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:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 msgid "You are only allowed to update order, do not remove or add apps." msgstr "คุณได้รับอนุญาตให้ปรับปรุงคำสั่งซื้อเท่านั้น ห้ามลบหรือเพิ่มแอป" @@ -29586,13 +29697,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "คุณยังสามารถคัดลอก-วางลิงก์ต่อไปนี้ในเบราว์เซอร์ของคุณ" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " +msgid "You can also copy-paste this" msgstr "" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "คุณยังสามารถคัดลอก-วาง {0} นี้ในเบราว์เซอร์ของคุณ" +#: frappe/templates/emails/user_invitation_expired.html:8 +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 "คุณสามารถเปลี่ยนเอกสารที่ส่งแล้วโดยการยกเลิกและแก้ไข" @@ -29605,11 +29720,11 @@ msgstr "คุณสามารถเปลี่ยนนโยบายกา msgid "You can continue with the onboarding after exploring this page" msgstr "คุณสามารถดำเนินการต่อกับการเริ่มต้นใช้งานหลังจากสำรวจหน้านี้" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "คุณสามารถปิดใช้งาน {0} นี้แทนการลบได้" -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "คุณสามารถเพิ่มขีดจำกัดจากการตั้งค่าระบบ" @@ -29629,7 +29744,7 @@ msgstr "คุณสามารถพิมพ์เอกสารได้ส msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "คุณสามารถตั้งค่าประเภทเอกสารที่กำหนดเองได้เพียง 3 ประเภทในตารางประเภทเอกสาร" -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "คุณสามารถอัปโหลดเอกสาร JPG, PNG, PDF, TXT, CSV หรือ Microsoft เท่านั้น" @@ -29647,7 +29762,7 @@ msgstr "คุณสามารถเลือกหนึ่งจากรา msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "คุณสามารถตั้งค่าค่าสูงที่นี่หากมีผู้ใช้หลายคนเข้าสู่ระบบจากเครือข่ายเดียวกัน" -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "คุณสามารถลองเปลี่ยนตัวกรองของรายงานของคุณ" @@ -29659,11 +29774,11 @@ msgstr "คุณสามารถใช้ฟอร์มปรับแต่ msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "คุณไม่สามารถตั้งค่า 'ตัวเลือก' สำหรับฟิลด์ {0} ได้" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "คุณไม่สามารถตั้งค่า 'แปลได้' สำหรับฟิลด์ {0} ได้" @@ -29681,7 +29796,7 @@ msgstr "คุณยกเลิกเอกสารนี้ {1}" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "คุณไม่สามารถสร้างแผนภูมิแดชบอร์ดจากประเภทเอกสารเดียวได้" -#: frappe/custom/doctype/customize_form/customize_form.py:385 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "คุณไม่สามารถยกเลิกการตั้งค่า 'อ่านอย่างเดียว' สำหรับฟิลด์ {0} ได้" @@ -29711,7 +29826,7 @@ msgstr "คุณเปลี่ยน {0} เป็น {1}" msgid "You created this" msgstr "คุณสร้างสิ่งนี้" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "คุณสร้างเอกสารนี้ {0}" @@ -29724,15 +29839,15 @@ msgstr "คุณไม่มีสิทธิ์อ่านหรือเล msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "คุณไม่มีสิทธิ์เพียงพอที่จะเข้าถึงทรัพยากรนี้ โปรดติดต่อผู้จัดการของคุณเพื่อขอสิทธิ์เข้าถึง" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "คุณไม่มีสิทธิ์เพียงพอที่จะดำเนินการให้เสร็จสิ้น" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "คุณไม่มีสิทธิ์เข้าถึง {0}: {1}" @@ -29744,11 +29859,11 @@ msgstr "คุณไม่มีสิทธิ์ยกเลิกเอกส msgid "You don't have access to Report: {0}" msgstr "คุณไม่มีสิทธิ์เข้าถึงรายงาน: {0}" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "คุณไม่มีสิทธิ์เข้าถึงประเภทเอกสาร {0}" -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "คุณไม่มีสิทธิ์เข้าถึงไฟล์นี้" @@ -29756,19 +29871,19 @@ msgstr "คุณไม่มีสิทธิ์เข้าถึงไฟล msgid "You don't have permission to get a report on: {0}" msgstr "คุณไม่มีสิทธิ์รับรายงานเกี่ยวกับ: {0}" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "คุณไม่มีสิทธิ์เข้าถึงเอกสารนี้" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " +msgid "You have a new message from:" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "คุณออกจากระบบสำเร็จแล้ว" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "คุณถึงขีดจำกัดขนาดแถวในตารางฐานข้อมูล: {0}" @@ -29776,11 +29891,7 @@ msgstr "คุณถึงขีดจำกัดขนาดแถวในต msgid "You have not entered a value. The field will be set to empty." msgstr "คุณไม่ได้ป้อนค่า ฟิลด์จะถูกตั้งค่าเป็นว่างเปล่า" -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "คุณได้รับการกดถูกใจ ❤️ ในโพสต์บล็อกของคุณ" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "คุณต้องเปิดใช้งานการยืนยันตัวตนสองขั้นตอนจากการตั้งค่าระบบ" @@ -29800,7 +29911,7 @@ msgstr "คุณมี {0} ที่ยังไม่ได้ดู" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "คุณยังไม่ได้เพิ่มแผนภูมิแดชบอร์ดหรือการ์ดตัวเลขใด ๆ" -#: frappe/public/js/frappe/list/list_view.js:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "คุณยังไม่ได้สร้าง {0}" @@ -29817,11 +29928,11 @@ msgstr "คุณแก้ไขสิ่งนี้ล่าสุด" msgid "You must add atleast one link." msgstr "คุณต้องเพิ่มลิงก์อย่างน้อยหนึ่งลิงก์" -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "คุณต้องเข้าสู่ระบบเพื่อใช้ฟอร์มนี้" -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "คุณต้องเข้าสู่ระบบเพื่อส่งฟอร์มนี้" @@ -29845,7 +29956,7 @@ msgstr "คุณต้องเป็นผู้ใช้ระบบเพื msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "คุณต้องอยู่ในโหมดนักพัฒนาเพื่อแก้ไขฟอร์มเว็บมาตรฐาน" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "คุณต้องเข้าสู่ระบบและมีบทบาทผู้จัดการระบบเพื่อเข้าถึงข้อมูลสำรอง" @@ -29853,12 +29964,12 @@ msgstr "คุณต้องเข้าสู่ระบบและมีบ msgid "You need to be logged in to access this page" msgstr "คุณต้องเข้าสู่ระบบเพื่อเข้าถึงหน้านี้" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "คุณต้องเข้าสู่ระบบเพื่อเข้าถึง {0} นี้" #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " +msgid "You need to create these first:" msgstr "" #: frappe/www/login.html:76 @@ -29893,11 +30004,19 @@ msgstr "คุณต้องมีสิทธิ์เขียนใน {0} { msgid "You need {0} permission to fetch values from {1} {2}" msgstr "คุณต้องมีสิทธิ์ {0} เพื่อดึงค่าจาก {1} {2}" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "คุณลบไฟล์แนบ {0}" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "คุณดูพร้อมที่จะไป!" @@ -29928,10 +30047,26 @@ msgstr "คุณเลิกติดตามเอกสารนี้" msgid "You viewed this" msgstr "คุณดูสิ่งนี้" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "คุณเข้าสู่ระบบในฐานะผู้ใช้อื่นจากแท็บอื่น โปรดรีเฟรชหน้านี้เพื่อใช้งานระบบต่อ" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "ไฟล์ CSV ของคุณกำลังถูกสร้างและจะปรากฏในส่วนไฟล์แนบเมื่อพร้อมใช้งาน นอกจากนี้คุณจะได้รับการแจ้งเตือนเมื่อไฟล์พร้อมให้ดาวน์โหลด" @@ -29961,7 +30096,7 @@ msgstr "ทางลัดของคุณ" msgid "Your account has been deleted" msgstr "บัญชีของคุณถูกลบแล้ว" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "บัญชีของคุณถูกล็อกและจะกลับมาใช้งานได้หลังจาก {0} วินาที" @@ -29985,10 +30120,22 @@ msgstr "คำขอเชื่อมต่อของคุณไปยัง msgid "Your email address" msgstr "ที่อยู่อีเมลของคุณ" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "ฟอร์มของคุณได้รับการอัปเดตเรียบร้อยแล้ว" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "รหัสเข้าสู่ระบบของคุณคือ" @@ -30011,7 +30158,11 @@ msgstr "ชื่อและที่อยู่ขององค์กรข msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "คำถามของคุณได้รับแล้ว เราจะตอบกลับในไม่ช้า หากคุณมีข้อมูลเพิ่มเติม โปรดตอบกลับอีเมลนี้" -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "เซสชันของคุณหมดอายุแล้ว โปรดเข้าสู่ระบบอีกครั้งเพื่อดำเนินการต่อ" @@ -30033,7 +30184,7 @@ msgstr "ศูนย์" msgid "Zero means send records updated at anytime" msgstr "ศูนย์หมายถึงส่งระเบียนที่อัปเดตได้ตลอดเวลา" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" msgstr "[การดำเนินการโดย {0}]" @@ -30055,10 +30206,6 @@ msgstr "`as_iterator` ใช้งานได้เฉพาะกับ `as_li msgid "`job_id` paramater is required for deduplication." msgstr "ต้องการพารามิเตอร์ `job_id` สำหรับการลบข้อมูลซ้ำ" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "เพิ่มแถวสำหรับ {0}" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30093,7 +30240,7 @@ msgstr "ตามบทบาท" msgid "cProfile Output" msgstr "ผลลัพธ์ cProfile" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "ปฏิทิน" @@ -30238,12 +30385,12 @@ msgstr "อีแมคส์" msgid "email" msgstr "อีเมล" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "กล่องจดหมายอีเมล" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "ว่างเปล่า" @@ -30300,7 +30447,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "ฮับ" @@ -30315,11 +30462,6 @@ msgstr "ไอคอน" msgid "import" msgstr "นำเข้า" -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "ในนาที" - #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "" @@ -30328,7 +30470,7 @@ msgstr "" msgid "just now" msgstr "เมื่อสักครู่" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "ป้ายกำกับ" @@ -30357,7 +30499,7 @@ msgstr "รายการ" msgid "logged in" msgstr "เข้าสู่ระบบแล้ว" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "ต้องเข้าสู่ระบบ" @@ -30378,11 +30520,6 @@ msgstr "นาที" msgid "merged {0} into {1}" msgstr "รวม {0} เข้ากับ {1}" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "อ่านขั้นต่ำ" - #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json @@ -30406,7 +30543,7 @@ msgstr "โมดูล" msgid "module name..." msgstr "ชื่อโมดูล..." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "ใหม่" @@ -30535,10 +30672,6 @@ msgstr "อ่าน" msgid "red" msgstr "สีแดง" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "ลบแถวสำหรับ {0}" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "เปลี่ยนชื่อจาก {0} เป็น {1}" @@ -30594,19 +30727,19 @@ msgstr "แชร์" msgid "short" msgstr "สั้น" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "ตั้งแต่เดือนที่แล้ว" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "ตั้งแต่สัปดาห์ที่แล้ว" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "ตั้งแต่ปีที่แล้ว" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "ตั้งแต่เมื่อวาน" @@ -30659,6 +30792,10 @@ msgstr "ฟอร์มนี้" msgid "this shouldn't break" msgstr "สิ่งนี้ไม่ควรเสียหาย" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30686,7 +30823,7 @@ msgstr "ตารางเวอร์ชัน" msgid "via Assignment Rule" msgstr "ผ่านกฎการมอบหมาย" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "ผ่านการทำซ้ำอัตโนมัติ" @@ -30700,7 +30837,7 @@ msgstr "ผ่านการนำเข้าข้อมูล" msgid "via Google Meet" msgstr "ผ่าน Google Meet" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "ผ่านการแจ้งเตือน" @@ -30733,10 +30870,15 @@ msgstr "เมื่อคลิกที่องค์ประกอบ จ msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "wkhtmltopdf 0.12.x (พร้อม qt ที่แก้ไขแล้ว)" +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json @@ -30764,11 +30906,11 @@ msgstr "ปปปป-ดด-วว" msgid "{0}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "" @@ -30794,19 +30936,19 @@ msgstr "" msgid "{0} Calendar" msgstr "ปฏิทิน {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "แผนภูมิ {0}" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "แดชบอร์ด {0}" -#: frappe/public/js/frappe/form/grid_row.js:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "ฟิลด์ {0}" @@ -30830,6 +30972,10 @@ msgstr "ชอบ {0}" msgid "{0} List" msgstr "รายการ {0}" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "" @@ -30842,7 +30988,7 @@ msgstr "แผนที่ {0}" msgid "{0} Name" msgstr "ชื่อ {0}" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "{0} ไม่อนุญาตให้เปลี่ยน {1} หลังจากส่งจาก {2} เป็น {3}" @@ -30852,11 +30998,10 @@ msgstr "{0} ไม่อนุญาตให้เปลี่ยน {1} หล msgid "{0} Report" msgstr "รายงาน {0}" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "รายงาน {0}" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "การตั้งค่า {0}" @@ -30881,7 +31026,15 @@ msgstr "พื้นที่ทำงาน {0}" msgid "{0} added" msgstr "เพิ่ม {0}" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0} มีอยู่แล้ว เลือกชื่ออื่น" @@ -30893,7 +31046,7 @@ msgstr "{0} ยกเลิกการสมัครแล้ว" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0} ยกเลิกการสมัครแล้วสำหรับ {1} {2}" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "{0} และ {1}" @@ -30901,7 +31054,7 @@ msgstr "{0} และ {1}" msgid "{0} are currently {1}" msgstr "{0} ปัจจุบันคือ {1}" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "ต้องการ {0}" @@ -30918,7 +31071,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0} แนบ {1}" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "{0} ต้องไม่เกิน {1}" @@ -30960,11 +31113,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "{0} เปลี่ยน {1} เป็น {2}" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "{0} ความคิดเห็น" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." msgstr "{0} มีนิพจน์ Fetch From ที่ไม่ถูกต้อง Fetch From ไม่สามารถอ้างอิงตัวเองได้" @@ -30977,7 +31126,7 @@ msgstr "{0} สร้างสำเร็จ" msgid "{0} created this" msgstr "{0} สร้างสิ่งนี้" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "{0} สร้างเอกสารนี้ {1}" @@ -30999,7 +31148,7 @@ msgstr "{0} ไม่มีอยู่ในแถว {1}" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "ฟิลด์ {0} ไม่สามารถตั้งค่าเป็นค่าที่ไม่ซ้ำใน {1} ได้ เนื่องจากมีค่าที่ไม่ซ้ำอยู่แล้ว" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31031,7 +31180,7 @@ msgstr "{0} ออกจากการสนทนาใน {1} {2}" msgid "{0} hours ago" msgstr "{0} ชั่วโมงที่ผ่านมา" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "{0} หากคุณไม่ได้ถูกเปลี่ยนเส้นทางภายใน {1} วินาที" @@ -31040,23 +31189,23 @@ msgstr "{0} หากคุณไม่ได้ถูกเปลี่ยน msgid "{0} in row {1} cannot have both URL and child items" msgstr "{0} ในแถว {1} ไม่สามารถมีทั้ง URL และรายการลูกได้" -#: frappe/core/doctype/doctype/doctype.py:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "{0} เป็นฟิลด์ที่จำเป็น" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "{0} ไม่ใช่ไฟล์ zip ที่ถูกต้อง" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "{0} เป็นฟิลด์ข้อมูลที่ไม่ถูกต้อง" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "{0} เป็นที่อยู่อีเมลที่ไม่ถูกต้องใน 'ผู้รับ'" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "{0} อยู่ระหว่าง {1} และ {2}" @@ -31065,27 +31214,27 @@ msgstr "{0} อยู่ระหว่าง {1} และ {2}" msgid "{0} is currently {1}" msgstr "{0} ปัจจุบันคือ {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "{0} เท่ากับ {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "{0} มากกว่าหรือเท่ากับ {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "{0} มากกว่า {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "{0} น้อยกว่าหรือเท่ากับ {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "{0} น้อยกว่า {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "{0} คล้ายกับ {1}" @@ -31093,7 +31242,7 @@ msgstr "{0} คล้ายกับ {1}" msgid "{0} is mandatory" msgstr "{0} เป็นสิ่งจำเป็น" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31113,12 +31262,12 @@ msgstr "{0} ไม่ใช่ปฏิทินที่ถูกต้อง msgid "{0} is not a valid Cron expression." msgstr "{0} ไม่ใช่นิพจน์ Cron ที่ถูกต้อง" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} ไม่ใช่ประเภทเอกสารที่ถูกต้องสำหรับลิงก์แบบไดนามิก" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "{0} ไม่ใช่ที่อยู่อีเมลที่ถูกต้อง" @@ -31126,15 +31275,15 @@ msgstr "{0} ไม่ใช่ที่อยู่อีเมลที่ถ msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "{0} ไม่ใช่รหัส ISO 3166 ALPHA-2 ที่ถูกต้อง" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "{0} ไม่ใช่ชื่อที่ถูกต้อง" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "{0} ไม่ใช่หมายเลขโทรศัพท์ที่ถูกต้อง" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "{0} ไม่ใช่สถานะเวิร์กโฟลว์ที่ถูกต้อง โปรดอัปเดตเวิร์กโฟลว์ของคุณและลองอีกครั้ง" @@ -31150,55 +31299,59 @@ msgstr "{0} ไม่ใช่ฟิลด์หลักที่ถูกต msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} ไม่ใช่รูปแบบรายงานที่ถูกต้อง รูปแบบรายงานควรเป็นหนึ่งในสิ่งต่อไปนี้ {1}" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "{0} ไม่ใช่ไฟล์ zip" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "{0} ไม่เท่ากับ {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "{0} ไม่คล้ายกับ {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "{0} ไม่ใช่หนึ่งใน {1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "{0} ไม่ได้ตั้งค่า" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "{0} เป็นรูปแบบการพิมพ์เริ่มต้นสำหรับประเภทเอกสาร {1} แล้ว" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" msgstr "{0} เป็นหนึ่งใน {1}" #: frappe/email/doctype/email_account/email_account.py:304 -#: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: 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/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "{0} ถูกตั้งค่า" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "{0} อยู่ภายใน {1}" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} รายการที่เลือก" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} เพิ่งปลอมตัวเป็นคุณ พวกเขาให้เหตุผลนี้: {1}" @@ -31231,35 +31384,35 @@ msgstr "{0} นาทีที่ผ่านมา" msgid "{0} months ago" msgstr "{0} เดือนที่ผ่านมา" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "{0} ต้องอยู่หลังจาก {1}" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "{0} ต้องเริ่มต้นด้วย '{1}'" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "{0} ต้องเท่ากับ '{1}'" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "{0} ต้องไม่เป็นหนึ่งใน {1}" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0} ต้องเป็นหนึ่งใน {1}" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "{0} ต้องตั้งค่าก่อน" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "{0} ต้องไม่ซ้ำกัน" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "{0} ต้องเป็น {1} {2}" @@ -31267,7 +31420,7 @@ msgstr "{0} ต้องเป็น {1} {2}" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "{0} ต้องเริ่มต้นและสิ้นสุดด้วยตัวอักษร และสามารถมีได้เฉพาะตัวอักษร, ขีดกลาง หรือขีดล่างเท่านั้น" -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "{0} ไม่ใช่สถานะที่ถูกต้อง" @@ -31280,11 +31433,11 @@ msgid "{0} not found" msgstr "ไม่พบ {0}" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0} ของ {1}" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} ของ {1} ({2} แถวที่มีลูก)" @@ -31293,7 +31446,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "เฉพาะ {0} เท่านั้น" -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "{0} หรือ {1}" @@ -31317,6 +31470,10 @@ msgstr "ระเบียน {0} ถูกลบ" msgid "{0} records will be exported" msgstr "ระเบียน {0} จะถูกส่งออก" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31326,15 +31483,29 @@ msgstr "{0} ลบไฟล์แนบ {1}" msgid "{0} removed their assignment." msgstr "{0} ลบการมอบหมายของพวกเขา" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "บทบาท {0} ไม่มีสิทธิ์ในประเภทเอกสารใด ๆ" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "{0} บันทึกสำเร็จ" @@ -31354,11 +31525,11 @@ msgstr "{0} แชร์เอกสารนี้กับทุกคน" msgid "{0} shared this document with {1}" msgstr "{0} แชร์เอกสารนี้กับ {1}" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "{0} ควรถูกจัดทำดัชนีเพราะถูกอ้างอิงในการเชื่อมต่อแดชบอร์ด" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "{0} ไม่ควรเหมือนกับ {1}" @@ -31371,8 +31542,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "{0} ส่งเอกสารนี้ {1}" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "เพิ่มผู้ติดตาม {0}" @@ -31382,7 +31553,7 @@ msgstr "{0} เพื่อหยุดรับอีเมลประเภ #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "{0} ถึง {1}" @@ -31390,7 +31561,7 @@ msgstr "{0} ถึง {1}" msgid "{0} un-shared this document with {1}" msgstr "{0} ยกเลิกการแชร์เอกสารนี้กับ {1}" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} อัปเดตแล้ว" @@ -31426,15 +31597,15 @@ msgstr "เพิ่ม {0} {1}" msgid "{0} {1} added to Dashboard {2}" msgstr "เพิ่ม {0} {1} ในแดชบอร์ด {2}" -#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "{0} {1} มีอยู่แล้ว" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "{0} {1} ไม่สามารถเป็นโหนดใบได้เนื่องจากมีลูก" @@ -31450,11 +31621,11 @@ msgstr "{0} {1} เชื่อมโยงกับเอกสารที่ msgid "{0} {1} not found" msgstr "ไม่พบ {0} {1}" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: ไม่สามารถลบระเบียนที่ส่งได้ คุณต้อง {2} ยกเลิก {3} ก่อน" -#: frappe/model/base_document.py:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "{0}, แถว {1}" @@ -31462,79 +31633,79 @@ msgstr "{0}, แถว {1}" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "{0}/{1} เสร็จสิ้น | โปรดเปิดแท็บนี้ไว้จนกว่าจะเสร็จสิ้น" -#: frappe/model/base_document.py:1120 +#: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "{0}: '{1}' ({3}) จะถูกตัดออก เนื่องจากจำนวนตัวอักษรสูงสุดที่อนุญาตคือ {2}" -#: frappe/core/doctype/doctype/doctype.py:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "{0}: ไม่สามารถตั้งค่าแก้ไขได้โดยไม่ยกเลิก" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "{0}: ไม่สามารถตั้งค่ามอบหมายการแก้ไขได้หากไม่สามารถส่งได้" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "{0}: ไม่สามารถตั้งค่ามอบหมายการส่งได้หากไม่สามารถส่งได้" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "{0}: ไม่สามารถตั้งค่ายกเลิกได้โดยไม่ส่ง" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "{0}: ไม่สามารถตั้งค่านำเข้าได้โดยไม่สร้าง" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "{0}: ไม่สามารถตั้งค่าส่ง ยกเลิก แก้ไขได้โดยไม่มีการเขียน" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 msgid "{0}: Cannot set import as {1} is not importable" msgstr "{0}: ไม่สามารถตั้งค่านำเข้าได้เนื่องจาก {1} ไม่สามารถนำเข้าได้" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 +#: 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:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "{0}: ฟิลด์ '{1}' ไม่สามารถตั้งค่าเป็นค่าที่ไม่ซ้ำได้เนื่องจากมีค่าที่ซ้ำกัน" -#: frappe/core/doctype/doctype/doctype.py:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "{0}: ฟิลด์ {1} ในแถว {2} ไม่สามารถซ่อนและบังคับได้โดยไม่มีค่าเริ่มต้น" -#: frappe/core/doctype/doctype/doctype.py:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "{0}: ฟิลด์ {1} ประเภท {2} ไม่สามารถบังคับได้" -#: frappe/core/doctype/doctype/doctype.py:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "{0}: ชื่อฟิลด์ {1} ปรากฏหลายครั้งในแถว {2}" -#: frappe/core/doctype/doctype/doctype.py:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "{0}: ประเภทฟิลด์ {1} สำหรับ {2} ไม่สามารถเป็นค่าที่ไม่ซ้ำได้" -#: frappe/core/doctype/doctype/doctype.py:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "{0}: ไม่มีการตั้งค่าสิทธิ์พื้นฐาน" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "{0}: อนุญาตให้มีกฎเพียงข้อเดียวที่มีบทบาท ระดับ และ {1} เดียวกัน" -#: frappe/core/doctype/doctype/doctype.py:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" msgstr "{0}: ตัวเลือกต้องเป็นประเภทเอกสารที่ถูกต้องสำหรับฟิลด์ {1} ในแถว {2}" -#: frappe/core/doctype/doctype/doctype.py:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "{0}: ต้องการตัวเลือกสำหรับฟิลด์ประเภทลิงก์หรือตาราง {1} ในแถว {2}" -#: frappe/core/doctype/doctype/doctype.py:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "{0}: ตัวเลือก {1} ต้องเหมือนกับชื่อประเภทเอกสาร {2} สำหรับฟิลด์ {3}" @@ -31542,7 +31713,7 @@ msgstr "{0}: ตัวเลือก {1} ต้องเหมือนกั msgid "{0}: Other permission rules may also apply" msgstr "{0}: กฎสิทธิ์อื่น ๆ อาจมีผลบังคับใช้ด้วย" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "{0}: ต้องตั้งค่าสิทธิ์ที่ระดับ 0 ก่อนที่จะตั้งค่าระดับที่สูงกว่า" @@ -31550,7 +31721,7 @@ msgstr "{0}: ต้องตั้งค่าสิทธิ์ที่ระ msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "{0}: คุณสามารถเพิ่มขีดจำกัดสำหรับฟิลด์ได้หากจำเป็นผ่าน {1}" -#: frappe/core/doctype/doctype/doctype.py:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "{0}: ชื่อฟิลด์ไม่สามารถตั้งค่าเป็นคำสำรอง {1} ได้" @@ -31563,11 +31734,11 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "{0}: {1} ถูกตั้งค่าเป็นสถานะ {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} เทียบกับ {2}" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "{0}: ประเภทฟิลด์ {1} สำหรับ {2} ไม่สามารถจัดทำดัชนีได้" @@ -31591,7 +31762,7 @@ msgstr "เลือกแถว {count} แล้ว" msgid "{count} rows selected" msgstr "เลือกแถว {count} แล้ว" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "{{{0}}} ไม่ใช่รูปแบบชื่อฟิลด์ที่ถูกต้อง ควรเป็น {{field_name}}" @@ -31599,11 +31770,11 @@ msgstr "{{{0}}} ไม่ใช่รูปแบบชื่อฟิลด์ msgid "{} Complete" msgstr "{} เสร็จสมบูรณ์" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "{} โค้ด Python ไม่ถูกต้องในบรรทัด {}" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
    {}" msgstr "{} โค้ด Python อาจไม่ถูกต้อง
    {}" @@ -31629,7 +31800,7 @@ msgstr "{} ถูกปิดใช้งาน สามารถเปิด msgid "{} is not a valid date string." msgstr "{} ไม่ใช่สตริงวันที่ที่ถูกต้อง" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "ไม่พบ {} ใน PATH! จำเป็นต้องใช้เพื่อเข้าถึงคอนโซล" diff --git a/frappe/locale/tr.po b/frappe/locale/tr.po index d583e7027f..db547a7990 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-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-21 21:50\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Turkish\n" "MIME-Version: 1.0\n" @@ -18,10 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: tr_TR\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr " tarayıcınıza" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json @@ -61,7 +57,7 @@ msgstr "#{0}" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "${values.doctype_name} optimizasyon için kuyruğa eklendi" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" msgstr "© Frappe Technologies Pvt. Ltd. ve katkıda bulunanlar" @@ -74,7 +70,7 @@ msgstr "<head> HTML" 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:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 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" @@ -82,19 +78,23 @@ msgstr "{1} satırındaki {0} türü için 'Genel Arama' seçeneğine izin veril msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "{1} türündeki {0} alanı için 'Liste Görünümü' seçeneğine izin verilmiyor" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "{1} satırındaki {0} türü için 'Liste Görünümü' seçeneğine izin verilmiyor" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" msgstr "'Alıcılar' belirtilmemiş" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" msgstr "'{0}' geçerli bir URL değil" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "'{0}' {2} satırındaki {1} türü için izin verilmiyor" @@ -102,11 +102,11 @@ msgstr "'{0}' {2} satırındaki {1} türü için izin verilmiyor" msgid "(Mandatory)" msgstr "(Zorunlu)" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "** Başarısız: {0} - {1}: {2}" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" msgstr "+ Alanları Ekle / Çıkar" @@ -122,7 +122,7 @@ msgstr "0 - Taslak; 1 - Gönderildi; 2 -İptal Edildi" msgid "0 is highest" msgstr "0 en yüksek seviyedir" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1 = Doğru & 0 = Yanlış" @@ -141,15 +141,11 @@ 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:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1 Rapor" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "1 yorum" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "1 gün önce" @@ -158,17 +154,17 @@ msgid "1 hour" msgstr "1 saat" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "1 Saat Önce" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "1 Dakika Önce" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "1 Ay Önce" @@ -180,37 +176,47 @@ msgstr "1 / 2" msgid "1 record will be exported" msgstr "1 Kayıt Dışa Aktarılacak" -#: frappe/tests/test_utils.py:711 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "" + +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "1 saniye önce" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "1 Hafta Önce" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "1 Yıl Önce" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "2 saat önce" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "2 ay önce" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "2 hafta önce" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "2 yıl önce" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "3 dakika önce" @@ -226,7 +232,7 @@ msgstr "4 Saat" msgid "5 Records" msgstr "5 Kayıt" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "5 Gün Önce" @@ -246,6 +252,13 @@ msgstr "<" msgid "<=" msgstr "<=" +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "{0} geçerli bir URL değil" @@ -255,6 +268,16 @@ msgstr "{0} geçerli bir URL değil" msgid "
    Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
    " msgstr "
    Formunuzu bozabileceği için lütfen güncellemeyin. Özellikleri ayarlamak için Form Görünümünü Özelleştir ve Özel Alanları kullanın!
    " +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

    Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

    " +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

    Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

    " +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -641,7 +664,7 @@ msgstr "

    Yukarıdaki HTML ile etkileşim kurmak için `root_element` öğesini "some_class_element.textContent = \"Yeni içerik\";\n" "" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

    " msgstr "

    {0} üzerindeki OTP sırrınız sıfırlandı. Bu sıfırlamayı siz yapmadıysanız ve talep etmediyseniz lütfen hemen Sistem Yöneticinizle iletişime geçin.

    " @@ -731,7 +754,7 @@ msgstr ">" msgid ">=" msgstr ">=" -#: frappe/core/doctype/doctype/doctype.py:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 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" @@ -740,15 +763,16 @@ msgstr "Bir DocType'ın adı bir harfle başlamalıdır ve yalnızca harfler, sa msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" -msgstr "Öne çıkan bir gönderinin kapak resmi olmalıdır" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "{0} adlı bir alan {1} içinde zaten mevcut" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "Aynı ada sahip {} dosya zaten var" @@ -761,7 +785,7 @@ msgstr "Kullanıcı izin verdikten sonra İstemci Uygulamasının erişebileceğ msgid "A new account has been created for you at {0}" msgstr "{0} adresinde sizin için yeni bir hesap oluşturuldu" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "Otomatik Tekrar {2} aracılığıyla sizin için tekrar eden bir {0} {1} oluşturuldu." @@ -860,13 +884,17 @@ msgstr "API Endpoint" msgid "API Endpoint Args" msgstr "API Uç Nokta Bağımsız Değişkenleri" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -885,6 +913,10 @@ msgstr "Relay Sunucusuyla etkileşim kurmak için API Anahtarı ve Gizli Anahtar msgid "API Key cannot be regenerated" msgstr "API Anahtarı yeniden oluşturulamaz." +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -905,7 +937,7 @@ msgstr "API İstek Günlüğü" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -952,6 +984,20 @@ msgstr "Yaklaşık {0} dakika kaldı" msgid "About {0} seconds remaining" msgstr "Yaklaşık {0} saniye kaldı" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "Daveti Kabul Et" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "Kabul Edildi" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "Kabul Edilme Tarihi" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -977,7 +1023,7 @@ msgstr "Erişim Anahtarı" msgid "Access Token URL" msgstr "Erişim Token URL'si" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "Bu IP Adresinden erişime izin verilmiyor" @@ -1041,7 +1087,7 @@ msgstr "Aksiyon / Rota" msgid "Action Complete" msgstr "Eylem Tamamlandı" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "Eylem Başarısız" @@ -1093,7 +1139,7 @@ msgstr "Eylem {0} {1} {2} tarihinde başarısız oldu. Görüntüle {3}" #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "İşlemler" @@ -1150,7 +1196,7 @@ msgstr "Aktivite Günlüğü" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -1161,7 +1207,7 @@ msgstr "Aktivite Günlüğü" msgid "Add" msgstr "Yeni" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "Sütun Ekle / Kaldır" @@ -1173,7 +1219,7 @@ msgstr "Ekle / Güncelle" msgid "Add A New Rule" msgstr "Yeni Kural Ekle" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "Dosya Ekle" @@ -1193,7 +1239,7 @@ msgstr "Alt Kısma Kenarlık Ekle" msgid "Add Border at Top" msgstr "Üste Kenarlık Ekle" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "Kartı Panoya Ekle" @@ -1206,10 +1252,10 @@ msgid "Add Child" msgstr "Alt öğe ekle" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "Sütun Ekle" @@ -1268,7 +1314,7 @@ msgstr "Katılımcı Ekle" msgid "Add Query Parameters" msgstr "Sorgu Parametreleri Ekle" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "Rol Ekle" @@ -1301,12 +1347,12 @@ msgstr "Abonelere Ekle " msgid "Add Tags" msgstr "Etiket Ekle" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "Etiket Ekle" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "Şablon Ekle" @@ -1395,7 +1441,7 @@ msgstr "Yeni Sekme Ekle" msgid "Add page break" msgstr "Sayfa arası ekle" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "Alt Tablo için Script Ekle" @@ -1433,7 +1479,7 @@ msgstr "Bu aktiviteye katkıda bulunmak için {0} adresine e-posta gönderin." msgid "Add {0}" msgstr "Yeni {0}" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" msgstr "Yeni {0}" @@ -1476,6 +1522,7 @@ msgstr "Ek İzinler" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1484,6 +1531,7 @@ msgstr "Adres" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "Adres Satırı 1" @@ -1491,6 +1539,7 @@ msgstr "Adres Satırı 1" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "Adres Satırı 2" @@ -1541,7 +1590,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:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "Yönetim" @@ -1555,7 +1604,6 @@ msgstr "Yönetim" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1568,11 +1616,11 @@ msgstr "Yönetim" msgid "Administrator" msgstr "Yönetici" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "Yönetici Giriş Yaptı" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 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ı." @@ -1593,8 +1641,8 @@ msgstr "Gelişmiş" msgid "Advanced Control" msgstr "Gelişmiş Kontrol" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" msgstr "Gelişmiş Arama" @@ -1653,7 +1701,7 @@ msgstr "Kaydettikten Sonra" msgid "After Submit" msgstr "Gönderdikten Sonra" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "Bir sayı kartı oluşturmak için Toplam Alan gereklidir" @@ -1680,11 +1728,11 @@ msgstr "Uyarı" msgid "Alerts and Notifications" msgstr "Uyarılar ve Bildirimler" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1749,7 +1797,7 @@ 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:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "Tüm Gönderiler" @@ -1809,8 +1857,8 @@ msgstr "Toplu Düzenlemeye İzin Ver" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " -msgstr "Arka Arkaya Oturum Açma Denemelerine İzin Ver" +msgid "Allow Consecutive Login Attempts" +msgstr "" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 msgid "Allow Google Calendar Access" @@ -1830,11 +1878,6 @@ msgstr "Misafire İzin Ver" msgid "Allow Guest to View" msgstr "Misafirin Görüntülemesine İzin Ver" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "Misafirin yorum yapmasına izin ver" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1883,7 +1926,7 @@ msgid "Allow Print for Cancelled" msgstr "İptal Edilenler İçin Yazdırmaya İzin Ver" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "Taslak Yazdırmaya İzin Ver" @@ -2116,7 +2159,7 @@ msgstr "" msgid "Allows skipping authorization if a user has active tokens." msgstr "" -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "Zaten kayıltı" @@ -2124,11 +2167,11 @@ msgstr "Zaten kayıltı" msgid "Already in the following Users ToDo list:{0}" msgstr "Zaten şu Kullanıcıların Yapılacaklar listesinde:{0}" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "Bağımlı para birimi alanı da ekleniyor {0}" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "Durum bağımlılığı alanı da ekleniyor {0}" @@ -2137,6 +2180,12 @@ msgstr "Durum bağımlılığı alanı da ekleniyor {0}" msgid "Alternative Email ID" msgstr "Alternatif E-posta Kimliği" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2188,10 +2237,8 @@ msgstr "Belge Adlandırma Ayarları" msgid "Amended Documents" msgstr "Değiştirilen Belgeler" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "Değiştirildi" @@ -2215,6 +2262,11 @@ msgstr "Değişikliğe İzin Verilmiyor" msgid "Amendment naming rules updated." msgstr "Değişiklik adlandırma kuralları güncellendi." +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 msgid "An error occurred while setting Session Defaults" msgstr "Oturum Varsayılanlarını ayarlarken bir hata oluştu" @@ -2308,10 +2360,12 @@ msgid "App Logo" msgstr "Uygulama Logosu" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2382,6 +2436,10 @@ msgstr "Uygulama Adı" msgid "Application Version" msgstr "Uygulama Versiyonu" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2391,7 +2449,7 @@ msgstr "Uygulandı" msgid "Apply" msgstr "Uygula" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "Arama Kuralı Uygula" @@ -2439,7 +2497,7 @@ msgstr "Kullanıcı Sahibi ise bu kuralı uygulayın" msgid "Apply to all Documents Types" msgstr "Tüm Belge Türlerine Uygula" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "Uygulanıyor: {0}" @@ -2472,7 +2530,11 @@ msgstr "Arşivlendi" msgid "Archived Columns" msgstr "Arşivlenmiş Sütunlar" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "Atamaları temizlemek istediğinizen emin misiniz?" @@ -2500,11 +2562,15 @@ 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:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:191 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:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "Yeni bir rapor oluşturmak istediğinizden emin misiniz?" @@ -2512,7 +2578,7 @@ msgstr "Yeni bir rapor oluşturmak istediğinizden emin misiniz?" msgid "Are you sure you want to merge {0} with {1}?" msgstr "{0} ile {1} öğesini birleştirmek istediğinizden emin misiniz?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "Devam etmek istediğinizden emin misiniz?" @@ -2567,6 +2633,12 @@ msgstr "Doküman paylaşımı devre dışı olduğundan lütfen atamadan önce o msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "Talebiniz doğrultusunda, hesabınız ve {1} e-postasıyla ilişkili {0} adresindeki verileriniz kalıcı olarak silinmiştir" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2576,7 +2648,7 @@ msgstr "Koşulu Ata" msgid "Assign To" msgstr "Ata" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "Ata" @@ -2639,6 +2711,11 @@ msgstr "Atanan" msgid "Assigned To/Owner" msgstr "Atanan/Sahip" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "Atanıyor..." @@ -2708,7 +2785,13 @@ msgstr "{0} ataması {1} tarafından kaldırıldı" msgid "Assignments" msgstr "Atamalar" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "Tabloda en az bir sütunun gösterilmesi zorunludur." @@ -2788,7 +2871,7 @@ msgstr "İlgili Alandaki Dosya Eki" msgid "Attached To Name" msgstr "İsme Bağlı" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "Bağlı Olduğu Ad, bir metin (string) veya tam sayı (integer) olmalıdır." @@ -2804,7 +2887,7 @@ msgstr "Belge Eki" msgid "Attachment Limit (MB)" msgstr "Dosya Sınırı (MB)" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "Ek dosya boyutu sınırına ulaşıldı" @@ -2822,15 +2905,15 @@ msgstr "Ek Kaldırıldı" #. Label of the attachments (Code) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json #: frappe/public/js/frappe/form/templates/form_sidebar.html:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "Belge Ekleri" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "QZ Tray’e Bağlanmaya Çalışılıyor…" -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "QZ Tray başlatılmaya çalışılıyor..." @@ -2853,6 +2936,10 @@ msgstr "Denetim İzi" msgid "Auth URL Data" msgstr "Kimlik doğrulama URL Verileri" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "" + #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authenticate as Service Principal" @@ -2870,8 +2957,8 @@ msgid "Authentication" msgstr "Kimlik Doğrulama" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " -msgstr "Kullanabileceğiniz Kimlik Doğrulama Uygulamaları şunlardır: " +msgid "Authentication Apps you can use are:" +msgstr "Kullanabileceğiniz Kimlik Doğrulama Uygulamaları şunlardır:" #: frappe/email/doctype/email_account/email_account.py:339 msgid "Authentication failed while receiving emails from Email Account: {0}." @@ -2984,11 +3071,11 @@ msgstr "Otomatik Tekrarla" msgid "Auto Repeat Day" msgstr "Otomatik Tekrar Günü" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "Otomatik Tekrarlama Günü {0} {1} tekrarlanmıştır." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "Otomatik Tekrar Belge Oluşturma Başarısız" @@ -2996,11 +3083,16 @@ msgstr "Otomatik Tekrar Belge Oluşturma Başarısız" msgid "Auto Repeat Schedule" msgstr "Otomatik Tekrar Programı" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "Bu belge için Otomatik Tekrar oluşturuldu" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "{0} için Otomatik Tekrarlama başarısız oldu" @@ -3044,7 +3136,7 @@ msgstr "Yorum yaptığınız belgeleri otomatik takip edin" msgid "Auto follow documents that you create" msgstr "Oluşturduğunuz belgeleri otomatik takip edin" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "Otomatik tekrarlama başarısız oldu. Lütfen sorunları giderdikten sonra otomatik tekrarı etkinleştirin." @@ -3092,7 +3184,7 @@ msgstr "Otomatik Bağlama yalnızca Gelen etkinleştirildiğinde etkinleştirile msgid "Automatically Assign Documents to Users" msgstr "Belgeleri Kullanıcılara Otomatik Olarak Ata" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "Son veriler için otomatik olarak bir filtre uyguladı. Bu davranışı liste görünümü ayarlarından devre dışı bırakabilirsiniz." @@ -3106,11 +3198,6 @@ msgstr "Hesabı otomatik olarak sil" msgid "Automation" msgstr "Otomasyon" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "Profil Resmi" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3382,8 +3469,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:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "Buna göre" @@ -3500,10 +3587,8 @@ msgstr "Binary Günlük Kaydı" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "Hakkında" @@ -3533,64 +3618,6 @@ msgstr "" msgid "Blocked" msgstr "Engellenmiş" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "Blog" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "Blog Kategorisi" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "Blog Girişi" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "Blog Tanıtımı" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "Blog Yazısı" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "Blog Ayarları" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "Blog Başlığı" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "Blog Yazarı" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3688,13 +3715,6 @@ msgstr "Marka, araç çubuğunun sol üst köşesinde görünen şeydir. Eğer b msgid "Breadcrumbs" msgstr "" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "Kategoriye göre görüntüle" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3752,15 +3772,15 @@ msgstr "Toplu Silme" msgid "Bulk Edit" msgstr "Toplu Düzenleme" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "Toplu {0} Düzenleme" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" msgstr "Toplu İşlem Başarısız Oldu" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "Toplu İşlem Başarılı" @@ -3775,7 +3795,7 @@ msgstr "Toplu PDF Dışa Aktarma" msgid "Bulk Update" msgstr "Toplu Güncelleme" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "Toplu işlemler yalnızca 500 belgeye kadar izin verilir." @@ -3787,7 +3807,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:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "Toplu {0} arka planda sıraya alındı." @@ -3917,16 +3937,6 @@ msgstr "Vurgulamak istediğiniz öğe için CSS seçici." msgid "CSV" msgstr "CSV Dosyası" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3977,11 +3987,6 @@ msgstr "" msgid "Call To Action URL" msgstr "" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -3999,7 +4004,7 @@ msgid "Camera" msgstr "Kamera" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -4035,7 +4040,7 @@ msgstr "Yazma" 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:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "" @@ -4059,14 +4064,15 @@ msgstr "{0} mevcut olmadığı için {0} adresini {1} olarak yeniden adlandıram #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "İptal" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "İptal" @@ -4084,16 +4090,18 @@ msgstr "Tümünü İptal Et" msgid "Cancel All Documents" msgstr "Tüm Belgeleri İptal Et" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "{0} belge iptal edilsin mi?" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -4131,11 +4139,11 @@ msgstr "Değerler Getirilemiyor" msgid "Cannot Remove" msgstr "Kaldırılamıyor" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "Belge Gönderildikten Sonra Güncelleme Yapılamaz" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "Dosya yoluna erişilemiyor {0}" @@ -4143,7 +4151,7 @@ msgstr "Dosya yoluna erişilemiyor {0}" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "{0} Durumundan {1} Durumuna geçerken kaydetmeden önce iptal edilemez" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "Göndermeden önce iptal edilemez. Geçişe bakın {0}" @@ -4151,11 +4159,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:1013 +#: frappe/model/document.py:1017 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:1027 +#: frappe/model/document.py:1031 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" @@ -4163,11 +4171,11 @@ msgstr "Docstatus (Doctype Durumu) 1 değerinden (Gönderildi) 0 değerine (Tasl msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "İptal Edilen Belgenin durumu değiştirilemiyor ({0} Durumu)" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 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:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "Özelleştir Formunda otomatik artırma otomatik adı olarak değiştirilemiyor" @@ -4179,11 +4187,11 @@ msgstr "Alt belgeye karşı {0} dosyası oluşturulamaz: {1}" msgid "Cannot create private workspace of other users" msgstr "Diğer kullanıcılar adına özel çalışma alanı oluşturulamıyor" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "Ana Sayfa ve Ekler klasörleri silinemez" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 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ş." @@ -4218,7 +4226,7 @@ msgstr "Sistem tarafından oluşturulan alan silinemez {0}. Bun msgid "Cannot delete {0}" msgstr "{0} silinemiyor" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" msgstr "{0} öğesinin alt elemanları olduğu için silme işlemi yapılamaz." @@ -4226,7 +4234,7 @@ msgstr "{0} öğesinin alt elemanları olduğu için silme işlemi yapıl msgid "Cannot edit Standard Dashboards" msgstr "Standart Panolar düzenlenemez" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "Standart Bildirim düzenlenemiyor. Düzenlemek için lütfen bunu devre dışı bırakın ve çoğaltın" @@ -4238,7 +4246,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:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "İptal edilen belge düzenlenemez" @@ -4246,8 +4254,8 @@ msgstr "İptal edilen belge düzenlenemez" msgid "Cannot edit filters for standard charts" msgstr "Standart grafikler için filtreleri düzenleyemezsiniz." -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "Standart Veri Kartları için filtreler düzenlenemez" @@ -4255,27 +4263,27 @@ msgstr "Standart Veri Kartları için filtreler düzenlenemez" msgid "Cannot edit standard fields" msgstr "Standart alanlar düzenlenemez" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "Gönderilebilir olmayan bir doküman türü için {0} etkinleştirilemez" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "{} dosyası diskte bulunamadı" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 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:844 +#: frappe/printing/page/print/print.js:884 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:1132 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "İptal edilen belgeye bağlantı verilemiyor: {0}" @@ -4287,11 +4295,11 @@ 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:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "Satır taşınamıyor" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "ID Alanı Kaldırılamaz" @@ -4299,7 +4307,7 @@ msgstr "ID Alanı Kaldırılamaz" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "'Yalnızca Oluşturucu' izni ayarlanmışsa 'Rapor' izni ayarlanamaz" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "Belge Türü {1} üzerinde {0} olayı için Bildirim ayarlanamıyor" @@ -4316,11 +4324,11 @@ msgstr "{0} gönderilemiyor." msgid "Cannot update {0}" msgstr "{0} güncellenemiyor" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" -msgstr "Alt sorguyu şu sırayla kullanamazsınız" +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." +msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "{0} sıraya/gruplamaya göre kullanılamaz" @@ -4388,15 +4396,6 @@ msgstr "Ortala" 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." -#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "Zincir Bütünlüğü" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4434,9 +4433,8 @@ msgstr "Yazdırma Biçimini Değiştir" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
    \n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " -msgstr "Mevcut bir serinin başlangıç / mevcut isimlendirme serisini değiştirin.
    \n\n" -"Uyarı: Sayaçların yanlış güncellenmesi belgelerin oluşturulmasını engelleyebilir." +"Warning: Incorrectly updating counters can prevent documents from getting created." +msgstr "" #. Label of the changed_at (Datetime) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -4505,7 +4503,7 @@ msgstr "Grafik Kaynağı" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "Grafik Türü" @@ -4538,7 +4536,7 @@ msgstr "Sohbet" msgid "Check" msgstr "Kontrol et" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "" @@ -4546,7 +4544,7 @@ msgstr "" msgid "Check columns to select, drag to set order." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "Daha fazla bilgi için Hata Günlüğünü kontrol edin: {0}" @@ -4587,11 +4585,6 @@ msgstr "Bunu işaretlediğinizde sayfa web sitenizde yayınlanacak ve herkes tar msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "Bunu işaretlediğinizde bu sayfada çalışacak özel javascript yazabileceğiniz bir metin alanı göreceksiniz." -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "Checksum Sürümü" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "Alt DocType'lara izin verilmiyor" @@ -4601,17 +4594,17 @@ msgstr "Alt DocType'lara izin verilmiyor" msgid "Child Doctype" msgstr "Alt DocType" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "Alt Tablolar, diğer DocType'larda Tablo olarak gösterilir." -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4640,6 +4633,7 @@ 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." #. 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 msgid "City" msgstr "Şehir" @@ -4654,7 +4648,7 @@ msgstr "Şehir" msgid "Clear" msgstr "Açık" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "Temizle ve Şablon Ekle" @@ -4666,7 +4660,7 @@ msgstr "Temizle ve Şablon Ekle" msgid "Clear All" msgstr "Temizle" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "Atamayı Temizle" @@ -4692,7 +4686,7 @@ msgstr "Gün Sayısı" msgid "Clear User Permissions" msgstr "Kullanıcı İzinlerini Temizle" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "E-posta mesajını temizleyin ve şablonu ekleyin" @@ -4704,11 +4698,15 @@ msgstr "Yayınlanan sayfalar için geçmişte olamayacağı için bitiş tarihi msgid "Click On Customize to add your first widget" msgstr "İlk Bileşeni eklemek için Özelleştir'e tıklayın." -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "Buraya tıklayın" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "Seçmek için bir dosyaya tıklayın." @@ -4739,24 +4737,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "Düzenlemek için tabloya tıklayın" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "Dinamik Filtreleri Ayarlamak için Tıklayın" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "Filtreleri Ayarlamak İçin Tıklayın" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "Sıralama Yapmak İçin Tıklayın" @@ -4934,7 +4932,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "Daralt" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "Tümünü Daralt" @@ -4989,7 +4987,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:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5045,11 +5043,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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "Sütun Genişliği" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "Sütun genişliği sıfır olamaz." @@ -5076,7 +5074,7 @@ msgstr "Sütunlar" msgid "Columns / Fields" msgstr "Sütunlar / Alanlar" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "Sütun Ayarlaması" @@ -5118,16 +5116,6 @@ msgstr "Yorum Türü" msgid "Comment can only be edited by the owner" msgstr "Yorum yalnızca sahibi tarafından düzenlenebilir" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "Yorum Sayısı Limiti" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "Saatlik yorum limiti" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "" @@ -5135,7 +5123,7 @@ msgstr "" #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "Yorumlar" @@ -5144,7 +5132,7 @@ msgstr "Yorumlar" msgid "Comments and Communications will be associated with this linked document" msgstr "Yorumlar ve Haberleşmeler bağlantılı belgeyle ilişkilendirilecek." -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "Yorumlarda bağlantı veya e-posta adresi bulunamaz" @@ -5196,7 +5184,7 @@ msgstr "İletişim Türü" #: frappe/integrations/frappe_providers/frappecloud_billing.py:32 msgid "Communication secret not set" -msgstr "" +msgstr "İletişim sırrı ayarlanmadı" #. Name of a DocType #: frappe/website/doctype/company_history/company_history.json @@ -5216,12 +5204,12 @@ msgid "Company Name" msgstr "Şirket Adı" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "Versiyonları Karşılaştır" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "Derleme uyarısı" @@ -5301,8 +5289,8 @@ msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5316,6 +5304,11 @@ msgstr "Koşul" msgid "Condition JSON" msgstr "Koşul JSON" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5341,11 +5334,11 @@ msgstr "" msgid "Configuration" msgstr "Yapılandırma" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "Grafiği Yapılandır" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "Sütunları Yapılandır" @@ -5372,7 +5365,7 @@ msgstr "Değiştirilen belgelerin nasıl isimlendirileceğini yapılandırın.here." msgstr "Modül kurulumunu tamamladığınız için tebrikler. Daha fazla bilgi edinmek istiyorsanız buradakibelgelere başvurabilirsiniz." -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "Bağlan {}" @@ -5436,8 +5429,8 @@ msgstr "Bağlı Uyulamalar" msgid "Connected User" msgstr "Bağlı Kullanıcılar" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "" @@ -5488,6 +5481,10 @@ msgstr "Kısıtlamalar" msgid "Contact" msgstr "Kişi" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
    {0}" +msgstr "" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5545,15 +5542,13 @@ msgstr "{0} güvenlik düzeltmesi içerir" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5561,24 +5556,12 @@ msgstr "{0} güvenlik düzeltmesi içerir" msgid "Content" msgstr "İçerik" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "İçerik (HTML)" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "İçerik (Markdown)" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "Hash Doğrulaması" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "İçerik Türü" @@ -5646,7 +5629,7 @@ msgstr "Bağlantıyı Kopyala" msgid "Copy embed code" msgstr "Gömülü Kodu Kopyala" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "Hatayı Kopyala" @@ -5654,12 +5637,16 @@ msgstr "Hatayı Kopyala" msgid "Copy to Clipboard" msgstr "Panoya Kopyala" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "" + #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" msgstr "Telif Hakkı" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "Çekirdek Doctype'lar düzenlenemez." @@ -5667,7 +5654,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:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "Doğru versiyon:" @@ -5675,7 +5662,7 @@ msgstr "Doğru versiyon:" msgid "Could not connect to outgoing email server" msgstr "Giden e-posta sunucusuna bağlanamadı" -#: frappe/model/document.py:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "{0} bulunamadı." @@ -5683,15 +5670,15 @@ msgstr "{0} bulunamadı." msgid "Could not map column {0} to field {1}" msgstr "{0} sütunu {1} alanıyla eşleştirilemedi" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " -msgstr "Başlatılamadı: " +msgid "Could not start up:" +msgstr "Başlatılamadı:" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "Kaydedilemedi, lütfen girdiğiniz verileri kontrol edin" @@ -5736,13 +5723,14 @@ msgstr "Sayaç" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "Ülke" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "Ülke Kodu Gerekli" @@ -5774,13 +5762,13 @@ msgstr "Alacak" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "Oluştur" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "Oluştur & Devam Et" @@ -5794,7 +5782,7 @@ 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:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "Grafik Oluştur" @@ -5828,12 +5816,12 @@ msgstr "Kayıt Oluştur" msgid "Create New" msgstr "Yeni Oluştur" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "Yeni Oluştur" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "Yeni DocType Oluştur" @@ -5841,7 +5829,7 @@ msgstr "Yeni DocType Oluştur" msgid "Create New Kanban Board" msgstr "Yeni Kanban Panosu Oluştur" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "Kullanıcı E-postası Oluştur" @@ -5853,7 +5841,7 @@ 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:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "Yeni Oluştur ..." @@ -5861,11 +5849,11 @@ msgstr "Yeni Oluştur ..." msgid "Create a new record" msgstr "Yeni Kayıt Oluştur" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "Yeni {0} Oluştur" @@ -5881,7 +5869,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:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "{0} Oluştur" @@ -5891,7 +5879,7 @@ msgstr "İş Akışı Oluşturucu'yu kullanarak iş akışınızı görsel olara #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "Oluşturdu" @@ -5907,7 +5895,7 @@ msgstr "Oluşturulma Zamanı" msgid "Created By" msgstr "Oluşturan" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "{0} özel alanı {1} için oluşturuldu." @@ -5919,7 +5907,7 @@ msgstr "{0} özel alanı {1} için oluşturuldu." msgid "Created On" msgstr "Oluşturulma Zamanı" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "{0} Oluşturuluyor" @@ -6228,7 +6216,7 @@ msgstr "" #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "Özel" @@ -6256,14 +6244,14 @@ msgstr "Özelleştirmeler Sıfırlandı" msgid "Customizations for {0} exported to:
    {1}" msgstr "{0} için özelleştirmeler şuraya aktarıldı:
    {1}" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "Özelleştir" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "Özelleştir" @@ -6282,7 +6270,7 @@ msgstr "Gösterge Paneli Özelleştir" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "Form Özelleştir" @@ -6360,7 +6348,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:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "Günlük Etkinliklerin Aynı Gün Sonlanması Gerekmektedir." @@ -6407,7 +6395,7 @@ msgstr "Koyu Tema" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "Gösterge Paneli" @@ -6466,7 +6454,6 @@ msgstr "Gösterge Paneli" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6479,7 +6466,6 @@ msgstr "Gösterge Paneli" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6515,7 +6501,7 @@ msgstr "Veri İçe Aktarma Günlüğü" msgid "Data Import Template" msgstr "Veri İçe Aktarma Şablonu" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "Veri Çok Uzun" @@ -6546,7 +6532,7 @@ msgstr "Veritabanı Satır Boyutu Kullanımı" msgid "Database Storage Usage By Tables" msgstr "Tablolara Göre Veritabanı Depolama Kullanımı" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "Veritabanı Tablo Satır Boyutu Sınırı" @@ -6684,11 +6670,11 @@ msgstr "Sayın {0}" msgid "Debug Log" msgstr "Hata Ayıklama Günlüğü" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "Tırnak işareti Sayısal Olmayan olarak ayarlandığında Ondalık Ayırıcı '.' olmalıdır" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "Ondalık Ayırıcı tek bir karakter olmalıdır" @@ -6850,11 +6836,11 @@ msgstr "Varsayılan Çalışma Alanı" msgid "Default display currency" msgstr "Varsayılan Olarak Görüntülenecek Para Birimi" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 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." @@ -6888,6 +6874,12 @@ msgstr "Varsayılanlar Güncellendi" msgid "Defines actions on states and the next step and allowed roles." msgstr "Durumlara ilişkin eylemleri, sonraki adımı ve izin verilen rolleri tanımlar." +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6905,22 +6897,27 @@ msgstr "Gecikti" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/user_document_type/user_document_type.json #: frappe/core/doctype/user_permission/user_permission_list.js:189 -#: frappe/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "Sil" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "Sil" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "Sil" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "Hesabı Sil" @@ -6929,6 +6926,12 @@ msgstr "Hesabı Sil" 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 +msgid "Delete Background Exported Reports After (Hours)" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6938,7 +6941,7 @@ msgstr "Sütun Sil" msgid "Delete Data" msgstr "Verileri Sil" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "Kanban Panosunu Sil" @@ -6952,7 +6955,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "Sekmeyi Sil" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "Sil ve Yeni Oluştur" @@ -6961,7 +6964,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "Sütunu sil" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "Yorumu sil?" @@ -6994,12 +6997,12 @@ msgstr "Sekmeyi Sil" msgid "Delete this record to allow sending to this email address" msgstr "Bu kaydı silin ve bu e-posta adresine gönderilmesine izin verin" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 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:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "{0} öğesini kalıcı olarak sil?" @@ -7035,11 +7038,15 @@ msgstr "Silinen Belgeler" msgid "Deleted Name" msgstr "Silinen İsim" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "Tüm belgeler başarıyla silindi" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "Silindi!" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "{0} Siliniyor" @@ -7054,8 +7061,8 @@ msgstr "Siliniyor {0}..." #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " -msgstr "Silme Adımları " +msgid "Deletion Steps" +msgstr "Silme Adımları" #: frappe/core/doctype/page/page.py:110 #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 @@ -7071,7 +7078,7 @@ msgstr "Ayırıcı Seçenekleri" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "Sınırlayıcı algılama başarısız oldu. Özel sınırlayıcıları etkinleştirmeyi deneyin ve sınırlayıcı seçeneklerini verilerinize göre ayarlayın." -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "Ayırıcı tek bir karakter olmalıdır" @@ -7098,7 +7105,7 @@ msgstr "Departman" msgid "Dependencies" msgstr "Bağımlılıklar" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "Bağımlılıklar ve Lisanslar" @@ -7133,7 +7140,6 @@ msgstr "" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -7154,7 +7160,6 @@ msgstr "" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -7164,11 +7169,6 @@ msgstr "" msgid "Description" msgstr "Açıklama" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "Listeleme sayfası için açıklama, düz metin olarak, sadece birkaç satır. (maksimum 200 karakter)" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -7252,7 +7252,7 @@ msgstr "Masaüstü Simgesi zaten mevcut" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "Ayrıntılar" @@ -7299,7 +7299,7 @@ msgstr "Otomatik Yenilemeyi Kapat" #. 'List View Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json msgid "Disable Automatic Recency Filters" -msgstr "" +msgstr "Otomatik Tekrarlanma Filtrelerini Devre Dışı Bırak" #. Label of the disable_change_log_notification (Check) field in DocType #. 'System Settings' @@ -7313,11 +7313,6 @@ msgstr "Değişiklik Günlüğü Bildirimini Devre Dışı Bırak" msgid "Disable Comment Count" msgstr "Yorum Sayısını Gösterme" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "Yorumları Devre Dışı Bırak" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7335,11 +7330,6 @@ msgstr "Sayıyı Gösterme" msgid "Disable Document Sharing" msgstr "Döküman Paylaşımını Devre Dışı Bırak" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "Beğenileri Devre Dışı Bırak" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "Raporu Kapat" @@ -7349,6 +7339,11 @@ msgstr "Raporu Kapat" msgid "Disable SMTP server authentication" msgstr "SMTP sunucusu kimlik doğrulamasını devre dışı bırakın" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7394,7 +7389,6 @@ msgstr "Yeni Kayıtlara İzin Verme" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7409,7 +7403,6 @@ msgstr "Yeni Kayıtlara İzin Verme" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "Devre dışı" @@ -7420,7 +7413,7 @@ msgstr "Otomatik Yanıt Devre Dışı" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "Vazgeç" @@ -7438,7 +7431,7 @@ msgstr "Vazgeç" msgid "Discard {0}" msgstr "{0} Vazgeç" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "Vazgeç" @@ -7461,7 +7454,7 @@ msgstr "Yanıt" msgid "Discussion Topic" msgstr "Tartışma Konusu" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7497,19 +7490,23 @@ msgstr "Ayırıcı" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " -msgstr "Yeni Kullanıcı Oluşturmayın " +msgid "Do Not Create New User" +msgstr "Yeni Kullanıcı Oluşturmayın" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "E-postası olan kullanıcı sistemde mevcut değilse yeni kullanıcı oluşturmayın" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 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 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "Hala devam etmek istiyor musunuz?" @@ -7600,7 +7597,7 @@ msgstr "" msgid "DocType" msgstr "DocType" -#: frappe/core/doctype/doctype/doctype.py:1577 +#: frappe/core/doctype/doctype/doctype.py:1578 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" @@ -7647,11 +7644,11 @@ msgstr "DocType Durumu" msgid "DocType View" msgstr "DocType Görünümü" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "DocType birleştirilemiyor" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "DocType yalnızca Yönetici tarafından yeniden adlandırılabilir" @@ -7660,7 +7657,7 @@ msgstr "DocType yalnızca Yönetici tarafından yeniden adlandırılabilir" msgid "DocType is a Table / Form in the application." msgstr "DocType uygulamadaki bir Tablo veya Formdur." -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "DocType, seçilen Doc Event için Gönderilebilir olmalıdır" @@ -7693,7 +7690,7 @@ msgstr "DocType {0} mevcut değil." msgid "DocType {} not found" msgstr "DocType {} bulunamadı" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "DocType adı boşluk ile başlamamalı veya bitmemelidir" @@ -7707,7 +7704,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:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "Doctype adı {0} karakterleriyle sınırlıdır ({1})" @@ -7769,31 +7766,29 @@ msgstr "Belge Bağlama" msgid "Document Links" msgstr "Döküman Bağlantıları" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 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:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 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:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 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:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7935,13 +7930,13 @@ msgstr "Belge Başlığı" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "Belge Türü" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 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" @@ -7978,7 +7973,7 @@ msgid "Document Types and Permissions" msgstr "Belge Türleri ve İzinler" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "Belge Kilidi Açıldı" @@ -7986,15 +7981,15 @@ msgstr "Belge Kilidi Açıldı" 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:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "Belge iptal edildi" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "Belge Gönderildi" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "Belge taslak durumundadır" @@ -8136,13 +8131,13 @@ msgstr "Donut" msgid "Double click to edit label" msgstr "Etiketi düzenlemek için çift tıklayın" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "İndir" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "İndir" @@ -8169,7 +8164,7 @@ msgstr "İndirme linki" msgid "Download PDF" msgstr "PDF İndir" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "Raporu İndir" @@ -8232,7 +8227,7 @@ msgstr "Eklemek istediğiniz öğeleri kenar çubuğundan sürükleyin. Onları msgid "Drag to add state" msgstr "Durum eklemek için sürükleyin" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "Dosyaları buraya sürükleyin" @@ -8265,7 +8260,7 @@ msgstr "Yinelenen Giriş" msgid "Duplicate Filter Name" msgstr "Yinelenen Filtre Adı" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "Çoklu İsim" @@ -8364,17 +8359,17 @@ msgstr "ESC" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8382,7 +8377,7 @@ msgstr "ESC" msgid "Edit" msgstr "Düzenle" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "Düzenle" @@ -8392,7 +8387,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "Düzenle" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "Düzenle" @@ -8421,7 +8416,7 @@ msgstr "HTML Kodunu Düzenle" msgid "Edit DocType" msgstr "DocType Düzenle" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "DocType Düzenle" @@ -8439,7 +8434,7 @@ msgstr "Filtreleri Düzenle" msgid "Edit Footer" msgstr "Altbilgiyi Düzenle" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "Formatı Düzenle" @@ -8524,7 +8519,7 @@ msgstr "{0} DocType'ı Düzenle" msgid "Edit to add content" msgstr "İçerik eklemek için düzenle" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "Yanıtınızı düzenleyin" @@ -8533,7 +8528,7 @@ msgstr "Yanıtınızı düzenleyin" msgid "Edit your workflow visually using the Workflow Builder." msgstr "İş Akışı Oluşturucu'yu kullanarak iş akışınızı görsel olarak düzenleyin." -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "{0} Düzenle" @@ -8541,7 +8536,7 @@ msgstr "{0} Düzenle" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "Düzenlenebilir Tablo" @@ -8580,11 +8575,14 @@ msgstr "Element Seçici" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8593,6 +8591,7 @@ msgstr "Element Seçici" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8602,6 +8601,8 @@ msgstr "Element Seçici" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "E-posta" @@ -8633,7 +8634,7 @@ msgstr "E-posta Hesabı Devre Dışı Bırakıldı." msgid "Email Account Name" msgstr "E-posta Hesap Adı" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "E-posta Hesabı birden çok kez eklendi" @@ -8721,6 +8722,7 @@ msgid "Email IDs" msgstr "E-Posta ID'leri" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "E-Posta ID" @@ -8764,10 +8766,10 @@ msgstr "E-posta Yeniden Deneme Limiti" msgid "Email Rule" msgstr "E-posta Kuralı" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" -msgstr "E-posta Gönderildi" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" +msgstr "E-posta Gönderim Zamanı" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType @@ -8832,11 +8834,11 @@ msgstr "E-posta spam olarak işaretlendi" msgid "Email has been moved to trash" msgstr "E-posta çöp kutusuna taşındı" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "Gönderilmez Email {0} (devre dışı / üyelikten)" @@ -8875,7 +8877,7 @@ msgstr "E-postalar bir sonraki olası iş akışı eylemleriyle birlikte gönder msgid "Embed code copied" msgstr "Gömülü kod kopyalandı" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8883,7 +8885,7 @@ msgstr "" msgid "Empty column" msgstr "Boş sütun" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -8902,7 +8904,7 @@ msgstr "Etkinleştir" msgid "Enable Address Autocompletion" msgstr "Adres Otomatik Tamamlamayı Etkinleştir" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "Formu Özelleştir'de {0} doctype için Otomatik Tekrara İzin Ver'i etkinleştirin" @@ -8928,11 +8930,6 @@ msgstr "Yorumları Etkinleştir" msgid "Enable Dynamic Client Registration" msgstr "" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "E-posta Bildirimini Etkinleştir" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -9026,11 +9023,6 @@ msgstr "Güvenliği Etkinleştir" msgid "Enable Social Login" msgstr "Sosyal Medya ile Girişi Etkinleştir" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "Sosyal Medya Paylaşımını Etkinleştir" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "Sayfa Görüntülemelerini İzlemeyi Etkinleştir" @@ -9038,7 +9030,7 @@ msgstr "Sayfa Görüntülemelerini İzlemeyi Etkinleştir" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "2 Adımlı Doğrulamayı Aç" @@ -9050,12 +9042,6 @@ msgstr "Standart bir Yazdırma Şablonu oluşturmak için geliştirici modunu et msgid "Enable developer mode to create a standard Web Template" msgstr "Standart bir Yazdırma Şablonu oluşturmak için geliştirici modunu etkinleştirin" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "Blog Yazınıza gelen herhangi bir yorum veya beğeni için e-posta bildirimini etkinleştirin." - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -9078,6 +9064,7 @@ msgstr "Uygulama içi web sitesi izlemeyi etkinleştirin" #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -9090,6 +9077,7 @@ msgstr "Uygulama içi web sitesi izlemeyi etkinleştirin" #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "Etkin" @@ -9115,15 +9103,11 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "Gelen bir e-posta hesabında otomatik yanıtı etkinleştirmek, senkronize edilen tüm e-postalara otomatik yanıtlar gönderecektir. Devam etmek istiyor musunuz?" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "Firebase Cloud Messaging aracılığıyla tüm yüklü uygulamalar için anında bildirimler göndermek üzere sitenizi merkezi bir geçiş sunucusuna kaydeder. Bu sunucu yalnızca kullanıcı belirteçlerini ve hata günlüklerini saklar ve hiçbir mesaj kaydedilmez." - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " -msgstr "Firebase Cloud Messaging aracılığıyla tüm yüklü uygulamalar için anında bildirimler göndermek üzere sitenizi merkezi bir geçiş sunucusuna kaydeder. Bu sunucu yalnızca kullanıcı belirteçlerini ve hata günlüklerini saklar ve hiçbir mesaj kaydedilmez. " +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." +msgstr "Firebase Cloud Messaging aracılığıyla tüm yüklü uygulamalar için anında bildirimler göndermek üzere sitenizi merkezi bir geçiş sunucusuna kaydeder. Bu sunucu yalnızca kullanıcı belirteçlerini ve hata günlüklerini saklar ve hiçbir mesaj kaydedilmez." #. Description of the 'Queue in Background (BETA)' (Check) field in DocType #. 'DocType' @@ -9139,11 +9123,11 @@ msgstr "Etkinleştirilirse belgeler arka planda gönderilir." msgid "Encrypt Backups" msgstr "Yedeklemeleri Şifrele" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "Şifreleme anahtarı geçersiz formatta!" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "Şifreleme anahtarı geçersiz! Lütfen site_config.json dosyasını kontrol edin." @@ -9155,7 +9139,7 @@ msgstr "Bitir" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -9171,6 +9155,10 @@ msgstr "Bitiş Tarihi Alanı" msgid "End Date cannot be before Start Date!" msgstr "Bitiş Tarihi, Başlangıç Tarihi'nden önce olamaz!" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9215,7 +9203,7 @@ msgstr "Google Ayarları'na İstemci Kimliği ve İstemci Gizli Anahtarını gir msgid "Enter Code displayed in OTP App." msgstr "OTP Uygulamasında görüntülenen Kodu girin." -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "E-Posta alıcılarını girin" @@ -9285,10 +9273,17 @@ msgstr "Eşittir" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9298,7 +9293,7 @@ msgstr "Eşittir" msgid "Error" msgstr "Hata" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "Hata" @@ -9318,7 +9313,7 @@ msgstr "Hata Günlükleri" msgid "Error Message" msgstr "Hata Mesajı" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 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." @@ -9346,9 +9341,9 @@ msgstr "İstemci Komut Dosyasında Hata." msgid "Error in Header/Footer Script" msgstr "Üstbilgi/Altbilgi Kodunda Hata" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "Hata Bildirimi" @@ -9368,19 +9363,19 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "E-posta hesabına bağlanırken hata oluştu {0}" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "{0} Bildirim değerlendirilirken hata oluştu. Lütfen şablonunuzu düzeltin." -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "Hata: {0} tablosunda veri eksik" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "Hata: {0} için değer eksik: {1}" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "Hata: {0} Satır #{1}: {2} için değer eksik" @@ -9437,7 +9432,7 @@ msgstr "Etkinlik Türü" msgid "Events" msgstr "Etkinlikler" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "Bugünün Takvimindeki Etkinlikler" @@ -9521,7 +9516,7 @@ msgstr "Çalıştır" msgid "Execute Console script" msgstr "Konsol Betiğini Çalıştır" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "" @@ -9529,7 +9524,7 @@ msgstr "" msgid "Executing..." msgstr "Çalıştırılıyor..." -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "Oluşturma Süresi: {0} sn" @@ -9555,12 +9550,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "Genişlet" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "Tümünü Genişlet" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9588,7 +9583,9 @@ msgid "Expire Notification On" msgstr "Sona Erme Bildirimi Açık" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "Süresi Doldu" @@ -9616,13 +9613,13 @@ msgstr "QR Kod Resim Sayfasının Sona Erme Süresi" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "Dışarı Aktar" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "Dışarı Aktar" @@ -9659,7 +9656,7 @@ msgstr "Dışa Aktar" msgid "Export Import Log" msgstr "İçeri ve Dışarı Aktarma Günlüğü" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "Raporu Dışarı Aktar: {0}" @@ -9668,11 +9665,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:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 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:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "Tüm {0} satırları dışarı aktarılacak?" @@ -9680,6 +9677,10 @@ msgstr "Tüm {0} satırları dışarı aktarılacak?" msgid "Export as zip" msgstr "Zip olarak dışa aktar" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "İhracata izin verilmiyor. Vermek {0} rolü gerekir." @@ -9785,7 +9786,7 @@ msgstr "Başarısız İşler" msgid "Failed Logins (Last 30 days)" msgstr "Başarısız Girişler (Son 30 gün)" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "Başarısız İşlemler" @@ -9802,7 +9803,7 @@ msgstr "Parola değiştirme başarısız oldu." msgid "Failed to complete setup" msgstr "Kurulum tamamlanamadı" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "" @@ -9811,15 +9812,15 @@ msgstr "" msgid "Failed to connect to server" msgstr "Sunucuya bağlanılamadı" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "{0} belge silinemedi: {1}" @@ -9827,8 +9828,8 @@ msgstr "{0} belge silinemedi: {1}" msgid "Failed to enable scheduler: {0}" msgstr "Zamanlayıcı etkinleştirilemedi: {0}" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "Koşullar değerlendirilemedi: {}" @@ -9844,7 +9845,7 @@ msgstr "Seriden adlar oluşturulamadı" msgid "Failed to generate preview of series" msgstr "Serinin önizlemesi oluşturulamadı" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "{1} ile {0} komutu için geçerli method alınamadı" @@ -9864,11 +9865,11 @@ msgstr "Sanal belge türü {} içe aktarılamadı, denetleyici dosyası mevcut m msgid "Failed to optimize image: {0}" msgstr "Görüntü optimize edilemedi: {0}" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "Mesaj oluşturulamadı: {}" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "Konu işlenemedi: {}" @@ -9918,12 +9919,6 @@ msgstr "Favicon" msgid "Fax" msgstr "Faks" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "Öne Çıkan" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "Geri Bildirim" @@ -9981,17 +9976,17 @@ msgstr "Varsayılan Global Arama belgeleri getiriliyor." #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "Alan" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 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:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "\"Web Sitesi Arama Alanı\" ayarlanmışsa \"başlık\" alanı zorunludur." @@ -10004,7 +9999,7 @@ msgstr "\"Değer\" alanı zorunludur. Lütfen güncellenecek değeri belirtin" msgid "Field Description" msgstr "Alan Açıklaması" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "Alan Eksik" @@ -10034,7 +10029,7 @@ msgstr "Alan Şablonu" msgid "Field Type" msgstr "Alan Türü" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "Sorgu sırasında alan yetkilendirilmesinde hata oluştu" @@ -10060,11 +10055,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/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "{0} alanı bulunamadı." -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "{1} belgesindeki {0} alanı ne bir Cep telefonu numarası alanı ne de bir Müşteri veya Kullanıcı bağlantısıdır" @@ -10082,20 +10077,20 @@ 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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "Alan" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 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:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "Otomatik adlandırmayı etkinleştirmek için {0} adlı bir alan bulunmalıdır" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "Alan ismi 64 karakterle sınırılıdır ({0})" @@ -10111,15 +10106,15 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "Alan ismi {0} kısıtlanmıştır" @@ -10142,7 +10137,7 @@ msgstr "Alan ismi {0} kısıtlanmıştır" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -10155,7 +10150,7 @@ msgstr "Alanlar" msgid "Fields Multicheck" msgstr "Alanlar Çoklu Kontrol" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "Dosya için `file_name` veya `file_url` alanları ayarlanmalıdır" @@ -10163,7 +10158,7 @@ msgstr "Dosya için `file_name` veya `file_url` alanları ayarlanmalıdır" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10191,7 +10186,7 @@ msgstr "AlanTipi" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10204,7 +10199,7 @@ msgstr "" msgid "File" msgstr "Dosya" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "" @@ -10257,7 +10252,7 @@ msgstr "Dosya Adresi" msgid "File backup is ready" msgstr "Dosya yedeklemesi hazır" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "Dosya adı {0} olamaz" @@ -10265,7 +10260,7 @@ msgstr "Dosya adı {0} olamaz" msgid "File not attached" msgstr "Dosya eklenmedi" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "Dosya boyutu izin verilen maksimum boyutu aştı {0} MB" @@ -10274,11 +10269,11 @@ msgstr "Dosya boyutu izin verilen maksimum boyutu aştı {0} MB" msgid "File too big" msgstr "Dosya boyutu çok büyük" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "{0} dosya türüne izin verilmiyor" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "{0} dosyası mevcut değil" @@ -10292,10 +10287,10 @@ msgstr "Dosyalar" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10332,11 +10327,11 @@ msgstr "Filtre Adı" msgid "Filter Values" msgstr "Filtre Değerleri" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10354,7 +10349,6 @@ msgstr "Filtre" msgid "Filtered Records" msgstr "Filtrelenmiş Kayıtlar" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "\"{0}\" tarafından filtrelendi" @@ -10369,7 +10363,9 @@ msgstr "\"{0}\" tarafından filtrelendi" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10391,6 +10387,11 @@ msgstr "Filtre Yapılandırması" msgid "Filters Display" msgstr "Filtreler Ekranı" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10403,11 +10404,11 @@ msgstr "JSON Filtreleri" msgid "Filters Section" msgstr "Filtre Seçimi" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "Filtreler {0} için Uygulandı" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "Filtreler kaydedildi" @@ -10420,18 +10421,18 @@ msgstr "Filtrelere filtreleriaracılığıyla erişilebilir.
    " msgstr "{0} seçeneği devre dışı bırakıldığı için altbilgi görünmeyebilir" @@ -10744,8 +10745,8 @@ msgstr "Kullanıcı" msgid "For Value" msgstr "Değer İçin" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 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." @@ -10771,12 +10772,6 @@ msgstr "Örnek: {} Aktif" 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" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "Daha Fazla Bilgi İçin, Tıklayın." - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "Daha fazla bilgi için, {0}." @@ -10791,7 +10786,7 @@ msgstr "Birden fazla adres için adresi farklı satırlara girin. örneğin test 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:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 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" @@ -10846,7 +10841,7 @@ 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:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "Form" @@ -10906,6 +10901,11 @@ msgstr "Biçim" msgid "Format Data" msgstr "Veriyi Biçimlendir" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "Onbeş Günde Bir" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "İlet" @@ -10933,7 +10933,15 @@ msgstr "Kesir Birimleri" msgid "Frappe" msgstr "ERP" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "Frappe Framework" @@ -11022,7 +11030,7 @@ msgstr "Başlama Tarihi" msgid "From Date Field" msgstr "Başlangıç Tarihi Alanı" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "Belge Türü" @@ -11049,18 +11057,16 @@ msgstr "Tam" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "Tam Adı" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "Tam Sayfa" @@ -11086,13 +11092,13 @@ msgstr "" msgid "Function {0} is not whitelisted." msgstr "{0} fonksiyonu beyaz listeye eklenmemiş." -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" -msgstr "Ek kısımlar ancak 'Grup' tipi kısımlar altında oluşturulabilir" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -11151,7 +11157,7 @@ msgstr "Genel" msgid "Generate Keys" msgstr "Anahtar Oluştur" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "Yeni Rapor Oluştur" @@ -11159,8 +11165,14 @@ msgstr "Yeni Rapor Oluştur" msgid "Generate Random Password" msgstr "Rastgele Şifre Oluştur" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "İzleme Bağlantısı Oluştur" @@ -11183,7 +11195,7 @@ msgstr "Konum" msgid "Geolocation Settings" msgstr "Coğrafi Konum Ayarları" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "Bugünün Bildirimlerini Getir" @@ -11319,7 +11331,7 @@ msgid "Go to this URL after completing the form" msgstr "Formu doldurduktan sonra bu URL'ye gidin" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "{0} Sayfasına Git" @@ -11367,10 +11379,6 @@ msgstr "Google Analytics IP'yi anonimleştirir" msgid "Google Calendar" msgstr "Google Takvim" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
    {0}" -msgstr "Google Takvim - Kişi / e-posta bulunamadı. Katılımcı eklenmedi -
    {0}" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "Google Takvim - Etkinlik {0} Google Takvim'den silinemedi, hata kodu {1}." @@ -11489,11 +11497,6 @@ msgstr "Google E-Tablolar bağlantısı geçersiz veya herkes tarafından erişi msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "Google E-Tablolar bağlantısı \"gid={number}\" ile bitmelidir. Bağlantıyı tarayıcı adres çubuğundan kopyalayıp yapıştırın ve tekrar deneyin." -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "Google Snippet Önizlemesi" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11535,7 +11538,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json msgid "Grid Page Length" -msgstr "" +msgstr "Izgara Sayfa Uzunluğu" #: frappe/public/js/frappe/ui/keyboard.js:127 msgid "Grid Shortcuts" @@ -11570,14 +11573,10 @@ msgstr "Türe Göre Gruplandır" msgid "Group By field is required to create a dashboard chart" msgstr "Pano grafiği oluşturmak için Grupla alanı gereklidir" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "Grup Düğümü" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11627,7 +11626,6 @@ msgstr "HH:mm:ss" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11638,9 +11636,8 @@ msgstr "HH:mm:ss" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11744,7 +11741,7 @@ msgstr "Başlık" msgid "Header HTML" msgstr "Başlık HTML" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "" @@ -11802,6 +11799,12 @@ msgstr "Isı Haritası" msgid "Hello" msgstr "Merhaba" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "Merhaba," + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11867,7 +11870,7 @@ msgstr "Helvetica" msgid "Helvetica Neue" msgstr "Helvetica Neue" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "İzleme Bağlantınız" @@ -11903,7 +11906,7 @@ msgstr "Gizli" msgid "Hidden Fields" msgstr "Gizli Alanlar" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11936,11 +11939,6 @@ msgstr "Kenarları Gizle" msgid "Hide Buttons" msgstr "Butonları Gizle" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "" - #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json @@ -12020,7 +12018,7 @@ msgstr "Kenar Çubuğunu, Menüyü ve Yorumları Gizle" msgid "Hide Standard Menu" msgstr "Standart Menüyü Gizle" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "Etiketleri Gizle" @@ -12034,7 +12032,7 @@ msgstr "Hafta Sonlarını Gizle" msgid "Hide descendant records of For Value." msgstr "Değeri için alt kayıtlarını gizle." -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "Detayları gizle" @@ -12083,11 +12081,8 @@ 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:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -12175,16 +12170,16 @@ msgstr "Sanırım henüz herhangi bir çalışma alanına erişiminiz yok, ancak #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "ID" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "ID" @@ -12280,9 +12275,9 @@ msgstr "Kısıtlı Kullanıcı İzni Uygula işaretliyse ve kullanıcıya bir Do 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" -#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "Sahibiyle" @@ -12410,6 +12405,10 @@ msgstr "Kullanıcının herhangi bir rolü işaretlenmişse, kullanıcı \"Siste 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." +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12441,7 +12440,11 @@ msgstr "Yeni kayıt yüklüyorsanız, varsa \"İsimlendirme Serisi\" zorunlu hal msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "Yeni kayıt yüklüyorsanız \"isim\" (ID) sütununu boş bırakın." -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "Siteyi yakın zamanda geri yüklediyseniz, orijinal şifreleme anahtarını içeren site_config.json dosyasını kopyalamanız gerekebilir." @@ -12498,12 +12501,12 @@ msgstr "Bu boyuttan büyük ekleri yoksay" msgid "Ignored Apps" msgstr "Yoksayılan Uygulamalar" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "{0} için Uygun Olmayan Belge Durumu" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "Geçersiz SQL Sorgusu" @@ -12564,11 +12567,11 @@ msgstr "Resim Görünümü" msgid "Image Width" msgstr "Resim Genişliği" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 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:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "Resim alanı iliştirilen resim türünde olmalıdır" @@ -12590,15 +12593,15 @@ msgstr "Resimler" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "Yerine Geçir" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "{0} Gibi Kullan" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "{0} Olarak Kullandı" @@ -12624,7 +12627,7 @@ msgstr "" msgid "Import" msgstr "İçe Aktar" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "İçe Aktar" @@ -12852,15 +12855,16 @@ msgstr "Uygulamalardan Temayı Dahil Et" msgid "Include Web View Link in Email" msgstr "Web Görünümü Bağlantısını E-postaya Ekle" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "Filtreleri dahil et" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "Girintiyi dahil et" @@ -12907,7 +12911,7 @@ msgstr "Gelen e-posta hesabı doğru değil" msgid "Incomplete Virtual Doctype Implementation" msgstr "Tamamlanmamış Sanal Doküman Tipi Uygulaması" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "Hatalı giriş bilgileri" @@ -12919,7 +12923,7 @@ msgstr "Hatalı Yapılandırma" msgid "Incorrect URL" msgstr "Yanlış URL" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "Hatalı Kullanıcı Adı veya Şifre" @@ -12927,11 +12931,11 @@ msgstr "Hatalı Kullanıcı Adı veya Şifre" msgid "Incorrect Verification code" msgstr "Hatalı Doğrulama Kodu" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "Satırlarda yanlış değer var {0}:" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "Geçersiz değer: " @@ -12943,7 +12947,7 @@ msgstr "Geçersiz değer: " #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "Dizin" @@ -13018,7 +13022,7 @@ msgstr "Yukarı Ekle" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "Sonrasına Ekle" @@ -13034,7 +13038,7 @@ msgstr "" msgid "Insert Below" msgstr "Aşağıya Ekle" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "{0} Sütunundan Önce Ekle" @@ -13052,8 +13056,12 @@ msgstr "Yeni Kayıt Ekle" msgid "Insert Style" msgstr "Stil Ekle" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "{0} Uygulamasını Marketplace aracılığıyla Yükle" @@ -13070,7 +13078,7 @@ msgid "Installed Applications" msgstr "Yüklü Uygulamalar" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "Yüklü Uygulamalar" @@ -13087,19 +13095,19 @@ msgstr "Talimatlar E-postayla Gönderildi" msgid "Insufficient Permission Level for {0}" msgstr "{0} için Yetersiz İzin Seviyesi" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "{0} için Yetki Verilmemiş" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" msgstr "Raporu silmek için mevcut izinler yetersiz" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" msgstr "Raporu düzenlemek için mevcut izinler yetersiz" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "Yetersiz dosya eki limiti" @@ -13203,9 +13211,9 @@ msgid "Invalid" msgstr "Geçersiz" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "Geçersiz \"depends_on\" ifadesi" @@ -13213,7 +13221,7 @@ msgstr "Geçersiz \"depends_on\" ifadesi" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "{0} filtresinde geçersiz \"depends_on\" ifadesi ayarlandı" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "Geçersiz \"mandatory_depends_on\" ifadesi" @@ -13229,7 +13237,7 @@ msgstr "Geçersiz CSV Formatı" msgid "Invalid Code. Please try again." msgstr "Geçersiz Kod. Lütfen tekrar deneyin." -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "Geçersiz Koşul: {}" @@ -13249,16 +13257,20 @@ msgstr "Geçersiz DocType" msgid "Invalid DocType: {0}" msgstr "Geçersiz DocType: {0}" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "Geçersiz Alan Adı" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "Geçersiz Dosya URL'si" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13290,7 +13302,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:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "Geçersiz Adlandırma Serisi: {}" @@ -13299,8 +13311,8 @@ msgstr "Geçersiz Adlandırma Serisi: {}" msgid "Invalid Operation" msgstr "Geçersiz İşlem" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "Geçersiz Seçenek" @@ -13312,25 +13324,25 @@ 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:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "Hatalı Geçersiz Kılma" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "Geçersiz Parametreler." -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "Geçersiz Şifre" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "Geçersiz Telefon Numarası" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "Geçersiz İşlem. Lütfen Sayfayı Yenileyin." @@ -13339,7 +13351,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:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "Geçersiz Tablo Alanı Adı" @@ -13347,8 +13359,8 @@ msgstr "Geçersiz Tablo Alanı Adı" msgid "Invalid Transition" msgstr "Geçersiz Geçiş" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13362,47 +13374,51 @@ msgstr "Geçersiz Kullanıcı Adı veya Destek Şifresi. Lütfen düzeltin ve te msgid "Invalid Values" msgstr "Geçersiz Değerler" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "Geçersiz Sütun" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "Geçersiz docstatus" @@ -13414,31 +13430,27 @@ 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:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "Geçersiz alan adı {0}" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "Otomatik adlandırmada geçersiz alan adı '{0}'" @@ -13446,11 +13458,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:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13458,20 +13470,28 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "Geçersiz filtre: {0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "Özel seçeneklere geçersiz json eklendi: {0}" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "" @@ -13479,6 +13499,10 @@ msgstr "" msgid "Invalid naming series {}: dot (.) missing" msgstr "Geçersiz adlandırma serisi {}: nokta (.) eksik" +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "İçe aktarma için geçersiz veya bozuk içerik" @@ -13487,19 +13511,27 @@ msgstr "İçe aktarma için geçersiz veya bozuk içerik" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "Geçersiz istek değişkenleri" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13507,7 +13539,7 @@ msgstr "" msgid "Invalid template file for import" msgstr "İçe aktarma için geçersiz şablon dosyası" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "Geçersiz token durumu! Token'ın OAuth kullanıcısı tarafından oluşturulup oluşturulmadığını kontrol edin." @@ -13516,20 +13548,20 @@ 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:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 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:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "Geçersiz wkhtmltopdf sürümü" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "Geçersiz {0} koşulu" @@ -13538,10 +13570,47 @@ msgstr "Geçersiz {0} koşulu" msgid "Inverse" msgstr "Tersine çevir" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "Kullanıcı olarak davet et" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "" @@ -13566,7 +13635,7 @@ msgstr "Takvim & Gantt" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "Alt Tablo" @@ -13619,6 +13688,10 @@ msgstr "Klasör" msgid "Is Global" msgstr "Herkese Açık" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "Grup" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13645,8 +13718,13 @@ msgstr "İsteğe Bağlı Durum" msgid "Is Primary" msgstr "Birincil" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: 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" @@ -13677,7 +13755,7 @@ msgstr "Herkese Açık" msgid "Is Published Field" msgstr "Yayınlanmış Alan" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "Yayınlandı Alan geçerli bir alan olmalıdır" @@ -13702,7 +13780,7 @@ msgstr "" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "Tek" @@ -13738,7 +13816,7 @@ msgstr "Standart" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "Gönderilebilir" @@ -13944,11 +14022,11 @@ msgstr "Kanban Panosu Sütunu" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "Kanban Panosu Adı" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "Kanban Ayarları" @@ -13969,12 +14047,14 @@ msgstr "Tüm iletişimleri takip eder" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -14236,7 +14316,7 @@ msgstr "Etiket zorunludur" msgid "Landing Page" msgstr "Giriş Sayfası" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "Landscape" @@ -14244,10 +14324,13 @@ msgstr "Landscape" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "Dil" @@ -14335,8 +14418,12 @@ msgstr "Geçen Ay" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "Soyadı" @@ -14351,6 +14438,11 @@ msgstr "Son Şifre Sıfırlama Tarihi" msgid "Last Quarter" msgstr "Son Çeyrek" +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" + #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json @@ -14367,11 +14459,6 @@ msgstr "Son Çalıştırma" msgid "Last Sync On" msgstr "Son Senkronizasyon" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "Son Senkronizasyon" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14482,7 +14569,7 @@ msgstr "Uzunluk" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "Geçirilen veri dizisinin uzunluğu, izin verilen maksimum etiket noktalarının değerinden büyüktür!" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "{0} uzunluğu 1 ile 1000 arasında olmalıdır" @@ -14531,8 +14618,8 @@ 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:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14560,7 +14647,7 @@ msgstr "Antetli Kağıt İsmi" msgid "Letter Head Scripts" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "Antetli Kağıt hem devre dışı hem de varsayılan olamaz" @@ -14577,7 +14664,7 @@ msgstr "Antetli Kağıt HTML" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "Seviye" @@ -14627,20 +14714,6 @@ msgstr "Açık Tema" msgid "Like" msgstr "Benzer" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "Beğen {0}: {1}" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "Beğendi" @@ -14681,6 +14754,7 @@ msgstr "Çizgi" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14694,6 +14768,7 @@ msgstr "Çizgi" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "Bağlantı" @@ -14824,10 +14899,15 @@ msgstr "Bağlantılı" msgid "Linked With" msgstr "Bağlantılar" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +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 (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14835,6 +14915,7 @@ msgstr "Bağlantılar" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "Bağlantılar" @@ -14876,7 +14957,7 @@ msgstr "Filtreyi Listele" msgid "List Settings" msgstr "Liste Ayarları" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "Liste Ayarları" @@ -14917,7 +14998,7 @@ msgstr "Uygulanan yamaların listesi" msgid "List setting message" msgstr "Liste ayar mesajı" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "Listeler" @@ -14926,9 +15007,8 @@ msgstr "Listeler" msgid "Load Balancing" msgstr "Yük Dengeleme" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "Daha Fazla Yükle" @@ -14945,10 +15025,10 @@ msgstr "Daha fazla yükle" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "Yükleniyor" @@ -14960,7 +15040,7 @@ msgstr "Filtreler Yükleniyor..." msgid "Loading import file..." msgstr "İçe aktarma dosyası yükleniyor..." -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "Versiyonlar yükleniyor..." @@ -14970,7 +15050,7 @@ msgstr "Versiyonlar yükleniyor..." #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "Yükleniyor..." @@ -15031,7 +15111,7 @@ msgstr "Bu sayfaya erişmek için giriş yapın." msgid "Log out" msgstr "Çıkış" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "Çıkış Yapıldı" @@ -15091,7 +15171,7 @@ msgstr "{} adresinden Giriş Doğrulama Kodu" msgid "Login and view in Browser" msgstr "Tarayıcıda oturum açın ve görüntüleyin" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "Web formu liste görünümünü görmek için giriş yapılması gerekir. Liste ayarlarını görmek için {0} ayarını etkinleştirin" @@ -15099,7 +15179,7 @@ msgstr "Web formu liste görünümünü görmek için giriş yapılması gerekir msgid "Login link sent to your email" msgstr "Giriş bağlantısı e-postanıza gönderildi" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "Şu anda oturum açmaya izin verilmiyor" @@ -15134,7 +15214,7 @@ msgstr "E-posta ile Giriş" #: frappe/www/login.html:116 msgid "Login with Frappe Cloud" -msgstr "" +msgstr "Frappe Cloud ile Giriş Yap" #: frappe/www/login.html:49 msgid "Login with LDAP" @@ -15152,7 +15232,7 @@ msgstr "E-posta ile Giriş" msgid "Login with email link expiry (in minutes)" msgstr "E-posta bağlantısı sona erme süresi (Dakika)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "Kullanıcı adı ve şifre ile giriş yapılmasına izin verilmiyor." @@ -15171,7 +15251,7 @@ msgstr "" msgid "Logout" msgstr "Çıkış" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "Tüm Oturumlardan Çıkış Yap" @@ -15275,7 +15355,10 @@ msgid "Major" msgstr "Ana Sürüm" #. 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 +#. Form' #: 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" @@ -15351,7 +15434,7 @@ msgstr "Zorunluluk Bağlılığı" msgid "Mandatory Depends On (JS)" msgstr "Zorunluluk Bağlılığı (JS)" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "Zorunlu bilgi eksik:" @@ -15363,15 +15446,15 @@ msgstr "" msgid "Mandatory field: {0}" msgstr "Zorunlu alan: {0}" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "Satır#{1} - {0} tablosundaki alanlar zorunlu" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "{0} Eklerken Aşağıdaki Alanlar Zorunludur" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "Zorunlu alanlar gereklidir:" @@ -15452,10 +15535,8 @@ msgid "Mark as Unread" msgstr "Okunmadı Olarak İşaretle" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15536,7 +15617,13 @@ msgstr "Maksimum ek boyutu" msgid "Max auto email report per user" msgstr "Kullanıcı başına maksimum otomatik e-posta raporu" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1343 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" @@ -15545,20 +15632,15 @@ msgstr "Para Birimi türü için maksimum genişlik {0} satırında 100 pikseldi msgid "Maximum" msgstr "Maksimum" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "{1} {2} için {0} Maksimum Ek Sınırı'na ulaşıldı." -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "Maksimum Alan Sayısı" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "{0} maksimum ek sınırına ulaşıldı." -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "İzin verilen en fazla satır sayısı {0}" @@ -15574,7 +15656,7 @@ msgstr "Gönder, İptal Et, Değiştir Anlamı" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15587,7 +15669,7 @@ msgstr "Orta" msgid "Meeting" msgstr "Toplantı" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "Koşulları karşılıyor mu?" @@ -15605,7 +15687,7 @@ msgstr "Bellek Kullanımı" #: frappe/core/report/prepared_report_analytics/prepared_report_analytics.py:63 msgid "Memory Usage in MB" -msgstr "" +msgstr "Bellek Kullanımı (MB)" #. Option for the 'Type' (Select) field in DocType 'Notification Log' #: frappe/desk/doctype/notification_log/notification_log.json @@ -15628,7 +15710,7 @@ msgstr "Menü" msgid "Merge with existing" msgstr "Varolan ile Birleştir" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "" @@ -15654,7 +15736,7 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15694,7 +15776,7 @@ msgstr "Mesaj Gönderildi" msgid "Message Type" msgstr "Mesaj Türü" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "Mesaj kopyalandı" @@ -15726,29 +15808,21 @@ msgstr "Mesajlar" msgid "Meta" msgstr "Meta" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "Meta Açıklaması" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "Meta Etiketleri" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "Meta Başlık" @@ -15801,7 +15875,7 @@ msgstr "Yöntem" msgid "Method Not Allowed" msgstr "İzin Verilmeyen Method" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "Bir sayı kartı oluşturmak için yöntem gereklidir" @@ -15817,6 +15891,11 @@ msgstr "Orta Merkez" msgid "Middle Name" msgstr "İkinci Adı" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15883,11 +15962,11 @@ msgstr "Bayan" msgid "Missing DocType" msgstr "Eksik DocType" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "Eksik Veri" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "Eksik Alanlar" @@ -15923,15 +16002,16 @@ msgstr "Cep Telefonu" msgid "Mobile No" msgstr "Cep No" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "Cep Telefonu" + #. 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 "Modal Tetikleyici" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "Değiştiren" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15952,7 +16032,7 @@ msgstr "Değiştiren" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -16128,10 +16208,12 @@ msgstr "Daha Fazla Bilgi" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "Daha Fazla Bilgi" @@ -16150,7 +16232,7 @@ msgstr "Sayfanın alt kısmı için daha fazla içerik." msgid "Most Used" msgstr "En Çok Kullanılan" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "Büyük ihtimalle şifreniz çok uzun." @@ -16161,7 +16243,7 @@ msgstr "Büyük ihtimalle şifreniz çok uzun." msgid "Move" msgstr "Taşı" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "Taşı" @@ -16197,7 +16279,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:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "Taşınacak Satır Numarası" @@ -16224,7 +16306,7 @@ msgstr "Bayan" msgid "Ms" msgstr "Bayan" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "" @@ -16247,7 +16329,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "Resim Eki Formatında Olmalıdır" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "Bu rapora erişmek için rapor iznine sahip olmanız gerekir." @@ -16265,7 +16347,7 @@ msgid "Mx" msgstr "Bayan" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16303,9 +16385,9 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16315,11 +16397,11 @@ msgstr "Adı" msgid "Name (Doc Name)" msgstr "" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 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:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "İsim, {0} gibi özel karekterler içeremez" @@ -16331,7 +16413,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:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "{0} adı {1} olamaz" @@ -16372,7 +16454,7 @@ msgstr "Adlandırma Kuralı" msgid "Naming Series" msgstr "Adlandırma Serisi" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "Seri Adlandırma Zorunludur" @@ -16409,12 +16491,12 @@ msgstr "Gezinti Çubuğu Şablonu" msgid "Navbar Template Values" msgstr "Gezinme Çubuğu Şablon Değerleri" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "Listede Aşağı Git" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "Listede Yukarı git" @@ -16429,7 +16511,11 @@ msgstr "Ana içeriğe git" msgid "Navigation Settings" msgstr "Gezinme Ayarları" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:322 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." @@ -16437,7 +16523,7 @@ msgstr "Diğer kullanıcıların özel çalışma alanlarını düzenlemek için msgid "Negative Value" msgstr "Negatif Değer" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16450,6 +16536,12 @@ msgstr "İç içe küme hatası. Lütfen Yönetici ile iletişime geçin." msgid "Network Printer Settings" msgstr "Ağ Yazıcısı Ayarları" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +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 @@ -16458,7 +16550,7 @@ msgstr "Ağ Yazıcısı Ayarları" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16479,10 +16571,6 @@ msgstr "Yeni Adres" msgid "New Chart" msgstr "Yeni Grafik" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "Yeni Yorum {0}: {1}" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "Yeni Kişi" @@ -16491,8 +16579,8 @@ msgstr "Yeni Kişi" msgid "New Custom Block" msgstr "Yeni Özel Blok" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" msgstr "Yeni Yazdırma Formatı" @@ -16523,7 +16611,7 @@ msgstr "Yeni Etkinlik" msgid "New Folder" msgstr "Yeni Klasör" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "Yeni Kanban Panosu" @@ -16558,12 +16646,12 @@ msgstr "Yeni Veri Kartı" msgid "New Onboarding" msgstr "Yeni Modül Tanıtımı" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "Yeni Şifre" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "Yeni Baskı Formatı Adı" @@ -16572,7 +16660,7 @@ msgstr "Yeni Baskı Formatı Adı" msgid "New Quick List" msgstr "Yeni Hızlı Liste" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "Yeni Rapor İsmi" @@ -16590,8 +16678,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:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "Yeni Değer" @@ -16648,13 +16736,13 @@ msgstr "Ayarlanacak yeni değer" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "Yeni {0}" @@ -16670,7 +16758,7 @@ msgstr "Yeni {0} {1}, {2} Panosuna eklendi." msgid "New {0} {1} created" msgstr "Yeni {0} {1} oluşturuldu" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "Yeni {0}: {1}" @@ -16678,7 +16766,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:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "{0} kullanıcısı için rol belirlenmedi." @@ -16691,7 +16779,7 @@ msgstr "Bülten Yöneticisi" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16798,14 +16886,15 @@ msgstr "Sonraki Tıklamada" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "Hayır" @@ -16855,6 +16944,10 @@ msgstr "E-posta Hesabı Yok" msgid "No Email Accounts Assigned" msgstr "Hiçbir E-posta Hesabı Atanmadı" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "E-posta Yok" @@ -16890,15 +16983,15 @@ msgstr "E-posta için LDAP Kullanıcısı bulunamadı: {0}" msgid "No Label" msgstr "Etiket Yok" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: 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:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "{0} için İsim Belirtilmemiş" @@ -16906,7 +16999,7 @@ msgstr "{0} için İsim Belirtilmemiş" msgid "No New notifications" msgstr "Yeni Bildirim Yok" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "Hiçbir İzin Belirtilmemiş" @@ -16926,11 +17019,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:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "Önizleme Mevcut Değil" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "Uygun Yazıcı Bulunamadı." @@ -16946,11 +17039,11 @@ msgstr "Sonuç Yok" msgid "No Results found" msgstr "Uygun Sonuç Bulunamadı" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "Rol Belirlenmedi" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "Seçim Alanı Bulunamadı" @@ -16958,7 +17051,7 @@ msgstr "Seçim Alanı Bulunamadı" msgid "No Suggestions" msgstr "Öneri Yok" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "Etiket Yok" @@ -16970,7 +17063,7 @@ msgstr "Yaklaşan Etkinlik Yok" msgid "No address added yet." msgstr "Henüz adres eklenmemiş." -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "Bugün için herhangi bir bildirim yok" @@ -16998,23 +17091,19 @@ msgstr "Senkronizasyonda değişiklik yok" msgid "No changes to update" msgstr "Güncellenecek değişiklik yok" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "Henüz yorum yok" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " -msgstr "Henüz yorum yok. " +msgid "No comments yet." +msgstr "Henüz yorum yok." #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." msgstr "Henüz kişi eklenmedi." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "Belgeye bağlı kişi yok" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "Verilecek veri yok" @@ -17030,11 +17119,15 @@ msgstr "{0} ile etiketlenen belge bulunamadı" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "Kullanıcıyla ilişkilendirilmiş bir e-posta hesabı bulunmamaktadır. Lütfen bir hesap ekleyin: Kullanıcı > E-posta Gelen Kutusu." +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "Başarısız kayıt yok" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "Kanban Sütunu olarak kullanılabilecek alanlar bulunamadı. \"Seçim\" türünde yeni bir Özel Alan eklemek için Form Özelleştirmeyi kullanın." @@ -17058,7 +17151,7 @@ msgstr "Daha fazla kayıt yok" msgid "No matching records. Search something new" msgstr "Eşleşen kayıt yok. Yeni bir kelime ile aramayı deneyin" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "Görüntülenecek başka bir öğe yok" @@ -17102,7 +17195,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "Okuma {0} izni yok" @@ -17114,7 +17207,7 @@ msgstr "{0} {1} {2} için izin yok" msgid "No records deleted" msgstr "Hiçbir kayıt silinmedi" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "{0} içinde kayıt bulunamadı" @@ -17130,7 +17223,7 @@ msgstr "Hiçbir kayıt dışa aktarılmayacak" msgid "No rows" msgstr "Sıra yok" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "Konu yok" @@ -17150,11 +17243,11 @@ msgstr "{0} Yok" msgid "No {0} Found" msgstr "{0} Bulunamadı" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "{0} bulunamadı." -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "Filtrelere uygun {0} bulunamadı. Tüm filtreleri temizleyip tekrar deneyebilirsiniz." @@ -17163,7 +17256,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:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "Sıra" @@ -17206,7 +17299,7 @@ msgstr "Normalleştirilmiş Kopyalar" msgid "Normalized Query" msgstr "Normalleştirilmiş Sorgu" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "İzin verilmedi" @@ -17227,7 +17320,7 @@ msgstr "Aynı Kategoride Değil" msgid "Not Equals" msgstr "Eşit Değil" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "Bulunamadı" @@ -17253,20 +17346,19 @@ msgstr "Herhangi bir kayıtla bağlantılı değil" msgid "Not Nullable" msgstr "Boş Bırakılamaz" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "İzin yok" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "{0} için Okuma izni yok" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17275,10 +17367,10 @@ msgstr "Yayınlanmadı" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "Kaydedilmedi" @@ -17310,7 +17402,7 @@ msgstr "Virgülle Ayrılmış Geçerli Bir CSV Dosyası Değil" msgid "Not a valid User Image." msgstr "Geçerli bir Kullanıcı Resmi değil." -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "Geçerli bir İş Akışı Eylemi değil" @@ -17326,11 +17418,11 @@ msgstr "Aktif değil" msgid "Not allowed for {0}: {1}" msgstr "{0} için izin verilmiyor: {1}" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "{0} belgesinin eklenmesine izin verilmiyor, lütfen Yazdırma Ayarları'nda {0} için Yazdırmaya İzin Ver ayarını etkinleştirin" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "Özel Sanal DocType oluşturulmasına izin verilmiyor." @@ -17354,27 +17446,27 @@ msgstr "Bulunamadı" msgid "Not in Developer Mode" msgstr "Geliştirici modunda değil" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 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:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "İzin verilmedi" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "Görüntülemek için yetkiniz yok: {0}" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17409,7 +17501,7 @@ msgstr "Not: En iyi sonuçlar için görsellerin aynı boyutta olması ve geniş msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "Not: Mobil cihaz olması durumunda birden fazla oturuma izin verilecektir." -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "Not: Bu kullanıcı ile paylaşılacaktır." @@ -17433,10 +17525,9 @@ msgstr "Yeniden yapılacak hiçbir şey kalmadı" msgid "Nothing left to undo" msgstr "Geri Alınacak Bir Şey Kalmadı" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "Gösterilecek bir şey yok" @@ -17482,15 +17573,15 @@ msgstr "Bildirim İçin Abone Olunan Belge" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "Bildirim: {0} isimli Müşterinin belirlenmiş bir cep telefonu numarası yok" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "Bildirim: {0} belgesinin {1} sayı kümesi yok (alan: {2})" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "Bildirim: {0} kullanıcısının ayarlanmış bir Cep telefonu numarası yok" @@ -17541,7 +17632,7 @@ msgstr "Cevaplamazsa Bildir (Dakika)" msgid "Notify users with a popup when they log in" msgstr "Oturum Açıldığında Kullanıcıları Bilgilendir" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "Şimdi" @@ -17599,12 +17690,12 @@ msgstr "Grup Sayısı" msgid "Number of Queries" msgstr "Sorgu Sayısı" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "Yedekleme sayısı sıfırdan büyük olmalıdır." @@ -17713,11 +17804,11 @@ msgstr "Uygulama" msgid "OTP Issuer Name" msgstr "" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "" @@ -17836,7 +17927,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "" @@ -17876,7 +17967,7 @@ msgstr "Tanıtım Tamamlandı" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 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." @@ -17921,7 +18012,7 @@ msgstr "Kaydediciyi yalnızca Yönetici kullanabilir" msgid "Only Allow Edit For" msgstr "Düzenleme Yetkisi" -#: frappe/core/doctype/doctype/doctype.py:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "Veri alanı için yalnızca şu Seçeneklere izin verilir:" @@ -17938,7 +18029,7 @@ msgstr "Yalnızca Çalışma Alanı Yöneticisi genel çalışma alanlarını d msgid "Only allowed to export customizations in developer mode" msgstr "Özelleştirmelerin yalnızca geliştirici modunda dışa aktarılmasına izin verilir" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "" @@ -17957,19 +18048,19 @@ msgstr "Yeni kayıtlar için yalnızca zorunlu alanlar gereklidir. İsterseniz z msgid "Only one {0} can be set as primary." msgstr "Sadece bir {0} birincil olarak ayarlanabilir." -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "Yalnızca Rapor Oluşturucu türündeki raporlar silinebilir" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "Yalnızca Rapor Oluşturucu türündeki raporlar düzenlenebilir" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "Formu Özelleştir'den yalnızca standart DocType'ların özelleştirilmesine izin verilir." -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "Yalnızca Administrator rolü standart bir DocType'ı silebilir." @@ -18039,7 +18130,7 @@ msgstr "Açık Referans Belgesi" msgid "Open Settings" msgstr "Ayarları Aç" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "Web için Açık Kaynaklı Uygulamalar" @@ -18057,7 +18148,7 @@ msgstr "Hızlı bir şekilde yeni bir kayıt oluşturmak için zorunlu alanlara msgid "Open a module or tool" msgstr "Modüle Git" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "" @@ -18065,7 +18156,7 @@ msgstr "" msgid "Open in a new tab" msgstr "Yeni sekmede aç" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "Liste Öğesini Aç" @@ -18080,13 +18171,13 @@ msgstr "" #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "{0} Sayfasına Git" @@ -18095,6 +18186,10 @@ msgstr "{0} Sayfasına Git" msgid "OpenID Configuration" msgstr "OpenID Yapılandırması" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" @@ -18110,7 +18205,7 @@ msgstr "Açıldı" msgid "Operation" msgstr "Operasyon" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "" @@ -18136,7 +18231,7 @@ msgstr "Seçenek 2" msgid "Option 3" msgstr "Seçenek 3" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "" @@ -18156,6 +18251,7 @@ msgstr "İsteğe bağlı: Bu ifade doğruysa uyarı gönderilecektir" #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -18164,11 +18260,12 @@ msgstr "İsteğe bağlı: Bu ifade doğruysa uyarı gönderilecektir" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "Şeçenekler" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 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" @@ -18177,7 +18274,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:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 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" @@ -18185,7 +18282,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:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 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." @@ -18193,7 +18290,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:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "{0} bağlantı alanı için ayarlanmamış seçenekler" @@ -18209,7 +18306,7 @@ msgstr "Turuncu" msgid "Order" msgstr "" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18225,12 +18322,12 @@ msgstr "Organizasyon Geçmişi" msgid "Org History Heading" msgstr "Organizasyon Geçmişi Başlığı" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "Oryantasyon" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "Orijinal Değer" @@ -18298,10 +18395,6 @@ msgstr "" msgid "Overview" msgstr "Genel Bakış" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "Sahibi" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" @@ -18309,9 +18402,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:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "PDF" @@ -18352,11 +18445,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:616 +#: frappe/printing/page/print/print.js:656 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:534 +#: frappe/printing/page/print/print.js:574 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18528,7 +18621,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:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "{1} {0} Sayfası" @@ -18555,7 +18648,7 @@ msgstr "Ana DocType" msgid "Parent Document Type" msgstr "Ana Belge Türü" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "Numara kartı oluşturmak için Ana Belge Türü gereklidir" @@ -18572,11 +18665,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:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "" @@ -18585,7 +18678,7 @@ msgstr "" msgid "Parent Label" msgstr "Ana Etiket" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 msgid "Parent Missing" msgstr "" @@ -18659,8 +18752,8 @@ msgstr "Pasif" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18670,7 +18763,7 @@ msgstr "Pasif" msgid "Password" msgstr "Şifre" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "Şifre E-postası Gönderildi" @@ -18683,7 +18776,7 @@ msgstr "Şifre Sıfırlama" msgid "Password Reset Link Generation Limit" msgstr "Şifre Resetleme için Bağlantı Oluşturma Limiti" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "Şifre filtrelenemiyor" @@ -18700,6 +18793,10 @@ msgstr "" msgid "Password is required or select Awaiting Password" msgstr "Şifre gerekli veya Şifre Bekleniyor'u seçin" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "E-posta Hesabında Şifre Eksik" @@ -18708,7 +18805,7 @@ msgstr "E-posta Hesabında Şifre Eksik" msgid "Password not found for {0} {1} {2}" msgstr "{0} {1} {2} için şifre bulunamadı" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "Şifre sıfırlama talimatları {}'in e-postasına gönderildi" @@ -18716,11 +18813,11 @@ msgstr "Şifre sıfırlama talimatları {}'in e-postasına gönderildi" msgid "Password set" msgstr "Şifre ayarlandı" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "Şifre boyutu izin verilen maksimum boyutu aştı" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." msgstr "Şifre boyutu izin verilen maksimum boyutu aştı." @@ -18728,7 +18825,7 @@ msgstr "Şifre boyutu izin verilen maksimum boyutu aştı." msgid "Passwords do not match" msgstr "Parolalar uyuşmuyor" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "Şifreler uyuşmuyor!" @@ -18798,10 +18895,12 @@ msgstr "En Yüksek Bellek Kullanımı" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "Bekliyor" @@ -18877,7 +18976,7 @@ msgstr "{0} Kalıcı Olarak Kaydedilecek" msgid "Permanently delete {0}?" msgstr "{0} öğesi kalıcı olarak silinecek." -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "İzin Hatası" @@ -18937,16 +19036,16 @@ msgstr "İzin Türü" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: 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:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "İzin Hatası" @@ -19008,15 +19107,18 @@ msgstr "Kişisel Veri İndirme Talebi" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -19029,13 +19131,13 @@ msgstr "Telefon" msgid "Phone No." msgstr "Telefon No." -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 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:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "Sütunları Seç" @@ -19095,11 +19197,11 @@ msgstr "Ldap işlevselliğini kullanmak için lütfen pip aracılığıyla ldap3 msgid "Please Set Chart" msgstr "Lütfen Tabloyu Ayarlayın" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "Lütfen SMS Ayarlarını Güncelleyin" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "Lütfen e-postanıza bir konu ekleyin" @@ -19107,7 +19209,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:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "Lütfen yöneticinizden kayıt işleminizin doğrulamasını isteyin" @@ -19115,11 +19217,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:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 msgid "Please attach an image file to set HTML for Footer." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "" @@ -19127,19 +19229,15 @@ msgstr "" msgid "Please attach the package" msgstr "Lütfen paketi ekleyin" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "Lütfen OpenID Yapılandırma URL'sini kontrol edin" - #: frappe/utils/dashboard.py:58 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:951 +#: frappe/model/base_document.py:1008 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "Doğrulama için lütfen e-postanızı kontrol edin" @@ -19171,11 +19269,11 @@ 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:618 +#: frappe/printing/page/print/print.js:658 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." -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "Lütfen Önce Veri Kartı oluşturun" @@ -19191,20 +19289,20 @@ msgstr "Lütfen alanı {0} adresinden silin veya gerekli doctype'ı ekleyin." msgid "Please do not change the template headings." msgstr "Lütfen şablon başlıklarını değiştirmeyin." -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" msgstr "Lütfen değişiklik yapmak için bunu çoğaltın" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "Kullanıcı adı/şifre tabanlı girişi devre dışı bırakmadan önce lütfen en az bir Sosyal Giriş Anahtarını veya LDAP'yi veya E-posta Bağlantısıyla Giriş Yapın'ı etkinleştirin." #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "Pop-up etkinleştirin" @@ -19241,7 +19339,7 @@ msgstr "Sosyal medya ile oturum açma etkinleştirilmeden önce lütfen İstemci msgid "Please enter Client Secret before social login is enabled" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "" @@ -19278,11 +19376,12 @@ msgstr "Lütfen yeni şifrenizi girin." msgid "Please enter your old password." msgstr "Lütfen eski şifrenizi giriniz." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "Dosya eki olarak {{ doc.doctype }} #{{ doc.name }} bulunmaktadır." -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "Yorum göndermek için lütfen üye girişi yapın." @@ -19290,11 +19389,11 @@ 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:988 +#: frappe/model/document.py:992 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:535 +#: frappe/printing/page/print/print.js:575 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." @@ -19310,7 +19409,7 @@ msgstr "Lütfen atamadan önce belgeyi kaydedin" msgid "Please save the document before removing assignment" msgstr "Lütfen atamayı kaldırmadan önce belgeyi kaydedin" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "Lütfen önce raporu kaydedin." @@ -19318,7 +19417,7 @@ msgstr "Lütfen önce raporu kaydedin." msgid "Please save to edit the template." msgstr "Şablonu düzenlemek için lütfen kaydedin." -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "Lütfen önce DocType'ı seçin" @@ -19326,19 +19425,19 @@ msgstr "Lütfen önce DocType'ı seçin" msgid "Please select Entity Type first" msgstr "Lütfen önce Varlık Türünü seçin" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "Lütfen Minimum Şifre Puanını seçin" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "Lütfen X ve Y alanlarını seçin" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "Lütfen {1} alanı için bir ülke kodu seçin." -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "Lütfen önce bir dosya seçin." @@ -19346,7 +19445,7 @@ msgstr "Lütfen önce bir dosya seçin." msgid "Please select a file or url" msgstr "Lütfen bir dosya veya url seçin" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" msgstr "Lütfen veri içeren geçerli bir csv dosyası seçin" @@ -19358,7 +19457,7 @@ msgstr "Lütfen geçerli bir tarih filtresi seçin" msgid "Please select applicable Doctypes" msgstr "Lütfen geçerli DocType'ları seçin" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "Lütfen sıralamak/gruplamak için {0} en az 1 sütun seçin" @@ -19384,11 +19483,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:549 +#: frappe/printing/page/print/print.js:589 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:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "Lütfen filtreleri ayarlayın" @@ -19396,7 +19495,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:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "Lütfen belge adını ayarlayın" @@ -19408,7 +19507,7 @@ msgstr "Lütfen öncelikle bu Gösterge Tablosundaki aşağıdaki belgeleri stan msgid "Please set the series to be used." msgstr "Lütfen kullanılacak seriyi ayarlayın." -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -19432,23 +19531,23 @@ msgstr "Lütfen belirtiniz" msgid "Please specify a valid parent DocType for {0}" msgstr "Lütfen {0} için geçerli bir üst DocType belirtin" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "Lütfen hangi tarih alanının işaretlenmesi gerektiğini belirtin" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "Lütfen hangi değer alanının kontrol edilmesi gerektiğini belirtin" @@ -19469,7 +19568,7 @@ msgstr "Lütfen geçerli bir LDAP arama filtresi kullanın" msgid "Please use following links to download file backup." msgstr "" -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "Daha fazla bilgi için lütfen https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key adresini ziyaret edin." @@ -19523,7 +19622,7 @@ msgstr "Portal Menü Öğesi" msgid "Portal Settings" msgstr "Portal Ayarları" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "Portrait" @@ -19551,6 +19650,7 @@ msgstr "Posta" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "Posta Kodu" @@ -19559,15 +19659,7 @@ msgstr "Posta Kodu" msgid "Posting Timestamp" msgstr "Gönderim Saati" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "{0} tarafından gönderilen gönderiler" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19582,7 +19674,11 @@ msgstr "" msgid "Precision" msgstr "Kesinlik" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "" @@ -19630,7 +19726,7 @@ msgstr "" msgid "Prepared Report User" msgstr "Hazır Rapor Kullanıcısı" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "Hazırlanan rapor işleme başarısız oldu" @@ -19638,7 +19734,7 @@ msgstr "Hazırlanan rapor işleme başarısız oldu" msgid "Preparing Report" msgstr "Rapor Hazırlama" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "Şablonu e-posta mesajının önüne ekleyin" @@ -19659,7 +19755,7 @@ msgstr "Kaydetmek için Enter tuşuna basın." #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19673,13 +19769,6 @@ msgstr "Önizleme" msgid "Preview HTML" msgstr "" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19708,7 +19797,7 @@ msgid "Preview:" msgstr "Önizleme:" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19720,12 +19809,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "Önceki" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "Önceki Gönderim" @@ -19771,19 +19855,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:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: 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:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "Yazdır" @@ -19801,8 +19885,8 @@ 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:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19853,7 +19937,7 @@ msgstr "Yazdırma Biçimi Yardımı" msgid "Print Format Type" msgstr "Yazdırma Formatı Türü" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19892,7 +19976,7 @@ msgstr "Değer Yoksa Yazdırmayı Gizle" msgid "Print Language" msgstr "Yazdırma Dili" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "" @@ -19909,8 +19993,8 @@ msgstr "Yazdırma Sunucusu" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "Yazdırma Ayarları" @@ -19958,11 +20042,11 @@ msgstr "Belgeyi Yazdır" msgid "Print with letterhead" msgstr "Antetli Kağıda Yazdır" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "Yazıcı" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "Yazıcı Eşlemesi" @@ -19972,11 +20056,11 @@ msgstr "Yazıcı Eşlemesi" msgid "Printer Name" msgstr "Yazıcı Adı" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "Yazıcı Ayarları" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "Yazıcı eşlemesi ayarlanmadı." @@ -20034,7 +20118,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:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "Yine de Devam Et" @@ -20055,18 +20139,28 @@ msgstr "Prof" msgid "Profile" msgstr "Profil" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "Profil başarıyla güncellendi." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "İlerleme" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:422 msgid "Project" msgstr "Proje" #. Label of the property (Data) field in DocType 'Property Setter' -#: frappe/core/doctype/version/version_view.html:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: frappe/core/doctype/version/version_view.html:13 +#: frappe/core/doctype/version/version_view.html:38 +#: frappe/core/doctype/version/version_view.html:75 #: frappe/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "Özellik" @@ -20103,7 +20197,7 @@ msgstr "" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -20152,24 +20246,18 @@ msgstr "" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "Yayınla" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -20179,15 +20267,6 @@ msgstr "Yayınla" msgid "Published" msgstr "Yayınlandı" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "Yayınlanma Zamanı" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "Yayınlanma Tarihi" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json @@ -20277,7 +20356,9 @@ msgid "Put on Hold" msgstr "Beklemeye Alın" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "Python" @@ -20289,8 +20370,8 @@ 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:219 -msgid "QZ Tray Failed: " +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' @@ -20340,7 +20421,7 @@ msgstr "Sorgu Raporu" msgid "Query analysis complete. Check suggested indexes." msgstr "Sorgu analizi tamamlandı. Önerilen dizinleri kontrol edin." -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "Sorgu SELECT veya salt okunur WITH türünde olmalıdır." @@ -20440,7 +20521,7 @@ msgstr "Liste Filtresi" msgid "Quick Lists" msgstr "Listeler" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20477,12 +20558,6 @@ msgstr "Aralık" msgid "Rate Limiting" msgstr "" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20502,7 +20577,7 @@ msgstr "Değerlendirme" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "" @@ -20519,7 +20594,7 @@ msgstr "Ham E-posta" msgid "Raw Printing" msgstr "Sade Yazdırma" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "" @@ -20536,8 +20611,8 @@ msgid "Re:" msgstr "Cvp:" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "Ynt: {0}" @@ -20593,11 +20668,6 @@ msgstr "Sadece Okunur Koşulu (JS)" msgid "Read Only Mode" msgstr "Salt Okunur Modu" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "Okuma Süresi" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20613,7 +20683,7 @@ msgstr "Alıcı Tarafından Okundu" msgid "Read mode" msgstr "Okuma Modu" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "Daha fazlasını öğrenmek için belgeleri okuyun" @@ -20633,11 +20703,11 @@ msgstr "Gerçek Zamanlı (Socket.IO)" msgid "Reason" msgstr "Nedeni" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "Yeniden Oluştur" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "Ağaç Yapısını Tekrar Oluştur" @@ -20675,7 +20745,7 @@ msgstr "" msgid "Recent years are easy to guess." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "Son İşlemler" @@ -20686,6 +20756,14 @@ msgstr "Son İşlemler" msgid "Recipient" msgstr "Alıcı" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20718,7 +20796,7 @@ msgstr "" msgid "Records for following doctypes will be filtered" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "" @@ -20735,6 +20813,11 @@ msgstr "Kırmızı" msgid "Redirect HTTP Status" msgstr "HTTP Yönlendirme Durumu" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20829,6 +20912,11 @@ msgstr "Referans Tarihi" msgid "Reference Datetime" msgstr "Referans Tarihi" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20856,7 +20944,6 @@ msgstr "" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20897,9 +20984,9 @@ msgstr "Referans Döküman Adı" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20917,9 +21004,9 @@ msgstr "Referans Döküman Adı" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20949,7 +21036,6 @@ msgstr "Referans Belge Türü" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -20997,15 +21083,15 @@ msgstr "Referans: {0} {1}" msgid "Referrer" msgstr "Referans Olan" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "Yenile" @@ -21019,6 +21105,10 @@ msgstr "Tümünü Yenile" msgid "Refresh Google Sheet" msgstr "Google E-Tablosunu Yenile" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -21030,18 +21120,18 @@ msgstr "Google E-Tablosunu Yenile" msgid "Refresh Token" msgstr "Token Yenile" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "Yenileniyor" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "Yenileniyor..." -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "Kayıtlı ancak devre dışı" @@ -21218,7 +21308,7 @@ msgstr "Alanı Yeniden Adlandır" msgid "Rename {0}" msgstr "Yeniden Adlandır" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "Dosyalar yeniden adlandırıldı ve kod değiştirildi, lütfen kontrol edin!" @@ -21349,9 +21439,9 @@ msgstr "Tümünü Yanıtla" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "Rapor" @@ -21421,11 +21511,11 @@ 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:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "Rapor İsmi" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "Numara kartı oluşturmak için Rapor Adı, Rapor Alanı ve Fonksiyon gereklidir" @@ -21459,21 +21549,21 @@ msgstr "Rapor Görünümü" msgid "Report bug" msgstr "Hata bildir" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 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:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "Raporda veri yok, lütfen filtreleri veya Rapor Adını değiştirin" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 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:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "Rapor başlatıldı, durumu görüntülemek için tıklayın" @@ -21485,24 +21575,24 @@ 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:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "Rapor başarıyla güncellendi" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 msgid "Report was not saved (there were errors)" msgstr "Rapor Kaydedilemedi (hatalar içeriyor)" -#: frappe/public/js/frappe/views/reports/query_report.js:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 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:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "{0} Raporu" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "{0} Raporu silindi" @@ -21510,7 +21600,7 @@ msgstr "{0} Raporu silindi" msgid "Report {0} is disabled" msgstr "{0} Raporu devre dışı bırakıldı" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "{0} Raporu kaydedildi" @@ -21521,7 +21611,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:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "Raporlar" @@ -21529,7 +21619,7 @@ msgstr "Raporlar" msgid "Reports & Masters" msgstr "Raporlar & Kayıtlar" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "Raporlar zaten Kuyrukta" @@ -21548,7 +21638,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "" @@ -21600,6 +21693,11 @@ msgstr "İstek Zaman Aşımı" msgid "Request URL" msgstr "" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21651,11 +21749,11 @@ msgstr "Grafiği Sıfırla" msgid "Reset Dashboard Customizations" msgstr "Panoları Sıfırla" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "Alanları Sıfırla" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "LDAP Parolasını Sıfırla" @@ -21663,11 +21761,11 @@ msgstr "LDAP Parolasını Sıfırla" msgid "Reset Layout" msgstr "Yerleşimi Sıfırla" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "Tek Kullanımlık Şifreyi Sıfırla" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21702,7 +21800,7 @@ msgstr "Varsayılanlara Sıfırla" msgid "Reset sorting" msgstr "Sıralamayı Sıfırla" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "Varsayılana Dön" @@ -21740,6 +21838,7 @@ msgid "Resource TOS URI" msgstr "" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21749,11 +21848,6 @@ msgstr "" msgid "Response" msgstr "Yanıt" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "Yanıt " - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21812,7 +21906,7 @@ msgstr "Çalışma Alanını Sınırla" 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." -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "Kısıtlamalar" @@ -21846,7 +21940,7 @@ msgstr "Doğrulama ekranına dönün ve kimlik doğrulama uygulamanız tarafınd msgid "Reverse Icon Color" msgstr "Ters Simge Rengi" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "" @@ -21862,11 +21956,9 @@ 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 "" +msgstr "İptal Edildi" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21907,6 +21999,7 @@ msgstr "Robots.txt" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21920,6 +22013,7 @@ msgstr "Robots.txt" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21958,7 +22052,7 @@ msgstr "Sayfa ve Raporlar için İzinler" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "Rol İzinleri" @@ -21968,7 +22062,7 @@ msgstr "Rol İzinleri" msgid "Role Permissions Manager" msgstr "Rol İzinlerini Yönet" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "Rol İzinlerini Yönet" @@ -22011,6 +22105,7 @@ msgstr "Rol, {0} kullanıcısı türüne göre ayarlandı" #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -22020,6 +22115,7 @@ msgstr "Rol, {0} kullanıcısı türüne göre ayarlandı" #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -22056,7 +22152,7 @@ msgstr "Roller Html" msgid "Roles can be set for users from their User page." msgstr "Roller, kullanıcılar için Kullanıcı sayfasından ayarlanabilir." -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "{0} kök dizini silinemez" @@ -22076,8 +22172,6 @@ msgstr "Yuvarlama Yöntemi" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -22089,8 +22183,6 @@ msgstr "Yuvarlama Yöntemi" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -22115,24 +22207,24 @@ msgstr "Rota Yönlendirmeleri" msgid "Route: Example \"/app\"" msgstr "Rota: Örnek \"/app\"" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "Satır" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "Satır #" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "Satır # {0}: Yönetici olmayan kullanıcı {1} rolünü özel doctype'a ayarlayamaz" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "Satır #{0}:" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "Satır #{}: Alan adı gereklidir" @@ -22141,11 +22233,6 @@ msgstr "Satır #{}: Alan adı gereklidir" msgid "Row Format" msgstr "" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "Satır Dizini" - #. 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" @@ -22160,7 +22247,7 @@ msgstr "Satır Adı" msgid "Row Number" msgstr "Satır Numarası" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "Satır Değerleri Değişti" @@ -22168,30 +22255,33 @@ msgstr "Satır Değerleri Değişti" msgid "Row {0}" msgstr "Satır {0}" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "Satır {0}: Standart alanlar devre dışı bırakılamaz." -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "Satır {0}: Standart alanlar için Gönder'de İzin Ver'i etkinleştirmeye izin verilmiyor" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 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:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "Silinen Satırlar" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22282,7 +22372,7 @@ msgstr "SMS Parametresi" msgid "SMS Settings" msgstr "SMS Ayarları" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "" @@ -22360,7 +22450,7 @@ msgstr "Satış Gücü" msgid "Salutation" msgstr "Hitap" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "Aynı Alana birden fazla kez girilmiş" @@ -22388,20 +22478,20 @@ msgstr "Cumartesi" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22410,16 +22500,12 @@ msgstr "Cumartesi" msgid "Save" msgstr "Kaydet" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "API Gizli Anahtarını Kaydet: {0}" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "Yine de Kaydet" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "Farklı Kaydet" @@ -22427,11 +22513,11 @@ msgstr "Farklı Kaydet" msgid "Save Customizations" msgstr "Özelleştirmeleri Kaydet" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "Raporu Kaydet" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "Filtreleri Kaydet" @@ -22456,7 +22542,7 @@ msgstr "Kaydedildi" msgid "Saved Filters" msgstr "Kayıtlı Filitreler" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22535,7 +22621,7 @@ msgstr "Planlanmış Görev Türü" msgid "Scheduled Jobs Logs" msgstr "Planlanmış Görev Kayıtları" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "{0} betiği için planlanan yürütme güncellendi" @@ -22558,7 +22644,7 @@ msgstr "Zamanlayıcı" msgid "Scheduler Event" msgstr "Zamanlayıcı Etkinliği" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "Zamanlayıcı Etkin Değil" @@ -22571,7 +22657,7 @@ msgstr "Zamanlayıcı Durumu" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "Bakım modu aktifken zamanlayıcı yeniden etkinleştirilemez." -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "Zamanlayıcı etkin değil. Veri alınamıyor." @@ -22703,7 +22789,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:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "Arama alanı {0} geçerli değil" @@ -22803,7 +22889,7 @@ msgstr "Güvenlik Ayarları" msgid "See all Activity" msgstr "Tüm Aktiviteleri Göster" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "Tüm geçmiş raporları görün." @@ -22812,7 +22898,7 @@ msgstr "Tüm geçmiş raporları görün." msgid "See on Website" msgstr "Web Sitesinde Gör" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "Önceki yanıtları görün" @@ -22859,7 +22945,7 @@ msgstr "Görüntüleyenler Tablosu" #: frappe/core/doctype/report_filter/report_filter.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json -#: frappe/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22867,28 +22953,28 @@ msgstr "Seçim" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "Tümünü Seç" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "Dosya Seçimi" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "Alt Tabloyu Seçin" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 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:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "Sütunları Seç" @@ -22947,12 +23033,15 @@ msgstr "Alan Seçin" msgid "Select Field..." msgstr "Alan Seçin..." -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "Alanları Seçin" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "Eklenecek Alanları Seçin" @@ -22965,7 +23054,7 @@ msgstr "Güncellenecek Alanları Seçin" msgid "Select Filters" msgstr "Filtre Seçin" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "Etkinliğin senkronize edileceği Google Takvim'i seçin." @@ -22998,8 +23087,8 @@ msgstr "" msgid "Select Module" msgstr "Modül Seç" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "Ağ Yazıcısını Seçin" @@ -23064,14 +23153,14 @@ msgid "Select a field to edit its properties." msgstr "Düzenlemek için bir alan seçin." #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "Önce bir grup seçin." +msgid "Select a group {0} first." +msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 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:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 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" @@ -23101,13 +23190,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:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "Liste Öğesini Seç" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "Birden Fazla Öğe Seçin" @@ -23141,7 +23230,7 @@ msgstr "Farkı görmek için iki versiyonuda seçin." msgid "Select {0}" msgstr "{0} Seçimi" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "Kendi kendini onaylamaya izin verilmiyor" @@ -23325,7 +23414,7 @@ msgstr "Gönderen E-postası" msgid "Sender Email Field" msgstr "Gönderen E-posta Alanı" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "Gönderen Alanı seçeneklerinde E-posta olmalıdır" @@ -23419,7 +23508,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:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: 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" @@ -23429,7 +23518,7 @@ msgstr "Seri {0} zaten {1} adresinde kullanılıyor" msgid "Server Action" msgstr "Sunucu Aksiyonu" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "Sunucu Hatası" @@ -23448,7 +23537,7 @@ msgstr "Sunucu IP" msgid "Server Script" msgstr "Sunucu Komut Dosyası" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "Sunucu Komut Dosyaları devre dışı. Lütfen bench yapılandırmasından sunucu komut dosyalarını etkinleştirin." @@ -23495,7 +23584,7 @@ msgstr "Oturum Varsayılanları" msgid "Session Defaults Saved" msgstr "Oturum Varsayılanları Kaydedildi" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "Oturum Sonlandırıldı" @@ -23504,14 +23593,14 @@ msgstr "Oturum Sonlandırıldı" msgid "Session Expiry (idle timeout)" msgstr "Oturum Sonlanma Süresi" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "Oturum Süresi {0} formatında olmalıdır" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "Ayarla" @@ -23537,12 +23626,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\" msgstr "Bu Panodaki tüm grafikler için Varsayılan Seçenekleri Ayarlayın (Örnek: \"colors\": [\"#d1d8dd\", \"#ff5858\"])" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "Dinamik Filtreleri Ayarla" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23553,7 +23642,7 @@ msgstr "Filtreleri Ayarlayın" msgid "Set Filters for {0}" msgstr "{0} İçin Filtreleri Ayarla" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "Seviye Ayarla" @@ -23607,7 +23696,7 @@ msgstr "Miktarı Ayarla" msgid "Set Role For" msgstr "Rol Belirle" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "Kullanıcı İzinlerini Ayarla" @@ -23617,16 +23706,16 @@ msgstr "Kullanıcı İzinlerini Ayarla" msgid "Set Value" msgstr "Değer Ayarla" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "Özel" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "Herkese Açık" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "Varsayılan Yap" @@ -23645,18 +23734,21 @@ msgstr "Kullanıcı tarafından ayarlandı" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "Burada gerekli alanlar için JavaScript'te dinamik filtre değerleri ayarlayın." -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23772,14 +23864,9 @@ msgstr "Bize Ulaşın Sayfası Ayarları" msgid "Settings for the About Us Page" msgstr "Hakkımızda Sayfasının Ayarları" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "Blog kategorilerini ve yorumlar ve beğeniler gibi etkileşimleri kontrol etmek için 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:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "Kurulum" @@ -23795,8 +23882,8 @@ msgstr "Kurulum > Kullanıcı" msgid "Setup > User Permissions" msgstr "Kurulum > Kullanıcı İzinleri" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "Otomatik E-Postayı Ayarla" @@ -23865,11 +23952,6 @@ msgstr "Sevkiyat Adresi" msgid "Shop" msgstr "Mağaza" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "Kısa Adı" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "" @@ -23889,11 +23971,6 @@ msgstr "Kısa Yollar" msgid "Show" msgstr "Göster" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23946,7 +24023,13 @@ msgstr "Belgeyi Göster" msgid "Show Error" msgstr "Hatayı Göster" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -24074,7 +24157,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "Etiketleri Göster" @@ -24091,7 +24174,7 @@ msgstr "Başlığı Göster" msgid "Show Title in Link Fields" msgstr "Bağlantı Alanlarında Başlığı Göster" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "Toplamı Göster" @@ -24131,10 +24214,6 @@ msgstr "Tüm Versiyonları Göster" msgid "Show all activity" msgstr "Tüm etkinlikleri göster" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "Tüm blogları göster" - #. 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" @@ -24183,8 +24262,8 @@ msgstr "Belge bağlantısını göster" msgid "Show list" msgstr "Listeyi Göster" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "Ayrıntıları göster" @@ -24213,7 +24292,7 @@ msgstr "" msgid "Show {0} List" msgstr "{0} Listesini Göster" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "Rapordan yalnızca Sayısal alanlar gösteriliyor" @@ -24248,7 +24327,7 @@ msgstr "Kenar Çubuğu ve Yorumlar" msgid "Sign Up and Confirmation" msgstr "Kayıt ve Doğrulama" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "Kaydolma devre dışı bırakıldı" @@ -24285,36 +24364,36 @@ msgstr "Kayıt devre dışı bırakıldı" msgid "Signups have been disabled for this website." msgstr "Bu web sitesi için kayıtlar devre dışı bırakıldı." -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "Basit Python İfadesi, Örnek: Status in (\"Closed\", \"Cancelled\")" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" -msgstr "Basit Python İfadesi, Örnek: Status in (\"Closed\", \"Cancelled\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" -msgstr "Basit Python İfadesi, Örnek: status == 'Open' ve type == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" +msgstr "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "Eşzamanlı Oturumlar" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "Tek Sayfa DocType'lar özelleştirilemez." #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "Tek DocType Sayfaları ilişkili tabloları olmayan yalnızca tek kayıt alanı olan belgelerdir. Değerler tabSingles içinde saklanır." @@ -24322,7 +24401,7 @@ msgstr "Tek DocType Sayfaları ilişkili tabloları olmayan yalnızca tek kayıt msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "Site bakım veya site güncellemesi için salt okunur modda çalışıyor, bu işlem şu anda gerçekleştirilemiyor. Lütfen daha sonra tekrar deneyin." -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "Boyut" @@ -24541,11 +24620,11 @@ msgstr "Token oluşturma sırasında bir şeyler ters gitti. Yeni bir tane oluş msgid "Something went wrong." msgstr "Bir şeyler yanlış gitti." -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 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:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "Üzgünüm! Bu sayfayı görüntülemenize izin verilmiyor." @@ -24576,20 +24655,23 @@ msgstr "Sıralama Seçenekleri" msgid "Sort Order" msgstr "Sıralama" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 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/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "Kaynak" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24616,6 +24698,12 @@ msgstr "Gereksiz" msgid "SparkPost" msgstr "SparkPost" +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "Özel Karakterlere izin verilmez" @@ -24640,8 +24728,8 @@ msgstr "" msgid "Splash Image" msgstr "Açılış Görüntüsü" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "Sr" @@ -24673,11 +24761,11 @@ msgstr "" msgid "Standard" msgstr "Standart" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "Standart DocType silinemez." -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "Standart DocType varsayılan yazdırma biçimine sahip olamaz, Form Özelleştir'i kullanın" @@ -24689,7 +24777,7 @@ msgstr "Standart Belirlenmedi" msgid "Standard Permissions" msgstr "Standart İzinler" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "Standart Yazdırma Formatı güncellenemez" @@ -24697,11 +24785,11 @@ msgstr "Standart Yazdırma Formatı güncellenemez" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "Standart Baskı Stili değiştirilemez. Düzenlemek için lütfen çoğaltın." -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "Standart Raporlar silinemez" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "Standart Raporlar düzenlenemez" @@ -24733,8 +24821,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:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "Başlangıç" @@ -24742,7 +24830,7 @@ msgstr "Başlangıç" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24807,6 +24895,7 @@ msgstr "Başlangıç" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24815,7 +24904,7 @@ msgstr "Başlangıç" msgid "State" msgstr "Eyalet" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "" @@ -24871,6 +24960,7 @@ msgstr "Zaman Aralığı" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24895,6 +24985,7 @@ msgstr "Zaman Aralığı" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24902,8 +24993,8 @@ msgstr "Zaman Aralığı" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24940,7 +25031,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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24970,6 +25061,10 @@ msgstr "Tabloya Göre Depolama Kullanımı" msgid "Store Attached PDF Document" msgstr "Eklenen PDF Belgesini Sakla" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +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." @@ -25048,7 +25143,7 @@ msgstr "Alt Alan Adı" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -25064,7 +25159,7 @@ msgstr "Konu" msgid "Subject Field" msgstr "Konu" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "" @@ -25078,6 +25173,7 @@ msgstr "Gönderim Kuyruğu" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -25086,10 +25182,11 @@ msgstr "Gönderim Kuyruğu" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: 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:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "Gönder/İşle" @@ -25099,7 +25196,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "Gönder/İşle" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "Gönder/İşle" @@ -25123,7 +25220,7 @@ msgstr "İçe Aktardıktan Sonra Gönder" msgid "Submit an Issue" msgstr "Hata Bildir" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "Başka bir yanıt gönder" @@ -25135,7 +25232,7 @@ msgstr "Gönder Butonu Etiketi" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "Oluştururken Gönder" @@ -25147,7 +25244,7 @@ msgstr "Bu adımı tamamlamak için bu belgeyi gönderin." msgid "Submit this document to confirm" msgstr "Onaylamak için bu belgeyi gönderin" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "{0} belge gönderilsin mi?" @@ -25156,11 +25253,11 @@ msgstr "{0} belge gönderilsin mi?" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "İşlendi" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "" @@ -25183,9 +25280,7 @@ msgid "Subsidiary" msgstr "" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "Alt Başlık" @@ -25199,7 +25294,7 @@ msgstr "Alt Başlık" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25241,20 +25336,16 @@ msgstr "Başarılı mesajı" msgid "Success title" msgstr "Başarılı başlığı" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "Başarılı! Artık Hazırsınız 👍" - #. 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ı" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "Başarılı İşlemler" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "" @@ -25296,7 +25387,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "Önerilen Kullanıcı Adı: {0}" @@ -25418,7 +25509,7 @@ msgstr "Senkronize Ediliyor" msgid "Syncing {0} of {1}" msgstr "Senkronize Ediliyor {0}/{1}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "Sözdizimi Hatası" @@ -25541,6 +25632,7 @@ msgstr "Sistem Günlükleri" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25623,6 +25715,7 @@ msgstr "Sistem Günlükleri" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" msgstr "Sistem Yöneticisi" @@ -25696,7 +25789,7 @@ msgstr "Tablo" msgid "Table Break" msgstr "Sekme Sonu" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "Tablo Alanı" @@ -25705,7 +25798,7 @@ msgstr "Tablo Alanı" msgid "Table Fieldname" msgstr "Tablo Alan Adı" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "Tablo Alanı Adı Eksik" @@ -25727,11 +25820,11 @@ msgstr "Tablo Çoklu Seçim" msgid "Table Trimmed" msgstr "Tablo Temizlendi" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "Tablo güncellendi" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 msgid "Table {0} cannot be empty" msgstr "Tablo {0} boş olamaz" @@ -25773,11 +25866,18 @@ msgstr "Fotoğraf Çek" msgid "Target" msgstr "Hedef" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "Görev" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "Görevler" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25839,7 +25939,7 @@ msgstr "Şablon Uyarıları" msgid "Templates" msgstr "Şablonlar" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "Geçici Olarak Devre Dışı" @@ -25913,7 +26013,7 @@ msgstr "Bize ulaştığınız için teşekkür ederiz. En kısa sürede size ger "Sorunuz:\n\n" "{0}" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "Bu formu doldurmak için değerli zamanınızı ayırdığınız için teşekkür ederiz" @@ -25937,7 +26037,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:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "CSV formatı büyük/küçük harfe duyarlıdır" @@ -25950,15 +26050,15 @@ msgstr "Google Cloud Konsolundan altında elde edilen İstemci Kimliği" -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "Koşul '{0}' geçersiz" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "Girdiğiniz Dosya URL'si yanlış" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." msgstr "" @@ -26001,7 +26101,7 @@ msgstr "Değişiklikler geri alındı." msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "{0} sütunu {1} farklı tarih biçimine sahiptir. En yaygın olduğu için {2} varsayılan biçim olarak otomatik olarak ayarlanıyor. Lütfen bu sütundaki diğer değerleri bu biçime değiştirin." -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "Yorum alanı boş olamaz" @@ -26009,7 +26109,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:658 +#: frappe/public/js/frappe/list/list_view.js:687 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." @@ -26039,7 +26139,7 @@ msgstr "Seçilen belge türü bir alt tablo olduğundan, üst belge türü gerek msgid "The field {0} is mandatory" msgstr "{0} alanı zorunludur" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "" @@ -26111,15 +26211,19 @@ msgstr "Google Cloud Console'dan altında elde edilen proje numarası" -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

    Click here to download:
    {0}

    This link will expire in {1} hours." +msgstr "" + +#: frappe/core/doctype/user/user.py:1000 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:995 +#: frappe/core/doctype/user/user.py:1002 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:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "Aradığınız kaynak mevcut değil" @@ -26131,7 +26235,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:336 msgid "The system is being updated. Please refresh again after a few moments." msgstr "Sistem güncelleniyor. Lütfen birkaç dakika sonra tekrar yenileyin." @@ -26152,7 +26256,7 @@ msgstr "Yapıştırdığınız değer {0} karakter uzunluğunda. İzin verilen m msgid "The webhook will be triggered if this expression is true" msgstr "Bu ifade doğruysa web kancası tetiklenecektir" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "{0} zaten otomatik tekrarda {1}" @@ -26192,16 +26296,16 @@ 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:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "Aynı filtrelere sahip {0} zaten kuyrukta mevcut:" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "" @@ -26213,15 +26317,19 @@ 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 +msgid "There is no task called \"{}\"" +msgstr "" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "Şu anda size gösterecek yeni bir şey yok." -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 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:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "Aynı filtrelere sahip {0} kuyrukta zaten mevcut:" @@ -26233,7 +26341,7 @@ msgstr "" msgid "There was an error building this page" msgstr "Bu sayfayı oluştururken bir hata oluştu." -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "Filtreleri kaydederken bir hata oluştu" @@ -26245,11 +26353,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:840 +#: frappe/public/js/frappe/views/communication.js:843 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:494 +#: frappe/model/naming.py:502 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" @@ -26290,7 +26398,7 @@ msgstr "Üçüncü Taraf Kimlik Doğrulama" msgid "This Currency is disabled. Enable to use in transactions" msgstr "Bu Para Birimi aktif değil. İşlemlerde kullanmak için etkinleştirin." -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "Bu Kanban Panosu özel olacak" @@ -26298,6 +26406,10 @@ msgstr "Bu Kanban Panosu özel olacak" msgid "This Month" msgstr "" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "" @@ -26323,6 +26435,11 @@ msgstr "Bu eylem yalnızca {} için izin verilir" msgid "This cannot be undone" msgstr "Bu işlem geri alınamaz" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +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" @@ -26337,11 +26454,11 @@ msgstr "Bu ayar seçilirse, tüm Kullanıcılar tarafından kullanılabilir olac 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:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "Bu belge başka bir kullanıcı tarafından değiştirildiği için şu anda silinemiyor. Lütfen bir süre sonra tekrar deneyin." @@ -26383,7 +26500,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26399,7 +26516,7 @@ msgstr "Bu dosya herkese açıktır. Kimlik doğrulaması olmadan erişilebilir. 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:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "" @@ -26418,7 +26535,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "Bu slayt gösterisinin üstüne gelir." -#: frappe/public/js/frappe/views/reports/query_report.js:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 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." @@ -26442,12 +26559,6 @@ msgstr "Bu bir Sanal DocType türüdür ve veriler periyodik olarak temizlenir." msgid "This is an automatically generated reply" msgstr "Bu otomatik olarak oluşturulmuş bir cevaptır" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "Bu bir Google SERP Önizlemesi örneğidir." - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "" @@ -26466,7 +26577,7 @@ 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:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "" @@ -26474,7 +26585,7 @@ msgstr "" msgid "This month" msgstr "Bu Ay" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 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." @@ -26482,7 +26593,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:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "Bu rapor {0} oluşturuldu." @@ -26513,7 +26624,7 @@ msgstr "" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " +msgid "This value specifies the max number of rows that can be rendered in report view." msgstr "" #: frappe/website/doctype/web_page/web_page.js:85 @@ -26545,10 +26656,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " -msgstr "Bu işi hemen sonlandırmak tehlikeli olabilir, emin misiniz? " +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:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "" @@ -26624,9 +26735,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26697,11 +26810,11 @@ msgstr "Zaman Çizelgesi Bağlantıları" msgid "Timeline Name" msgstr "Zaman Çizelgesi Adı" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 msgid "Timeline field must be a Link or Dynamic Link" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "" @@ -26727,10 +26840,7 @@ msgid "Timespan" msgstr "Zaman Aralığında" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "Zaman Bilgisi" @@ -26750,9 +26860,6 @@ msgstr "" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26777,9 +26884,6 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26802,7 +26906,7 @@ msgstr "Başlık Alanı" msgid "Title Prefix" msgstr "Başlık Öneki" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "" @@ -26903,7 +27007,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:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "Güncellenmiş raporu almak için {0} adresine tıklayın." @@ -26958,7 +27062,7 @@ msgstr "Yapılacaklar" msgid "Today" msgstr "Bugün" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "Grafiği Aç/Kapat" @@ -26974,11 +27078,11 @@ msgstr "Izgara Görünümü" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "Kenar Çubuğunu Aç/Kapat" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "Kenar Çubuğunu Aç/Kapat" @@ -27024,7 +27128,7 @@ msgid "Tomorrow" msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "Çok Fazla Seçim Yapıldı" @@ -27040,7 +27144,7 @@ msgstr "Tek bir işlemde veritabanında çok fazla değişiklik yapıldı." msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 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" @@ -27102,10 +27206,10 @@ msgstr "Sağ Üst" msgid "Topic" msgstr "Konu" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "Toplam" @@ -27148,18 +27252,18 @@ msgstr "Toplam Çalışma Süresi" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " -msgstr "İlk senkronizasyon işleminde senkronize edilecek toplam e-posta sayısı " +msgid "Total number of emails to sync in initial sync process" +msgstr "İlk senkronizasyon işleminde senkronize edilecek toplam e-posta sayısı" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "Toplam:" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "Toplamlar" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "Toplam Satır" @@ -27227,26 +27331,10 @@ msgstr "" msgid "Tracking" msgstr "İzleme" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "İzleme bağlantısı oluşturuldu ve panoya kopyalandı" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "İşlem Günlüğü" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "İşlem Günlüğü Raporu" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "" @@ -27260,6 +27348,11 @@ msgstr "" msgid "Transition Rules" msgstr "Geçiş Kuralları" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" @@ -27274,7 +27367,7 @@ msgstr "Geçişler" msgid "Translatable" msgstr "Çevirilebilir" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27285,7 +27378,7 @@ msgstr "" msgid "Translate Link Fields" msgstr "Bağlantı Alanlarını Çevir" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "Değerleri çevir" @@ -27369,8 +27462,8 @@ msgstr "Tekrar Deneyin" msgid "Try a Naming Series" msgstr "Adlandırma Serisi Önizleme" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "Yeni Yazdırma Tasarımcısını Deneyin" @@ -27436,7 +27529,7 @@ msgstr "2 Adımlı Doğrulama Metodu" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27530,7 +27623,7 @@ msgstr "URL" msgid "URL for documentation or help" msgstr "Dökümatasyon yardımıcı için URL bağlantısı." -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "URL http:// veya https:// ile başlamalıdır" @@ -27633,7 +27726,7 @@ msgstr "Eksik bir e-posta hesabı nedeniyle e-posta gönderilemiyor. Lütfen Aya msgid "Unable to update event" msgstr "Etkinlik güncellenemiyor" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "{0} için dosya biçimi yazılamıyor" @@ -27642,7 +27735,7 @@ msgstr "{0} için dosya biçimi yazılamıyor" msgid "Unassign Condition" msgstr "Koşulu Kaldır" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27658,7 +27751,7 @@ msgstr "Geri Al" msgid "Undo last action" msgstr "Son işlemi geri al" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27705,7 +27798,7 @@ msgstr "Bilinmeyen Sütun: {0}" msgid "Unknown Rounding Method: {}" msgstr "Bilinmeyen Yuvarlama Yöntemi: {}" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "Bilinmeyen Kullanıcı" @@ -27717,8 +27810,7 @@ msgstr "" msgid "Unlock Reference Document" msgstr "Referans Belgesinin Kilidini Aç" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "Taslağa Çevir" @@ -27734,7 +27826,7 @@ msgstr "Okunmamış" msgid "Unread Notification Sent" msgstr "Okunmamış Bildirim Gönderildi" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "Güvenli olmayan SQL sorgusu" @@ -27772,8 +27864,8 @@ msgstr "" msgid "Unsubscribed" msgstr "Kaydolmamış" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27793,7 +27885,7 @@ msgstr "Sıkıştırılmamış {0} dosya" msgid "Unzipping files..." msgstr "Dosyalar açılıyor..." -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "Bugünün Yaklaşan Etkinlikleri" @@ -27807,7 +27899,7 @@ msgstr "Bugünün Yaklaşan Etkinlikleri" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "Güncelle" @@ -27841,6 +27933,11 @@ msgstr "Siparişi Güncelle" msgid "Update Password" msgstr "Şifreyi Güncelle" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27883,7 +27980,7 @@ msgstr "{0} Kaydı Güncelle" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "Güncellendi" @@ -27891,7 +27988,7 @@ msgstr "Güncellendi" msgid "Updated Successfully" msgstr "Başarıyla Güncellendi" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "Yeni Bir Sürüme Güncellendi 🎉" @@ -27899,7 +27996,7 @@ msgstr "Yeni Bir Sürüme Güncellendi 🎉" msgid "Updated successfully" msgstr "Başarıyla Güncellendi" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "Güncelleniyor" @@ -27944,8 +28041,8 @@ msgstr "" msgid "Upgrade your support experience with Frappe Helpdesk" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27955,11 +28052,11 @@ msgstr "Yükle" msgid "Upload Image" msgstr "Resim Yükle" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "Dosya Yükle" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "{0} dosya yükle" @@ -28056,15 +28153,11 @@ msgstr "Farklı E-posta Kimliği kullan" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "Varsayılan ayarların verilerinizi doğru şekilde algılamadığını düşünüyorsanız kullanın" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "" -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "Yeni Yazdırma Formatı Oluşturucuyu Kullan" @@ -28085,7 +28178,9 @@ msgid "Used OAuth" msgstr "OAuth Kullanıldı" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -28094,6 +28189,7 @@ msgstr "OAuth Kullanıldı" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -28108,11 +28204,12 @@ msgstr "OAuth Kullanıldı" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -28121,6 +28218,7 @@ msgstr "OAuth Kullanıldı" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -28137,17 +28235,11 @@ msgstr "OAuth Kullanıldı" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "Kullanıcı" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "Kullanıcı " - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "Kullanıcı '{0}' zaten '{1}' rolüne sahip" @@ -28177,7 +28269,7 @@ msgstr "Kullanıcı Oluşturamaz" msgid "User Cannot Search" msgstr "Kullanıcı Arama Yapamaz" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "Kullanıcı Değiştirildi" @@ -28241,11 +28333,6 @@ msgstr "Kullanıcı ID" msgid "User ID Property" msgstr "Kullanıcı Kimliği Özelliği" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28265,6 +28352,11 @@ msgstr "Kullanıcı Kimliği Alanı {0} kullanıcı türünde zorunludur" msgid "User Image" msgstr "Kullanıcı Resmi" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "Kullanıcı Menüsü" @@ -28283,12 +28375,12 @@ msgstr "Kullanıcı İzinleri" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "Kullanıcı İzinleri" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "Kullanıcı İzinleri" @@ -28301,7 +28393,9 @@ msgstr "Kullanıcı İzinleri, kullanıcıları belirli kayıtlarla sınırlamak msgid "User Permissions created successfully" msgstr "Kullanıcı İzinleri başarıyla oluşturuldu" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: 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ü" @@ -28367,6 +28461,10 @@ msgstr "Kullanıcı bulunamadı." msgid "User does not have permission to create the new {0}" msgstr "Kullanıcının yeni {0} oluşturmak için izni yok" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "Paylaşım için kullanıcı zorunludur" @@ -28397,7 +28495,7 @@ msgstr "Kullanıcı {0} silinemez" msgid "User {0} cannot be disabled" msgstr "Kullanıcı {0} devre dışı bırakılamaz" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "Kullanıcı {0} yeniden adlandırılamaz" @@ -28418,7 +28516,7 @@ msgstr "Kullanıcı {0} bir Çalışma Alanı oluşturma iznine sahip değil." msgid "User {0} has requested for data deletion" msgstr "{0} isimli Kullanıcı veri silme talebinde bulundu" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "{0}, {1} olarak kullanıyor" @@ -28426,7 +28524,7 @@ msgstr "{0}, {1} olarak kullanıyor" msgid "User {0} is disabled" msgstr "Kullanıcı {0} devre dışı" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "{0} isimli Kullanıcı devre dışı. Lütfen Sistem Yöneticinizle iletişime geçin." @@ -28447,7 +28545,7 @@ msgstr "" msgid "Username" msgstr "Kullanıcı Adı" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "Kullanıcı adı {0} zaten var" @@ -28531,7 +28629,7 @@ 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:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "Doğrulama Hatası" @@ -28554,8 +28652,8 @@ msgstr "Geçerlilik" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28587,7 +28685,7 @@ msgstr "Değer Değişti" msgid "Value To Be Set" msgstr "Ayarlanacak Değer" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "{0} Değeri Değiştirilemez" @@ -28603,11 +28701,11 @@ msgstr "{0} için değer negatif olamaz : {1}" msgid "Value for a check field can be either 0 or 1" msgstr "Bir kontrol alanı için değer 0 veya 1 olabilir" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 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:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "{0} için değer bir liste olamaz" @@ -28632,7 +28730,7 @@ msgstr "" msgid "Value to Validate" msgstr "Doğrulanacak Değer" -#: frappe/model/base_document.py:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "Değer çok büyük" @@ -28649,7 +28747,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:8 +#: frappe/core/doctype/version/version_view.html:9 msgid "Values Changed" msgstr "Değerler Değişti" @@ -28662,7 +28760,7 @@ msgstr "Verdana" msgid "Verification" msgstr "Doğrulama" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "Doğrulama Kodu" @@ -28724,15 +28822,7 @@ msgstr "Tümünü Göster" msgid "View Audit Trail" msgstr "Denetim İzini Görüntüle" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "Blog Yazısını Görüntüle" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "Yorumu Görüntüle" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "Doctype İzinlerini Görüntüle" @@ -28744,7 +28834,7 @@ msgstr "Dosyayı Göster" msgid "View Full Log" msgstr "Tam Günlüğü Görüntüle" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "Liste Görünümü" @@ -28754,7 +28844,7 @@ msgstr "Liste Görünümü" msgid "View Log" msgstr "Günlüğü Görüntüle" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "İzin Verilen Belgeleri Görüntüle" @@ -28801,7 +28891,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:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "Yanıtınızı görüntüleyin" @@ -28870,6 +28960,7 @@ msgid "Warehouse" msgstr "Depo" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "Uyarı" @@ -28878,7 +28969,7 @@ msgstr "Uyarı" 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:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "Uyarı: Adlandırma ayarlanmamış" @@ -28964,7 +29055,7 @@ msgstr "Web Sayfası" msgid "Web Page Block" msgstr "Web Sayfası Bloğu" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "Web Sayfası URL'si" @@ -29067,7 +29158,7 @@ msgstr "" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "Website" @@ -29080,10 +29171,6 @@ msgstr "Web Sitesi Analitiği" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -29127,7 +29214,7 @@ msgstr "Komut Dosyası" msgid "Website Search Field" msgstr "Web Sitesi Arama Alanı" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "Web Sitesi Arama Alanı geçerli bir alan adı olmalıdır" @@ -29344,11 +29431,6 @@ msgstr "Genel Filtre" msgid "Will add \"%\" before and after the query" msgstr "Sorgudan önce ve sonra \"%\" eklenecek" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "URL'de kullanılacak (genellikle ilk isim)." - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "Giriş kimliğiniz olacak" @@ -29363,7 +29445,7 @@ msgstr "Yalnızca bölüm başlıkları etkinleştirilmişse gösterilir" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "Antetli Kağıt ile" @@ -29441,7 +29523,7 @@ msgstr "İş Akışı Oluşturucu, iş akışlarını görsel olarak oluşturman msgid "Workflow Data" msgstr "İş Akışı Verileri" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "İş Akışı Ayrıntıları" @@ -29467,11 +29549,11 @@ msgstr "İş Akışı Durumu" msgid "Workflow State Field" msgstr "İş Akışı Durum Alanı" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "İş Akışı Durumu ayarlanmamış" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "İş Akışı Durumu geçişine {0} adresinden {1} adresine izin verilmiyor" @@ -29479,15 +29561,30 @@ msgstr "İş Akışı Durumu geçişine {0} adresinden {1} adresine izin verilmi msgid "Workflow States Don't Exist" msgstr "" -#: frappe/model/workflow.py:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "İş Akışı Durumu" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "İş Akışı Geçişi" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29503,13 +29600,13 @@ msgstr "İş akışı başarıyla güncellendi" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "Çalışma Alanı" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "Çalışma Alanı {0} mevcut değil" @@ -29579,11 +29676,11 @@ msgstr "{0} Çalışma Alanı Oluşturuldu" msgid "Workspaces" msgstr "Çalışma Alanları" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "" @@ -29602,11 +29699,11 @@ msgstr "Son dokunuşlar" msgid "Write" msgstr "Yazma" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "X Ekseni Alanı" @@ -29625,13 +29722,13 @@ msgstr "XLSX" msgid "Y Axis" msgstr "Y Ekseni" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" msgstr "Y Ekseni Alanları" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "Y Alanı" @@ -29683,16 +29780,17 @@ msgstr "Sarı" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "Evet" @@ -29720,6 +29818,18 @@ msgstr "Kendisi" msgid "You Liked" msgstr "Beğendin" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "İnternete bağlısınız." @@ -29758,20 +29868,20 @@ msgstr "Raporu düzenlemenize izin verilmiyor." #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "{} doctype'ı dışa aktarmanıza izin verilmiyor" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "Bu raporu yazdırmanıza izin verilmiyor" -#: frappe/public/js/frappe/views/communication.js:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "Bu belge ile ilişkili e-posta göndermenize izin verilmiyor" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "Bu Web Form Belgesini güncelleme izniniz yok" @@ -29795,7 +29905,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:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 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." @@ -29821,13 +29931,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "Aşağıdaki bağlantıyı tarayıcınıza kopyalayıp yapıştırabilirsiniz" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " -msgstr "Bunu da kopyalayıp yapıştırabilirsiniz " +msgid "You can also copy-paste this" +msgstr "Bunu da kopyalayıp yapıştırabilirsiniz" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "Ayrıca bu {0} adresini tarayıcınıza kopyalayıp yapıştırabilirsiniz" +#: frappe/templates/emails/user_invitation_expired.html:8 +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." @@ -29840,11 +29954,11 @@ msgstr "Saklama ayalarlarını {0} konumundan değiştirebilirsiniz." msgid "You can continue with the onboarding after exploring this page" msgstr "Bu sayfayı inceledikten sonra tanıtıma devam edebilirsiniz" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "Bu {0} öğesini silmek yerine devre dışı bırakabilirsiniz." -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "Sistem Ayarlarından limiti artırabilirsiniz." @@ -29864,7 +29978,7 @@ msgstr "Aynı anda en fazla {0} belge yazdırabilirsiniz" msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "Belge Türleri tablosunda yalnızca 3 özel belge türünü ayarlayabilirsiniz." -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "Sadece JPG, PNG, PDF, TXT, CSV veya Microsoft Ofis belgelerini yükleyebilirsiniz." @@ -29882,7 +29996,7 @@ msgstr "Aşağıdakilerden birini seçebilirsiniz," msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "Aynı ağdan birden fazla kullanıcı giriş yapacaksa buraya yüksek bir değer ayarlayabilirsiniz." -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "Raporunuzun filtrelerini değiştirmeyi deneyebilirsiniz." @@ -29894,11 +30008,11 @@ msgstr "Alanların yetki seviyelerini ayarlamak için Formu Özelleştir'i kulla msgid "You can use wildcard %" msgstr "Filtrede % karakteriyle arama yapabilirsiniz" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "{0} alanı için 'Seçenekler'i ayarlayamazsınız" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "{0} alanı için 'Çevrilebilir' ayarlayamazsınız" @@ -29916,7 +30030,7 @@ 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/custom/doctype/customize_form/customize_form.py:385 +#: 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" @@ -29946,7 +30060,7 @@ msgstr "{0} değerini {1} olarak değiştirdiniz" msgid "You created this" msgstr "Oluşturdunuz" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "" @@ -29959,15 +30073,15 @@ msgstr "{} için Okuma veya Seçme İzniniz yok" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "Bu kaynağa erişmek için yeterli izniniz yok. Erişim için lütfen yöneticinizle iletişime geçin." -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "İşlemi tamamlamak için yeterli izniniz yok" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29979,11 +30093,11 @@ msgstr "Bağlantılı tüm belgeleri iptal etme yetkiniz yok." msgid "You don't have access to Report: {0}" msgstr "Rapora erişiminiz yok: {0}" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "{0} isimli DocType erişimi için izniniz yok." -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "Bu dosyaya erişmek için gerekli izinlere sahip değilsiniz" @@ -29991,19 +30105,19 @@ msgstr "Bu dosyaya erişmek için gerekli izinlere sahip değilsiniz" msgid "You don't have permission to get a report on: {0}" msgstr "{0} Raporunu almak için izniniz yok." -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "Bu belgeye erişmek için gerekli izinlere sahip değilsiniz" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " -msgstr "Şu kişiden yeni bir mesajınız var: " +msgid "You have a new message from:" +msgstr "Şu kişiden yeni bir mesajınız var:" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "Başarıyla çıkış yaptınız" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 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}" @@ -30011,11 +30125,7 @@ msgstr "Veritabanı tablosunda satır boyutu sınırına ulaştınız: {0}" msgid "You have not entered a value. The field will be set to empty." msgstr "Herhang bir değer girilmedi. Alan boş olarak ayarlanacak." -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "Blog yazınızda ❤️ beğeni aldınız" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "Sistem Ayarlarından İki Faktörlü Kimlik Doğrulamayı etkinleştirmeniz gerekiyor." @@ -30035,7 +30145,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:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "Henüz bir {0} oluşturmadınız." @@ -30052,11 +30162,11 @@ msgstr "Düzenlediniz" msgid "You must add atleast one link." msgstr "En az bir bağlantı eklemelisiniz." -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "Bu formu kullanabilmek için giriş yapmalısınız." -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "Bu formu göndermek için giriş yapmalısınız" @@ -30080,7 +30190,7 @@ msgstr "Bu sayfaya erişebilmek için sistem kullanıcısı olmanız gerekmekted msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "Standart Web Formlarını düzenlemeniz için geliştirici modunda olmanız gerekiyor" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "Yedeklemelere erişmek için oturum açmanız ve Sistem Yöneticisi yetkilerine sahip olmanız gerekir." @@ -30088,13 +30198,13 @@ msgstr "Yedeklemelere erişmek için oturum açmanız ve Sistem Yöneticisi yetk msgid "You need to be logged in to access this page" msgstr "Bu sayfaya erişmek için giriş yapmanız gerekmektedir" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "{0} adresine erişmek için giriş yapmış olmanız gerekiyor." #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " -msgstr "Öncelikle şunları oluşturmanız gerekiyor: " +msgid "You need to create these first:" +msgstr "Öncelikle şunları oluşturmanız gerekiyor:" #: frappe/www/login.html:76 msgid "You need to enable JavaScript for your app to work." @@ -30128,11 +30238,19 @@ msgstr "Yeniden adlandırmak için {0} {1} üzerinde yazma iznine ihtiyacınız 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" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "Eki kaldırdınız {0}" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "Artık hazırsınız gibi görünüyor!" @@ -30163,10 +30281,26 @@ msgstr "Bu belgeyi takip etmeyi bıraktınız" msgid "You viewed this" msgstr "Bunu görüntülediniz" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "Başka bir sekmeden başka bir kullanıcı olarak oturum açtınız. Sistemi kullanmaya devam etmek için bu sayfayı yenileyin." +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "Youtube" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "" @@ -30196,7 +30330,7 @@ msgstr "Kısayollar" msgid "Your account has been deleted" msgstr "Hesabınız silindi" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "Hesabınız kilitlendi ve {0} saniye sonra yeniden erişilebilir olacak" @@ -30220,10 +30354,22 @@ msgstr "Google Takvim'e bağlantı isteğiniz başarıyla kabul edildi" msgid "Your email address" msgstr "E-posta Adresiniz" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "Formunuz başarıyla güncellendi" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "Giriş kimliğiniz" @@ -30246,7 +30392,11 @@ msgstr "E-posta alt bilgisi için kuruluşunuzun adı ve adresi." msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "Sorgunuz alındı. Kısa süre içinde geri dönüş yapacağız. Ek bilgileriniz varsa, lütfen bu e-postayı yanıtlayın." -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 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." @@ -30268,7 +30418,7 @@ msgstr "Sıfır" msgid "Zero means send records updated at anytime" msgstr "Sıfır, herhangi bir zamanda güncellenen kayıtları göndermek anlamına gelir" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" msgstr "" @@ -30290,10 +30440,6 @@ msgstr "" msgid "`job_id` paramater is required for deduplication." msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "{0} için satır ekledi." - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30328,7 +30474,7 @@ msgstr "Role Göre" msgid "cProfile Output" msgstr "cProfile Çıktısı" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "takvim" @@ -30473,12 +30619,12 @@ msgstr "" msgid "email" msgstr "e-posta" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "e-posta gelen kutusu" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "boş" @@ -30535,7 +30681,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "s" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "" @@ -30550,11 +30696,6 @@ msgstr "simge" msgid "import" msgstr "i̇çe Aktar" -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "dakika" - #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "eposta@ornek.com.tr" @@ -30563,7 +30704,7 @@ msgstr "eposta@ornek.com.tr" msgid "just now" msgstr "Şimdi" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "etiket" @@ -30592,7 +30733,7 @@ msgstr "liste" msgid "logged in" msgstr "giriş yaptı" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30613,11 +30754,6 @@ msgstr "d" msgid "merged {0} into {1}" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "dakika okuma süresi" - #. 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 @@ -30641,7 +30777,7 @@ msgstr "modül" msgid "module name..." msgstr "modül adı..." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "yeni" @@ -30770,10 +30906,6 @@ msgstr "okuma" msgid "red" msgstr "kırmızı" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "{0} için satırı sildi." - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "Önceki değer {0}, {1} olacak şekilde yeniden adlandırıldı." @@ -30829,19 +30961,19 @@ msgstr "paylaş" msgid "short" msgstr "kısa" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "Geçen Aydan Beri" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "Geçen Haftadan Beri" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "Geçen Yıldan Beri" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "dünden beri" @@ -30894,6 +31026,10 @@ msgstr "bu form" msgid "this shouldn't break" msgstr "" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "tarayıcınıza" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30921,7 +31057,7 @@ msgstr "" msgid "via Assignment Rule" msgstr "Atama Kuralı ile" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "" @@ -30935,7 +31071,7 @@ msgstr "Veri İçe Aktarma ile" msgid "via Google Meet" msgstr "Google Meet ile" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "Bildirim aracılığıyla" @@ -30968,10 +31104,15 @@ msgstr "öğeye tıklandığında, varsa açılır pencereyi odaklayacaktır." msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "" +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json @@ -30999,11 +31140,11 @@ msgstr "yyyy-mm-dd" msgid "{0}" msgstr "{0}" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "{0} ${type}" @@ -31029,19 +31170,19 @@ msgstr "{0} = {1}" msgid "{0} Calendar" msgstr "{0} Takvimi" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 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:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: 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:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "{0} Alanları" @@ -31065,6 +31206,10 @@ msgstr "{0} Beğendi" msgid "{0} List" msgstr "{0} Listesi" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "{0} A" @@ -31077,7 +31222,7 @@ msgstr "{0} Harita" msgid "{0} Name" msgstr "{0} İsmi" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "" @@ -31087,11 +31232,10 @@ msgstr "" msgid "{0} Report" msgstr "{0} Raporu" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "{0} Raporları" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "{0} Ayarları" @@ -31116,7 +31260,15 @@ msgstr "{0} Çalışma Alanı" msgid "{0} added" msgstr "{0} eklendi" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0} zaten mevcut. Başka bir isim deneyin." @@ -31128,7 +31280,7 @@ msgstr "{0} zaten aboneliği iptal etti" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0}, zaten {1} {2} için abonelikten çıkmış." -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "{0} ve {1}" @@ -31136,7 +31288,7 @@ msgstr "{0} ve {1}" msgid "{0} are currently {1}" msgstr "{0} şu anda {1}" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "{0} gereklidir" @@ -31153,7 +31305,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0} {1} dosyasını ekledi." -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "{0} {1} değerinden fazla olamaz" @@ -31195,11 +31347,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "{0} {1} değerini {2} olarak değiştirdi" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "{0} yorum" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." msgstr "" @@ -31212,7 +31360,7 @@ msgstr "{0} başarıyla oluşturuldu" msgid "{0} created this" msgstr "{0} oluşturdu." -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "" @@ -31234,7 +31382,7 @@ msgstr "{1} satırında {0} mevcut değil" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "{0} alanı {1} içinde benzersiz olarak ayarlanamaz, çünkü benzersiz olmayan mevcut değerler var" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31266,7 +31414,7 @@ msgstr "{0} hesabı {1} {2} ile ilgili aboneliği sonlandırıldı." msgid "{0} hours ago" msgstr "{0} saat önce" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "" @@ -31275,23 +31423,23 @@ msgstr "" msgid "{0} in row {1} cannot have both URL and child items" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "{0} zorunlu bir alandır" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "{0} geçerli bir zip dosyası değil" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "{0} geçersiz bir Veri alanıdır." -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "{0} 'Alıcılar' bölümünde geçersiz bir e-posta adresi var" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "" @@ -31300,27 +31448,27 @@ msgstr "" msgid "{0} is currently {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "{0} ile {1} eşittir" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "{0} değeri {1} değerinden büyük veya eşittir" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "{0} değeri {1} değerinden büyüktür" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "{0} değeri {1} değerinden küçük veya eşittir" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "{0} değeri {1} değerinden küçüktür" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "{0} {1} gibi" @@ -31328,7 +31476,7 @@ msgstr "{0} {1} gibi" msgid "{0} is mandatory" msgstr "{0} yaşam alanı" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31348,12 +31496,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:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0} Dinamik Bağlantı için geçerli bir DocType değil" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "{0} geçerli bir E-Posta Adresi değil." @@ -31361,15 +31509,15 @@ 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:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "{0} geçerli bir İsim değil" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "{0} geçerli bir Telefon Numarası değil" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 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." @@ -31385,55 +31533,59 @@ msgstr "{0}, {1} için geçerli bir üst alan değil" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0} geçerli bir rapor biçimi değil. Rapor biçimi aşağıdakilerden biri olmalıdır {1}" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "{0} bir zip dosyası değil" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "{0} ile {1} eşit değildir" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "{0} ile {1} benzer değil" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "{0} ayarlanmamış" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "{0} artık {1} belge türü için varsayılan yazdırma biçimidir" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 -#: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: 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/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "{0} ayarlandı" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "{0} Kayıt Seçildi" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31466,35 +31618,35 @@ msgstr "{0} dakika önce" msgid "{0} months ago" msgstr "{0} ay önce" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "{0} '{1}' ile başlamalıdır" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "{0} '{1}' değerine eşit olmalıdır" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "{0} hiçbiri {1} olmamalıdır" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "{0} önce ayarlanmalıdır" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "{0} benzersiz olmalıdır" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "" @@ -31502,7 +31654,7 @@ msgstr "" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "{0} geçerli bir Durum değildir" @@ -31515,11 +31667,11 @@ msgid "{0} not found" msgstr "{0} bulunamadı" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "{0}/{1} Kayıt Listeleniyor" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31528,7 +31680,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "Sadece {0}." -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "{0} veya {1}" @@ -31552,6 +31704,10 @@ msgstr "{0} kayıt silindi" msgid "{0} records will be exported" msgstr "{0} kayıt dışa aktarılacak" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31561,15 +31717,29 @@ msgstr "" msgid "{0} removed their assignment." msgstr "{0} atamalarını kaldırdı." -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 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:1794 -msgid "{0} row #{1}: " -msgstr "{0} satır #{1}: " +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" +msgstr "{0} satır #{1}:" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "{0} başarıyla kaydedildi" @@ -31589,11 +31759,11 @@ msgstr "{0} bu belgeyi herkesle paylaştı" msgid "{0} shared this document with {1}" msgstr "{0} bu belgeyi {1} ile paylaştı" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "{0} {1} ile aynı olmamalıdır" @@ -31606,8 +31776,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "{0} {1} bu dökümanı gönderdi." -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "{0} aboneler eklendi" @@ -31617,7 +31787,7 @@ msgstr "Bu tür e-postaları almaya devam etmek istemiyorsanız {0}" #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "" @@ -31625,7 +31795,7 @@ msgstr "" msgid "{0} un-shared this document with {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0} Güncellendi" @@ -31661,15 +31831,15 @@ msgstr "{0} {1} Eklendi" msgid "{0} {1} added to Dashboard {2}" msgstr "{0}: {1}, {2} Panosuna eklendi." -#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "{0} {1} zaten mevcut." -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "" @@ -31685,11 +31855,11 @@ msgstr "{0} {1} önceden kaydedilmiş dökümanlarla bağlantılı: {2}" msgid "{0} {1} not found" msgstr "{0} {1} bulunamadı." -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 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:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "{0}, Satır {1}" @@ -31697,79 +31867,79 @@ msgstr "{0}, Satır {1}" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "" -#: frappe/model/base_document.py:1120 +#: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "{0}: Oluşturmadan İçe Aktarma ayarlanamıyor" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 msgid "{0}: Cannot set import as {1} is not importable" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 +#: 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:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 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:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 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:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "{0}: Basit izinler ayarlanamadı" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 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:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 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:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 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:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 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" @@ -31777,7 +31947,7 @@ 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:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 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" @@ -31785,7 +31955,7 @@ msgstr "{0}: Daha yüksek seviyeler ayarlanmadan önce seviye 0'daki izin ayarla msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "" @@ -31798,11 +31968,11 @@ msgstr "{0}: {1}" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}: {1} ile {2}" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "" @@ -31826,7 +31996,7 @@ msgstr "{count} satır seçildi" msgid "{count} rows selected" msgstr "{count} satır seçildi" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "" @@ -31834,11 +32004,11 @@ msgstr "" msgid "{} Complete" msgstr "{} Tamamlandı" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
    {}" msgstr "{} Muhtemelen geçersiz python kodu.
    {}" @@ -31864,7 +32034,7 @@ msgstr "{} devre dışı bırakılmıştır. Yalnızca {} işaretliyse etkinleş msgid "{} is not a valid date string." msgstr "{} geçerli bir tarih dizesi değil." -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/vi.po b/frappe/locale/vi.po index 58a5454180..448aa505f7 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-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-21 21:50\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Vietnamese\n" "MIME-Version: 1.0\n" @@ -18,10 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: vi_VN\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr "" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json @@ -61,7 +57,7 @@ msgstr "" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" msgstr "" @@ -74,7 +70,7 @@ msgstr "" msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "" @@ -82,19 +78,23 @@ msgstr "" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" msgstr "" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "" @@ -102,11 +102,11 @@ msgstr "" msgid "(Mandatory)" msgstr "" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" msgstr "" @@ -122,7 +122,7 @@ msgstr "" msgid "0 is highest" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "" @@ -140,15 +140,11 @@ msgstr "" msgid "1 Google Calendar Event synced." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "" @@ -157,17 +153,17 @@ msgid "1 hour" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "" @@ -179,37 +175,47 @@ msgstr "" msgid "1 record will be exported" msgstr "" -#: frappe/tests/test_utils.py:711 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "" + +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "" @@ -225,7 +231,7 @@ msgstr "" msgid "5 Records" msgstr "" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "" @@ -245,6 +251,13 @@ msgstr "" msgid "<=" msgstr "" +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "" @@ -254,6 +267,16 @@ msgstr "" msgid "
    Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
    " msgstr "" +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

    Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

    " +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

    Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

    " +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -479,7 +502,7 @@ msgid "

    To interact with above HTML you will have to use `root_element` as a p "" msgstr "" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

    " msgstr "" @@ -546,7 +569,7 @@ msgstr "" msgid ">=" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "" @@ -555,15 +578,16 @@ msgstr "" msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." msgstr "" #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "" @@ -576,7 +600,7 @@ msgstr "" msgid "A new account has been created for you at {0}" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "" @@ -675,13 +699,17 @@ msgstr "" msgid "API Endpoint Args" msgstr "" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -700,6 +728,10 @@ msgstr "" msgid "API Key cannot be regenerated" msgstr "" +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -720,7 +752,7 @@ msgstr "" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -767,6 +799,20 @@ msgstr "" msgid "About {0} seconds remaining" msgstr "" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -792,7 +838,7 @@ msgstr "" msgid "Access Token URL" msgstr "" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "" @@ -856,7 +902,7 @@ msgstr "" msgid "Action Complete" msgstr "" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "" @@ -908,7 +954,7 @@ msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "" @@ -965,7 +1011,7 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -976,7 +1022,7 @@ msgstr "" msgid "Add" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "" @@ -988,7 +1034,7 @@ msgstr "" msgid "Add A New Rule" msgstr "" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "" @@ -1008,7 +1054,7 @@ msgstr "" msgid "Add Border at Top" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "" @@ -1021,10 +1067,10 @@ msgid "Add Child" msgstr "" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "" @@ -1083,7 +1129,7 @@ msgstr "" msgid "Add Query Parameters" msgstr "" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "" @@ -1116,12 +1162,12 @@ msgstr "" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "" @@ -1210,7 +1256,7 @@ msgstr "" msgid "Add page break" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "" @@ -1248,7 +1294,7 @@ msgstr "" msgid "Add {0}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" msgstr "" @@ -1291,6 +1337,7 @@ msgstr "" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1299,6 +1346,7 @@ msgstr "" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "" @@ -1306,6 +1354,7 @@ msgstr "" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "" @@ -1356,7 +1405,7 @@ msgstr "" msgid "Adds a custom field to a DocType" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "" @@ -1370,7 +1419,6 @@ msgstr "" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1383,11 +1431,11 @@ msgstr "" msgid "Administrator" msgstr "" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "" @@ -1408,8 +1456,8 @@ msgstr "" msgid "Advanced Control" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" msgstr "" @@ -1468,7 +1516,7 @@ msgstr "" msgid "After Submit" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "" @@ -1495,11 +1543,11 @@ msgstr "" msgid "Alerts and Notifications" msgstr "" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1564,7 +1612,7 @@ msgstr "" msgid "All Records" msgstr "" -#: frappe/public/js/frappe/form/form.js:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "" @@ -1624,7 +1672,7 @@ msgstr "" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " +msgid "Allow Consecutive Login Attempts" msgstr "" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 @@ -1645,11 +1693,6 @@ msgstr "" msgid "Allow Guest to View" msgstr "" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1698,7 +1741,7 @@ msgid "Allow Print for Cancelled" msgstr "" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "" @@ -1930,7 +1973,7 @@ msgstr "" msgid "Allows skipping authorization if a user has active tokens." msgstr "" -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "" @@ -1938,11 +1981,11 @@ msgstr "" msgid "Already in the following Users ToDo list:{0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "" @@ -1951,6 +1994,12 @@ msgstr "" msgid "Alternative Email ID" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2002,10 +2051,8 @@ msgstr "" msgid "Amended Documents" msgstr "" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "" @@ -2029,6 +2076,11 @@ msgstr "" msgid "Amendment naming rules updated." msgstr "" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 msgid "An error occurred while setting Session Defaults" msgstr "" @@ -2122,10 +2174,12 @@ msgid "App Logo" msgstr "" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2196,6 +2250,10 @@ msgstr "" msgid "Application Version" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2205,7 +2263,7 @@ msgstr "" msgid "Apply" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "" @@ -2253,7 +2311,7 @@ msgstr "" msgid "Apply to all Documents Types" msgstr "" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "" @@ -2286,7 +2344,11 @@ msgstr "" msgid "Archived Columns" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "" @@ -2314,11 +2376,15 @@ msgctxt "Confirmation dialog message" msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:191 msgid "Are you sure you want to discard the changes?" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "" @@ -2326,7 +2392,7 @@ msgstr "" msgid "Are you sure you want to merge {0} with {1}?" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "" @@ -2381,6 +2447,12 @@ msgstr "" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2390,7 +2462,7 @@ msgstr "" msgid "Assign To" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "" @@ -2453,6 +2525,11 @@ msgstr "" msgid "Assigned To/Owner" msgstr "" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "" @@ -2522,7 +2599,13 @@ msgstr "" msgid "Assignments" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "" @@ -2602,7 +2685,7 @@ msgstr "" msgid "Attached To Name" msgstr "" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "" @@ -2618,7 +2701,7 @@ msgstr "" msgid "Attachment Limit (MB)" msgstr "" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "" @@ -2636,15 +2719,15 @@ 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:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "" @@ -2667,6 +2750,10 @@ msgstr "" msgid "Auth URL Data" msgstr "" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "" + #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authenticate as Service Principal" @@ -2684,7 +2771,7 @@ msgid "Authentication" msgstr "" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " +msgid "Authentication Apps you can use are:" msgstr "" #: frappe/email/doctype/email_account/email_account.py:339 @@ -2798,11 +2885,11 @@ msgstr "" msgid "Auto Repeat Day" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "" @@ -2810,11 +2897,16 @@ msgstr "" msgid "Auto Repeat Schedule" msgstr "" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "" @@ -2858,7 +2950,7 @@ msgstr "" msgid "Auto follow documents that you create" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "" @@ -2906,7 +2998,7 @@ msgstr "" msgid "Automatically Assign Documents to Users" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "" @@ -2920,11 +3012,6 @@ msgstr "" msgid "Automation" msgstr "" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3196,8 +3283,8 @@ msgstr "" #. Label of the based_on (Link) field in DocType 'Language' #: frappe/core/doctype/language/language.json -#: frappe/printing/page/print/print.js:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "" @@ -3314,10 +3401,8 @@ msgstr "" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "" @@ -3347,64 +3432,6 @@ msgstr "" msgid "Blocked" msgstr "" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3501,13 +3528,6 @@ msgstr "" msgid "Breadcrumbs" msgstr "" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3565,15 +3585,15 @@ msgstr "" msgid "Bulk Edit" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" msgstr "" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "" @@ -3588,7 +3608,7 @@ msgstr "" msgid "Bulk Update" msgstr "" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "" @@ -3600,7 +3620,7 @@ msgstr "" msgid "Bulk operations only support up to 500 documents." msgstr "" -#: frappe/model/workflow.py:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "" @@ -3730,16 +3750,6 @@ msgstr "" msgid "CSV" msgstr "" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3790,11 +3800,6 @@ msgstr "" msgid "Call To Action URL" msgstr "" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -3812,7 +3817,7 @@ msgid "Camera" msgstr "" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -3848,7 +3853,7 @@ msgstr "" msgid "Can not rename as column {0} is already present on DocType." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "" @@ -3872,14 +3877,15 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "" @@ -3897,16 +3903,18 @@ msgstr "" msgid "Cancel All Documents" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -3944,11 +3952,11 @@ msgstr "" msgid "Cannot Remove" msgstr "" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "" @@ -3956,7 +3964,7 @@ msgstr "" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "" @@ -3964,11 +3972,11 @@ msgstr "" msgid "Cannot cancel {0}." msgstr "" -#: frappe/model/document.py:1013 +#: frappe/model/document.py:1017 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "" -#: frappe/model/document.py:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "" @@ -3976,11 +3984,11 @@ msgstr "" msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "" @@ -3992,11 +4000,11 @@ msgstr "" msgid "Cannot create private workspace of other users" msgstr "" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "" @@ -4031,7 +4039,7 @@ msgstr "" msgid "Cannot delete {0}" msgstr "" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" msgstr "" @@ -4039,7 +4047,7 @@ msgstr "" msgid "Cannot edit Standard Dashboards" msgstr "" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "" @@ -4051,7 +4059,7 @@ msgstr "" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "" -#: frappe/model/document.py:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "" @@ -4059,8 +4067,8 @@ msgstr "" msgid "Cannot edit filters for standard charts" msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "" @@ -4068,27 +4076,27 @@ msgstr "" msgid "Cannot edit standard fields" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:884 msgid "Cannot have multiple printers mapped to a single print format." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1132 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "" -#: frappe/model/document.py:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "" @@ -4100,11 +4108,11 @@ msgstr "" msgid "Cannot match column {0} with any field" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "" @@ -4112,7 +4120,7 @@ msgstr "" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "" @@ -4129,11 +4137,11 @@ msgstr "" msgid "Cannot update {0}" msgstr "" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "" @@ -4201,15 +4209,6 @@ msgstr "" msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4247,7 +4246,7 @@ msgstr "" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
    \n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " +"Warning: Incorrectly updating counters can prevent documents from getting created." msgstr "" #. Label of the changed_at (Datetime) field in DocType 'Permission Log' @@ -4317,7 +4316,7 @@ msgstr "" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "" @@ -4350,7 +4349,7 @@ msgstr "" msgid "Check" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "" @@ -4358,7 +4357,7 @@ msgstr "" msgid "Check columns to select, drag to set order." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "" @@ -4399,11 +4398,6 @@ msgstr "" msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "" -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "" @@ -4413,17 +4407,17 @@ msgstr "" msgid "Child Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4452,6 +4446,7 @@ msgid "Choose authentication method to be used by all users" 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 msgid "City" msgstr "" @@ -4466,7 +4461,7 @@ msgstr "" msgid "Clear" msgstr "" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "" @@ -4478,7 +4473,7 @@ msgstr "" msgid "Clear All" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "" @@ -4504,7 +4499,7 @@ msgstr "" msgid "Clear User Permissions" msgstr "" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "" @@ -4516,11 +4511,15 @@ msgstr "" msgid "Click On Customize to add your first widget" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "" @@ -4551,24 +4550,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "" @@ -4746,7 +4745,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "" @@ -4801,7 +4800,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:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -4857,11 +4856,11 @@ msgstr "" msgid "Column Name cannot be empty" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "" @@ -4888,7 +4887,7 @@ msgstr "" msgid "Columns / Fields" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "" @@ -4930,16 +4929,6 @@ msgstr "" msgid "Comment can only be edited by the owner" msgstr "" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "" @@ -4947,7 +4936,7 @@ msgstr "" #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "" @@ -4956,7 +4945,7 @@ msgstr "" msgid "Comments and Communications will be associated with this linked document" msgstr "" -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "" @@ -5028,12 +5017,12 @@ msgid "Company Name" msgstr "" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "" @@ -5113,8 +5102,8 @@ msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5128,6 +5117,11 @@ msgstr "" msgid "Condition JSON" msgstr "" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5153,11 +5147,11 @@ msgstr "" msgid "Configuration" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "" @@ -5182,7 +5176,7 @@ msgstr "" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "" -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "" @@ -5201,7 +5195,7 @@ msgstr "" msgid "Confirm Deletion of Account" msgstr "" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "" @@ -5228,7 +5222,7 @@ msgstr "" msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "" @@ -5246,8 +5240,8 @@ msgstr "" msgid "Connected User" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "" @@ -5298,6 +5292,10 @@ msgstr "" msgid "Contact" msgstr "" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
    {0}" +msgstr "" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5355,15 +5353,13 @@ msgstr "" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5371,24 +5367,12 @@ msgstr "" msgid "Content" msgstr "" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "" @@ -5456,7 +5440,7 @@ msgstr "" msgid "Copy embed code" msgstr "" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "" @@ -5464,12 +5448,16 @@ msgstr "" msgid "Copy to Clipboard" msgstr "" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "" + #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "" @@ -5477,7 +5465,7 @@ msgstr "" msgid "Core Modules {0} cannot be searched in Global Search." msgstr "" -#: frappe/printing/page/print/print.js:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "" @@ -5485,7 +5473,7 @@ msgstr "" msgid "Could not connect to outgoing email server" msgstr "" -#: frappe/model/document.py:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "" @@ -5493,15 +5481,15 @@ msgstr "" msgid "Could not map column {0} to field {1}" msgstr "" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " +msgid "Could not start up:" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "" @@ -5546,13 +5534,14 @@ msgstr "" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "" @@ -5584,13 +5573,13 @@ msgstr "" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "" @@ -5604,7 +5593,7 @@ msgid "Create Card" msgstr "" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "" @@ -5638,12 +5627,12 @@ msgstr "" msgid "Create New" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "" @@ -5651,7 +5640,7 @@ msgstr "" msgid "Create New Kanban Board" msgstr "" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "" @@ -5663,7 +5652,7 @@ msgstr "" msgid "Create a Reminder" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "" @@ -5671,11 +5660,11 @@ msgstr "" msgid "Create a new record" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "" @@ -5691,7 +5680,7 @@ msgstr "" msgid "Create or Edit Workflow" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "" @@ -5701,7 +5690,7 @@ msgstr "" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "" @@ -5717,7 +5706,7 @@ msgstr "" msgid "Created By" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "" @@ -5729,7 +5718,7 @@ msgstr "" msgid "Created On" msgstr "" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "" @@ -6038,7 +6027,7 @@ msgstr "" #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "" @@ -6066,14 +6055,14 @@ msgstr "" msgid "Customizations for {0} exported to:
    {1}" msgstr "" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "" @@ -6092,7 +6081,7 @@ msgstr "" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "" @@ -6170,7 +6159,7 @@ msgstr "" msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "" -#: frappe/desk/doctype/event/event.py:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "" @@ -6217,7 +6206,7 @@ msgstr "" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "" @@ -6276,7 +6265,6 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6289,7 +6277,6 @@ msgstr "" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6325,7 +6312,7 @@ msgstr "" msgid "Data Import Template" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "" @@ -6356,7 +6343,7 @@ msgstr "" msgid "Database Storage Usage By Tables" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "" @@ -6494,11 +6481,11 @@ msgstr "" msgid "Debug Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "" @@ -6660,11 +6647,11 @@ msgstr "" msgid "Default display currency" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 msgid "Default value for {0} must be in the list of options." msgstr "" @@ -6698,6 +6685,12 @@ msgstr "" msgid "Defines actions on states and the next step and allowed roles." msgstr "" +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6715,22 +6708,27 @@ 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/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "" @@ -6739,6 +6737,12 @@ msgstr "" 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 +msgid "Delete Background Exported Reports After (Hours)" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6748,7 +6752,7 @@ msgstr "" msgid "Delete Data" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "" @@ -6762,7 +6766,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "" @@ -6771,7 +6775,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "" @@ -6804,12 +6808,12 @@ msgstr "" msgid "Delete this record to allow sending to this email address" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "" @@ -6845,11 +6849,15 @@ msgstr "" msgid "Deleted Name" msgstr "" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "" @@ -6864,7 +6872,7 @@ msgstr "" #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " +msgid "Deletion Steps" msgstr "" #: frappe/core/doctype/page/page.py:110 @@ -6881,7 +6889,7 @@ msgstr "" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "" @@ -6908,7 +6916,7 @@ msgstr "" msgid "Dependencies" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "" @@ -6943,7 +6951,6 @@ msgstr "" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -6964,7 +6971,6 @@ msgstr "" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -6974,11 +6980,6 @@ msgstr "" msgid "Description" msgstr "" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -7062,7 +7063,7 @@ msgstr "" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "" @@ -7123,11 +7124,6 @@ msgstr "" msgid "Disable Comment Count" msgstr "" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7145,11 +7141,6 @@ msgstr "" msgid "Disable Document Sharing" msgstr "" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "" @@ -7159,6 +7150,11 @@ msgstr "" msgid "Disable SMTP server authentication" msgstr "" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7204,7 +7200,6 @@ msgstr "" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7219,7 +7214,6 @@ msgstr "" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "" @@ -7230,7 +7224,7 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "" @@ -7248,7 +7242,7 @@ msgstr "" msgid "Discard {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "" @@ -7271,7 +7265,7 @@ msgstr "" msgid "Discussion Topic" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7307,19 +7301,23 @@ msgstr "" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " +msgid "Do Not Create New User" msgstr "" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "" @@ -7410,7 +7408,7 @@ msgstr "" msgid "DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1577 +#: frappe/core/doctype/doctype/doctype.py:1578 msgid "DocType {0} provided for the field {1} must have atleast one Link field" msgstr "" @@ -7457,11 +7455,11 @@ msgstr "" msgid "DocType View" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "" @@ -7470,7 +7468,7 @@ msgstr "" msgid "DocType is a Table / Form in the application." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "" @@ -7503,7 +7501,7 @@ msgstr "" msgid "DocType {} not found" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "" @@ -7517,7 +7515,7 @@ msgstr "" msgid "Doctype" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "" @@ -7579,31 +7577,29 @@ msgstr "" msgid "Document Links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7745,13 +7741,13 @@ msgstr "" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 msgid "Document Type and Function are required to create a number card" msgstr "" @@ -7788,7 +7784,7 @@ msgid "Document Types and Permissions" msgstr "" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "" @@ -7796,15 +7792,15 @@ msgstr "" msgid "Document follow is not enabled for this user." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "" @@ -7946,13 +7942,13 @@ msgstr "" msgid "Double click to edit label" msgstr "" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "" @@ -7979,7 +7975,7 @@ msgstr "" msgid "Download PDF" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "" @@ -8042,7 +8038,7 @@ msgstr "" msgid "Drag to add state" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "" @@ -8075,7 +8071,7 @@ msgstr "" msgid "Duplicate Filter Name" msgstr "" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "" @@ -8174,17 +8170,17 @@ msgstr "" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8192,7 +8188,7 @@ msgstr "" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "" @@ -8202,7 +8198,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "" @@ -8231,7 +8227,7 @@ msgstr "" msgid "Edit DocType" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "" @@ -8249,7 +8245,7 @@ msgstr "" msgid "Edit Footer" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "" @@ -8334,7 +8330,7 @@ msgstr "" msgid "Edit to add content" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "" @@ -8343,7 +8339,7 @@ msgstr "" msgid "Edit your workflow visually using the Workflow Builder." msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "" @@ -8351,7 +8347,7 @@ msgstr "" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "" @@ -8390,11 +8386,14 @@ msgstr "" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8403,6 +8402,7 @@ msgstr "" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8412,6 +8412,8 @@ msgstr "" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "" @@ -8443,7 +8445,7 @@ msgstr "" msgid "Email Account Name" msgstr "" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "" @@ -8531,6 +8533,7 @@ msgid "Email IDs" msgstr "" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "" @@ -8574,9 +8577,9 @@ msgstr "" msgid "Email Rule" msgstr "" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" msgstr "" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' @@ -8642,11 +8645,11 @@ msgstr "" msgid "Email has been moved to trash" msgstr "" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "" -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "" @@ -8685,7 +8688,7 @@ msgstr "" msgid "Embed code copied" msgstr "" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8693,7 +8696,7 @@ msgstr "" msgid "Empty column" msgstr "" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -8712,7 +8715,7 @@ msgstr "" msgid "Enable Address Autocompletion" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "" @@ -8738,11 +8741,6 @@ msgstr "" msgid "Enable Dynamic Client Registration" msgstr "" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -8836,11 +8834,6 @@ msgstr "" msgid "Enable Social Login" msgstr "" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "" @@ -8848,7 +8841,7 @@ msgstr "" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "" @@ -8860,12 +8853,6 @@ msgstr "" msgid "Enable developer mode to create a standard Web Template" msgstr "" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "" - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -8888,6 +8875,7 @@ msgstr "" #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -8900,6 +8888,7 @@ msgstr "" #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "" @@ -8925,14 +8914,10 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "" - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." msgstr "" #. Description of the 'Queue in Background (BETA)' (Check) field in DocType @@ -8949,11 +8934,11 @@ msgstr "" msgid "Encrypt Backups" msgstr "" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "" @@ -8965,7 +8950,7 @@ msgstr "" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -8981,6 +8966,10 @@ msgstr "" msgid "End Date cannot be before Start Date!" msgstr "" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9025,7 +9014,7 @@ msgstr "" msgid "Enter Code displayed in OTP App." msgstr "" -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "" @@ -9095,10 +9084,17 @@ msgstr "" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9108,7 +9104,7 @@ msgstr "" msgid "Error" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "" @@ -9128,7 +9124,7 @@ msgstr "" msgid "Error Message" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 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 "" @@ -9156,9 +9152,9 @@ msgstr "" msgid "Error in Header/Footer Script" msgstr "" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "" @@ -9178,19 +9174,19 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "" -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "" @@ -9247,7 +9243,7 @@ msgstr "" msgid "Events" msgstr "" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "" @@ -9331,7 +9327,7 @@ msgstr "" msgid "Execute Console script" msgstr "" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "" @@ -9339,7 +9335,7 @@ msgstr "" msgid "Executing..." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "" @@ -9365,12 +9361,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9398,7 +9394,9 @@ msgid "Expire Notification On" msgstr "" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "" @@ -9426,13 +9424,13 @@ msgstr "" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "" @@ -9469,7 +9467,7 @@ msgstr "" msgid "Export Import Log" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "" @@ -9478,11 +9476,11 @@ msgstr "" msgid "Export Type" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "" @@ -9490,6 +9488,10 @@ msgstr "" msgid "Export as zip" msgstr "" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "" @@ -9595,7 +9597,7 @@ msgstr "" msgid "Failed Logins (Last 30 days)" msgstr "" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "" @@ -9612,7 +9614,7 @@ msgstr "" msgid "Failed to complete setup" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "" @@ -9621,15 +9623,15 @@ msgstr "" msgid "Failed to connect to server" msgstr "" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "" -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "" @@ -9637,8 +9639,8 @@ msgstr "" msgid "Failed to enable scheduler: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "" @@ -9654,7 +9656,7 @@ msgstr "" msgid "Failed to generate preview of series" msgstr "" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "" @@ -9674,11 +9676,11 @@ msgstr "" msgid "Failed to optimize image: {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "" @@ -9728,12 +9730,6 @@ msgstr "" msgid "Fax" msgstr "" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "" @@ -9791,17 +9787,17 @@ msgstr "" #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "" @@ -9814,7 +9810,7 @@ msgstr "" msgid "Field Description" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "" @@ -9844,7 +9840,7 @@ msgstr "" msgid "Field Type" msgstr "" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "" @@ -9870,11 +9866,11 @@ msgstr "" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "" -#: frappe/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "" -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "" @@ -9892,20 +9888,20 @@ 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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "" @@ -9921,15 +9917,15 @@ msgstr "" msgid "Fieldname {0} appears multiple times" msgstr "" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "" @@ -9952,7 +9948,7 @@ msgstr "" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -9965,7 +9961,7 @@ msgstr "" msgid "Fields Multicheck" msgstr "" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "" @@ -9973,7 +9969,7 @@ msgstr "" msgid "Fields must be a list or tuple when as_list is enabled" msgstr "" -#: frappe/database/query.py:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10001,7 +9997,7 @@ msgstr "" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "" @@ -10014,7 +10010,7 @@ msgstr "" msgid "File" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "" @@ -10067,7 +10063,7 @@ msgstr "" msgid "File backup is ready" msgstr "" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "" @@ -10075,7 +10071,7 @@ msgstr "" msgid "File not attached" msgstr "" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "" @@ -10084,11 +10080,11 @@ msgstr "" msgid "File too big" msgstr "" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "" @@ -10102,10 +10098,10 @@ msgstr "" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10142,11 +10138,11 @@ msgstr "" msgid "Filter Values" msgstr "" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10164,7 +10160,6 @@ msgstr "" msgid "Filtered Records" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "" @@ -10179,7 +10174,9 @@ msgstr "" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10201,6 +10198,11 @@ msgstr "" msgid "Filters Display" msgstr "" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10213,11 +10215,11 @@ msgstr "" msgid "Filters Section" msgstr "" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "" @@ -10230,18 +10232,18 @@ msgstr "" msgid "Filters {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1427 +#: frappe/public/js/frappe/views/reports/report_view.js:1429 msgid "Filters:" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:572 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:581 msgid "Find '{0}' in ..." msgstr "" #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:329 #: frappe/public/js/frappe/ui/toolbar/awesome_bar.js:331 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:141 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:144 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:150 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:153 msgid "Find {0} in {1}" msgstr "" @@ -10265,8 +10267,12 @@ msgstr "" #. Label of the first_name (Data) field in DocType 'Contact' #. Label of the first_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:15 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:44 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:15 msgid "First Name" msgstr "" @@ -10275,10 +10281,6 @@ msgstr "" msgid "First Success Message" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:49 -msgid "First Transaction" -msgstr "" - #: frappe/core/doctype/data_export/exporter.py:185 msgid "First data column must be blank." msgstr "" @@ -10329,11 +10331,11 @@ msgstr "" msgid "Fold" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1450 +#: frappe/core/doctype/doctype/doctype.py:1451 msgid "Fold can not be at the end of the form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1448 +#: frappe/core/doctype/doctype/doctype.py:1449 msgid "Fold must come before a Section Break" msgstr "" @@ -10351,7 +10353,7 @@ msgstr "" msgid "Folder name should not include '/' (slash)" msgstr "" -#: frappe/core/doctype/file/file.py:472 +#: frappe/core/doctype/file/file.py:497 msgid "Folder {0} is not empty" msgstr "" @@ -10458,7 +10460,7 @@ msgstr "" msgid "Footer HTML" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:75 +#: frappe/printing/doctype/letter_head/letter_head.py:81 msgid "Footer HTML set from attachment {0}" msgstr "" @@ -10495,7 +10497,7 @@ msgstr "" msgid "Footer Template Values" msgstr "" -#: frappe/printing/page/print/print.js:116 +#: frappe/printing/page/print/print.js:129 msgid "Footer might not be visible as {0} option is disabled" msgstr "" @@ -10553,8 +10555,8 @@ msgstr "" msgid "For Value" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "" @@ -10580,12 +10582,6 @@ msgstr "" msgid "For help see Client Script API and Examples" msgstr "" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "" - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "" @@ -10600,7 +10596,7 @@ msgstr "" msgid "For updating, you can update only selective columns." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "" @@ -10655,7 +10651,7 @@ 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:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "" @@ -10715,6 +10711,11 @@ msgstr "" msgid "Format Data" msgstr "" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "" @@ -10742,7 +10743,15 @@ msgstr "" msgid "Frappe" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "" @@ -10831,7 +10840,7 @@ msgstr "" msgid "From Date Field" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "" @@ -10858,18 +10867,16 @@ msgstr "" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "" @@ -10895,12 +10902,12 @@ msgstr "" msgid "Function {0} is not whitelisted." msgstr "" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" +msgid "Further sub-groups can only be created under records marked as 'Group'" msgstr "" #: frappe/core/doctype/communication/communication.js:291 @@ -10960,7 +10967,7 @@ msgstr "" msgid "Generate Keys" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "" @@ -10968,8 +10975,14 @@ msgstr "" msgid "Generate Random Password" msgstr "" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "" @@ -10992,7 +11005,7 @@ msgstr "" msgid "Geolocation Settings" msgstr "" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "" @@ -11128,7 +11141,7 @@ msgid "Go to this URL after completing the form" msgstr "" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "" @@ -11176,10 +11189,6 @@ msgstr "" msgid "Google Calendar" msgstr "" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
    {0}" -msgstr "" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "" @@ -11298,11 +11307,6 @@ msgstr "" msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "" -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11379,14 +11383,10 @@ msgstr "" msgid "Group By field is required to create a dashboard chart" msgstr "" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11436,7 +11436,6 @@ msgstr "" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11447,9 +11446,8 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11553,7 +11551,7 @@ msgstr "" msgid "Header HTML" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "" @@ -11611,6 +11609,12 @@ msgstr "" msgid "Hello" msgstr "" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "xin chào," + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11676,7 +11680,7 @@ msgstr "" msgid "Helvetica Neue" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "" @@ -11712,7 +11716,7 @@ msgstr "" msgid "Hidden Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11745,11 +11749,6 @@ msgstr "" msgid "Hide Buttons" msgstr "" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "" - #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json @@ -11829,7 +11828,7 @@ msgstr "" msgid "Hide Standard Menu" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "" @@ -11843,7 +11842,7 @@ msgstr "" msgid "Hide descendant records of For Value." msgstr "" -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "" @@ -11892,11 +11891,8 @@ 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:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -11984,16 +11980,16 @@ msgstr "" #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "" @@ -12089,9 +12085,9 @@ msgstr "" msgid "If Checked workflow status will not override status in list view" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "" @@ -12219,6 +12215,10 @@ msgstr "" msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12250,7 +12250,11 @@ msgstr "" msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "" -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "" @@ -12307,12 +12311,12 @@ msgstr "" msgid "Ignored Apps" msgstr "" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "" @@ -12373,11 +12377,11 @@ msgstr "" msgid "Image Width" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 msgid "Image field must be a valid fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "" @@ -12399,15 +12403,15 @@ msgstr "" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "" @@ -12433,7 +12437,7 @@ msgstr "" msgid "Import" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "" @@ -12661,15 +12665,16 @@ msgstr "" msgid "Include Web View Link in Email" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "" @@ -12716,7 +12721,7 @@ msgstr "" msgid "Incomplete Virtual Doctype Implementation" msgstr "" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "" @@ -12728,7 +12733,7 @@ msgstr "" msgid "Incorrect URL" msgstr "" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "" @@ -12736,11 +12741,11 @@ msgstr "" msgid "Incorrect Verification code" msgstr "" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "" @@ -12752,7 +12757,7 @@ msgstr "" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "" @@ -12827,7 +12832,7 @@ msgstr "" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "" @@ -12843,7 +12848,7 @@ msgstr "" msgid "Insert Below" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "" @@ -12861,8 +12866,12 @@ msgstr "" msgid "Insert Style" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "" @@ -12879,7 +12888,7 @@ msgid "Installed Applications" msgstr "" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "" @@ -12896,19 +12905,19 @@ msgstr "" msgid "Insufficient Permission Level for {0}" msgstr "" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" msgstr "" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "" @@ -13012,9 +13021,9 @@ msgid "Invalid" msgstr "" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "" @@ -13022,7 +13031,7 @@ msgstr "" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "" @@ -13038,7 +13047,7 @@ msgstr "" msgid "Invalid Code. Please try again." msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "" @@ -13058,16 +13067,20 @@ msgstr "" msgid "Invalid DocType: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13099,7 +13112,7 @@ msgstr "" msgid "Invalid Mail Server. Please rectify and try again." msgstr "" -#: frappe/model/naming.py:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "" @@ -13108,8 +13121,8 @@ msgstr "" msgid "Invalid Operation" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "" @@ -13121,25 +13134,25 @@ msgstr "" msgid "Invalid Output Format" msgstr "" -#: frappe/model/base_document.py:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "" -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "" @@ -13148,7 +13161,7 @@ msgstr "" msgid "Invalid Search Field {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "" @@ -13156,8 +13169,8 @@ msgstr "" msgid "Invalid Transition" msgstr "" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13171,47 +13184,51 @@ msgstr "" msgid "Invalid Values" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "" @@ -13223,31 +13240,27 @@ msgstr "" msgid "Invalid expression set in filter {0} ({1})" msgstr "" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "" @@ -13255,11 +13268,11 @@ msgstr "" msgid "Invalid file path: {0}" msgstr "" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13267,20 +13280,28 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "" @@ -13288,6 +13309,10 @@ msgstr "" msgid "Invalid naming series {}: dot (.) missing" msgstr "" +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "" @@ -13296,19 +13321,27 @@ msgstr "" msgid "Invalid redirect regex in row #{}: {}" msgstr "" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13316,7 +13349,7 @@ msgstr "" msgid "Invalid template file for import" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "" @@ -13325,20 +13358,20 @@ msgstr "" msgid "Invalid username or password" msgstr "" -#: frappe/model/naming.py:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "" @@ -13347,10 +13380,47 @@ msgstr "" msgid "Inverse" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "" @@ -13375,7 +13445,7 @@ msgstr "" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "" @@ -13428,6 +13498,10 @@ msgstr "" msgid "Is Global" msgstr "" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13454,8 +13528,13 @@ msgstr "" msgid "Is Primary" msgstr "" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 msgid "Is Primary Contact" msgstr "" @@ -13486,7 +13565,7 @@ msgstr "" msgid "Is Published Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "" @@ -13511,7 +13590,7 @@ msgstr "" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "" @@ -13547,7 +13626,7 @@ msgstr "" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "" @@ -13753,11 +13832,11 @@ msgstr "" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "" @@ -13778,12 +13857,14 @@ msgstr "" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -14045,7 +14126,7 @@ msgstr "" msgid "Landing Page" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "" @@ -14053,10 +14134,13 @@ msgstr "" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "" @@ -14144,8 +14228,12 @@ msgstr "" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "" @@ -14160,6 +14248,11 @@ msgstr "" msgid "Last Quarter" msgstr "" +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" + #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json @@ -14176,11 +14269,6 @@ msgstr "" msgid "Last Sync On" msgstr "" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14291,7 +14379,7 @@ msgstr "" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "" @@ -14340,8 +14428,8 @@ 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:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14369,7 +14457,7 @@ msgstr "" msgid "Letter Head Scripts" msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "" @@ -14386,7 +14474,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "" @@ -14436,20 +14524,6 @@ msgstr "" msgid "Like" msgstr "" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "" @@ -14490,6 +14564,7 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14503,6 +14578,7 @@ msgstr "" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "" @@ -14633,10 +14709,15 @@ msgstr "" msgid "Linked With" msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +msgstr "" + #. Label of the links (Table) field in DocType 'Address' #. Label of the links (Table) field in DocType 'Contact' #. Label of the links_section (Tab Break) field in DocType 'DocType' #. Label of the links (Table) field in DocType 'Customize Form' +#. Label of the links (Table) field in DocType 'Event' #. Label of the links (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14644,6 +14725,7 @@ msgstr "" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "" @@ -14685,7 +14767,7 @@ msgstr "" msgid "List Settings" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "" @@ -14726,7 +14808,7 @@ msgstr "" msgid "List setting message" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "" @@ -14735,9 +14817,8 @@ msgstr "" msgid "Load Balancing" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "" @@ -14754,10 +14835,10 @@ msgstr "" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "" @@ -14769,7 +14850,7 @@ msgstr "" msgid "Loading import file..." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "" @@ -14779,7 +14860,7 @@ msgstr "" #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "" @@ -14840,7 +14921,7 @@ msgstr "" msgid "Log out" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "" @@ -14900,7 +14981,7 @@ msgstr "" msgid "Login and view in Browser" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "" @@ -14908,7 +14989,7 @@ msgstr "" msgid "Login link sent to your email" msgstr "" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "" @@ -14961,7 +15042,7 @@ msgstr "" msgid "Login with email link expiry (in minutes)" msgstr "" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "" @@ -14980,7 +15061,7 @@ msgstr "" msgid "Logout" msgstr "" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "" @@ -15084,7 +15165,10 @@ msgid "Major" 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 +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "" @@ -15160,7 +15244,7 @@ msgstr "" msgid "Mandatory Depends On (JS)" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "" @@ -15172,15 +15256,15 @@ msgstr "" msgid "Mandatory field: {0}" msgstr "" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "" -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "" @@ -15261,10 +15345,8 @@ msgid "Mark as Unread" msgstr "" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15345,7 +15427,13 @@ msgstr "" msgid "Max auto email report per user" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "" @@ -15354,20 +15442,15 @@ msgstr "" msgid "Maximum" msgstr "" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "" -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "" -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "" @@ -15383,7 +15466,7 @@ msgstr "" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15396,7 +15479,7 @@ msgstr "" msgid "Meeting" msgstr "" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "" @@ -15437,7 +15520,7 @@ msgstr "" msgid "Merge with existing" msgstr "" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "" @@ -15463,7 +15546,7 @@ msgstr "" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15503,7 +15586,7 @@ msgstr "" msgid "Message Type" msgstr "" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "" @@ -15535,29 +15618,21 @@ msgstr "" msgid "Meta" msgstr "" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "" @@ -15610,7 +15685,7 @@ msgstr "" msgid "Method Not Allowed" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "" @@ -15626,6 +15701,11 @@ msgstr "" msgid "Middle Name" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15692,11 +15772,11 @@ msgstr "" msgid "Missing DocType" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "" @@ -15732,15 +15812,16 @@ msgstr "" msgid "Mobile No" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "" + #. Label of the modal_trigger (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Modal Trigger" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15761,7 +15842,7 @@ msgstr "" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -15937,10 +16018,12 @@ msgstr "" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "" @@ -15959,7 +16042,7 @@ msgstr "" msgid "Most Used" msgstr "" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "" @@ -15970,7 +16053,7 @@ msgstr "" msgid "Move" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "" @@ -16006,7 +16089,7 @@ msgstr "" msgid "Move the current field and the following fields to a new column" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "" @@ -16033,7 +16116,7 @@ msgstr "" msgid "Ms" msgstr "" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "" @@ -16056,7 +16139,7 @@ msgstr "" msgid "Must be of type \"Attach Image\"" msgstr "" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "" @@ -16074,7 +16157,7 @@ msgid "Mx" msgstr "" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16112,9 +16195,9 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16124,11 +16207,11 @@ msgstr "" msgid "Name (Doc Name)" msgstr "" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "" @@ -16140,7 +16223,7 @@ msgstr "" msgid "Name of the new Print Format" msgstr "" -#: frappe/model/naming.py:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "" @@ -16179,7 +16262,7 @@ msgstr "" msgid "Naming Series" msgstr "" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "" @@ -16216,12 +16299,12 @@ msgstr "" msgid "Navbar Template Values" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "" @@ -16236,7 +16319,11 @@ msgstr "" msgid "Navigation Settings" msgstr "" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "" @@ -16244,7 +16331,7 @@ msgstr "" msgid "Negative Value" msgstr "" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16257,6 +16344,12 @@ msgstr "" msgid "Network Printer Settings" msgstr "" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +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 @@ -16265,7 +16358,7 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16286,10 +16379,6 @@ msgstr "" msgid "New Chart" msgstr "" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "" @@ -16298,8 +16387,8 @@ msgstr "" msgid "New Custom Block" msgstr "" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" msgstr "" @@ -16330,7 +16419,7 @@ msgstr "" msgid "New Folder" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "" @@ -16365,12 +16454,12 @@ msgstr "" msgid "New Onboarding" msgstr "" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "" @@ -16379,7 +16468,7 @@ msgstr "" msgid "New Quick List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "" @@ -16397,8 +16486,8 @@ msgstr "" msgid "New Users (Last 30 days)" msgstr "" -#: frappe/core/doctype/version/version_view.html:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "" @@ -16455,13 +16544,13 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "" @@ -16477,7 +16566,7 @@ msgstr "" msgid "New {0} {1} created" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "" @@ -16485,7 +16574,7 @@ msgstr "" msgid "New {} releases for the following apps are available" msgstr "" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "" @@ -16498,7 +16587,7 @@ msgstr "" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16605,14 +16694,15 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "" @@ -16662,6 +16752,10 @@ msgstr "" msgid "No Email Accounts Assigned" msgstr "" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "" @@ -16697,15 +16791,15 @@ msgstr "" msgid "No Label" msgstr "" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: frappe/public/js/frappe/list/bulk_operations.js:98 #: frappe/public/js/frappe/list/bulk_operations.js:170 #: frappe/utils/weasyprint.py:52 msgid "No Letterhead" msgstr "" -#: frappe/model/naming.py:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "" @@ -16713,7 +16807,7 @@ msgstr "" msgid "No New notifications" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "" @@ -16733,11 +16827,11 @@ msgstr "" msgid "No Preview" msgstr "" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "" @@ -16753,11 +16847,11 @@ msgstr "" msgid "No Results found" msgstr "" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "" @@ -16765,7 +16859,7 @@ msgstr "" msgid "No Suggestions" msgstr "" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "" @@ -16777,7 +16871,7 @@ msgstr "" msgid "No address added yet." msgstr "" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "" @@ -16805,23 +16899,19 @@ msgstr "" msgid "No changes to update" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " -msgstr "" +msgid "No comments yet." +msgstr "Chưa có bình luận nào." #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "" @@ -16837,11 +16927,15 @@ msgstr "" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "" @@ -16865,7 +16959,7 @@ msgstr "" msgid "No matching records. Search something new" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "" @@ -16909,7 +17003,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "" @@ -16921,7 +17015,7 @@ msgstr "" msgid "No records deleted" msgstr "" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "" @@ -16937,7 +17031,7 @@ msgstr "" msgid "No rows" msgstr "" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "" @@ -16957,11 +17051,11 @@ msgstr "" msgid "No {0} Found" msgstr "" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "" @@ -16970,7 +17064,7 @@ msgid "No {0} mail" msgstr "" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "" @@ -16997,7 +17091,7 @@ msgstr "" #. Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "None" -msgstr "" +msgstr "Không" #: frappe/public/js/frappe/form/workflow.js:36 msgid "None: End of Workflow" @@ -17013,7 +17107,7 @@ msgstr "" msgid "Normalized Query" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "" @@ -17034,7 +17128,7 @@ msgstr "" msgid "Not Equals" msgstr "" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "" @@ -17060,20 +17154,19 @@ msgstr "" msgid "Not Nullable" msgstr "" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17082,10 +17175,10 @@ msgstr "" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "" @@ -17117,7 +17210,7 @@ msgstr "" msgid "Not a valid User Image." msgstr "" -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "" @@ -17133,11 +17226,11 @@ msgstr "" msgid "Not allowed for {0}: {1}" msgstr "" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "" @@ -17161,27 +17254,27 @@ msgstr "" msgid "Not in Developer Mode" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 msgid "Not in Developer Mode! Set in site_config.json or make 'Custom' DocType." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17216,7 +17309,7 @@ msgstr "" msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "" @@ -17240,10 +17333,9 @@ msgstr "" msgid "Nothing left to undo" msgstr "" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "" @@ -17289,15 +17381,15 @@ msgstr "" msgid "Notification sent to" msgstr "" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "" @@ -17348,7 +17440,7 @@ msgstr "" msgid "Notify users with a popup when they log in" msgstr "" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "" @@ -17406,12 +17498,12 @@ msgstr "" msgid "Number of Queries" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "" @@ -17520,11 +17612,11 @@ msgstr "" msgid "OTP Issuer Name" msgstr "" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "" @@ -17643,7 +17735,7 @@ msgstr "" msgid "On or Before" msgstr "" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "" @@ -17683,7 +17775,7 @@ msgstr "" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "" @@ -17728,7 +17820,7 @@ msgstr "" msgid "Only Allow Edit For" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "" @@ -17745,7 +17837,7 @@ msgstr "" msgid "Only allowed to export customizations in developer mode" msgstr "" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "" @@ -17764,19 +17856,19 @@ msgstr "" msgid "Only one {0} can be set as primary." msgstr "" -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "" @@ -17846,7 +17938,7 @@ msgstr "" msgid "Open Settings" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "" @@ -17864,7 +17956,7 @@ msgstr "" msgid "Open a module or tool" msgstr "" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "" @@ -17872,7 +17964,7 @@ msgstr "" msgid "Open in a new tab" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "" @@ -17887,13 +17979,13 @@ msgstr "" #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "" @@ -17902,6 +17994,10 @@ msgstr "" msgid "OpenID Configuration" msgstr "" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" @@ -17917,7 +18013,7 @@ msgstr "" msgid "Operation" msgstr "" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "" @@ -17943,7 +18039,7 @@ msgstr "" msgid "Option 3" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "" @@ -17963,6 +18059,7 @@ msgstr "" #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -17971,11 +18068,12 @@ msgstr "" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "" @@ -17984,7 +18082,7 @@ msgstr "" msgid "Options Help" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "" @@ -17992,7 +18090,7 @@ msgstr "" msgid "Options for select. Each option on a new line." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 msgid "Options for {0} must be set before setting the default value." msgstr "" @@ -18000,7 +18098,7 @@ msgstr "" msgid "Options is required for field {0} of type {1}" msgstr "" -#: frappe/model/base_document.py:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "" @@ -18016,7 +18114,7 @@ msgstr "" msgid "Order" msgstr "" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18032,12 +18130,12 @@ msgstr "" msgid "Org History Heading" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "" @@ -18105,10 +18203,6 @@ msgstr "" msgid "Overview" msgstr "" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" @@ -18116,9 +18210,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:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "" @@ -18159,11 +18253,11 @@ msgstr "" msgid "PDF generation failed because of broken image links" msgstr "" -#: frappe/printing/page/print/print.js:616 +#: frappe/printing/page/print/print.js:656 msgid "PDF generation may not work as expected." msgstr "" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:574 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "" @@ -18335,7 +18429,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:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "" @@ -18362,7 +18456,7 @@ msgstr "" msgid "Parent Document Type" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "" @@ -18379,11 +18473,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:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "" @@ -18392,7 +18486,7 @@ msgstr "" msgid "Parent Label" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 msgid "Parent Missing" msgstr "" @@ -18466,8 +18560,8 @@ msgstr "" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18477,7 +18571,7 @@ msgstr "" msgid "Password" msgstr "" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "" @@ -18490,7 +18584,7 @@ msgstr "" msgid "Password Reset Link Generation Limit" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "" @@ -18507,6 +18601,10 @@ msgstr "" msgid "Password is required or select Awaiting Password" msgstr "" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "" @@ -18515,7 +18613,7 @@ msgstr "" msgid "Password not found for {0} {1} {2}" msgstr "" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "" @@ -18523,11 +18621,11 @@ msgstr "" msgid "Password set" msgstr "" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." msgstr "" @@ -18535,7 +18633,7 @@ msgstr "" msgid "Passwords do not match" msgstr "" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "" @@ -18605,10 +18703,12 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "" @@ -18684,7 +18784,7 @@ msgstr "" msgid "Permanently delete {0}?" msgstr "" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "" @@ -18744,16 +18844,16 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: frappe/core/page/permission_manager/permission_manager.js:221 #: frappe/core/workspace/users/users.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Permissions" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "" @@ -18815,15 +18915,18 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -18836,13 +18939,13 @@ msgstr "" msgid "Phone No." msgstr "" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 msgid "Phone Number {0} set in field {1} is not valid." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "" @@ -18902,11 +19005,11 @@ msgstr "" msgid "Please Set Chart" msgstr "" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "" @@ -18914,7 +19017,7 @@ msgstr "" msgid "Please add a valid comment." msgstr "" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "" @@ -18922,11 +19025,11 @@ msgstr "" msgid "Please attach a file first." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 msgid "Please attach an image file to set HTML for Footer." msgstr "" -#: frappe/printing/doctype/letter_head/letter_head.py:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "" @@ -18934,19 +19037,15 @@ msgstr "" msgid "Please attach the package" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "" - #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "" -#: frappe/model/base_document.py:951 +#: frappe/model/base_document.py:1008 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "" @@ -18978,11 +19077,11 @@ msgstr "" msgid "Please confirm your action to {0} this document." msgstr "" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "" -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "" @@ -18998,20 +19097,20 @@ msgstr "" msgid "Please do not change the template headings." msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "" #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "" @@ -19048,7 +19147,7 @@ msgstr "" msgid "Please enter Client Secret before social login is enabled" msgstr "" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "" @@ -19085,11 +19184,12 @@ msgstr "" msgid "Please enter your old password." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "" @@ -19097,11 +19197,11 @@ msgstr "" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "" -#: frappe/model/document.py:988 +#: frappe/model/document.py:992 msgid "Please refresh to get the latest document." msgstr "" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:575 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "" @@ -19117,7 +19217,7 @@ msgstr "" msgid "Please save the document before removing assignment" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "" @@ -19125,7 +19225,7 @@ msgstr "" msgid "Please save to edit the template." msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "" @@ -19133,19 +19233,19 @@ msgstr "" msgid "Please select Entity Type first" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "" @@ -19153,7 +19253,7 @@ msgstr "" msgid "Please select a file or url" msgstr "" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" msgstr "" @@ -19165,7 +19265,7 @@ msgstr "" msgid "Please select applicable Doctypes" msgstr "" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "" @@ -19191,11 +19291,11 @@ msgstr "" msgid "Please set Email Address" msgstr "" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:589 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "" @@ -19203,7 +19303,7 @@ msgstr "" msgid "Please set filters value in Report Filter table." msgstr "" -#: frappe/model/naming.py:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "" @@ -19215,7 +19315,7 @@ msgstr "" msgid "Please set the series to be used." msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "" @@ -19239,23 +19339,23 @@ msgstr "" msgid "Please specify a valid parent DocType for {0}" msgstr "" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "" @@ -19276,7 +19376,7 @@ msgstr "" msgid "Please use following links to download file backup." msgstr "" -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "" @@ -19330,7 +19430,7 @@ msgstr "" msgid "Portal Settings" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "" @@ -19358,6 +19458,7 @@ msgstr "" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "" @@ -19366,15 +19467,7 @@ msgstr "" msgid "Posting Timestamp" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19389,7 +19482,11 @@ msgstr "" msgid "Precision" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "" @@ -19437,7 +19534,7 @@ msgstr "" msgid "Prepared Report User" msgstr "" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "" @@ -19445,7 +19542,7 @@ msgstr "" msgid "Preparing Report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "" @@ -19466,7 +19563,7 @@ msgstr "" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19480,13 +19577,6 @@ msgstr "" msgid "Preview HTML" msgstr "" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19515,7 +19605,7 @@ msgid "Preview:" msgstr "" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19527,12 +19617,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "" @@ -19578,19 +19663,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:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "" @@ -19608,8 +19693,8 @@ 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:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19660,7 +19745,7 @@ msgstr "" msgid "Print Format Type" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19699,7 +19784,7 @@ msgstr "" msgid "Print Language" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "" @@ -19716,8 +19801,8 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "" @@ -19765,11 +19850,11 @@ msgstr "" msgid "Print with letterhead" msgstr "" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "" @@ -19779,11 +19864,11 @@ msgstr "" msgid "Printer Name" msgstr "" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "" @@ -19841,7 +19926,7 @@ msgstr "" msgid "Proceed" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "" @@ -19862,18 +19947,28 @@ msgstr "" msgid "Profile" msgstr "" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "" + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: 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:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: 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/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "" @@ -19910,7 +20005,7 @@ msgstr "" msgid "Protect Attached Files" msgstr "" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "" @@ -19959,24 +20054,18 @@ msgstr "" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -19986,15 +20075,6 @@ msgstr "" msgid "Published" msgstr "" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json @@ -20084,7 +20164,9 @@ msgid "Put on Hold" msgstr "" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "" @@ -20096,8 +20178,8 @@ msgstr "" msgid "QR Code for Login Verification" msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" msgstr "" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' @@ -20147,7 +20229,7 @@ msgstr "" msgid "Query analysis complete. Check suggested indexes." msgstr "" -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "" @@ -20247,7 +20329,7 @@ msgstr "" msgid "Quick Lists" msgstr "" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "" @@ -20284,12 +20366,6 @@ msgstr "" msgid "Rate Limiting" msgstr "" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20309,7 +20385,7 @@ msgstr "" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "" @@ -20326,7 +20402,7 @@ msgstr "" msgid "Raw Printing" msgstr "" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "" @@ -20343,8 +20419,8 @@ msgid "Re:" msgstr "" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "" @@ -20400,11 +20476,6 @@ msgstr "" msgid "Read Only Mode" msgstr "" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20420,7 +20491,7 @@ msgstr "" msgid "Read mode" msgstr "" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "" @@ -20440,11 +20511,11 @@ msgstr "" msgid "Reason" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "" @@ -20482,7 +20553,7 @@ msgstr "" msgid "Recent years are easy to guess." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "" @@ -20493,6 +20564,14 @@ msgstr "" msgid "Recipient" msgstr "" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20525,7 +20604,7 @@ msgstr "" msgid "Records for following doctypes will be filtered" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "" @@ -20542,6 +20621,11 @@ msgstr "" msgid "Redirect HTTP Status" msgstr "" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20636,6 +20720,11 @@ msgstr "" msgid "Reference Datetime" msgstr "" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20663,7 +20752,6 @@ msgstr "" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20704,9 +20792,9 @@ msgstr "" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20724,9 +20812,9 @@ msgstr "" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20756,7 +20844,6 @@ msgstr "" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -20804,15 +20891,15 @@ msgstr "" msgid "Referrer" msgstr "" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "" @@ -20826,6 +20913,10 @@ msgstr "" msgid "Refresh Google Sheet" msgstr "" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -20837,18 +20928,18 @@ msgstr "" msgid "Refresh Token" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "" -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "" @@ -21025,7 +21116,7 @@ msgstr "" msgid "Rename {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "" @@ -21156,9 +21247,9 @@ msgstr "" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "" @@ -21228,11 +21319,11 @@ 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:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "" @@ -21266,21 +21357,21 @@ msgstr "" msgid "Report bug" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 msgid "Report cannot be set for Single types" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 -#: frappe/desk/doctype/number_card/number_card.js:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 msgid "Report has no numeric fields, please change the Report Name" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "" @@ -21292,24 +21383,24 @@ msgstr "" msgid "Report timed out." msgstr "" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 msgid "Report was not saved (there were errors)" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "" @@ -21317,7 +21408,7 @@ msgstr "" msgid "Report {0} is disabled" msgstr "" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "" @@ -21328,7 +21419,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:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "" @@ -21336,7 +21427,7 @@ msgstr "" msgid "Reports & Masters" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "" @@ -21355,7 +21446,10 @@ msgid "Request Body" msgstr "" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "" @@ -21407,6 +21501,11 @@ msgstr "" msgid "Request URL" msgstr "" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21458,11 +21557,11 @@ msgstr "" msgid "Reset Dashboard Customizations" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "" @@ -21470,11 +21569,11 @@ msgstr "" msgid "Reset Layout" msgstr "" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21509,7 +21608,7 @@ msgstr "" msgid "Reset sorting" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "" @@ -21547,6 +21646,7 @@ msgid "Resource TOS URI" msgstr "" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21556,11 +21656,6 @@ msgstr "" msgid "Response" msgstr "" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "" - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21619,7 +21714,7 @@ msgstr "" msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "" @@ -21653,7 +21748,7 @@ msgstr "" msgid "Reverse Icon Color" msgstr "" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "" @@ -21671,9 +21766,7 @@ msgstr "" msgid "Revoked" msgstr "" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21714,6 +21807,7 @@ msgstr "" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21727,6 +21821,7 @@ msgstr "" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21765,7 +21860,7 @@ msgstr "" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "" @@ -21775,7 +21870,7 @@ msgstr "" msgid "Role Permissions Manager" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "" @@ -21818,6 +21913,7 @@ msgstr "" #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -21827,6 +21923,7 @@ msgstr "" #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -21863,7 +21960,7 @@ msgstr "" msgid "Roles can be set for users from their User page." msgstr "" -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "" @@ -21883,8 +21980,6 @@ msgstr "" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -21896,8 +21991,6 @@ msgstr "" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -21922,24 +22015,24 @@ msgstr "" msgid "Route: Example \"/app\"" msgstr "" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "" @@ -21948,11 +22041,6 @@ msgstr "" msgid "Row Format" msgstr "" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "" - #. Label of the row_indexes (Code) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Row Indexes" @@ -21967,7 +22055,7 @@ msgstr "" msgid "Row Number" msgstr "" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "" @@ -21975,30 +22063,33 @@ msgstr "" msgid "Row {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Added" msgstr "" #. Label of the rows_removed_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22089,7 +22180,7 @@ msgstr "" msgid "SMS Settings" msgstr "" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "" @@ -22167,7 +22258,7 @@ msgstr "" msgid "Salutation" msgstr "" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "" @@ -22195,20 +22286,20 @@ msgstr "" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22217,16 +22308,12 @@ msgstr "" msgid "Save" msgstr "" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "" @@ -22234,11 +22321,11 @@ msgstr "" msgid "Save Customizations" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "" @@ -22263,7 +22350,7 @@ msgstr "" msgid "Saved Filters" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22342,7 +22429,7 @@ msgstr "" msgid "Scheduled Jobs Logs" msgstr "" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "" @@ -22365,7 +22452,7 @@ msgstr "" msgid "Scheduler Event" msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "" @@ -22378,7 +22465,7 @@ msgstr "" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "" @@ -22510,7 +22597,7 @@ msgstr "" msgid "Search by filename or extension" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "" @@ -22610,7 +22697,7 @@ msgstr "" msgid "See all Activity" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "" @@ -22619,7 +22706,7 @@ msgstr "" msgid "See on Website" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "" @@ -22666,7 +22753,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/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22674,28 +22761,28 @@ msgstr "" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 msgid "Select Column" msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "" @@ -22754,12 +22841,15 @@ msgstr "" msgid "Select Field..." msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "" @@ -22772,7 +22862,7 @@ msgstr "" msgid "Select Filters" msgstr "" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "" @@ -22805,8 +22895,8 @@ msgstr "" msgid "Select Module" msgstr "" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "" @@ -22871,14 +22961,14 @@ msgid "Select a field to edit its properties." msgstr "" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." +msgid "Select a group {0} first." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 msgid "Select a valid Subject field for creating documents from Email" msgstr "" @@ -22908,13 +22998,13 @@ msgstr "" msgid "Select atleast 2 actions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "" @@ -22948,7 +23038,7 @@ msgstr "" msgid "Select {0}" msgstr "" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "" @@ -23132,7 +23222,7 @@ msgstr "" msgid "Sender Email Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "" @@ -23226,7 +23316,7 @@ msgstr "" msgid "Series counter for {} updated to {} successfully" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "" @@ -23236,7 +23326,7 @@ msgstr "" msgid "Server Action" msgstr "" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "" @@ -23255,7 +23345,7 @@ msgstr "" msgid "Server Script" msgstr "" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "" @@ -23302,7 +23392,7 @@ msgstr "" msgid "Session Defaults Saved" msgstr "" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "" @@ -23311,14 +23401,14 @@ msgstr "" msgid "Session Expiry (idle timeout)" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "" @@ -23344,12 +23434,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23360,7 +23450,7 @@ msgstr "" msgid "Set Filters for {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "" @@ -23414,7 +23504,7 @@ msgstr "" msgid "Set Role For" msgstr "" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "" @@ -23424,16 +23514,16 @@ msgstr "" msgid "Set Value" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "" @@ -23452,18 +23542,21 @@ msgstr "" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "" -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23555,14 +23648,9 @@ msgstr "" msgid "Settings for the About Us Page" msgstr "" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "" @@ -23578,8 +23666,8 @@ msgstr "" msgid "Setup > User Permissions" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "" @@ -23648,11 +23736,6 @@ msgstr "" msgid "Shop" msgstr "" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "" @@ -23672,11 +23755,6 @@ msgstr "" msgid "Show" msgstr "" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23729,7 +23807,13 @@ msgstr "" msgid "Show Error" msgstr "" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "" @@ -23857,7 +23941,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "" @@ -23874,7 +23958,7 @@ msgstr "" msgid "Show Title in Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "" @@ -23914,10 +23998,6 @@ msgstr "" msgid "Show all activity" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "" - #. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" @@ -23966,8 +24046,8 @@ msgstr "" msgid "Show list" msgstr "" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "" @@ -23996,7 +24076,7 @@ msgstr "" msgid "Show {0} List" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "" @@ -24031,7 +24111,7 @@ msgstr "" msgid "Sign Up and Confirmation" msgstr "" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "" @@ -24068,22 +24148,22 @@ msgstr "" msgid "Signups have been disabled for this website." msgstr "" -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" msgstr "" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" msgstr "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' @@ -24091,13 +24171,13 @@ msgstr "" msgid "Simultaneous Sessions" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "" #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "" @@ -24105,7 +24185,7 @@ msgstr "" msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "" -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "" @@ -24324,11 +24404,11 @@ msgstr "" msgid "Something went wrong." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 msgid "Sorry! I could not find what you were looking for." msgstr "" -#: frappe/public/js/frappe/views/pageview.js:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "" @@ -24359,20 +24439,23 @@ msgstr "" msgid "Sort Order" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 msgid "Sort field {0} must be a valid fieldname" msgstr "" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' -#: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24399,6 +24482,12 @@ msgstr "" msgid "SparkPost" msgstr "" +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "" @@ -24423,8 +24512,8 @@ msgstr "" msgid "Splash Image" msgstr "" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "" @@ -24456,11 +24545,11 @@ msgstr "" msgid "Standard" msgstr "" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "" -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "" @@ -24472,7 +24561,7 @@ msgstr "" msgid "Standard Permissions" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "" @@ -24480,11 +24569,11 @@ msgstr "" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "" -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "" @@ -24516,8 +24605,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:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "" @@ -24525,7 +24614,7 @@ msgstr "" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24590,6 +24679,7 @@ msgstr "" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24598,7 +24688,7 @@ msgstr "" msgid "State" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "" @@ -24654,6 +24744,7 @@ msgstr "" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24678,6 +24769,7 @@ msgstr "" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24685,8 +24777,8 @@ msgstr "" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24723,7 +24815,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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "" @@ -24753,6 +24845,10 @@ msgstr "" msgid "Store Attached PDF Document" msgstr "" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +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." @@ -24831,7 +24927,7 @@ msgstr "" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -24847,7 +24943,7 @@ msgstr "" msgid "Subject Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "" @@ -24861,6 +24957,7 @@ msgstr "" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -24869,10 +24966,11 @@ msgstr "" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "" @@ -24882,7 +24980,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "" @@ -24906,7 +25004,7 @@ msgstr "" msgid "Submit an Issue" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "" @@ -24918,7 +25016,7 @@ msgstr "" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "" @@ -24930,7 +25028,7 @@ msgstr "" msgid "Submit this document to confirm" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "" @@ -24939,11 +25037,11 @@ msgstr "" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "" @@ -24966,9 +25064,7 @@ msgid "Subsidiary" msgstr "" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "" @@ -24982,7 +25078,7 @@ msgstr "" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25024,20 +25120,16 @@ msgstr "" msgid "Success title" msgstr "" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "" - #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" msgstr "" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "" @@ -25079,7 +25171,7 @@ msgstr "" msgid "Suggested Indexes" msgstr "" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "" @@ -25201,7 +25293,7 @@ msgstr "" msgid "Syncing {0} of {1}" msgstr "" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "" @@ -25324,6 +25416,7 @@ msgstr "" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25406,6 +25499,7 @@ msgstr "" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" msgstr "" @@ -25479,7 +25573,7 @@ msgstr "" msgid "Table Break" msgstr "" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "" @@ -25488,7 +25582,7 @@ msgstr "" msgid "Table Fieldname" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "" @@ -25510,11 +25604,11 @@ msgstr "" msgid "Table Trimmed" msgstr "" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 msgid "Table {0} cannot be empty" msgstr "" @@ -25556,11 +25650,18 @@ msgstr "" msgid "Target" msgstr "" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25622,7 +25723,7 @@ msgstr "" msgid "Templates" msgstr "" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "" @@ -25694,7 +25795,7 @@ msgid "Thank you for reaching out to us. We will get back to you at the earliest "{0}" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "" @@ -25718,7 +25819,7 @@ msgstr "" msgid "The Auto Repeat for this document has been disabled." msgstr "" -#: frappe/public/js/frappe/form/grid.js:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "" @@ -25729,15 +25830,15 @@ msgid "The Client ID obtained from the Google Cloud Console under " msgstr "" -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." msgstr "" @@ -25778,7 +25879,7 @@ msgstr "" msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "" -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "" @@ -25786,7 +25887,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:658 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "" @@ -25816,7 +25917,7 @@ msgstr "" msgid "The field {0} is mandatory" msgstr "" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "" @@ -25886,15 +25987,19 @@ msgid "The project number obtained from Google Cloud Console under " msgstr "" -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

    Click here to download:
    {0}

    This link will expire in {1} hours." +msgstr "" + +#: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" msgstr "" -#: frappe/core/doctype/user/user.py:995 +#: frappe/core/doctype/user/user.py:1002 msgid "The reset password link has either been used before or is invalid" msgstr "" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "" @@ -25906,7 +26011,7 @@ msgstr "" msgid "The selected document {0} is not a {1}." msgstr "" -#: frappe/utils/response.py:338 +#: frappe/utils/response.py:336 msgid "The system is being updated. Please refresh again after a few moments." msgstr "" @@ -25927,7 +26032,7 @@ msgstr "" msgid "The webhook will be triggered if this expression is true" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "" @@ -25967,16 +26072,16 @@ 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:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "" @@ -25988,15 +26093,19 @@ msgstr "" msgid "There is no data to be exported" msgstr "" +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "" -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "" @@ -26008,7 +26117,7 @@ msgstr "" msgid "There was an error building this page" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "" @@ -26020,11 +26129,11 @@ msgstr "" msgid "There were errors while creating the document. Please try again." msgstr "" -#: frappe/public/js/frappe/views/communication.js:840 +#: frappe/public/js/frappe/views/communication.js:843 msgid "There were errors while sending email. Please try again." msgstr "" -#: frappe/model/naming.py:494 +#: frappe/model/naming.py:502 msgid "There were some errors setting the name, please contact the administrator" msgstr "" @@ -26065,7 +26174,7 @@ msgstr "" msgid "This Currency is disabled. Enable to use in transactions" msgstr "" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "" @@ -26073,6 +26182,10 @@ msgstr "" msgid "This Month" msgstr "" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "" @@ -26098,6 +26211,11 @@ msgstr "" msgid "This cannot be undone" msgstr "" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +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" @@ -26112,11 +26230,11 @@ msgstr "" msgid "This doctype has no orphan fields to trim" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "" -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "" @@ -26158,7 +26276,7 @@ msgid "This field will appear only if the fieldname defined here has value OR th "eval:doc.age>18" msgstr "" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "" @@ -26174,7 +26292,7 @@ msgstr "" msgid "This form has been modified after you have loaded it" msgstr "" -#: frappe/public/js/frappe/form/form.js:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "" @@ -26193,7 +26311,7 @@ msgstr "" msgid "This goes above the slideshow." msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "" @@ -26217,12 +26335,6 @@ msgstr "" msgid "This is an automatically generated reply" msgstr "" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "" - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "" @@ -26241,7 +26353,7 @@ msgstr "" msgid "This link is invalid or expired. Please make sure you have pasted correctly." msgstr "" -#: frappe/printing/page/print/print.js:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "" @@ -26249,7 +26361,7 @@ msgstr "" msgid "This month" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "" @@ -26257,7 +26369,7 @@ msgstr "" msgid "This report was generated on {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "" @@ -26288,7 +26400,7 @@ msgstr "" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " +msgid "This value specifies the max number of rows that can be rendered in report view." msgstr "" #: frappe/website/doctype/web_page/web_page.js:85 @@ -26320,10 +26432,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " +msgid "This will terminate the job immediately and might be dangerous, are you sure?" msgstr "" -#: frappe/core/doctype/user/user.py:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "" @@ -26399,9 +26511,11 @@ msgstr "" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26472,11 +26586,11 @@ msgstr "" msgid "Timeline Name" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 msgid "Timeline field must be a Link or Dynamic Link" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "" @@ -26502,10 +26616,7 @@ msgid "Timespan" msgstr "" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "" @@ -26525,9 +26636,6 @@ msgstr "" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26552,9 +26660,6 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26577,7 +26682,7 @@ msgstr "" msgid "Title Prefix" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "" @@ -26671,7 +26776,7 @@ msgstr "" msgid "To generate password click {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "" @@ -26726,7 +26831,7 @@ msgstr "" msgid "Today" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "" @@ -26742,11 +26847,11 @@ msgstr "" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "" @@ -26792,7 +26897,7 @@ msgid "Tomorrow" msgstr "" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "" @@ -26808,7 +26913,7 @@ msgstr "" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "" -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "" @@ -26870,10 +26975,10 @@ msgstr "" msgid "Topic" msgstr "" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "" @@ -26916,18 +27021,18 @@ msgstr "" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " +msgid "Total number of emails to sync in initial sync process" msgstr "" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "" @@ -26993,26 +27098,10 @@ msgstr "" msgid "Tracking" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "" @@ -27026,6 +27115,11 @@ msgstr "" msgid "Transition Rules" msgstr "" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" @@ -27040,7 +27134,7 @@ msgstr "" msgid "Translatable" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "" @@ -27051,7 +27145,7 @@ msgstr "" msgid "Translate Link Fields" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "" @@ -27135,8 +27229,8 @@ msgstr "" msgid "Try a Naming Series" msgstr "" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "" @@ -27202,7 +27296,7 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27295,7 +27389,7 @@ msgstr "" msgid "URL for documentation or help" msgstr "" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "" @@ -27398,7 +27492,7 @@ msgstr "" msgid "Unable to update event" msgstr "" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "" @@ -27407,7 +27501,7 @@ msgstr "" msgid "Unassign Condition" msgstr "" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "" @@ -27423,7 +27517,7 @@ msgstr "" msgid "Undo last action" msgstr "" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27470,7 +27564,7 @@ msgstr "" msgid "Unknown Rounding Method: {}" msgstr "" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "" @@ -27482,8 +27576,7 @@ msgstr "" msgid "Unlock Reference Document" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "" @@ -27499,7 +27592,7 @@ msgstr "" msgid "Unread Notification Sent" msgstr "" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "" @@ -27537,8 +27630,8 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27558,7 +27651,7 @@ msgstr "" msgid "Unzipping files..." msgstr "" -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "" @@ -27572,7 +27665,7 @@ msgstr "" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "" @@ -27606,6 +27699,11 @@ msgstr "" msgid "Update Password" msgstr "" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27648,7 +27746,7 @@ msgstr "" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "" @@ -27656,7 +27754,7 @@ msgstr "" msgid "Updated Successfully" msgstr "" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "" @@ -27664,7 +27762,7 @@ msgstr "" msgid "Updated successfully" msgstr "" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "" @@ -27709,8 +27807,8 @@ msgstr "" msgid "Upgrade your support experience with Frappe Helpdesk" msgstr "" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27720,11 +27818,11 @@ msgstr "" msgid "Upload Image" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "" @@ -27821,15 +27919,11 @@ msgstr "" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "" -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "" @@ -27850,7 +27944,9 @@ msgid "Used OAuth" msgstr "" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -27859,6 +27955,7 @@ msgstr "" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -27873,11 +27970,12 @@ msgstr "" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -27886,6 +27984,7 @@ msgstr "" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -27902,17 +28001,11 @@ msgstr "" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "" - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "" @@ -27942,7 +28035,7 @@ msgstr "" msgid "User Cannot Search" msgstr "" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "" @@ -28006,11 +28099,6 @@ msgstr "" msgid "User ID Property" msgstr "" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28030,6 +28118,11 @@ msgstr "" msgid "User Image" msgstr "" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "" @@ -28048,12 +28141,12 @@ msgstr "" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "" @@ -28066,7 +28159,9 @@ msgstr "" msgid "User Permissions created successfully" msgstr "" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "" @@ -28132,6 +28227,10 @@ msgstr "" msgid "User does not have permission to create the new {0}" msgstr "" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "" @@ -28162,7 +28261,7 @@ msgstr "" msgid "User {0} cannot be disabled" msgstr "" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "" @@ -28183,7 +28282,7 @@ msgstr "" msgid "User {0} has requested for data deletion" msgstr "" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "" @@ -28191,7 +28290,7 @@ msgstr "" msgid "User {0} is disabled" msgstr "" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "" @@ -28212,7 +28311,7 @@ msgstr "" msgid "Username" msgstr "" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "" @@ -28296,7 +28395,7 @@ msgstr "" msgid "Validate SSL Certificate" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "" @@ -28319,8 +28418,8 @@ msgstr "" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28352,7 +28451,7 @@ msgstr "" msgid "Value To Be Set" msgstr "" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "" @@ -28368,11 +28467,11 @@ msgstr "" msgid "Value for a check field can be either 0 or 1" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 msgid "Value for field {0} is too long in {1}. Length should be lesser than {2} characters" msgstr "" -#: frappe/model/base_document.py:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "" @@ -28397,7 +28496,7 @@ msgstr "" msgid "Value to Validate" msgstr "" -#: frappe/model/base_document.py:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "" @@ -28414,7 +28513,7 @@ msgstr "" msgid "Value {0} must in {1} format" msgstr "" -#: frappe/core/doctype/version/version_view.html:8 +#: frappe/core/doctype/version/version_view.html:9 msgid "Values Changed" msgstr "" @@ -28427,7 +28526,7 @@ msgstr "" msgid "Verification" msgstr "" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "" @@ -28489,15 +28588,7 @@ msgstr "" msgid "View Audit Trail" msgstr "" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "" @@ -28509,7 +28600,7 @@ msgstr "" msgid "View Full Log" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "" @@ -28519,7 +28610,7 @@ msgstr "" msgid "View Log" msgstr "" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "" @@ -28566,7 +28657,7 @@ msgstr "" msgid "View this in your browser" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "" @@ -28635,6 +28726,7 @@ msgid "Warehouse" msgstr "" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "" @@ -28643,7 +28735,7 @@ msgstr "" msgid "Warning: DATA LOSS IMMINENT! Proceeding will permanently delete following database columns from doctype {0}:" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "" @@ -28729,7 +28821,7 @@ msgstr "" msgid "Web Page Block" msgstr "" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "" @@ -28832,7 +28924,7 @@ msgstr "" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "" @@ -28845,10 +28937,6 @@ msgstr "" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -28892,7 +28980,7 @@ msgstr "" msgid "Website Search Field" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "" @@ -29109,11 +29197,6 @@ msgstr "" msgid "Will add \"%\" before and after the query" msgstr "" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "" - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "" @@ -29128,7 +29211,7 @@ msgstr "" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "" -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "" @@ -29206,7 +29289,7 @@ msgstr "" msgid "Workflow Data" msgstr "" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "" @@ -29232,11 +29315,11 @@ msgstr "" msgid "Workflow State Field" msgstr "" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "" @@ -29244,15 +29327,30 @@ msgstr "" msgid "Workflow States Don't Exist" msgstr "" -#: frappe/model/workflow.py:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29268,13 +29366,13 @@ msgstr "" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "" @@ -29344,11 +29442,11 @@ msgstr "" msgid "Workspaces" msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "" -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "" @@ -29367,11 +29465,11 @@ msgstr "" msgid "Write" msgstr "" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "" @@ -29390,13 +29488,13 @@ msgstr "" msgid "Y Axis" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" msgstr "" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "" @@ -29448,16 +29546,17 @@ msgstr "" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "" @@ -29485,6 +29584,18 @@ msgstr "" msgid "You Liked" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "" @@ -29523,20 +29634,20 @@ msgstr "" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "" -#: frappe/public/js/frappe/views/communication.js:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "" @@ -29560,7 +29671,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:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 msgid "You are only allowed to update order, do not remove or add apps." msgstr "" @@ -29586,13 +29697,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " +msgid "You can also copy-paste this" msgstr "" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "" +#: frappe/templates/emails/user_invitation_expired.html:8 +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 "" @@ -29605,11 +29720,11 @@ msgstr "" msgid "You can continue with the onboarding after exploring this page" msgstr "" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "" -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "" @@ -29629,7 +29744,7 @@ msgstr "" msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "" -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "" @@ -29647,7 +29762,7 @@ msgstr "" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "" -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "" @@ -29659,11 +29774,11 @@ msgstr "" msgid "You can use wildcard %" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "" @@ -29681,7 +29796,7 @@ msgstr "" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:385 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "" @@ -29711,7 +29826,7 @@ msgstr "" msgid "You created this" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "" @@ -29724,15 +29839,15 @@ msgstr "" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "" @@ -29744,11 +29859,11 @@ msgstr "" msgid "You don't have access to Report: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "" -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "" @@ -29756,19 +29871,19 @@ msgstr "" msgid "You don't have permission to get a report on: {0}" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " +msgid "You have a new message from:" msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "" @@ -29776,11 +29891,7 @@ msgstr "" msgid "You have not entered a value. The field will be set to empty." msgstr "" -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "" @@ -29800,7 +29911,7 @@ msgstr "" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "" -#: frappe/public/js/frappe/list/list_view.js:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "" @@ -29817,11 +29928,11 @@ msgstr "" msgid "You must add atleast one link." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "" -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "" @@ -29845,7 +29956,7 @@ msgstr "" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "" @@ -29853,12 +29964,12 @@ msgstr "" msgid "You need to be logged in to access this page" msgstr "" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "" #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " +msgid "You need to create these first:" msgstr "" #: frappe/www/login.html:76 @@ -29893,11 +30004,19 @@ msgstr "" msgid "You need {0} permission to fetch values from {1} {2}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "" @@ -29928,10 +30047,26 @@ msgstr "" msgid "You viewed this" msgstr "" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "" @@ -29961,7 +30096,7 @@ msgstr "" msgid "Your account has been deleted" msgstr "" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "" @@ -29985,10 +30120,22 @@ msgstr "" msgid "Your email address" msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "" @@ -30011,7 +30158,11 @@ msgstr "" msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "" -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "" @@ -30033,7 +30184,7 @@ msgstr "" msgid "Zero means send records updated at anytime" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" msgstr "" @@ -30055,10 +30206,6 @@ msgstr "" msgid "`job_id` paramater is required for deduplication." msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30093,7 +30240,7 @@ msgstr "" msgid "cProfile Output" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "" @@ -30238,12 +30385,12 @@ msgstr "" msgid "email" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "" @@ -30300,7 +30447,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "" @@ -30315,11 +30462,6 @@ msgstr "" msgid "import" msgstr "" -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "" - #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "" @@ -30328,7 +30470,7 @@ msgstr "" msgid "just now" msgstr "" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "" @@ -30357,7 +30499,7 @@ msgstr "" msgid "logged in" msgstr "" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "" @@ -30378,11 +30520,6 @@ msgstr "" msgid "merged {0} into {1}" msgstr "" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "" - #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json @@ -30406,7 +30543,7 @@ msgstr "" msgid "module name..." msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "" @@ -30535,10 +30672,6 @@ msgstr "" msgid "red" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "" @@ -30594,19 +30727,19 @@ msgstr "" msgid "short" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "" @@ -30659,6 +30792,10 @@ msgstr "" msgid "this shouldn't break" msgstr "" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30686,7 +30823,7 @@ msgstr "" msgid "via Assignment Rule" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "" @@ -30700,7 +30837,7 @@ msgstr "" msgid "via Google Meet" msgstr "" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "" @@ -30733,10 +30870,15 @@ msgstr "" msgid "wkhtmltopdf" msgstr "" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "" +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json @@ -30764,11 +30906,11 @@ msgstr "" msgid "{0}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "" @@ -30794,19 +30936,19 @@ msgstr "" msgid "{0} Calendar" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "" -#: frappe/public/js/frappe/form/grid_row.js:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "" @@ -30830,6 +30972,10 @@ msgstr "" msgid "{0} List" msgstr "" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "" @@ -30842,7 +30988,7 @@ msgstr "" msgid "{0} Name" msgstr "" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "" @@ -30852,11 +30998,10 @@ msgstr "" msgid "{0} Report" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "" @@ -30881,7 +31026,15 @@ msgstr "" msgid "{0} added" msgstr "" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "" @@ -30893,7 +31046,7 @@ msgstr "" msgid "{0} already unsubscribed for {1} {2}" msgstr "" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "" @@ -30901,7 +31054,7 @@ msgstr "" msgid "{0} are currently {1}" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "" @@ -30918,7 +31071,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "" @@ -30960,11 +31113,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." msgstr "" @@ -30977,7 +31126,7 @@ msgstr "" msgid "{0} created this" msgstr "" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "" @@ -30999,7 +31148,7 @@ msgstr "" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31031,7 +31180,7 @@ msgstr "" msgid "{0} hours ago" msgstr "" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "" @@ -31040,23 +31189,23 @@ msgstr "" msgid "{0} in row {1} cannot have both URL and child items" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "" @@ -31065,27 +31214,27 @@ msgstr "" msgid "{0} is currently {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "" @@ -31093,7 +31242,7 @@ msgstr "" msgid "{0} is mandatory" msgstr "" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31113,12 +31262,12 @@ msgstr "" msgid "{0} is not a valid Cron expression." msgstr "" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "" @@ -31126,15 +31275,15 @@ msgstr "" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "" @@ -31150,55 +31299,59 @@ msgstr "" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" msgstr "" #: frappe/email/doctype/email_account/email_account.py:304 -#: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: 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/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "" @@ -31231,35 +31384,35 @@ msgstr "" msgid "{0} months ago" msgstr "" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "" @@ -31267,7 +31420,7 @@ msgstr "" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "" -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "" @@ -31280,11 +31433,11 @@ msgid "{0} not found" msgstr "" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "" @@ -31293,7 +31446,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "" -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "" @@ -31317,6 +31470,10 @@ msgstr "" msgid "{0} records will be exported" msgstr "" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31326,15 +31483,29 @@ msgstr "" msgid "{0} removed their assignment." msgstr "" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "" @@ -31354,11 +31525,11 @@ msgstr "" msgid "{0} shared this document with {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "" @@ -31371,8 +31542,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "" @@ -31382,7 +31553,7 @@ msgstr "" #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "" @@ -31390,7 +31561,7 @@ msgstr "" msgid "{0} un-shared this document with {1}" msgstr "" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "" @@ -31426,15 +31597,15 @@ msgstr "" msgid "{0} {1} added to Dashboard {2}" msgstr "" -#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "" @@ -31450,11 +31621,11 @@ msgstr "" msgid "{0} {1} not found" msgstr "" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "" -#: frappe/model/base_document.py:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "" @@ -31462,79 +31633,79 @@ msgstr "" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "" -#: frappe/model/base_document.py:1120 +#: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 msgid "{0}: Cannot set import as {1} is not importable" msgstr "" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 +#: 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:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 msgid "{0}: Options must be a valid DocType for field {1} in row {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "" @@ -31542,7 +31713,7 @@ msgstr "" msgid "{0}: Other permission rules may also apply" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "" @@ -31550,7 +31721,7 @@ msgstr "" msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "" @@ -31563,11 +31734,11 @@ msgstr "" msgid "{0}: {1} is set to state {2}" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "" @@ -31591,7 +31762,7 @@ msgstr "" msgid "{count} rows selected" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "" @@ -31599,11 +31770,11 @@ msgstr "" msgid "{} Complete" msgstr "" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
    {}" msgstr "" @@ -31629,7 +31800,7 @@ msgstr "" msgid "{} is not a valid date string." msgstr "" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "" diff --git a/frappe/locale/zh.po b/frappe/locale/zh.po index 674e5bbe47..f0a4532e31 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-07-20 09:35+0000\n" -"PO-Revision-Date: 2025-07-21 21:50\n" +"POT-Creation-Date: 2025-10-05 09:33+0000\n" +"PO-Revision-Date: 2025-10-06 22:59\n" "Last-Translator: developers@frappe.io\n" "Language-Team: Chinese Simplified\n" "MIME-Version: 1.0\n" @@ -18,10 +18,6 @@ msgstr "" "X-Crowdin-File-ID: 52\n" "Language: zh_CN\n" -#: frappe/templates/emails/download_data.html:9 -msgid " to your browser" -msgstr "到您的浏览器" - #. Option for the 'Condition' (Select) field in DocType 'Document Naming Rule #. Condition' #: frappe/core/doctype/document_naming_rule_condition/document_naming_rule_condition.json @@ -61,7 +57,7 @@ msgstr "#{0}" msgid "${values.doctype_name} has been added to queue for optimization" msgstr "${values.doctype_name} 已加入优化队列" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "© Frappe Technologies Pvt. Ltd. and contributors" msgstr "© Frappe科技有限公司及贡献者" @@ -74,7 +70,7 @@ msgstr "<HEAD> HTML" msgid "'In Global Search' is not allowed for field {0} of type {1}" msgstr "字段类型{1}的字段{0}不允许启用'全局搜索'" -#: frappe/core/doctype/doctype/doctype.py:1354 +#: frappe/core/doctype/doctype/doctype.py:1355 msgid "'In Global Search' not allowed for type {0} in row {1}" msgstr "行{1}中的类型{0}不允许“全局搜索”" @@ -82,19 +78,23 @@ msgstr "行{1}中的类型{0}不允许“全局搜索”" msgid "'In List View' is not allowed for field {0} of type {1}" msgstr "字段类型{1}的字段{0}不允许显示在'列表视图'" -#: frappe/custom/doctype/customize_form/customize_form.py:362 +#: frappe/custom/doctype/customize_form/customize_form.py:367 msgid "'In List View' not allowed for type {0} in row {1}" msgstr "行{1}中的类型{0}不允许选择“在列表视图中显示”" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:156 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:164 msgid "'Recipients' not specified" msgstr "'收件人'未指定" -#: frappe/utils/__init__.py:256 +#: frappe/utils/__init__.py:271 +msgid "'{0}' is not a valid IBAN" +msgstr "" + +#: frappe/utils/__init__.py:261 msgid "'{0}' is not a valid URL" msgstr "'{0}' 不是有效的URL" -#: frappe/core/doctype/doctype/doctype.py:1348 +#: frappe/core/doctype/doctype/doctype.py:1349 msgid "'{0}' not allowed for type {1} in row {2}" msgstr "第{2}行类型{1}不允许使用'{0}'" @@ -102,11 +102,11 @@ msgstr "第{2}行类型{1}不允许使用'{0}'" msgid "(Mandatory)" msgstr "(必填项)" -#: frappe/model/rename_doc.py:704 +#: frappe/model/rename_doc.py:703 msgid "** Failed: {0} to {1}: {2}" msgstr "**失败:{0} {1}:{2}" -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 msgid "+ Add / Remove Fields" msgstr "添加/移除字段" @@ -122,7 +122,7 @@ msgstr "0 - 草稿; 1 - 已提交; 2 - 已取消" msgid "0 is highest" msgstr "0是最高的" -#: frappe/public/js/frappe/form/grid_row.js:876 +#: frappe/public/js/frappe/form/grid_row.js:893 msgid "1 = True & 0 = False" msgstr "1=真 & 0=假" @@ -141,15 +141,11 @@ msgstr "1天" msgid "1 Google Calendar Event synced." msgstr "已同步1个Google日历事件" -#: frappe/public/js/frappe/views/reports/query_report.js:954 +#: frappe/public/js/frappe/views/reports/query_report.js:963 msgid "1 Report" msgstr "1个报表" -#: frappe/website/doctype/blog_post/blog_post.py:380 -msgid "1 comment" -msgstr "1条评论" - -#: frappe/tests/test_utils.py:716 +#: frappe/tests/test_utils.py:845 msgid "1 day ago" msgstr "1天前" @@ -158,17 +154,17 @@ msgid "1 hour" msgstr "1小时" #: frappe/public/js/frappe/utils/pretty_date.js:52 -#: frappe/tests/test_utils.py:714 +#: frappe/tests/test_utils.py:843 msgid "1 hour ago" msgstr "1小时前" #: frappe/public/js/frappe/utils/pretty_date.js:48 -#: frappe/tests/test_utils.py:712 +#: frappe/tests/test_utils.py:841 msgid "1 minute ago" msgstr "1分钟前" #: frappe/public/js/frappe/utils/pretty_date.js:66 -#: frappe/tests/test_utils.py:720 +#: frappe/tests/test_utils.py:849 msgid "1 month ago" msgstr "一个月前" @@ -180,37 +176,47 @@ msgstr "第1项/共2项" msgid "1 record will be exported" msgstr "将导出一笔记录" -#: frappe/tests/test_utils.py:711 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:320 +msgctxt "User removed row from child table" +msgid "1 row from {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:275 +msgctxt "User added row to child table" +msgid "1 row to {0}" +msgstr "" + +#: frappe/tests/test_utils.py:840 msgid "1 second ago" msgstr "1秒前" #: frappe/public/js/frappe/utils/pretty_date.js:62 -#: frappe/tests/test_utils.py:718 +#: frappe/tests/test_utils.py:847 msgid "1 week ago" msgstr "一周前" #: frappe/public/js/frappe/utils/pretty_date.js:70 -#: frappe/tests/test_utils.py:722 +#: frappe/tests/test_utils.py:851 msgid "1 year ago" msgstr "一年前" -#: frappe/tests/test_utils.py:715 +#: frappe/tests/test_utils.py:844 msgid "2 hours ago" msgstr "2小时前" -#: frappe/tests/test_utils.py:721 +#: frappe/tests/test_utils.py:850 msgid "2 months ago" msgstr "2个月前" -#: frappe/tests/test_utils.py:719 +#: frappe/tests/test_utils.py:848 msgid "2 weeks ago" msgstr "2周前" -#: frappe/tests/test_utils.py:723 +#: frappe/tests/test_utils.py:852 msgid "2 years ago" msgstr "2年前" -#: frappe/tests/test_utils.py:713 +#: frappe/tests/test_utils.py:842 msgid "3 minutes ago" msgstr "3分钟前" @@ -226,7 +232,7 @@ msgstr "4小时" msgid "5 Records" msgstr "5笔记录" -#: frappe/tests/test_utils.py:717 +#: frappe/tests/test_utils.py:846 msgid "5 days ago" msgstr "5天前" @@ -246,6 +252,13 @@ msgstr "<" msgid "<=" msgstr "小于等于" +#. Description of the 'Generate Keys' (Button) field in DocType 'User' +#: frappe/core/doctype/user/user.json +msgid "\n" +" Click here to learn about token-based authentication\n" +"" +msgstr "" + #: frappe/public/js/frappe/widgets/widget_dialog.js:601 msgid "{0} is not a valid URL" msgstr "{0} 不是有效的URL" @@ -255,6 +268,16 @@ msgstr "{0} 不是有效的URL" msgid "
    Please don't update it as it can mess up your form. Use the Customize Form View and Custom Fields to set properties!
    " msgstr "
    请不要直接更新这个表单里的内容,可能会导致系统瘫痪!请使用定制表单和自定义字段功能让系统自动产生此表单的数据!
    " +#. Introduction text of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "

    Request a file containing your personally identifiable information (PII) that is saved on our system. The file will be in JSON format and is sent to you by email. If you would like to have your PII deleted from our system, please make a request to delete data.

    " +msgstr "" + +#. Introduction text of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "

    Send a request to delete your account and personally identifiable information (PII) that is stored on our system. You will receive an email to verify your request. Once the request is verified we will take care of deleting your PII. If you just want to check what PII we have stored, you can request your data.

    " +msgstr "" + #. Content of the 'Help HTML' (HTML) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -641,7 +664,7 @@ msgstr "

    要与上述 HTML 交互,您必须使用 `root_element` 作为父 "some_class_element.textContent = \"New content\";\n" "" -#: frappe/twofactor.py:446 +#: frappe/twofactor.py:451 msgid "

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

    " msgstr "

    您在{0}的OTP密钥已被重置。若非您本人操作,请立即联系系统管理员。

    " @@ -731,7 +754,7 @@ msgstr ">" msgid ">=" msgstr ">=" -#: frappe/core/doctype/doctype/doctype.py:1034 +#: frappe/core/doctype/doctype/doctype.py:1035 msgid "A DocType's name should start with a letter and can only consist of letters, numbers, spaces, underscores and hyphens" msgstr "文档类型名称应以字母开头,只能包含字母、数字、空格、下划线和连字符" @@ -740,15 +763,16 @@ msgstr "文档类型名称应以字母开头,只能包含字母、数字、空 msgid "A Frappe Framework instance can function as an OAuth Client, Resource, or Authorization server. This DocType contains settings related to all three." msgstr "" -#: frappe/website/doctype/blog_post/blog_post.py:92 -msgid "A featured post must have a cover image" -msgstr "推荐文章必须包含封面图片" +#. Success message of the request-data Web Form +#: frappe/website/web_form/request_data/request_data.json +msgid "A download link with your data will be sent to the email address associated with your account." +msgstr "" #: frappe/custom/doctype/custom_field/custom_field.py:175 msgid "A field with the name {0} already exists in {1}" msgstr "字段{0}已在{1}中存在" -#: frappe/core/doctype/file/file.py:257 +#: frappe/core/doctype/file/file.py:269 msgid "A file with same name {} already exists" msgstr "同名文件{}已存在" @@ -761,7 +785,7 @@ msgstr "资源的列表,它的客户端应用程序必须将用户允许后访 msgid "A new account has been created for you at {0}" msgstr "已为您创建新账户{0}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:400 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:431 msgid "A recurring {0} {1} has been created for you via Auto Repeat {2}." msgstr "已通过自动重复{2}为您创建周期性{0} {1}。" @@ -860,13 +884,17 @@ msgstr "API端点" msgid "API Endpoint Args" msgstr "API端点参数" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:102 +msgid "API Endpoint Args should be valid JSON" +msgstr "" + #. Label of the api_key (Data) field in DocType 'User' #. Label of the api_key (Data) field in DocType 'Email Account' #. Label of the api_key (Password) field in DocType 'Geolocation Settings' #. Label of the api_key (Data) field in DocType 'Google Settings' #. Label of the sb_01 (Section Break) field in DocType 'Google Settings' #. Label of the api_key (Data) field in DocType 'Push Notification Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:459 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/geolocation_settings/geolocation_settings.json #: frappe/integrations/doctype/google_settings/google_settings.json @@ -885,6 +913,10 @@ msgstr "与中继服务器交互的API密钥和密钥。当从本站点安装的 msgid "API Key cannot be regenerated" msgstr "无法重新生成API密钥" +#: frappe/core/doctype/user/user.js:456 +msgid "API Keys" +msgstr "" + #. Label of the api_logging_section (Section Break) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -905,7 +937,7 @@ msgstr "" #. Label of the api_secret (Password) field in DocType 'Email Account' #. Label of the api_secret (Password) field in DocType 'Push Notification #. Settings' -#: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user/user.js:466 frappe/core/doctype/user/user.json #: frappe/email/doctype/email_account/email_account.json #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json msgid "API Secret" @@ -952,6 +984,20 @@ msgstr "剩余约{0}分钟" msgid "About {0} seconds remaining" msgstr "剩余约{0}秒" +#: frappe/templates/emails/user_invitation.html:16 +msgid "Accept Invitation" +msgstr "接受邀请" + +#. Option for the 'Status' (Select) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted" +msgstr "已接受" + +#. Label of the accepted_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Accepted At" +msgstr "接受时间" + #. Label of the access_control_section (Section Break) field in DocType 'Web #. Form' #: frappe/website/doctype/web_form/web_form.json @@ -977,7 +1023,7 @@ msgstr "访问令牌" msgid "Access Token URL" msgstr "访问令牌URL" -#: frappe/auth.py:491 +#: frappe/auth.py:494 msgid "Access not allowed from this IP Address" msgstr "禁止从此IP地址访问" @@ -1041,7 +1087,7 @@ msgstr "操作 / 网址路径" msgid "Action Complete" msgstr "操作完成" -#: frappe/model/document.py:1881 +#: frappe/model/document.py:1888 msgid "Action Failed" msgstr "操作失败" @@ -1093,7 +1139,7 @@ msgstr "操作{0}在{2} {1}上失败。查看{3}" #: frappe/public/js/frappe/views/reports/query_report.js:191 #: frappe/public/js/frappe/views/reports/query_report.js:204 #: frappe/public/js/frappe/views/reports/query_report.js:214 -#: frappe/public/js/frappe/views/reports/query_report.js:841 +#: frappe/public/js/frappe/views/reports/query_report.js:850 msgid "Actions" msgstr "操作" @@ -1150,7 +1196,7 @@ msgstr "用户操作日志" #: frappe/core/page/permission_manager/permission_manager.js:482 #: frappe/email/doctype/email_group/email_group.js:60 -#: frappe/public/js/frappe/form/grid_row.js:485 +#: frappe/public/js/frappe/form/grid_row.js:502 #: frappe/public/js/frappe/form/sidebar/assign_to.js:101 #: frappe/public/js/frappe/form/templates/set_sharing.html:68 #: frappe/public/js/frappe/list/bulk_operations.js:437 @@ -1161,7 +1207,7 @@ msgstr "用户操作日志" msgid "Add" msgstr "添加" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Add / Remove Columns" msgstr "添加/移除列" @@ -1173,7 +1219,7 @@ msgstr "添加/更新" msgid "Add A New Rule" msgstr "创建新规则" -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:159 msgid "Add Attachment" msgstr "添加附件" @@ -1193,7 +1239,7 @@ msgstr "添加底部边框" msgid "Add Border at Top" msgstr "添加上方边框" -#: frappe/desk/doctype/number_card/number_card.js:36 +#: frappe/desk/doctype/number_card/number_card.js:37 msgid "Add Card to Dashboard" msgstr "添加到仪表板" @@ -1206,10 +1252,10 @@ msgid "Add Child" msgstr "添加子项" #: frappe/public/js/frappe/views/kanban/kanban_board.html:4 -#: frappe/public/js/frappe/views/reports/query_report.js:1821 -#: frappe/public/js/frappe/views/reports/query_report.js:1824 -#: frappe/public/js/frappe/views/reports/report_view.js:355 -#: frappe/public/js/frappe/views/reports/report_view.js:380 +#: frappe/public/js/frappe/views/reports/query_report.js:1840 +#: frappe/public/js/frappe/views/reports/query_report.js:1843 +#: frappe/public/js/frappe/views/reports/report_view.js:360 +#: frappe/public/js/frappe/views/reports/report_view.js:385 #: frappe/public/js/print_format_builder/Field.vue:112 msgid "Add Column" msgstr "添加列" @@ -1268,7 +1314,7 @@ msgstr "添加参与者" msgid "Add Query Parameters" msgstr "添加查询参数" -#: frappe/core/doctype/user/user.py:812 +#: frappe/core/doctype/user/user.py:819 msgid "Add Roles" msgstr "添加角色" @@ -1301,12 +1347,12 @@ msgstr "添加订阅者" msgid "Add Tags" msgstr "添加标签" -#: frappe/public/js/frappe/list/list_view.js:2002 +#: frappe/public/js/frappe/list/list_view.js:2151 msgctxt "Button in list view actions menu" msgid "Add Tags" msgstr "添加标签" -#: frappe/public/js/frappe/views/communication.js:430 +#: frappe/public/js/frappe/views/communication.js:433 msgid "Add Template" msgstr "新建模板" @@ -1395,7 +1441,7 @@ msgstr "添加新页签" msgid "Add page break" msgstr "添加分页符" -#: frappe/custom/doctype/client_script/client_script.js:16 +#: frappe/custom/doctype/client_script/client_script.js:18 msgid "Add script for Child Table" msgstr "添加子表的脚本" @@ -1433,7 +1479,7 @@ msgstr "发送邮件至{0}参与此活动" msgid "Add {0}" msgstr "添加{0}" -#: frappe/public/js/frappe/list/list_view.js:286 +#: frappe/public/js/frappe/list/list_view.js:289 msgctxt "Primary action in list view" msgid "Add {0}" msgstr "添加{0}" @@ -1476,6 +1522,7 @@ msgstr "额外权限" #. Label of the address (Small Text) field in DocType 'Website Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:46 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/website_settings/website_settings.json msgid "Address" @@ -1484,6 +1531,7 @@ msgstr "地址" #. Label of the address_line1 (Data) field in DocType 'Address' #. Label of the address_line1 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:37 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Address Line 1" msgstr "详细地址1" @@ -1491,6 +1539,7 @@ msgstr "详细地址1" #. Label of the address_line2 (Data) field in DocType 'Address' #. Label of the address_line2 (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json +#: frappe/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 "详细地址2" @@ -1541,7 +1590,7 @@ msgstr "为文档类型添加自定义客户端脚本" msgid "Adds a custom field to a DocType" msgstr "为单据类型添加一个自定义字段" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:552 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:561 msgid "Administration" msgstr "系统管理" @@ -1555,7 +1604,6 @@ msgstr "系统管理" #: frappe/core/doctype/recorder/recorder.json #: frappe/core/doctype/report/report.json #: frappe/core/doctype/rq_job/rq_job.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/client_script/client_script.json @@ -1568,11 +1616,11 @@ msgstr "系统管理" msgid "Administrator" msgstr "管理员" -#: frappe/core/doctype/user/user.py:1217 +#: frappe/core/doctype/user/user.py:1226 msgid "Administrator Logged In" msgstr "管理员登录" -#: frappe/core/doctype/user/user.py:1211 +#: frappe/core/doctype/user/user.py:1220 msgid "Administrator accessed {0} on {1} via IP Address {2}." msgstr "管理员访问{0}在{1}通过IP地址{2}。" @@ -1593,8 +1641,8 @@ msgstr "高级" msgid "Advanced Control" msgstr "高级控制" -#: frappe/public/js/frappe/form/controls/link.js:335 -#: frappe/public/js/frappe/form/controls/link.js:337 +#: frappe/public/js/frappe/form/controls/link.js:339 +#: frappe/public/js/frappe/form/controls/link.js:341 msgid "Advanced Search" msgstr "高级搜索" @@ -1653,7 +1701,7 @@ msgstr "提交后" msgid "After Submit" msgstr "提交后" -#: frappe/desk/doctype/number_card/number_card.py:62 +#: frappe/desk/doctype/number_card/number_card.py:63 msgid "Aggregate Field is required to create a number card" msgstr "创建数字卡片需要聚合字段" @@ -1680,11 +1728,11 @@ msgstr "警报" msgid "Alerts and Notifications" msgstr "预警与通知" -#: frappe/database/query.py:1608 +#: frappe/database/query.py:1610 msgid "Alias cannot be a SQL keyword: {0}" msgstr "" -#: frappe/database/query.py:1533 +#: frappe/database/query.py:1535 msgid "Alias must be a string" msgstr "" @@ -1749,7 +1797,7 @@ msgstr "所有连接到网站幻灯片的图片应该是公开的" msgid "All Records" msgstr "所有记录" -#: frappe/public/js/frappe/form/form.js:2222 +#: frappe/public/js/frappe/form/form.js:2224 msgid "All Submissions" msgstr "所有提交" @@ -1809,8 +1857,8 @@ msgstr "启用批量编辑" #. Label of the allow_consecutive_login_attempts (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "Allow Consecutive Login Attempts " -msgstr "允许连续登录尝试" +msgid "Allow Consecutive Login Attempts" +msgstr "" #: frappe/integrations/doctype/google_calendar/google_calendar.py:79 msgid "Allow Google Calendar Access" @@ -1830,11 +1878,6 @@ msgstr "允许访客" msgid "Allow Guest to View" msgstr "允许访客查看" -#. Label of the allow_guest_to_comment (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Allow Guest to comment" -msgstr "允许访客评论" - #. Label of the allow_guests_to_upload_files (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -1883,7 +1926,7 @@ msgid "Allow Print for Cancelled" msgstr "允许打印已取消的单据" #. Label of the allow_print_for_draft (Check) field in DocType 'Print Settings' -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/printing/doctype/print_settings/print_settings.json msgid "Allow Print for Draft" msgstr "允许在草稿状态下打印" @@ -2116,7 +2159,7 @@ msgstr "" msgid "Allows skipping authorization if a user has active tokens." msgstr "" -#: frappe/core/doctype/user/user.py:1027 +#: frappe/core/doctype/user/user.py:1034 msgid "Already Registered" msgstr "已注册" @@ -2124,11 +2167,11 @@ msgstr "已注册" msgid "Already in the following Users ToDo list:{0}" msgstr "已在以下用户待办列表中:{0}" -#: frappe/public/js/frappe/views/reports/report_view.js:902 +#: frappe/public/js/frappe/views/reports/report_view.js:907 msgid "Also adding the dependent currency field {0}" msgstr "还要添加从属货币字段{0}" -#: frappe/public/js/frappe/views/reports/report_view.js:915 +#: frappe/public/js/frappe/views/reports/report_view.js:920 msgid "Also adding the status dependency field {0}" msgstr "同时添加状态依赖字段{0}" @@ -2137,6 +2180,12 @@ msgstr "同时添加状态依赖字段{0}" msgid "Alternative Email ID" msgstr "别的邮箱账号" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Always" +msgstr "" + #. Label of the always_bcc (Data) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Always BCC Address" @@ -2188,10 +2237,8 @@ msgstr "修订单据命名设置" msgid "Amended Documents" msgstr "修订后单据" -#. Label of the amended_from (Link) field in DocType 'Transaction Log' #. Label of the amended_from (Link) field in DocType 'Personal Data Download #. Request' -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json msgid "Amended From" msgstr "修订自(上一版单据编号)" @@ -2215,6 +2262,11 @@ msgstr "不允许修订" msgid "Amendment naming rules updated." msgstr "修订命名规则已更新。" +#. Success message of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +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:354 msgid "An error occurred while setting Session Defaults" msgstr "设置会话默认值时发生错误" @@ -2308,10 +2360,12 @@ msgid "App Logo" msgstr "应用图标" #. Label of the app_name (Select) field in DocType 'Module Def' +#. Label of the app_name (Select) field in DocType 'User Invitation' #. Label of the app_name (Data) field in DocType 'Changelog Feed' #. Label of the app_name (Data) field in DocType 'Website Settings' #: frappe/core/doctype/installed_applications/installed_applications.js:27 #: frappe/core/doctype/module_def/module_def.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/changelog_feed/changelog_feed.json #: frappe/website/doctype/website_settings/website_settings.json msgid "App Name" @@ -2382,6 +2436,10 @@ msgstr "应用名称" msgid "Application Version" msgstr "应用版本" +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Application is not installed" +msgstr "" + #. Label of the doctype_or_field (Select) field in DocType 'Property Setter' #: frappe/custom/doctype/property_setter/property_setter.json msgid "Applied On" @@ -2391,7 +2449,7 @@ msgstr "应用于" msgid "Apply" msgstr "应用" -#: frappe/public/js/frappe/list/list_view.js:1987 +#: frappe/public/js/frappe/list/list_view.js:2136 msgctxt "Button in list view actions menu" msgid "Apply Assignment Rule" msgstr "应用分配规则" @@ -2439,7 +2497,7 @@ msgstr "用户是制单人则应用此规则" msgid "Apply to all Documents Types" msgstr "适用所有单据类型" -#: frappe/model/workflow.py:266 +#: frappe/model/workflow.py:322 msgid "Applying: {0}" msgstr "申请:{0}" @@ -2472,7 +2530,11 @@ msgstr "已存档" msgid "Archived Columns" msgstr "归档列" -#: frappe/public/js/frappe/list/list_view.js:1966 +#: frappe/core/doctype/user_invitation/user_invitation.js:18 +msgid "Are you sure you want to cancel the invitation?" +msgstr "" + +#: frappe/public/js/frappe/list/list_view.js:2115 msgid "Are you sure you want to clear the assignments?" msgstr "确定要清除分配吗?" @@ -2500,11 +2562,15 @@ msgctxt "Confirmation dialog message" msgid "Are you sure you want to delete the tab? All the sections along with fields in the tab will be moved to the previous tab." msgstr "确定要删除标签页吗?该标签页中的所有节及字段将移至前一标签页。" -#: frappe/public/js/frappe/web_form/web_form.js:185 +#: frappe/public/js/frappe/web_form/web_form.js:203 +msgid "Are you sure you want to delete this record?" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:191 msgid "Are you sure you want to discard the changes?" msgstr "确定要放弃更改吗?" -#: frappe/public/js/frappe/views/reports/query_report.js:968 +#: frappe/public/js/frappe/views/reports/query_report.js:977 msgid "Are you sure you want to generate a new report?" msgstr "确定要生成新报告吗?" @@ -2512,7 +2578,7 @@ msgstr "确定要生成新报告吗?" msgid "Are you sure you want to merge {0} with {1}?" msgstr "确定要将{0}与{1}合并吗?" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:108 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:118 msgid "Are you sure you want to proceed?" msgstr "确定要继续吗?" @@ -2567,6 +2633,12 @@ msgstr "由于文档共享已禁用,请在分配前授予必要权限。" msgid "As per your request, your account and data on {0} associated with email {1} has been permanently deleted" msgstr "根据您的要求,已永久删除您在{0}上与电子邮件{1}关联的账户和数据" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Ask" +msgstr "" + #. Label of the assign_condition (Code) field in DocType 'Assignment Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json msgid "Assign Condition" @@ -2576,7 +2648,7 @@ msgstr "分派条件" msgid "Assign To" msgstr "执行人" -#: frappe/public/js/frappe/list/list_view.js:1948 +#: frappe/public/js/frappe/list/list_view.js:2097 msgctxt "Button in list view actions menu" msgid "Assign To" msgstr "分配给" @@ -2639,6 +2711,11 @@ msgstr "创建待办" msgid "Assigned To/Owner" msgstr "执行人/发起人" +#. Label of the assignee (Table MultiSelect) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Assignee" +msgstr "" + #: frappe/public/js/frappe/form/sidebar/assign_to.js:269 msgid "Assigning..." msgstr "分派中..." @@ -2708,7 +2785,13 @@ msgstr "{1}移除了{0}的分配" msgid "Assignments" msgstr "任务分派" -#: frappe/public/js/frappe/form/grid_row.js:680 +#. Label of the asynchronous (Check) field in DocType 'Workflow Transition +#. Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Asynchronous" +msgstr "" + +#: frappe/public/js/frappe/form/grid_row.js:697 msgid "At least one column is required to show in the grid." msgstr "网格中需要至少显示一列。" @@ -2788,7 +2871,7 @@ msgstr "关联的字段" msgid "Attached To Name" msgstr "关联单据名" -#: frappe/core/doctype/file/file.py:142 +#: frappe/core/doctype/file/file.py:152 msgid "Attached To Name must be a string or an integer" msgstr "附加到名称必须是字符串或整数" @@ -2804,7 +2887,7 @@ msgstr "附件" msgid "Attachment Limit (MB)" msgstr "附件大小限制(MB)" -#: frappe/core/doctype/file/file.py:324 +#: frappe/core/doctype/file/file.py:338 #: frappe/public/js/frappe/form/sidebar/attachments.js:36 msgid "Attachment Limit Reached" msgstr "已达到附件限制" @@ -2822,15 +2905,15 @@ 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:63 -#: frappe/website/doctype/web_form/templates/web_form.html:106 +#: frappe/website/doctype/web_form/templates/web_form.html:113 msgid "Attachments" msgstr "附件" -#: frappe/public/js/frappe/form/print_utils.js:104 +#: frappe/public/js/frappe/form/print_utils.js:119 msgid "Attempting Connection to QZ Tray..." msgstr "尝试连接QZ托盘......" -#: frappe/public/js/frappe/form/print_utils.js:120 +#: frappe/public/js/frappe/form/print_utils.js:135 msgid "Attempting to launch QZ Tray..." msgstr "试图推出QZ Tray ......" @@ -2853,6 +2936,10 @@ msgstr "审计轨迹" msgid "Auth URL Data" msgstr "身份验证URL数据" +#: frappe/integrations/doctype/social_login_key/social_login_key.py:96 +msgid "Auth URL data should be valid JSON" +msgstr "" + #. Label of the backend_app_flow (Check) field in DocType 'Email Account' #: frappe/email/doctype/email_account/email_account.json msgid "Authenticate as Service Principal" @@ -2870,8 +2957,8 @@ msgid "Authentication" msgstr "认证" #: frappe/www/qrcode.html:19 -msgid "Authentication Apps you can use are: " -msgstr "可使用的认证应用包括:" +msgid "Authentication Apps you can use are:" +msgstr "" #: frappe/email/doctype/email_account/email_account.py:339 msgid "Authentication failed while receiving emails from Email Account: {0}." @@ -2984,11 +3071,11 @@ msgstr "自动重复" msgid "Auto Repeat Day" msgstr "自动重复日" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:165 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:173 msgid "Auto Repeat Day{0} {1} has been repeated." msgstr "自动重复日{0} {1}已重复。" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:448 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:479 msgid "Auto Repeat Document Creation Failed" msgstr "自动重复文档创建失败" @@ -2996,11 +3083,16 @@ msgstr "自动重复文档创建失败" msgid "Auto Repeat Schedule" msgstr "自动重复计划" +#. Name of a DocType +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json +msgid "Auto Repeat User" +msgstr "" + #: frappe/public/js/frappe/utils/common.js:434 msgid "Auto Repeat created for this document" msgstr "已为此文档创建自动重复" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:451 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:482 msgid "Auto Repeat failed for {0}" msgstr "{0}自动重复失败" @@ -3044,7 +3136,7 @@ msgstr "自动关注你评论的单据" msgid "Auto follow documents that you create" msgstr "自动关注你创建的单据" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:227 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 msgid "Auto repeat failed. Please enable auto repeat after fixing the issues." msgstr "自动重复失败。请在解决问题后重新启用自动重复。" @@ -3092,7 +3184,7 @@ msgstr "仅当勾选“收邮件”时,才能激活自动链接。" msgid "Automatically Assign Documents to Users" msgstr "自动为用户分派单据" -#: frappe/public/js/frappe/list/list_view.js:128 +#: frappe/public/js/frappe/list/list_view.js:131 msgid "Automatically applied a filter for recent data. You can disable this behavior from the list view settings." msgstr "已自动应用最近数据筛选器。您可以在列表视图设置中禁用此行为。" @@ -3106,11 +3198,6 @@ msgstr "自动删除账号时限(小时)" msgid "Automation" msgstr "自动化" -#. Label of the avatar (Attach Image) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Avatar" -msgstr "头像" - #. Option for the 'Chart Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Group By Type' (Select) field in DocType 'Dashboard Chart' #. Option for the 'Function' (Select) field in DocType 'Number Card' @@ -3382,8 +3469,8 @@ msgstr "基本网址" #. Label of the based_on (Link) field in DocType 'Language' #: frappe/core/doctype/language/language.json -#: frappe/printing/page/print/print.js:273 -#: frappe/printing/page/print/print.js:327 +#: frappe/printing/page/print/print.js:286 +#: frappe/printing/page/print/print.js:340 msgid "Based On" msgstr "基于" @@ -3500,10 +3587,8 @@ msgstr "二进制日志记录" #. Label of the bio (Small Text) field in DocType 'User' #. Label of the bio (Small Text) field in DocType 'About Us Team Member' -#. Label of the bio (Small Text) field in DocType 'Blogger' #: frappe/core/doctype/user/user.json #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Bio" msgstr "个人简介" @@ -3533,64 +3618,6 @@ msgstr "锁定模块" msgid "Blocked" msgstr "锁定" -#. Label of a Card Break in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.py:245 -#: frappe/website/doctype/blog_post/templates/blog_post.html:13 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:2 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:11 -#: frappe/website/workspace/website/website.json -msgid "Blog" -msgstr "博客" - -#. Name of a DocType -#. Label of the blog_category (Link) field in DocType 'Blog Post' -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Category" -msgstr "博客分类" - -#. Label of the blog_intro (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Blog Intro" -msgstr "博客介绍" - -#. Label of the blog_introduction (Small Text) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Introduction" -msgstr "博客介绍" - -#. Name of a DocType -#. Label of a Link in the Website Workspace -#. Label of a shortcut in the Website Workspace -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/workspace/website/website.json -msgid "Blog Post" -msgstr "博客文章" - -#. Name of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Settings" -msgstr "博客设置" - -#. Label of the blog_title (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Blog Title" -msgstr "博客标题" - -#. Name of a role -#. Label of the blogger (Link) field in DocType 'Blog Post' -#. Name of a DocType -#. Label of a Link in the Website Workspace -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json -#: frappe/website/workspace/website/website.json -msgid "Blogger" -msgstr "博客作者" - #. Option for the 'Color' (Select) field in DocType 'DocType State' #. Option for the 'Indicator' (Select) field in DocType 'Kanban Board Column' #: frappe/core/doctype/doctype_state/doctype_state.json @@ -3688,13 +3715,6 @@ msgstr "品牌是出现在工具栏左上方的内容。如果是图片,请确 msgid "Breadcrumbs" msgstr "面包屑导航" -#. Label of the browse_by_category (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:18 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:21 -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Browse by category" -msgstr "按分类浏览" - #. Label of the browser (Data) field in DocType 'Web Page View' #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:36 @@ -3752,15 +3772,15 @@ msgstr "批量删除" msgid "Bulk Edit" msgstr "批量修改" -#: frappe/public/js/frappe/form/grid.js:1188 +#: frappe/public/js/frappe/form/grid.js:1190 msgid "Bulk Edit {0}" msgstr "批量编辑{0}" -#: frappe/desk/reportview.py:602 +#: frappe/desk/reportview.py:637 msgid "Bulk Operation Failed" msgstr "批量操作失败" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Bulk Operation Successful" msgstr "批量操作成功" @@ -3775,7 +3795,7 @@ msgstr "批量导出PDF" msgid "Bulk Update" msgstr "批量更新" -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Bulk approval only support up to 500 documents." msgstr "批量审批最多支持500个文档。" @@ -3787,7 +3807,7 @@ msgstr "批量操作已加入后台队列。" msgid "Bulk operations only support up to 500 documents." msgstr "批量操作最多支持500个文档。" -#: frappe/model/workflow.py:243 +#: frappe/model/workflow.py:299 msgid "Bulk {0} is enqueued in background." msgstr "批量{0}已加入后台队列。" @@ -3917,16 +3937,6 @@ msgstr "用于高亮元素的CSS选择器。" msgid "CSV" msgstr "CSV" -#. Label of the cta_label (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA Label" -msgstr "行动号召标签" - -#. Label of the cta_url (Data) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "CTA URL" -msgstr "行动号召URL" - #. Label of the cache_section (Section Break) field in DocType 'System Health #. Report' #: frappe/desk/doctype/system_health_report/system_health_report.json @@ -3977,11 +3987,6 @@ msgstr "行动召唤" msgid "Call To Action URL" msgstr "行动召唤网址" -#. Label of the cta_section (Section Break) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Call to Action" -msgstr "行动号召" - #. Label of the callback_message (Small Text) field in DocType 'Onboarding #. Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -3999,7 +4004,7 @@ msgid "Camera" msgstr "摄像头" #. Label of the campaign (Data) field in DocType 'Web Page View' -#: frappe/public/js/frappe/utils/utils.js:1729 +#: frappe/public/js/frappe/utils/utils.js:1766 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:39 msgid "Campaign" @@ -4035,7 +4040,7 @@ msgstr "可以写" msgid "Can not rename as column {0} is already present on DocType." msgstr "无法重命名,因为列{0}已存在于文档类型中。" -#: frappe/core/doctype/doctype/doctype.py:1163 +#: frappe/core/doctype/doctype/doctype.py:1164 msgid "Can only change to/from Autoincrement naming rule when there is no data in the doctype" msgstr "仅在单据类型无数据时修改自增编号" @@ -4059,14 +4064,15 @@ msgstr "无法将{0}重命名为{1},因为{0}不存在。" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json -#: frappe/core/doctype/doctype/doctype_list.js:130 +#: frappe/core/doctype/doctype/doctype_list.js:131 #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.js:17 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/reminders.js:54 msgid "Cancel" msgstr "取消" -#: frappe/public/js/frappe/list/list_view.js:2057 +#: frappe/public/js/frappe/list/list_view.js:2206 msgctxt "Button in list view actions menu" msgid "Cancel" msgstr "取消" @@ -4084,16 +4090,18 @@ msgstr "全部取消" msgid "Cancel All Documents" msgstr "取消所有单据" -#: frappe/public/js/frappe/list/list_view.js:2062 +#: frappe/public/js/frappe/list/list_view.js:2211 msgctxt "Title of confirmation dialog" msgid "Cancel {0} documents?" msgstr "确定要取消{0}个文档吗?" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Event' #. Option for the 'Status' (Select) field in DocType 'ToDo' #. Option for the 'Status' (Select) field in DocType 'Integration Request' #: frappe/core/doctype/comment/comment.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json frappe/desk/doctype/todo/todo.json #: frappe/desk/form/save.py:64 #: frappe/integrations/doctype/integration_request/integration_request.json @@ -4131,11 +4139,11 @@ msgstr "无法获取值" msgid "Cannot Remove" msgstr "无法删除" -#: frappe/model/base_document.py:1161 +#: frappe/model/base_document.py:1222 msgid "Cannot Update After Submit" msgstr "不允许提交后修改" -#: frappe/core/doctype/file/file.py:621 +#: frappe/core/doctype/file/file.py:646 msgid "Cannot access file path {0}" msgstr "无法访问文件路径{0}" @@ -4143,7 +4151,7 @@ msgstr "无法访问文件路径{0}" msgid "Cannot cancel before submitting while transitioning from {0} State to {1} State" msgstr "从{0}状态转换到{1}状态时,提交前无法取消" -#: frappe/workflow/doctype/workflow/workflow.py:109 +#: frappe/workflow/doctype/workflow/workflow.py:110 msgid "Cannot cancel before submitting. See Transition {0}" msgstr "提交前不能取消,详情参考状态转换{0}" @@ -4151,11 +4159,11 @@ msgstr "提交前不能取消,详情参考状态转换{0}" msgid "Cannot cancel {0}." msgstr "无法取消{0}。" -#: frappe/model/document.py:1013 +#: frappe/model/document.py:1017 msgid "Cannot change docstatus from 0 (Draft) to 2 (Cancelled)" msgstr "无法将文档状态从0(草稿)更改为2(已取消)" -#: frappe/model/document.py:1027 +#: frappe/model/document.py:1031 msgid "Cannot change docstatus from 1 (Submitted) to 0 (Draft)" msgstr "无法将文档状态从1(已提交)更改为0(草稿)" @@ -4163,11 +4171,11 @@ msgstr "无法将文档状态从1(已提交)更改为0(草稿)" msgid "Cannot change state of Cancelled Document ({0} State)" msgstr "无法更改已取消文档的状态({0}状态)" -#: frappe/workflow/doctype/workflow/workflow.py:98 +#: frappe/workflow/doctype/workflow/workflow.py:99 msgid "Cannot change state of Cancelled Document. Transition row {0}" msgstr "不能改变已取消单据的状态。状态转换第{0}行" -#: frappe/core/doctype/doctype/doctype.py:1153 +#: frappe/core/doctype/doctype/doctype.py:1154 msgid "Cannot change to/from autoincrement autoname in Customize Form" msgstr "定制表单不支持修改自增编号" @@ -4179,11 +4187,11 @@ msgstr "无法创建{0}子单据:{1}" msgid "Cannot create private workspace of other users" msgstr "无法创建其他用户的私有工作空间" -#: frappe/core/doctype/file/file.py:153 +#: frappe/core/doctype/file/file.py:165 msgid "Cannot delete Home and Attachments folders" msgstr "无法删除主文件和附件文件夹" -#: frappe/model/delete_doc.py:379 +#: frappe/model/delete_doc.py:419 msgid "Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}" msgstr "由于{0} {1}与{2} {3} {4}关联,无法删除或取消" @@ -4218,7 +4226,7 @@ msgstr "无法删除系统生成字段{0}。您可以隐藏它 msgid "Cannot delete {0}" msgstr "无法删除{0}" -#: frappe/utils/nestedset.py:299 +#: frappe/utils/nestedset.py:312 msgid "Cannot delete {0} as it has child nodes" msgstr "无法删除{0} ,因为它有子节点" @@ -4226,7 +4234,7 @@ msgstr "无法删除{0} ,因为它有子节点" msgid "Cannot edit Standard Dashboards" msgstr "无法编辑标准仪表板" -#: frappe/email/doctype/notification/notification.py:192 +#: frappe/email/doctype/notification/notification.py:202 msgid "Cannot edit Standard Notification. To edit, please disable this and duplicate it" msgstr "无法编辑标准通知。要进行编辑,请勾选禁用然后复制它" @@ -4238,7 +4246,7 @@ msgstr "无法编辑标准图表" msgid "Cannot edit a standard report. Please duplicate and create a new report" msgstr "不能编辑标准的报表。请复制并创建一个新的报表" -#: frappe/model/document.py:1033 +#: frappe/model/document.py:1037 msgid "Cannot edit cancelled document" msgstr "无法编辑已取消单据" @@ -4246,8 +4254,8 @@ msgstr "无法编辑已取消单据" msgid "Cannot edit filters for standard charts" msgstr "无法编辑标准图表筛选器" -#: frappe/desk/doctype/number_card/number_card.js:277 -#: frappe/desk/doctype/number_card/number_card.js:364 +#: frappe/desk/doctype/number_card/number_card.js:289 +#: frappe/desk/doctype/number_card/number_card.js:381 msgid "Cannot edit filters for standard number cards" msgstr "无法编辑标准数字卡筛选器" @@ -4255,27 +4263,27 @@ msgstr "无法编辑标准数字卡筛选器" msgid "Cannot edit standard fields" msgstr "不能编辑标准字段" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:127 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:131 msgid "Cannot enable {0} for a non-submittable doctype" msgstr "无法为非可提交文档类型启用{0}" -#: frappe/core/doctype/file/file.py:252 +#: frappe/core/doctype/file/file.py:264 msgid "Cannot find file {} on disk" msgstr "无法在磁盘上找到文件{}" -#: frappe/core/doctype/file/file.py:561 +#: frappe/core/doctype/file/file.py:586 msgid "Cannot get file contents of a Folder" msgstr "无法获取文件夹内容" -#: frappe/printing/page/print/print.js:844 +#: frappe/printing/page/print/print.js:884 msgid "Cannot have multiple printers mapped to a single print format." msgstr "不能将多个打印机映射到单个打印格式。" -#: frappe/public/js/frappe/form/grid.js:1132 +#: frappe/public/js/frappe/form/grid.js:1134 msgid "Cannot import table with more than 5000 rows." msgstr "无法导入超过5000行的表格。" -#: frappe/model/document.py:1101 +#: frappe/model/document.py:1105 msgid "Cannot link cancelled document: {0}" msgstr "不能链接到已取消单据{0}" @@ -4287,11 +4295,11 @@ msgstr "无法对应,因为以下条件失败:" msgid "Cannot match column {0} with any field" msgstr "上传文件中的字段{0}无法匹配目标单据字段" -#: frappe/public/js/frappe/form/grid_row.js:175 +#: frappe/public/js/frappe/form/grid_row.js:176 msgid "Cannot move row" msgstr "不能移动行" -#: frappe/public/js/frappe/views/reports/report_view.js:927 +#: frappe/public/js/frappe/views/reports/report_view.js:932 msgid "Cannot remove ID field" msgstr "无法删除ID字段" @@ -4299,7 +4307,7 @@ msgstr "无法删除ID字段" msgid "Cannot set 'Report' permission if 'Only If Creator' permission is set" msgstr "若设置'仅创建者'权限则无法设置'报告'权限" -#: frappe/email/doctype/notification/notification.py:209 +#: frappe/email/doctype/notification/notification.py:235 msgid "Cannot set Notification with event {0} on Document Type {1}" msgstr "无法在文档类型{1}上设置事件{0}的通知" @@ -4316,11 +4324,11 @@ msgstr "无法提交{0}。" msgid "Cannot update {0}" msgstr "无法更新{0}" -#: frappe/model/db_query.py:1126 -msgid "Cannot use sub-query in order by" -msgstr "在order by语句中不能使用子查询" +#: frappe/model/db_query.py:1136 +msgid "Cannot use sub-query here." +msgstr "" -#: frappe/model/db_query.py:1147 +#: frappe/model/db_query.py:1168 msgid "Cannot use {0} in order/group by" msgstr "不能在order/group by中使用{0}" @@ -4388,15 +4396,6 @@ msgstr "中心" msgid "Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit." msgstr "某些单据,例如发票一旦进入最终状态(即“已提交”)就不能再更改。你可以限制可以提交的角色。" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:82 -msgid "Chain Integrity" -msgstr "链完整性" - -#. Label of the chaining_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Chaining Hash" -msgstr "链接哈希" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:11 #: frappe/tests/test_translate.py:111 msgid "Change" @@ -4434,9 +4433,8 @@ msgstr "更改打印格式" #. 'Document Naming Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json msgid "Change the starting / current sequence number of an existing series.
    \n\n" -"Warning: Incorrectly updating counters can prevent documents from getting created. " -msgstr "更改现有系列的起始/当前序列号。
    \n\n" -"警告:错误地更新计数器可能会阻止创建文档。 " +"Warning: Incorrectly updating counters can prevent documents from getting created." +msgstr "" #. Label of the changed_at (Datetime) field in DocType 'Permission Log' #: frappe/core/doctype/permission_log/permission_log.json @@ -4505,7 +4503,7 @@ msgstr "图表来源" #. Label of the chart_type (Select) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json -#: frappe/public/js/frappe/views/reports/report_view.js:505 +#: frappe/public/js/frappe/views/reports/report_view.js:510 msgid "Chart Type" msgstr "图表类型" @@ -4538,7 +4536,7 @@ msgstr "聊天" msgid "Check" msgstr "勾选框" -#: frappe/integrations/doctype/webhook/webhook.py:95 +#: frappe/integrations/doctype/webhook/webhook.py:99 msgid "Check Request URL" msgstr "检查请求URL" @@ -4546,7 +4544,7 @@ msgstr "检查请求URL" msgid "Check columns to select, drag to set order." msgstr "勾选列选择,拖动列排序。" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:454 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:485 msgid "Check the Error Log for more information: {0}" msgstr "查看错误日志获取更多信息:{0}" @@ -4587,11 +4585,6 @@ msgstr "勾选此项将在网站上发布该页面,所有人可见。" msgid "Checking this will show a text area where you can write custom javascript that will run on this page." msgstr "勾选此项将显示文本区,可编写在此页面运行的JavaScript代码。" -#. Label of the checksum_version (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Checksum Version" -msgstr "校验版本" - #: frappe/www/list.py:85 msgid "Child DocTypes are not allowed" msgstr "不允许子文档类型" @@ -4601,17 +4594,17 @@ msgstr "不允许子文档类型" msgid "Child Doctype" msgstr "子文档类型" -#: frappe/core/doctype/doctype/doctype.py:1647 +#: frappe/core/doctype/doctype/doctype.py:1648 msgid "Child Table {0} for field {1}" msgstr "字段{1}的子表{0}" #. Description of the 'Is Child Table' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:52 +#: frappe/core/doctype/doctype/doctype_list.js:53 msgid "Child Tables are shown as a Grid in other DocTypes" msgstr "嵌入其它单据类型中作为表格,一对多关系中的多这一方" -#: frappe/database/query.py:660 +#: frappe/database/query.py:662 msgid "Child query fields for '{0}' must be a list or tuple." msgstr "" @@ -4640,6 +4633,7 @@ msgid "Choose authentication method to be used by all users" 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 msgid "City" msgstr "城市" @@ -4654,7 +4648,7 @@ msgstr "市/镇" msgid "Clear" msgstr "清除" -#: frappe/public/js/frappe/views/communication.js:435 +#: frappe/public/js/frappe/views/communication.js:438 msgid "Clear & Add Template" msgstr "清空并添加模板" @@ -4666,7 +4660,7 @@ msgstr "清除并添加模板" msgid "Clear All" msgstr "清空全部" -#: frappe/public/js/frappe/list/list_view.js:1963 +#: frappe/public/js/frappe/list/list_view.js:2112 msgctxt "Button in list view actions menu" msgid "Clear Assignment" msgstr "清除分配" @@ -4692,7 +4686,7 @@ msgstr "日志保留天数" msgid "Clear User Permissions" msgstr "清除用户权限限制" -#: frappe/public/js/frappe/views/communication.js:436 +#: frappe/public/js/frappe/views/communication.js:439 msgid "Clear the email message and add the template" msgstr "模板内容覆盖邮件正文(消息)" @@ -4704,11 +4698,15 @@ msgstr "清除结束日期,因为发布的页面不能在过去。" msgid "Click On Customize to add your first widget" msgstr "点击定制按钮开始定制" -#: frappe/website/doctype/web_form/templates/web_form.html:147 +#: frappe/templates/emails/user_invitation.html:8 +msgid "Click below to get started:" +msgstr "" + +#: frappe/website/doctype/web_form/templates/web_form.html:154 msgid "Click here" msgstr "点击此处" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:518 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:538 msgid "Click on a file to select it." msgstr "点击文件进行选择。" @@ -4739,24 +4737,24 @@ msgid "Click on {0} to generate Refresh Token." msgstr "单击{0}以生成刷新令牌。" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:315 -#: frappe/desk/doctype/number_card/number_card.js:215 +#: frappe/desk/doctype/number_card/number_card.js:222 #: frappe/email/doctype/auto_email_report/auto_email_report.js:99 #: frappe/website/doctype/web_form/web_form.js:236 msgid "Click table to edit" msgstr "点击表格进行编辑" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:502 -#: frappe/desk/doctype/number_card/number_card.js:402 +#: frappe/desk/doctype/number_card/number_card.js:419 msgid "Click to Set Dynamic Filters" msgstr "点击设置动态筛选器" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:372 -#: frappe/desk/doctype/number_card/number_card.js:270 +#: frappe/desk/doctype/number_card/number_card.js:278 #: frappe/website/doctype/web_form/web_form.js:262 msgid "Click to Set Filters" msgstr "单击设置过滤条件" -#: frappe/public/js/frappe/list/list_view.js:711 +#: frappe/public/js/frappe/list/list_view.js:741 msgid "Click to sort by {0}" msgstr "点击按{0}排序" @@ -4934,7 +4932,7 @@ msgctxt "Shrink code field." msgid "Collapse" msgstr "折叠" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:123 msgid "Collapse All" msgstr "全部折叠" @@ -4989,7 +4987,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:1232 +#: frappe/public/js/frappe/views/reports/query_report.js:1241 #: frappe/public/js/frappe/widgets/widget_dialog.js:546 #: frappe/public/js/frappe/widgets/widget_dialog.js:694 #: frappe/website/doctype/color/color.json @@ -5045,11 +5043,11 @@ msgstr "列名" msgid "Column Name cannot be empty" msgstr "列名不能为空" -#: frappe/public/js/frappe/form/grid_row.js:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Column Width" msgstr "列宽" -#: frappe/public/js/frappe/form/grid_row.js:645 +#: frappe/public/js/frappe/form/grid_row.js:662 msgid "Column width cannot be zero." msgstr "列宽不能为零。" @@ -5076,7 +5074,7 @@ msgstr "列" msgid "Columns / Fields" msgstr "列/字段" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:397 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:411 msgid "Columns based on" msgstr "基于列" @@ -5118,16 +5116,6 @@ msgstr "评论类型" msgid "Comment can only be edited by the owner" msgstr "评论只能由制单人进行编辑" -#. Label of the comment_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit" -msgstr "评论限制" - -#. Description of the 'Comment limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Comment limit per hour" -msgstr "每小时评论限制" - #: frappe/desk/form/utils.py:75 msgid "Comment publicity can only be updated by the original author or a System Manager." msgstr "评论公开状态仅可由原作者或系统管理员修改。" @@ -5135,7 +5123,7 @@ msgstr "评论公开状态仅可由原作者或系统管理员修改。" #: frappe/model/meta.py:61 frappe/public/js/frappe/form/controls/comment.js:9 #: frappe/public/js/frappe/model/meta.js:209 #: frappe/public/js/frappe/model/model.js:135 -#: frappe/website/doctype/web_form/templates/web_form.html:122 +#: frappe/website/doctype/web_form/templates/web_form.html:129 msgid "Comments" msgstr "评论" @@ -5144,7 +5132,7 @@ msgstr "评论" msgid "Comments and Communications will be associated with this linked document" msgstr "评论与沟通将与此链接的单据关联" -#: frappe/templates/includes/comments/comments.py:38 +#: frappe/templates/includes/comments/comments.py:52 msgid "Comments cannot have links or email addresses" msgstr "评论不能包含链接或电子邮件地址" @@ -5216,12 +5204,12 @@ msgid "Company Name" msgstr "公司名" #: frappe/core/doctype/server_script/server_script.js:14 -#: frappe/custom/doctype/client_script/client_script.js:54 +#: frappe/custom/doctype/client_script/client_script.js:56 #: frappe/public/js/frappe/utils/diffview.js:28 msgid "Compare Versions" msgstr "版本比较" -#: frappe/core/doctype/server_script/server_script.py:157 +#: frappe/core/doctype/server_script/server_script.py:159 msgid "Compilation warning" msgstr "编译警告" @@ -5301,8 +5289,8 @@ msgstr "已压缩" #: frappe/desk/doctype/bulk_update/bulk_update.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/desk/doctype/number_card/number_card.js:208 +#: frappe/desk/doctype/number_card/number_card.js:347 #: frappe/email/doctype/notification/notification.json #: frappe/email/doctype/notification_recipient/notification_recipient.json #: frappe/integrations/doctype/webhook/webhook.json @@ -5316,6 +5304,11 @@ msgstr "条件" msgid "Condition JSON" msgstr "条件JSON" +#. Label of the condition_type (Select) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Condition Type" +msgstr "" + #. Label of the condition_description (HTML) field in DocType 'Web Form' #: frappe/website/doctype/web_form/web_form.json msgid "Condition description" @@ -5341,11 +5334,11 @@ msgstr "配置" msgid "Configuration" msgstr "配置" -#: frappe/public/js/frappe/views/reports/report_view.js:487 +#: frappe/public/js/frappe/views/reports/report_view.js:492 msgid "Configure Chart" msgstr "配置图表" -#: frappe/public/js/frappe/form/grid_row.js:390 +#: frappe/public/js/frappe/form/grid_row.js:407 msgid "Configure Columns" msgstr "列设置" @@ -5372,7 +5365,7 @@ msgstr "设置修订后单据编号规则\n" msgid "Configure various aspects of how document naming works like naming series, current counter." msgstr "配置文档命名的各项参数,如命名序列、当前计数器。" -#: frappe/core/doctype/user/user.js:406 frappe/public/js/frappe/dom.js:345 +#: frappe/core/doctype/user/user.js:400 frappe/public/js/frappe/dom.js:345 #: frappe/www/update-password.html:66 msgid "Confirm" msgstr "确认" @@ -5391,7 +5384,7 @@ msgstr "确认访问" msgid "Confirm Deletion of Account" msgstr "确认删除账户" -#: frappe/core/doctype/user/user.js:191 +#: frappe/core/doctype/user/user.js:184 msgid "Confirm New Password" msgstr "确认新密码" @@ -5418,7 +5411,7 @@ msgstr "确认" msgid "Congratulations on completing the module setup. If you want to learn more you can refer to the documentation here." msgstr "恭喜您完成模块设置。如果您想了解更多信息,可以参考文档 这里。" -#: frappe/integrations/doctype/connected_app/connected_app.js:25 +#: frappe/integrations/doctype/connected_app/connected_app.js:20 msgid "Connect to {}" msgstr "连接到{}" @@ -5436,8 +5429,8 @@ msgstr "关联应用" msgid "Connected User" msgstr "已连接用户" -#: frappe/public/js/frappe/form/print_utils.js:110 -#: frappe/public/js/frappe/form/print_utils.js:134 +#: frappe/public/js/frappe/form/print_utils.js:125 +#: frappe/public/js/frappe/form/print_utils.js:149 msgid "Connected to QZ Tray!" msgstr "连接到QZ托盘!" @@ -5488,6 +5481,10 @@ msgstr "约束条件" msgid "Contact" msgstr "联系人" +#: frappe/integrations/doctype/google_calendar/google_calendar.py:812 +msgid "Contact / email not found. Did not add attendee for -
    {0}" +msgstr "" + #. Label of the sb_01 (Section Break) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "Contact Details" @@ -5545,15 +5542,13 @@ msgstr "包含{0}个安全修复" #. Label of the content (HTML Editor) field in DocType 'Comment' #. Label of the content (Text Editor) field in DocType 'Note' #. Label of the content (Long Text) field in DocType 'Workspace' -#. Label of the content (Text Editor) field in DocType 'Blog Post' #. Label of the content (Text Editor) field in DocType 'Help Article' #. Label of the section_title (Tab Break) field in DocType 'Web Page' #. Label of the sb1 (Section Break) field in DocType 'Web Page' #. Label of the content (Data) field in DocType 'Web Page View' #: frappe/core/doctype/comment/comment.json frappe/desk/doctype/note/note.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/utils/utils.js:1745 -#: frappe/website/doctype/blog_post/blog_post.json +#: frappe/public/js/frappe/utils/utils.js:1782 #: 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 @@ -5561,24 +5556,12 @@ msgstr "包含{0}个安全修复" msgid "Content" msgstr "内容" -#. Label of the content_html (HTML Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (HTML)" -msgstr "内容(HTML)" - -#. Label of the content_md (Markdown Editor) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Content (Markdown)" -msgstr "内容(Markdown格式)" - #. Label of the content_hash (Data) field in DocType 'File' #: frappe/core/doctype/file/file.json msgid "Content Hash" msgstr "内容哈希值" -#. Label of the content_type (Select) field in DocType 'Blog Post' #. Label of the content_type (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json msgid "Content Type" msgstr "内容类型" @@ -5646,7 +5629,7 @@ msgstr "复制链接" msgid "Copy embed code" msgstr "复制嵌入代码" -#: frappe/public/js/frappe/request.js:620 +#: frappe/public/js/frappe/request.js:621 msgid "Copy error to clipboard" msgstr "将出错日志复制到剪贴板" @@ -5654,12 +5637,16 @@ msgstr "将出错日志复制到剪贴板" msgid "Copy to Clipboard" msgstr "复制到剪贴板" +#: frappe/core/doctype/user/user.js:487 +msgid "Copy token to clipboard" +msgstr "" + #. Label of the copyright (Data) field in DocType 'Website Settings' #: frappe/website/doctype/website_settings/website_settings.json msgid "Copyright" msgstr "版权" -#: frappe/custom/doctype/customize_form/customize_form.py:122 +#: frappe/custom/doctype/customize_form/customize_form.py:125 msgid "Core DocTypes cannot be customized." msgstr "不能定制系统核心单据类型。" @@ -5667,7 +5654,7 @@ msgstr "不能定制系统核心单据类型。" msgid "Core Modules {0} cannot be searched in Global Search." msgstr "核心模块{0}无法在全局搜索中查找。" -#: frappe/printing/page/print/print.js:620 +#: frappe/printing/page/print/print.js:660 msgid "Correct version :" msgstr "正确版本:" @@ -5675,7 +5662,7 @@ msgstr "正确版本:" msgid "Could not connect to outgoing email server" msgstr "无法连接到外发邮件服务器" -#: frappe/model/document.py:1097 +#: frappe/model/document.py:1101 msgid "Could not find {0}" msgstr "找不到{0}" @@ -5683,15 +5670,15 @@ msgstr "找不到{0}" msgid "Could not map column {0} to field {1}" msgstr "无法映射列{0}到字段{1}" -#: frappe/database/query.py:564 +#: frappe/database/query.py:566 msgid "Could not parse field: {0}" msgstr "" #: frappe/desk/page/setup_wizard/setup_wizard.js:234 -msgid "Could not start up: " -msgstr "无法启动:" +msgid "Could not start up:" +msgstr "" -#: frappe/public/js/frappe/web_form/web_form.js:359 +#: frappe/public/js/frappe/web_form/web_form.js:383 msgid "Couldn't save, please check the data you have entered" msgstr "不能保存,请检查输入的数据" @@ -5736,13 +5723,14 @@ msgstr "计数器" #. Label of the country (Data) field in DocType 'Contact Us Settings' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/address_template/address_template.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:42 #: frappe/core/doctype/system_settings/system_settings.json #: frappe/geo/doctype/country/country.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Country" msgstr "国家" -#: frappe/utils/__init__.py:130 +#: frappe/utils/__init__.py:132 msgid "Country Code Required" msgstr "需要国家代码" @@ -5774,13 +5762,13 @@ msgstr "贷方" #: frappe/public/js/frappe/form/reminders.js:49 #: frappe/public/js/frappe/views/file/file_view.js:112 #: frappe/public/js/frappe/views/interaction.js:18 -#: frappe/public/js/frappe/views/reports/query_report.js:1264 +#: frappe/public/js/frappe/views/reports/query_report.js:1273 #: frappe/public/js/frappe/views/workspace/workspace.js:469 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 msgid "Create" msgstr "创建" -#: frappe/core/doctype/doctype/doctype_list.js:102 +#: frappe/core/doctype/doctype/doctype_list.js:103 msgid "Create & Continue" msgstr "创建并继续" @@ -5794,7 +5782,7 @@ msgid "Create Card" msgstr "创建数字卡" #: frappe/public/js/frappe/views/reports/query_report.js:285 -#: frappe/public/js/frappe/views/reports/query_report.js:1191 +#: frappe/public/js/frappe/views/reports/query_report.js:1200 msgid "Create Chart" msgstr "创建图表" @@ -5828,12 +5816,12 @@ msgstr "创建日志" msgid "Create New" msgstr "新建" -#: frappe/public/js/frappe/list/list_view.js:509 +#: frappe/public/js/frappe/list/list_view.js:514 msgctxt "Create a new document from list view" msgid "Create New" msgstr "新建" -#: frappe/core/doctype/doctype/doctype_list.js:100 +#: frappe/core/doctype/doctype/doctype_list.js:101 msgid "Create New DocType" msgstr "创建新单据类型" @@ -5841,7 +5829,7 @@ msgstr "创建新单据类型" msgid "Create New Kanban Board" msgstr "新建看板面板" -#: frappe/core/doctype/user/user.js:270 +#: frappe/core/doctype/user/user.js:264 msgid "Create User Email" msgstr "创建用户电子邮件" @@ -5853,7 +5841,7 @@ msgstr "创建新格式" msgid "Create a Reminder" msgstr "创建提醒" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:537 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:546 msgid "Create a new ..." msgstr "新建..." @@ -5861,11 +5849,11 @@ msgstr "新建..." msgid "Create a new record" msgstr "新建一笔记录" -#: frappe/public/js/frappe/form/controls/link.js:311 -#: frappe/public/js/frappe/form/controls/link.js:313 +#: frappe/public/js/frappe/form/controls/link.js:315 +#: frappe/public/js/frappe/form/controls/link.js:317 #: frappe/public/js/frappe/form/link_selector.js:139 -#: frappe/public/js/frappe/list/list_view.js:501 -#: frappe/public/js/frappe/web_form/web_form_list.js:225 +#: frappe/public/js/frappe/list/list_view.js:506 +#: frappe/public/js/frappe/web_form/web_form_list.js:226 msgid "Create a new {0}" msgstr "新建{0}" @@ -5881,7 +5869,7 @@ msgstr "创建或修改打印格式" msgid "Create or Edit Workflow" msgstr "创建或修改工作流" -#: frappe/public/js/frappe/list/list_view.js:504 +#: frappe/public/js/frappe/list/list_view.js:509 msgid "Create your first {0}" msgstr "新建 {0}" @@ -5891,7 +5879,7 @@ msgstr "可视化拖拽创建工作流" #. Option for the 'Comment Type' (Select) field in DocType 'Comment' #: frappe/core/doctype/comment/comment.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Created" msgstr "创建" @@ -5907,7 +5895,7 @@ msgstr "创建时间" msgid "Created By" msgstr "创建人" -#: frappe/workflow/doctype/workflow/workflow.py:64 +#: frappe/workflow/doctype/workflow/workflow.py:65 msgid "Created Custom Field {0} in {1}" msgstr "在{1}创建了自定义字段{0}" @@ -5919,7 +5907,7 @@ msgstr "在{1}创建了自定义字段{0}" msgid "Created On" msgstr "创建于" -#: frappe/public/js/frappe/desk.js:523 +#: frappe/public/js/frappe/desk.js:517 #: frappe/public/js/frappe/views/treeview.js:393 msgid "Creating {0}" msgstr "创建{0}" @@ -6228,7 +6216,7 @@ msgstr "" #. Label of the custom (Check) field in DocType 'DocType' #. Label of the custom (Check) field in DocType 'Website Theme' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:82 +#: frappe/core/doctype/doctype/doctype_list.js:83 #: frappe/website/doctype/website_theme/website_theme.json msgid "Custom?" msgstr "自定义?" @@ -6256,14 +6244,14 @@ msgstr "自定义重置" msgid "Customizations for {0} exported to:
    {1}" msgstr "{0}的自定义已导出到:
    {1}" -#: frappe/printing/page/print/print.js:171 +#: frappe/printing/page/print/print.js:184 #: frappe/public/js/frappe/form/templates/print_layout.html:39 #: frappe/public/js/frappe/form/toolbar.js:600 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:197 msgid "Customize" msgstr "定制" -#: frappe/public/js/frappe/list/list_view.js:1800 +#: frappe/public/js/frappe/list/list_view.js:1949 msgctxt "Button in list view menu" msgid "Customize" msgstr "自定义" @@ -6282,7 +6270,7 @@ msgstr "自定义仪表板" #: frappe/core/doctype/doctype/doctype.js:61 #: frappe/core/workspace/build/build.json #: frappe/custom/doctype/customize_form/customize_form.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 msgid "Customize Form" msgstr "定制表单" @@ -6360,7 +6348,7 @@ msgstr "每天" msgid "Daily Event Digest is sent for Calendar Events where reminders are set." msgstr "如果设置了日历事件提醒会发送每日事件摘要。" -#: frappe/desk/doctype/event/event.py:100 +#: frappe/desk/doctype/event/event.py:104 msgid "Daily Events should finish on the Same Day." msgstr "每日事件应在同一天结束。" @@ -6407,7 +6395,7 @@ msgstr "暗色主题" #: frappe/desk/doctype/dashboard/dashboard.json #: frappe/desk/doctype/form_tour/form_tour.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:562 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:571 #: frappe/public/js/frappe/utils/utils.js:935 msgid "Dashboard" msgstr "数据面板" @@ -6466,7 +6454,6 @@ msgstr "数据面板" #. Option for the 'Type' (Select) field in DocType 'DocField' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Column' #. Option for the 'Fieldtype' (Select) field in DocType 'Report Filter' -#. Label of the data (Long Text) field in DocType 'Transaction Log' #. Label of the data (Code) field in DocType 'Version' #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' @@ -6479,7 +6466,6 @@ msgstr "数据面板" #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/version/version.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -6515,7 +6501,7 @@ msgstr "数据导入日志" msgid "Data Import Template" msgstr "数据导入模板" -#: frappe/custom/doctype/customize_form/customize_form.py:614 +#: frappe/custom/doctype/customize_form/customize_form.py:619 msgid "Data Too Long" msgstr "数据过长" @@ -6546,7 +6532,7 @@ msgstr "数据库表行空间利用率" msgid "Database Storage Usage By Tables" msgstr "数据库表空间使用量报表" -#: frappe/custom/doctype/customize_form/customize_form.py:248 +#: frappe/custom/doctype/customize_form/customize_form.py:251 msgid "Database Table Row Size Limit" msgstr "数据库表行大小限制" @@ -6684,11 +6670,11 @@ msgstr "亲爱的{0}" msgid "Debug Log" msgstr "调试日志" -#: frappe/public/js/frappe/views/reports/report_utils.js:308 +#: frappe/public/js/frappe/views/reports/report_utils.js:318 msgid "Decimal Separator must be '.' when Quoting is set to Non-numeric" msgstr "当报价设置为非数字时,小数分隔符必须为'.'" -#: frappe/public/js/frappe/views/reports/report_utils.js:300 +#: frappe/public/js/frappe/views/reports/report_utils.js:310 msgid "Decimal Separator must be a single character" msgstr "小数分隔符必须为单个字符" @@ -6850,11 +6836,11 @@ msgstr "默认工作区" msgid "Default display currency" msgstr "默认显示货币" -#: frappe/core/doctype/doctype/doctype.py:1376 +#: frappe/core/doctype/doctype/doctype.py:1377 msgid "Default for 'Check' type of field {0} must be either '0' or '1'" msgstr "字段{0}的'复选框'类型默认值必须为'0'或'1'" -#: frappe/core/doctype/doctype/doctype.py:1389 +#: frappe/core/doctype/doctype/doctype.py:1390 msgid "Default value for {0} must be in the list of options." msgstr "{0}的默认值必须在选项列表中。" @@ -6888,6 +6874,12 @@ msgstr "默认设置已更新" msgid "Defines actions on states and the next step and allowed roles." msgstr "定义切换到工作流状态的操作,下一个状态和被允许的角色。" +#. Description of the 'Delete Background Exported Reports After (Hours)' (Int) +#. field in DocType 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Defines how long exported reports sent via email are kept in the system. Older files will be automatically deleted." +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow/workflow.json msgid "Defines workflow states and rules for a document." @@ -6905,22 +6897,27 @@ 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/public/js/frappe/form/footer/form_timeline.js:626 +#: frappe/public/js/frappe/form/footer/form_timeline.js:627 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/toolbar.js:464 -#: frappe/public/js/frappe/views/reports/report_view.js:1740 +#: frappe/public/js/frappe/views/reports/report_view.js:1749 #: frappe/public/js/frappe/views/treeview.js:329 -#: frappe/public/js/frappe/web_form/web_form_list.js:282 +#: frappe/public/js/frappe/web_form/web_form_list.js:283 #: frappe/templates/discussions/reply_card.html:35 #: frappe/templates/discussions/reply_section.html:29 msgid "Delete" msgstr "删除" -#: frappe/public/js/frappe/list/list_view.js:2025 +#: frappe/public/js/frappe/list/list_view.js:2174 msgctxt "Button in list view actions menu" msgid "Delete" msgstr "删除" +#: frappe/website/doctype/web_form/templates/web_form.html:52 +msgctxt "Button in web form" +msgid "Delete" +msgstr "删除" + #: frappe/www/me.html:65 msgid "Delete Account" msgstr "删除账户" @@ -6929,6 +6926,12 @@ msgstr "删除账户" 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 +msgid "Delete Background Exported Reports After (Hours)" +msgstr "" + #: frappe/public/js/form_builder/components/Section.vue:196 msgctxt "Title of confirmation dialog" msgid "Delete Column" @@ -6938,7 +6941,7 @@ msgstr "删除列" msgid "Delete Data" msgstr "删除数据" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:106 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:116 msgid "Delete Kanban Board" msgstr "删除看板" @@ -6952,7 +6955,7 @@ msgctxt "Title of confirmation dialog" msgid "Delete Tab" msgstr "删除标签页" -#: frappe/public/js/frappe/views/reports/query_report.js:935 +#: frappe/public/js/frappe/views/reports/query_report.js:944 msgid "Delete and Generate New" msgstr "删除并生成新项" @@ -6961,7 +6964,7 @@ msgctxt "Button text" msgid "Delete column" msgstr "删除列" -#: frappe/public/js/frappe/form/footer/form_timeline.js:741 +#: frappe/public/js/frappe/form/footer/form_timeline.js:742 msgid "Delete comment?" msgstr "删除评论?" @@ -6994,12 +6997,12 @@ msgstr "删除标签页" msgid "Delete this record to allow sending to this email address" msgstr "删除此记录允许发送此邮件地址" -#: frappe/public/js/frappe/list/list_view.js:2030 +#: frappe/public/js/frappe/list/list_view.js:2179 msgctxt "Title of confirmation dialog" msgid "Delete {0} item permanently?" msgstr "永久删除 {0} 项?" -#: frappe/public/js/frappe/list/list_view.js:2036 +#: frappe/public/js/frappe/list/list_view.js:2185 msgctxt "Title of confirmation dialog" msgid "Delete {0} items permanently?" msgstr "永久删除 {0} 项?" @@ -7035,11 +7038,15 @@ msgstr "已删除单据" msgid "Deleted Name" msgstr "删除名称" -#: frappe/desk/reportview.py:606 +#: frappe/desk/reportview.py:641 msgid "Deleted all documents successfully" msgstr "已成功删除选择的单据" -#: frappe/desk/reportview.py:583 +#: frappe/public/js/frappe/web_form/web_form.js:211 +msgid "Deleted!" +msgstr "已删除!" + +#: frappe/desk/reportview.py:618 msgid "Deleting {0}" msgstr "删除{0}" @@ -7054,8 +7061,8 @@ msgstr "删除 {0} 笔单据..." #. Label of the deletion_steps (Table) field in DocType 'Personal Data Deletion #. Request' #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json -msgid "Deletion Steps " -msgstr "删除步骤" +msgid "Deletion Steps" +msgstr "" #: frappe/core/doctype/page/page.py:110 #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.py:47 @@ -7071,7 +7078,7 @@ msgstr "分隔符选项" msgid "Delimiter detection failed. Try to enable custom delimiters and adjust the delimiter options as per your data." msgstr "分隔符检测失败。请启用自定义分隔符并根据数据调整分隔符选项" -#: frappe/public/js/frappe/views/reports/report_utils.js:296 +#: frappe/public/js/frappe/views/reports/report_utils.js:306 msgid "Delimiter must be a single character" msgstr "分隔符必须为单个字符" @@ -7098,7 +7105,7 @@ msgstr "部门" msgid "Dependencies" msgstr "依赖关系" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Dependencies & Licenses" msgstr "依赖项与许可证" @@ -7133,7 +7140,6 @@ msgstr "子节点(含本节点)" #. Label of the description (Text Editor) field in DocType 'ToDo' #. Label of the description (HTML Editor) field in DocType 'Workspace Link' #. Label of the description (Small Text) field in DocType 'Print Heading' -#. Label of the description (Small Text) field in DocType 'Blog Category' #. Label of the description (Small Text) field in DocType 'UTM Medium' #. Label of the description (Small Text) field in DocType 'UTM Source' #. Label of the description (Text) field in DocType 'Web Form Field' @@ -7154,7 +7160,6 @@ msgstr "子节点(含本节点)" #: frappe/printing/doctype/print_heading/print_heading.json #: frappe/public/js/frappe/form/reminders.js:44 #: frappe/public/js/frappe/widgets/widget_dialog.js:256 -#: frappe/website/doctype/blog_category/blog_category.json #: frappe/website/doctype/utm_medium/utm_medium.json #: frappe/website/doctype/utm_source/utm_source.json #: frappe/website/doctype/web_form_field/web_form_field.json @@ -7164,11 +7169,6 @@ msgstr "子节点(含本节点)" msgid "Description" msgstr "描述" -#. Description of the 'Blog Intro' (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Description for listing page, in plain text, only a couple of lines. (max 200 characters)" -msgstr "列表页描述(纯文本,最多200字符)" - #. Description of the 'Description' (Section Break) field in DocType #. 'Onboarding Step' #: frappe/desk/doctype/onboarding_step/onboarding_step.json @@ -7252,7 +7252,7 @@ msgstr "桌面图标已经存在" #: frappe/public/js/form_builder/components/Tabs.vue:92 #: frappe/public/js/form_builder/store.js:259 #: frappe/public/js/form_builder/utils.js:38 -#: frappe/public/js/frappe/form/layout.js:153 +#: frappe/public/js/frappe/form/layout.js:152 #: frappe/public/js/frappe/views/treeview.js:292 msgid "Details" msgstr "详细信息" @@ -7313,11 +7313,6 @@ msgstr "禁止系统更新日志通知" msgid "Disable Comment Count" msgstr "禁用评论计数" -#. Label of the disable_comments (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Comments" -msgstr "禁止评论" - #. Label of the disable_contact_us (Check) field in DocType 'Contact Us #. Settings' #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -7335,11 +7330,6 @@ msgstr "禁用计数" msgid "Disable Document Sharing" msgstr "禁用单据表单/详情界面左侧栏分享功能" -#. Label of the disable_likes (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Disable Likes" -msgstr "禁用点赞" - #: frappe/core/doctype/report/report.js:39 msgid "Disable Report" msgstr "禁用报表" @@ -7349,6 +7339,11 @@ msgstr "禁用报表" msgid "Disable SMTP server authentication" msgstr "禁用SMTP服务器认证" +#. Label of the disable_scrolling (Check) field in DocType 'List View Settings' +#: frappe/desk/doctype/list_view_settings/list_view_settings.json +msgid "Disable Scrolling" +msgstr "" + #. Label of the disable_sidebar_stats (Check) field in DocType 'List View #. Settings' #: frappe/desk/doctype/list_view_settings/list_view_settings.json @@ -7394,7 +7389,6 @@ msgstr "禁用自助注册" #. Label of the disabled (Check) field in DocType 'Letter Head' #. Label of the disabled (Check) field in DocType 'Print Format' #. Label of the disabled (Check) field in DocType 'Print Style' -#. Label of the disabled (Check) field in DocType 'Blogger' #: frappe/automation/doctype/assignment_rule/assignment_rule.json #: frappe/automation/doctype/auto_repeat/auto_repeat.json #: frappe/automation/doctype/milestone_tracker/milestone_tracker.json @@ -7409,7 +7403,6 @@ msgstr "禁用自助注册" #: frappe/public/js/frappe/form/templates/address_list.html:35 #: frappe/public/js/frappe/model/indicator.js:112 #: frappe/public/js/frappe/model/indicator.js:119 -#: frappe/website/doctype/blogger/blogger.json msgid "Disabled" msgstr "禁用" @@ -7420,7 +7413,7 @@ msgstr "禁用自动回复" #: frappe/public/js/frappe/form/toolbar.js:338 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:71 #: frappe/public/js/frappe/views/workspace/workspace.js:351 -#: frappe/public/js/frappe/web_form/web_form.js:187 +#: frappe/public/js/frappe/web_form/web_form.js:193 msgid "Discard" msgstr "丢弃" @@ -7438,7 +7431,7 @@ msgstr "丢弃" msgid "Discard {0}" msgstr "放弃 {0}" -#: frappe/public/js/frappe/web_form/web_form.js:184 +#: frappe/public/js/frappe/web_form/web_form.js:190 msgid "Discard?" msgstr "确认放弃?" @@ -7461,7 +7454,7 @@ msgstr "讨论回复" msgid "Discussion Topic" msgstr "讨论主题" -#: frappe/public/js/frappe/form/footer/form_timeline.js:638 +#: frappe/public/js/frappe/form/footer/form_timeline.js:639 #: frappe/templates/discussions/reply_card.html:16 #: frappe/templates/discussions/reply_section.html:29 msgid "Dismiss" @@ -7497,19 +7490,23 @@ msgstr "分隔线" #. Label of the do_not_create_new_user (Check) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -msgid "Do Not Create New User " -msgstr "不创建新用户" +msgid "Do Not Create New User" +msgstr "" -#. Description of the 'Do Not Create New User ' (Check) field in DocType 'LDAP +#. Description of the 'Do Not Create New User' (Check) field in DocType 'LDAP #. Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Do not create new user if user with email does not exist in the system" msgstr "如果系统中不存在该邮箱用户,则不创建新用户" -#: frappe/public/js/frappe/form/grid.js:1193 +#: frappe/public/js/frappe/form/grid.js:1195 msgid "Do not edit headers which are preset in the template" msgstr "不要编辑模板中预设的标题" +#: frappe/public/js/frappe/router.js:624 +msgid "Do not warn me again about {0}" +msgstr "" + #: frappe/core/doctype/system_settings/system_settings.js:71 msgid "Do you still want to proceed?" msgstr "是否继续?" @@ -7603,7 +7600,7 @@ msgstr "以下状态的文档状态已更改:
    {0}
    \n" msgid "DocType" msgstr "单据类型" -#: frappe/core/doctype/doctype/doctype.py:1577 +#: frappe/core/doctype/doctype/doctype.py:1578 msgid "DocType {0} provided for the field {1} must have atleast one Link field" msgstr "字段 {1} 指定的DocType {0} 必须至少包含一个链接字段" @@ -7650,11 +7647,11 @@ msgstr "单据类型状态" msgid "DocType View" msgstr "文档类型视图" -#: frappe/core/doctype/doctype/doctype.py:656 +#: frappe/core/doctype/doctype/doctype.py:657 msgid "DocType can not be merged" msgstr "单据类型不能合并" -#: frappe/core/doctype/doctype/doctype.py:650 +#: frappe/core/doctype/doctype/doctype.py:651 msgid "DocType can only be renamed by Administrator" msgstr "只能由管理员修改单据类型名称" @@ -7663,7 +7660,7 @@ msgstr "只能由管理员修改单据类型名称" msgid "DocType is a Table / Form in the application." msgstr "单据类型在应用中里是一个表/表单。" -#: frappe/integrations/doctype/webhook/webhook.py:79 +#: frappe/integrations/doctype/webhook/webhook.py:83 msgid "DocType must be Submittable for the selected Doc Event" msgstr "DocType必须为所选Doc事件提交" @@ -7696,7 +7693,7 @@ msgstr "文档类型 {0} 不存在" msgid "DocType {} not found" msgstr "未找到文档类型 {}" -#: frappe/core/doctype/doctype/doctype.py:1028 +#: frappe/core/doctype/doctype/doctype.py:1029 msgid "DocType's name should not start or end with whitespace" msgstr "文档类型名称首尾不可包含空格" @@ -7710,7 +7707,7 @@ msgstr "文档类型不可修改,请使用 {0}" msgid "Doctype" msgstr "单据类型" -#: frappe/core/doctype/doctype/doctype.py:1022 +#: frappe/core/doctype/doctype/doctype.py:1023 msgid "Doctype name is limited to {0} characters ({1})" msgstr "文档类型名称长度限制为 {0} 字符(当前:{1})" @@ -7772,31 +7769,29 @@ msgstr "单据关联" msgid "Document Links" msgstr "单据关联" -#: frappe/core/doctype/doctype/doctype.py:1211 +#: frappe/core/doctype/doctype/doctype.py:1212 msgid "Document Links Row #{0}: Could not find field {1} in {2} DocType" msgstr "文档链接第 #{0} 行:在 {2} 文档类型中未找到字段 {1}" -#: frappe/core/doctype/doctype/doctype.py:1231 +#: frappe/core/doctype/doctype/doctype.py:1232 msgid "Document Links Row #{0}: Invalid doctype or fieldname." msgstr "文档链接第 #{0} 行:无效的文档类型或字段名" -#: frappe/core/doctype/doctype/doctype.py:1194 +#: frappe/core/doctype/doctype/doctype.py:1195 msgid "Document Links Row #{0}: Parent DocType is mandatory for internal links" msgstr "文档链接第 #{0} 行:内部链接必须指定父文档类型" -#: frappe/core/doctype/doctype/doctype.py:1200 +#: frappe/core/doctype/doctype/doctype.py:1201 msgid "Document Links Row #{0}: Table Fieldname is mandatory for internal links" msgstr "文档链接第 #{0} 行:内部链接必须指定表字段名" #. Label of the reminder_docname (Dynamic Link) field in DocType 'Reminder' #. Label of the share_name (Dynamic Link) field in DocType 'DocShare' -#. Label of the document_name (Data) field in DocType 'Transaction Log' #. Label of the docname (Data) field in DocType 'Version' #. Label of the document_name (Dynamic Link) field in DocType 'Tag Link' #. Label of the ref_docname (Dynamic Link) field in DocType 'Document Follow' #: frappe/automation/doctype/reminder/reminder.json #: frappe/core/doctype/docshare/docshare.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/user_permission/user_permission_list.js:36 #: frappe/core/doctype/version/version.json #: frappe/desk/doctype/tag_link/tag_link.json @@ -7938,13 +7933,13 @@ msgstr "文档标题" #: frappe/desk/doctype/tag_link/tag_link.json #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_format_field_template/print_format_field_template.json -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow/workflow.json msgid "Document Type" msgstr "单据类型" -#: frappe/desk/doctype/number_card/number_card.py:59 +#: frappe/desk/doctype/number_card/number_card.py:60 msgid "Document Type and Function are required to create a number card" msgstr "创建数字卡片需指定文档类型和功能" @@ -7981,7 +7976,7 @@ msgid "Document Types and Permissions" msgstr "单据类型与权限" #: frappe/core/doctype/submission_queue/submission_queue.py:163 -#: frappe/model/document.py:1952 +#: frappe/model/document.py:1959 msgid "Document Unlocked" msgstr "文档已解锁" @@ -7989,15 +7984,15 @@ msgstr "文档已解锁" msgid "Document follow is not enabled for this user." msgstr "该用户未启用文档关注功能" -#: frappe/public/js/frappe/list/list_view.js:1157 +#: frappe/public/js/frappe/list/list_view.js:1302 msgid "Document has been cancelled" msgstr "文档已取消" -#: frappe/public/js/frappe/list/list_view.js:1156 +#: frappe/public/js/frappe/list/list_view.js:1301 msgid "Document has been submitted" msgstr "文档已提交" -#: frappe/public/js/frappe/list/list_view.js:1155 +#: frappe/public/js/frappe/list/list_view.js:1300 msgid "Document is in draft state" msgstr "文档处于草稿状态" @@ -8139,13 +8134,13 @@ msgstr "双层圆环图" msgid "Double click to edit label" msgstr "双击修改标签" -#: frappe/core/doctype/file/file.js:15 +#: frappe/core/doctype/file/file.js:15 frappe/core/doctype/user/user.js:474 #: frappe/email/doctype/auto_email_report/auto_email_report.js:8 #: frappe/public/js/frappe/form/grid.js:66 msgid "Download" msgstr "下载" -#: frappe/public/js/frappe/views/reports/report_utils.js:237 +#: frappe/public/js/frappe/views/reports/report_utils.js:247 msgctxt "Export report" msgid "Download" msgstr "下载" @@ -8172,7 +8167,7 @@ msgstr "下载链接" msgid "Download PDF" msgstr "下载PDF" -#: frappe/public/js/frappe/views/reports/query_report.js:831 +#: frappe/public/js/frappe/views/reports/query_report.js:840 msgid "Download Report" msgstr "下载报表" @@ -8235,7 +8230,7 @@ msgstr "通过从左边栏拖拽字段添加,拖拽到垃圾桶删除" msgid "Drag to add state" msgstr "拖拽添加状态" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:172 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:189 msgid "Drop files here" msgstr "拖拽文件到这儿" @@ -8268,7 +8263,7 @@ msgstr "重复记录" msgid "Duplicate Filter Name" msgstr "过滤条件名称重复" -#: frappe/model/base_document.py:663 frappe/model/rename_doc.py:111 +#: frappe/model/base_document.py:720 frappe/model/rename_doc.py:111 msgid "Duplicate Name" msgstr "名称重复" @@ -8367,17 +8362,17 @@ msgstr "退出" #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:46 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:85 #: frappe/public/js/frappe/form/controls/markdown_editor.js:31 -#: frappe/public/js/frappe/form/footer/form_timeline.js:669 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:670 +#: 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:748 -#: frappe/public/js/frappe/views/reports/query_report.js:879 -#: frappe/public/js/frappe/views/reports/query_report.js:1774 +#: frappe/public/js/frappe/views/reports/query_report.js:888 +#: frappe/public/js/frappe/views/reports/query_report.js:1791 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/public/js/frappe/widgets/base_widget.js:64 #: frappe/public/js/frappe/widgets/chart_widget.js:299 -#: frappe/public/js/frappe/widgets/number_card_widget.js:347 +#: frappe/public/js/frappe/widgets/number_card_widget.js:359 #: frappe/templates/discussions/reply_card.html:29 #: frappe/templates/discussions/reply_section.html:29 #: frappe/workflow/page/workflow_builder/workflow_builder.js:46 @@ -8385,7 +8380,7 @@ msgstr "退出" msgid "Edit" msgstr "编辑" -#: frappe/public/js/frappe/list/list_view.js:2111 +#: frappe/public/js/frappe/list/list_view.js:2260 msgctxt "Button in list view actions menu" msgid "Edit" msgstr "编辑" @@ -8395,7 +8390,7 @@ msgctxt "Button in web form" msgid "Edit" msgstr "编辑" -#: frappe/public/js/frappe/form/grid_row.js:345 +#: frappe/public/js/frappe/form/grid_row.js:350 msgctxt "Edit grid row" msgid "Edit" msgstr "编辑" @@ -8424,7 +8419,7 @@ msgstr "编辑自定义HTML" msgid "Edit DocType" msgstr "修改单据类型" -#: frappe/public/js/frappe/list/list_view.js:1827 +#: frappe/public/js/frappe/list/list_view.js:1976 msgctxt "Button in list view menu" msgid "Edit DocType" msgstr "编辑文档类型" @@ -8442,7 +8437,7 @@ msgstr "编辑过滤条件" msgid "Edit Footer" msgstr "编辑页脚" -#: frappe/printing/doctype/print_format/print_format.js:28 +#: frappe/printing/doctype/print_format/print_format.js:29 msgid "Edit Format" msgstr "编辑格式" @@ -8527,7 +8522,7 @@ msgstr "编辑 {0} 文档类型" msgid "Edit to add content" msgstr "编辑 添加内容" -#: frappe/public/js/frappe/web_form/web_form.js:446 +#: frappe/public/js/frappe/web_form/web_form.js:470 msgctxt "Button in web form" msgid "Edit your response" msgstr "编辑您的回复" @@ -8536,7 +8531,7 @@ msgstr "编辑您的回复" msgid "Edit your workflow visually using the Workflow Builder." msgstr "使用工作流设计器可视化编辑工作流" -#: frappe/public/js/frappe/views/reports/report_view.js:678 +#: frappe/public/js/frappe/views/reports/report_view.js:683 #: frappe/public/js/frappe/widgets/widget_dialog.js:52 msgid "Edit {0}" msgstr "编辑{0}" @@ -8544,7 +8539,7 @@ msgstr "编辑{0}" #. Label of the editable_grid (Check) field in DocType 'DocType' #. Label of the editable_grid (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:57 +#: frappe/core/doctype/doctype/doctype_list.js:58 #: frappe/custom/doctype/customize_form/customize_form.json msgid "Editable Grid" msgstr "可编辑表格" @@ -8583,11 +8578,14 @@ msgstr "元素选择器" #. Label of the email (Data) field in DocType 'User' #. Label of the email_settings (Section Break) field in DocType 'User' #. Label of the email (Check) field in DocType 'User Document Type' +#. Label of the email (Data) field in DocType 'User Invitation' #. Label of the email (Data) field in DocType 'Event Participants' #. Label of the email (Data) field in DocType 'Email Group Member' #. Label of the email (Data) field in DocType 'Email Unsubscribe' #. Option for the 'Channel' (Select) field in DocType 'Notification' #. Label of the email (Data) field in DocType 'Personal Data Deletion Request' +#. Label of a field in the request-data Web Form +#. Label of a field in the request-to-delete-data Web Form #: frappe/automation/workspace/tools/tools.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/custom_docperm/custom_docperm.json @@ -8596,6 +8594,7 @@ msgstr "元素选择器" #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_document_type/user_document_type.json +#: frappe/core/doctype/user_invitation/user_invitation.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 @@ -8605,6 +8604,8 @@ msgstr "元素选择器" #: frappe/templates/includes/comments/comments.html:25 #: frappe/templates/signup.html:9 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json +#: frappe/website/web_form/request_data/request_data.json +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json #: frappe/www/login.html:8 frappe/www/login.py:104 msgid "Email" msgstr "邮件" @@ -8636,7 +8637,7 @@ msgstr "电子邮件账户已禁用" msgid "Email Account Name" msgstr "电子邮箱帐号名" -#: frappe/core/doctype/user/user.py:742 +#: frappe/core/doctype/user/user.py:749 msgid "Email Account added multiple times" msgstr "电子邮箱帐号已被多次添加" @@ -8724,6 +8725,7 @@ msgid "Email IDs" msgstr "邮箱" #. Label of the email_id (Data) field in DocType 'Contact Us Settings' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:48 #: frappe/website/doctype/contact_us_settings/contact_us_settings.json msgid "Email Id" msgstr "邮箱" @@ -8767,10 +8769,10 @@ msgstr "邮件重试次数限制" msgid "Email Rule" msgstr "电子邮件规则" -#. Label of the email_sent (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Email Sent" -msgstr "邮件已发送" +#. Label of the email_sent_at (Datetime) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Email Sent At" +msgstr "邮件发送时间" #. Label of the email_settings_sb (Section Break) field in DocType 'DocType' #. Label of the email_settings_section (Section Break) field in DocType @@ -8835,11 +8837,11 @@ msgstr "电子邮件已被标记为垃圾邮件" msgid "Email has been moved to trash" msgstr "电子邮件已被移至垃圾桶" -#: frappe/core/doctype/user/user.js:272 +#: frappe/core/doctype/user/user.js:266 msgid "Email is mandatory to create User Email" msgstr "创建用户电子邮件时必须填写邮箱地址" -#: frappe/public/js/frappe/views/communication.js:819 +#: frappe/public/js/frappe/views/communication.js:822 msgid "Email not sent to {0} (unsubscribed / disabled)" msgstr "电子邮件不会被发送到{0}(退订/禁用)" @@ -8878,7 +8880,7 @@ msgstr "系统自动发送带审批操作按钮及单据pdf附件的电子邮件 msgid "Embed code copied" msgstr "嵌入代码已复制" -#: frappe/database/query.py:1537 +#: frappe/database/query.py:1539 msgid "Empty alias is not allowed" msgstr "" @@ -8886,7 +8888,7 @@ msgstr "" msgid "Empty column" msgstr "空栏" -#: frappe/database/query.py:1455 +#: frappe/database/query.py:1457 msgid "Empty string arguments are not allowed" msgstr "" @@ -8905,7 +8907,7 @@ msgstr "启用" msgid "Enable Address Autocompletion" msgstr "启用地址自动补全功能" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:119 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:123 msgid "Enable Allow Auto Repeat for the doctype {0} in Customize Form" msgstr "在表单自定义中为文档类型{0}启用自动重复功能" @@ -8931,11 +8933,6 @@ msgstr "启用评论" msgid "Enable Dynamic Client Registration" msgstr "" -#. Label of the enable_email_notification (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable Email Notification" -msgstr "启用邮件通知" - #. Label of the enable_email_notifications (Check) field in DocType #. 'Notification Settings' #: frappe/desk/doctype/notification_settings/notification_settings.json @@ -9029,11 +9026,6 @@ msgstr "启用安全功能" msgid "Enable Social Login" msgstr "启用社交登录" -#. Label of the enable_social_sharing (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Enable Social Sharing" -msgstr "启用社交分享" - #: frappe/website/doctype/website_settings/website_settings.js:139 msgid "Enable Tracking Page Views" msgstr "启用页面访问跟踪" @@ -9041,7 +9033,7 @@ msgstr "启用页面访问跟踪" #. Label of the enable_two_factor_auth (Check) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/twofactor.py:433 +#: frappe/twofactor.py:438 msgid "Enable Two Factor Auth" msgstr "启用双重验证" @@ -9053,12 +9045,6 @@ msgstr "启用开发者模式以创建标准打印模板" msgid "Enable developer mode to create a standard Web Template" msgstr "启用开发者模式以创建标准网页模板" -#. Description of the 'Enable Email Notification' (Check) field in DocType -#. 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Enable email notification for any comment or likes received on your Blog Post." -msgstr "为博客文章收到的评论或点赞启用邮件通知。" - #. Description of the 'Modal Trigger' (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Enable if on click\n" @@ -9082,6 +9068,7 @@ msgstr "启用应用内网站跟踪" #. Label of the enabled (Check) field in DocType 'LDAP Settings' #. Label of the enabled (Check) field in DocType 'Webhook' #. Label of the enabled (Check) field in DocType 'Portal Menu Item' +#. Label of the enabled (Check) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/language/language.json #: frappe/core/doctype/user/user.json #: frappe/custom/doctype/client_script/client_script.json @@ -9094,6 +9081,7 @@ msgstr "启用应用内网站跟踪" #: frappe/public/js/frappe/model/indicator.js:110 #: frappe/public/js/frappe/model/indicator.js:121 #: frappe/website/doctype/portal_menu_item/portal_menu_item.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Enabled" msgstr "已启用" @@ -9119,14 +9107,10 @@ msgid "Enabling auto reply on an incoming email account will send automated repl msgstr "启用自动回复将会对所有同步过来的邮件生效,确认继续?" #. Description of a DocType -#: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." -msgstr "启用后将在中央中继服务器注册站点,通过Firebase云消息推送所有已安装应用的通知。该服务器仅存储用户令牌和错误日志,不保存任何消息。" - #. Description of the 'Relay Settings' (Section Break) field in DocType 'Push #. Notification Settings' #: frappe/integrations/doctype/push_notification_settings/push_notification_settings.json -msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved. " +msgid "Enabling this will register your site on a central relay server to send push notifications for all installed apps through Firebase Cloud Messaging. This server only stores user tokens and error logs, and no messages are saved." msgstr "启用后将在中央中继服务器注册站点,通过Firebase云消息推送所有已安装应用的通知。该服务器仅存储用户令牌和错误日志,不保存任何消息。" #. Description of the 'Queue in Background (BETA)' (Check) field in DocType @@ -9143,11 +9127,11 @@ msgstr "启用后台任务执行提交操作,避免单据明细行多,运算 msgid "Encrypt Backups" msgstr "备份数据加密" -#: frappe/utils/password.py:197 +#: frappe/utils/password.py:196 msgid "Encryption key is in invalid format!" msgstr "加密密钥格式无效!" -#: frappe/utils/password.py:212 +#: frappe/utils/password.py:211 msgid "Encryption key is invalid! Please check site_config.json" msgstr "加密密钥无效!请检查site_config.json文件" @@ -9159,7 +9143,7 @@ msgstr "结束" #. Label of the end_date (Date) field in DocType 'Audit Trail' #. Label of the end_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:416 #: frappe/website/doctype/web_page/web_page.json @@ -9175,6 +9159,10 @@ msgstr "结束日期字段" msgid "End Date cannot be before Start Date!" msgstr "结束日期不能在开始日期之前!" +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:146 +msgid "End Date cannot be today." +msgstr "" + #. Label of the ended_at (Datetime) field in DocType 'RQ Job' #. Label of the ended_at (Datetime) field in DocType 'Submission Queue' #: frappe/core/doctype/rq_job/rq_job.json @@ -9219,7 +9207,7 @@ msgstr "在Google设置中输入客户端ID和客户端密钥。" msgid "Enter Code displayed in OTP App." msgstr "输入OTP应用中显示的验证码。" -#: frappe/public/js/frappe/views/communication.js:774 +#: frappe/public/js/frappe/views/communication.js:777 msgid "Enter Email Recipient(s)" msgstr "输入电子邮件收件人(S)" @@ -9289,10 +9277,17 @@ msgstr "等于" #. Label of the error (Code) field in DocType 'Email Queue Recipient' #. Label of the error (Code) field in DocType 'Integration Request' #. Label of the error (Text) field in DocType 'Webhook Request Log' +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +#: frappe/core/api/user_invitation.py:84 frappe/core/api/user_invitation.py:115 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/error_log/error_log.json #: frappe/core/doctype/prepared_report/prepared_report.json +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +#: frappe/core/doctype/user_invitation/user_invitation.py:127 #: frappe/desk/page/backups/backups.js:37 #: frappe/email/doctype/email_queue/email_queue.json #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json @@ -9302,7 +9297,7 @@ msgstr "等于" msgid "Error" msgstr "错误" -#: frappe/public/js/frappe/web_form/web_form.js:240 +#: frappe/public/js/frappe/web_form/web_form.js:264 msgctxt "Title of error message in web form" msgid "Error" msgstr "错误" @@ -9322,7 +9317,7 @@ msgstr "错误日志" msgid "Error Message" msgstr "错误信息" -#: frappe/public/js/frappe/form/print_utils.js:141 +#: frappe/public/js/frappe/form/print_utils.js:156 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托盘
    单击此处以了解有关原始印刷的更多信息 。" @@ -9350,9 +9345,9 @@ msgstr "客户端脚本错误。" msgid "Error in Header/Footer Script" msgstr "页眉/页脚脚本错误" -#: frappe/email/doctype/notification/notification.py:598 -#: frappe/email/doctype/notification/notification.py:735 -#: frappe/email/doctype/notification/notification.py:741 +#: frappe/email/doctype/notification/notification.py:642 +#: frappe/email/doctype/notification/notification.py:782 +#: frappe/email/doctype/notification/notification.py:788 msgid "Error in Notification" msgstr "通知错误" @@ -9372,19 +9367,19 @@ msgstr "" msgid "Error while connecting to email account {0}" msgstr "连接到电子邮箱帐号{0}时出错" -#: frappe/email/doctype/notification/notification.py:732 +#: frappe/email/doctype/notification/notification.py:779 msgid "Error while evaluating Notification {0}. Please fix your template." msgstr "评估通知{0}时出错。请修复您的模板。" -#: frappe/model/base_document.py:803 +#: frappe/model/base_document.py:860 msgid "Error: Data missing in table {0}" msgstr "错误:表{0}中数据缺失" -#: frappe/model/base_document.py:813 +#: frappe/model/base_document.py:870 msgid "Error: Value missing for {0}: {1}" msgstr "错误:{0} 请填写必填字段:{1}" -#: frappe/model/base_document.py:807 +#: frappe/model/base_document.py:864 msgid "Error: {0} Row #{1}: Value missing for: {2}" msgstr "错误:{0} 行#{1}:缺少值:{2}" @@ -9441,7 +9436,7 @@ msgstr "事件类型" msgid "Events" msgstr "事件" -#: frappe/desk/doctype/event/event.py:274 +#: frappe/desk/doctype/event/event.py:278 msgid "Events in Today's Calendar" msgstr "今日历中的活动" @@ -9525,7 +9520,7 @@ msgstr "执行" msgid "Execute Console script" msgstr "执行控制台脚本" -#: frappe/public/js/frappe/ui/dropdown_console.js:125 +#: frappe/public/js/frappe/ui/dropdown_console.js:132 msgid "Executing Code" msgstr "" @@ -9533,7 +9528,7 @@ msgstr "" msgid "Executing..." msgstr "正在执行..." -#: frappe/public/js/frappe/views/reports/query_report.js:2121 +#: frappe/public/js/frappe/views/reports/query_report.js:2140 msgid "Execution Time: {0} sec" msgstr "运行时间:{0}秒" @@ -9559,12 +9554,12 @@ msgctxt "Enlarge code field." msgid "Expand" msgstr "展开" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 #: frappe/public/js/frappe/views/treeview.js:133 msgid "Expand All" msgstr "全部展开" -#: frappe/database/query.py:352 +#: frappe/database/query.py:354 msgid "Expected 'and' or 'or' operator, found: {0}" msgstr "" @@ -9592,7 +9587,9 @@ msgid "Expire Notification On" msgstr "通知截止日" #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #: frappe/core/doctype/communication/communication.json +#: frappe/core/doctype/user_invitation/user_invitation.json msgid "Expired" msgstr "已过期" @@ -9620,13 +9617,13 @@ msgstr "QR码图像页面的到期时间" #: frappe/core/doctype/recorder/recorder_list.js:37 #: frappe/public/js/frappe/data_import/data_exporter.js:92 #: frappe/public/js/frappe/data_import/data_exporter.js:243 -#: frappe/public/js/frappe/views/reports/query_report.js:1809 -#: frappe/public/js/frappe/views/reports/report_view.js:1627 +#: frappe/public/js/frappe/views/reports/query_report.js:1828 +#: frappe/public/js/frappe/views/reports/report_view.js:1629 #: frappe/public/js/frappe/widgets/chart_widget.js:315 msgid "Export" msgstr "导出" -#: frappe/public/js/frappe/list/list_view.js:2133 +#: frappe/public/js/frappe/list/list_view.js:2282 msgctxt "Button in list view actions menu" msgid "Export" msgstr "导出" @@ -9663,7 +9660,7 @@ msgstr "单据" msgid "Export Import Log" msgstr "导出导入日志" -#: frappe/public/js/frappe/views/reports/report_utils.js:235 +#: frappe/public/js/frappe/views/reports/report_utils.js:245 msgctxt "Export report" msgid "Export Report: {0}" msgstr "导出报告:{0}" @@ -9672,11 +9669,11 @@ msgstr "导出报告:{0}" msgid "Export Type" msgstr "导出类型" -#: frappe/public/js/frappe/views/reports/report_view.js:1638 +#: frappe/public/js/frappe/views/reports/report_view.js:1640 msgid "Export all matching rows?" msgstr "导入满足筛选条件的所有记录?" -#: frappe/public/js/frappe/views/reports/report_view.js:1648 +#: frappe/public/js/frappe/views/reports/report_view.js:1650 msgid "Export all {0} rows?" msgstr "导出全部{0}行?" @@ -9684,6 +9681,10 @@ msgstr "导出全部{0}行?" msgid "Export as zip" msgstr "压缩导出" +#: frappe/public/js/frappe/views/reports/report_utils.js:184 +msgid "Export in Background" +msgstr "" + #: frappe/public/js/frappe/utils/tools.js:11 msgid "Export not allowed. You need {0} role to export." msgstr "不允许导出,您没有{0}的角色。" @@ -9789,7 +9790,7 @@ msgstr "失败任务" msgid "Failed Logins (Last 30 days)" msgstr "登录失败(最近30天)" -#: frappe/model/workflow.py:306 +#: frappe/model/workflow.py:362 msgid "Failed Transactions" msgstr "失败事务" @@ -9806,7 +9807,7 @@ msgstr "密码修改失败。" msgid "Failed to complete setup" msgstr "无法完成设置" -#: frappe/integrations/doctype/webhook/webhook.py:137 +#: frappe/integrations/doctype/webhook/webhook.py:141 msgid "Failed to compute request body: {}" msgstr "计算请求正文失败:{}" @@ -9815,15 +9816,15 @@ msgstr "计算请求正文失败:{}" msgid "Failed to connect to server" msgstr "无法连接服务器" -#: frappe/auth.py:698 +#: frappe/auth.py:701 msgid "Failed to decode token, please provide a valid base64-encoded token." msgstr "解码令牌失败,请提供有效的Base64编码令牌。" -#: frappe/utils/password.py:211 +#: frappe/utils/password.py:210 msgid "Failed to decrypt key {0}" msgstr "解密密钥{0}失败" -#: frappe/desk/reportview.py:600 +#: frappe/desk/reportview.py:635 msgid "Failed to delete {0} documents: {1}" msgstr "未能删除 {0} 个单据: {1}" @@ -9831,8 +9832,8 @@ msgstr "未能删除 {0} 个单据: {1}" msgid "Failed to enable scheduler: {0}" msgstr "启动后台任务 {0} 失败" -#: frappe/email/doctype/notification/notification.py:99 -#: frappe/integrations/doctype/webhook/webhook.py:127 +#: frappe/email/doctype/notification/notification.py:105 +#: frappe/integrations/doctype/webhook/webhook.py:131 msgid "Failed to evaluate conditions: {}" msgstr "条件评估失败:{}" @@ -9848,7 +9849,7 @@ msgstr "未能从序列生成名称" msgid "Failed to generate preview of series" msgstr "无法生成序列预览" -#: frappe/handler.py:75 +#: frappe/handler.py:76 msgid "Failed to get method for command {0} with {1}" msgstr "无法获取命令{0}的方法(参数{1})" @@ -9868,11 +9869,11 @@ msgstr "导入虚拟文档类型{}失败,控制器文件是否存在?" msgid "Failed to optimize image: {0}" msgstr "图像优化失败:{0}" -#: frappe/email/doctype/notification/notification.py:116 +#: frappe/email/doctype/notification/notification.py:122 msgid "Failed to render message: {}" msgstr "消息渲染失败:{}" -#: frappe/email/doctype/notification/notification.py:134 +#: frappe/email/doctype/notification/notification.py:140 msgid "Failed to render subject: {}" msgstr "主题渲染失败:{}" @@ -9922,12 +9923,6 @@ msgstr "网站图标" msgid "Fax" msgstr "传真" -#. Label of the featured (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:19 -msgid "Featured" -msgstr "精选" - #: frappe/public/js/frappe/form/templates/form_sidebar.html:33 msgid "Feedback" msgstr "反馈" @@ -9985,17 +9980,17 @@ msgstr "正在获取默认全局搜索文档。" #: frappe/public/js/frappe/list/bulk_operations.js:327 #: frappe/public/js/frappe/list/list_view_permission_restrictions.html:3 #: frappe/public/js/frappe/views/reports/query_report.js:236 -#: frappe/public/js/frappe/views/reports/query_report.js:1868 +#: frappe/public/js/frappe/views/reports/query_report.js:1887 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_form_list_column/web_form_list_column.json msgid "Field" msgstr "字段" -#: frappe/core/doctype/doctype/doctype.py:417 +#: frappe/core/doctype/doctype/doctype.py:418 msgid "Field \"route\" is mandatory for Web Views" msgstr "Web视图必须使用字段“路由”" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Field \"title\" is mandatory if \"Website Search Field\" is set." msgstr "如果设置了“网站搜索字段”,则“标题”字段是必填的。" @@ -10008,7 +10003,7 @@ msgstr "字段值必填。请指定值进行更新" msgid "Field Description" msgstr "字段说明" -#: frappe/core/doctype/doctype/doctype.py:1077 +#: frappe/core/doctype/doctype/doctype.py:1078 msgid "Field Missing" msgstr "缺失字段" @@ -10038,7 +10033,7 @@ msgstr "字段模板" msgid "Field Type" msgstr "字段类型" -#: frappe/desk/reportview.py:201 +#: frappe/desk/reportview.py:202 msgid "Field not permitted in query" msgstr "查询过滤条件字段无效(js调用db.get_value, db.get_list过滤条件不支持字表字段,db.get_list支持子单据查询,需添加parent_doctype:主单据类型参数用于权限检查)" @@ -10064,11 +10059,11 @@ msgstr "字段{0}在{1}中不存在" msgid "Field {0} is referring to non-existing doctype {1}." msgstr "字段{0}引用了不存在的文档类型{1}。" -#: frappe/public/js/frappe/form/form.js:1754 +#: frappe/public/js/frappe/form/form.js:1756 msgid "Field {0} not found." msgstr "找不到字段{0}。" -#: frappe/email/doctype/notification/notification.py:503 +#: frappe/email/doctype/notification/notification.py:547 msgid "Field {0} on document {1} is neither a Mobile number field nor a Customer or User link" msgstr "文档{1}的字段{0}既不是手机号码字段,也不是客户或用户链接字段" @@ -10086,20 +10081,20 @@ 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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Fieldname" msgstr "字段名" -#: frappe/core/doctype/doctype/doctype.py:270 +#: frappe/core/doctype/doctype/doctype.py:271 msgid "Fieldname '{0}' conflicting with a {1} of the name {2} in {3}" msgstr "字段名'{0}'与{3}中的{1} {2}冲突" -#: frappe/core/doctype/doctype/doctype.py:1076 +#: frappe/core/doctype/doctype/doctype.py:1077 msgid "Fieldname called {0} must exist to enable autonaming" msgstr "必须存在名为{0}的字段才能启用自动命名" -#: frappe/database/schema.py:127 frappe/database/schema.py:404 +#: frappe/database/schema.py:131 frappe/database/schema.py:408 msgid "Fieldname is limited to 64 characters ({0})" msgstr "字段名被限制为64个字符({0})" @@ -10115,15 +10110,15 @@ msgstr "字段名将作为这个单据类型的链接字段。" msgid "Fieldname {0} appears multiple times" msgstr "字段名{0}重复出现" -#: frappe/database/schema.py:394 +#: frappe/database/schema.py:398 msgid "Fieldname {0} cannot have special characters like {1}" msgstr "字段名{0}不能有特殊字符,如{1}" -#: frappe/core/doctype/doctype/doctype.py:1907 +#: frappe/core/doctype/doctype/doctype.py:1921 msgid "Fieldname {0} conflicting with meta object" msgstr "字段名{0}与元对象冲突" -#: frappe/core/doctype/doctype/doctype.py:496 +#: frappe/core/doctype/doctype/doctype.py:497 #: frappe/public/js/form_builder/utils.js:302 msgid "Fieldname {0} is restricted" msgstr "字段名{0}受限制" @@ -10146,7 +10141,7 @@ msgstr "字段名{0}受限制" #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_view_settings/list_view_settings.json -#: frappe/public/js/frappe/list/list_settings.js:135 +#: frappe/public/js/frappe/list/list_settings.js:133 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:111 #: frappe/public/js/print_format_builder/PrintFormatControls.vue:83 #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json @@ -10159,7 +10154,7 @@ msgstr "字段" msgid "Fields Multicheck" msgstr "字段Multicheck" -#: frappe/core/doctype/file/file.py:410 +#: frappe/core/doctype/file/file.py:431 msgid "Fields `file_name` or `file_url` must be set for File" msgstr "文件必须设置`file_name`或`file_url`字段" @@ -10167,7 +10162,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:611 +#: frappe/database/query.py:613 msgid "Fields must be a string, list, tuple, pypika Field, or pypika Function" msgstr "" @@ -10195,7 +10190,7 @@ msgstr "字段类型" msgid "Fieldtype cannot be changed from {0} to {1}" msgstr "字段类型不能从{0}更改为{1}" -#: frappe/custom/doctype/customize_form/customize_form.py:588 +#: frappe/custom/doctype/customize_form/customize_form.py:593 msgid "Fieldtype cannot be changed from {0} to {1} in row {2}" msgstr "第{2}行中的字段类型不能从{0}更改为{1}" @@ -10208,7 +10203,7 @@ msgstr "第{2}行中的字段类型不能从{0}更改为{1}" msgid "File" msgstr "文件" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:478 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:498 msgid "File \"{0}\" was skipped because of invalid file type" msgstr "由于文件类型无效,文件“{0}”被跳过" @@ -10261,7 +10256,7 @@ msgstr "文件的URL" msgid "File backup is ready" msgstr "文件备份就绪" -#: frappe/core/doctype/file/file.py:624 +#: frappe/core/doctype/file/file.py:649 msgid "File name cannot have {0}" msgstr "文件名不能包含{0}" @@ -10269,7 +10264,7 @@ msgstr "文件名不能包含{0}" msgid "File not attached" msgstr "文件未添加" -#: frappe/core/doctype/file/file.py:734 frappe/public/js/frappe/request.js:200 +#: frappe/core/doctype/file/file.py:759 frappe/public/js/frappe/request.js:200 #: frappe/utils/file_manager.py:221 msgid "File size exceeded the maximum allowed size of {0} MB" msgstr "文件大小超过允许的{0} MB" @@ -10278,11 +10273,11 @@ msgstr "文件大小超过允许的{0} MB" msgid "File too big" msgstr "文件太大" -#: frappe/core/doctype/file/file.py:375 +#: frappe/core/doctype/file/file.py:390 msgid "File type of {0} is not allowed" msgstr "不允许{0}文件类型" -#: frappe/core/doctype/file/file.py:363 frappe/core/doctype/file/file.py:426 +#: frappe/core/doctype/file/file.py:377 frappe/core/doctype/file/file.py:451 msgid "File {0} does not exist" msgstr "文件{0}不存在" @@ -10296,10 +10291,10 @@ msgstr "文件" #: frappe/core/doctype/prepared_report/prepared_report.js:8 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:953 +#: frappe/public/js/frappe/list/base_list.js:969 #: frappe/public/js/frappe/ui/filters/filter_list.js:134 #: frappe/website/doctype/web_form/web_form.js:197 msgid "Filter" @@ -10336,11 +10331,11 @@ msgstr "过滤条件名称" msgid "Filter Values" msgstr "过滤值" -#: frappe/database/query.py:358 +#: frappe/database/query.py:360 msgid "Filter condition missing after operator: {0}" msgstr "" -#: frappe/database/query.py:425 +#: frappe/database/query.py:427 msgid "Filter fields cannot contain backticks (`)." msgstr "" @@ -10358,7 +10353,6 @@ msgstr "过滤条件" msgid "Filtered Records" msgstr "满足过滤条件的记录" -#: frappe/website/doctype/blog_post/blog_post.py:268 #: frappe/website/doctype/help_article/help_article.py:91 frappe/www/list.py:45 msgid "Filtered by \"{0}\"" msgstr "基于“{0}”过滤" @@ -10373,7 +10367,9 @@ msgstr "基于“{0}”过滤" #. Label of the filters (Code) field in DocType 'Kanban Board' #. Label of the filters (Long Text) field in DocType 'List Filter' #. Label of the filters (Text) field in DocType 'Auto Email Report' -#. Label of the filters (Section Break) field in DocType 'Notification' +#. Label of the filters (Code) field in DocType 'Notification' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' +#. Label of the filters_section (Section Break) field in DocType 'Notification' #: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/prepared_report/prepared_report.json #: frappe/core/doctype/report/report.json @@ -10395,6 +10391,11 @@ msgstr "过滤器配置" msgid "Filters Display" msgstr "显示过滤条件" +#. Label of the filters_editor (HTML) field in DocType 'Notification' +#: frappe/email/doctype/notification/notification.json +msgid "Filters Editor" +msgstr "" + #. Label of the filters_json (Code) field in DocType 'Dashboard Chart' #. Label of the filters_json (Code) field in DocType 'Number Card' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -10407,11 +10408,11 @@ msgstr "过滤JSON" msgid "Filters Section" msgstr "过滤条件" -#: frappe/public/js/frappe/form/controls/link.js:510 +#: frappe/public/js/frappe/form/controls/link.js:514 msgid "Filters applied for {0}" msgstr "过滤条件:{0}" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:188 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:202 msgid "Filters saved" msgstr "已保存过滤条件" @@ -10424,18 +10425,18 @@ msgstr "过滤器可通过filters访问。

    发送输出为" msgstr "页脚可能不可见,因为{0}选项已禁用" @@ -10747,8 +10748,8 @@ msgstr "用户" msgid "For Value" msgstr "允许值" -#: frappe/public/js/frappe/views/reports/query_report.js:2118 -#: frappe/public/js/frappe/views/reports/report_view.js:102 +#: frappe/public/js/frappe/views/reports/query_report.js:2137 +#: frappe/public/js/frappe/views/reports/report_view.js:108 msgid "For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10)." msgstr "过滤条件可以用>,<,= 比较符,两个值之间用:表示范围, 如>5, <10, =20, 5:10" @@ -10774,12 +10775,6 @@ msgstr "例如: {} Open" msgid "For help see Client Script API and Examples" msgstr "如需帮助,请参阅 客户端脚本 API 和示例" -#. Description of the 'Enable Automatic Linking in Documents' (Check) field in -#. DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "For more information, click here." -msgstr "有关更多信息, 请单击此处 。" - #: frappe/integrations/doctype/google_settings/google_settings.js:7 msgid "For more information, {0}." msgstr "更多信息,请{0}。" @@ -10794,7 +10789,7 @@ msgstr "多个地址请分行输入,例如:test@test.com ⏎ test1@test.com" msgid "For updating, you can update only selective columns." msgstr "您只能更新选择的列。" -#: frappe/core/doctype/doctype/doctype.py:1751 +#: frappe/core/doctype/doctype/doctype.py:1765 msgid "For {0} at level {1} in {2} in row {3}" msgstr "对行{3},{2}中级别{1}的{0}" @@ -10849,7 +10844,7 @@ 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:83 +#: frappe/printing/page/print/print.js:96 #: frappe/website/doctype/web_form/web_form.json msgid "Form" msgstr "表单" @@ -10909,6 +10904,11 @@ msgstr "格式" msgid "Format Data" msgstr "格式化数据" +#. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Fortnightly" +msgstr "双周" + #: frappe/core/doctype/communication/communication.js:70 msgid "Forward" msgstr "转发" @@ -10936,7 +10936,15 @@ msgstr "分数单位" msgid "Frappe" msgstr "Frappe" -#: frappe/public/js/frappe/ui/toolbar/about.js:4 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Blog" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Frappe Forum" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/about.js:8 msgid "Frappe Framework" msgstr "Frappe框架" @@ -11025,7 +11033,7 @@ msgstr "开始日期" msgid "From Date Field" msgstr "开始日期字段" -#: frappe/public/js/frappe/views/reports/query_report.js:1829 +#: frappe/public/js/frappe/views/reports/query_report.js:1848 msgid "From Document Type" msgstr "单据类型" @@ -11052,18 +11060,16 @@ msgstr "全" #. Label of the full_name (Data) field in DocType 'Activity Log' #. Label of the full_name (Data) field in DocType 'User' #. Label of the full_name (Data) field in DocType 'About Us Team Member' -#. Label of the full_name (Data) field in DocType 'Blogger' #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/user/user.json #: frappe/desk/page/setup_wizard/setup_wizard.js:479 #: frappe/templates/signup.html:4 #: frappe/website/doctype/about_us_team_member/about_us_team_member.json -#: frappe/website/doctype/blogger/blogger.json msgid "Full Name" msgstr "全名" -#: frappe/printing/page/print/print.js:67 +#: frappe/printing/page/print/print.js:80 #: frappe/public/js/frappe/form/templates/print_layout.html:42 msgid "Full Page" msgstr "全屏显示" @@ -11089,13 +11095,13 @@ msgstr "函数基准字段" msgid "Function {0} is not whitelisted." msgstr "方法 {0} 申明前未添加@frappe.whitelist()装饰器" -#: frappe/database/query.py:1417 +#: frappe/database/query.py:1419 msgid "Function {0} requires arguments but none were provided" msgstr "" #: frappe/public/js/frappe/views/treeview.js:419 -msgid "Further nodes can be only created under 'Group' type nodes" -msgstr "只能在“组”节点下新建节点" +msgid "Further sub-groups can only be created under records marked as 'Group'" +msgstr "" #: frappe/core/doctype/communication/communication.js:291 msgid "Fw: {0}" @@ -11154,7 +11160,7 @@ msgstr "正常" msgid "Generate Keys" msgstr "生成密钥" -#: frappe/public/js/frappe/views/reports/query_report.js:873 +#: frappe/public/js/frappe/views/reports/query_report.js:882 msgid "Generate New Report" msgstr "生成新报表" @@ -11162,8 +11168,14 @@ msgstr "生成新报表" msgid "Generate Random Password" msgstr "生成随机密码" +#. Label of the generate_separate_documents_for_each_assignee (Check) field in +#. DocType 'Auto Repeat' +#: frappe/automation/doctype/auto_repeat/auto_repeat.json +msgid "Generate Separate Documents For Each Assignee" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/toolbar.js:178 -#: frappe/public/js/frappe/utils/utils.js:1790 +#: frappe/public/js/frappe/utils/utils.js:1827 msgid "Generate Tracking URL" msgstr "生成跟踪URL" @@ -11186,7 +11198,7 @@ msgstr "地理位置" msgid "Geolocation Settings" msgstr "地理位置设置" -#: frappe/email/doctype/notification/notification.js:219 +#: frappe/email/doctype/notification/notification.js:226 msgid "Get Alerts for Today" msgstr "获取今天的预警通知" @@ -11322,7 +11334,7 @@ msgid "Go to this URL after completing the form" msgstr "表单填写完成后跳转至此URL" #: frappe/core/doctype/doctype/doctype.js:54 -#: frappe/custom/doctype/client_script/client_script.js:10 +#: frappe/custom/doctype/client_script/client_script.js:12 msgid "Go to {0}" msgstr "转到{0}" @@ -11370,10 +11382,6 @@ msgstr "Google Analytics匿名IP" msgid "Google Calendar" msgstr "谷歌日历" -#: frappe/integrations/doctype/google_calendar/google_calendar.py:810 -msgid "Google Calendar - Contact / email not found. Did not add attendee for -
    {0}" -msgstr "谷歌日历 - 未找到联系人/邮箱。未添加参会者:
    {0}" - #: frappe/integrations/doctype/google_calendar/google_calendar.py:266 msgid "Google Calendar - Could not create Calendar for {0}, error code {1}." msgstr "谷歌日历 - 无法为{0}创建日历,错误代码{1}" @@ -11492,11 +11500,6 @@ msgstr "谷歌表格URL无效或不可公开访问" msgid "Google Sheets URL must end with \"gid={number}\". Copy and paste the URL from the browser address bar and try again." msgstr "Google表格网址必须以“ gid = {number}”结尾。从浏览器地址栏中复制并粘贴URL,然后重试。" -#. Label of the google_preview (HTML) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Google Snippet Preview" -msgstr "谷歌摘要预览" - #. Label of the grant_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Grant Type" @@ -11573,14 +11576,10 @@ msgstr "分组统计类型" msgid "Group By field is required to create a dashboard chart" msgstr "创建仪表板图表需要分组依据字段" -#: frappe/database/query.py:750 +#: frappe/database/query.py:752 msgid "Group By must be a string" msgstr "" -#: frappe/public/js/frappe/views/treeview.js:418 -msgid "Group Node" -msgstr "组节点" - #. Label of the ldap_group_objectclass (Data) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "Group Object Class" @@ -11630,7 +11629,6 @@ msgstr "时:分:秒" #. Head' #. Option for the 'Footer Based On' (Select) field in DocType 'Letter Head' #. Label of the html (Code) field in DocType 'Print Format' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/core/doctype/docfield/docfield.json @@ -11641,9 +11639,8 @@ msgstr "时:分:秒" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/letter_head/letter_head.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/printing/doctype/print_format/print_format.py:101 #: frappe/public/js/print_format_builder/Field.vue:86 -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json @@ -11747,7 +11744,7 @@ msgstr "头" msgid "Header HTML" msgstr "标题HTML" -#: frappe/printing/doctype/letter_head/letter_head.py:63 +#: frappe/printing/doctype/letter_head/letter_head.py:69 msgid "Header HTML set from attachment {0}" msgstr "使用附件{0}设置HTML文件头" @@ -11805,6 +11802,12 @@ msgstr "热力图" msgid "Hello" msgstr "你好" +#: frappe/templates/emails/user_invitation.html:2 +#: frappe/templates/emails/user_invitation_cancelled.html:2 +#: frappe/templates/emails/user_invitation_expired.html:2 +msgid "Hello," +msgstr "您好:" + #. Label of the help_section (Section Break) field in DocType 'Server Script' #. Label of the help (HTML) field in DocType 'Property Setter' #: frappe/core/doctype/server_script/server_script.json @@ -11870,7 +11873,7 @@ msgstr "黑体" msgid "Helvetica Neue" msgstr "Helvetica Neue字体" -#: frappe/public/js/frappe/utils/utils.js:1787 +#: frappe/public/js/frappe/utils/utils.js:1824 msgid "Here's your tracking URL" msgstr "这是您的跟踪URL" @@ -11906,7 +11909,7 @@ msgstr "隐藏" msgid "Hidden Fields" msgstr "隐藏字段" -#: frappe/public/js/frappe/views/reports/query_report.js:1641 +#: frappe/public/js/frappe/views/reports/query_report.js:1650 msgid "Hidden columns include: {0}" msgstr "" @@ -11939,11 +11942,6 @@ msgstr "不显示边框" msgid "Hide Buttons" msgstr "隐藏按钮" -#. Label of the hide_cta (Check) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Hide CTA" -msgstr "隐藏行动号召" - #. Label of the allow_copy (Check) field in DocType 'DocType' #. Label of the allow_copy (Check) field in DocType 'Customize Form' #: frappe/core/doctype/doctype/doctype.json @@ -12023,7 +12021,7 @@ msgstr "隐藏左边栏,菜单及评论" msgid "Hide Standard Menu" msgstr "隐藏标准菜单" -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Hide Tags" msgstr "隐藏标签" @@ -12037,7 +12035,7 @@ msgstr "隐藏周末" msgid "Hide descendant records of For Value." msgstr "隐藏下层节点" -#: frappe/public/js/frappe/form/layout.js:286 +#: frappe/public/js/frappe/form/layout.js:285 msgid "Hide details" msgstr "隐藏细节" @@ -12086,11 +12084,8 @@ 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:153 frappe/templates/doc.html:19 +#: frappe/public/js/frappe/views/pageview.js:156 frappe/templates/doc.html:19 #: frappe/templates/includes/navbar/navbar.html:9 -#: frappe/website/doctype/blog_post/blog_post.py:159 -#: frappe/website/doctype/blog_post/blog_post.py:271 -#: frappe/website/doctype/blog_post/blog_post.py:273 #: frappe/website/doctype/website_settings/website_settings.json #: frappe/website/web_template/primary_navbar/primary_navbar.html:9 #: frappe/www/contact.py:22 frappe/www/login.html:170 frappe/www/me.html:76 @@ -12178,16 +12173,16 @@ msgstr "您当前无工作区访问权限,可创建专属工作区。点击 #: frappe/desk/report/todo/todo.py:36 frappe/model/meta.py:52 #: frappe/public/js/frappe/data_import/data_exporter.js:330 #: frappe/public/js/frappe/data_import/data_exporter.js:345 -#: frappe/public/js/frappe/list/list_settings.js:337 -#: frappe/public/js/frappe/list/list_view.js:383 -#: frappe/public/js/frappe/list/list_view.js:447 +#: frappe/public/js/frappe/list/list_settings.js:335 +#: frappe/public/js/frappe/list/list_view.js:386 +#: frappe/public/js/frappe/list/list_view.js:450 #: frappe/public/js/frappe/model/meta.js:200 #: frappe/public/js/frappe/model/model.js:122 msgid "ID" msgstr "编号" -#: frappe/desk/reportview.py:491 -#: frappe/public/js/frappe/views/reports/report_view.js:984 +#: frappe/desk/reportview.py:526 +#: frappe/public/js/frappe/views/reports/report_view.js:989 msgctxt "Label of name column in report" msgid "ID" msgstr "标识符" @@ -12283,9 +12278,9 @@ msgstr "如果勾选了“加严用户权限限制”,并为用户定义了“ msgid "If Checked workflow status will not override status in list view" msgstr "如勾选,工作流状态不会覆盖列表视图中的状态字段" -#: frappe/core/doctype/doctype/doctype.py:1763 +#: frappe/core/doctype/doctype/doctype.py:1777 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.py:45 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 msgid "If Owner" msgstr "是制单人?" @@ -12413,6 +12408,10 @@ msgstr "如果用户检查了任何角色,则该用户将成为“系统用户 msgid "If these instructions where not helpful, please add in your suggestions on GitHub Issues." msgstr "如果这些说明没有帮助,请在Github提交你的建议。" +#: frappe/templates/emails/user_invitation_cancelled.html:8 +msgid "If this was a mistake or you need access again, please reach out to your team." +msgstr "" + #. Description of the 'Fetch on Save if Empty' (Check) field in DocType #. 'DocField' #. Description of the 'Fetch on Save if Empty' (Check) field in DocType 'Custom @@ -12444,7 +12443,11 @@ msgstr "上传新纪录时,如果有单据编号模板字段,那么“单据 msgid "If you are uploading new records, leave the \"name\" (ID) column blank." msgstr "如果你在上传新纪录,那么单据编号(ID)列必须留空。" -#: frappe/utils/password.py:214 +#: frappe/templates/emails/user_invitation.html:19 +msgid "If you have any questions, reach out to your system administrator." +msgstr "" + +#: frappe/utils/password.py:213 msgid "If you have recently restored the site, you may need to copy the site_config.json containing the original encryption key." msgstr "若近期恢复站点,需复制包含原始密钥的site_config.json文件" @@ -12501,12 +12504,12 @@ msgstr "忽略超过此大小的附件" msgid "Ignored Apps" msgstr "忽略的应用" -#: frappe/model/workflow.py:146 +#: frappe/model/workflow.py:202 msgid "Illegal Document Status for {0}" msgstr "{0}非法单据状态" -#: frappe/model/db_query.py:452 frappe/model/db_query.py:455 -#: frappe/model/db_query.py:1129 +#: frappe/model/db_query.py:454 frappe/model/db_query.py:457 +#: frappe/model/db_query.py:1122 msgid "Illegal SQL Query" msgstr "非法SQL查询" @@ -12567,11 +12570,11 @@ msgstr "图像视图" msgid "Image Width" msgstr "图片宽度" -#: frappe/core/doctype/doctype/doctype.py:1506 +#: frappe/core/doctype/doctype/doctype.py:1507 msgid "Image field must be a valid fieldname" msgstr "图像字段必须是有效的字段名" -#: frappe/core/doctype/doctype/doctype.py:1508 +#: frappe/core/doctype/doctype/doctype.py:1509 msgid "Image field must be of type Attach Image" msgstr "图像字段的类型必须为附着图像" @@ -12593,15 +12596,15 @@ msgstr "图片" #. Option for the 'Operation' (Select) field in DocType 'Activity Log' #: frappe/core/doctype/activity_log/activity_log.json -#: frappe/core/doctype/user/user.js:378 +#: frappe/core/doctype/user/user.js:372 msgid "Impersonate" msgstr "用其它用户身份登录" -#: frappe/core/doctype/user/user.js:405 +#: frappe/core/doctype/user/user.js:399 msgid "Impersonate as {0}" msgstr "被模拟的用户" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:259 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:352 msgid "Impersonated by {0}" msgstr "被{0}模拟登录" @@ -12627,7 +12630,7 @@ msgstr "隐式" msgid "Import" msgstr "导入" -#: frappe/public/js/frappe/list/list_view.js:1764 +#: frappe/public/js/frappe/list/list_view.js:1913 msgctxt "Button in list view menu" msgid "Import" msgstr "导入" @@ -12855,15 +12858,16 @@ msgstr "包含应用主题" msgid "Include Web View Link in Email" msgstr "邮件包含网页视图链接" -#: frappe/public/js/frappe/views/reports/query_report.js:1619 +#: frappe/public/js/frappe/form/print_utils.js:59 +#: frappe/public/js/frappe/views/reports/query_report.js:1628 msgid "Include filters" msgstr "包括过滤条件" -#: frappe/public/js/frappe/views/reports/query_report.js:1639 +#: frappe/public/js/frappe/views/reports/query_report.js:1648 msgid "Include hidden columns" msgstr "" -#: frappe/public/js/frappe/views/reports/query_report.js:1611 +#: frappe/public/js/frappe/views/reports/query_report.js:1620 msgid "Include indentation" msgstr "包括缩进" @@ -12910,7 +12914,7 @@ msgstr "邮件收件箱帐号不正确" msgid "Incomplete Virtual Doctype Implementation" msgstr "虚拟文档类型实现不完整" -#: frappe/auth.py:255 +#: frappe/auth.py:258 msgid "Incomplete login details" msgstr "登录详细信息不完整" @@ -12922,7 +12926,7 @@ msgstr "配置错误" msgid "Incorrect URL" msgstr "URL错误" -#: frappe/utils/password.py:101 +#: frappe/utils/password.py:100 msgid "Incorrect User or Password" msgstr "不正确的用户或密码" @@ -12930,11 +12934,11 @@ msgstr "不正确的用户或密码" msgid "Incorrect Verification code" msgstr "验证码不正确" -#: frappe/model/document.py:1551 +#: frappe/model/document.py:1555 msgid "Incorrect value in row {0}:" msgstr "第{0}行值错误:" -#: frappe/model/document.py:1553 +#: frappe/model/document.py:1557 msgid "Incorrect value:" msgstr "错误值:" @@ -12946,7 +12950,7 @@ msgstr "错误值:" #: frappe/custom/doctype/custom_field/custom_field.json frappe/model/meta.py:55 #: frappe/public/js/frappe/model/meta.js:203 #: frappe/public/js/frappe/model/model.js:124 -#: frappe/public/js/frappe/views/reports/report_view.js:1005 +#: frappe/public/js/frappe/views/reports/report_view.js:1010 msgid "Index" msgstr "索引" @@ -13021,7 +13025,7 @@ msgstr "在上面插入" #. Label of the insert_after (Select) field in DocType 'Custom Field' #: frappe/custom/doctype/custom_field/custom_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1874 +#: frappe/public/js/frappe/views/reports/query_report.js:1893 msgid "Insert After" msgstr "在后边插入" @@ -13037,7 +13041,7 @@ msgstr "在自定义字段“{1}”中参照的标题为“{2}”字段“{0}” msgid "Insert Below" msgstr "下面插入" -#: frappe/public/js/frappe/views/reports/report_view.js:390 +#: frappe/public/js/frappe/views/reports/report_view.js:395 msgid "Insert Column Before {0}" msgstr "在{0}之前插入列" @@ -13055,8 +13059,12 @@ msgstr "插入新记录" msgid "Insert Style" msgstr "插入样式" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:665 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:666 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Instagram" +msgstr "" + +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:678 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:679 msgid "Install {0} from Marketplace" msgstr "从应用市场安装{0}" @@ -13073,7 +13081,7 @@ msgid "Installed Applications" msgstr "已安装应用" #: frappe/core/doctype/installed_applications/installed_applications.js:18 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Installed Apps" msgstr "已安装应用" @@ -13090,19 +13098,19 @@ msgstr "电子邮件说明" msgid "Insufficient Permission Level for {0}" msgstr "{0}权限级别不足" -#: frappe/database/query.py:806 frappe/database/query.py:1052 +#: frappe/database/query.py:808 frappe/database/query.py:1054 msgid "Insufficient Permission for {0}" msgstr "{0} 权限不足" -#: frappe/desk/reportview.py:360 +#: frappe/desk/reportview.py:361 msgid "Insufficient Permissions for deleting Report" msgstr "删除报表权限不足" -#: frappe/desk/reportview.py:331 +#: frappe/desk/reportview.py:332 msgid "Insufficient Permissions for editing Report" msgstr "编辑报表权限不足" -#: frappe/core/doctype/doctype/doctype.py:445 +#: frappe/core/doctype/doctype/doctype.py:446 msgid "Insufficient attachment limit" msgstr "附件限制不足" @@ -13206,9 +13214,9 @@ msgid "Invalid" msgstr "无效" #: frappe/public/js/form_builder/utils.js:221 -#: frappe/public/js/frappe/form/grid_row.js:833 -#: frappe/public/js/frappe/form/layout.js:811 -#: frappe/public/js/frappe/views/reports/report_view.js:716 +#: frappe/public/js/frappe/form/grid_row.js:850 +#: frappe/public/js/frappe/form/layout.js:810 +#: frappe/public/js/frappe/views/reports/report_view.js:721 msgid "Invalid \"depends_on\" expression" msgstr "“depends_on”表达式无效" @@ -13216,7 +13224,7 @@ msgstr "“depends_on”表达式无效" msgid "Invalid \"depends_on\" expression set in filter {0}" msgstr "在过滤器{0}中设置了无效的“ depends_on”表达式" -#: frappe/public/js/frappe/form/save.js:159 +#: frappe/public/js/frappe/form/save.js:210 msgid "Invalid \"mandatory_depends_on\" expression" msgstr "“mandatory_depends_on”表达式无效" @@ -13232,7 +13240,7 @@ msgstr "CSV格式无效" msgid "Invalid Code. Please try again." msgstr "验证码无效,请重试" -#: frappe/integrations/doctype/webhook/webhook.py:87 +#: frappe/integrations/doctype/webhook/webhook.py:91 msgid "Invalid Condition: {}" msgstr "无效条件:{}" @@ -13252,16 +13260,20 @@ msgstr "文档类型无效" msgid "Invalid DocType: {0}" msgstr "无效文档类型:{0}" -#: frappe/core/doctype/doctype/doctype.py:1272 +#: frappe/email/doctype/email_group/email_group.py:51 +msgid "Invalid Doctype" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1273 msgid "Invalid Fieldname" msgstr "字段名无效" -#: frappe/core/doctype/file/file.py:209 +#: frappe/core/doctype/file/file.py:221 msgid "Invalid File URL" msgstr "文件URL无效" -#: frappe/database/query.py:427 frappe/database/query.py:454 -#: frappe/database/query.py:464 frappe/database/query.py:487 +#: frappe/database/query.py:429 frappe/database/query.py:456 +#: frappe/database/query.py:466 frappe/database/query.py:489 msgid "Invalid Filter" msgstr "" @@ -13293,7 +13305,7 @@ msgstr "登录无效。再试一次。" msgid "Invalid Mail Server. Please rectify and try again." msgstr "无效的邮件服务器,请纠正后重试。" -#: frappe/model/naming.py:101 +#: frappe/model/naming.py:109 msgid "Invalid Naming Series: {}" msgstr "无效命名规则:{}" @@ -13302,8 +13314,8 @@ msgstr "无效命名规则:{}" msgid "Invalid Operation" msgstr "无效操作" -#: frappe/core/doctype/doctype/doctype.py:1641 -#: frappe/core/doctype/doctype/doctype.py:1650 +#: frappe/core/doctype/doctype/doctype.py:1642 +#: frappe/core/doctype/doctype/doctype.py:1651 msgid "Invalid Option" msgstr "错误选项" @@ -13315,25 +13327,25 @@ msgstr "出站邮件服务器或端口无效:{0}" msgid "Invalid Output Format" msgstr "无效的输出格式" -#: frappe/model/base_document.py:116 +#: frappe/model/base_document.py:134 msgid "Invalid Override" msgstr "无效覆盖" -#: frappe/integrations/doctype/connected_app/connected_app.py:195 +#: frappe/integrations/doctype/connected_app/connected_app.py:202 msgid "Invalid Parameters." msgstr "参数无效" -#: frappe/core/doctype/user/user.py:1232 frappe/www/update-password.html:148 +#: frappe/core/doctype/user/user.py:1241 frappe/www/update-password.html:148 #: frappe/www/update-password.html:169 frappe/www/update-password.html:171 #: frappe/www/update-password.html:272 msgid "Invalid Password" msgstr "无效的密码" -#: frappe/utils/__init__.py:123 +#: frappe/utils/__init__.py:125 msgid "Invalid Phone Number" msgstr "电话号码无效" -#: frappe/auth.py:94 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 +#: frappe/auth.py:97 frappe/utils/oauth.py:184 frappe/utils/oauth.py:191 #: frappe/www/login.py:128 msgid "Invalid Request" msgstr "无效请求" @@ -13342,7 +13354,7 @@ msgstr "无效请求" msgid "Invalid Search Field {0}" msgstr "无效的搜索字段{0}" -#: frappe/core/doctype/doctype/doctype.py:1214 +#: frappe/core/doctype/doctype/doctype.py:1215 msgid "Invalid Table Fieldname" msgstr "表字段名无效" @@ -13350,8 +13362,8 @@ msgstr "表字段名无效" msgid "Invalid Transition" msgstr "无效转换" -#: frappe/core/doctype/file/file.py:220 -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:530 +#: frappe/core/doctype/file/file.py:232 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:550 #: frappe/public/js/frappe/widgets/widget_dialog.js:602 #: frappe/utils/csvutils.py:226 frappe/utils/csvutils.py:247 msgid "Invalid URL" @@ -13365,47 +13377,51 @@ msgstr "无效的用户名或支持密码。请纠正然后重试。" msgid "Invalid Values" msgstr "无效值" -#: frappe/integrations/doctype/webhook/webhook.py:116 +#: frappe/integrations/doctype/webhook/webhook.py:120 msgid "Invalid Webhook Secret" msgstr "Webhook密钥无效" -#: frappe/desk/reportview.py:186 +#: frappe/desk/reportview.py:187 msgid "Invalid aggregate function" msgstr "无效聚合函数" -#: frappe/database/query.py:1542 +#: frappe/database/query.py:1544 msgid "Invalid alias format: {0}. Alias must be a simple identifier." msgstr "" -#: frappe/database/query.py:1468 +#: frappe/core/doctype/user_invitation/user_invitation.py:195 +msgid "Invalid app" +msgstr "" + +#: frappe/database/query.py:1470 msgid "Invalid argument format: {0}. Only quoted string literals or simple field names are allowed." msgstr "" -#: frappe/database/query.py:1444 +#: frappe/database/query.py:1446 msgid "Invalid argument type: {0}. Only strings, numbers, and None are allowed." msgstr "" -#: frappe/database/query.py:460 +#: frappe/database/query.py:462 msgid "Invalid characters in fieldname: {0}. Only letters, numbers, and underscores are allowed." msgstr "" -#: frappe/database/query.py:575 +#: frappe/database/query.py:577 msgid "Invalid characters in table name: {0}" msgstr "" -#: frappe/public/js/frappe/views/reports/report_view.js:399 +#: frappe/public/js/frappe/views/reports/report_view.js:404 msgid "Invalid column" msgstr "无效列" -#: frappe/database/query.py:381 +#: frappe/database/query.py:383 msgid "Invalid condition type in nested filters: {0}" msgstr "" -#: frappe/database/query.py:787 +#: frappe/database/query.py:789 msgid "Invalid direction in Order By: {0}. Must be 'ASC' or 'DESC'." msgstr "" -#: frappe/model/document.py:1016 frappe/model/document.py:1030 +#: frappe/model/document.py:1020 frappe/model/document.py:1034 msgid "Invalid docstatus" msgstr "文档状态无效" @@ -13417,31 +13433,27 @@ msgstr "过滤器{0}中的表达式无效" msgid "Invalid expression set in filter {0} ({1})" msgstr "过滤器{0}({1})中的表达式无效" -#: frappe/database/query.py:1301 +#: frappe/database/query.py:1303 msgid "Invalid field format for SELECT: {0}. Field names must be simple, backticked, table-qualified, aliased, or '*'." msgstr "" -#: frappe/database/query.py:734 +#: frappe/database/query.py:736 msgid "Invalid field format in {0}: {1}. Use 'field', 'link_field.field', or 'child_table.field'." msgstr "" -#: frappe/database/query.py:1620 +#: frappe/database/query.py:1622 msgid "Invalid field name in function: {0}. Only simple field names are allowed." msgstr "" -#: frappe/utils/data.py:2197 +#: frappe/utils/data.py:2241 msgid "Invalid field name {0}" msgstr "字段名称{0}无效" -#: frappe/model/db_query.py:1133 -msgid "Invalid field name: {0}" -msgstr "" - -#: frappe/database/query.py:668 +#: frappe/database/query.py:670 msgid "Invalid field type: {0}" msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1085 +#: frappe/core/doctype/doctype/doctype.py:1086 msgid "Invalid fieldname '{0}' in autoname" msgstr "编号规则中字段名“{0}”无效" @@ -13449,11 +13461,11 @@ msgstr "编号规则中字段名“{0}”无效" msgid "Invalid file path: {0}" msgstr "无效的文件路径:{0}" -#: frappe/database/query.py:364 +#: frappe/database/query.py:366 msgid "Invalid filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:450 +#: frappe/database/query.py:452 msgid "Invalid filter field format: {0}. Use 'fieldname' or 'link_fieldname.target_fieldname'." msgstr "" @@ -13461,20 +13473,28 @@ msgstr "" msgid "Invalid filter: {0}" msgstr "无效过滤器:{0}" -#: frappe/database/query.py:1422 +#: frappe/database/query.py:1424 msgid "Invalid function argument type: {0}. Only strings, numbers, lists, and None are allowed." msgstr "" -#: frappe/database/query.py:1383 +#: frappe/database/query.py:1385 msgid "Invalid function dictionary format" msgstr "" +#: frappe/core/api/user_invitation.py:17 +msgid "Invalid input" +msgstr "" + #: frappe/desk/doctype/dashboard/dashboard.py:67 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.py:424 msgid "Invalid json added in the custom options: {0}" msgstr "自定义选项中包含无效JSON:{0}" -#: frappe/model/naming.py:490 +#: frappe/core/api/user_invitation.py:115 +msgid "Invalid key" +msgstr "" + +#: frappe/model/naming.py:498 msgid "Invalid name type (integer) for varchar name column" msgstr "varchar名称列使用了整型名称类型" @@ -13482,6 +13502,10 @@ msgstr "varchar名称列使用了整型名称类型" msgid "Invalid naming series {}: dot (.) missing" msgstr "命名规则{}错误:缺少点号(.)" +#: frappe/model/naming.py:76 +msgid "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." +msgstr "" + #: frappe/core/doctype/data_import/importer.py:453 msgid "Invalid or corrupted content for import" msgstr "导入内容无效或损坏" @@ -13490,19 +13514,27 @@ msgstr "导入内容无效或损坏" msgid "Invalid redirect regex in row #{}: {}" msgstr "第{}行重定向正则表达式无效:{}" -#: frappe/app.py:337 +#: frappe/app.py:340 msgid "Invalid request arguments" msgstr "请求参数无效" -#: frappe/database/query.py:410 +#: frappe/app.py:327 +msgid "Invalid request body" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:181 +msgid "Invalid role" +msgstr "" + +#: frappe/database/query.py:412 msgid "Invalid simple filter format: {0}" msgstr "" -#: frappe/database/query.py:341 +#: frappe/database/query.py:343 msgid "Invalid start for filter condition: {0}. Expected a list or tuple." msgstr "" -#: frappe/database/query.py:1489 +#: frappe/database/query.py:1491 msgid "Invalid string literal format: {0}" msgstr "" @@ -13510,7 +13542,7 @@ msgstr "" msgid "Invalid template file for import" msgstr "导入模板文件无效" -#: frappe/integrations/doctype/connected_app/connected_app.py:201 +#: frappe/integrations/doctype/connected_app/connected_app.py:208 msgid "Invalid token state! Check if the token has been created by the OAuth user." msgstr "令牌状态无效!请检查是否由OAuth用户创建" @@ -13519,20 +13551,20 @@ msgstr "令牌状态无效!请检查是否由OAuth用户创建" msgid "Invalid username or password" msgstr "用户名或密码错误" -#: frappe/model/naming.py:168 +#: frappe/model/naming.py:176 msgid "Invalid value specified for UUID: {}" msgstr "指定的UUID值无效:{}" -#: frappe/public/js/frappe/web_form/web_form.js:229 +#: frappe/public/js/frappe/web_form/web_form.js:253 msgctxt "Error message in web form" msgid "Invalid values for fields:" msgstr "字段包含无效值:" -#: frappe/printing/page/print/print.js:614 +#: frappe/printing/page/print/print.js:654 msgid "Invalid wkhtmltopdf version" msgstr "wkhtmltopdf版本无效" -#: frappe/core/doctype/doctype/doctype.py:1564 +#: frappe/core/doctype/doctype/doctype.py:1565 msgid "Invalid {0} condition" msgstr "{0}条件无效" @@ -13541,10 +13573,47 @@ msgstr "{0}条件无效" msgid "Inverse" msgstr "反转" +#: frappe/core/doctype/user_invitation/user_invitation.py:95 +msgid "Invitation already accepted" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:99 +msgid "Invitation already exists" +msgstr "" + +#: frappe/core/api/user_invitation.py:84 +msgid "Invitation cannot be cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:127 +msgid "Invitation is cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:125 +msgid "Invitation is expired" +msgstr "" + +#: frappe/core/api/user_invitation.py:73 frappe/core/api/user_invitation.py:78 +msgid "Invitation not found" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:59 +msgid "Invitation to join {0} cancelled" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:76 +msgid "Invitation to join {0} expired" +msgstr "" + #: frappe/contacts/doctype/contact/contact.js:30 msgid "Invite as User" msgstr "邀请成为用户" +#. Label of the invited_by (Link) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Invited By" +msgstr "邀请人" + #: frappe/public/js/frappe/ui/filters/filter.js:22 msgid "Is" msgstr "是" @@ -13569,7 +13638,7 @@ msgstr "有日历与甘特图视图" #. Label of the istable (Check) field in DocType 'DocType' #. Label of the is_child_table (Check) field in DocType 'DocType Link' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:49 +#: frappe/core/doctype/doctype/doctype_list.js:50 #: frappe/core/doctype/doctype_link/doctype_link.json msgid "Is Child Table" msgstr "是子表" @@ -13622,6 +13691,10 @@ msgstr "是文件夹" msgid "Is Global" msgstr "全局有效?" +#: frappe/public/js/frappe/views/treeview.js:418 +msgid "Is Group" +msgstr "是组" + #. Label of the is_hidden (Check) field in DocType 'Workspace' #: frappe/desk/doctype/workspace/workspace.json msgid "Is Hidden" @@ -13648,8 +13721,13 @@ msgstr "是可选状态" msgid "Is Primary" msgstr "首选" +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:43 +msgid "Is Primary Address" +msgstr "" + #. Label of the is_primary_contact (Check) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:49 msgid "Is Primary Contact" msgstr "首选" @@ -13680,7 +13758,7 @@ msgstr "公开" msgid "Is Published Field" msgstr "是否发布字段" -#: frappe/core/doctype/doctype/doctype.py:1515 +#: frappe/core/doctype/doctype/doctype.py:1516 msgid "Is Published Field must be a valid fieldname" msgstr "已发布字段必须是有效字段" @@ -13705,7 +13783,7 @@ msgstr "" #. Label of the issingle (Check) field in DocType 'DocType' #. Label of the is_single (Check) field in DocType 'Onboarding Step' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:64 +#: frappe/core/doctype/doctype/doctype_list.js:65 #: frappe/desk/doctype/onboarding_step/onboarding_step.json msgid "Is Single" msgstr "是单笔记录?" @@ -13741,7 +13819,7 @@ msgstr "系统自带" #. Label of the is_submittable (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:39 +#: frappe/core/doctype/doctype/doctype_list.js:40 msgid "Is Submittable" msgstr "可提交(审批)" @@ -13947,11 +14025,11 @@ msgstr "看板列" #. Label of the kanban_board_name (Data) field in DocType 'Kanban Board' #: frappe/desk/doctype/kanban_board/kanban_board.json -#: frappe/public/js/frappe/views/kanban/kanban_view.js:388 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:402 msgid "Kanban Board Name" msgstr "看板名称" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:265 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:279 msgctxt "Button in kanban view menu" msgid "Kanban Settings" msgstr "看板设置" @@ -13972,12 +14050,14 @@ msgstr "跟踪所有通信" #. Label of the defkey (Data) field in DocType 'DefaultValue' #. Label of the key (Data) field in DocType 'Document Share Key' +#. Label of the key (Data) field in DocType 'User Invitation' #. Label of the key (Data) field in DocType 'Query Parameters' #. Label of the key (Data) field in DocType 'Webhook Data' #. Label of the key (Small Text) field in DocType 'Webhook Header' #. Label of the key (Data) field in DocType 'Website Meta Tag' #: frappe/core/doctype/defaultvalue/defaultvalue.json #: frappe/core/doctype/document_share_key/document_share_key.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_data/webhook_data.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -14239,7 +14319,7 @@ msgstr "标签信息必填" msgid "Landing Page" msgstr "登录页面" -#: frappe/public/js/frappe/form/print_utils.js:17 +#: frappe/public/js/frappe/form/print_utils.js:23 msgid "Landscape" msgstr "横向打印" @@ -14247,10 +14327,13 @@ msgstr "横向打印" #. Label of the language (Link) field in DocType 'System Settings' #. Label of the language (Link) field in DocType 'Translation' #. Label of the language (Link) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/core/doctype/language/language.json #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/translation/translation.json -#: frappe/core/doctype/user/user.json frappe/printing/page/print/print.js:104 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/printing/page/print/print.js:117 #: frappe/public/js/frappe/form/templates/print_layout.html:11 msgid "Language" msgstr "语言" @@ -14338,8 +14421,12 @@ msgstr "上个月" #. Label of the last_name (Data) field in DocType 'Contact' #. Label of the last_name (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json -#: frappe/core/doctype/user/user.json frappe/www/complete_signup.html:19 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:45 +#: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json +#: frappe/www/complete_signup.html:19 msgid "Last Name" msgstr "姓" @@ -14354,6 +14441,11 @@ msgstr "上次密码重置日期" msgid "Last Quarter" msgstr "上季度" +#. Label of the last_received_at (Datetime) field in DocType 'Email Account' +#: frappe/email/doctype/email_account/email_account.json +msgid "Last Received At" +msgstr "" + #. Label of the last_reset_password_key_generated_on (Datetime) field in #. DocType 'User' #: frappe/core/doctype/user/user.json @@ -14370,11 +14462,6 @@ msgstr "最后运行" msgid "Last Sync On" msgstr "上次同步开启" -#. Label of the last_synced_at (Datetime) field in DocType 'Email Account' -#: frappe/email/doctype/email_account/email_account.json -msgid "Last Synced At" -msgstr "最后同步于" - #. Label of the last_synced_on (Datetime) field in DocType 'Dashboard Chart' #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json msgid "Last Synced On" @@ -14485,7 +14572,7 @@ msgstr "长度" msgid "Length of passed data array is greater than value of maximum allowed label points!" msgstr "传入数据数组长度超过最大允许标签点数!" -#: frappe/database/schema.py:134 +#: frappe/database/schema.py:138 msgid "Length of {0} should be between 1 and 1000" msgstr "的{0}长度应介于1和1000之间" @@ -14534,8 +14621,8 @@ 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:127 -#: frappe/public/js/frappe/form/print_utils.js:43 +#: frappe/printing/page/print/print.js:140 +#: 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 #: frappe/public/js/print_format_builder/LetterHeadEditor.vue:144 @@ -14563,7 +14650,7 @@ msgstr "表头名称" msgid "Letter Head Scripts" msgstr "信头脚本" -#: frappe/printing/doctype/letter_head/letter_head.py:48 +#: frappe/printing/doctype/letter_head/letter_head.py:49 msgid "Letter Head cannot be both disabled and default" msgstr "信头不能同时禁用并设为默认" @@ -14580,7 +14667,7 @@ msgstr "打印表头HTML" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/page/permission_manager/permission_manager.js:144 #: frappe/core/page/permission_manager/permission_manager.js:220 -#: frappe/public/js/frappe/roles_editor.js:66 +#: frappe/public/js/frappe/roles_editor.js:68 #: frappe/website/doctype/help_article/help_article.json msgid "Level" msgstr "级别" @@ -14630,20 +14717,6 @@ msgstr "浅色主题" msgid "Like" msgstr "含关键字" -#. Label of the like_limit (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit" -msgstr "点赞限制" - -#. Description of the 'Like limit' (Int) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Like limit per hour" -msgstr "每小时点赞限制" - -#: frappe/templates/includes/likes/likes.py:30 -msgid "Like on {0}: {1}" -msgstr "在{0}点赞:{1}" - #: frappe/desk/like.py:92 msgid "Liked" msgstr "喜欢" @@ -14684,6 +14757,7 @@ msgstr "线图" #. Option for the 'Type' (Select) field in DocType 'Workspace Link' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Template Field' +#. Label of the link (Dynamic Link) field in DocType 'Workflow Transition Task' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json #: frappe/core/doctype/report_filter/report_filter.json @@ -14697,6 +14771,7 @@ msgstr "线图" #: frappe/public/js/frappe/file_uploader/FileUploader.vue:128 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Link" msgstr "链接" @@ -14827,10 +14902,15 @@ msgstr "链接" msgid "Linked With" msgstr "关联" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "LinkedIn" +msgstr "领英" + #. Label of the links (Table) field in DocType 'Address' #. Label of the links (Table) field in DocType 'Contact' #. Label of the links_section (Tab Break) field in DocType 'DocType' #. Label of the links (Table) field in DocType 'Customize Form' +#. Label of the links (Table) field in DocType 'Event' #. Label of the links (Table) field in DocType 'Workspace' #: frappe/contacts/doctype/address/address.js:39 #: frappe/contacts/doctype/address/address.json @@ -14838,6 +14918,7 @@ msgstr "关联" #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/doctype/doctype.json #: frappe/custom/doctype/customize_form/customize_form.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/workspace/workspace.json msgid "Links" msgstr "链接" @@ -14879,7 +14960,7 @@ msgstr "列表过滤条件" msgid "List Settings" msgstr "列表设置" -#: frappe/public/js/frappe/list/list_view.js:1844 +#: frappe/public/js/frappe/list/list_view.js:1993 msgctxt "Button in list view menu" msgid "List Settings" msgstr "列表设置" @@ -14920,7 +15001,7 @@ msgstr "已应用补丁列表" msgid "List setting message" msgstr "列表设置消息" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:542 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:551 msgid "Lists" msgstr "列表" @@ -14929,9 +15010,8 @@ msgstr "列表" msgid "Load Balancing" msgstr "均衡分派" -#: frappe/public/js/frappe/list/base_list.js:388 -#: frappe/public/js/frappe/web_form/web_form_list.js:305 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:50 +#: frappe/public/js/frappe/list/base_list.js:399 +#: frappe/public/js/frappe/web_form/web_form_list.js:306 #: frappe/website/doctype/help_article/templates/help_article_list.html:30 msgid "Load More" msgstr "加载更多" @@ -14948,10 +15028,10 @@ msgstr "加载更多" #: frappe/core/page/permission_manager/permission_manager.js:172 #: frappe/public/js/frappe/form/controls/multicheck.js:13 #: frappe/public/js/frappe/form/linked_with.js:13 -#: frappe/public/js/frappe/list/base_list.js:511 -#: frappe/public/js/frappe/list/list_view.js:360 +#: frappe/public/js/frappe/list/base_list.js:526 +#: frappe/public/js/frappe/list/list_view.js:363 #: frappe/public/js/frappe/ui/listing.html:16 -#: frappe/public/js/frappe/views/reports/query_report.js:1088 +#: frappe/public/js/frappe/views/reports/query_report.js:1097 msgid "Loading" msgstr "载入中" @@ -14963,7 +15043,7 @@ msgstr "正在加载筛选器..." msgid "Loading import file..." msgstr "加载上传文件..." -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Loading versions..." msgstr "正在加载版本..." @@ -14973,7 +15053,7 @@ msgstr "正在加载版本..." #: frappe/public/js/frappe/list/list_sidebar_group_by.js:125 #: frappe/public/js/frappe/views/kanban/kanban_board.html:11 #: frappe/public/js/frappe/widgets/chart_widget.js:50 -#: frappe/public/js/frappe/widgets/number_card_widget.js:176 +#: frappe/public/js/frappe/widgets/number_card_widget.js:188 #: frappe/public/js/frappe/widgets/quick_list_widget.js:129 msgid "Loading..." msgstr "载入中..." @@ -15034,7 +15114,7 @@ msgstr "请登录后访问该网页" msgid "Log out" msgstr "退出系统" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "Logged Out" msgstr "登出" @@ -15094,7 +15174,7 @@ msgstr "登录验证码从{}" msgid "Login and view in Browser" msgstr "在浏览器中登录和查看" -#: frappe/website/doctype/web_form/web_form.js:367 +#: frappe/website/doctype/web_form/web_form.js:368 msgid "Login is required to see web form list view. Enable {0} to see list settings" msgstr "需要登录才能查看Web表单列表视图。启用{0}以查看列表设置" @@ -15102,7 +15182,7 @@ msgstr "需要登录才能查看Web表单列表视图。启用{0}以查看列表 msgid "Login link sent to your email" msgstr "登录链接已发送至您的邮箱" -#: frappe/auth.py:339 frappe/auth.py:342 +#: frappe/auth.py:342 frappe/auth.py:345 msgid "Login not allowed at this time" msgstr "不允许在这个时候登录" @@ -15155,7 +15235,7 @@ msgstr "启用邮件中链接登录" msgid "Login with email link expiry (in minutes)" msgstr "邮箱链接登录过期时间(分钟)" -#: frappe/auth.py:144 +#: frappe/auth.py:147 msgid "Login with username and password is not allowed." msgstr "不允许通过用户名密码登录。" @@ -15174,7 +15254,7 @@ msgstr "" msgid "Logout" msgstr "注销" -#: frappe/core/doctype/user/user.js:197 +#: frappe/core/doctype/user/user.js:190 msgid "Logout All Sessions" msgstr "退出所有会话" @@ -15278,7 +15358,10 @@ msgid "Major" 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 +#. Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Make \"name\" searchable in Global Search" msgstr "让“名称”字段在全局搜索框中可搜索" @@ -15354,7 +15437,7 @@ msgstr "是否必填先决条件" msgid "Mandatory Depends On (JS)" msgstr "必填先决条件(JS)" -#: frappe/website/doctype/web_form/web_form.py:498 +#: frappe/website/doctype/web_form/web_form.py:536 msgid "Mandatory Information missing:" msgstr "必填字段信息缺失:" @@ -15366,15 +15449,15 @@ msgstr "必须填写:用于设置角色" msgid "Mandatory field: {0}" msgstr "必填字段:{0}" -#: frappe/public/js/frappe/form/save.js:120 +#: frappe/public/js/frappe/form/save.js:172 msgid "Mandatory fields required in table {0}, Row {1}" msgstr "表{0}第{1}行有必填字段," -#: frappe/public/js/frappe/form/save.js:125 +#: frappe/public/js/frappe/form/save.js:177 msgid "Mandatory fields required in {0}" msgstr "{0}中有必填字段" -#: frappe/public/js/frappe/web_form/web_form.js:234 +#: frappe/public/js/frappe/web_form/web_form.js:258 msgctxt "Error message in web form" msgid "Mandatory fields required:" msgstr "需要以下必填字段:" @@ -15455,10 +15538,8 @@ msgid "Mark as Unread" msgstr "标记为未读" #. Option for the 'Message Type' (Select) field in DocType 'Notification' -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' #: frappe/email/doctype/notification/notification.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Markdown" @@ -15539,7 +15620,13 @@ msgstr "最大附件尺寸" msgid "Max auto email report per user" msgstr "每用户最自动邮件发送报表数" -#: frappe/core/doctype/doctype/doctype.py:1342 +#. Label of the max_signups_allowed_per_hour (Int) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Max signups allowed per hour" +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1343 msgid "Max width for type Currency is 100px in row {0}" msgstr "行{0}中,货币类型的最大宽度是100像素" @@ -15548,20 +15635,15 @@ msgstr "行{0}中,货币类型的最大宽度是100像素" msgid "Maximum" msgstr "最大值" -#: frappe/core/doctype/file/file.py:320 +#: frappe/core/doctype/file/file.py:332 msgid "Maximum Attachment Limit of {0} has been reached for {1} {2}." msgstr "{1} {2} 已达到{0}的最大附件限制" -#. Label of the total_fields (Select) field in DocType 'List View Settings' -#: frappe/desk/doctype/list_view_settings/list_view_settings.json -msgid "Maximum Number of Fields" -msgstr "最大字段数" - #: frappe/public/js/frappe/form/sidebar/attachments.js:38 msgid "Maximum attachment limit of {0} has been reached." msgstr "已达到{0}的最大附件限制" -#: frappe/model/rename_doc.py:690 +#: frappe/model/rename_doc.py:689 msgid "Maximum {0} rows allowed" msgstr "仅允许最多{0}行" @@ -15577,7 +15659,7 @@ msgstr "已提交,取消,修订的含义" #. Label of the medium (Data) field in DocType 'Web Page View' #: frappe/desk/doctype/todo/todo.json #: frappe/public/js/frappe/form/sidebar/assign_to.js:221 -#: frappe/public/js/frappe/utils/utils.js:1737 +#: frappe/public/js/frappe/utils/utils.js:1774 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/report/website_analytics/website_analytics.js:40 msgid "Medium" @@ -15590,7 +15672,7 @@ msgstr "中" msgid "Meeting" msgstr "会议" -#: frappe/email/doctype/notification/notification.js:196 +#: frappe/email/doctype/notification/notification.js:200 #: frappe/integrations/doctype/webhook/webhook.js:96 msgid "Meets Condition?" msgstr "满足条件?" @@ -15631,7 +15713,7 @@ msgstr "菜单" msgid "Merge with existing" msgstr "与现有合并" -#: frappe/utils/nestedset.py:307 +#: frappe/utils/nestedset.py:320 msgid "Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node" msgstr "只有组和组,叶节点和叶节点之间能合并" @@ -15657,7 +15739,7 @@ msgstr "只有组和组,叶节点和叶节点之间能合并" #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/email/doctype/email_queue/email_queue.json -#: frappe/email/doctype/notification/notification.js:201 +#: frappe/email/doctype/notification/notification.js:205 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/ui/messages.js:182 #: frappe/public/js/frappe/views/communication.js:126 @@ -15697,7 +15779,7 @@ msgstr "消息已发送" msgid "Message Type" msgstr "消息类型" -#: frappe/public/js/frappe/views/communication.js:953 +#: frappe/public/js/frappe/views/communication.js:956 msgid "Message clipped" msgstr "邮件被剪辑" @@ -15729,29 +15811,21 @@ msgstr "消息" msgid "Meta" msgstr "元数据" -#. Label of the meta_description (Small Text) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:124 msgid "Meta Description" msgstr "元数据描述" -#. Label of the meta_image (Attach Image) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:131 msgid "Meta Image" msgstr "元数据图片" -#. Label of the meta_tags (Section Break) field in DocType 'Blog Post' #. Label of the metatags_section (Section Break) field in DocType 'Web Page' #. Label of the meta_tags (Table) field in DocType 'Website Route Meta' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.json #: frappe/website/doctype/website_route_meta/website_route_meta.json msgid "Meta Tags" msgstr "元标记" -#. Label of the meta_title (Data) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:117 msgid "Meta Title" msgstr "元标题" @@ -15804,7 +15878,7 @@ msgstr "方法" msgid "Method Not Allowed" msgstr "方法不可调用" -#: frappe/desk/doctype/number_card/number_card.py:73 +#: frappe/desk/doctype/number_card/number_card.py:74 msgid "Method is required to create a number card" msgstr "创建数字卡片需指定方法" @@ -15820,6 +15894,11 @@ msgstr "正中" msgid "Middle Name" msgstr "中间名" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Middle Name (Optional)" +msgstr "" + #. Name of a DocType #. Label of a Link in the Tools Workspace #: frappe/automation/doctype/milestone/milestone.json @@ -15886,11 +15965,11 @@ msgstr "小姐" msgid "Missing DocType" msgstr "缺失文档类型" -#: frappe/core/doctype/doctype/doctype.py:1526 +#: frappe/core/doctype/doctype/doctype.py:1527 msgid "Missing Field" msgstr "缺失字段" -#: frappe/public/js/frappe/form/save.js:131 +#: frappe/public/js/frappe/form/save.js:183 msgid "Missing Fields" msgstr "必填字段信息缺失" @@ -15926,15 +16005,16 @@ msgstr "手机号" msgid "Mobile No" msgstr "手机号码" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Mobile Number" +msgstr "手机号" + #. Label of the modal_trigger (Check) field in DocType 'Form Tour Step' #: frappe/desk/doctype/form_tour_step/form_tour_step.json msgid "Modal Trigger" msgstr "模态框触发器" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:106 -msgid "Modified By" -msgstr "修改者" - #. Label of the module (Data) field in DocType 'Block Module' #. Label of the module (Link) field in DocType 'DocType' #. Label of the module (Link) field in DocType 'Page' @@ -15955,7 +16035,7 @@ msgstr "修改者" #. Label of the module (Link) field in DocType 'Website Theme' #: frappe/core/doctype/block_module/block_module.json #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:30 +#: frappe/core/doctype/doctype/doctype_list.js:31 #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/user_type_module/user_type_module.json #: frappe/desk/doctype/dashboard/dashboard.json @@ -16131,10 +16211,12 @@ msgstr "更多信息" #. Label of the additional_info (Section Break) field in DocType #. 'Communication' #. Label of the short_bio (Tab Break) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #: frappe/contacts/doctype/contact/contact.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json msgid "More Information" msgstr "更多信息" @@ -16153,7 +16235,7 @@ msgstr "页面底部的更多内容。" msgid "Most Used" msgstr "最常用" -#: frappe/utils/password.py:76 +#: frappe/utils/password.py:75 msgid "Most probably your password is too long." msgstr "很可能是密码过长导致" @@ -16164,7 +16246,7 @@ msgstr "很可能是密码过长导致" msgid "Move" msgstr "移动" -#: frappe/public/js/frappe/form/grid_row.js:193 +#: frappe/public/js/frappe/form/grid_row.js:194 msgid "Move To" msgstr "移到" @@ -16200,7 +16282,7 @@ msgstr "移动段到新页签" msgid "Move the current field and the following fields to a new column" msgstr "移动当前及以下字段到新栏" -#: frappe/public/js/frappe/form/grid_row.js:168 +#: frappe/public/js/frappe/form/grid_row.js:169 msgid "Move to Row Number" msgstr "移至行号" @@ -16227,7 +16309,7 @@ msgstr "太太" msgid "Ms" msgstr "女士" -#: frappe/utils/nestedset.py:331 +#: frappe/utils/nestedset.py:344 msgid "Multiple root nodes not allowed." msgstr "不允许多个根节点。" @@ -16250,7 +16332,7 @@ msgstr "必须用'()'括起来并包含'{0}'作为用户/登录名的占位符 msgid "Must be of type \"Attach Image\"" msgstr "类型必须为“添加图片”" -#: frappe/desk/query_report.py:209 +#: frappe/desk/query_report.py:210 msgid "Must have report permission to access this report." msgstr "必须有报表权限才能访问此报表。" @@ -16268,7 +16350,7 @@ msgid "Mx" msgstr "MX" #: frappe/templates/includes/web_sidebar.html:41 -#: frappe/website/doctype/web_form/web_form.py:487 +#: frappe/website/doctype/web_form/web_form.py:525 #: frappe/website/doctype/website_settings/website_settings.py:181 #: frappe/www/list.py:21 frappe/www/me.html:8 frappe/www/update_password.py:10 msgid "My Account" @@ -16306,9 +16388,9 @@ msgstr "注意:该功能即将停用,请使用新版设置重新配置LDAP" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/doctype/workspace/workspace.json #: frappe/integrations/doctype/slack_webhook_url/slack_webhook_url.json -#: frappe/public/js/frappe/form/layout.js:77 +#: frappe/public/js/frappe/form/layout.js:76 #: frappe/public/js/frappe/form/multi_select_dialog.js:240 -#: frappe/public/js/frappe/form/save.js:107 +#: frappe/public/js/frappe/form/save.js:159 #: frappe/public/js/frappe/views/file/file_view.js:97 #: frappe/website/doctype/website_slideshow/website_slideshow.js:25 msgid "Name" @@ -16318,11 +16400,11 @@ msgstr "名称" msgid "Name (Doc Name)" msgstr "名称(文档名)" -#: frappe/desk/utils.py:22 +#: frappe/desk/utils.py:24 msgid "Name already taken, please set a new name" msgstr "名称已被占用,请设置新名称" -#: frappe/model/naming.py:504 +#: frappe/model/naming.py:512 msgid "Name cannot contain special characters like {0}" msgstr "名称不能包含特殊字符,如{0}" @@ -16334,7 +16416,7 @@ msgstr "此字段链接到的单据类型,例如客户" msgid "Name of the new Print Format" msgstr "新打印格式的名称" -#: frappe/model/naming.py:499 +#: frappe/model/naming.py:507 msgid "Name of {0} cannot be {1}" msgstr "{0}的名称不能为{1}" @@ -16375,7 +16457,7 @@ msgstr "编号规则" msgid "Naming Series" msgstr "单据编号模板" -#: frappe/model/naming.py:260 +#: frappe/model/naming.py:268 msgid "Naming Series mandatory" msgstr "单据编号模板是必填字段" @@ -16412,12 +16494,12 @@ msgstr "导航栏模板" msgid "Navbar Template Values" msgstr "导航栏模板值" -#: frappe/public/js/frappe/list/list_view.js:1235 +#: frappe/public/js/frappe/list/list_view.js:1380 msgctxt "Description of a list view shortcut" msgid "Navigate list down" msgstr "向下导航列表" -#: frappe/public/js/frappe/list/list_view.js:1242 +#: frappe/public/js/frappe/list/list_view.js:1387 msgctxt "Description of a list view shortcut" msgid "Navigate list up" msgstr "向上导航列表" @@ -16432,7 +16514,11 @@ msgstr "跳转到主要内容" msgid "Navigation Settings" msgstr "导航设置" -#: frappe/desk/doctype/workspace/workspace.py:319 +#: frappe/public/js/frappe/list/list_view.js:485 +msgid "Need Help?" +msgstr "" + +#: frappe/desk/doctype/workspace/workspace.py:322 msgid "Need Workspace Manager role to edit private workspace of other users" msgstr "需具备工作区管理员角色才能编辑其他用户的私有工作区" @@ -16440,7 +16526,7 @@ msgstr "需具备工作区管理员角色才能编辑其他用户的私有工作 msgid "Negative Value" msgstr "负值" -#: frappe/database/query.py:333 +#: frappe/database/query.py:335 msgid "Nested filters must be provided as a list or tuple." msgstr "" @@ -16453,6 +16539,12 @@ msgstr "嵌套错误。请联系管理员。" msgid "Network Printer Settings" msgstr "网络打印机设置" +#. Option for the 'Show External Link Warning' (Select) field in DocType +#. 'System Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Never" +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 @@ -16461,7 +16553,7 @@ msgstr "网络打印机设置" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/success_action.js:77 -#: frappe/public/js/frappe/views/treeview.js:471 +#: frappe/public/js/frappe/views/treeview.js:473 #: frappe/public/js/frappe/views/workspace/workspace.js:64 #: frappe/website/doctype/web_form/templates/web_list.html:15 #: frappe/www/list.html:19 @@ -16482,10 +16574,6 @@ msgstr "新地址" msgid "New Chart" msgstr "统计图表" -#: frappe/templates/includes/comments/comments.py:62 -msgid "New Comment on {0}: {1}" -msgstr "对{0}的新评论:{1}" - #: frappe/public/js/frappe/form/templates/contact_list.html:3 msgid "New Contact" msgstr "新联系人" @@ -16494,8 +16582,8 @@ msgstr "新联系人" msgid "New Custom Block" msgstr "新建自定义块" -#: frappe/printing/page/print/print.js:295 -#: frappe/printing/page/print/print.js:342 +#: frappe/printing/page/print/print.js:308 +#: frappe/printing/page/print/print.js:355 msgid "New Custom Print Format" msgstr "新自定义打印格式" @@ -16526,7 +16614,7 @@ msgstr "新事件" msgid "New Folder" msgstr "新建文件夹" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "New Kanban Board" msgstr "新看板" @@ -16561,12 +16649,12 @@ msgstr "数字卡" msgid "New Onboarding" msgstr "新建入门指引" -#: frappe/core/doctype/user/user.js:185 frappe/www/update-password.html:43 +#: frappe/core/doctype/user/user.js:178 frappe/www/update-password.html:43 msgid "New Password" msgstr "新密码" -#: frappe/printing/page/print/print.js:267 -#: frappe/printing/page/print/print.js:321 +#: frappe/printing/page/print/print.js:280 +#: frappe/printing/page/print/print.js:334 #: frappe/printing/page/print_format_builder_beta/print_format_builder_beta.js:61 msgid "New Print Format Name" msgstr "新的打印格式名称" @@ -16575,7 +16663,7 @@ msgstr "新的打印格式名称" msgid "New Quick List" msgstr "新建快速列表" -#: frappe/public/js/frappe/views/reports/report_view.js:1384 +#: frappe/public/js/frappe/views/reports/report_view.js:1386 msgid "New Report name" msgstr "新的报表名称" @@ -16593,8 +16681,8 @@ msgstr "新建 快速访问" msgid "New Users (Last 30 days)" msgstr "新用户(最近30天)" -#: frappe/core/doctype/version/version_view.html:14 -#: frappe/core/doctype/version/version_view.html:76 +#: frappe/core/doctype/version/version_view.html:15 +#: frappe/core/doctype/version/version_view.html:77 msgid "New Value" msgstr "新值" @@ -16651,13 +16739,13 @@ msgstr "要设置的新值" #: frappe/public/js/frappe/form/toolbar.js:221 #: frappe/public/js/frappe/form/toolbar.js:561 #: frappe/public/js/frappe/model/model.js:612 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:167 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:168 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:217 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:218 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:176 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:177 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:226 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:227 #: frappe/public/js/frappe/views/treeview.js:366 #: frappe/public/js/frappe/widgets/widget_dialog.js:72 -#: frappe/website/doctype/web_form/web_form.py:404 +#: frappe/website/doctype/web_form/web_form.py:438 msgid "New {0}" msgstr "新建 {0}" @@ -16673,7 +16761,7 @@ msgstr "新{0}{1}已添加到仪表盘{2}" msgid "New {0} {1} created" msgstr "已创建新{0}{1}" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:385 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:416 msgid "New {0}: {1}" msgstr "新{0}:{1}" @@ -16681,7 +16769,7 @@ msgstr "新{0}:{1}" msgid "New {} releases for the following apps are available" msgstr "以下应用程序有新版本{}了" -#: frappe/core/doctype/user/user.py:808 +#: frappe/core/doctype/user/user.py:815 msgid "Newly created user {0} has no roles enabled." msgstr "新创建的用户 {0} 未启用任何角色" @@ -16694,7 +16782,7 @@ msgstr "简讯经理" #: frappe/public/js/frappe/form/form_tour.js:14 #: frappe/public/js/frappe/form/form_tour.js:324 -#: frappe/public/js/frappe/web_form/web_form.js:91 +#: frappe/public/js/frappe/web_form/web_form.js:93 #: frappe/public/js/onboarding_tours/onboarding_tours.js:15 #: frappe/public/js/onboarding_tours/onboarding_tours.js:240 #: frappe/templates/includes/slideshow.html:38 frappe/website/utils.py:258 @@ -16801,14 +16889,15 @@ msgstr "点击进入下一步" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:26 msgid "No" msgstr "否" @@ -16858,6 +16947,10 @@ msgstr "没有电子邮箱帐号" msgid "No Email Accounts Assigned" msgstr "未分派电子邮箱帐号" +#: frappe/email/doctype/email_group/email_group.py:50 +msgid "No Email field found in {0}" +msgstr "" + #: frappe/public/js/frappe/views/inbox/inbox_view.js:183 msgid "No Emails" msgstr "没有电子邮件" @@ -16893,15 +16986,15 @@ msgstr "未找到邮箱为{0}的LDAP用户" msgid "No Label" msgstr "无标签" -#: frappe/printing/page/print/print.js:703 -#: frappe/printing/page/print/print.js:784 +#: frappe/printing/page/print/print.js:743 +#: frappe/printing/page/print/print.js:824 #: frappe/public/js/frappe/list/bulk_operations.js:98 #: frappe/public/js/frappe/list/bulk_operations.js:170 #: frappe/utils/weasyprint.py:52 msgid "No Letterhead" msgstr "无信头" -#: frappe/model/naming.py:481 +#: frappe/model/naming.py:489 msgid "No Name Specified for {0}" msgstr "{0}未指定名称" @@ -16909,7 +17002,7 @@ msgstr "{0}未指定名称" msgid "No New notifications" msgstr "暂无新通知" -#: frappe/core/doctype/doctype/doctype.py:1743 +#: frappe/core/doctype/doctype/doctype.py:1757 msgid "No Permissions Specified" msgstr "未指定权限" @@ -16929,11 +17022,11 @@ msgstr "该仪表盘无可用图表" msgid "No Preview" msgstr "无预览" -#: frappe/printing/page/print/print.js:707 +#: frappe/printing/page/print/print.js:747 msgid "No Preview Available" msgstr "预览不可用" -#: frappe/printing/page/print/print.js:862 +#: frappe/printing/page/print/print.js:902 msgid "No Printer is Available." msgstr "没有可用打印机。" @@ -16949,11 +17042,11 @@ msgstr "没有结果" msgid "No Results found" msgstr "无数据" -#: frappe/core/doctype/user/user.py:809 +#: frappe/core/doctype/user/user.py:816 msgid "No Roles Specified" msgstr "未分派角色" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:344 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:358 msgid "No Select Field Found" msgstr "无生成看板列所需的单选字段" @@ -16961,7 +17054,7 @@ msgstr "无生成看板列所需的单选字段" msgid "No Suggestions" msgstr "无建议" -#: frappe/desk/reportview.py:672 +#: frappe/desk/reportview.py:707 msgid "No Tags" msgstr "无标签" @@ -16973,7 +17066,7 @@ msgstr "无未处理事项" msgid "No address added yet." msgstr "未添加地址。" -#: frappe/email/doctype/notification/notification.js:229 +#: frappe/email/doctype/notification/notification.js:236 msgid "No alerts for today" msgstr "今天无预警通知" @@ -17001,23 +17094,19 @@ msgstr "无变更需同步" msgid "No changes to update" msgstr "无变更需更新" -#: frappe/website/doctype/blog_post/blog_post.py:378 -msgid "No comments yet" -msgstr "暂无评论" - #: frappe/templates/includes/comments/comments.html:4 -msgid "No comments yet. " -msgstr "暂无评论。" +msgid "No comments yet." +msgstr "暂无评论." #: frappe/public/js/frappe/form/templates/contact_list.html:91 msgid "No contacts added yet." msgstr "未添加联系人。" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:469 msgid "No contacts linked to document" msgstr "文档未关联联系人" -#: frappe/desk/query_report.py:344 +#: frappe/desk/query_report.py:381 msgid "No data to export" msgstr "没有要导出的数据" @@ -17033,11 +17122,15 @@ msgstr "未找到标记为{0}的文档" msgid "No email account associated with the User. Please add an account under User > Email Inbox." msgstr "此用户未关联邮箱帐号,请在用户收件箱中设置邮箱" +#: frappe/core/api/user_invitation.py:17 +msgid "No email addresses to invite" +msgstr "" + #: frappe/core/doctype/data_import/data_import.js:478 msgid "No failed logs" msgstr "无出错信息" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:371 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:385 msgid "No fields found that can be used as a Kanban Column. Use the Customize Form to add a Custom Field of type \"Select\"." msgstr "找不到可用作看板列的字段。使用“定制表单”添加“选择”类型的自定义字段。" @@ -17061,7 +17154,7 @@ msgstr "没有下一个记录了" msgid "No matching records. Search something new" msgstr "没有符合条件的记录。搜索新的东西" -#: frappe/public/js/frappe/web_form/web_form_list.js:161 +#: frappe/public/js/frappe/web_form/web_form_list.js:162 msgid "No more items to display" msgstr "没有更多要显示的条目" @@ -17105,7 +17198,7 @@ msgctxt "{0} = verb, {1} = object" msgid "No permission to '{0}' {1}" msgstr "无权限'{0}' {1}" -#: frappe/model/db_query.py:950 +#: frappe/model/db_query.py:949 msgid "No permission to read {0}" msgstr "没有读取{0}的权限" @@ -17117,7 +17210,7 @@ msgstr "无权{0} {1} {2}" msgid "No records deleted" msgstr "没有记录被删除" -#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:116 +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:115 msgid "No records present in {0}" msgstr "{0}中没有记录" @@ -17133,7 +17226,7 @@ msgstr "没有满足条件的记录" msgid "No rows" msgstr "无行数据" -#: frappe/email/doctype/notification/notification.py:129 +#: frappe/email/doctype/notification/notification.py:135 msgid "No subject" msgstr "无主题" @@ -17153,11 +17246,11 @@ msgstr "无{0}" msgid "No {0} Found" msgstr "未找到{0}" -#: frappe/public/js/frappe/web_form/web_form_list.js:233 +#: frappe/public/js/frappe/web_form/web_form_list.js:234 msgid "No {0} found" msgstr "没有找到{0}" -#: frappe/public/js/frappe/list/list_view.js:494 +#: frappe/public/js/frappe/list/list_view.js:499 msgid "No {0} found with matching filters. Clear filters to see all {0}." msgstr "未找到匹配当前筛选条件的{0},请清除筛选条件后查看全部{0}" @@ -17166,7 +17259,7 @@ msgid "No {0} mail" msgstr "没有{0}邮件" #: frappe/public/js/form_builder/utils.js:117 -#: frappe/public/js/frappe/form/grid_row.js:256 +#: frappe/public/js/frappe/form/grid_row.js:257 msgctxt "Title of the 'row number' column" msgid "No." msgstr "编号" @@ -17209,7 +17302,7 @@ msgstr "基础查询(剔除查询参数)次数" msgid "Normalized Query" msgstr "规范化查询" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 #: frappe/templates/includes/login/login.js:257 frappe/utils/oauth.py:269 msgid "Not Allowed" msgstr "不允许" @@ -17230,7 +17323,7 @@ msgstr "不是后代" msgid "Not Equals" msgstr "不等于" -#: frappe/app.py:387 frappe/www/404.html:3 +#: frappe/app.py:390 frappe/www/404.html:3 msgid "Not Found" msgstr "未找到" @@ -17256,20 +17349,19 @@ msgstr "未链接到任何记录" msgid "Not Nullable" msgstr "不可为空" -#: frappe/__init__.py:550 frappe/app.py:380 frappe/desk/calendar.py:26 +#: frappe/__init__.py:550 frappe/app.py:383 frappe/desk/calendar.py:26 #: frappe/public/js/frappe/web_form/webform_script.js:15 -#: frappe/website/doctype/web_form/web_form.py:736 +#: frappe/website/doctype/web_form/web_form.py:774 #: frappe/website/page_renderers/not_permitted_page.py:22 #: frappe/www/login.py:193 frappe/www/qrcode.py:22 frappe/www/qrcode.py:25 #: frappe/www/qrcode.py:37 msgid "Not Permitted" msgstr "没有权限" -#: frappe/desk/query_report.py:555 +#: frappe/desk/query_report.py:596 msgid "Not Permitted to read {0}" msgstr "无权限读取{0}" -#: frappe/website/doctype/blog_post/blog_post_list.js:7 #: frappe/website/doctype/web_form/web_form_list.js:7 #: frappe/website/doctype/web_page/web_page_list.js:7 msgid "Not Published" @@ -17278,10 +17370,10 @@ msgstr "未发布" #: frappe/public/js/frappe/form/toolbar.js:287 #: frappe/public/js/frappe/form/toolbar.js:816 #: frappe/public/js/frappe/model/indicator.js:28 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:169 -#: frappe/public/js/frappe/views/reports/report_view.js:203 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:183 +#: frappe/public/js/frappe/views/reports/report_view.js:209 #: frappe/public/js/print_format_builder/print_format_builder.bundle.js:39 -#: frappe/website/doctype/web_form/templates/web_form.html:78 +#: frappe/website/doctype/web_form/templates/web_form.html:85 msgid "Not Saved" msgstr "尚未保存" @@ -17313,7 +17405,7 @@ msgstr "不是一个有效的CSV文件" msgid "Not a valid User Image." msgstr "非有效用户图像。" -#: frappe/model/workflow.py:114 +#: frappe/model/workflow.py:117 msgid "Not a valid Workflow Action" msgstr "不是有效的工作流操作" @@ -17329,11 +17421,11 @@ msgstr "非活动" msgid "Not allowed for {0}: {1}" msgstr "不允许{0}:{1}" -#: frappe/email/doctype/notification/notification.py:595 +#: frappe/email/doctype/notification/notification.py:639 msgid "Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings" msgstr "不允许附加{0}文档,请在打印设置中启用“允许打印{0}”" -#: frappe/core/doctype/doctype/doctype.py:335 +#: frappe/core/doctype/doctype/doctype.py:336 msgid "Not allowed to create custom Virtual DocType." msgstr "不允许创建自定义虚拟文档类型。" @@ -17357,27 +17449,27 @@ msgstr "未找到" msgid "Not in Developer Mode" msgstr "未在开发模式下" -#: frappe/core/doctype/doctype/doctype.py:330 +#: frappe/core/doctype/doctype/doctype.py:331 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:215 +#: frappe/core/doctype/system_settings/system_settings.py:217 #: frappe/public/js/frappe/request.js:159 #: frappe/public/js/frappe/request.js:170 #: frappe/public/js/frappe/request.js:175 #: frappe/public/js/frappe/views/kanban/kanban_board.bundle.js:67 -#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:749 +#: frappe/utils/messages.py:158 frappe/website/doctype/web_form/web_form.py:787 #: frappe/website/js/website.js:97 msgid "Not permitted" msgstr "没有权限" -#: frappe/public/js/frappe/list/list_view.js:50 +#: frappe/public/js/frappe/list/list_view.js:53 msgid "Not permitted to view {0}" msgstr "没有权限查看{0}" #. Label of a Link in the Tools Workspace #. Name of a DocType -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:407 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:438 #: frappe/automation/workspace/tools/tools.json #: frappe/desk/doctype/note/note.json msgid "Note" @@ -17412,7 +17504,7 @@ msgstr "注意:为获得最佳效果,图像必须大小相同,宽度必须 msgid "Note: Multiple sessions will be allowed in case of mobile device" msgstr "注:在使用移动设备时允许多个会话" -#: frappe/core/doctype/user/user.js:393 +#: frappe/core/doctype/user/user.js:387 msgid "Note: This will be shared with user." msgstr "此登录行为将通知对应用户" @@ -17436,10 +17528,9 @@ msgstr "无内容可重做" msgid "Nothing left to undo" msgstr "无内容可撤销" -#: frappe/public/js/frappe/list/base_list.js:372 +#: frappe/public/js/frappe/list/base_list.js:383 #: frappe/public/js/frappe/views/reports/query_report.js:105 #: frappe/templates/includes/list/list.html:9 -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:41 #: frappe/website/doctype/help_article/templates/help_article_list.html:21 msgid "Nothing to show" msgstr "无数据" @@ -17485,15 +17576,15 @@ msgstr "订阅通知的文档" msgid "Notification sent to" msgstr "通知已发送至" -#: frappe/email/doctype/notification/notification.py:500 +#: frappe/email/doctype/notification/notification.py:544 msgid "Notification: customer {0} has no Mobile number set" msgstr "通知:客户{0}未设置手机号码" -#: frappe/email/doctype/notification/notification.py:486 +#: frappe/email/doctype/notification/notification.py:530 msgid "Notification: document {0} has no {1} number set (field: {2})" msgstr "通知:文档{0}未设置{1}号码(字段:{2})" -#: frappe/email/doctype/notification/notification.py:495 +#: frappe/email/doctype/notification/notification.py:539 msgid "Notification: user {0} has no Mobile number set" msgstr "通知:用户{0}未设置手机号码" @@ -17544,7 +17635,7 @@ msgstr "如果一分钟内未回复,则发出通知" msgid "Notify users with a popup when they log in" msgstr "用户登录后以弹框通知" -#: frappe/public/js/frappe/form/controls/datetime.js:28 +#: frappe/public/js/frappe/form/controls/datetime.js:41 #: frappe/public/js/frappe/form/controls/time.js:37 msgid "Now" msgstr "现在" @@ -17602,12 +17693,12 @@ msgstr "分组数量" msgid "Number of Queries" msgstr "查询次数" -#: frappe/core/doctype/doctype/doctype.py:442 +#: frappe/core/doctype/doctype/doctype.py:443 #: frappe/public/js/frappe/doctype/index.js:59 msgid "Number of attachment fields are more than {}, limit updated to {}." msgstr "附件字段数超过{},限制已更新为{}。" -#: frappe/core/doctype/system_settings/system_settings.py:170 +#: frappe/core/doctype/system_settings/system_settings.py:172 msgid "Number of backups must be greater than zero." msgstr "备份数量必须大于零。" @@ -17716,11 +17807,11 @@ msgstr "OTP应用程序" msgid "OTP Issuer Name" msgstr "OTP发行人名称" -#: frappe/twofactor.py:445 +#: frappe/twofactor.py:450 msgid "OTP Secret Reset - {0}" msgstr "OTP密钥重置 - {0}" -#: frappe/twofactor.py:464 +#: frappe/twofactor.py:469 msgid "OTP Secret has been reset. Re-registration will be required on next login." msgstr "OTP Secret已被重置。下次登录时需要重新注册。" @@ -17839,7 +17930,7 @@ msgstr "在或之后" msgid "On or Before" msgstr "在或之前" -#: frappe/public/js/frappe/views/communication.js:963 +#: frappe/public/js/frappe/views/communication.js:966 msgid "On {0}, {1} wrote:" msgstr "{0},{1}写道:" @@ -17879,7 +17970,7 @@ msgstr "入职完成" #. Description of the 'Is Submittable' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:42 +#: frappe/core/doctype/doctype/doctype_list.js:43 msgid "Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended." msgstr "一旦提交后无法再修改。只能先取消再点修订按钮,生成新版本后修改。" @@ -17924,7 +18015,7 @@ msgstr "只允许管理员使用记录器" msgid "Only Allow Edit For" msgstr "角色(允许编辑)" -#: frappe/core/doctype/doctype/doctype.py:1620 +#: frappe/core/doctype/doctype/doctype.py:1621 msgid "Only Options allowed for Data field are:" msgstr "数据字段仅允许以下选项:" @@ -17941,7 +18032,7 @@ msgstr "仅工作区管理员可编辑公共工作区" msgid "Only allowed to export customizations in developer mode" msgstr "仅开发者模式下允许导出自定义项" -#: frappe/model/document.py:1235 +#: frappe/model/document.py:1239 msgid "Only draft documents can be discarded" msgstr "仅草稿文档可丢弃" @@ -17960,19 +18051,19 @@ msgstr "新记录中只有必填字段是必须的。可以删除非必填字段 msgid "Only one {0} can be set as primary." msgstr "仅可设置一个{0}为主项。" -#: frappe/desk/reportview.py:357 +#: frappe/desk/reportview.py:358 msgid "Only reports of type Report Builder can be deleted" msgstr "仅报表生成器类型的报告可删除" -#: frappe/desk/reportview.py:328 +#: frappe/desk/reportview.py:329 msgid "Only reports of type Report Builder can be edited" msgstr "仅报表生成器类型的报告可编辑" -#: frappe/custom/doctype/customize_form/customize_form.py:128 +#: frappe/custom/doctype/customize_form/customize_form.py:131 msgid "Only standard DocTypes are allowed to be customized from Customize Form." msgstr "只允许从“定制表单”定制标准DocType。" -#: frappe/model/delete_doc.py:241 +#: frappe/model/delete_doc.py:281 msgid "Only the Administrator can delete a standard DocType." msgstr "仅管理员可删除标准文档类型。" @@ -18042,7 +18133,7 @@ msgstr "打开引用文档" msgid "Open Settings" msgstr "打开设置" -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 msgid "Open Source Applications for the Web" msgstr "开源为Web应用程序" @@ -18060,7 +18151,7 @@ msgstr "打开含必填字段的对话框快速创建记录。对话框中需至 msgid "Open a module or tool" msgstr "打开一个模块或工具" -#: frappe/public/js/frappe/ui/keyboard.js:366 +#: frappe/public/js/frappe/ui/keyboard.js:367 msgid "Open console" msgstr "" @@ -18068,7 +18159,7 @@ msgstr "" msgid "Open in a new tab" msgstr "在新标签页打开" -#: frappe/public/js/frappe/list/list_view.js:1288 +#: frappe/public/js/frappe/list/list_view.js:1433 msgctxt "Description of a list view shortcut" msgid "Open list item" msgstr "打开列表项" @@ -18083,13 +18174,13 @@ msgstr "在手机上打开授权认证应用程序。" #: frappe/desk/doctype/todo/todo_list.js:17 #: frappe/public/js/frappe/form/templates/form_links.html:18 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:277 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:278 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:289 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:299 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:287 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:298 #: frappe/public/js/frappe/ui/toolbar/search_utils.js:308 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:326 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:327 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:317 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:335 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:336 msgid "Open {0}" msgstr "打开{0}" @@ -18098,6 +18189,10 @@ msgstr "打开{0}" msgid "OpenID Configuration" msgstr "OpenID配置" +#: frappe/integrations/doctype/connected_app/connected_app.js:15 +msgid "OpenID Configuration fetched successfully!" +msgstr "" + #. Option for the 'Directory Server' (Select) field in DocType 'LDAP Settings' #: frappe/integrations/doctype/ldap_settings/ldap_settings.json msgid "OpenLDAP" @@ -18113,7 +18208,7 @@ msgstr "开业" msgid "Operation" msgstr "工序" -#: frappe/utils/data.py:2128 +#: frappe/utils/data.py:2172 msgid "Operator must be one of {0}" msgstr "运算符必须是{0}" @@ -18139,7 +18234,7 @@ msgstr "选项2" msgid "Option 3" msgstr "选项3" -#: frappe/core/doctype/doctype/doctype.py:1638 +#: frappe/core/doctype/doctype/doctype.py:1639 msgid "Option {0} for field {1} is not a child table" msgstr "为字段{1}设置的选项{0}未被定义为是子表" @@ -18159,6 +18254,7 @@ msgstr "可选:在这个表达式为真时发送通知" #. Label of the options (Small Text) field in DocType 'Custom Field' #. Label of the options (Small Text) field in DocType 'Customize Form Field' #. Label of the options (Text) field in DocType 'Web Form Field' +#. Label of the options (Text) field in DocType 'Web Form List Column' #. Label of the options (Small Text) field in DocType 'Web Template Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/report_column/report_column.json @@ -18167,11 +18263,12 @@ msgstr "可选:在这个表达式为真时发送通知" #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/templates/form_grid/fields.html:43 #: frappe/website/doctype/web_form_field/web_form_field.json +#: frappe/website/doctype/web_form_list_column/web_form_list_column.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Options" msgstr "选项" -#: frappe/core/doctype/doctype/doctype.py:1366 +#: frappe/core/doctype/doctype/doctype.py:1367 msgid "Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType'" msgstr "选择“动态链接”类型的字段都必须指向另一个选项为'DocType“的链接字段" @@ -18180,7 +18277,7 @@ msgstr "选择“动态链接”类型的字段都必须指向另一个选项为 msgid "Options Help" msgstr "选项帮助" -#: frappe/core/doctype/doctype/doctype.py:1660 +#: frappe/core/doctype/doctype/doctype.py:1661 msgid "Options for Rating field can range from 3 to 10" msgstr "评分字段选项范围3至10" @@ -18188,7 +18285,7 @@ msgstr "评分字段选项范围3至10" msgid "Options for select. Each option on a new line." msgstr "选择项。每行一个选项。" -#: frappe/core/doctype/doctype/doctype.py:1383 +#: frappe/core/doctype/doctype/doctype.py:1384 msgid "Options for {0} must be set before setting the default value." msgstr "设置默认值前必须先设置{0}的选项。" @@ -18196,7 +18293,7 @@ msgstr "设置默认值前必须先设置{0}的选项。" msgid "Options is required for field {0} of type {1}" msgstr "{1}类型字段{0}必须设置选项" -#: frappe/model/base_document.py:871 +#: frappe/model/base_document.py:928 msgid "Options not set for link field {0}" msgstr "链接字段未设置选项{0}" @@ -18212,7 +18309,7 @@ msgstr "橙色" msgid "Order" msgstr "订购" -#: frappe/database/query.py:767 +#: frappe/database/query.py:769 msgid "Order By must be a string" msgstr "" @@ -18228,12 +18325,12 @@ msgstr "企业发展史" msgid "Org History Heading" msgstr "公司发展历程标题" -#: frappe/public/js/frappe/form/print_utils.js:15 +#: frappe/public/js/frappe/form/print_utils.js:21 msgid "Orientation" msgstr "方向" -#: frappe/core/doctype/version/version_view.html:13 -#: frappe/core/doctype/version/version_view.html:75 +#: frappe/core/doctype/version/version_view.html:14 +#: frappe/core/doctype/version/version_view.html:76 msgid "Original Value" msgstr "原值" @@ -18301,10 +18398,6 @@ msgstr "输出" msgid "Overview" msgstr "概况" -#: frappe/core/report/transaction_log_report/transaction_log_report.py:100 -msgid "Owner" -msgstr "制单人" - #. Option for the 'Method' (Select) field in DocType 'Recorder' #: frappe/core/doctype/recorder/recorder.json msgid "PATCH" @@ -18312,9 +18405,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:71 +#: frappe/printing/page/print/print.js:84 #: frappe/public/js/frappe/form/templates/print_layout.html:44 -#: frappe/public/js/frappe/views/reports/query_report.js:1794 +#: frappe/public/js/frappe/views/reports/query_report.js:1812 msgid "PDF" msgstr "PDF" @@ -18355,11 +18448,11 @@ msgstr "PDF生成失败" msgid "PDF generation failed because of broken image links" msgstr "PDF生成,因为破碎的图像链接失败" -#: frappe/printing/page/print/print.js:616 +#: frappe/printing/page/print/print.js:656 msgid "PDF generation may not work as expected." msgstr "PDF生成可能无法按预期工作。" -#: frappe/printing/page/print/print.js:534 +#: frappe/printing/page/print/print.js:574 msgid "PDF printing via \"Raw Print\" is not supported." msgstr "不支持通过 \"原始打印 \"进行 PDF 打印。" @@ -18531,7 +18624,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:264 +#: frappe/public/js/frappe/web_form/web_form.js:288 #: frappe/templates/print_formats/standard.html:34 msgid "Page {0} of {1}" msgstr "第{0}页,共{1}页" @@ -18558,7 +18651,7 @@ msgstr "父单据类型" msgid "Parent Document Type" msgstr "父文档类型" -#: frappe/desk/doctype/number_card/number_card.py:65 +#: frappe/desk/doctype/number_card/number_card.py:66 msgid "Parent Document Type is required to create a number card" msgstr "创建数字卡片需要父文档类型" @@ -18575,11 +18668,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:933 +#: frappe/core/doctype/doctype/doctype.py:934 msgid "Parent Field (Tree)" msgstr "父字段(树)" -#: frappe/core/doctype/doctype/doctype.py:939 +#: frappe/core/doctype/doctype/doctype.py:940 msgid "Parent Field must be a valid fieldname" msgstr "父字段必须是有效字段名" @@ -18588,7 +18681,7 @@ msgstr "父字段必须是有效字段名" msgid "Parent Label" msgstr "父标签" -#: frappe/core/doctype/doctype/doctype.py:1197 +#: frappe/core/doctype/doctype/doctype.py:1198 msgid "Parent Missing" msgstr "父项缺失" @@ -18662,8 +18755,8 @@ msgstr "已创建" #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:219 -#: frappe/core/doctype/user/user.js:239 +#: frappe/core/doctype/user/user.js:165 frappe/core/doctype/user/user.js:212 +#: frappe/core/doctype/user/user.js:232 #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/desk/page/setup_wizard/setup_wizard.js:493 @@ -18673,7 +18766,7 @@ msgstr "已创建" msgid "Password" msgstr "密码" -#: frappe/core/doctype/user/user.py:1085 +#: frappe/core/doctype/user/user.py:1094 msgid "Password Email Sent" msgstr "密码邮件已发送" @@ -18686,7 +18779,7 @@ msgstr "密码重置" msgid "Password Reset Link Generation Limit" msgstr "密码重置链接生成限制" -#: frappe/public/js/frappe/form/grid_row.js:880 +#: frappe/public/js/frappe/form/grid_row.js:897 msgid "Password cannot be filtered" msgstr "密码不可被过滤" @@ -18703,6 +18796,10 @@ msgstr "密码基础DN" msgid "Password is required or select Awaiting Password" msgstr "需要密码,或者选择等待密码" +#: frappe/www/update-password.html:94 +msgid "Password is valid. 👍" +msgstr "" + #: frappe/public/js/frappe/desk.js:212 msgid "Password missing in Email Account" msgstr "邮箱账户缺少密码" @@ -18711,7 +18808,7 @@ msgstr "邮箱账户缺少密码" msgid "Password not found for {0} {1} {2}" msgstr "未找到{0} {1} {2}的密码" -#: frappe/core/doctype/user/user.py:1084 +#: frappe/core/doctype/user/user.py:1093 msgid "Password reset instructions have been sent to {}'s email" msgstr "密码重置说明已发送至{}的邮箱" @@ -18719,11 +18816,11 @@ msgstr "密码重置说明已发送至{}的邮箱" msgid "Password set" msgstr "密码已设置" -#: frappe/auth.py:258 +#: frappe/auth.py:261 msgid "Password size exceeded the maximum allowed size" msgstr "密码长度超过允许最大值" -#: frappe/core/doctype/user/user.py:875 +#: frappe/core/doctype/user/user.py:882 msgid "Password size exceeded the maximum allowed size." msgstr "密码长度超过允许最大值" @@ -18731,7 +18828,7 @@ msgstr "密码长度超过允许最大值" msgid "Passwords do not match" msgstr "密码不匹配" -#: frappe/core/doctype/user/user.js:205 +#: frappe/core/doctype/user/user.js:198 msgid "Passwords do not match!" msgstr "密码不匹配!" @@ -18801,10 +18898,12 @@ msgstr "峰值内存使用" #. Option for the 'Status' (Select) field in DocType 'Data Import' #. Option for the 'Contribution Status' (Select) field in DocType 'Translation' +#. Option for the 'Status' (Select) field in DocType 'User Invitation' #. Option for the 'Status' (Select) field in DocType 'Personal Data Deletion #. Step' #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/translation/translation.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json msgid "Pending" msgstr "待处理" @@ -18880,7 +18979,7 @@ msgstr "正式提交{0}?" msgid "Permanently delete {0}?" msgstr "永久删除{0} ?" -#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:533 +#: frappe/core/doctype/user_type/user_type.py:84 frappe/database/query.py:535 msgid "Permission Error" msgstr "权限错误" @@ -18940,16 +19039,16 @@ msgstr "权限类型" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/doctype/doctype.json #: frappe/core/doctype/system_settings/system_settings.json -#: frappe/core/doctype/user/user.js:138 frappe/core/doctype/user/user.js:147 -#: frappe/core/doctype/user/user.js:156 +#: frappe/core/doctype/user/user.js:131 frappe/core/doctype/user/user.js:140 +#: frappe/core/doctype/user/user.js:149 #: frappe/core/page/permission_manager/permission_manager.js:221 #: frappe/core/workspace/users/users.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json msgid "Permissions" msgstr "权限" -#: frappe/core/doctype/doctype/doctype.py:1834 -#: frappe/core/doctype/doctype/doctype.py:1844 +#: frappe/core/doctype/doctype/doctype.py:1848 +#: frappe/core/doctype/doctype/doctype.py:1858 msgid "Permissions Error" msgstr "权限错误" @@ -19011,15 +19110,18 @@ msgstr "个人资料下载请求" #. Option for the 'Type' (Select) field in DocType 'Communication' #. Option for the 'Type' (Select) field in DocType 'DocField' #. Label of the phone (Data) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Option for the 'Field Type' (Select) field in DocType 'Custom Field' #. Option for the 'Type' (Select) field in DocType 'Customize Form Field' #. Label of the phone (Data) field in DocType 'Contact Us Settings' #. Option for the 'Fieldtype' (Select) field in DocType 'Web Form Field' #: frappe/contacts/doctype/address/address.json #: frappe/contacts/doctype/contact/contact.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:47 #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/docfield/docfield.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json @@ -19032,13 +19134,13 @@ msgstr "电话" msgid "Phone No." msgstr "电话号码" -#: frappe/utils/__init__.py:122 +#: frappe/utils/__init__.py:124 msgid "Phone Number {0} set in field {1} is not valid." msgstr "字段{1}中设置的电话号码{0}无效" -#: frappe/public/js/frappe/form/print_utils.js:53 -#: frappe/public/js/frappe/views/reports/report_view.js:1579 -#: frappe/public/js/frappe/views/reports/report_view.js:1582 +#: frappe/public/js/frappe/form/print_utils.js:68 +#: frappe/public/js/frappe/views/reports/report_view.js:1581 +#: frappe/public/js/frappe/views/reports/report_view.js:1584 msgid "Pick Columns" msgstr "选择报表输出字段" @@ -19098,11 +19200,11 @@ msgstr "请通过pip安装ldap3库以使用ldap功能。" msgid "Please Set Chart" msgstr "请设置图表" -#: frappe/core/doctype/sms_settings/sms_settings.py:84 +#: frappe/core/doctype/sms_settings/sms_settings.py:88 msgid "Please Update SMS Settings" msgstr "请更新短信设置" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:582 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:613 msgid "Please add a subject to your email" msgstr "请在您的电子邮件中添加主题" @@ -19110,7 +19212,7 @@ msgstr "请在您的电子邮件中添加主题" msgid "Please add a valid comment." msgstr "请添加有效评论" -#: frappe/core/doctype/user/user.py:1067 +#: frappe/core/doctype/user/user.py:1076 msgid "Please ask your administrator to verify your sign-up" msgstr "请联络管理员确认您的注册" @@ -19118,11 +19220,11 @@ msgstr "请联络管理员确认您的注册" msgid "Please attach a file first." msgstr "请附上文件第一。" -#: frappe/printing/doctype/letter_head/letter_head.py:76 +#: frappe/printing/doctype/letter_head/letter_head.py:82 msgid "Please attach an image file to set HTML for Footer." msgstr "请附加图像文件以设置页脚HTML" -#: frappe/printing/doctype/letter_head/letter_head.py:64 +#: frappe/printing/doctype/letter_head/letter_head.py:70 msgid "Please attach an image file to set HTML for Letter Head." msgstr "请附加图像文件以设置信头HTML" @@ -19130,19 +19232,15 @@ msgstr "请附加图像文件以设置信头HTML" msgid "Please attach the package" msgstr "请附加安装包" -#: frappe/integrations/doctype/connected_app/connected_app.js:19 -msgid "Please check OpenID Configuration URL" -msgstr "请检查OpenID配置URL" - #: frappe/utils/dashboard.py:58 msgid "Please check the filter values set for Dashboard Chart: {}" msgstr "请检查仪表板图表设置的过滤值:{}" -#: frappe/model/base_document.py:951 +#: frappe/model/base_document.py:1008 msgid "Please check the value of \"Fetch From\" set for field {0}" msgstr "请检查为字段{0}设置的“提取自”的值" -#: frappe/core/doctype/user/user.py:1065 +#: frappe/core/doctype/user/user.py:1074 msgid "Please check your email for verification" msgstr "请在您的电子邮件中查看验证码" @@ -19174,11 +19272,11 @@ msgstr "请点击以下链接来设置新密码" msgid "Please confirm your action to {0} this document." msgstr "确认 {0} 本单据。" -#: frappe/printing/page/print/print.js:618 +#: frappe/printing/page/print/print.js:658 msgid "Please contact your system manager to install correct version." msgstr "请联系系统管理员安装正确版本" -#: frappe/desk/doctype/number_card/number_card.js:44 +#: frappe/desk/doctype/number_card/number_card.js:45 msgid "Please create Card first" msgstr "请先创建卡片" @@ -19194,20 +19292,20 @@ msgstr "请从{0}删除字段或添加所需文档类型" msgid "Please do not change the template headings." msgstr "请不要更改模板标题。" -#: frappe/printing/doctype/print_format/print_format.js:18 +#: frappe/printing/doctype/print_format/print_format.js:19 msgid "Please duplicate this to make changes" msgstr "请复制后修改" -#: frappe/core/doctype/system_settings/system_settings.py:163 +#: frappe/core/doctype/system_settings/system_settings.py:165 msgid "Please enable atleast one Social Login Key or LDAP or Login With Email Link before disabling username/password based login." msgstr "禁用用户名/密码登录前,请至少启用一个社交登录密钥/LDAP/邮件链接登录" #: frappe/desk/doctype/notification_log/notification_log.js:45 #: frappe/email/doctype/auto_email_report/auto_email_report.js:17 -#: frappe/printing/page/print/print.js:638 -#: frappe/printing/page/print/print.js:668 +#: frappe/printing/page/print/print.js:678 +#: frappe/printing/page/print/print.js:708 #: frappe/public/js/frappe/list/bulk_operations.js:161 -#: frappe/public/js/frappe/utils/utils.js:1434 +#: frappe/public/js/frappe/utils/utils.js:1471 msgid "Please enable pop-ups" msgstr "请启用弹出窗口" @@ -19244,7 +19342,7 @@ msgstr "在启用社交登录之前,请输入客户端ID" msgid "Please enter Client Secret before social login is enabled" msgstr "在启用社交登录之前,请输入客户端密码" -#: frappe/integrations/doctype/connected_app/connected_app.js:8 +#: frappe/integrations/doctype/connected_app/connected_app.py:54 msgid "Please enter OpenID Configuration URL" msgstr "请输入OpenID配置URL" @@ -19281,11 +19379,12 @@ msgstr "请输入新密码" msgid "Please enter your old password." msgstr "请输入旧密码" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:413 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:444 msgid "Please find attached {0}: {1}" msgstr "附件为{0}: {1}" -#: frappe/templates/includes/comments/comments.py:31 +#: frappe/templates/includes/comments/comments.py:42 +#: frappe/templates/includes/comments/comments.py:45 msgid "Please login to post a comment." msgstr "请登录后发表评论" @@ -19293,11 +19392,11 @@ msgstr "请登录后发表评论" msgid "Please make sure the Reference Communication Docs are not circularly linked." msgstr "请确保参考通信单据未被递归引用。" -#: frappe/model/document.py:988 +#: frappe/model/document.py:992 msgid "Please refresh to get the latest document." msgstr "请刷新获取最新数据。" -#: frappe/printing/page/print/print.js:535 +#: frappe/printing/page/print/print.js:575 msgid "Please remove the printer mapping in Printer Settings and try again." msgstr "请在打印机设置中移除打印机映射后重试" @@ -19313,7 +19412,7 @@ msgstr "分派待办前请先保存单据" msgid "Please save the document before removing assignment" msgstr "请删除分派之前保存的单据" -#: frappe/public/js/frappe/views/reports/report_view.js:1709 +#: frappe/public/js/frappe/views/reports/report_view.js:1718 msgid "Please save the report first" msgstr "请先保存报表" @@ -19321,7 +19420,7 @@ msgstr "请先保存报表" msgid "Please save to edit the template." msgstr "请保存后编辑模板" -#: frappe/printing/doctype/print_format/print_format.js:30 +#: frappe/printing/doctype/print_format/print_format.js:31 msgid "Please select DocType first" msgstr "请首先选择单据类型" @@ -19329,19 +19428,19 @@ msgstr "请首先选择单据类型" msgid "Please select Entity Type first" msgstr "请先选择实体类型" -#: frappe/core/doctype/system_settings/system_settings.py:113 +#: frappe/core/doctype/system_settings/system_settings.py:116 msgid "Please select Minimum Password Score" msgstr "请选择最低密码分数" -#: frappe/public/js/frappe/views/reports/query_report.js:1184 +#: frappe/public/js/frappe/views/reports/query_report.js:1193 msgid "Please select X and Y fields" msgstr "请选择X和Y轴字段" -#: frappe/utils/__init__.py:129 +#: frappe/utils/__init__.py:131 msgid "Please select a country code for field {1}." msgstr "请为字段{1}选择国家代码" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:506 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:526 msgid "Please select a file first." msgstr "请先选择文件" @@ -19349,7 +19448,7 @@ msgstr "请先选择文件" msgid "Please select a file or url" msgstr "请选择一个文件或URL" -#: frappe/model/rename_doc.py:685 +#: frappe/model/rename_doc.py:684 msgid "Please select a valid csv file with data" msgstr "请选择与数据的有效csv文件" @@ -19361,7 +19460,7 @@ msgstr "请选择有效日期过滤器" msgid "Please select applicable Doctypes" msgstr "请选择单据类型" -#: frappe/model/db_query.py:1142 +#: frappe/model/db_query.py:1163 msgid "Please select atleast 1 column from {0} to sort/group" msgstr "请选择从{0}进行排序/组ATLEAST 1柱" @@ -19387,11 +19486,11 @@ msgstr "请选择{0}" msgid "Please set Email Address" msgstr "请设置电子邮件地址" -#: frappe/printing/page/print/print.js:549 +#: frappe/printing/page/print/print.js:589 msgid "Please set a printer mapping for this print format in the Printer Settings" msgstr "请在“打印机设置”中为此打印格式设置打印机映射" -#: frappe/public/js/frappe/views/reports/query_report.js:1407 +#: frappe/public/js/frappe/views/reports/query_report.js:1416 msgid "Please set filters" msgstr "请设置过滤条件" @@ -19399,7 +19498,7 @@ msgstr "请设置过滤条件" msgid "Please set filters value in Report Filter table." msgstr "请设置在报表过滤表过滤条件值。" -#: frappe/model/naming.py:572 +#: frappe/model/naming.py:580 msgid "Please set the document name" msgstr "请设置文档名称" @@ -19411,7 +19510,7 @@ msgstr "请先将仪表板中的以下文档设为标准文档" msgid "Please set the series to be used." msgstr "请设置要使用的单据编号模板。" -#: frappe/core/doctype/system_settings/system_settings.py:126 +#: frappe/core/doctype/system_settings/system_settings.py:129 msgid "Please setup SMS before setting it as an authentication method, via SMS Settings" msgstr "请通过SMS设置将其设置为身份验证方式之前设置短信" @@ -19435,23 +19534,23 @@ msgstr "请先输入" msgid "Please specify a valid parent DocType for {0}" msgstr "请为{0}指定有效的父文档类型" -#: frappe/email/doctype/notification/notification.py:154 +#: frappe/email/doctype/notification/notification.py:163 msgid "Please specify at least 10 minutes due to the trigger cadence of the scheduler" msgstr "由于调度器的触发频率,请至少指定10分钟" -#: frappe/email/doctype/notification/notification.py:151 +#: frappe/email/doctype/notification/notification.py:160 msgid "Please specify the minutes offset" msgstr "请指定分钟偏移量" -#: frappe/email/doctype/notification/notification.py:145 +#: frappe/email/doctype/notification/notification.py:154 msgid "Please specify which date field must be checked" msgstr "请指定必须检查的日期字段" -#: frappe/email/doctype/notification/notification.py:149 +#: frappe/email/doctype/notification/notification.py:158 msgid "Please specify which datetime field must be checked" msgstr "请指定需要检查的日期时间字段" -#: frappe/email/doctype/notification/notification.py:158 +#: frappe/email/doctype/notification/notification.py:167 msgid "Please specify which value field must be checked" msgstr "请指定必须检查的值字段" @@ -19472,7 +19571,7 @@ msgstr "请使用有效的LDAP搜索过滤器" msgid "Please use following links to download file backup." msgstr "" -#: frappe/utils/password.py:218 +#: frappe/utils/password.py:217 msgid "Please visit https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key for more information." msgstr "更多信息请访问https://frappecloud.com/docs/sites/migrate-an-existing-site#encryption-key" @@ -19526,7 +19625,7 @@ msgstr "门户菜单项" msgid "Portal Settings" msgstr "门户网站设置" -#: frappe/public/js/frappe/form/print_utils.js:18 +#: frappe/public/js/frappe/form/print_utils.js:24 msgid "Portrait" msgstr "纵向打印" @@ -19554,6 +19653,7 @@ msgstr "邮政" #. Label of the pincode (Data) field in DocType 'Address' #: frappe/contacts/doctype/address/address.json +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:41 msgid "Postal Code" msgstr "邮政编码" @@ -19562,15 +19662,7 @@ msgstr "邮政编码" msgid "Posting Timestamp" msgstr "过账时间戳" -#: frappe/website/doctype/blog_post/blog_post.py:264 -msgid "Posts by {0}" -msgstr "帖子{0}" - -#: frappe/website/doctype/blog_post/blog_post.py:256 -msgid "Posts filed under {0}" -msgstr "帖子下提出{0}" - -#: frappe/database/query.py:1518 +#: frappe/database/query.py:1520 msgid "Potentially dangerous content in string literal: {0}" msgstr "" @@ -19585,7 +19677,11 @@ msgstr "" msgid "Precision" msgstr "精度" -#: frappe/core/doctype/doctype/doctype.py:1400 +#: frappe/core/doctype/doctype/doctype.py:1670 +msgid "Precision ({0}) for {1} cannot be greater than its length ({2})." +msgstr "" + +#: frappe/core/doctype/doctype/doctype.py:1401 msgid "Precision should be between 1 and 6" msgstr "精度应为1和6之间" @@ -19633,7 +19729,7 @@ msgstr "预制报表分析" msgid "Prepared Report User" msgstr "后台运行报表用户" -#: frappe/desk/query_report.py:307 +#: frappe/desk/query_report.py:308 msgid "Prepared report render failed" msgstr "预制报表渲染失败" @@ -19641,7 +19737,7 @@ msgstr "预制报表渲染失败" msgid "Preparing Report" msgstr "准备报表" -#: frappe/public/js/frappe/views/communication.js:431 +#: frappe/public/js/frappe/views/communication.js:434 msgid "Prepend the template to the email message" msgstr "将模板内容追加到邮件正文(消息)" @@ -19662,7 +19758,7 @@ msgstr "按Enter键保存" #: frappe/core/doctype/data_import/data_import.json #: frappe/core/doctype/file/file.json #: frappe/desk/doctype/custom_html_block/custom_html_block.json -#: frappe/email/doctype/notification/notification.js:190 +#: frappe/email/doctype/notification/notification.js:194 #: frappe/integrations/doctype/webhook/webhook.js:90 #: frappe/printing/doctype/print_style/print_style.json #: frappe/public/js/frappe/form/controls/markdown_editor.js:17 @@ -19676,13 +19772,6 @@ msgstr "预览" msgid "Preview HTML" msgstr "预览HTML" -#. Label of the preview_image (Attach Image) field in DocType 'Blog Category' -#. Label of the preview_image (Attach Image) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Preview Image" -msgstr "预览图片" - #. Label of the preview_message (Button) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json msgid "Preview Message" @@ -19711,7 +19800,7 @@ msgid "Preview:" msgstr "预览:" #: frappe/public/js/frappe/form/form_tour.js:15 -#: frappe/public/js/frappe/web_form/web_form.js:95 +#: frappe/public/js/frappe/web_form/web_form.js:97 #: frappe/public/js/onboarding_tours/onboarding_tours.js:16 #: frappe/templates/includes/slideshow.html:34 #: frappe/website/web_template/slideshow/slideshow.html:40 @@ -19723,12 +19812,7 @@ msgctxt "Go to previous slide" msgid "Previous" msgstr "上一条" -#. Label of the previous_hash (Small Text) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Previous Hash" -msgstr "先前的哈希" - -#: frappe/public/js/frappe/form/form.js:2214 +#: frappe/public/js/frappe/form/form.js:2216 msgid "Previous Submission" msgstr "前次提交" @@ -19774,19 +19858,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:65 +#: frappe/printing/page/print/print.js:78 #: frappe/public/js/frappe/form/success_action.js:81 #: frappe/public/js/frappe/form/templates/print_layout.html:46 #: frappe/public/js/frappe/form/toolbar.js:360 #: frappe/public/js/frappe/form/toolbar.js:372 #: frappe/public/js/frappe/list/bulk_operations.js:95 -#: frappe/public/js/frappe/views/reports/query_report.js:1780 -#: frappe/public/js/frappe/views/reports/report_view.js:1537 -#: frappe/public/js/frappe/views/treeview.js:490 frappe/www/printview.html:18 +#: frappe/public/js/frappe/views/reports/query_report.js:1797 +#: frappe/public/js/frappe/views/reports/report_view.js:1539 +#: frappe/public/js/frappe/views/treeview.js:492 frappe/www/printview.html:18 msgid "Print" msgstr "打印" -#: frappe/public/js/frappe/list/list_view.js:2017 +#: frappe/public/js/frappe/list/list_view.js:2166 msgctxt "Button in list view actions menu" msgid "Print" msgstr "打印" @@ -19804,8 +19888,8 @@ 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:94 -#: frappe/printing/page/print/print.js:821 +#: frappe/printing/page/print/print.js:107 +#: frappe/printing/page/print/print.js:861 #: frappe/public/js/frappe/list/bulk_operations.js:59 #: frappe/website/doctype/web_form/web_form.json msgid "Print Format" @@ -19856,7 +19940,7 @@ msgstr "打印格式帮助" msgid "Print Format Type" msgstr "打印格式类型" -#: frappe/public/js/frappe/views/reports/query_report.js:1577 +#: frappe/public/js/frappe/views/reports/query_report.js:1586 msgid "Print Format not found" msgstr "" @@ -19895,7 +19979,7 @@ msgstr "无值不打印" msgid "Print Language" msgstr "打印语言" -#: frappe/public/js/frappe/form/print_utils.js:210 +#: frappe/public/js/frappe/form/print_utils.js:225 msgid "Print Sent to the printer!" msgstr "已发送到打印机!" @@ -19912,8 +19996,8 @@ msgstr "打印服务器" #: frappe/email/doctype/notification/notification.json #: frappe/printing/doctype/print_settings/print_settings.json #: frappe/printing/doctype/print_style/print_style.js:6 -#: frappe/printing/page/print/print.js:160 -#: frappe/public/js/frappe/form/print_utils.js:84 +#: frappe/printing/page/print/print.js:173 +#: frappe/public/js/frappe/form/print_utils.js:99 #: frappe/public/js/frappe/form/templates/print_layout.html:35 msgid "Print Settings" msgstr "打印设置" @@ -19961,11 +20045,11 @@ msgstr "打印单据" msgid "Print with letterhead" msgstr "打印表头" -#: frappe/printing/page/print/print.js:830 +#: frappe/printing/page/print/print.js:870 msgid "Printer" msgstr "打印机" -#: frappe/printing/page/print/print.js:807 +#: frappe/printing/page/print/print.js:847 msgid "Printer Mapping" msgstr "打印机映射" @@ -19975,11 +20059,11 @@ msgstr "打印机映射" msgid "Printer Name" msgstr "打印机名称" -#: frappe/printing/page/print/print.js:799 +#: frappe/printing/page/print/print.js:839 msgid "Printer Settings" msgstr "打印机设置" -#: frappe/printing/page/print/print.js:548 +#: frappe/printing/page/print/print.js:588 msgid "Printer mapping not set." msgstr "未设置打印机映射" @@ -20037,7 +20121,7 @@ msgstr "ProTip:添加Reference: {{ reference_doctype }} {{ reference_nam msgid "Proceed" msgstr "继续" -#: frappe/public/js/frappe/views/reports/query_report.js:931 +#: frappe/public/js/frappe/views/reports/query_report.js:940 msgid "Proceed Anyway" msgstr "仍然继续" @@ -20058,18 +20142,28 @@ msgstr "教授" msgid "Profile" msgstr "个人信息" +#. Label of a field in the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile Picture" +msgstr "" + +#. Success message of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Profile updated successfully." +msgstr "个人资料更新成功." + #: frappe/public/js/frappe/socketio_client.js:82 msgid "Progress" msgstr "进展" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:408 +#: 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:12 -#: frappe/core/doctype/version/version_view.html:37 -#: frappe/core/doctype/version/version_view.html:74 +#: 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/custom/doctype/property_setter/property_setter.json msgid "Property" msgstr "属性" @@ -20106,7 +20200,7 @@ msgstr "属性类型" msgid "Protect Attached Files" msgstr "保护上传的附件(文件)" -#: frappe/core/doctype/file/file.py:501 +#: frappe/core/doctype/file/file.py:526 msgid "Protected File" msgstr "受保护文件" @@ -20155,24 +20249,18 @@ msgstr "" #. Label of the publish (Check) field in DocType 'Package Release' #: frappe/core/doctype/package_release/package_release.json -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Publish" msgstr "发布" #. Label of the published (Check) field in DocType 'Comment' -#. Label of the published (Check) field in DocType 'Blog Category' -#. Label of the published (Check) field in DocType 'Blog Post' #. Label of the published (Check) field in DocType 'Help Article' #. Label of the published (Check) field in DocType 'Help Category' #. Label of the published (Check) field in DocType 'Web Form' #. Label of the published (Check) field in DocType 'Web Page' #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/form/templates/timeline_message_box.html:42 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_post/blog_post_list.js:5 #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/web_form/web_form.json @@ -20182,15 +20270,6 @@ msgstr "发布" msgid "Published" msgstr "已发" -#. Label of the published_on (Date) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Published On" -msgstr "发布日期" - -#: frappe/website/doctype/blog_post/templates/blog_post.html:59 -msgid "Published on" -msgstr "发布于" - #. Label of the publishing_dates_section (Section Break) field in DocType 'Web #. Page' #: frappe/website/doctype/web_page/web_page.json @@ -20280,7 +20359,9 @@ msgid "Put on Hold" msgstr "暂停处理" #. Option for the 'Type' (Select) field in DocType 'System Console' +#. Option for the 'Condition Type' (Select) field in DocType 'Notification' #: frappe/desk/doctype/system_console/system_console.json +#: frappe/email/doctype/notification/notification.json msgid "Python" msgstr "Python" @@ -20292,9 +20373,9 @@ msgstr "二维码" msgid "QR Code for Login Verification" msgstr "用于登录验证的QR码" -#: frappe/public/js/frappe/form/print_utils.js:219 -msgid "QZ Tray Failed: " -msgstr "QZ托盘失败: " +#: frappe/public/js/frappe/form/print_utils.js:234 +msgid "QZ Tray Failed:" +msgstr "QZ托盘失败:" #. Option for the 'Frequency' (Select) field in DocType 'Auto Repeat' #. Option for the 'Time Interval' (Select) field in DocType 'Dashboard Chart' @@ -20343,7 +20424,7 @@ msgstr "查询报表" msgid "Query analysis complete. Check suggested indexes." msgstr "查询分析完成,请检查建议索引" -#: frappe/utils/safe_exec.py:495 +#: frappe/utils/safe_exec.py:497 msgid "Query must be of SELECT or read-only WITH type." msgstr "查询必须为SELECT或只读WITH类型" @@ -20443,7 +20524,7 @@ msgstr "筛选条件" msgid "Quick Lists" msgstr "快速访问列表" -#: frappe/public/js/frappe/views/reports/report_utils.js:304 +#: frappe/public/js/frappe/views/reports/report_utils.js:314 msgid "Quoting must be between 0 and 3" msgstr "引用级别须在0至3之间" @@ -20480,12 +20561,6 @@ msgstr "范围" msgid "Rate Limiting" msgstr "调用次数限制" -#. Label of the section_break_12 (Section Break) field in DocType 'Blog -#. Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Rate Limits" -msgstr "速率限制" - #. Label of the rate_limit_email_link_login (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json @@ -20505,7 +20580,7 @@ msgstr "评分" #. Label of the raw_commands (Code) field in DocType 'Print Format' #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "Raw Commands" msgstr "原生命令" @@ -20522,7 +20597,7 @@ msgstr "原始电子邮件" msgid "Raw Printing" msgstr "原生打印" -#: frappe/printing/page/print/print.js:165 +#: frappe/printing/page/print/print.js:178 msgid "Raw Printing Setting" msgstr "原始打印设置" @@ -20539,8 +20614,8 @@ msgid "Re:" msgstr "回覆:" #: frappe/core/doctype/communication/communication.js:268 -#: frappe/public/js/frappe/form/footer/form_timeline.js:600 -#: frappe/public/js/frappe/views/communication.js:367 +#: frappe/public/js/frappe/form/footer/form_timeline.js:601 +#: frappe/public/js/frappe/views/communication.js:370 msgid "Re: {0}" msgstr "回复:{0}" @@ -20596,11 +20671,6 @@ msgstr "只读先决条件(JS)" msgid "Read Only Mode" msgstr "只读模式" -#. Label of the read_time (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "Read Time" -msgstr "阅读时间" - #. Label of the read_by_recipient (Check) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Read by Recipient" @@ -20616,7 +20686,7 @@ msgstr "由收件人阅读" msgid "Read mode" msgstr "阅读模式" -#: frappe/utils/safe_exec.py:98 +#: frappe/utils/safe_exec.py:99 msgid "Read the documentation to know more" msgstr "查阅文档以了解更多" @@ -20636,11 +20706,11 @@ msgstr "实时通信(SocketIO)" msgid "Reason" msgstr "原因" -#: frappe/public/js/frappe/views/reports/query_report.js:885 +#: frappe/public/js/frappe/views/reports/query_report.js:894 msgid "Rebuild" msgstr "重新生成" -#: frappe/public/js/frappe/views/treeview.js:509 +#: frappe/public/js/frappe/views/treeview.js:511 msgid "Rebuild Tree" msgstr "重新生成树形结构" @@ -20678,7 +20748,7 @@ msgstr "接收人参数" msgid "Recent years are easy to guess." msgstr "近年来,很容易被猜到。" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:532 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:541 msgid "Recents" msgstr "最近" @@ -20689,6 +20759,14 @@ msgstr "最近" msgid "Recipient" msgstr "收件人" +#. Label of the recipient_account_field (Data) field in DocType 'DocType' +#. Label of the recipient_account_field (Data) field in DocType 'Customize +#. Form' +#: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json +msgid "Recipient Account Field" +msgstr "" + #. Option for the 'Delivery Status' (Select) field in DocType 'Communication' #: frappe/core/doctype/communication/communication.json msgid "Recipient Unsubscribed" @@ -20721,7 +20799,7 @@ msgstr "记录器建议索引" msgid "Records for following doctypes will be filtered" msgstr "以下单据类型的记录将被过滤" -#: frappe/core/doctype/doctype/doctype.py:1608 +#: frappe/core/doctype/doctype/doctype.py:1609 msgid "Recursive Fetch From" msgstr "递归获取自" @@ -20738,6 +20816,11 @@ msgstr "红色" msgid "Redirect HTTP Status" msgstr "重定向HTTP状态码" +#. Label of the redirect_to_path (Data) field in DocType 'User Invitation' +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "Redirect To Path" +msgstr "" + #. Label of the redirect_uri (Data) field in DocType 'Connected App' #: frappe/integrations/doctype/connected_app/connected_app.json msgid "Redirect URI" @@ -20832,6 +20915,11 @@ msgstr "参考日期" msgid "Reference Datetime" msgstr "参考日期时间" +#. Label of the reference_docname (Dynamic Link) field in DocType 'Event' +#: frappe/desk/doctype/event/event.json +msgid "Reference Doc" +msgstr "关联文档" + #. Label of the reference_name (Data) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Reference DocName" @@ -20859,7 +20947,6 @@ msgstr "关联文档名称" #. Label of the reference_doctype (Data) field in DocType 'Webhook Request Log' #. Label of the reference_doctype (Link) field in DocType 'Discussion Topic' #: frappe/core/doctype/communication/communication.js:143 -#: frappe/core/report/transaction_log_report/transaction_log_report.py:88 #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/views/render_preview.js:34 #: frappe/website/doctype/discussion_topic/discussion_topic.json @@ -20900,9 +20987,9 @@ msgstr "源单据" #. Label of the reference_doctype (Link) field in DocType 'Document Share Key' #. Label of the reference_doctype (Link) field in DocType 'Server Script' #. Label of the ref_doctype (Link) field in DocType 'Success Action' -#. Label of the reference_doctype (Data) field in DocType 'Transaction Log' #. Label of the reference_doctype (Link) field in DocType 'View Log' #. Label of the reference_doctype (Link) field in DocType 'Calendar View' +#. Label of the reference_doctype (Link) field in DocType 'Event' #. Label of the reference_doctype (Link) field in DocType 'Event Participants' #. Label of the reference_doctype (Link) field in DocType 'Kanban Board' #. Label of the reference_doctype (Link) field in DocType 'List Filter' @@ -20920,9 +21007,9 @@ msgstr "源单据" #: frappe/core/doctype/document_share_key/document_share_key.json #: frappe/core/doctype/server_script/server_script.json #: frappe/core/doctype/success_action/success_action.json -#: frappe/core/doctype/transaction_log/transaction_log.json #: frappe/core/doctype/view_log/view_log.json #: frappe/desk/doctype/calendar_view/calendar_view.json +#: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/kanban_board/kanban_board.json #: frappe/desk/doctype/list_filter/list_filter.json @@ -20952,7 +21039,6 @@ msgstr "源单据类型" #: frappe/core/doctype/communication/communication.json #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/core/doctype/error_log/error_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:94 #: frappe/desk/doctype/event_participants/event_participants.json #: frappe/desk/doctype/todo/todo.json #: frappe/email/doctype/email_unsubscribe/email_unsubscribe.json @@ -21000,15 +21086,15 @@ msgstr "参考:{0} {1}" msgid "Referrer" msgstr "来源页" -#: frappe/printing/page/print/print.js:73 frappe/public/js/frappe/desk.js:168 -#: frappe/public/js/frappe/desk.js:558 +#: frappe/printing/page/print/print.js:86 frappe/public/js/frappe/desk.js:168 +#: frappe/public/js/frappe/desk.js:552 #: frappe/public/js/frappe/form/form.js:1201 #: frappe/public/js/frappe/form/templates/print_layout.html:6 #: frappe/public/js/frappe/list/base_list.js:66 -#: frappe/public/js/frappe/views/reports/query_report.js:1769 -#: frappe/public/js/frappe/views/treeview.js:496 +#: frappe/public/js/frappe/views/reports/query_report.js:1786 +#: 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:340 +#: frappe/public/js/frappe/widgets/number_card_widget.js:352 #: frappe/public/js/print_format_builder/Preview.vue:24 msgid "Refresh" msgstr "刷新" @@ -21022,6 +21108,10 @@ msgstr "全部刷新" msgid "Refresh Google Sheet" msgstr "刷新Google表格" +#: frappe/printing/page/print/print.js:371 +msgid "Refresh Print Preview" +msgstr "" + #. Label of the refresh_token (Password) field in DocType 'Google Calendar' #. Label of the refresh_token (Password) field in DocType 'Google Contacts' #. Label of the refresh_token (Data) field in DocType 'OAuth Bearer Token' @@ -21033,18 +21123,18 @@ msgstr "刷新Google表格" msgid "Refresh Token" msgstr "刷新令牌" -#: frappe/public/js/frappe/list/list_view.js:531 +#: frappe/public/js/frappe/list/list_view.js:536 msgctxt "Document count in list view" msgid "Refreshing" msgstr "正在刷新" #: frappe/core/doctype/system_settings/system_settings.js:57 -#: frappe/core/doctype/user/user.js:368 +#: frappe/core/doctype/user/user.js:362 #: frappe/desk/page/setup_wizard/setup_wizard.js:211 msgid "Refreshing..." msgstr "正在刷新..." -#: frappe/core/doctype/user/user.py:1029 +#: frappe/core/doctype/user/user.py:1036 msgid "Registered but disabled" msgstr "已注册但被禁用" @@ -21221,7 +21311,7 @@ msgstr "修改字段名" msgid "Rename {0}" msgstr "修改{0}的单据编号" -#: frappe/core/doctype/doctype/doctype.py:698 +#: frappe/core/doctype/doctype/doctype.py:699 msgid "Renamed files and replaced code in controllers, please check!" msgstr "已变更文件名并替换了控制器类中的代码,请检查!" @@ -21352,9 +21442,9 @@ msgstr "全部回复" #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json #: frappe/email/doctype/auto_email_report/auto_email_report.json #: frappe/printing/doctype/print_format/print_format.json -#: frappe/printing/doctype/print_format/print_format.py:101 -#: frappe/public/js/frappe/form/print_utils.js:25 -#: frappe/public/js/frappe/request.js:615 +#: frappe/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/utils/utils.js:923 msgid "Report" msgstr "报表" @@ -21424,11 +21514,11 @@ 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:1954 +#: frappe/public/js/frappe/views/reports/query_report.js:1973 msgid "Report Name" msgstr "报表名称" -#: frappe/desk/doctype/number_card/number_card.py:69 +#: frappe/desk/doctype/number_card/number_card.py:70 msgid "Report Name, Report Field and Fucntion are required to create a number card" msgstr "创建数字卡片需填写报表名称、字段和聚合函数" @@ -21462,21 +21552,21 @@ msgstr "报表视图" msgid "Report bug" msgstr "报告缺陷" -#: frappe/core/doctype/doctype/doctype.py:1809 +#: frappe/core/doctype/doctype/doctype.py:1823 msgid "Report cannot be set for Single types" msgstr "报表不能单类型设置" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:208 -#: frappe/desk/doctype/number_card/number_card.js:191 +#: frappe/desk/doctype/number_card/number_card.js:194 msgid "Report has no data, please modify the filters or change the Report Name" msgstr "报表无数据,请调整过滤器或更换报表名称" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:196 -#: frappe/desk/doctype/number_card/number_card.js:186 +#: frappe/desk/doctype/number_card/number_card.js:189 msgid "Report has no numeric fields, please change the Report Name" msgstr "报表无数字字段,请更换报表名称" -#: frappe/public/js/frappe/views/reports/query_report.js:1012 +#: frappe/public/js/frappe/views/reports/query_report.js:1021 msgid "Report initiated, click to view status" msgstr "生成报表结果的后台任务已启动,点击查看任务状态" @@ -21488,24 +21578,24 @@ msgstr "达到报表限制" msgid "Report timed out." msgstr "报表超时" -#: frappe/desk/query_report.py:610 +#: frappe/desk/query_report.py:651 msgid "Report updated successfully" msgstr "报表已成功更新" -#: frappe/public/js/frappe/views/reports/report_view.js:1357 +#: frappe/public/js/frappe/views/reports/report_view.js:1359 msgid "Report was not saved (there were errors)" msgstr "报表尚未保存(有错误)" -#: frappe/public/js/frappe/views/reports/query_report.js:1992 +#: frappe/public/js/frappe/views/reports/query_report.js:2011 msgid "Report with more than 10 columns looks better in Landscape mode." msgstr "超过10列的报表更适合横向模式" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:251 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:252 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:260 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:261 msgid "Report {0}" msgstr "报表{0}" -#: frappe/desk/reportview.py:364 +#: frappe/desk/reportview.py:365 msgid "Report {0} deleted" msgstr "报表{0}已删除" @@ -21513,7 +21603,7 @@ msgstr "报表{0}已删除" msgid "Report {0} is disabled" msgstr "报表{0}无效" -#: frappe/desk/reportview.py:341 +#: frappe/desk/reportview.py:342 msgid "Report {0} saved" msgstr "报表{0}已保存" @@ -21524,7 +21614,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:547 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:556 msgid "Reports" msgstr "报表" @@ -21532,7 +21622,7 @@ msgstr "报表" msgid "Reports & Masters" msgstr "报表与主数据" -#: frappe/public/js/frappe/views/reports/query_report.js:928 +#: frappe/public/js/frappe/views/reports/query_report.js:937 msgid "Reports already in Queue" msgstr "报表已加入队列" @@ -21551,7 +21641,10 @@ msgid "Request Body" msgstr "请求内容" #. Label of the data (Code) field in DocType 'Integration Request' +#. Title of the request-data Web Form +#. Button label of the request-data Web Form #: frappe/integrations/doctype/integration_request/integration_request.json +#: frappe/website/web_form/request_data/request_data.json msgid "Request Data" msgstr "请求数据" @@ -21603,6 +21696,11 @@ msgstr "请求超时" msgid "Request URL" msgstr "请求URL" +#. Title of the request-to-delete-data Web Form +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json +msgid "Request for Account Deletion" +msgstr "" + #. Label of the requested_numbers (Code) field in DocType 'SMS Log' #: frappe/core/doctype/sms_log/sms_log.json msgid "Requested Numbers" @@ -21654,11 +21752,11 @@ msgstr "重置图表" msgid "Reset Dashboard Customizations" msgstr "重置仪表板自定义" -#: frappe/public/js/frappe/list/list_settings.js:230 +#: frappe/public/js/frappe/list/list_settings.js:228 msgid "Reset Fields" msgstr "重置字段" -#: frappe/core/doctype/user/user.js:179 frappe/core/doctype/user/user.js:182 +#: frappe/core/doctype/user/user.js:172 frappe/core/doctype/user/user.js:175 msgid "Reset LDAP Password" msgstr "重置LDAP密码" @@ -21666,11 +21764,11 @@ msgstr "重置LDAP密码" msgid "Reset Layout" msgstr "重置" -#: frappe/core/doctype/user/user.js:230 +#: frappe/core/doctype/user/user.js:223 msgid "Reset OTP Secret" msgstr "重置一次性密码" -#: frappe/core/doctype/user/user.js:163 frappe/www/login.html:199 +#: frappe/core/doctype/user/user.js:156 frappe/www/login.html:199 #: frappe/www/me.html:48 frappe/www/update-password.html:3 #: frappe/www/update-password.html:32 msgid "Reset Password" @@ -21705,7 +21803,7 @@ msgstr "重置为默认" msgid "Reset sorting" msgstr "重置排序" -#: frappe/public/js/frappe/form/grid_row.js:417 +#: frappe/public/js/frappe/form/grid_row.js:434 msgid "Reset to default" msgstr "恢复默认设置" @@ -21743,6 +21841,7 @@ msgid "Resource TOS URI" msgstr "" #. Label of the response (Text Editor) field in DocType 'Email Template' +#. Label of the response_html (Code) field in DocType 'Email Template' #. Label of the response_section (Section Break) field in DocType 'Integration #. Request' #. Label of the response (Code) field in DocType 'Webhook Request Log' @@ -21752,11 +21851,6 @@ msgstr "" msgid "Response" msgstr "响应" -#. Label of the response_html (Code) field in DocType 'Email Template' -#: frappe/email/doctype/email_template/email_template.json -msgid "Response " -msgstr "响应 " - #. Label of the response_type (Select) field in DocType 'OAuth Client' #: frappe/integrations/doctype/oauth_client/oauth_client.json msgid "Response Type" @@ -21815,7 +21909,7 @@ msgstr "限制行业" msgid "Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111)" msgstr "仅此IP地址限制用户。多个IP地址,可以通过用逗号分隔的补充。也接受像(111.111.111)部分的IP地址" -#: frappe/public/js/frappe/list/list_view.js:196 +#: frappe/public/js/frappe/list/list_view.js:199 msgctxt "Title of message showing restrictions in list view" msgid "Restrictions" msgstr "限制条件" @@ -21849,7 +21943,7 @@ msgstr "返回验证屏幕,并输入您的身份验证应用程序显示的代 msgid "Reverse Icon Color" msgstr "反转图标颜色" -#: frappe/database/schema.py:161 +#: frappe/database/schema.py:165 msgid "Reverting length to {0} for '{1}' in '{2}'. Setting the length as {3} will cause truncation of data." msgstr "正在将'{2}'中'{1}'的长度恢复为{0}。设置为{3}将导致数据截断。" @@ -21867,9 +21961,7 @@ msgstr "撤销" msgid "Revoked" msgstr "撤销" -#. Option for the 'Content Type' (Select) field in DocType 'Blog Post' #. Option for the 'Content Type' (Select) field in DocType 'Web Page' -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/web_page/web_page.js:92 #: frappe/website/doctype/web_page/web_page.json msgid "Rich Text" @@ -21910,6 +22002,7 @@ msgstr "机器人自动回复文字" #. Label of the role (Link) field in DocType 'DocPerm' #. Label of the role (Link) field in DocType 'Has Role' #. Name of a DocType +#. Label of the role (Link) field in DocType 'User 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 @@ -21923,6 +22016,7 @@ msgstr "机器人自动回复文字" #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/has_role/has_role.json #: frappe/core/doctype/role/role.json +#: frappe/core/doctype/user_role/user_role.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/user_type/user_type.py:110 #: frappe/core/page/permission_manager/permission_manager.js:219 @@ -21961,7 +22055,7 @@ msgstr "网页和报表角色权限" #. Label of the permissions_section (Section Break) field in DocType 'User #. Document Type' #: frappe/core/doctype/user_document_type/user_document_type.json -#: frappe/public/js/frappe/roles_editor.js:103 +#: frappe/public/js/frappe/roles_editor.js:114 msgid "Role Permissions" msgstr "角色权限" @@ -21971,7 +22065,7 @@ msgstr "角色权限" msgid "Role Permissions Manager" msgstr "角色权限管理" -#: frappe/public/js/frappe/list/list_view.js:1786 +#: frappe/public/js/frappe/list/list_view.js:1935 msgctxt "Button in list view menu" msgid "Role Permissions Manager" msgstr "角色权限管理器" @@ -22014,6 +22108,7 @@ msgstr "已根据用户类型{0}设置角色" #. Label of the roles (Table) field in DocType 'Role Permission for Page and #. Report' #. Label of the sb1 (Section Break) field in DocType 'User' +#. Label of the roles (Table MultiSelect) field in DocType 'User Invitation' #. Label of the roles_section (Section Break) field in DocType 'Custom HTML #. Block' #. Label of the roles (Table) field in DocType 'Custom HTML Block' @@ -22023,6 +22118,7 @@ msgstr "已根据用户类型{0}设置角色" #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json #: frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.json #: frappe/core/doctype/user/user.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/page/permission_manager/permission_manager.js:66 #: frappe/desk/doctype/custom_html_block/custom_html_block.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.json @@ -22059,7 +22155,7 @@ msgstr "角色HTML" msgid "Roles can be set for users from their User page." msgstr "可以在用户主数据页面为用户分派角色。" -#: frappe/utils/nestedset.py:280 +#: frappe/utils/nestedset.py:293 msgid "Root {0} cannot be deleted" msgstr "根{0}无法删除" @@ -22079,8 +22175,6 @@ msgstr "圆整方式" #. Label of the route (Data) field in DocType 'Navbar Item' #. Label of the route (Data) field in DocType 'DocType Layout' #. Label of the route (Data) field in DocType 'Route History' -#. Label of the route (Data) field in DocType 'Blog Category' -#. Label of the route (Data) field in DocType 'Blog Post' #. Label of the route (Data) field in DocType 'Help Article' #. Label of the route (Data) field in DocType 'Help Category' #. Label of the route (Data) field in DocType 'Portal Menu Item' @@ -22092,8 +22186,6 @@ msgstr "圆整方式" #: frappe/core/doctype/navbar_item/navbar_item.json #: frappe/custom/doctype/doctype_layout/doctype_layout.json #: frappe/desk/doctype/route_history/route_history.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/help_category/help_category.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -22118,24 +22210,24 @@ msgstr "网址重定向" msgid "Route: Example \"/app\"" msgstr "路径: 例如 \"/app\"" -#: frappe/model/base_document.py:852 frappe/model/document.py:779 +#: frappe/model/base_document.py:909 frappe/model/document.py:779 msgid "Row" msgstr "行" -#: frappe/core/doctype/version/version_view.html:73 +#: frappe/core/doctype/version/version_view.html:74 msgid "Row #" msgstr "行#" -#: frappe/core/doctype/doctype/doctype.py:1831 -#: frappe/core/doctype/doctype/doctype.py:1841 +#: frappe/core/doctype/doctype/doctype.py:1845 +#: frappe/core/doctype/doctype/doctype.py:1855 msgid "Row # {0}: Non administrator user can not set the role {1} to the custom doctype" msgstr "行号{0}:非管理员用户无法为自定义文档类型设置角色{1}" -#: frappe/model/base_document.py:982 +#: frappe/model/base_document.py:1039 msgid "Row #{0}:" msgstr "行#{0}:" -#: frappe/core/doctype/doctype/doctype.py:491 +#: frappe/core/doctype/doctype/doctype.py:492 msgid "Row #{}: Fieldname is required" msgstr "行号{}:字段名必填" @@ -22144,11 +22236,6 @@ msgstr "行号{}:字段名必填" msgid "Row Format" msgstr "行格式" -#. Label of the row_index (Data) field in DocType 'Transaction Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Row Index" -msgstr "行索引" - #. Label of the row_indexes (Code) field in DocType 'Data Import Log' #: frappe/core/doctype/data_import_log/data_import_log.json msgid "Row Indexes" @@ -22163,7 +22250,7 @@ msgstr "行名称" msgid "Row Number" msgstr "行号" -#: frappe/core/doctype/version/version_view.html:68 +#: frappe/core/doctype/version/version_view.html:69 msgid "Row Values Changed" msgstr "明细表变更" @@ -22171,30 +22258,33 @@ msgstr "明细表变更" msgid "Row {0}" msgstr "第{0}行" -#: frappe/custom/doctype/customize_form/customize_form.py:352 +#: frappe/custom/doctype/customize_form/customize_form.py:357 msgid "Row {0}: Not allowed to disable Mandatory for standard fields" msgstr "第{0}行:不允许更改系统标准字段的必填属性" -#: frappe/custom/doctype/customize_form/customize_form.py:341 +#: frappe/custom/doctype/customize_form/customize_form.py:346 msgid "Row {0}: Not allowed to enable Allow on Submit for standard fields" msgstr "行{0}:不允许启用允许对提交的标准字段" #. Label of the rows_added_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Added" msgstr "新增行" #. Label of the rows_removed_section (Section Break) field in DocType 'Audit #. Trail' #: frappe/core/doctype/audit_trail/audit_trail.json -#: frappe/core/doctype/version/version_view.html:32 +#: frappe/core/doctype/version/version_view.html:33 msgid "Rows Removed" msgstr "已删除行" #. Label of the rows_threshold_for_grid_search (Int) field in DocType 'DocType' +#. Label of the rows_threshold_for_grid_search (Int) field in DocType +#. 'Customize Form' #: frappe/core/doctype/doctype/doctype.json +#: frappe/custom/doctype/customize_form/customize_form.json msgid "Rows Threshold for Grid Search" msgstr "" @@ -22285,7 +22375,7 @@ msgstr "短信参数" msgid "SMS Settings" msgstr "短信设置" -#: frappe/core/doctype/sms_settings/sms_settings.py:110 +#: frappe/core/doctype/sms_settings/sms_settings.py:114 msgid "SMS sent successfully" msgstr "短信发送成功" @@ -22363,7 +22453,7 @@ msgstr "销售队伍" msgid "Salutation" msgstr "称谓" -#: frappe/integrations/doctype/webhook/webhook.py:109 +#: frappe/integrations/doctype/webhook/webhook.py:113 msgid "Same Field is entered more than once" msgstr "相同字段不止一次输入" @@ -22391,20 +22481,20 @@ msgstr "星期六" #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' #: frappe/core/doctype/data_import/data_import.js:113 #: frappe/email/doctype/notification/notification.json -#: frappe/printing/page/print/print.js:858 +#: frappe/printing/page/print/print.js:898 #: frappe/printing/page/print_format_builder/print_format_builder.js:160 -#: frappe/public/js/frappe/form/footer/form_timeline.js:677 +#: frappe/public/js/frappe/form/footer/form_timeline.js:678 #: frappe/public/js/frappe/form/quick_entry.js:185 -#: frappe/public/js/frappe/list/list_settings.js:36 -#: frappe/public/js/frappe/list/list_settings.js:247 +#: frappe/public/js/frappe/list/list_settings.js:37 +#: frappe/public/js/frappe/list/list_settings.js:245 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:25 #: frappe/public/js/frappe/ui/toolbar/toolbar.js:364 #: frappe/public/js/frappe/utils/common.js:443 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:45 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:189 -#: frappe/public/js/frappe/views/kanban/kanban_view.js:343 -#: frappe/public/js/frappe/views/reports/query_report.js:1946 -#: frappe/public/js/frappe/views/reports/report_view.js:1726 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:357 +#: frappe/public/js/frappe/views/reports/query_report.js:1965 +#: frappe/public/js/frappe/views/reports/report_view.js:1735 #: frappe/public/js/frappe/views/workspace/workspace.js:335 #: frappe/public/js/frappe/widgets/base_widget.js:142 #: frappe/public/js/frappe/widgets/quick_list_widget.js:120 @@ -22413,16 +22503,12 @@ msgstr "星期六" msgid "Save" msgstr "保存" -#: frappe/core/doctype/user/user.js:339 -msgid "Save API Secret: {0}" -msgstr "保存API密钥:{0}" - #: frappe/workflow/doctype/workflow/workflow.js:143 msgid "Save Anyway" msgstr "仍然保存" -#: frappe/public/js/frappe/views/reports/report_view.js:1388 -#: frappe/public/js/frappe/views/reports/report_view.js:1733 +#: frappe/public/js/frappe/views/reports/report_view.js:1390 +#: frappe/public/js/frappe/views/reports/report_view.js:1742 msgid "Save As" msgstr "另存为" @@ -22430,11 +22516,11 @@ msgstr "另存为" msgid "Save Customizations" msgstr "保存自定义" -#: frappe/public/js/frappe/views/reports/query_report.js:1949 +#: frappe/public/js/frappe/views/reports/query_report.js:1968 msgid "Save Report" msgstr "保存报表" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:97 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:107 msgid "Save filters" msgstr "保存过滤条件" @@ -22459,7 +22545,7 @@ msgstr "已保存" msgid "Saved Filters" msgstr "已保存的筛选器" -#: frappe/public/js/frappe/list/list_settings.js:40 +#: 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:348 msgid "Saving" @@ -22538,7 +22624,7 @@ msgstr "已排程后台任务" msgid "Scheduled Jobs Logs" msgstr "后台任务日志" -#: frappe/core/doctype/server_script/server_script.py:148 +#: frappe/core/doctype/server_script/server_script.py:150 msgid "Scheduled execution for script {0} has updated" msgstr "脚本{0}的计划执行已更新" @@ -22561,7 +22647,7 @@ msgstr "调度器" msgid "Scheduler Event" msgstr "后台任务事件" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler Inactive" msgstr "后台任务未启动" @@ -22574,7 +22660,7 @@ msgstr "调度器状态" msgid "Scheduler can not be re-enabled when maintenance mode is active." msgstr "维护模式激活时无法重新启用调度器。" -#: frappe/core/doctype/data_import/data_import.py:106 +#: frappe/core/doctype/data_import/data_import.py:107 msgid "Scheduler is inactive. Cannot import data." msgstr "后台任务未启动,无法导入数据" @@ -22706,7 +22792,7 @@ msgstr "搜索结果" msgid "Search by filename or extension" msgstr "按文件名或后缀搜索" -#: frappe/core/doctype/doctype/doctype.py:1467 +#: frappe/core/doctype/doctype/doctype.py:1468 msgid "Search field {0} is not valid" msgstr "搜索字段{0}无效" @@ -22806,7 +22892,7 @@ msgstr "安全设置" msgid "See all Activity" msgstr "查看所有活动" -#: frappe/public/js/frappe/views/reports/query_report.js:854 +#: frappe/public/js/frappe/views/reports/query_report.js:863 msgid "See all past reports." msgstr "点这儿可以查看之前的历史报表。" @@ -22815,7 +22901,7 @@ msgstr "点这儿可以查看之前的历史报表。" msgid "See on Website" msgstr "在门户网站查看" -#: frappe/website/doctype/web_form/templates/web_form.html:153 +#: frappe/website/doctype/web_form/templates/web_form.html:160 msgctxt "Button in web form" msgid "See previous responses" msgstr "查看之前的响应" @@ -22862,7 +22948,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/printing/page/print/print.js:602 +#: frappe/printing/page/print/print.js:642 #: frappe/website/doctype/web_form_field/web_form_field.json #: frappe/website/doctype/web_template_field/web_template_field.json msgid "Select" @@ -22870,28 +22956,28 @@ msgstr "单选" #: frappe/public/js/frappe/data_import/data_exporter.js:149 #: frappe/public/js/frappe/form/controls/multicheck.js:166 -#: frappe/public/js/frappe/form/grid_row.js:481 +#: frappe/public/js/frappe/form/grid_row.js:498 msgid "Select All" msgstr "全选" #: frappe/public/js/frappe/views/communication.js:177 -#: frappe/public/js/frappe/views/communication.js:598 +#: frappe/public/js/frappe/views/communication.js:601 #: frappe/public/js/frappe/views/interaction.js:93 #: frappe/public/js/frappe/views/interaction.js:155 msgid "Select Attachments" msgstr "选择附件" -#: frappe/custom/doctype/client_script/client_script.js:25 -#: frappe/custom/doctype/client_script/client_script.js:28 +#: frappe/custom/doctype/client_script/client_script.js:27 +#: frappe/custom/doctype/client_script/client_script.js:30 msgid "Select Child Table" msgstr "选择子表" -#: frappe/public/js/frappe/views/reports/report_view.js:383 +#: frappe/public/js/frappe/views/reports/report_view.js:388 msgid "Select Column" msgstr "选择列" #: frappe/printing/page/print_format_builder/print_format_builder_field.html:42 -#: frappe/public/js/frappe/form/print_utils.js:58 +#: frappe/public/js/frappe/form/print_utils.js:73 msgid "Select Columns" msgstr "选择列" @@ -22950,12 +23036,15 @@ msgstr "选择字段" msgid "Select Field..." msgstr "选择字段" -#: frappe/public/js/frappe/form/grid_row.js:473 -#: frappe/public/js/frappe/list/list_settings.js:236 +#: frappe/public/js/frappe/form/grid_row.js:490 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:181 msgid "Select Fields" msgstr "选择字段" +#: frappe/public/js/frappe/list/list_settings.js:234 +msgid "Select Fields (Up to {0})" +msgstr "" + #: frappe/public/js/frappe/data_import/data_exporter.js:147 msgid "Select Fields To Insert" msgstr "选择字段" @@ -22968,7 +23057,7 @@ msgstr "选择要更新的字段" msgid "Select Filters" msgstr "选择过滤条件" -#: frappe/desk/doctype/event/event.py:103 +#: frappe/desk/doctype/event/event.py:107 msgid "Select Google Calendar to which event should be synced." msgstr "选择要同步事件的Google日历。" @@ -23001,8 +23090,8 @@ msgstr "选择必填字段" msgid "Select Module" msgstr "选择模块" -#: frappe/printing/page/print/print.js:175 -#: frappe/printing/page/print/print.js:585 +#: frappe/printing/page/print/print.js:188 +#: frappe/printing/page/print/print.js:625 msgid "Select Network Printer" msgstr "选择网络打印机" @@ -23067,14 +23156,14 @@ msgid "Select a field to edit its properties." msgstr "选择字段在此编辑属性" #: frappe/public/js/frappe/views/treeview.js:358 -msgid "Select a group node first." -msgstr "请先选择一个组节点。" +msgid "Select a group {0} first." +msgstr "" -#: frappe/core/doctype/doctype/doctype.py:1942 +#: frappe/core/doctype/doctype/doctype.py:1956 msgid "Select a valid Sender Field for creating documents from Email" msgstr "选择有效的发件人字段以从邮件创建文档" -#: frappe/core/doctype/doctype/doctype.py:1926 +#: frappe/core/doctype/doctype/doctype.py:1940 msgid "Select a valid Subject field for creating documents from Email" msgstr "选择有效的主旨字段以从邮件创建文档" @@ -23104,13 +23193,13 @@ msgstr "选择打印ATLEAST 1项纪录" msgid "Select atleast 2 actions" msgstr "选择至少2个操作" -#: frappe/public/js/frappe/list/list_view.js:1302 +#: frappe/public/js/frappe/list/list_view.js:1447 msgctxt "Description of a list view shortcut" msgid "Select list item" msgstr "选择列表项" -#: frappe/public/js/frappe/list/list_view.js:1254 -#: frappe/public/js/frappe/list/list_view.js:1270 +#: frappe/public/js/frappe/list/list_view.js:1399 +#: frappe/public/js/frappe/list/list_view.js:1415 msgctxt "Description of a list view shortcut" msgid "Select multiple list items" msgstr "选择多个列表项" @@ -23144,7 +23233,7 @@ msgstr "选择两个版本比较差异" msgid "Select {0}" msgstr "选择{0}" -#: frappe/model/workflow.py:117 +#: frappe/model/workflow.py:120 msgid "Self approval is not allowed" msgstr "不允许申请者自己批准" @@ -23328,7 +23417,7 @@ msgstr "发件人电子邮箱" msgid "Sender Email Field" msgstr "发件人邮箱字段" -#: frappe/core/doctype/doctype/doctype.py:1945 +#: frappe/core/doctype/doctype/doctype.py:1959 msgid "Sender Field should have Email in options" msgstr "发件人字段选项中应包含邮箱" @@ -23422,7 +23511,7 @@ msgstr "单据类型 {} 的编号模板已更新" msgid "Series counter for {} updated to {} successfully" msgstr "{}的序列计数器成功更新至{}" -#: frappe/core/doctype/doctype/doctype.py:1109 +#: frappe/core/doctype/doctype/doctype.py:1110 #: frappe/core/doctype/document_naming_settings/document_naming_settings.py:170 msgid "Series {0} already used in {1}" msgstr "单据编号模板{0}已经被{1}使用" @@ -23432,7 +23521,7 @@ msgstr "单据编号模板{0}已经被{1}使用" msgid "Server Action" msgstr "服务器操作" -#: frappe/app.py:396 frappe/public/js/frappe/request.js:611 +#: frappe/app.py:399 frappe/public/js/frappe/request.js:611 #: frappe/www/error.html:36 frappe/www/error.py:15 msgid "Server Error" msgstr "服务器错误" @@ -23451,7 +23540,7 @@ msgstr "服务器IP" msgid "Server Script" msgstr "Python脚本" -#: frappe/utils/safe_exec.py:97 +#: frappe/utils/safe_exec.py:98 msgid "Server Scripts are disabled. Please enable server scripts from bench configuration." msgstr "服务器(python)脚本已禁用,可通过后台bench命令 bench set-config -g server_script_enabled 1 启用" @@ -23498,7 +23587,7 @@ msgstr "会话默认值" msgid "Session Defaults Saved" msgstr "会话默认值已保存" -#: frappe/app.py:373 +#: frappe/app.py:376 msgid "Session Expired" msgstr "会话已过期" @@ -23507,14 +23596,14 @@ msgstr "会话已过期" msgid "Session Expiry (idle timeout)" msgstr "会话超时(无操作超时)" -#: frappe/core/doctype/system_settings/system_settings.py:120 +#: frappe/core/doctype/system_settings/system_settings.py:123 msgid "Session Expiry must be in format {0}" msgstr "会话到期格式必须是{0}" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:400 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:487 -#: frappe/desk/doctype/number_card/number_card.js:295 -#: frappe/desk/doctype/number_card/number_card.js:387 +#: frappe/desk/doctype/number_card/number_card.js:307 +#: frappe/desk/doctype/number_card/number_card.js:404 #: frappe/public/js/frappe/widgets/chart_widget.js:447 msgid "Set" msgstr "有值" @@ -23540,12 +23629,12 @@ msgid "Set Default Options for all charts on this Dashboard (Ex: \"colors\": [\" msgstr "设置此数据面板图表的默认选项,例如:颜色:[\"#d1d8dd\", \"#ff5858\"]" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:467 -#: frappe/desk/doctype/number_card/number_card.js:367 +#: frappe/desk/doctype/number_card/number_card.js:384 msgid "Set Dynamic Filters" msgstr "设置动态过滤器" #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:381 -#: frappe/desk/doctype/number_card/number_card.js:280 +#: frappe/desk/doctype/number_card/number_card.js:292 #: frappe/public/js/form_builder/components/Field.vue:80 #: frappe/website/doctype/web_form/web_form.js:269 msgid "Set Filters" @@ -23556,7 +23645,7 @@ msgstr "设置过滤条件" msgid "Set Filters for {0}" msgstr "为{0}设置过滤器" -#: frappe/public/js/frappe/views/reports/query_report.js:2102 +#: frappe/public/js/frappe/views/reports/query_report.js:2121 msgid "Set Level" msgstr "设置层级" @@ -23610,7 +23699,7 @@ msgstr "设置数量" msgid "Set Role For" msgstr "权限对象" -#: frappe/core/doctype/user/user.js:131 +#: frappe/core/doctype/user/user.js:124 #: frappe/core/page/permission_manager/permission_manager.js:72 msgid "Set User Permissions" msgstr "设置用户权限限制" @@ -23620,16 +23709,16 @@ msgstr "设置用户权限限制" msgid "Set Value" msgstr "设定值" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:134 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:146 msgid "Set all private" msgstr "设为私有" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:82 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:94 msgid "Set all public" msgstr "设为公共" -#: frappe/printing/doctype/print_format/print_format.js:49 +#: frappe/printing/doctype/print_format/print_format.js:50 msgid "Set as Default" msgstr "设置为默认值" @@ -23648,18 +23737,21 @@ msgstr "用户输入" msgid "Set dynamic filter values in JavaScript for the required fields here." msgstr "在此处用JavaScript为必填字段设置动态过滤值" -#. Description of the 'Precision' (Select) field in DocType 'DocField' #. Description of the 'Precision' (Select) field in DocType 'Custom Field' #. Description of the 'Precision' (Select) field in DocType 'Customize Form #. Field' #. Description of the 'Precision' (Select) field in DocType 'Web Form Field' -#: frappe/core/doctype/docfield/docfield.json #: frappe/custom/doctype/custom_field/custom_field.json #: frappe/custom/doctype/customize_form_field/customize_form_field.json #: frappe/website/doctype/web_form_field/web_form_field.json msgid "Set non-standard precision for a Float or Currency field" msgstr "为浮点或货币字段设置非标准精度" +#. Description of the 'Precision' (Select) field in DocType 'DocField' +#: frappe/core/doctype/docfield/docfield.json +msgid "Set non-standard precision for a Float, Currency or Percent field" +msgstr "" + #. Label of the set_only_once (Check) field in DocType 'DocField' #: frappe/core/doctype/docfield/docfield.json msgid "Set only once" @@ -23775,14 +23867,9 @@ msgstr "联系我们页面的设置" msgid "Settings for the About Us Page" msgstr "关于我们页面的设置" -#. Description of a DocType -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Settings to control blog categories and interactions like comments and likes" -msgstr "控制博客分类及评论、点赞等交互的设置" - #. Option for the 'Show in Module Section' (Select) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:567 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:576 msgid "Setup" msgstr "设置" @@ -23798,8 +23885,8 @@ msgstr "设置 > 用户" msgid "Setup > User Permissions" msgstr "设置 > 用户权限" -#: frappe/public/js/frappe/views/reports/query_report.js:1815 -#: frappe/public/js/frappe/views/reports/report_view.js:1704 +#: frappe/public/js/frappe/views/reports/query_report.js:1834 +#: frappe/public/js/frappe/views/reports/report_view.js:1713 msgid "Setup Auto Email" msgstr "设置电子邮件自动发送" @@ -23868,11 +23955,6 @@ msgstr "送货地址" msgid "Shop" msgstr "商店" -#. Label of the short_name (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Short Name" -msgstr "简称" - #: frappe/utils/password_strength.py:91 msgid "Short keyboard patterns are easy to guess" msgstr "短键盘模式容易被猜中" @@ -23892,11 +23974,6 @@ msgstr "快捷方式" msgid "Show" msgstr "显示" -#. Label of the show_cta_in_blog (Check) field in DocType 'Blog Settings' -#: frappe/website/doctype/blog_settings/blog_settings.json -msgid "Show \"Call to Action\" in Blog" -msgstr "在博客中显示“行动号召”" - #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType #. 'System Settings' #. Label of the show_absolute_datetime_in_timeline (Check) field in DocType @@ -23949,7 +24026,13 @@ msgstr "显示文档" msgid "Show Error" msgstr "显示错误" -#: frappe/public/js/frappe/form/layout.js:579 +#. Label of the show_external_link_warning (Select) field in DocType 'System +#. Settings' +#: frappe/core/doctype/system_settings/system_settings.json +msgid "Show External Link Warning" +msgstr "" + +#: frappe/public/js/frappe/form/layout.js:578 msgid "Show Fieldname (click to copy on clipboard)" msgstr "显示字段名(点击复制到剪贴板)" @@ -24077,7 +24160,7 @@ msgid "Show Social Login Key as Authorization Server" msgstr "" #: frappe/public/js/frappe/list/list_sidebar.html:77 -#: frappe/public/js/frappe/list/list_view.js:1702 +#: frappe/public/js/frappe/list/list_view.js:1851 msgid "Show Tags" msgstr "显示标签" @@ -24094,7 +24177,7 @@ msgstr "显示标题" msgid "Show Title in Link Fields" msgstr "在链接字段中以标题字段值显示" -#: frappe/public/js/frappe/views/reports/report_view.js:1527 +#: frappe/public/js/frappe/views/reports/report_view.js:1529 msgid "Show Totals" msgstr "显示总计" @@ -24134,10 +24217,6 @@ msgstr "显示所有版本" msgid "Show all activity" msgstr "显示全部日志" -#: frappe/website/doctype/blog_post/templates/blog_post_list.html:24 -msgid "Show all blogs" -msgstr "显示所有博客" - #. Label of the show_as_cc (Small Text) field in DocType 'Email Queue' #: frappe/email/doctype/email_queue/email_queue.json msgid "Show as cc" @@ -24186,8 +24265,8 @@ msgstr "显示文档链接" msgid "Show list" msgstr "显示列表" -#: frappe/public/js/frappe/form/layout.js:273 -#: frappe/public/js/frappe/form/layout.js:291 +#: frappe/public/js/frappe/form/layout.js:272 +#: frappe/public/js/frappe/form/layout.js:290 msgid "Show more details" msgstr "显示更多详情" @@ -24216,7 +24295,7 @@ msgstr "标题显示在浏览器窗口中的“前缀 - 标题”" msgid "Show {0} List" msgstr "查看 {0} 清单" -#: frappe/public/js/frappe/views/reports/report_view.js:501 +#: frappe/public/js/frappe/views/reports/report_view.js:506 msgid "Showing only Numeric fields from Report" msgstr "仅显示来自报表的数字字段" @@ -24251,7 +24330,7 @@ msgstr "边栏和评论" msgid "Sign Up and Confirmation" msgstr "注册与确认" -#: frappe/core/doctype/user/user.py:1022 +#: frappe/core/doctype/user/user.py:1029 msgid "Sign Up is disabled" msgstr "禁止注册" @@ -24288,36 +24367,36 @@ msgstr "注册已禁用" msgid "Signups have been disabled for this website." msgstr "此网站已禁用注册功能" -#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment -#. Rule' -#: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Closed\", \"Cancelled\")" -msgstr "简单的Python表达式,示例:状态(“已关闭”,“已取消”)" - #. Description of the 'Close Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: Status in (\"Invalid\")" -msgstr "简单python表达式,如表示在无效状态下 Status in (\"\"Invalid\"\")" +msgid "Simple Python Expression, Example: status == \"Invalid\"" +msgstr "" #. Description of the 'Assign Condition' (Code) field in DocType 'Assignment #. Rule' #: frappe/automation/doctype/assignment_rule/assignment_rule.json -msgid "Simple Python Expression, Example: status == 'Open' and type == 'Bug'" -msgstr "简单的Python表达式,例如:status =='Open'并输入=='Bug'" +msgid "Simple Python Expression, Example: status == 'Open' and issue_type == 'Bug'" +msgstr "" + +#. Description of the 'Unassign Condition' (Code) field in DocType 'Assignment +#. Rule' +#: frappe/automation/doctype/assignment_rule/assignment_rule.json +msgid "Simple Python Expression, Example: status in (\"Closed\", \"Cancelled\")" +msgstr "" #. Label of the simultaneous_sessions (Int) field in DocType 'User' #: frappe/core/doctype/user/user.json msgid "Simultaneous Sessions" msgstr "并发会话" -#: frappe/custom/doctype/customize_form/customize_form.py:125 +#: frappe/custom/doctype/customize_form/customize_form.py:128 msgid "Single DocTypes cannot be customized." msgstr "不支持定制单笔记录单据类型" #. Description of the 'Is Single' (Check) field in DocType 'DocType' #: frappe/core/doctype/doctype/doctype.json -#: frappe/core/doctype/doctype/doctype_list.js:67 +#: frappe/core/doctype/doctype/doctype_list.js:68 msgid "Single Types have only one record no tables associated. Values are stored in tabSingles" msgstr "单笔记录单据类型只有一条记录,适用于存储系统或模块配置信息,没有独立的后台数据库表。所有单笔记录类型的数据被统一保存在名为tabSingles后台数据库表内。" @@ -24325,7 +24404,7 @@ msgstr "单笔记录单据类型只有一条记录,适用于存储系统或模 msgid "Site is running in read only mode for maintenance or site update, this action can not be performed right now. Please try again later." msgstr "站点处于维护或更新的只读模式,当前操作不可执行,请稍后重试" -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 msgid "Size" msgstr "大小" @@ -24544,11 +24623,11 @@ msgstr "在令牌生成期间出了点问题。单击{0}以生成新的。" msgid "Something went wrong." msgstr "出现错误" -#: frappe/public/js/frappe/views/pageview.js:114 +#: frappe/public/js/frappe/views/pageview.js:117 msgid "Sorry! I could not find what you were looking for." msgstr "抱歉,无法找你要的信息。" -#: frappe/public/js/frappe/views/pageview.js:122 +#: frappe/public/js/frappe/views/pageview.js:125 msgid "Sorry! You are not permitted to view this page." msgstr "抱歉,你不允许查看此页面。" @@ -24579,20 +24658,23 @@ msgstr "按选项值排序" msgid "Sort Order" msgstr "排序" -#: frappe/core/doctype/doctype/doctype.py:1550 +#: frappe/core/doctype/doctype/doctype.py:1551 msgid "Sort field {0} must be a valid fieldname" msgstr "排序字段{0}必须是有效的字段名" #. Label of the source (Data) field in DocType 'Web Page View' #. Label of the source (Small Text) field in DocType 'Website Route Redirect' -#: frappe/public/js/frappe/ui/toolbar/about.js:8 -#: frappe/public/js/frappe/utils/utils.js:1720 +#: frappe/public/js/frappe/utils/utils.js:1757 #: frappe/website/doctype/web_page_view/web_page_view.json #: frappe/website/doctype/website_route_redirect/website_route_redirect.json #: frappe/website/report/website_analytics/website_analytics.js:38 msgid "Source" msgstr "来源" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "Source Code" +msgstr "" + #. Label of the source_name (Data) field in DocType 'Dashboard Chart Source' #: frappe/desk/doctype/dashboard_chart_source/dashboard_chart_source.json msgid "Source Name" @@ -24619,6 +24701,12 @@ msgstr "垃圾邮件" msgid "SparkPost" msgstr "SparkPost" +#. Description of the 'Asynchronous' (Check) field in DocType 'Workflow +#. Transition Task' +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Spawns actions in a background job" +msgstr "" + #: frappe/custom/doctype/custom_field/custom_field.js:83 msgid "Special Characters are not allowed" msgstr "不能使用特殊字符" @@ -24643,8 +24731,8 @@ msgstr "指定允许嵌入此表单的域名或源。每行输入一个域名( msgid "Splash Image" msgstr "启动图像" -#: frappe/desk/reportview.py:419 -#: frappe/public/js/frappe/web_form/web_form_list.js:175 +#: frappe/desk/reportview.py:455 +#: frappe/public/js/frappe/web_form/web_form_list.js:176 #: frappe/templates/print_formats/standard_macros.html:44 msgid "Sr" msgstr "序号" @@ -24676,11 +24764,11 @@ msgstr "调用栈" msgid "Standard" msgstr "标准" -#: frappe/model/delete_doc.py:79 +#: frappe/model/delete_doc.py:119 msgid "Standard DocType can not be deleted." msgstr "标准文档类型不可删除" -#: frappe/core/doctype/doctype/doctype.py:228 +#: frappe/core/doctype/doctype/doctype.py:229 msgid "Standard DocType cannot have default print format, use Customize Form" msgstr "不能为标准DocType设置默认打印格式,请使用定制表单功能" @@ -24692,7 +24780,7 @@ msgstr "未设置标准" msgid "Standard Permissions" msgstr "标准权限" -#: frappe/printing/doctype/print_format/print_format.py:81 +#: frappe/printing/doctype/print_format/print_format.py:82 msgid "Standard Print Format cannot be updated" msgstr "不能更新标准打印格式" @@ -24700,11 +24788,11 @@ msgstr "不能更新标准打印格式" msgid "Standard Print Style cannot be changed. Please duplicate to edit." msgstr "标准打印样式无法更改。请重复编辑。" -#: frappe/desk/reportview.py:354 +#: frappe/desk/reportview.py:355 msgid "Standard Reports cannot be deleted" msgstr "标准报表不可删除" -#: frappe/desk/reportview.py:325 +#: frappe/desk/reportview.py:326 msgid "Standard Reports cannot be edited" msgstr "标准报表不可编辑" @@ -24736,8 +24824,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:296 -#: frappe/printing/page/print/print.js:343 +#: frappe/printing/page/print/print.js:309 +#: frappe/printing/page/print/print.js:356 msgid "Start" msgstr "开始" @@ -24745,7 +24833,7 @@ msgstr "开始" #. Label of the start_date (Date) field in DocType 'Audit Trail' #. Label of the start_date (Datetime) field in DocType 'Web Page' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:142 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:150 #: frappe/core/doctype/audit_trail/audit_trail.json #: frappe/public/js/frappe/utils/common.js:409 #: frappe/website/doctype/web_page/web_page.json @@ -24810,6 +24898,7 @@ msgstr "开始时间" #. Label of the state (Link) field in DocType 'Workflow Document State' #. Label of the workflow_state_name (Data) field in DocType 'Workflow State' #. Label of the state (Link) field in DocType 'Workflow Transition' +#: frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.py:40 #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/workflow/doctype/workflow/workflow.js:162 #: frappe/workflow/doctype/workflow_document_state/workflow_document_state.json @@ -24818,7 +24907,7 @@ msgstr "开始时间" msgid "State" msgstr "状态" -#: frappe/public/js/workflow_builder/components/Properties.vue:24 +#: frappe/public/js/workflow_builder/components/Properties.vue:26 msgid "State Properties" msgstr "状态属性" @@ -24874,6 +24963,7 @@ msgstr "频率" #. Label of the status_section (Section Break) field in DocType 'Scheduled Job #. Type' #. Label of the status (Select) field in DocType 'Submission Queue' +#. Label of the status (Select) field in DocType 'User Invitation' #. Label of the status (Select) field in DocType 'Event' #. Label of the status (Select) field in DocType 'Kanban Board Column' #. Label of the status (Select) field in DocType 'ToDo' @@ -24898,6 +24988,7 @@ msgstr "频率" #: frappe/core/doctype/scheduled_job_log/scheduled_job_log.json #: frappe/core/doctype/scheduled_job_type/scheduled_job_type.json #: frappe/core/doctype/submission_queue/submission_queue.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/kanban_board_column/kanban_board_column.json #: frappe/desk/doctype/todo/todo.json @@ -24905,8 +24996,8 @@ msgstr "频率" #: frappe/email/doctype/email_queue_recipient/email_queue_recipient.json #: frappe/integrations/doctype/integration_request/integration_request.json #: frappe/integrations/doctype/oauth_bearer_token/oauth_bearer_token.json -#: frappe/public/js/frappe/list/list_settings.js:359 -#: frappe/public/js/frappe/views/reports/report_view.js:975 +#: frappe/public/js/frappe/list/list_settings.js:357 +#: frappe/public/js/frappe/views/reports/report_view.js:980 #: frappe/website/doctype/personal_data_deletion_request/personal_data_deletion_request.json #: frappe/website/doctype/personal_data_deletion_step/personal_data_deletion_step.json #: frappe/workflow/doctype/workflow_action/workflow_action.json @@ -24943,7 +25034,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:438 +#: frappe/public/js/frappe/form/grid_row.js:455 msgid "Sticky" msgstr "置顶" @@ -24973,6 +25064,10 @@ msgstr "按表的存储使用量" msgid "Store Attached PDF Document" msgstr "存储PDF附件" +#: frappe/core/doctype/user/user.js:497 +msgid "Store the API secret securely. It won't be displayed again." +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." @@ -25051,7 +25146,7 @@ msgstr "子域名" #: frappe/desk/doctype/event/event.json #: frappe/desk/doctype/notification_log/notification_log.json #: frappe/email/doctype/email_template/email_template.json -#: frappe/email/doctype/notification/notification.js:200 +#: frappe/email/doctype/notification/notification.js:204 #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/views/communication.js:119 #: frappe/public/js/frappe/views/inbox/inbox_view.js:63 @@ -25067,7 +25162,7 @@ msgstr "主题" msgid "Subject Field" msgstr "主题字段" -#: frappe/core/doctype/doctype/doctype.py:1935 +#: frappe/core/doctype/doctype/doctype.py:1949 msgid "Subject Field type should be Data, Text, Long Text, Small Text, Text Editor" msgstr "主题字段类型应为数据、文本、长文本、短文本或文本编辑器" @@ -25081,6 +25176,7 @@ msgstr "提交队列" #. Label of the submit (Check) field in DocType 'DocShare' #. Label of the submit (Check) field in DocType 'User Document Type' #. Option for the 'Send Alert On' (Select) field in DocType 'Notification' +#. Button label of the request-to-delete-data Web Form #: frappe/core/doctype/custom_docperm/custom_docperm.json #: frappe/core/doctype/docperm/docperm.json #: frappe/core/doctype/docshare/docshare.json @@ -25089,10 +25185,11 @@ msgstr "提交队列" #: frappe/email/doctype/notification/notification.json #: frappe/public/js/frappe/form/quick_entry.js:225 #: frappe/public/js/frappe/ui/capture.js:307 +#: frappe/website/web_form/request_to_delete_data/request_to_delete_data.json msgid "Submit" msgstr "提交" -#: frappe/public/js/frappe/list/list_view.js:2084 +#: frappe/public/js/frappe/list/list_view.js:2233 msgctxt "Button in list view actions menu" msgid "Submit" msgstr "提交" @@ -25102,7 +25199,7 @@ msgctxt "Button in web form" msgid "Submit" msgstr "提交" -#: frappe/public/js/frappe/ui/dialog.js:62 +#: frappe/public/js/frappe/ui/dialog.js:64 msgctxt "Primary action in dialog" msgid "Submit" msgstr "提交" @@ -25126,7 +25223,7 @@ msgstr "将上传单据状态设为已提交" msgid "Submit an Issue" msgstr "提交问题" -#: frappe/website/doctype/web_form/templates/web_form.html:156 +#: frappe/website/doctype/web_form/templates/web_form.html:163 msgctxt "Button in web form" msgid "Submit another response" msgstr "提交其他响应" @@ -25138,7 +25235,7 @@ msgstr "提交按钮标签" #. Label of the submit_on_creation (Check) field in DocType 'Auto Repeat' #: frappe/automation/doctype/auto_repeat/auto_repeat.json -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:128 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:132 msgid "Submit on Creation" msgstr "创建时提交" @@ -25150,7 +25247,7 @@ msgstr "提交此文档以完成此步骤" msgid "Submit this document to confirm" msgstr "点提交按钮进行确认" -#: frappe/public/js/frappe/list/list_view.js:2089 +#: frappe/public/js/frappe/list/list_view.js:2238 msgctxt "Title of confirmation dialog" msgid "Submit {0} documents?" msgstr "是否提交{0}个文档?" @@ -25159,11 +25256,11 @@ msgstr "是否提交{0}个文档?" #: frappe/core/doctype/comment/comment.json #: frappe/public/js/frappe/model/indicator.js:95 #: frappe/public/js/frappe/ui/filters/filter.js:539 -#: frappe/website/doctype/web_form/templates/web_form.html:136 +#: frappe/website/doctype/web_form/templates/web_form.html:143 msgid "Submitted" msgstr "已提交" -#: frappe/workflow/doctype/workflow/workflow.py:103 +#: frappe/workflow/doctype/workflow/workflow.py:104 msgid "Submitted Document cannot be converted back to draft. Transition row {0}" msgstr "行{0}中的已提交的单据不能转换为草稿。" @@ -25186,9 +25283,7 @@ msgid "Subsidiary" msgstr "分支机构" #. Label of the subtitle (Data) field in DocType 'Module Onboarding' -#. Label of the subtitle (Data) field in DocType 'Blog Settings' #: frappe/desk/doctype/module_onboarding/module_onboarding.json -#: frappe/website/doctype/blog_settings/blog_settings.json msgid "Subtitle" msgstr "子标题" @@ -25202,7 +25297,7 @@ msgstr "子标题" #: frappe/core/doctype/data_import_log/data_import_log.json #: frappe/desk/doctype/bulk_update/bulk_update.js:31 #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 -#: frappe/public/js/frappe/form/grid.js:1170 +#: frappe/public/js/frappe/form/grid.js:1172 #: frappe/public/js/frappe/views/translation_manager.js:21 #: frappe/templates/includes/login/login.js:230 #: frappe/templates/includes/login/login.js:236 @@ -25244,20 +25339,16 @@ msgstr "成功消息" msgid "Success title" msgstr "成功标题" -#: frappe/www/update-password.html:94 -msgid "Success! You are good to go 👍" -msgstr "成功!你很好去👍" - #. Label of the successful_job_count (Int) field in DocType 'RQ Worker' #: frappe/core/doctype/rq_worker/rq_worker.json msgid "Successful Job Count" msgstr "成功任务数量" -#: frappe/model/workflow.py:307 +#: frappe/model/workflow.py:363 msgid "Successful Transactions" msgstr "成功事务" -#: frappe/model/rename_doc.py:699 +#: frappe/model/rename_doc.py:698 msgid "Successful: {0} to {1}" msgstr "成功:{0} {1}" @@ -25299,7 +25390,7 @@ msgstr "建议优化" msgid "Suggested Indexes" msgstr "建议索引" -#: frappe/core/doctype/user/user.py:726 +#: frappe/core/doctype/user/user.py:733 msgid "Suggested Username: {0}" msgstr "建议用户名:{0}" @@ -25421,7 +25512,7 @@ msgstr "同步" msgid "Syncing {0} of {1}" msgstr "正在同步{1}中的{0}" -#: frappe/utils/data.py:2529 +#: frappe/utils/data.py:2573 msgid "Syntax Error" msgstr "语法错误" @@ -25544,6 +25635,7 @@ msgstr "系统日志" #: frappe/core/doctype/translation/translation.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group/user_group.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/doctype/user_type/user_type.json #: frappe/core/doctype/version/version.json @@ -25626,6 +25718,7 @@ msgstr "系统日志" #: frappe/workflow/doctype/workflow/workflow.json #: frappe/workflow/doctype/workflow_action_master/workflow_action_master.json #: frappe/workflow/doctype/workflow_state/workflow_state.json +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json msgid "System Manager" msgstr "系统管理员" @@ -25699,7 +25792,7 @@ msgstr "表" msgid "Table Break" msgstr "表格分页符" -#: frappe/core/doctype/version/version_view.html:72 +#: frappe/core/doctype/version/version_view.html:73 msgid "Table Field" msgstr "表字段" @@ -25708,7 +25801,7 @@ msgstr "表字段" msgid "Table Fieldname" msgstr "表字段名" -#: frappe/core/doctype/doctype/doctype.py:1203 +#: frappe/core/doctype/doctype/doctype.py:1204 msgid "Table Fieldname Missing" msgstr "缺失表格字段名" @@ -25730,11 +25823,11 @@ msgstr "表-多选" msgid "Table Trimmed" msgstr "表格已截断" -#: frappe/public/js/frappe/form/grid.js:1169 +#: frappe/public/js/frappe/form/grid.js:1171 msgid "Table updated" msgstr "表更新" -#: frappe/model/document.py:1574 +#: frappe/model/document.py:1578 msgid "Table {0} cannot be empty" msgstr "表{0}不能为空" @@ -25776,11 +25869,18 @@ msgstr "拍照" msgid "Target" msgstr "目标" +#. Label of the task (Select) field in DocType 'Workflow Transition Task' #: frappe/desk/doctype/todo/todo_calendar.js:19 #: frappe/desk/doctype/todo/todo_calendar.js:25 +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json msgid "Task" msgstr "任务" +#. Label of the tasks (Table) field in DocType 'Workflow Transition Tasks' +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Tasks" +msgstr "任务" + #. Label of the sb1 (Section Break) field in DocType 'About Us Settings' #. Label of the team_members (Table) field in DocType 'About Us Settings' #: frappe/website/doctype/about_us_settings/about_us_settings.json @@ -25842,7 +25942,7 @@ msgstr "模板警告" msgid "Templates" msgstr "模板" -#: frappe/core/doctype/user/user.py:1033 +#: frappe/core/doctype/user/user.py:1042 msgid "Temporarily Disabled" msgstr "暂时禁用" @@ -25916,7 +26016,7 @@ msgstr "感谢您联系我们。我们将尽快给您回复。\n\n\n" "您的问题\n\n" "{0}" -#: frappe/website/doctype/web_form/templates/web_form.html:140 +#: frappe/website/doctype/web_form/templates/web_form.html:147 msgid "Thank you for spending your valuable time to fill this form" msgstr "感谢您花时间填写此表单" @@ -25940,7 +26040,7 @@ msgstr "谢谢" msgid "The Auto Repeat for this document has been disabled." msgstr "此文档的自动重复功能已禁用。" -#: frappe/public/js/frappe/form/grid.js:1192 +#: frappe/public/js/frappe/form/grid.js:1194 msgid "The CSV format is case sensitive" msgstr "CSV格式区分大小写" @@ -25953,15 +26053,15 @@ msgstr "从 Google Cloud Console 下的 获取的客户端 ID" -#: frappe/email/doctype/notification/notification.py:201 +#: frappe/email/doctype/notification/notification.py:219 msgid "The Condition '{0}' is invalid" msgstr "条件“{0}”无效" -#: frappe/core/doctype/file/file.py:208 +#: frappe/core/doctype/file/file.py:220 msgid "The File URL you've entered is incorrect" msgstr "您输入的文件URL不正确" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:108 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:112 msgid "The Next Scheduled Date cannot be later than the End Date." msgstr "下次计划日期不能晚于结束日期。" @@ -26004,7 +26104,7 @@ msgstr "更改已还原。" msgid "The column {0} has {1} different date formats. Automatically setting {2} as the default format as it is the most common. Please change other values in this column to this format." msgstr "列{0}存在{1}种日期格式。自动将最常见的{2}设为默认格式。请将此列其他值更改为该格式。" -#: frappe/templates/includes/comments/comments.py:34 +#: frappe/templates/includes/comments/comments.py:48 msgid "The comment cannot be empty" msgstr "评论内容不能为空" @@ -26012,7 +26112,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:658 +#: frappe/public/js/frappe/list/list_view.js:687 msgid "The count shown is an estimated count. Click here to see the accurate count." msgstr "显示数量为估算值。点击此处查看精确数量。" @@ -26042,7 +26142,7 @@ msgstr "所选文档类型为子表,需指定父文档类型。" msgid "The field {0} is mandatory" msgstr "字段{0}为必填项" -#: frappe/core/doctype/file/file.py:145 +#: frappe/core/doctype/file/file.py:157 msgid "The fieldname you've specified in Attached To Field is invalid" msgstr "在“附加到字段”中指定的字段名无效" @@ -26114,15 +26214,19 @@ msgstr "从\n" "\"IAM & Admin\" > \"Settings\"\n" "下的 Google Cloud Console 获取的项目编号" -#: frappe/core/doctype/user/user.py:993 +#: frappe/desk/utils.py:106 +msgid "The report you requested has been generated.

    Click here to download:
    {0}

    This link will expire in {1} hours." +msgstr "" + +#: frappe/core/doctype/user/user.py:1000 msgid "The reset password link has been expired" msgstr "重置密码链接已过期" -#: frappe/core/doctype/user/user.py:995 +#: frappe/core/doctype/user/user.py:1002 msgid "The reset password link has either been used before or is invalid" msgstr "重置密码链接已被使用或无效" -#: frappe/app.py:388 frappe/public/js/frappe/request.js:149 +#: frappe/app.py:391 frappe/public/js/frappe/request.js:149 msgid "The resource you are looking for is not available" msgstr "您正在查找的资源不可用" @@ -26134,7 +26238,7 @@ msgstr "角色{0}应为自定义角色。" msgid "The selected document {0} is not a {1}." msgstr "所选文档{0}不是{1}类型。" -#: frappe/utils/response.py:338 +#: frappe/utils/response.py:336 msgid "The system is being updated. Please refresh again after a few moments." msgstr "系统正在更新。请稍后刷新页面。" @@ -26155,7 +26259,7 @@ msgstr "您粘贴的值长度为{0}个字符。最大允许字符数为{1}。" msgid "The webhook will be triggered if this expression is true" msgstr "当表达式为真时触发Webhook" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:175 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:183 msgid "The {0} is already on auto repeat {1}" msgstr "{0}已启用自动重复{1}" @@ -26195,16 +26299,16 @@ 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:964 +#: frappe/public/js/frappe/views/reports/query_report.js:973 msgid "There are {0} with the same filters already in the queue:" msgstr "队列中已有{0}条相同筛选条件的记录:" #: frappe/website/doctype/web_form/web_form.js:81 -#: frappe/website/doctype/web_form/web_form.js:317 +#: frappe/website/doctype/web_form/web_form.js:318 msgid "There can be only 9 Page Break fields in a Web Form" msgstr "网页表单最多允许9个分页符字段" -#: frappe/core/doctype/doctype/doctype.py:1443 +#: frappe/core/doctype/doctype/doctype.py:1444 msgid "There can be only one Fold in a form" msgstr "一个表单只能有一个折叠" @@ -26216,15 +26320,19 @@ msgstr "地址模板有一个错误{0}" msgid "There is no data to be exported" msgstr "没有可导出的数据" +#: frappe/model/workflow.py:170 +msgid "There is no task called \"{}\"" +msgstr "" + #: frappe/public/js/frappe/ui/notifications/notifications.js:492 msgid "There is nothing new to show you right now." msgstr "暂无可显示新消息" -#: frappe/core/doctype/file/file.py:618 frappe/utils/file_manager.py:372 +#: frappe/core/doctype/file/file.py:643 frappe/utils/file_manager.py:372 msgid "There is some problem with the file url: {0}" msgstr "有一些问题与文件的URL:{0}" -#: frappe/public/js/frappe/views/reports/query_report.js:961 +#: frappe/public/js/frappe/views/reports/query_report.js:970 msgid "There is {0} with the same filters already in the queue:" msgstr "队列中已有{0}条相同筛选条件的记录:" @@ -26236,7 +26344,7 @@ msgstr "至少要一个权限规则。" msgid "There was an error building this page" msgstr "构建此页面时出错" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:182 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:196 msgid "There was an error saving filters" msgstr "保存过滤条件时出错" @@ -26248,11 +26356,11 @@ msgstr "出错了" msgid "There were errors while creating the document. Please try again." msgstr "创建单据时出错。请再试一次。" -#: frappe/public/js/frappe/views/communication.js:840 +#: frappe/public/js/frappe/views/communication.js:843 msgid "There were errors while sending email. Please try again." msgstr "邮件发送失败,请重试。" -#: frappe/model/naming.py:494 +#: frappe/model/naming.py:502 msgid "There were some errors setting the name, please contact the administrator" msgstr "设置名称时出现错误,请与管理员联系" @@ -26293,7 +26401,7 @@ msgstr "第三方认证" msgid "This Currency is disabled. Enable to use in transactions" msgstr "该货币已被禁用,请启用以便能在业务交易中使用" -#: frappe/public/js/frappe/views/kanban/kanban_view.js:391 +#: frappe/public/js/frappe/views/kanban/kanban_view.js:405 msgid "This Kanban Board will be private" msgstr "此看板只适用于本帐号" @@ -26301,6 +26409,10 @@ msgstr "此看板只适用于本帐号" msgid "This Month" msgstr "本月" +#: frappe/core/doctype/file/file.py:396 +msgid "This PDF cannot be uploaded as it contains unsafe content." +msgstr "" + #: frappe/public/js/frappe/ui/filters/filter.js:670 msgid "This Quarter" msgstr "本季" @@ -26326,6 +26438,11 @@ msgstr "此操作仅允许{}执行" msgid "This cannot be undone" msgstr "不可撤销" +#: frappe/desk/doctype/number_card/number_card.js:484 +msgctxt "Number Card" +msgid "This card is visible only to Administrator and System Managers by default. Set a DocType to share with users who have read access." +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" @@ -26340,11 +26457,11 @@ msgstr "如勾选,所有用户可查看此统计图表" msgid "This doctype has no orphan fields to trim" msgstr "此文档类型无孤立字段需清理" -#: frappe/core/doctype/doctype/doctype.py:1054 +#: frappe/core/doctype/doctype/doctype.py:1055 msgid "This doctype has pending migrations, run 'bench migrate' before modifying the doctype to avoid losing changes." msgstr "此文档类型有待执行迁移,修改前请运行'bench migrate'以避免丢失更改。" -#: frappe/model/delete_doc.py:113 +#: frappe/model/delete_doc.py:153 msgid "This document can not be deleted right now as it's being modified by another user. Please try again after some time." msgstr "此文档正被其他用户修改,暂时无法删除。请稍后重试。" @@ -26390,7 +26507,7 @@ msgstr "本字段仅在以上代码框中定义的字段有值或表达式(js代 "案例2:年龄大于18
    \n" "eval:doc.age>18" -#: frappe/core/doctype/file/file.py:500 +#: frappe/core/doctype/file/file.py:525 msgid "This file is attached to a protected document and cannot be deleted." msgstr "该文件已关联至受保护文档,不可删除。" @@ -26406,7 +26523,7 @@ msgstr "此为公开文件,用户无需登录即可访问" msgid "This form has been modified after you have loaded it" msgstr "重新加载后表单就已被修改," -#: frappe/public/js/frappe/form/form.js:2257 +#: frappe/public/js/frappe/form/form.js:2259 msgid "This form is not editable due to a Workflow." msgstr "此表单因工作流状态不能被编辑。" @@ -26425,7 +26542,7 @@ msgstr "暂不支持此地理位置服务提供商。" msgid "This goes above the slideshow." msgstr "在幻灯片上面。" -#: frappe/public/js/frappe/views/reports/query_report.js:2178 +#: frappe/public/js/frappe/views/reports/query_report.js:2197 msgid "This is a background report. Please set the appropriate filters and then generate a new one." msgstr "此报表是后台运行报表,请设置恰当的过滤条件并点击右上角生成新报表按钮获取报表结果" @@ -26449,12 +26566,6 @@ msgstr "这是个虚拟单据,数据会被定期清理" msgid "This is an automatically generated reply" msgstr "这是一个自动生成的回复" -#. Description of the 'Google Snippet Preview' (HTML) field in DocType 'Blog -#. Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "This is an example Google SERP Preview." -msgstr "此为Google搜索结果页预览示例。" - #: frappe/utils/password_strength.py:164 msgid "This is similar to a commonly used password." msgstr "这类似于一个通常使用的密码。" @@ -26473,7 +26584,7 @@ msgstr "此链接已激活以进行验证。" msgid "This link is invalid or expired. Please make sure you have pasted correctly." msgstr "此链接是无效或过期。请确保你已经正确粘贴。" -#: frappe/printing/page/print/print.js:410 +#: frappe/printing/page/print/print.js:431 msgid "This may get printed on multiple pages" msgstr "可能会打印多页" @@ -26481,7 +26592,7 @@ msgstr "可能会打印多页" msgid "This month" msgstr "这个月" -#: frappe/public/js/frappe/views/reports/query_report.js:1036 +#: frappe/public/js/frappe/views/reports/query_report.js:1045 msgid "This report contains {0} rows and is too big to display in browser, you can {1} this report instead." msgstr "此报告包含{0}行数据,浏览器显示过大,建议{1}此报告。" @@ -26489,7 +26600,7 @@ msgstr "此报告包含{0}行数据,浏览器显示过大,建议{1}此报告 msgid "This report was generated on {0}" msgstr "此报表是在{0}上生成的" -#: frappe/public/js/frappe/views/reports/query_report.js:852 +#: frappe/public/js/frappe/views/reports/query_report.js:861 msgid "This report was generated {0}." msgstr "报表{0}已生成。" @@ -26520,7 +26631,7 @@ msgstr "此值取自{0}的{1}字段" #. Description of the 'Max Report Rows' (Int) field in DocType 'System #. Settings' #: frappe/core/doctype/system_settings/system_settings.json -msgid "This value specifies the max number of rows that can be rendered in report view. " +msgid "This value specifies the max number of rows that can be rendered in report view." msgstr "" #: frappe/website/doctype/web_page/web_page.js:85 @@ -26552,10 +26663,10 @@ msgid "This will reset this tour and show it to all users. Are you sure?" msgstr "将重置此导览并向所有用户显示。是否继续?" #: frappe/core/doctype/rq_job/rq_job.js:15 -msgid "This will terminate the job immediately and might be dangerous, are you sure? " -msgstr "将立即终止任务,此操作可能危险,是否继续?" +msgid "This will terminate the job immediately and might be dangerous, are you sure?" +msgstr "" -#: frappe/core/doctype/user/user.py:1246 +#: frappe/core/doctype/user/user.py:1255 msgid "Throttled" msgstr "节流" @@ -26631,9 +26742,11 @@ msgstr "时间(秒)" #. Label of the time_zone (Select) field in DocType 'System Settings' #. Label of the time_zone (Autocomplete) field in DocType 'User' +#. Label of a field in the edit-profile Web Form #. Label of the time_zone (Data) field in DocType 'Web Page View' #: frappe/core/doctype/system_settings/system_settings.json #: frappe/core/doctype/user/user.json +#: frappe/core/web_form/edit_profile/edit_profile.json #: frappe/desk/page/setup_wizard/setup_wizard.js:407 #: frappe/website/doctype/web_page_view/web_page_view.json msgid "Time Zone" @@ -26704,11 +26817,11 @@ msgstr "时间线链接" msgid "Timeline Name" msgstr "时间线名称" -#: frappe/core/doctype/doctype/doctype.py:1538 +#: frappe/core/doctype/doctype/doctype.py:1539 msgid "Timeline field must be a Link or Dynamic Link" msgstr "时间线字段必须是一个链接或动态链接" -#: frappe/core/doctype/doctype/doctype.py:1534 +#: frappe/core/doctype/doctype/doctype.py:1535 msgid "Timeline field must be a valid fieldname" msgstr "时间线字段必须是有效的字段名" @@ -26734,10 +26847,7 @@ msgid "Timespan" msgstr "时间跨度" #. Label of the timestamp (Datetime) field in DocType 'Access Log' -#. Label of the timestamp (Datetime) field in DocType 'Transaction Log' #: frappe/core/doctype/access_log/access_log.json -#: frappe/core/doctype/transaction_log/transaction_log.json -#: frappe/core/report/transaction_log_report/transaction_log_report.py:112 msgid "Timestamp" msgstr "时间戳" @@ -26757,9 +26867,6 @@ msgstr "" #. Label of the title (Data) field in DocType 'System Health Report Errors' #. Label of the title (Data) field in DocType 'Workspace' #. Label of the title (Data) field in DocType 'Email Group' -#. Label of the title (Data) field in DocType 'Blog Category' -#. Label of the title (Data) field in DocType 'Blog Post' -#. Label of the title (Data) field in DocType 'Blog Settings' #. Label of the title (Data) field in DocType 'Discussion Topic' #. Label of the title (Data) field in DocType 'Help Article' #. Label of the title (Data) field in DocType 'Portal Menu Item' @@ -26784,9 +26891,6 @@ msgstr "" #: frappe/desk/doctype/workspace/workspace.json #: frappe/email/doctype/email_group/email_group.json #: frappe/public/js/frappe/views/workspace/workspace.js:393 -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json #: frappe/website/doctype/discussion_topic/discussion_topic.json #: frappe/website/doctype/help_article/help_article.json #: frappe/website/doctype/portal_menu_item/portal_menu_item.json @@ -26809,7 +26913,7 @@ msgstr "标题字段" msgid "Title Prefix" msgstr "标题前缀" -#: frappe/core/doctype/doctype/doctype.py:1475 +#: frappe/core/doctype/doctype/doctype.py:1476 msgid "Title field must be a valid fieldname" msgstr "标题字段必须是有效的字段名" @@ -26909,7 +27013,7 @@ msgstr "导出此步骤为JSON需关联到入职文档并保存" msgid "To generate password click {0}" msgstr "生成密码请点击{0}" -#: frappe/public/js/frappe/views/reports/query_report.js:853 +#: frappe/public/js/frappe/views/reports/query_report.js:862 msgid "To get the updated report, click on {0}." msgstr "要获取已更新报表,请单击{0}。" @@ -26964,7 +27068,7 @@ msgstr "待办" msgid "Today" msgstr "今天" -#: frappe/public/js/frappe/views/reports/report_view.js:1570 +#: frappe/public/js/frappe/views/reports/report_view.js:1572 msgid "Toggle Chart" msgstr "切换图表" @@ -26980,11 +27084,11 @@ msgstr "切换到图标视图" #: frappe/public/js/frappe/ui/page.js:201 #: frappe/public/js/frappe/ui/page.js:203 -#: frappe/public/js/frappe/views/reports/report_view.js:1574 +#: frappe/public/js/frappe/views/reports/report_view.js:1576 msgid "Toggle Sidebar" msgstr "切换边栏" -#: frappe/public/js/frappe/list/list_view.js:1817 +#: frappe/public/js/frappe/list/list_view.js:1966 msgctxt "Button in list view menu" msgid "Toggle Sidebar" msgstr "切换侧边栏" @@ -27030,7 +27134,7 @@ msgid "Tomorrow" msgstr "明天" #: frappe/desk/doctype/bulk_update/bulk_update.py:68 -#: frappe/model/workflow.py:254 +#: frappe/model/workflow.py:310 msgid "Too Many Documents" msgstr "文档数量过多" @@ -27046,7 +27150,7 @@ msgstr "单次操作中数据库变更过多" msgid "Too many queued background jobs ({0}). Please retry after some time." msgstr "后台作业队列过长({0}),请稍后重试" -#: frappe/core/doctype/user/user.py:1034 +#: frappe/core/doctype/user/user.py:1043 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgstr "最近有太多用户注册,导致注册功能被自动临时禁用了,请一个小时后重试。" @@ -27108,10 +27212,10 @@ msgstr "顶部右侧" msgid "Topic" msgstr "主题" -#: frappe/desk/query_report.py:546 +#: frappe/desk/query_report.py:587 #: frappe/public/js/frappe/views/reports/print_grid.html:45 -#: frappe/public/js/frappe/views/reports/query_report.js:1323 -#: frappe/public/js/frappe/views/reports/report_view.js:1551 +#: frappe/public/js/frappe/views/reports/query_report.js:1332 +#: frappe/public/js/frappe/views/reports/report_view.js:1553 msgid "Total" msgstr "总计" @@ -27154,18 +27258,18 @@ msgstr "总进程时间" #. Description of the 'Initial Sync Count' (Select) field in DocType 'Email #. Account' #: frappe/email/doctype/email_account/email_account.json -msgid "Total number of emails to sync in initial sync process " -msgstr "初始同步过程中需同步的邮件总数" +msgid "Total number of emails to sync in initial sync process" +msgstr "" #: frappe/public/js/print_format_builder/ConfigureColumns.vue:12 msgid "Total:" msgstr "总计:" -#: frappe/public/js/frappe/views/reports/report_view.js:1256 +#: frappe/public/js/frappe/views/reports/report_view.js:1258 msgid "Totals" msgstr "总计" -#: frappe/public/js/frappe/views/reports/report_view.js:1231 +#: frappe/public/js/frappe/views/reports/report_view.js:1233 msgid "Totals Row" msgstr "总计行" @@ -27233,26 +27337,10 @@ msgstr "跟踪任何单据的里程碑" msgid "Tracking" msgstr "进度追踪" -#: frappe/public/js/frappe/utils/utils.js:1784 +#: frappe/public/js/frappe/utils/utils.js:1821 msgid "Tracking URL generated and copied to clipboard" msgstr "跟踪URL已生成并复制到剪贴板" -#. Label of the transaction_hash (Small Text) field in DocType 'Transaction -#. Log' -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Hash" -msgstr "事务哈希" - -#. Name of a DocType -#: frappe/core/doctype/transaction_log/transaction_log.json -msgid "Transaction Log" -msgstr "事务日志" - -#. Name of a report -#: frappe/core/report/transaction_log_report/transaction_log_report.json -msgid "Transaction Log Report" -msgstr "事务日志报表" - #: frappe/desk/page/setup_wizard/install_fixtures.py:31 msgid "Transgender" msgstr "跨性别者" @@ -27266,6 +27354,11 @@ msgstr "状态转换属性" msgid "Transition Rules" msgstr "状态转换规则" +#. Label of the transition_tasks (Link) field in DocType 'Workflow Transition' +#: frappe/workflow/doctype/workflow_transition/workflow_transition.json +msgid "Transition Tasks" +msgstr "" + #. Label of the transitions (Table) field in DocType 'Workflow' #: frappe/workflow/doctype/workflow/workflow.json msgid "Transitions" @@ -27280,7 +27373,7 @@ msgstr "状态转换" msgid "Translatable" msgstr "可翻译" -#: frappe/public/js/frappe/views/reports/query_report.js:2233 +#: frappe/public/js/frappe/views/reports/query_report.js:2252 msgid "Translate Data" msgstr "翻译数据" @@ -27291,7 +27384,7 @@ msgstr "翻译数据" msgid "Translate Link Fields" msgstr "翻译链接字段" -#: frappe/public/js/frappe/views/reports/report_view.js:1656 +#: frappe/public/js/frappe/views/reports/report_view.js:1658 msgid "Translate values" msgstr "翻译值" @@ -27375,8 +27468,8 @@ msgstr "重试" msgid "Try a Naming Series" msgstr "单据编号模板预览" -#: frappe/printing/page/print/print.js:189 -#: frappe/printing/page/print/print.js:195 +#: frappe/printing/page/print/print.js:202 +#: frappe/printing/page/print/print.js:208 msgid "Try the new Print Designer" msgstr "试用新版打印设计器" @@ -27442,7 +27535,7 @@ msgstr "双重验证方法" #: frappe/desk/doctype/workspace/workspace.json #: frappe/desk/doctype/workspace_link/workspace_link.json #: frappe/desk/doctype/workspace_shortcut/workspace_shortcut.json -#: frappe/public/js/frappe/views/file/file_view.js:337 +#: frappe/public/js/frappe/views/file/file_view.js:370 #: frappe/public/js/frappe/views/workspace/workspace.js:399 #: frappe/public/js/frappe/widgets/widget_dialog.js:404 #: frappe/website/doctype/web_template/web_template.json @@ -27536,7 +27629,7 @@ msgstr "网址" msgid "URL for documentation or help" msgstr "在线帮助网址" -#: frappe/core/doctype/file/file.py:219 +#: frappe/core/doctype/file/file.py:231 msgid "URL must start with http:// or https://" msgstr "URL必须以http://或https://开头" @@ -27639,7 +27732,7 @@ msgstr "缺少邮箱账户无法发送邮件,请通过设置>邮箱账户配 msgid "Unable to update event" msgstr "无法更新事件" -#: frappe/core/doctype/file/file.py:464 +#: frappe/core/doctype/file/file.py:489 msgid "Unable to write file format for {0}" msgstr "无法写入{0}的文件格式" @@ -27648,7 +27741,7 @@ msgstr "无法写入{0}的文件格式" msgid "Unassign Condition" msgstr "取消分派条件" -#: frappe/app.py:396 +#: frappe/app.py:399 msgid "Uncaught Exception" msgstr "未捕获异常" @@ -27664,7 +27757,7 @@ msgstr "撤销" msgid "Undo last action" msgstr "撤销上一步操作" -#: frappe/database/query.py:1495 +#: frappe/database/query.py:1497 msgid "Unescaped quotes in string literal: {0}" msgstr "" @@ -27711,7 +27804,7 @@ msgstr "未知列: {0}" msgid "Unknown Rounding Method: {}" msgstr "未知舍入方法:{}" -#: frappe/auth.py:316 +#: frappe/auth.py:319 msgid "Unknown User" msgstr "未知用户" @@ -27723,8 +27816,7 @@ msgstr "未知文件编码,尝试使用:{0}" msgid "Unlock Reference Document" msgstr "解锁参考文档" -#: frappe/public/js/frappe/form/footer/form_timeline.js:632 -#: frappe/website/doctype/blog_post/blog_post.js:36 +#: frappe/public/js/frappe/form/footer/form_timeline.js:633 #: frappe/website/doctype/web_form/web_form.js:86 msgid "Unpublish" msgstr "取消发布" @@ -27740,7 +27832,7 @@ msgstr "未读" msgid "Unread Notification Sent" msgstr "未读发送通知" -#: frappe/utils/safe_exec.py:496 +#: frappe/utils/safe_exec.py:498 msgid "Unsafe SQL query" msgstr "不安全的SQL查询" @@ -27778,8 +27870,8 @@ msgstr "退订参数" msgid "Unsubscribed" msgstr "已退订" -#: frappe/database/query.py:653 frappe/database/query.py:1387 -#: frappe/database/query.py:1397 +#: frappe/database/query.py:655 frappe/database/query.py:1389 +#: frappe/database/query.py:1399 msgid "Unsupported function or invalid field name: {0}" msgstr "" @@ -27799,7 +27891,7 @@ msgstr "解压缩{0}个文件" msgid "Unzipping files..." msgstr "解压缩文件..." -#: frappe/desk/doctype/event/event.py:269 +#: frappe/desk/doctype/event/event.py:273 msgid "Upcoming Events for Today" msgstr "今日活动" @@ -27813,7 +27905,7 @@ msgstr "今日活动" #: frappe/printing/page/print_format_builder/print_format_builder.js:507 #: frappe/printing/page/print_format_builder/print_format_builder.js:678 #: frappe/printing/page/print_format_builder/print_format_builder.js:765 -#: frappe/public/js/frappe/form/grid_row.js:411 +#: frappe/public/js/frappe/form/grid_row.js:428 msgid "Update" msgstr "更新" @@ -27847,6 +27939,11 @@ msgstr "更新顺序" msgid "Update Password" msgstr "更新密码" +#. Title of the edit-profile Web Form +#: frappe/core/web_form/edit_profile/edit_profile.json +msgid "Update Profile" +msgstr "" + #. Label of the update_series (Section Break) field in DocType 'Document Naming #. Settings' #: frappe/core/doctype/document_naming_settings/document_naming_settings.json @@ -27889,7 +27986,7 @@ msgstr "更新{0}个单据" #: frappe/core/doctype/permission_log/permission_log.json #: frappe/desk/doctype/desktop_icon/desktop_icon.py:446 #: frappe/desk/doctype/workspace_settings/workspace_settings.py:41 -#: frappe/public/js/frappe/web_form/web_form.js:427 +#: frappe/public/js/frappe/web_form/web_form.js:451 msgid "Updated" msgstr "已更新" @@ -27897,7 +27994,7 @@ msgstr "已更新" msgid "Updated Successfully" msgstr "更新成功" -#: frappe/public/js/frappe/desk.js:452 +#: frappe/public/js/frappe/desk.js:446 msgid "Updated To A New Version 🎉" msgstr "已更新至新版本🎉" @@ -27905,7 +28002,7 @@ msgstr "已更新至新版本🎉" msgid "Updated successfully" msgstr "更新成功" -#: frappe/utils/response.py:337 +#: frappe/utils/response.py:335 msgid "Updating" msgstr "更新" @@ -27950,8 +28047,8 @@ msgstr "升级计划" msgid "Upgrade your support experience with Frappe Helpdesk" msgstr "使用Frappe Helpdesk提升支持体验" -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:131 -#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:132 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:143 +#: frappe/public/js/frappe/file_uploader/file_uploader.bundle.js:144 #: frappe/public/js/frappe/form/grid.js:66 #: frappe/public/js/frappe/form/templates/form_sidebar.html:13 msgid "Upload" @@ -27961,11 +28058,11 @@ msgstr "上传" msgid "Upload Image" msgstr "上传图片" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:198 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:215 msgid "Upload file" msgstr "上传文件" -#: frappe/public/js/frappe/file_uploader/FileUploader.vue:201 +#: frappe/public/js/frappe/file_uploader/FileUploader.vue:218 msgid "Upload {0} files" msgstr "上传了{0}份文件" @@ -28062,15 +28159,11 @@ msgstr "使用别的邮箱账号" msgid "Use if the default settings don't seem to detect your data correctly" msgstr "当默认设置无法正确识别数据时使用" -#: frappe/model/db_query.py:435 -msgid "Use of function {0} in field is restricted" -msgstr "字段中函数{0}的使用受限" - -#: frappe/model/db_query.py:412 +#: frappe/model/db_query.py:411 msgid "Use of sub-query or function is restricted" msgstr "子查询或函数的使用受到限制" -#: frappe/printing/page/print/print.js:279 +#: frappe/printing/page/print/print.js:292 msgid "Use the new Print Format Builder" msgstr "启用新打印格式编辑器" @@ -28091,7 +28184,9 @@ msgid "Used OAuth" msgstr "启用OAuth" #. Label of the user (Link) field in DocType 'Assignment Rule User' +#. Label of the user (Link) field in DocType 'Auto Repeat User' #. Label of the user (Link) field in DocType 'Reminder' +#. Label of the user (Link) field in DocType 'Access Log' #. Label of the user (Link) field in DocType 'Activity Log' #. Label of the user (Link) field in DocType 'API Request Log' #. Label of the user (Link) field in DocType 'Communication' @@ -28100,6 +28195,7 @@ msgstr "启用OAuth" #. Label of the user (Link) field in DocType 'Permission Inspector' #. Name of a DocType #. Label of the user (Link) field in DocType 'User Group Member' +#. Label of the user (Link) field in DocType 'User 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 @@ -28114,11 +28210,12 @@ msgstr "启用OAuth" #. Label of the user (Link) field in DocType 'OAuth Client' #. Label of the user (Link) field in DocType 'Token Cache' #. Label of the user (Link) field in DocType 'Webhook Request Log' -#. Label of the user (Link) field in DocType 'Blogger' #. Label of the user (Link) field in DocType 'Personal Data Download Request' #. Label of the user (Link) field in DocType 'Workflow Action' #: frappe/automation/doctype/assignment_rule_user/assignment_rule_user.json +#: frappe/automation/doctype/auto_repeat_user/auto_repeat_user.json #: frappe/automation/doctype/reminder/reminder.json +#: frappe/core/doctype/access_log/access_log.json #: frappe/core/doctype/activity_log/activity_log.json #: frappe/core/doctype/api_request_log/api_request_log.json #: frappe/core/doctype/communication/communication.json @@ -28127,6 +28224,7 @@ msgstr "启用OAuth" #: frappe/core/doctype/permission_inspector/permission_inspector.json #: frappe/core/doctype/user/user.json #: frappe/core/doctype/user_group_member/user_group_member.json +#: frappe/core/doctype/user_invitation/user_invitation.json #: frappe/core/doctype/user_permission/user_permission.json #: frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js:8 #: frappe/core/report/user_doctype_permissions/user_doctype_permissions.js:8 @@ -28143,17 +28241,11 @@ msgstr "启用OAuth" #: frappe/integrations/doctype/token_cache/token_cache.json #: frappe/integrations/doctype/webhook_request_log/webhook_request_log.json #: frappe/public/js/frappe/form/templates/set_sharing.html:3 -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/personal_data_download_request/personal_data_download_request.json #: frappe/workflow/doctype/workflow_action/workflow_action.json msgid "User" msgstr "用户" -#. Label of the user (Link) field in DocType 'Access Log' -#: frappe/core/doctype/access_log/access_log.json -msgid "User " -msgstr "用户 " - #: frappe/core/doctype/has_role/has_role.py:25 msgid "User '{0}' already has the role '{1}'" msgstr "用户“{0}”已经被分派了角色“{1}”" @@ -28183,7 +28275,7 @@ msgstr "用户无法创建" msgid "User Cannot Search" msgstr "用户不能搜索" -#: frappe/public/js/frappe/desk.js:556 +#: frappe/public/js/frappe/desk.js:550 msgid "User Changed" msgstr "用户账号已变更" @@ -28247,11 +28339,6 @@ msgstr "用户帐号" msgid "User ID Property" msgstr "用户ID属性" -#. Description of a DocType -#: frappe/website/doctype/blogger/blogger.json -msgid "User ID of a Blogger" -msgstr "博客作者的用户ID" - #. Label of the user (Link) field in DocType 'Contact' #: frappe/contacts/doctype/contact/contact.json msgid "User Id" @@ -28271,6 +28358,11 @@ msgstr "用户类型{0}中用户ID字段为必填项" msgid "User Image" msgstr "用户图片" +#. Name of a DocType +#: frappe/core/doctype/user_invitation/user_invitation.json +msgid "User Invitation" +msgstr "" + #: frappe/public/js/frappe/ui/toolbar/navbar.html:115 msgid "User Menu" msgstr "用户菜单" @@ -28289,12 +28381,12 @@ msgstr "用户权限限制" #. Label of a Link in the Users Workspace #: frappe/core/page/permission_manager/permission_manager_help.html:30 #: frappe/core/workspace/users/users.json -#: frappe/public/js/frappe/views/reports/query_report.js:1933 -#: frappe/public/js/frappe/views/reports/report_view.js:1752 +#: frappe/public/js/frappe/views/reports/query_report.js:1952 +#: frappe/public/js/frappe/views/reports/report_view.js:1761 msgid "User Permissions" msgstr "用户权限限制" -#: frappe/public/js/frappe/list/list_view.js:1775 +#: frappe/public/js/frappe/list/list_view.js:1924 msgctxt "Button in list view menu" msgid "User Permissions" msgstr "用户权限" @@ -28307,7 +28399,9 @@ msgstr "用户权限限制用于过滤出允许用户访问的单据。" msgid "User Permissions created successfully" msgstr "用户权限创建成功" +#. Name of a DocType #. Label of the erpnext_role (Link) field in DocType 'LDAP Group Mapping' +#: frappe/core/doctype/user_role/user_role.json #: frappe/integrations/doctype/ldap_group_mapping/ldap_group_mapping.json msgid "User Role" msgstr "用户角色" @@ -28373,6 +28467,10 @@ msgstr "用户不存在" msgid "User does not have permission to create the new {0}" msgstr "用户无权创建新{0}" +#: frappe/core/doctype/user_invitation/user_invitation.py:102 +msgid "User is disabled" +msgstr "" + #: frappe/core/doctype/docshare/docshare.py:56 msgid "User is mandatory for Share" msgstr "请选择要分享的用户" @@ -28403,7 +28501,7 @@ msgstr "用户{0}不能被删除" msgid "User {0} cannot be disabled" msgstr "用户{0}不能被禁用" -#: frappe/core/doctype/user/user.py:604 +#: frappe/core/doctype/user/user.py:611 msgid "User {0} cannot be renamed" msgstr "不允许变更用户名{0}" @@ -28424,7 +28522,7 @@ msgstr "用户{0}无权创建工作区" msgid "User {0} has requested for data deletion" msgstr "用户{0}已请求数据删除" -#: frappe/core/doctype/user/user.py:1375 +#: frappe/core/doctype/user/user.py:1384 msgid "User {0} impersonated as {1}" msgstr "用户 {0} 以 {1} 身份登录" @@ -28432,7 +28530,7 @@ msgstr "用户 {0} 以 {1} 身份登录" msgid "User {0} is disabled" msgstr "用户{0}已禁用" -#: frappe/sessions.py:242 +#: frappe/sessions.py:243 msgid "User {0} is disabled. Please contact your System Manager." msgstr "用户{0}已禁用,请联系系统管理员" @@ -28453,7 +28551,7 @@ msgstr "用户信息URI" msgid "Username" msgstr "用户名" -#: frappe/core/doctype/user/user.py:693 +#: frappe/core/doctype/user/user.py:700 msgid "Username {0} already exists" msgstr "用户名{0}已存在" @@ -28537,7 +28635,7 @@ msgstr "验证Frappe邮件设置" msgid "Validate SSL Certificate" msgstr "验证SSL证书" -#: frappe/public/js/frappe/web_form/web_form.js:360 +#: frappe/public/js/frappe/web_form/web_form.js:384 msgid "Validation Error" msgstr "验证错误" @@ -28560,8 +28658,8 @@ msgstr "有效性" #: frappe/core/doctype/sms_parameter/sms_parameter.json #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:305 #: frappe/desk/doctype/dashboard_chart/dashboard_chart.js:439 -#: frappe/desk/doctype/number_card/number_card.js:205 -#: frappe/desk/doctype/number_card/number_card.js:336 +#: frappe/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:95 #: frappe/integrations/doctype/query_parameters/query_parameters.json #: frappe/integrations/doctype/webhook_header/webhook_header.json @@ -28593,7 +28691,7 @@ msgstr "值变更的字段" msgid "Value To Be Set" msgstr "字段值" -#: frappe/model/base_document.py:1054 frappe/model/document.py:835 +#: frappe/model/base_document.py:1115 frappe/model/document.py:835 msgid "Value cannot be changed for {0}" msgstr "值不能被改变为{0}" @@ -28609,11 +28707,11 @@ msgstr "{0}的值不能为负数:{1}" msgid "Value for a check field can be either 0 or 1" msgstr "勾选字段值可以为0或1" -#: frappe/custom/doctype/customize_form/customize_form.py:611 +#: frappe/custom/doctype/customize_form/customize_form.py:616 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:445 +#: frappe/model/base_document.py:502 msgid "Value for {0} cannot be a list" msgstr "{0}不能是列表值" @@ -28638,7 +28736,7 @@ msgstr "" msgid "Value to Validate" msgstr "待验证的值" -#: frappe/model/base_document.py:1124 +#: frappe/model/base_document.py:1185 msgid "Value too big" msgstr "值过大" @@ -28655,7 +28753,7 @@ msgstr "值{0}必须符合有效时长格式:d h m s" msgid "Value {0} must in {1} format" msgstr "值{0}必须符合{1}格式" -#: frappe/core/doctype/version/version_view.html:8 +#: frappe/core/doctype/version/version_view.html:9 msgid "Values Changed" msgstr "值已更改" @@ -28668,7 +28766,7 @@ msgstr "Verdana" msgid "Verification" msgstr "验证" -#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:352 +#: frappe/templates/includes/login/login.js:336 frappe/twofactor.py:357 msgid "Verification Code" msgstr "验证码" @@ -28730,15 +28828,7 @@ msgstr "查看全部" msgid "View Audit Trail" msgstr "查看审计跟踪" -#: frappe/templates/includes/likes/likes.py:34 -msgid "View Blog Post" -msgstr "查看博客文章" - -#: frappe/templates/includes/comments/comments.py:56 -msgid "View Comment" -msgstr "查看评论" - -#: frappe/core/doctype/user/user.js:151 +#: frappe/core/doctype/user/user.js:144 msgid "View Doctype Permissions" msgstr "查看文档类型权限" @@ -28750,7 +28840,7 @@ msgstr "查看文件" msgid "View Full Log" msgstr "查看全部日志" -#: frappe/public/js/frappe/views/treeview.js:484 +#: frappe/public/js/frappe/views/treeview.js:486 #: frappe/public/js/frappe/widgets/quick_list_widget.js:258 msgid "View List" msgstr "查看列表" @@ -28760,7 +28850,7 @@ msgstr "查看列表" msgid "View Log" msgstr "查看日志" -#: frappe/core/doctype/user/user.js:142 +#: frappe/core/doctype/user/user.js:135 #: frappe/core/doctype/user_permission/user_permission.js:24 msgid "View Permitted Documents" msgstr "查看被授权单据" @@ -28807,7 +28897,7 @@ msgstr "在浏览器中查看报表" msgid "View this in your browser" msgstr "在浏览器查看" -#: frappe/public/js/frappe/web_form/web_form.js:454 +#: frappe/public/js/frappe/web_form/web_form.js:478 msgctxt "Button in web form" msgid "View your response" msgstr "查看您的响应" @@ -28876,6 +28966,7 @@ msgid "Warehouse" msgstr "仓库" #. Option for the 'Style' (Select) field in DocType 'Workflow State' +#: frappe/public/js/frappe/router.js:613 #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Warning" msgstr "警告" @@ -28884,7 +28975,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:1125 +#: frappe/core/doctype/doctype/doctype.py:1126 msgid "Warning: Naming is not set" msgstr "警告:未设置命名规则" @@ -28970,7 +29061,7 @@ msgstr "网站网页" msgid "Web Page Block" msgstr "网页区块" -#: frappe/public/js/frappe/utils/utils.js:1712 +#: frappe/public/js/frappe/utils/utils.js:1749 msgid "Web Page URL" msgstr "网页URL" @@ -29073,7 +29164,7 @@ msgstr "Webhook URL" #. Name of a Workspace #: frappe/core/doctype/module_def/module_def.json #: frappe/public/js/frappe/ui/apps_switcher.js:125 -#: frappe/public/js/frappe/ui/toolbar/about.js:8 +#: frappe/public/js/frappe/ui/toolbar/about.js:11 #: frappe/website/workspace/website/website.json msgid "Website" msgstr "网站" @@ -29086,10 +29177,6 @@ msgstr "网站分析" #. Name of a role #: frappe/core/doctype/comment/comment.json #: frappe/website/doctype/about_us_settings/about_us_settings.json -#: frappe/website/doctype/blog_category/blog_category.json -#: frappe/website/doctype/blog_post/blog_post.json -#: frappe/website/doctype/blog_settings/blog_settings.json -#: frappe/website/doctype/blogger/blogger.json #: frappe/website/doctype/color/color.json #: frappe/website/doctype/contact_us_settings/contact_us_settings.json #: frappe/website/doctype/help_category/help_category.json @@ -29133,7 +29220,7 @@ msgstr "网站脚本" msgid "Website Search Field" msgstr "网站搜索字段" -#: frappe/core/doctype/doctype/doctype.py:1522 +#: frappe/core/doctype/doctype/doctype.py:1523 msgid "Website Search Field must be a valid fieldname" msgstr "网站搜索字段必须是有效字段名" @@ -29350,11 +29437,6 @@ msgstr "通配符过滤" msgid "Will add \"%\" before and after the query" msgstr "将在查询前后添加“%”" -#. Description of the 'Short Name' (Data) field in DocType 'Blogger' -#: frappe/website/doctype/blogger/blogger.json -msgid "Will be used in url (usually first name)." -msgstr "会用在URL链接中(通常是名字)。" - #: frappe/desk/page/setup_wizard/setup_wizard.js:485 msgid "Will be your login ID" msgstr "将是您的登录ID" @@ -29369,7 +29451,7 @@ msgstr "如果章节标题启用才会显示" msgid "Will run scheduled jobs only once a day for inactive sites. Set it to 0 to avoid automatically disabling the scheduler." msgstr "非活跃站点每天仅运行一次定时任务,设为0禁用此功能" -#: frappe/public/js/frappe/form/print_utils.js:38 +#: frappe/public/js/frappe/form/print_utils.js:45 msgid "With Letter head" msgstr "有打印表头" @@ -29447,7 +29529,7 @@ msgstr "允许拖拽工作流状态,连接状态生成状态转换规则,还 msgid "Workflow Data" msgstr "工作流数据" -#: frappe/public/js/workflow_builder/components/Properties.vue:42 +#: frappe/public/js/workflow_builder/components/Properties.vue:44 msgid "Workflow Details" msgstr "工作流详情" @@ -29473,11 +29555,11 @@ msgstr "工作流状态" msgid "Workflow State Field" msgstr "工作流状态字段" -#: frappe/model/workflow.py:61 +#: frappe/model/workflow.py:64 msgid "Workflow State not set" msgstr "工作流状态未设置" -#: frappe/model/workflow.py:204 frappe/model/workflow.py:212 +#: frappe/model/workflow.py:260 frappe/model/workflow.py:268 msgid "Workflow State transition not allowed from {0} to {1}" msgstr "不允许从{0}到{1}的工作流状态转换" @@ -29485,15 +29567,30 @@ msgstr "不允许从{0}到{1}的工作流状态转换" msgid "Workflow States Don't Exist" msgstr "工作流状态不存在" -#: frappe/model/workflow.py:328 +#: frappe/model/workflow.py:384 msgid "Workflow Status" msgstr "工作流状态" +#. Option for the 'Script Type' (Select) field in DocType 'Server Script' +#: frappe/core/doctype/server_script/server_script.json +msgid "Workflow Task" +msgstr "" + #. Name of a DocType #: frappe/workflow/doctype/workflow_transition/workflow_transition.json msgid "Workflow Transition" msgstr "工作流状态转换" +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_task/workflow_transition_task.json +msgid "Workflow Transition Task" +msgstr "" + +#. Name of a DocType +#: frappe/workflow/doctype/workflow_transition_tasks/workflow_transition_tasks.json +msgid "Workflow Transition Tasks" +msgstr "" + #. Description of a DocType #: frappe/workflow/doctype/workflow_state/workflow_state.json msgid "Workflow state represents the current state of a document." @@ -29509,13 +29606,13 @@ msgstr "工作流更新成功" #. Option for the 'Type' (Select) field in DocType 'Workspace' #: frappe/core/doctype/user/user.json frappe/core/workspace/build/build.json #: frappe/desk/doctype/workspace/workspace.json -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:557 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:566 #: frappe/public/js/frappe/utils/utils.js:932 #: frappe/public/js/frappe/views/workspace/workspace.js:10 msgid "Workspace" msgstr "工作区" -#: frappe/public/js/frappe/router.js:175 +#: frappe/public/js/frappe/router.js:180 msgid "Workspace {0} does not exist" msgstr "工作区{0}不存在" @@ -29585,11 +29682,11 @@ msgstr "工作区{0}已创建" msgid "Workspaces" msgstr "工作区" -#: frappe/public/js/frappe/form/footer/form_timeline.js:756 +#: 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." msgstr "是否确认发布本评论?发布后网站/门户用户可见。" -#: frappe/public/js/frappe/form/footer/form_timeline.js:760 +#: frappe/public/js/frappe/form/footer/form_timeline.js:761 msgid "Would you like to unpublish this comment? This means it will no longer be visible to website/portal users." msgstr "是否确认取消发布本评论?取消后网站/门户用户将不可见。" @@ -29608,11 +29705,11 @@ msgstr "已圆满完成" msgid "Write" msgstr "写" -#: frappe/model/base_document.py:954 +#: frappe/model/base_document.py:1011 msgid "Wrong Fetch From value" msgstr "错误的获取来源值" -#: frappe/public/js/frappe/views/reports/report_view.js:490 +#: frappe/public/js/frappe/views/reports/report_view.js:495 msgid "X Axis Field" msgstr "X轴字段" @@ -29631,13 +29728,13 @@ msgstr "XLSX" msgid "Y Axis" msgstr "Y轴字段" -#: frappe/public/js/frappe/views/reports/report_view.js:497 +#: frappe/public/js/frappe/views/reports/report_view.js:502 msgid "Y Axis Fields" msgstr "Y轴字段" #. Label of the y_field (Select) field in DocType 'Dashboard Chart Field' #: frappe/desk/doctype/dashboard_chart_field/dashboard_chart_field.json -#: frappe/public/js/frappe/views/reports/query_report.js:1224 +#: frappe/public/js/frappe/views/reports/query_report.js:1233 msgid "Y Field" msgstr "Y轴字段" @@ -29689,16 +29786,17 @@ msgstr "黄色" #. Settings' #. Option for the 'Standard' (Select) field in DocType 'Print Format' #: frappe/core/doctype/page/page.json frappe/core/doctype/report/report.json -#: frappe/email/doctype/notification/notification.py:92 -#: frappe/email/doctype/notification/notification.py:96 +#: frappe/email/doctype/notification/notification.py:95 +#: frappe/email/doctype/notification/notification.py:100 +#: frappe/email/doctype/notification/notification.py:102 #: frappe/integrations/doctype/ldap_settings/ldap_settings.json -#: frappe/integrations/doctype/webhook/webhook.py:121 -#: frappe/integrations/doctype/webhook/webhook.py:128 +#: frappe/integrations/doctype/webhook/webhook.py:125 +#: 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:494 +#: frappe/public/js/frappe/form/controls/link.js:498 #: frappe/public/js/frappe/list/list_sidebar_group_by.js:223 -#: frappe/public/js/frappe/views/reports/query_report.js:1663 +#: frappe/public/js/frappe/views/reports/query_report.js:1673 #: frappe/website/doctype/help_article/templates/help_article.html:25 msgid "Yes" msgstr "是" @@ -29726,6 +29824,18 @@ msgstr "您" msgid "You Liked" msgstr "您已点赞" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:266 +msgid "You added 1 row to {0}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:244 +msgid "You added {0} rows to {1}" +msgstr "" + +#: frappe/public/js/frappe/router.js:642 +msgid "You are about to open an external link. To confirm, click the link again." +msgstr "" + #: frappe/public/js/frappe/dom.js:438 msgid "You are connected to internet." msgstr "已联网。" @@ -29764,20 +29874,20 @@ msgstr "您无权编辑此报表" #: frappe/core/doctype/data_import/exporter.py:121 #: frappe/core/doctype/data_import/exporter.py:125 -#: frappe/desk/reportview.py:408 frappe/desk/reportview.py:411 +#: frappe/desk/reportview.py:444 frappe/desk/reportview.py:447 #: frappe/permissions.py:626 msgid "You are not allowed to export {} doctype" msgstr "未被授权导出单据类型{}" -#: frappe/public/js/frappe/views/treeview.js:448 +#: frappe/public/js/frappe/views/treeview.js:450 msgid "You are not allowed to print this report" msgstr "您未被授权打印此报表" -#: frappe/public/js/frappe/views/communication.js:784 +#: frappe/public/js/frappe/views/communication.js:787 msgid "You are not allowed to send emails related to this document" msgstr "你不允许发送与此单据相关的电子邮件" -#: frappe/website/doctype/web_form/web_form.py:594 +#: frappe/website/doctype/web_form/web_form.py:632 msgid "You are not allowed to update this Web Form Document" msgstr "你不允许更新此Web表单" @@ -29801,7 +29911,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:98 +#: frappe/core/doctype/installed_applications/installed_applications.py:117 msgid "You are only allowed to update order, do not remove or add apps." msgstr "仅允许调整应用顺序,不可增删应用" @@ -29827,13 +29937,17 @@ msgid "You can also copy-paste following link in your browser" msgstr "也可在浏览器中粘贴以下链接" #: frappe/templates/emails/download_data.html:9 -msgid "You can also copy-paste this " -msgstr "也可直接粘贴此" +msgid "You can also copy-paste this" +msgstr "" #: frappe/templates/emails/delete_data_confirmation.html:11 msgid "You can also copy-paste this {0} to your browser" msgstr "也可将{0}粘贴到浏览器" +#: frappe/templates/emails/user_invitation_expired.html:8 +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 "您可以通过撤销已提交的文件,然后再修订单据。" @@ -29846,11 +29960,11 @@ msgstr "可在 {0} 中设置日志保留天数让系统自动删除过期数据" msgid "You can continue with the onboarding after exploring this page" msgstr "浏览本页后可继续完成新手引导" -#: frappe/model/delete_doc.py:137 +#: frappe/model/delete_doc.py:177 msgid "You can disable this {0} instead of deleting it." msgstr "你可以禁用而不是删除物料 {0}" -#: frappe/core/doctype/file/file.py:736 +#: frappe/core/doctype/file/file.py:761 msgid "You can increase the limit from System Settings." msgstr "可从系统设置中提高限制" @@ -29870,7 +29984,7 @@ msgstr "一次最多打印{0}个文档" msgid "You can only set the 3 custom doctypes in the Document Types table." msgstr "文档类型表中仅可设置3个自定义文档类型" -#: frappe/handler.py:182 +#: frappe/handler.py:183 msgid "You can only upload JPG, PNG, PDF, TXT, CSV or Microsoft documents." msgstr "仅可上传JPG/PNG/PDF/TXT/CSV或Microsoft文档" @@ -29888,7 +30002,7 @@ msgstr "可从以下选项中选择:" msgid "You can set a high value here if multiple users will be logging in from the same network." msgstr "如多个用户通过相同网络登录,请设置一个大一点的数字" -#: frappe/desk/query_report.py:345 +#: frappe/desk/query_report.py:382 msgid "You can try changing the filters of your report." msgstr "可尝试变更报表过滤条件" @@ -29900,11 +30014,11 @@ msgstr "可以使用定制表单设置字段的权限级别。" msgid "You can use wildcard %" msgstr "可以使用通配符%" -#: frappe/custom/doctype/customize_form/customize_form.py:389 +#: frappe/custom/doctype/customize_form/customize_form.py:394 msgid "You can't set 'Options' for field {0}" msgstr "您不能为字段{0}设置“选项”" -#: frappe/custom/doctype/customize_form/customize_form.py:393 +#: frappe/custom/doctype/customize_form/customize_form.py:398 msgid "You can't set 'Translatable' for field {0}" msgstr "您无法为字段{0}设置“可翻译”" @@ -29922,7 +30036,7 @@ msgstr "您已取消此文档{1}" msgid "You cannot create a dashboard chart from single DocTypes" msgstr "不能为单记录单据类型创建统计图表" -#: frappe/custom/doctype/customize_form/customize_form.py:385 +#: frappe/custom/doctype/customize_form/customize_form.py:390 msgid "You cannot unset 'Read Only' for field {0}" msgstr "你不能为字段{0}取消“只读”设置" @@ -29952,7 +30066,7 @@ msgstr "您已将{0}改为{1}" msgid "You created this" msgstr "你创建了本单据" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:247 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:340 msgctxt "Form timeline" msgid "You created this document {0}" msgstr "" @@ -29965,15 +30079,15 @@ msgstr "您对{}无读取或选择权限" msgid "You do not have enough permissions to access this resource. Please contact your manager to get access." msgstr "您没有足够的权限来访问该资源。请联系您的经理,以获得访问权。" -#: frappe/app.py:381 +#: frappe/app.py:384 msgid "You do not have enough permissions to complete the action" msgstr "您未被授权完成此操作" -#: frappe/database/query.py:529 +#: frappe/database/query.py:531 msgid "You do not have permission to access field: {0}" msgstr "" -#: frappe/desk/query_report.py:873 +#: frappe/desk/query_report.py:923 msgid "You do not have permission to access {0}: {1}." msgstr "您无权访问{0}:{1}。" @@ -29985,11 +30099,11 @@ msgstr "没有权限取消所有关联的单据" msgid "You don't have access to Report: {0}" msgstr "您没有权限访问报表:{0}" -#: frappe/website/doctype/web_form/web_form.py:797 +#: frappe/website/doctype/web_form/web_form.py:835 msgid "You don't have permission to access the {0} DocType." msgstr "您无权访问{0}文档类型" -#: frappe/utils/response.py:290 frappe/utils/response.py:294 +#: frappe/utils/response.py:289 frappe/utils/response.py:293 msgid "You don't have permission to access this file" msgstr "您没有权限访问该文件" @@ -29997,19 +30111,19 @@ msgstr "您没有权限访问该文件" msgid "You don't have permission to get a report on: {0}" msgstr "你没有权限获得{0}的报表" -#: frappe/website/doctype/web_form/web_form.py:172 +#: frappe/website/doctype/web_form/web_form.py:175 msgid "You don't have the permissions to access this document" msgstr "您未被授权访问此单据" #: frappe/templates/emails/new_message.html:1 -msgid "You have a new message from: " -msgstr "您有新消息来自:" +msgid "You have a new message from:" +msgstr "" -#: frappe/handler.py:118 +#: frappe/handler.py:119 msgid "You have been successfully logged out" msgstr "您已成功注销" -#: frappe/custom/doctype/customize_form/customize_form.py:244 +#: frappe/custom/doctype/customize_form/customize_form.py:247 msgid "You have hit the row size limit on database table: {0}" msgstr "已达到数据库表{0}的行大小限制" @@ -30017,11 +30131,7 @@ msgstr "已达到数据库表{0}的行大小限制" msgid "You have not entered a value. The field will be set to empty." msgstr "未输入字段值,字段值将被设为空值" -#: frappe/templates/includes/likes/likes.py:31 -msgid "You have received a ❤️ like on your blog post" -msgstr "您的博客文章收到❤️点赞" - -#: frappe/twofactor.py:432 +#: frappe/twofactor.py:437 msgid "You have to enable Two Factor Auth from System Settings." msgstr "需从系统设置启用双因素认证" @@ -30041,7 +30151,7 @@ msgstr "待查看{0}" msgid "You haven't added any Dashboard Charts or Number Cards yet." msgstr "尚未创建统计图表或数字卡" -#: frappe/public/js/frappe/list/list_view.js:498 +#: frappe/public/js/frappe/list/list_view.js:503 msgid "You haven't created a {0} yet" msgstr "暂无数据 {0}" @@ -30058,11 +30168,11 @@ msgstr "你最新修订了本单据" msgid "You must add atleast one link." msgstr "必须至少添加一个链接" -#: frappe/website/doctype/web_form/web_form.py:793 +#: frappe/website/doctype/web_form/web_form.py:831 msgid "You must be logged in to use this form." msgstr "必须登录才能使用此表单" -#: frappe/website/doctype/web_form/web_form.py:634 +#: frappe/website/doctype/web_form/web_form.py:672 msgid "You must login to submit this form" msgstr "您必须登录才能提交此表单" @@ -30086,7 +30196,7 @@ msgstr "您需要是系统用户才能访问此页面" msgid "You need to be in developer mode to edit a Standard Web Form" msgstr "你需要在开发模式编辑标准Web窗体" -#: frappe/utils/response.py:279 +#: frappe/utils/response.py:278 msgid "You need to be logged in and have System Manager Role to be able to access backups." msgstr "您需要先登录,并具有系统管理员角色才能够访问备份。" @@ -30094,13 +30204,13 @@ msgstr "您需要先登录,并具有系统管理员角色才能够访问备份 msgid "You need to be logged in to access this page" msgstr "您需要登录才能访问该页面" -#: frappe/website/doctype/web_form/web_form.py:161 +#: frappe/website/doctype/web_form/web_form.py:164 msgid "You need to be logged in to access this {0}." msgstr "您需要登录才能访问此{0}。" #: frappe/public/js/frappe/widgets/links_widget.js:63 -msgid "You need to create these first: " -msgstr "您需要先创建以下内容:" +msgid "You need to create these first:" +msgstr "" #: frappe/www/login.html:76 msgid "You need to enable JavaScript for your app to work." @@ -30134,11 +30244,19 @@ msgstr "您需要{0} {1}的写入权限才能重命名" msgid "You need {0} permission to fetch values from {1} {2}" msgstr "您需要{0}权限才能从{1} {2}获取值" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:311 +msgid "You removed 1 row from {0}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:419 msgctxt "Form timeline" msgid "You removed attachment {0}" msgstr "您移除了附件{0}" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:289 +msgid "You removed {0} rows from {1}" +msgstr "" + #: frappe/public/js/frappe/widgets/onboarding_widget.js:520 msgid "You seem good to go!" msgstr "您已准备就绪!" @@ -30169,10 +30287,26 @@ msgstr "您取消了对该单据的关注" msgid "You viewed this" msgstr "您查看了此内容" -#: frappe/public/js/frappe/desk.js:553 +#: frappe/public/js/frappe/router.js:653 +msgid "You will be redirected to:" +msgstr "" + +#: frappe/core/doctype/user_invitation/user_invitation.py:113 +msgid "You've been invited to join {0}" +msgstr "" + +#: frappe/templates/emails/user_invitation.html:5 +msgid "You've been invited to join {0}." +msgstr "" + +#: frappe/public/js/frappe/desk.js:547 msgid "You've logged in as another user from another tab. Refresh this page to continue using system." msgstr "在另一个浏览器页签用另一个账号登录了,请刷新浏览器后切换到新帐号继续" +#: frappe/public/js/frappe/ui/toolbar/about.js:11 +msgid "YouTube" +msgstr "YouTube的" + #: frappe/core/doctype/prepared_report/prepared_report.js:57 msgid "Your CSV file is being generated and will appear in the Attachments section once ready. Additionally, you will get notified when the file is available for download." msgstr "" @@ -30202,7 +30336,7 @@ msgstr "快速访问" msgid "Your account has been deleted" msgstr "您的账户已被删除" -#: frappe/auth.py:514 +#: frappe/auth.py:517 msgid "Your account has been locked and will resume after {0} seconds" msgstr "您的账户已被锁定,并将在{0}秒后恢复" @@ -30226,10 +30360,22 @@ msgstr "您的Google日历连接请求已成功接受" msgid "Your email address" msgstr "您的电子邮件地址" -#: frappe/public/js/frappe/web_form/web_form.js:428 +#: frappe/desk/utils.py:105 +msgid "Your exported report: {0}" +msgstr "" + +#: frappe/public/js/frappe/web_form/web_form.js:452 msgid "Your form has been successfully updated" msgstr "您的表单已成功更新" +#: frappe/templates/emails/user_invitation_cancelled.html:5 +msgid "Your invitation to join {0} has been cancelled by the site administrator." +msgstr "" + +#: frappe/templates/emails/user_invitation_expired.html:5 +msgid "Your invitation to join {0} has expired." +msgstr "" + #: frappe/templates/emails/new_user.html:6 msgid "Your login id is" msgstr "您的登录ID是" @@ -30252,7 +30398,11 @@ msgstr "电子邮件页脚上您的组织名称和地址。" msgid "Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail." msgstr "您的问题已收到。我们将尽快回复邮件。如果您还有任何其他的信息,请回覆此邮件。" -#: frappe/app.py:374 +#: frappe/desk/query_report.py:342 frappe/desk/reportview.py:396 +msgid "Your report is being generated in the background. You will receive an email on {0} with a download link once it is ready." +msgstr "" + +#: frappe/app.py:377 msgid "Your session has expired, please login again to continue." msgstr "您的会话已过期,请再次登录以继续。" @@ -30274,7 +30424,7 @@ msgstr "零" msgid "Zero means send records updated at anytime" msgstr "零表示资料更新后立即发送" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:265 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:358 msgid "[Action taken by {0}]" msgstr "[操作由{0}执行]" @@ -30296,10 +30446,6 @@ msgstr "`as_iterator`仅在使用`as_list=True`或`as_dict=True`时有效" msgid "`job_id` paramater is required for deduplication." msgstr "去重需要`job_id`参数" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:232 -msgid "added rows for {0}" -msgstr "新增了 {0} 明细行" - #. Option for the 'Doc Event' (Select) field in DocType 'Webhook' #: frappe/integrations/doctype/webhook/webhook.json msgid "after_insert" @@ -30334,7 +30480,7 @@ msgstr "角色" msgid "cProfile Output" msgstr "cProfile输出" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:286 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:295 msgid "calendar" msgstr "日历" @@ -30479,12 +30625,12 @@ msgstr "Emacs编辑器" msgid "email" msgstr "电子邮件" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:314 msgid "email inbox" msgstr "电子邮件收件箱" #: frappe/permissions.py:425 frappe/permissions.py:436 -#: frappe/public/js/frappe/form/controls/link.js:503 +#: frappe/public/js/frappe/form/controls/link.js:507 msgid "empty" msgstr "空" @@ -30541,7 +30687,7 @@ msgctxt "Hours (Field: Duration)" msgid "h" msgstr "小时" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:296 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:305 msgid "hub" msgstr "集市(Hub)网站" @@ -30556,11 +30702,6 @@ msgstr "图标" msgid "import" msgstr "导入" -#. Description of the 'Read Time' (Int) field in DocType 'Blog Post' -#: frappe/website/doctype/blog_post/blog_post.json -msgid "in minutes" -msgstr "分" - #: frappe/templates/signup.html:11 frappe/www/login.html:11 msgid "jane@example.com" msgstr "jane@example.com" @@ -30569,7 +30710,7 @@ msgstr "jane@example.com" msgid "just now" msgstr "刚刚" -#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:290 +#: frappe/desk/desktop.py:255 frappe/desk/query_report.py:291 msgid "label" msgstr "标签" @@ -30598,7 +30739,7 @@ msgstr "列表" msgid "logged in" msgstr "已登录" -#: frappe/website/doctype/web_form/web_form.js:362 +#: frappe/website/doctype/web_form/web_form.js:363 msgid "login_required" msgstr "需要登录" @@ -30619,11 +30760,6 @@ msgstr "月" msgid "merged {0} into {1}" msgstr "{0}合并为{1}" -#: frappe/website/doctype/blog_post/templates/blog_post.html:25 -#: frappe/website/doctype/blog_post/templates/blog_post_row.html:36 -msgid "min read" -msgstr "分钟阅读时间" - #. Option for the 'Date Format' (Select) field in DocType 'Language' #. Option for the 'Date Format' (Select) field in DocType 'System Settings' #: frappe/core/doctype/language/language.json @@ -30647,7 +30783,7 @@ msgstr "模块" msgid "module name..." msgstr "模块名称..." -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:160 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:169 msgid "new" msgstr "新建" @@ -30776,10 +30912,6 @@ msgstr "已读" msgid "red" msgstr "红色" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:234 -msgid "removed rows for {0}" -msgstr "删除了 {0} 明细行" - #: frappe/model/rename_doc.py:217 msgid "renamed from {0} to {1}" msgstr "从更名{0}到{1}" @@ -30835,19 +30967,19 @@ msgstr "分享" msgid "short" msgstr "短整型" -#: frappe/public/js/frappe/widgets/number_card_widget.js:298 +#: frappe/public/js/frappe/widgets/number_card_widget.js:310 msgid "since last month" msgstr "自上个月" -#: frappe/public/js/frappe/widgets/number_card_widget.js:297 +#: frappe/public/js/frappe/widgets/number_card_widget.js:309 msgid "since last week" msgstr "自上周" -#: frappe/public/js/frappe/widgets/number_card_widget.js:299 +#: frappe/public/js/frappe/widgets/number_card_widget.js:311 msgid "since last year" msgstr "自去年" -#: frappe/public/js/frappe/widgets/number_card_widget.js:296 +#: frappe/public/js/frappe/widgets/number_card_widget.js:308 msgid "since yesterday" msgstr "自昨天" @@ -30900,6 +31032,10 @@ msgstr "此表单" msgid "this shouldn't break" msgstr "这不应中断" +#: frappe/templates/emails/download_data.html:9 +msgid "to your browser" +msgstr "" + #. Option for the 'Social Link Type' (Select) field in DocType 'Social Link #. Settings' #: frappe/website/doctype/social_link_settings/social_link_settings.json @@ -30927,7 +31063,7 @@ msgstr "版本表" msgid "via Assignment Rule" msgstr "通过分配规则" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:242 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:264 msgid "via Auto Repeat" msgstr "" @@ -30941,7 +31077,7 @@ msgstr "通过数据导入" msgid "via Google Meet" msgstr "通过Google Meet" -#: frappe/email/doctype/notification/notification.py:361 +#: frappe/email/doctype/notification/notification.py:405 msgid "via Notification" msgstr "通过通知" @@ -30974,10 +31110,15 @@ msgstr "点击元素时如果存在弹出框将获得焦点" msgid "wkhtmltopdf" msgstr "wkhtmltopdf工具" -#: frappe/printing/page/print/print.js:622 +#: frappe/printing/page/print/print.js:662 msgid "wkhtmltopdf 0.12.x (with patched qt)." msgstr "wkhtmltopdf 0.12.x(带补丁的qt)" +#. Option for the 'Doc Event' (Select) field in DocType 'Webhook' +#: frappe/integrations/doctype/webhook/webhook.json +msgid "workflow_transition" +msgstr "" + #. Option for the 'Permission Type' (Select) field in DocType 'Permission #. Inspector' #: frappe/core/doctype/permission_inspector/permission_inspector.json @@ -31005,11 +31146,11 @@ msgstr "年-月-日" msgid "{0}" msgstr "{0}" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:193 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:202 msgid "{0} ${skip_list ? \"\" : type}" msgstr "{0} ${skip_list ? \"\" : 类型}" -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:198 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:207 msgid "{0} ${type}" msgstr "{0} ${type}" @@ -31035,19 +31176,19 @@ msgstr "{0} = {1}" msgid "{0} Calendar" msgstr "{0}日历" -#: frappe/public/js/frappe/views/reports/report_view.js:570 +#: frappe/public/js/frappe/views/reports/report_view.js:575 msgid "{0} Chart" msgstr "{0}图表" #: frappe/core/page/dashboard_view/dashboard_view.js:67 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:347 -#: frappe/public/js/frappe/ui/toolbar/search_utils.js:348 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:356 +#: frappe/public/js/frappe/ui/toolbar/search_utils.js:357 #: frappe/public/js/frappe/views/dashboard/dashboard_view.js:12 msgid "{0} Dashboard" msgstr "{0}数据面板" -#: frappe/public/js/frappe/form/grid_row.js:470 -#: frappe/public/js/frappe/list/list_settings.js:227 +#: frappe/public/js/frappe/form/grid_row.js:487 +#: frappe/public/js/frappe/list/list_settings.js:225 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:178 msgid "{0} Fields" msgstr "{0}字段" @@ -31071,6 +31212,10 @@ msgstr "{0}点赞" msgid "{0} List" msgstr "{0}列表" +#: frappe/public/js/frappe/list/list_settings.js:33 +msgid "{0} List View Settings" +msgstr "" + #: frappe/public/js/frappe/utils/pretty_date.js:37 msgid "{0} M" msgstr "{0} 月" @@ -31083,7 +31228,7 @@ msgstr "{0}地图" msgid "{0} Name" msgstr "{0}单据编号(名称)" -#: frappe/model/base_document.py:1154 +#: frappe/model/base_document.py:1215 msgid "{0} Not allowed to change {1} after submission from {2} to {3}" msgstr "{0} 提交后不允许将 {1} 从 {2} 修改为 {3}" @@ -31093,11 +31238,10 @@ msgstr "{0} 提交后不允许将 {1} 从 {2} 修改为 {3}" msgid "{0} Report" msgstr "{0}报表" -#: frappe/public/js/frappe/views/reports/query_report.js:955 +#: frappe/public/js/frappe/views/reports/query_report.js:964 msgid "{0} Reports" msgstr "{0}报告" -#: frappe/public/js/frappe/list/list_settings.js:32 #: frappe/public/js/frappe/views/kanban/kanban_settings.js:26 msgid "{0} Settings" msgstr "{0}设置" @@ -31122,7 +31266,15 @@ msgstr "{0}工作空间" msgid "{0} added" msgstr "{0} 成功添加" -#: frappe/public/js/frappe/form/controls/data.js:204 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:268 +msgid "{0} added 1 row to {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:246 +msgid "{0} added {1} rows to {2}" +msgstr "" + +#: frappe/public/js/frappe/form/controls/data.js:215 msgid "{0} already exists. Select another name" msgstr "{0}已存在。选择其他名称" @@ -31134,7 +31286,7 @@ msgstr "{0}已经退订" msgid "{0} already unsubscribed for {1} {2}" msgstr "{0}已经退订了{1} {2}" -#: frappe/utils/data.py:1751 +#: frappe/utils/data.py:1765 msgid "{0} and {1}" msgstr "{0}和{1}" @@ -31142,7 +31294,7 @@ msgstr "{0}和{1}" msgid "{0} are currently {1}" msgstr "{0}当前状态为{1}" -#: frappe/printing/doctype/print_format/print_format.py:95 +#: frappe/printing/doctype/print_format/print_format.py:98 msgid "{0} are required" msgstr "需要{0}" @@ -31159,7 +31311,7 @@ msgctxt "Form timeline" msgid "{0} attached {1}" msgstr "{0}附加了{1}" -#: frappe/core/doctype/system_settings/system_settings.py:150 +#: frappe/core/doctype/system_settings/system_settings.py:153 msgid "{0} can not be more than {1}" msgstr "{0}不能超过{1}" @@ -31201,11 +31353,7 @@ msgctxt "Form timeline" msgid "{0} changed {1} to {2}" msgstr "{0}将{1}更改为{2}" -#: frappe/website/doctype/blog_post/blog_post.py:382 -msgid "{0} comments" -msgstr "{0}条评论" - -#: frappe/core/doctype/doctype/doctype.py:1605 +#: frappe/core/doctype/doctype/doctype.py:1606 msgid "{0} contains an invalid Fetch From expression, Fetch From can't be self-referential." msgstr "{0}包含无效的Fetch From表达式,不能自我引用" @@ -31218,7 +31366,7 @@ msgstr "{0}已成功创建" msgid "{0} created this" msgstr "{0} 创建了本单据" -#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:250 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:343 msgctxt "Form timeline" msgid "{0} created this document {1}" msgstr "" @@ -31240,7 +31388,7 @@ msgstr "{0}不存在于第{1}行中" msgid "{0} field cannot be set as unique in {1}, as there are non-unique existing values" msgstr "{0}字段不能在{1}中设置为唯一,因为这里存在非唯一的数值" -#: frappe/database/query.py:708 +#: frappe/database/query.py:710 msgid "{0} fields cannot contain backticks (`): {1}" msgstr "" @@ -31272,7 +31420,7 @@ msgstr "{0}已经离开对话{1} {2}" msgid "{0} hours ago" msgstr "{0}小时前" -#: frappe/website/doctype/web_form/templates/web_form.html:148 +#: frappe/website/doctype/web_form/templates/web_form.html:155 msgid "{0} if you are not redirected within {1} seconds" msgstr "如果{1}秒内未自动跳转,请点击{0}" @@ -31281,23 +31429,23 @@ 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:934 +#: frappe/core/doctype/doctype/doctype.py:935 msgid "{0} is a mandatory field" msgstr "{0}是必填字段" -#: frappe/core/doctype/file/file.py:544 +#: frappe/core/doctype/file/file.py:569 msgid "{0} is a not a valid zip file" msgstr "{0}不是有效的zip文件" -#: frappe/core/doctype/doctype/doctype.py:1618 +#: frappe/core/doctype/doctype/doctype.py:1619 msgid "{0} is an invalid Data field." msgstr "{0}是无效的数据字段" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:154 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:162 msgid "{0} is an invalid email address in 'Recipients'" msgstr "{0}是“收件人”中的无效电子邮件地址" -#: frappe/public/js/frappe/views/reports/report_view.js:1468 +#: frappe/public/js/frappe/views/reports/report_view.js:1470 msgid "{0} is between {1} and {2}" msgstr "{0}介于{1}和{2}之间" @@ -31306,27 +31454,27 @@ msgstr "{0}介于{1}和{2}之间" msgid "{0} is currently {1}" msgstr "{0}当前状态为{1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1437 +#: frappe/public/js/frappe/views/reports/report_view.js:1439 msgid "{0} is equal to {1}" msgstr "{0}等于{1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1457 +#: frappe/public/js/frappe/views/reports/report_view.js:1459 msgid "{0} is greater than or equal to {1}" msgstr "{0}大于或等于{1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1447 +#: frappe/public/js/frappe/views/reports/report_view.js:1449 msgid "{0} is greater than {1}" msgstr "{0}大于{1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1462 +#: frappe/public/js/frappe/views/reports/report_view.js:1464 msgid "{0} is less than or equal to {1}" msgstr "{0}小于或等于{1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1452 +#: frappe/public/js/frappe/views/reports/report_view.js:1454 msgid "{0} is less than {1}" msgstr "{0}小于{1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1487 +#: frappe/public/js/frappe/views/reports/report_view.js:1489 msgid "{0} is like {1}" msgstr "{0}类似于{1}" @@ -31334,7 +31482,7 @@ msgstr "{0}类似于{1}" msgid "{0} is mandatory" msgstr "{0}是必填项" -#: frappe/database/query.py:485 +#: frappe/database/query.py:487 msgid "{0} is not a child table of {1}" msgstr "" @@ -31354,12 +31502,12 @@ msgstr "{0}不是有效的日历,正在重定向到默认日历" msgid "{0} is not a valid Cron expression." msgstr "{0}不是有效的Cron表达式" -#: frappe/public/js/frappe/form/controls/dynamic_link.js:27 +#: frappe/public/js/frappe/form/controls/dynamic_link.js:23 msgid "{0} is not a valid DocType for Dynamic Link" msgstr "{0}不是有效的动态链接文档类型" -#: frappe/email/doctype/email_group/email_group.py:131 -#: frappe/utils/__init__.py:203 +#: frappe/email/doctype/email_group/email_group.py:140 +#: frappe/utils/__init__.py:208 msgid "{0} is not a valid Email Address" msgstr "{0} 不是有效的邮箱地址" @@ -31367,15 +31515,15 @@ msgstr "{0} 不是有效的邮箱地址" msgid "{0} is not a valid ISO 3166 ALPHA-2 code." msgstr "{0}不是有效的ISO 3166 ALPHA-2代码" -#: frappe/utils/__init__.py:171 +#: frappe/utils/__init__.py:176 msgid "{0} is not a valid Name" msgstr "{0}不是有效的名称" -#: frappe/utils/__init__.py:150 +#: frappe/utils/__init__.py:155 msgid "{0} is not a valid Phone Number" msgstr "{0}不是有效的电话号码" -#: frappe/model/workflow.py:189 +#: frappe/model/workflow.py:245 msgid "{0} is not a valid Workflow State. Please update your Workflow and try again." msgstr "{0}不是有效的工作流状态。请更新您的工作流,然后重试。" @@ -31391,55 +31539,59 @@ msgstr "{0}不是{1}的有效父字段" msgid "{0} is not a valid report format. Report format should one of the following {1}" msgstr "{0}不是有效的报告格式。报告格式应为以下之一:{1}" -#: frappe/core/doctype/file/file.py:524 +#: frappe/core/doctype/file/file.py:549 msgid "{0} is not a zip file" msgstr "{0}不是zip文件" -#: frappe/public/js/frappe/views/reports/report_view.js:1442 +#: frappe/core/doctype/user_invitation/user_invitation.py:182 +msgid "{0} is not an allowed role for {1}" +msgstr "" + +#: frappe/public/js/frappe/views/reports/report_view.js:1444 msgid "{0} is not equal to {1}" msgstr "{0}不等于{1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1489 +#: frappe/public/js/frappe/views/reports/report_view.js:1491 msgid "{0} is not like {1}" msgstr "{0}与{1}不相似" -#: frappe/public/js/frappe/views/reports/report_view.js:1483 +#: frappe/public/js/frappe/views/reports/report_view.js:1485 msgid "{0} is not one of {1}" msgstr "{0}不属于{1}" -#: frappe/public/js/frappe/views/reports/report_view.js:1493 +#: frappe/public/js/frappe/views/reports/report_view.js:1495 msgid "{0} is not set" msgstr "{0}未设置" -#: frappe/printing/doctype/print_format/print_format.py:173 +#: frappe/printing/doctype/print_format/print_format.py:176 msgid "{0} is now default print format for {1} doctype" msgstr "{0}现在是{1}类型的默认打印格式" -#: frappe/public/js/frappe/views/reports/report_view.js:1476 +#: frappe/public/js/frappe/views/reports/report_view.js:1478 msgid "{0} is one of {1}" msgstr "{0}属于{1}" #: frappe/email/doctype/email_account/email_account.py:304 -#: frappe/model/naming.py:218 -#: frappe/printing/doctype/print_format/print_format.py:98 +#: frappe/model/naming.py:226 #: 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/views/reports/report_view.js:1492 +#: frappe/public/js/frappe/views/reports/report_view.js:1494 msgid "{0} is set" msgstr "{0}已设置" -#: frappe/public/js/frappe/views/reports/report_view.js:1471 +#: frappe/public/js/frappe/views/reports/report_view.js:1473 msgid "{0} is within {1}" msgstr "{0}在{1}范围内" -#: frappe/public/js/frappe/list/list_view.js:1692 +#: frappe/public/js/frappe/list/list_view.js:1841 msgid "{0} items selected" msgstr "已选{0}条记录" -#: frappe/core/doctype/user/user.py:1384 +#: frappe/core/doctype/user/user.py:1393 msgid "{0} just impersonated as you. They gave this reason: {1}" msgstr "{0} 因为 {1} 原因以你的帐号登录了系统" @@ -31472,35 +31624,35 @@ msgstr "{0}分钟前" msgid "{0} months ago" msgstr "{0}个月前" -#: frappe/model/document.py:1801 +#: frappe/model/document.py:1808 msgid "{0} must be after {1}" msgstr "{0}必须在{1}之后" -#: frappe/model/document.py:1560 +#: frappe/model/document.py:1564 msgid "{0} must be beginning with '{1}'" msgstr "{0}必须以'{1}'开头" -#: frappe/model/document.py:1562 +#: frappe/model/document.py:1566 msgid "{0} must be equal to '{1}'" msgstr "{0}必须等于'{1}'" -#: frappe/model/document.py:1558 +#: frappe/model/document.py:1562 msgid "{0} must be none of {1}" msgstr "{0}不能是{1}中的任何一项" -#: frappe/model/document.py:1556 frappe/utils/csvutils.py:161 +#: frappe/model/document.py:1560 frappe/utils/csvutils.py:161 msgid "{0} must be one of {1}" msgstr "{0}必须属于{1}" -#: frappe/model/base_document.py:876 +#: frappe/model/base_document.py:933 msgid "{0} must be set first" msgstr "{0}必须首先设置" -#: frappe/model/base_document.py:729 +#: frappe/model/base_document.py:786 msgid "{0} must be unique" msgstr "{0}必须是唯一的" -#: frappe/model/document.py:1564 +#: frappe/model/document.py:1568 msgid "{0} must be {1} {2}" msgstr "{0}必须为{1}{2}" @@ -31508,7 +31660,7 @@ msgstr "{0}必须为{1}{2}" msgid "{0} must begin and end with a letter and can only contain letters, hyphen or underscore." msgstr "{0}必须以字母开头和结尾,仅可包含字母、连字符或下划线" -#: frappe/workflow/doctype/workflow/workflow.py:90 +#: frappe/workflow/doctype/workflow/workflow.py:91 msgid "{0} not a valid State" msgstr "{0}不是有效状态" @@ -31521,11 +31673,11 @@ msgid "{0} not found" msgstr "{0}未找到" #: frappe/core/doctype/report/report.py:427 -#: frappe/public/js/frappe/list/list_view.js:1068 +#: frappe/public/js/frappe/list/list_view.js:1213 msgid "{0} of {1}" msgstr "第{0}项 / 共{1}项" -#: frappe/public/js/frappe/list/list_view.js:1070 +#: frappe/public/js/frappe/list/list_view.js:1215 msgid "{0} of {1} ({2} rows with children)" msgstr "{0} / {1} ({2} 行有子记录)" @@ -31534,7 +31686,7 @@ msgctxt "Money in words" msgid "{0} only." msgstr "仅{0}" -#: frappe/utils/data.py:1741 +#: frappe/utils/data.py:1747 msgid "{0} or {1}" msgstr "{0}或{1}" @@ -31558,6 +31710,10 @@ msgstr "已删除{0}条记录" msgid "{0} records will be exported" msgstr "将导出 {0} 笔记录" +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:313 +msgid "{0} removed 1 row from {1}" +msgstr "" + #: frappe/public/js/frappe/form/footer/form_timeline.js:420 msgctxt "Form timeline" msgid "{0} removed attachment {1}" @@ -31567,15 +31723,29 @@ msgstr "{0}移除了附件{1}" msgid "{0} removed their assignment." msgstr "{0}移除了其分配" -#: frappe/public/js/frappe/roles_editor.js:62 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:291 +msgid "{0} removed {1} rows from {2}" +msgstr "" + +#: frappe/public/js/frappe/roles_editor.js:64 msgid "{0} role does not have permission on any doctype" msgstr "角色 {0} 无单据类型权限" -#: frappe/model/document.py:1794 -msgid "{0} row #{1}: " -msgstr "{0}行#{1}:" +#: frappe/model/document.py:1799 +msgid "{0} row #{1}:" +msgstr "" -#: frappe/desk/query_report.py:625 +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:299 +msgctxt "User removed rows from child table" +msgid "{0} rows from {1}" +msgstr "" + +#: frappe/public/js/frappe/form/footer/version_timeline_content_builder.js:254 +msgctxt "User added rows to child table" +msgid "{0} rows to {1}" +msgstr "" + +#: frappe/desk/query_report.py:666 msgid "{0} saved successfully" msgstr "{0}已成功保存" @@ -31595,11 +31765,11 @@ msgstr "{0}将本单据分享给了所有人" msgid "{0} shared this document with {1}" msgstr "{0}向{1}分享了此单据" -#: frappe/core/doctype/doctype/doctype.py:316 +#: frappe/core/doctype/doctype/doctype.py:317 msgid "{0} should be indexed because it's referred in dashboard connections" msgstr "{0}应建立索引,因其在仪表盘连接中被引用" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:141 +#: frappe/automation/doctype/auto_repeat/auto_repeat.py:149 msgid "{0} should not be same as {1}" msgstr "{0}应该与{1}相同" @@ -31612,8 +31782,8 @@ msgctxt "Form timeline" msgid "{0} submitted this document {1}" msgstr "{0}于{1}提交了此文档" -#: frappe/email/doctype/email_group/email_group.py:62 -#: frappe/email/doctype/email_group/email_group.py:133 +#: frappe/email/doctype/email_group/email_group.py:71 +#: frappe/email/doctype/email_group/email_group.py:142 msgid "{0} subscribers added" msgstr "{0}新增用户" @@ -31623,7 +31793,7 @@ msgstr "{0}停止接收此类邮件" #: frappe/public/js/frappe/form/controls/date_range.js:48 #: frappe/public/js/frappe/form/controls/date_range.js:64 -#: frappe/public/js/frappe/form/formatters.js:234 +#: frappe/public/js/frappe/form/formatters.js:238 msgid "{0} to {1}" msgstr "{0}到{1}" @@ -31631,7 +31801,7 @@ msgstr "{0}到{1}" msgid "{0} un-shared this document with {1}" msgstr "{0}关闭了此单据对{1}的分享" -#: frappe/custom/doctype/customize_form/customize_form.py:253 +#: frappe/custom/doctype/customize_form/customize_form.py:256 msgid "{0} updated" msgstr "{0}已更新" @@ -31667,15 +31837,15 @@ msgstr "已添加{0} {1}" msgid "{0} {1} added to Dashboard {2}" msgstr "{0}{1}已添加到仪表盘{2}" -#: frappe/model/base_document.py:662 frappe/model/rename_doc.py:110 +#: frappe/model/base_document.py:719 frappe/model/rename_doc.py:110 msgid "{0} {1} already exists" msgstr "{0} {1}已经存在" -#: frappe/model/base_document.py:987 +#: frappe/model/base_document.py:1044 msgid "{0} {1} cannot be \"{2}\". It should be one of \"{3}\"" msgstr "{0} {1}不能为“{2}”。只能是“{3}”其中一个" -#: frappe/utils/nestedset.py:340 +#: frappe/utils/nestedset.py:353 msgid "{0} {1} cannot be a leaf node as it has children" msgstr "{0} {1}不能是一个叶节点,因为它有下级" @@ -31691,11 +31861,11 @@ msgstr "{0} {1} 关联了下列已提交单据: {2}" msgid "{0} {1} not found" msgstr "{0} {1}未找到" -#: frappe/model/delete_doc.py:248 +#: frappe/model/delete_doc.py:288 msgid "{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first." msgstr "{0} {1}: 已提交单据不可被删除. 应 {2} 先取消 {3}." -#: frappe/model/base_document.py:1115 +#: frappe/model/base_document.py:1176 msgid "{0}, Row {1}" msgstr "{0},第{1}行" @@ -31703,79 +31873,79 @@ msgstr "{0},第{1}行" msgid "{0}/{1} complete | Please leave this tab open until completion." msgstr "已完成{0}/{1} | 请保持此标签页开启直至完成" -#: frappe/model/base_document.py:1120 +#: frappe/model/base_document.py:1181 msgid "{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}" msgstr "{0}:“{1}”({3})将被截断,因最大允许字符数为{2}" -#: frappe/core/doctype/doctype/doctype.py:1800 +#: frappe/core/doctype/doctype/doctype.py:1814 msgid "{0}: Cannot set Amend without Cancel" msgstr "{0} :没有“取消”的情况下不能设置“修订”" -#: frappe/core/doctype/doctype/doctype.py:1818 +#: frappe/core/doctype/doctype/doctype.py:1832 msgid "{0}: Cannot set Assign Amend if not Submittable" msgstr "{0} :没有“提交”的情况下不能分派“修订”" -#: frappe/core/doctype/doctype/doctype.py:1816 +#: frappe/core/doctype/doctype/doctype.py:1830 msgid "{0}: Cannot set Assign Submit if not Submittable" msgstr "{0} :没有“提交”的情况下不能分派“提交”" -#: frappe/core/doctype/doctype/doctype.py:1795 +#: frappe/core/doctype/doctype/doctype.py:1809 msgid "{0}: Cannot set Cancel without Submit" msgstr "{0} :没有“提交”的情况下不能分派“取消”" -#: frappe/core/doctype/doctype/doctype.py:1802 +#: frappe/core/doctype/doctype/doctype.py:1816 msgid "{0}: Cannot set Import without Create" msgstr "{0} :没有“创建”的情况下不能分派“导入”" -#: frappe/core/doctype/doctype/doctype.py:1798 +#: frappe/core/doctype/doctype/doctype.py:1812 msgid "{0}: Cannot set Submit, Cancel, Amend without Write" msgstr "{0} :没有写入的情况下不能设置“提交”,“取消”,“修订”" -#: frappe/core/doctype/doctype/doctype.py:1822 +#: frappe/core/doctype/doctype/doctype.py:1836 msgid "{0}: Cannot set import as {1} is not importable" msgstr "{0} :{1}无法导入所以不能设置“导入”" -#: frappe/automation/doctype/auto_repeat/auto_repeat.py:405 +#: 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:1426 +#: frappe/core/doctype/doctype/doctype.py:1427 msgid "{0}: Field '{1}' cannot be set as Unique as it has non-unique values" msgstr "{0}:字段“{1}”无法设置为“唯一”,因为它具有非唯一值" -#: frappe/core/doctype/doctype/doctype.py:1334 +#: frappe/core/doctype/doctype/doctype.py:1335 msgid "{0}: Field {1} in row {2} cannot be hidden and mandatory without default" msgstr "{0}:行{2}中的字段{1}无法隐藏,并且在没有默认情况下是必需的" -#: frappe/core/doctype/doctype/doctype.py:1293 +#: frappe/core/doctype/doctype/doctype.py:1294 msgid "{0}: Field {1} of type {2} cannot be mandatory" msgstr "{0}:类型{2}的字段{1}不能是必需的" -#: frappe/core/doctype/doctype/doctype.py:1281 +#: frappe/core/doctype/doctype/doctype.py:1282 msgid "{0}: Fieldname {1} appears multiple times in rows {2}" msgstr "{0}:字段名{1}在行{2}中多次出现" -#: frappe/core/doctype/doctype/doctype.py:1413 +#: frappe/core/doctype/doctype/doctype.py:1414 msgid "{0}: Fieldtype {1} for {2} cannot be unique" msgstr "{0}:{2}的字段类型{1}不能是唯一的" -#: frappe/core/doctype/doctype/doctype.py:1755 +#: frappe/core/doctype/doctype/doctype.py:1769 msgid "{0}: No basic permissions set" msgstr "{0} :基本权限未设置" -#: frappe/core/doctype/doctype/doctype.py:1769 +#: frappe/core/doctype/doctype/doctype.py:1783 msgid "{0}: Only one rule allowed with the same Role, Level and {1}" msgstr "{0}:具有相同的角色,级别和允许只有一个规则{1}" -#: frappe/core/doctype/doctype/doctype.py:1315 +#: frappe/core/doctype/doctype/doctype.py:1316 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:1304 +#: frappe/core/doctype/doctype/doctype.py:1305 msgid "{0}: Options required for Link or Table type field {1} in row {2}" msgstr "{0}:请为第{2}行中的链接或表类型字段{1}维护选项信息" -#: frappe/core/doctype/doctype/doctype.py:1322 +#: frappe/core/doctype/doctype/doctype.py:1323 msgid "{0}: Options {1} must be the same as doctype name {2} for the field {3}" msgstr "{0}:选项{1}必须与字段{3}的单据类型名称{2}相同" @@ -31783,7 +31953,7 @@ msgstr "{0}:选项{1}必须与字段{3}的单据类型名称{2}相同" msgid "{0}: Other permission rules may also apply" msgstr "{0}:其它权限也可能适用" -#: frappe/core/doctype/doctype/doctype.py:1784 +#: frappe/core/doctype/doctype/doctype.py:1798 msgid "{0}: Permission at level 0 must be set before higher levels are set" msgstr "{0} :更高级别的权限设置前请先设置0级权限" @@ -31791,7 +31961,7 @@ msgstr "{0} :更高级别的权限设置前请先设置0级权限" msgid "{0}: You can increase the limit for the field if required via {1}" msgstr "{0}:可通过{1}按需调整字段限制" -#: frappe/core/doctype/doctype/doctype.py:1268 +#: frappe/core/doctype/doctype/doctype.py:1269 msgid "{0}: fieldname cannot be set to reserved keyword {1}" msgstr "{0}:字段名不能设为保留关键字{1}" @@ -31804,11 +31974,11 @@ msgstr "{0}:{1}" msgid "{0}: {1} is set to state {2}" msgstr "{0}:{1} 状态已变更为 {2}" -#: frappe/public/js/frappe/views/reports/query_report.js:1282 +#: frappe/public/js/frappe/views/reports/query_report.js:1291 msgid "{0}: {1} vs {2}" msgstr "{0}:{1}与{2}" -#: frappe/core/doctype/doctype/doctype.py:1434 +#: frappe/core/doctype/doctype/doctype.py:1435 msgid "{0}:Fieldtype {1} for {2} cannot be indexed" msgstr "{0}:无法为{2}的字段类型{1}生成索引" @@ -31832,7 +32002,7 @@ msgstr "已选择{count}行" msgid "{count} rows selected" msgstr "已选择{count}行" -#: frappe/core/doctype/doctype/doctype.py:1488 +#: frappe/core/doctype/doctype/doctype.py:1489 msgid "{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}." msgstr "{{{0}}}是不是一个有效的字段名模式。它应该是{{FIELD_NAME}}。" @@ -31840,11 +32010,11 @@ msgstr "{{{0}}}是不是一个有效的字段名模式。它应该是{{FIELD_NAM msgid "{} Complete" msgstr "已完成{}" -#: frappe/utils/data.py:2523 +#: frappe/utils/data.py:2567 msgid "{} Invalid python code on line {}" msgstr "第{}行存在无效Python代码" -#: frappe/utils/data.py:2532 +#: frappe/utils/data.py:2576 msgid "{} Possibly invalid python code.
    {}" msgstr "可能存在无效Python代码:
    {}" @@ -31870,7 +32040,7 @@ msgstr "{}已被禁用,需勾选{}方可启用" msgid "{} is not a valid date string." msgstr "{}不是有效日期字符串" -#: frappe/commands/utils.py:562 +#: frappe/commands/utils.py:561 msgid "{} not found in PATH! This is required to access the console." msgstr "PATH中未找到{}!访问控制台需要此组件" diff --git a/frappe/migrate.py b/frappe/migrate.py index 9d64e8a842..9a7a4adc2d 100644 --- a/frappe/migrate.py +++ b/frappe/migrate.py @@ -5,6 +5,8 @@ import contextlib import functools import json import os +import threading +import time from textwrap import dedent import frappe @@ -69,9 +71,12 @@ class SiteMigration: - run after migrate hooks """ - def __init__(self, skip_failing: bool = False, skip_search_index: bool = False) -> None: + def __init__( + self, skip_failing: bool = False, skip_search_index: bool = False, skip_fixtures: bool = False + ) -> None: self.skip_failing = skip_failing self.skip_search_index = skip_search_index + self.skip_fixtures = skip_fixtures def setUp(self): """Complete setup required for site migration""" @@ -91,6 +96,7 @@ class SiteMigration: """Run operations that should be run post schema updation processes This should be executed irrespective of outcome """ + self.db_monitor.stop() frappe.translate.clear_cache() clear_website_cache() clear_notifications() @@ -140,9 +146,11 @@ class SiteMigration: """ print("Syncing jobs...") sync_jobs() - - print("Syncing fixtures...") - sync_fixtures() + if not self.skip_fixtures: + print("Syncing fixtures...") + sync_fixtures() + else: + print("Skipping fixtures...") sync_standard_items() print("Syncing dashboards...") @@ -236,6 +244,8 @@ class SiteMigration: frappe.init(site) frappe.connect() + self.db_monitor = DBQueryProgressMonitor() + if not self.required_services_running(): raise SystemExit(1) @@ -248,3 +258,65 @@ class SiteMigration: finally: self.tearDown() frappe.destroy() + + +class DBQueryProgressMonitor(threading.Thread): + POLL_DURATION = 10 + + def __init__(self) -> None: + super().__init__() + self.site = frappe.local.site + self.daemon = True + self._running = threading.Event() + if frappe.db.db_type == "mariadb": + self.conn_id = frappe.db.sql("select connection_id()")[0][0] + self.start() + + def run(self): + if self._running.is_set(): + return + self._running.set() + + frappe.init(self.site) + frappe.connect() + + while self._running.is_set(): + time.sleep(self.POLL_DURATION) + queries = frappe.db.sql( + "SELECT * FROM information_schema.PROCESSLIST WHERE ID = %s", + self.conn_id, + as_dict=True, + ) + + if not queries: + continue + + query = frappe._dict(queries[0]) + time_taken = query.TIME + if not time_taken or time_taken < 5: + continue + + msg = [] + command = query.COMMAND or "" + msg.append(f"Command: {command}") + msg.append(f"Time: {time_taken}s") + msg.append(f"State: {query.STATE or 'N/A'}") + if query.PROGRESS: + msg.append(f"Progress: {query.PROGRESS}%") + + if command and command == "Query": + sql_query = query.INFO or "" + sql_query = sql_query.replace("\r", "").replace("\n", " ").replace("\t", " ") + if len(sql_query) > 100: + sql_query = sql_query[:40] + " ... " + sql_query[-20:] + msg.append(f"Query: {sql_query}") + + msg = "\r" + " | ".join(msg) + if self._running.is_set(): + print(msg, end="", flush=True) + + frappe.destroy() + + def stop(self): + print("") # Clear current line + self._running.clear() diff --git a/frappe/model/__init__.py b/frappe/model/__init__.py index 994624608c..e3669f56a3 100644 --- a/frappe/model/__init__.py +++ b/frappe/model/__init__.py @@ -77,7 +77,7 @@ display_fieldtypes = ( numeric_fieldtypes = ("Currency", "Int", "Long Int", "Float", "Percent", "Check") -data_field_options = ("Email", "Name", "Phone", "URL", "Barcode") +data_field_options = ("Email", "Name", "Phone", "URL", "Barcode", "IBAN") default_fields = ( "doctype", diff --git a/frappe/model/base_document.py b/frappe/model/base_document.py index 2480d13375..ae33642aac 100644 --- a/frappe/model/base_document.py +++ b/frappe/model/base_document.py @@ -70,6 +70,24 @@ UNPICKLABLE_KEYS = ( ) +def _reduce_extended_instance(doc): + """Make extended class instances pickle-able. + + When unpickling, this will use get_controller() to recreate the extended class. + Respects the __getstate__ method for proper state handling. + """ + return (_reconstruct_extended_instance, (doc.doctype,), doc.__getstate__()) + + +def _reconstruct_extended_instance(doctype): + """ + Helper function to reconstruct an extended class instance during unpickling. + """ + # Get the current extended class (uses caching from get_controller) + extended_class = get_controller(doctype) + return extended_class.__new__(extended_class) + + def get_controller(doctype): """Return the locally cached **class** object of the given DocType. @@ -127,7 +145,46 @@ def import_controller(doctype): if not issubclass(class_, BaseDocument): raise ImportError(f"{doctype}: {classname} is not a subclass of BaseDocument") - return class_ + return _get_extended_class(class_, doctype) + + +def _get_extended_class(base_class, doctype): + """Create an extended class by mixing extension classes with the base class. + + Args: + base_class: The base document class + doctype: The doctype name + + Returns: + Extended class that combines all extension classes with the base class + """ + + extensions = frappe.get_hooks("extend_doctype_class", {}).get(doctype) + if not extensions: + return base_class + + # Get extension classes in reverse order using frappe.get_attr + extension_classes = [] + for extension_path in reversed(extensions): + try: + extension_class = frappe.get_attr(extension_path) + except Exception as e: + raise ImportError( + "Error retrieving extension class from path:\n{0}".format(extension_path) + ) from e + + extension_classes.append(extension_class) + + # Create the extended class by combining extension classes with base class + # Extension classes come first in MRO, then base class + return type( + f"Extended{base_class.__name__}", + (*extension_classes, base_class), + { + "__reduce__": _reduce_extended_instance, + "__module__": base_class.__module__, + }, + ) RESERVED_KEYWORDS = frozenset( @@ -993,6 +1050,7 @@ class BaseDocument: from frappe.utils import ( split_emails, validate_email_address, + validate_iban, validate_name, validate_phone_number, validate_phone_number_with_country_code, @@ -1031,6 +1089,9 @@ class BaseDocument: if data_field_options == "URL": validate_url(data, throw=True) + if data_field_options == "IBAN": + validate_iban(data, throw=True) + def _validate_constants(self): if frappe.flags.in_import or self.is_new() or self.flags.ignore_validate_constants: return @@ -1260,7 +1321,7 @@ class BaseDocument: doctype = self.meta.get_field(parentfield).options if parentfield else self.doctype df = frappe.get_meta(doctype).get_field(fieldname) - if df.fieldtype in ("Currency", "Float", "Percent"): + if df and df.fieldtype in ("Currency", "Float", "Percent"): self._precision[cache_key][fieldname] = get_field_precision(df, self) return self._precision[cache_key][fieldname] @@ -1338,7 +1399,7 @@ class BaseDocument: else: return True - def reset_values_if_no_permlevel_access(self, has_access_to, high_permlevel_fields): + def reset_values_if_no_permlevel_access(self, has_access_to, high_permlevel_fields, mask_fields=None): """If the user does not have permissions at permlevel > 0, then reset the values to original / default""" to_reset = [ df @@ -1350,22 +1411,38 @@ class BaseDocument: ) ] - if to_reset: - if self.is_new(): - # if new, set default value - ref_doc = frappe.new_doc(self.doctype) - else: - # get values from old doc - if self.parent_doc: - parent_doc = self.parent_doc.get_latest() - child_docs = [d for d in parent_doc.get(self.parentfield) if d.name == self.name] - if not child_docs: - return - ref_doc = child_docs[0] - else: - ref_doc = self.get_latest() + if not mask_fields: + mask_fields = [] - for df in to_reset: + to_reset = to_reset + mask_fields + + if not to_reset: + return + + if self.is_new(): + # if new, set default value + ref_doc = frappe.new_doc(self.doctype) + else: + # get values from old doc + if self.parent_doc: + parent_doc = self.parent_doc.get_latest() + child_docs = [d for d in parent_doc.get(self.parentfield) if d.name == self.name] + if not child_docs: + return + ref_doc = child_docs[0] + else: + ref_doc = self.get_latest() + + masked_fieldnames = [df.fieldname for df in to_reset if df.get("mask_readonly")] + ref_values = {} + if not self.is_new() and masked_fieldnames: + ref_values = frappe.db.get_value(self.doctype, self.name, masked_fieldnames, as_dict=True) or {} + + for df in to_reset: + if df.get("mask_readonly") and not self.is_new(): + if df.fieldname in ref_values: + self.set(df.fieldname, ref_values[df.fieldname]) + else: self.set(df.fieldname, ref_doc.get(df.fieldname)) def get_value(self, fieldname): diff --git a/frappe/model/create_new.py b/frappe/model/create_new.py index 973d9fb619..50c101a96a 100644 --- a/frappe/model/create_new.py +++ b/frappe/model/create_new.py @@ -146,8 +146,8 @@ def set_dynamic_default_values(doc, parent_doc, parentfield): elif df.fieldtype == "Datetime" and df.default.lower() == "now": doc[df.fieldname] = now_datetime() - if df.fieldtype == "Time": - doc[df.fieldname] = nowtime() + elif df.fieldtype == "Time" and df.default.lower() == "now": + doc[df.fieldname] = nowtime() if parent_doc: doc["parent"] = parent_doc.name diff --git a/frappe/model/db_query.py b/frappe/model/db_query.py index fcb38a5ea2..e96e032784 100644 --- a/frappe/model/db_query.py +++ b/frappe/model/db_query.py @@ -219,8 +219,57 @@ class DatabaseQuery: if pluck: return [d[pluck] for d in result] + if self.doctype and result: + result = self.mask_fields(result) + return result + def mask_fields(self, result): + """Mask fields in the result based on the doctype's masked fields""" + masked_fields = self.get_masked_fields() + + if not masked_fields: + return result + + if self.as_list: + masked_result = [] + field_index_map = {} + for idx, field in enumerate(self.fields): + # handle aliases (e.g. `tabSI`.`posting_date` as posting_date) + if " as " in field.lower(): + alias = field.split(" as ")[1].strip(" '") + field_index_map[alias] = idx + else: + # extract last part after `.` + col = field.split(".")[-1].strip("`") + field_index_map[col] = idx + # if as_list then we don't have field names in the result so we need to mask by position + for row in result: + row = list(row) # convert tuple to list mutable + for field in masked_fields: + if field.fieldname in field_index_map: + idx = field_index_map[field.fieldname] + val = row[idx] + row[idx] = mask_field_value(field, val) + + masked_result.append(tuple(row)) # convert back to tuple + result = masked_result + else: + for row in result: + for field in masked_fields: + if field.fieldname in row: + val = row[field.fieldname] + row[field.fieldname] = mask_field_value(field, val) + + return result + + def get_masked_fields(self): + """Get masked fields for the doctype""" + + meta = self.get_meta(self.doctype) + + return meta.get_masked_fields() + def build_and_run(self): args = self.prepare_args() args.limit = self.add_limit() @@ -394,8 +443,6 @@ from {tables} "concat", "concat_ws", "if", - "ifnull", - "nullif", "coalesce", "connection_id", "current_user", @@ -406,6 +453,7 @@ from {tables} "user", "version", "global", + "sleep", ] def _raise_exception(): @@ -424,16 +472,19 @@ from {tables} if SUB_QUERY_PATTERN.match(field): # Check for subquery anywhere in the field, not just at the beginning if "(" in lower_field: - location = lower_field.index("(") - subquery_token = lower_field[location + 1 :].lstrip().split(" ", 1)[0] - if any(keyword in subquery_token for keyword in blacklisted_keywords): - _raise_exception() - - function = lower_field.split("(", 1)[0].rstrip() - if function in blacklisted_functions: - frappe.throw( - _("Use of function {0} in field is restricted").format(function), exc=frappe.DataError - ) + # Check all parentheses pairs, not just the first one + paren_start = 0 + while True: + location = lower_field.find("(", paren_start) + if location == -1: + break + token = lower_field[location + 1 :].lstrip().split(" ", 1)[0] + if any( + re.search(r"\b" + re.escape(keyword) + r"\b", token) + for keyword in blacklisted_keywords + blacklisted_functions + ): + _raise_exception() + paren_start = location + 1 if "@" in lower_field: # prevent access to global variables @@ -613,7 +664,6 @@ from {tables} if self.flags.ignore_permissions: return - asterisk_fields = [] permitted_fields = set( get_permitted_fields( doctype=self.doctype, @@ -622,9 +672,13 @@ from {tables} ignore_virtual=True, ) ) + permitted_child_table_fields = {} - for i, field in enumerate(self.fields): + # Create a copy of the fields list and reverse it to avoid index issues when removing fields + fields_to_check = list(enumerate(self.fields))[::-1] + + for i, field in fields_to_check: # field: 'count(distinct `tabPhoto`.name) as total_count' # column: 'tabPhoto.name' # field: 'count(`tabPhoto`.name) as total_count' @@ -634,9 +688,10 @@ from {tables} continue column = columns[0] + # handle * fields if column == "*" and "*" in field: if not in_function("*", field): - asterisk_fields.append(i) + self.fields[i : i + 1] = permitted_fields continue # handle pseudo columns @@ -691,12 +746,6 @@ from {tables} else: self.remove_field(i) - # handle * fields - j = 0 - for i in asterisk_fields: - self.fields[i + j : i + j + 1] = permitted_fields - j = j + len(permitted_fields) - 1 - def prepare_filter_condition(self, ft: FilterTuple) -> str: """Return a filter condition in the format: @@ -1128,7 +1177,12 @@ from {tables} r"select\b.*\bfrom", } - if any(re.search("\b" + pattern + "\b", _lower) for pattern in subquery_indicators): + # Replace doctype names with a hardcoded string "doc" + # This is to avoid false positives based on doctype name + sanitized = re.sub(r"`tab[^`]*`", " doc ", _lower) + + # Run the subquery checks against the sanitized string + if any(re.search(r"\b" + pattern + r"\b", sanitized) for pattern in subquery_indicators): frappe.throw(_("Cannot use sub-query here.")) blacklisted_sql_functions = { @@ -1141,6 +1195,10 @@ from {tables} "version", "substr", "substring", + "updatexml", + "load_file", + "session_user", + "system_user", } for field in parameters.split(","): @@ -1192,6 +1250,26 @@ from {tables} update_user_settings(self.doctype, user_settings) +def mask_field_value(field, val): + if not val: + return val + + if field.fieldtype == "Data" and field.options == "Phone": + if len(val) > 3: + return val[:3] + "XXXXXX" + else: + return "X" * len(val) + elif field.fieldtype == "Data" and field.options == "Email": + email = val.split("@") + return "XXXXXX@" + email[1] if len(email) > 1 else "XXXXXX" + elif field.fieldtype == "Date": + return "XX-XX-XXXX" + elif field.fieldtype == "Time": + return "XX:XX" + else: + return "XXXXXXXX" + + def cast_name(column: str) -> str: """Casts name field to varchar for postgres diff --git a/frappe/model/delete_doc.py b/frappe/model/delete_doc.py index 6b3914527d..5cf52724a4 100644 --- a/frappe/model/delete_doc.py +++ b/frappe/model/delete_doc.py @@ -3,6 +3,7 @@ import os import shutil +from typing import Any import frappe import frappe.defaults @@ -20,19 +21,58 @@ from frappe.utils.password import delete_all_passwords_for def delete_doc( - doctype=None, - name=None, - force=0, - ignore_doctypes=None, - for_reload=False, - ignore_permissions=False, - flags=None, - ignore_on_trash=False, - ignore_missing=True, - delete_permanently=False, -): + doctype: str | None = None, + name: str | int | list[str | int] | None = None, + force: int | bool = 0, + ignore_doctypes: list[str] | None = None, + for_reload: bool = False, + ignore_permissions: bool = False, + flags: dict[str, Any] | None = None, + ignore_on_trash: bool = False, + ignore_missing: bool = True, + delete_permanently: bool = False, +) -> bool | None: """ - Deletes a doc(dt, dn) and validates if it is not submitted and not linked in a live record + Deletes a document and validates if it is not submitted and not linked in a live record. + + Args: + doctype (str, optional): The document type to delete. If not provided, + retrieved from frappe.form_dict.get("dt"). Defaults to None. + name (str | int | list, optional): The name/ID of the document(s) to delete. + Can be a single name or a list of names. If not provided, + retrieved from frappe.form_dict.get("dn"). Defaults to None. + force (bool, optional): When True, bypasses link existence checks and allows + deletion of documents that are linked to other records. Also allows + deletion of standard DocTypes. Defaults to 0 (False). + ignore_doctypes (list, optional): A list of child doctypes to ignore when + deleting child table records associated with the document. Defaults to None. + for_reload (bool, optional): When True, indicates the deletion is for reloading + purposes (like during doctype updates). Skips certain validations like + permissions and on_trash methods, and automatically sets delete_permanently=True. + Defaults to False. + ignore_permissions (bool, optional): When True, bypasses permission checks + during deletion. Useful for system operations. Defaults to False. + flags (dict, optional): Additional flags to set on the document during the + deletion process. These flags affect document behavior during deletion. + Defaults to None. + ignore_on_trash (bool, optional): When True, skips calling the document's + on_trash method, which typically contains cleanup logic. Defaults to False. + ignore_missing (bool, optional): When True, doesn't raise an error if the + document doesn't exist and returns False. When False, raises + frappe.DoesNotExistError if document is missing. Defaults to True. + delete_permanently (bool, optional): When True, permanently deletes the document + without adding it to the "Deleted Document" table for recovery purposes. + When False, the document is soft-deleted and can be recovered. Defaults to False. + + Raises: + frappe.DoesNotExistError: When document doesn't exist and ignore_missing=False. + frappe.LinkExistsError: When document is linked to other records and force=False. + frappe.PermissionError: When user doesn't have delete permissions and ignore_permissions=False. + frappe.ValidationError: When trying to delete a submitted document. + frappe.QueryTimeoutError: When document is locked by another user. + + Returns: + bool: False if document doesn't exist and ignore_missing=True, otherwise None. """ if not ignore_doctypes: ignore_doctypes = [] @@ -104,6 +144,8 @@ def delete_doc( # in case a doctype doesnt have any controller code nor any app and module pass + frappe.clear_cache(doctype=name) + else: # Lock the doc without waiting try: diff --git a/frappe/model/document.py b/frappe/model/document.py index 148ecf2d9e..06e28a447b 100644 --- a/frappe/model/document.py +++ b/frappe/model/document.py @@ -268,8 +268,20 @@ class Document(BaseDocument): if hasattr(self, "__setup__"): self.__setup__() + if not is_doctype: + self.mask_fields() + return self + def mask_fields(self): + from frappe.model.db_query import mask_field_value + + mask_fields = frappe.get_meta(self.doctype).get_masked_fields() + + for field in mask_fields: + val = self.get(field.fieldname) + self.set(field.fieldname, mask_field_value(field, val)) + def load_children_from_db(self): is_doctype = self.doctype == "DocType" @@ -787,7 +799,7 @@ class Document(BaseDocument): ) for df in self.meta.get( - "fields", {"non_negative": ("=", 1), "fieldtype": ("in", ["Int", "Float", "Currency"])} + "fields", {"non_negative": ("=", 1), "fieldtype": ("in", ["Int", "Float", "Currency", "Percent"])} ): if flt(self.get(df.fieldname)) < 0: msg = get_msg(df) @@ -842,9 +854,13 @@ class Document(BaseDocument): def is_child_table_same(self, fieldname): """Validate child table is same as original table before saving""" + + if self.is_new(): + return False + + same = True value = self.get(fieldname) original_value = self._doc_before_save.get(fieldname) - same = True if len(original_value) != len(value): same = False @@ -905,8 +921,10 @@ class Document(BaseDocument): has_access_to = self.get_permlevel_access() high_permlevel_fields = self.meta.get_high_permlevel_fields() - if high_permlevel_fields: - self.reset_values_if_no_permlevel_access(has_access_to, high_permlevel_fields) + mask_fields = self.meta.get_masked_fields() + + if high_permlevel_fields or mask_fields: + self.reset_values_if_no_permlevel_access(has_access_to, high_permlevel_fields, mask_fields) # If new record then don't reset the values for child table if self.is_new(): @@ -1791,9 +1809,12 @@ class Document(BaseDocument): if date_diff(to_date, from_date) < 0: table_row = "" if self.meta.istable: - table_row = _("{0} row #{1}: ").format( - _(frappe.unscrub(self.parentfield)), - self.idx, + table_row = ( + _("{0} row #{1}:").format( + _(frappe.unscrub(self.parentfield)), + self.idx, + ) + + " " ) frappe.throw( diff --git a/frappe/model/dynamic_links.py b/frappe/model/dynamic_links.py index a054406c2d..de6b9b0f33 100644 --- a/frappe/model/dynamic_links.py +++ b/frappe/model/dynamic_links.py @@ -13,7 +13,7 @@ dynamic_link_queries = [ `tabDocField`.fieldname, `tabDocField`.options from `tabDocField`, `tabDocType` where `tabDocField`.fieldtype='Dynamic Link' and - `tabDocType`.`name`=`tabDocField`.parent and `tabDocType`.is_virtual = 0 + `tabDocType`.`name`=`tabDocField`.parent and `tabDocType`.is_virtual = 0 and `tabDocField`.is_virtual = 0 order by `tabDocType`.read_only, `tabDocType`.in_create""", """select `tabCustom Field`.dt as parent, `tabDocType`.read_only, `tabDocType`.in_create, diff --git a/frappe/model/meta.py b/frappe/model/meta.py index 5d45b1ef2e..b95ebfa5b9 100644 --- a/frappe/model/meta.py +++ b/frappe/model/meta.py @@ -87,6 +87,7 @@ def get_meta(doctype: "str | DocType", cached: bool = True) -> "_Meta": return meta meta = Meta(doctype) + key = f"doctype_meta::{meta.name}" frappe.client_cache.set_value(key, meta) return meta @@ -193,6 +194,28 @@ class Meta(Document): def get_dynamic_link_fields(self): return self._dynamic_link_fields + def get_masked_fields(self): + import copy + + if frappe.session.user == "Administrator": + return [] + cache_key = f"masked_fields::{self.name}::{frappe.session.user}" + masked_fields = frappe.cache.get_value(cache_key) + + if masked_fields is None: + masked_fields = [] + for df in self.fields: + if df.get("mask") and not self.has_permlevel_access_to( + fieldname=df.fieldname, df=df, permission_type="mask" + ): + # work on a copy instead of original df + df_copy = copy.deepcopy(df) + df_copy.mask_readonly = 1 + masked_fields.append(df_copy) + frappe.cache.set_value(cache_key, masked_fields) + + return masked_fields + @cached_property def _dynamic_link_fields(self): return self.get("fields", {"fieldtype": "Dynamic Link"}) diff --git a/frappe/model/naming.py b/frappe/model/naming.py index 44fe56824c..bc1eb9d0f3 100644 --- a/frappe/model/naming.py +++ b/frappe/model/naming.py @@ -71,6 +71,14 @@ class NamingSeries: exc=InvalidNamingSeriesError, ) + if "#" in self.series and ".#" not in self.series: + frappe.throw( + _( + "Invalid naming series {}: dot (.) missing before the numeric placeholders. Kindly use a format like ABCD.#####." + ).format(frappe.bold(self.series)), + exc=InvalidNamingSeriesError, + ) + def generate_next_name(self, doc: "Document", *, ignore_validate=False) -> str: if not ignore_validate: self.validate() diff --git a/frappe/model/rename_doc.py b/frappe/model/rename_doc.py index 5b1f9c3fe0..d80faa4216 100644 --- a/frappe/model/rename_doc.py +++ b/frappe/model/rename_doc.py @@ -217,7 +217,7 @@ def rename_doc( new_doc.add_comment("Edit", _("renamed from {0} to {1}").format(frappe.bold(old), frappe.bold(new))) if merge: - frappe.delete_doc(doctype, old) + frappe.delete_doc(doctype, old, ignore_permissions=ignore_permissions) new_doc.clear_cache() frappe.clear_cache() @@ -478,16 +478,15 @@ def get_link_fields(doctype: str) -> list[dict]: .inner_join(dt) .on(df.parent == dt.name) .select(df.parent, df.fieldname, dt.issingle.as_("issingle")) - .where((df.options == doctype) & (df.fieldtype == "Link")) + .where( + (df.options == doctype) + & (df.fieldtype == "Link") + & (dt.is_virtual == 0) + & (df.is_virtual == 0) + ) ) - if frappe.db.has_column("DocField", "is_virtual"): - standard_fields_query = standard_fields_query.where(df.is_virtual == 0) - - virtual_doctypes = [] - if frappe.db.has_column("DocType", "is_virtual"): - virtual_doctypes = frappe.get_all("DocType", {"is_virtual": 1}, pluck="name") - standard_fields_query = standard_fields_query.where(dt.is_virtual == 0) + virtual_doctypes = frappe.get_all("DocType", {"is_virtual": 1}, pluck="name") standard_fields = standard_fields_query.run(as_dict=True) @@ -495,7 +494,7 @@ def get_link_fields(doctype: str) -> list[dict]: custom_fields = ( frappe.qb.from_(cf) .select(cf.dt.as_("parent"), cf.fieldname, cf_issingle) - .where((cf.options == doctype) & (cf.fieldtype == "Link")) + .where((cf.options == doctype) & (cf.fieldtype == "Link") & (cf.is_virtual == 0)) ) if virtual_doctypes: custom_fields = custom_fields.where(cf.dt.notin(virtual_doctypes)) diff --git a/frappe/model/workflow.py b/frappe/model/workflow.py index f1198f22cc..ed8f2c2dde 100644 --- a/frappe/model/workflow.py +++ b/frappe/model/workflow.py @@ -345,7 +345,7 @@ def _bulk_workflow_action(docnames, doctype, action): frappe.message_log.pop() message_dict = {"docname": docname, "message": message.get("message")} - if message.get("raise_exception", False): + if message.get("raise_exception", False) or "Error" in message.get("message", ""): failed_transactions[docname].append(message_dict) else: successful_transactions[docname].append(message_dict) diff --git a/frappe/patches/v15_0/remove_implicit_primary_key.py b/frappe/patches/v15_0/remove_implicit_primary_key.py index 50becd0bdb..5901d4096e 100644 --- a/frappe/patches/v15_0/remove_implicit_primary_key.py +++ b/frappe/patches/v15_0/remove_implicit_primary_key.py @@ -31,12 +31,12 @@ def execute(): and _is_implicit_int_pk(doctype) and not is_autoincremented(doctype) ): - frappe.db.change_column_type( - doctype, - "name", - type=f"varchar({frappe.db.VARCHAR_LEN})", - nullable=True, - ) + if frappe.db.db_type == "mariadb": + frappe.db.sql(f"ALTER TABLE `tab{doctype}` MODIFY name varchar({frappe.db.VARCHAR_LEN})") + else: + frappe.db.sql( + f"ALTER TABLE `tab{doctype}` ALTER COLUMN name TYPE varchar({frappe.db.VARCHAR_LEN}) USING name::varchar" + ) def _is_implicit_int_pk(doctype: str) -> bool: diff --git a/frappe/printing/doctype/letter_head/letter_head.py b/frappe/printing/doctype/letter_head/letter_head.py index f5f39fab66..c2c193a1a8 100644 --- a/frappe/printing/doctype/letter_head/letter_head.py +++ b/frappe/printing/doctype/letter_head/letter_head.py @@ -37,7 +37,8 @@ class LetterHead(Document): def before_insert(self): # for better UX, let user set from attachment - self.source = "Image" + if not frappe.flags.in_migrate and not frappe.flags.in_install: + self.source = "Image" def validate(self): self.set_image() @@ -47,7 +48,12 @@ class LetterHead(Document): if self.disabled and self.is_default: frappe.throw(_("Letter Head cannot be both disabled and default")) - if not self.is_default and not self.disabled: + if ( + not self.is_default + and not self.disabled + and not frappe.flags.in_migrate + and not frappe.flags.in_install + ): if not frappe.db.exists("Letter Head", dict(is_default=1)): self.is_default = 1 diff --git a/frappe/printing/doctype/print_format/print_format.js b/frappe/printing/doctype/print_format/print_format.js index f2dea7ff24..3d2397c111 100644 --- a/frappe/printing/doctype/print_format/print_format.js +++ b/frappe/printing/doctype/print_format/print_format.js @@ -3,6 +3,7 @@ frappe.ui.form.on("Print Format", "onload", function (frm) { frm.add_fetch("doc_type", "module", "module"); + frm.add_fetch("report", "module", "module"); }); frappe.ui.form.on("Print Format", { @@ -23,7 +24,7 @@ frappe.ui.form.on("Print Format", { }, render_buttons: function (frm) { frm.page.clear_inner_toolbar(); - if (!frm.is_new() && frm.doc.print_format_for === "Doctype") { + if (!frm.is_new() && frm.doc.print_format_for === "DocType") { if (!frm.doc.custom_format) { frm.add_custom_button(__("Edit Format"), function () { if (!frm.doc.doc_type) { @@ -73,7 +74,8 @@ frappe.ui.form.on("Print Format", { }, print_format_for: function (frm) { if (frm.doc.print_format_for === "Report") { - frm.set_value("print_format_type", "JS"); + frm.set_value("standard", "No"); + frm.set_value("custom_format", 1); } }, hide_absolute_value_field: function (frm) { diff --git a/frappe/printing/doctype/print_format/print_format.json b/frappe/printing/doctype/print_format/print_format.json index 238c710101..8af853fecc 100644 --- a/frappe/printing/doctype/print_format/print_format.json +++ b/frappe/printing/doctype/print_format/print_format.json @@ -81,6 +81,7 @@ "oldfieldname": "standard", "oldfieldtype": "Select", "options": "No\nYes", + "read_only_depends_on": "eval:doc.print_format_for === \"Report\";", "reqd": 1, "search_index": 1 }, @@ -88,7 +89,8 @@ "default": "0", "fieldname": "custom_format", "fieldtype": "Check", - "label": "Custom Format" + "label": "Custom Format", + "read_only_depends_on": "eval:doc.print_format_for===\"Report\";" }, { "depends_on": "eval:doc.custom_format || doc.print_format_for == \"Report\"", @@ -101,8 +103,7 @@ "fieldname": "print_format_type", "fieldtype": "Select", "label": "Print Format Type", - "options": "Jinja\nJS", - "read_only_depends_on": "eval:doc.print_format_for == \"Report\"" + "options": "Jinja\nJS" }, { "default": "0", @@ -112,7 +113,7 @@ "label": "Raw Printing" }, { - "depends_on": "eval:(!doc.raw_printing) || (doc.print_format_for == \"Report\")", + "depends_on": "eval:!doc.raw_printing", "fieldname": "html", "fieldtype": "Code", "label": "HTML", @@ -291,7 +292,7 @@ "icon": "fa fa-print", "idx": 1, "links": [], - "modified": "2025-07-02 11:07:42.812225", + "modified": "2025-09-16 11:20:20.151669", "modified_by": "Administrator", "module": "Printing", "name": "Print Format", diff --git a/frappe/printing/doctype/print_format/print_format.py b/frappe/printing/doctype/print_format/print_format.py index 21cf95fb7d..a5456b37bc 100644 --- a/frappe/printing/doctype/print_format/print_format.py +++ b/frappe/printing/doctype/print_format/print_format.py @@ -62,7 +62,8 @@ class PrintFormat(Document): def before_save(self): if self.print_format_for == "Report": - self.print_format_type = "JS" + self.custom_format = 1 + self.standard = "No" def get_html(self, docname, letterhead=None): return get_html(self.doc_type, docname, self.name, letterhead) @@ -86,7 +87,9 @@ class PrintFormat(Document): self.extract_images() if not self.module: - self.module = frappe.db.get_value("DocType", self.doc_type, "module") + doc_type = "DocType" if self.print_format_for == "DocType" else "Report" + document_name = self.doc_type if self.print_format_for == "DocType" else self.report + self.module = frappe.db.get_value(doc_type, document_name, "module") if self.html and self.print_format_type != "JS": validate_template(self.html) diff --git a/frappe/printing/page/print/print.js b/frappe/printing/page/print/print.js index a3849fbb61..e8b05bd10a 100644 --- a/frappe/printing/page/print/print.js +++ b/frappe/printing/page/print/print.js @@ -50,6 +50,19 @@ frappe.ui.form.PrintView = class { ` ); + const htmlSkeleton = ` + + + + + + + + + + `; + document.querySelector("iframe.print-format-container").srcdoc = htmlSkeleton; + this.print_settings = frappe.model.get_doc(":Print Settings", "Print Settings"); this.setup_menu(); this.setup_toolbar(); @@ -349,6 +362,14 @@ frappe.ui.form.PrintView = class { this.wrapper.find(".print-toolbar a.btn-default").each((i, el) => { frappe.ui.keys.get_shortcut_group(this.frm.page).add($(el)); }); + + frappe.ui.keys.add_shortcut({ + shortcut: "shift+r", + action: (e) => { + this.refresh_print_format(); + }, + description: __("Refresh Print Preview"), + }); } set_default_letterhead() { @@ -467,6 +488,25 @@ frappe.ui.form.PrintView = class { setTimeout(() => { $print_format.height(this.$print_format_body.find(".print-format").outerHeight()); + + // Add keyboard shortcut to refresh the print preview inside the iframe, + // since Frappe's default shortcuts don't work within iframes. + + const iframe = this.print_wrapper.find("iframe.print-format-container")[0]; + const iframeDoc = iframe.contentDocument || iframe.contentWindow.document; + + // Add a flag on the iframe document to avoid duplicate listeners + if (!iframeDoc._refreshShortcutAttached) { + iframeDoc.addEventListener("keydown", (e) => { + if (e.shiftKey && e.key.toLowerCase() === "r") { + e.preventDefault(); + this.refresh_print_format(); + } + }); + + // Set the flag so this block won't run again + iframeDoc._refreshShortcutAttached = true; + } }, 500); } diff --git a/frappe/public/js/form_builder/FormBuilder.vue b/frappe/public/js/form_builder/FormBuilder.vue index 63ed4ba25d..c826f255ab 100644 --- a/frappe/public/js/form_builder/FormBuilder.vue +++ b/frappe/public/js/form_builder/FormBuilder.vue @@ -144,7 +144,7 @@ onMounted(() => store.fetch()); } .editable { - input, + input:not([type="checkbox"]), textarea, select, .ace_editor, @@ -258,7 +258,7 @@ onMounted(() => store.fetch()); border-color: transparent; } - input, + input:not([type="checkbox"]), textarea, select, .ace_editor, @@ -269,10 +269,6 @@ onMounted(() => store.fetch()); .ql-editor { background-color: var(--control-bg) !important; } - - input[type="checkbox"] { - background-color: var(--fg-bg) !important; - } } .form-main > :deep(div:first-child:not(.tab-header)) { diff --git a/frappe/public/js/form_builder/components/controls/CheckControl.vue b/frappe/public/js/form_builder/components/controls/CheckControl.vue index 0b35344805..38c49de355 100644 --- a/frappe/public/js/form_builder/components/controls/CheckControl.vue +++ b/frappe/public/js/form_builder/components/controls/CheckControl.vue @@ -1,8 +1,18 @@